From b55cebed2e5707ea2216297cd2d81b15374332dd Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 09:59:59 -0400 Subject: [PATCH 01/91] Move d3curtain to uiCurtain, remove unused event dispatch --- modules/{util => ui}/curtain.js | 13 ++++++------- modules/ui/index.js | 1 + modules/ui/intro/intro.js | 27 +++++++++++++-------------- 3 files changed, 20 insertions(+), 21 deletions(-) rename modules/{util => ui}/curtain.js (94%) diff --git a/modules/util/curtain.js b/modules/ui/curtain.js similarity index 94% rename from modules/util/curtain.js rename to modules/ui/curtain.js index a3edcae05..b6155266f 100644 --- a/modules/util/curtain.js +++ b/modules/ui/curtain.js @@ -1,14 +1,12 @@ import * as d3 from 'd3'; -import { utilGetDimensions } from './dimensions'; -import { utilRebind } from './rebind'; -import { uiToggle } from '../ui/toggle'; +import { utilGetDimensions } from '../util/dimensions'; +import { uiToggle } from './toggle'; // Tooltips and svg mask used to highlight certain features -export function d3curtain() { +export function uiCurtain() { - var dispatch = d3.dispatch(), - surface = d3.select(null), + var surface = d3.select(null), tooltip = d3.select(null), darkness = d3.select(null); @@ -145,8 +143,9 @@ export function d3curtain() { curtain.remove = function() { surface.remove(); tooltip.remove(); + d3.select(window).on('resize.curtain', null); }; - return utilRebind(curtain, dispatch, 'on'); + return curtain; } diff --git a/modules/ui/index.js b/modules/ui/index.js index 9ad44eb4f..76dd5fd31 100644 --- a/modules/ui/index.js +++ b/modules/ui/index.js @@ -7,6 +7,7 @@ export { uiCommit } from './commit'; export { uiConfirm } from './confirm'; export { uiConflicts } from './conflicts'; export { uiContributors } from './contributors'; +export { uiCurtain } from './curtain'; export { uiDisclosure } from './disclosure'; export { uiEditMenu } from './edit_menu'; export { uiEntityEditor } from './entity_editor'; diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 06a15cf57..2203d7ea9 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -1,10 +1,10 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { coreGraph } from '../../core/graph'; -import { modeBrowse } from '../../modes/index'; +import { modeBrowse } from '../../modes/browse'; import { osmEntity } from '../../osm/entity'; -import { d3curtain } from '../../util/curtain'; import { dataIntroGraph } from '../../../data/intro_graph.json'; +import { uiCurtain } from '../curtain'; import { uiIntroNavigation } from './navigation'; import { uiIntroPoint } from './point'; @@ -104,25 +104,14 @@ export function uiIntro(context) { // Load semi-real data used in intro context.connection().toggle(false).reset(); context.history().reset(); - context.history().merge(d3.values(coreGraph().load(introGraph).entities)); context.background().bing(); d3.selectAll('#map .layer-background').style('opacity', 1); - var curtain = d3curtain(); + var curtain = uiCurtain(); selection.call(curtain); - - function reveal(box, text, options) { - options = options || {}; - curtain.reveal(box, - text || '', - options.tooltipClass || '', - options.duration - ); - } - var steps = ['navigation', 'point', 'area', 'line', 'startEditing'].map(function(step, i) { var s = sampleIntros[step](context, reveal) .on('done', function() { @@ -175,6 +164,16 @@ export function uiIntro(context) { enter(steps[0]); + function reveal(box, text, options) { + options = options || {}; + curtain.reveal(box, + text || '', + options.tooltipClass || '', + options.duration + ); + } + + function enter(newStep) { if (step) { step.exit(); } From a015b4442bce280af530d345fc372ef452803ffe Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 10:16:39 -0400 Subject: [PATCH 02/91] "step" -> "chapter" - each chapter contains many steps --- css/80_app.css | 8 ++++---- modules/ui/intro/area.js | 8 ++++---- modules/ui/intro/intro.js | 28 ++++++++++++++-------------- modules/ui/intro/line.js | 18 +++++++++--------- modules/ui/intro/navigation.js | 8 ++++---- modules/ui/intro/point.js | 8 ++++---- modules/ui/intro/start_editing.js | 8 ++++---- 7 files changed, 43 insertions(+), 43 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 83cb0aa22..ca43f3658 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3609,20 +3609,20 @@ img.tile-removing { z-index: 1001; } -.intro-nav-wrap button.step { +.intro-nav-wrap button.chapter { width: 20%; } -.intro-nav-wrap button.step.finished { +.intro-nav-wrap button.chapter.finished { background: #8cd05f; } -.intro-nav-wrap button.step .status { +.intro-nav-wrap button.chapter .status { margin-left: 3px; display: none; } -.intro-nav-wrap button.step.finished .status { +.intro-nav-wrap button.chapter.finished .status { display: inline-block; } diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 3670bcb00..81b4480c8 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -9,12 +9,12 @@ export function uiIntroArea(context, reveal) { var dispatch = d3.dispatch('done'), timeout; - var step = { + var chapter = { title: 'intro.areas.title' }; - step.enter = function() { + chapter.enter = function() { var playground = [-85.63552, 41.94159], corner = [-85.63565411045074, 41.9417715536927]; context.map().centerZoom(playground, 19); @@ -91,7 +91,7 @@ export function uiIntroArea(context, reveal) { }; - step.exit = function() { + chapter.exit = function() { window.clearTimeout(timeout); context.on('enter.intro', null); context.on('exit.intro', null); @@ -101,5 +101,5 @@ export function uiIntroArea(context, reveal) { }; - return utilRebind(step, dispatch, 'on'); + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 2203d7ea9..013d76b52 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -23,7 +23,7 @@ var sampleIntros = { export function uiIntro(context) { - var step; + var chapter; function localizedName(id) { var features = { @@ -112,18 +112,18 @@ export function uiIntro(context) { var curtain = uiCurtain(); selection.call(curtain); - var steps = ['navigation', 'point', 'area', 'line', 'startEditing'].map(function(step, i) { - var s = sampleIntros[step](context, reveal) + var chapters = ['navigation', 'point', 'area', 'line', 'startEditing'].map(function(chapter, i) { + var s = sampleIntros[chapter](context, reveal) .on('done', function() { entered.filter(function(d) { return d.title === s.title; }).classed('finished', true); - enter(steps[i + 1]); + enter(chapters[i + 1]); }); return s; }); - steps[steps.length - 1].on('startEditing', function() { + chapters[chapters.length - 1].on('startEditing', function() { curtain.remove(); navwrap.remove(); d3.selectAll('#map .layer-background').style('opacity', opacity); @@ -143,13 +143,13 @@ export function uiIntro(context) { var buttonwrap = navwrap .append('div') .attr('class', 'joined') - .selectAll('button.step'); + .selectAll('button.chapter'); var entered = buttonwrap - .data(steps) + .data(chapters) .enter() .append('button') - .attr('class', 'step') + .attr('class', 'chapter') .on('click', enter); entered @@ -161,7 +161,7 @@ export function uiIntro(context) { .attr('class', 'status') .text(' - ' + t('intro.done')); - enter(steps[0]); + enter(chapters[0]); function reveal(box, text, options) { @@ -174,16 +174,16 @@ export function uiIntro(context) { } - function enter(newStep) { - if (step) { step.exit(); } + function enter(newChapter) { + if (chapter) { chapter.exit(); } context.enter(modeBrowse(context)); - step = newStep; - step.enter(); + chapter = newChapter; + chapter.enter(); entered.classed('active', function(d) { - return d.title === step.title; + return d.title === chapter.title; }); } diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 7ad9d7f8c..fe3f90b55 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -18,7 +18,7 @@ export function uiIntroLine(context, reveal) { drawId = null; - var step = { + var chapter = { title: 'intro.lines.title' }; @@ -34,7 +34,7 @@ export function uiIntroLine(context, reveal) { } - step.enter = function() { + chapter.enter = function() { context.map().centerZoom(start, 18); reveal('button.add-line', t('intro.lines.add', { button: icon('#icon-line', 'pre-text') }), @@ -86,7 +86,7 @@ export function uiIntroLine(context, reveal) { reveal(pointBox, t('intro.lines.restart', {name: t('intro.graph.flower_st')})); d3.select(window).on('mousedown.intro', eventCancel, true); - timeout(step.restart, 3000); + timeout(chapter.restart, 3000); } @@ -95,7 +95,7 @@ export function uiIntroLine(context, reveal) { function joinedTargetWay() { var drawEntity = drawId && context.hasEntity(drawId); if (!drawEntity) { - step.restart(); + chapter.restart(); return false; } @@ -175,13 +175,13 @@ export function uiIntroLine(context, reveal) { }; - step.restart = function() { - step.exit(); - step.enter(); + chapter.restart = function() { + chapter.exit(); + chapter.enter(); }; - step.exit = function() { + chapter.exit = function() { d3.select(window).on('mousedown.intro', null, true); d3.select('#curtain').style('pointer-events', 'none'); timeouts.forEach(window.clearTimeout); @@ -195,5 +195,5 @@ export function uiIntroLine(context, reveal) { } }; - return utilRebind(step, dispatch, 'on'); + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 5883ce445..bca32ba5a 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -9,7 +9,7 @@ export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = []; - var step = { + var chapter = { title: 'intro.navigation.title' }; @@ -25,7 +25,7 @@ export function uiIntroNavigation(context, reveal) { } - step.enter = function() { + chapter.enter = function() { var rect = context.surfaceRect(), map = { left: rect.left + 10, @@ -118,7 +118,7 @@ export function uiIntroNavigation(context, reveal) { }; - step.exit = function() { + chapter.exit = function() { timeouts.forEach(window.clearTimeout); context.map().on('move.intro', null); context.on('enter.intro', null); @@ -129,5 +129,5 @@ export function uiIntroNavigation(context, reveal) { }; - return utilRebind(step, dispatch, 'on'); + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 54bf08c70..ff6af98f1 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -9,7 +9,7 @@ export function uiIntroPoint(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = []; - var step = { + var chapter = { title: 'intro.points.title' }; @@ -25,7 +25,7 @@ export function uiIntroPoint(context, reveal) { } - step.enter = function() { + chapter.enter = function() { context.map().centerZoom([-85.63279, 41.94394], 19); reveal('button.add-point', t('intro.points.add', { button: icon('#icon-point', 'pre-text') }), @@ -165,7 +165,7 @@ export function uiIntroPoint(context, reveal) { }; - step.exit = function() { + chapter.exit = function() { timeouts.forEach(window.clearTimeout); context.on('exit.intro', null); context.on('enter.intro', null); @@ -176,5 +176,5 @@ export function uiIntroPoint(context, reveal) { .on('keydown.intro', null); }; - return utilRebind(step, dispatch, 'on'); + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/start_editing.js b/modules/ui/intro/start_editing.js index 228e5923b..c684036ca 100644 --- a/modules/ui/intro/start_editing.js +++ b/modules/ui/intro/start_editing.js @@ -10,7 +10,7 @@ export function uiIntroStartEditing(context, reveal) { modalSelection, timeouts = []; - var step = { + var chapter = { title: 'intro.startediting.title' }; @@ -20,7 +20,7 @@ export function uiIntroStartEditing(context, reveal) { } - step.enter = function() { + chapter.enter = function() { reveal('.map-control.help-control', t('intro.startediting.help', { button: icon('#icon-help', 'pre-text') })); @@ -61,11 +61,11 @@ export function uiIntroStartEditing(context, reveal) { }; - step.exit = function() { + chapter.exit = function() { if (modalSelection) { modalSelection.remove(); } timeouts.forEach(window.clearTimeout); }; - return utilRebind(step, dispatch, 'on'); + return utilRebind(chapter, dispatch, 'on'); } From 681ee5a89a89dbaf435aab4a93425104ec0ae928 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 10:27:15 -0400 Subject: [PATCH 03/91] Prevent crash when missing datum (This can happen if the user mouseups on a tooltip, e.g. in walkthrough) --- modules/behavior/select.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/behavior/select.js b/modules/behavior/select.js index 59273d144..a24412778 100644 --- a/modules/behavior/select.js +++ b/modules/behavior/select.js @@ -74,8 +74,8 @@ export function behaviorSelect(context) { mode = context.mode(); - if (datum.type === 'midpoint') { - // clicked midpoint, do nothing.. + if (!datum || datum.type === 'midpoint') { + // do nothing.. } else if (!(datum instanceof osmEntity)) { // clicked nothing.. From db39fc6d504e4484ab9dc46412266ed3464c5d80 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 13:45:47 -0400 Subject: [PATCH 04/91] Improve event handling and functions for the navigation steps --- modules/ui/intro/navigation.js | 88 +++++++++++++++++++++------------- 1 file changed, 54 insertions(+), 34 deletions(-) diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index bca32ba5a..349e41f6a 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -26,52 +26,63 @@ export function uiIntroNavigation(context, reveal) { chapter.enter = function() { - var rect = context.surfaceRect(), - map = { - left: rect.left + 10, - top: rect.top + 70, - width: rect.width - 70, - height: rect.height - 170 - }; + dragMap(); - context.map().centerZoom([-85.63591, 41.94285], 19); + function dragMap() { + var dragged = false, + rect = context.surfaceRect(), + map = { + left: rect.left + 10, + top: rect.top + 70, + width: rect.width - 70, + height: rect.height - 170 + }; - reveal(map, t('intro.navigation.drag')); - - context.map().on('move.intro', _.debounce(function() { - context.map().on('move.intro', null); - townhall(); - context.on('enter.intro', inspectTownHall); - }, 400)); - - - function townhall() { - var hall = [-85.63645945147184, 41.942986488012565]; - var point = context.projection(hall); - - if (point[0] < 0 || point[0] > rect.width || - point[1] < 0 || point[1] > rect.height) { - context.map().center(hall); - } - - var box = pointBox(hall, context); - reveal(box, t('intro.navigation.select')); + context.map().centerZoom([-85.63591, 41.94285], 19); + reveal(map, t('intro.navigation.drag')); context.map().on('move.intro', function() { - var box = pointBox(hall, context); - reveal(box, t('intro.navigation.select'), {duration: 0}); + dragged = true; }); + + d3.select(window).on('mouseup.intro', function() { + if (!dragged) return; + d3.select(window).on('mouseup.intro', null, true); + context.map().on('move.intro', null); + clickTownHall(); + }, true); + } + + + function clickTownHall() { + var hall = context.hasEntity('n2140018997'); + if (!hall) chapter.restart(); + + context.on('enter.intro', inspectTownHall); + context.map().centerEase(hall.loc, 250); + + set(function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.select')); + context.map().on('move.intro', function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.select'), { duration: 0 }); + }); + }, 260); } function inspectTownHall(mode) { if (mode.id !== 'select') return; + context.on('enter.intro', null); context.map().on('move.intro', null); + context.on('exit.intro', streetSearch); + set(function() { reveal('.entity-editor-pane', - t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') })); - context.on('exit.intro', streetSearch); + t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) + ); }, 700); } @@ -102,7 +113,8 @@ export function uiIntroNavigation(context, reveal) { function selectedStreet() { var springSt = [-85.63585099140167, 41.942506848938926]; - context.map().center(springSt); + + context.map().centerEase(springSt); context.on('exit.intro', function() { dispatch.call('done'); }); @@ -112,7 +124,8 @@ export function uiIntroNavigation(context, reveal) { t('intro.navigation.chosen', { name: t('intro.graph.spring_st'), button: icon('#icon-close', 'pre-text') - })); + }) + ); }, 400); } }; @@ -120,6 +133,7 @@ export function uiIntroNavigation(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); + d3.select(window).on('mouseup.intro', null, true); context.map().on('move.intro', null); context.on('enter.intro', null); context.on('exit.intro', null); @@ -129,5 +143,11 @@ export function uiIntroNavigation(context, reveal) { }; + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + return utilRebind(chapter, dispatch, 'on'); } From 697cef1b06b712788c4b9b3b0dae6b30eb819e91 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 15:57:26 -0400 Subject: [PATCH 05/91] Fix zoom/pan for the intro curtain (closes #2386) --- modules/core/context.js | 1 + modules/renderer/map.js | 12 ++++++++++++ modules/ui/intro/area.js | 13 ++++++++----- modules/ui/intro/helper.js | 20 ++++++++++++-------- modules/ui/intro/line.js | 14 ++++++++------ modules/ui/intro/navigation.js | 7 +++---- modules/ui/intro/point.js | 20 +++++++++++--------- 7 files changed, 55 insertions(+), 32 deletions(-) diff --git a/modules/core/context.js b/modules/core/context.js index 7b80dbadc..354984f94 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -383,6 +383,7 @@ export function coreContext() { context.version = '2.1.3'; context.projection = geoRawMercator(); + context.curtainProjection = geoRawMercator(); locale = utilDetect().locale; if (locale && !dataLocales.hasOwnProperty(locale)) { diff --git a/modules/renderer/map.js b/modules/renderer/map.js index 8c5cc16ff..e99c37590 100644 --- a/modules/renderer/map.js +++ b/modules/renderer/map.js @@ -33,6 +33,7 @@ export function rendererMap(context) { var dimensions = [1, 1], dispatch = d3.dispatch('move', 'drawn'), projection = context.projection, + curtainProjection = context.curtainProjection, dblclickEnabled = true, redrawEnabled = true, transformStart = projection.transform(), @@ -323,6 +324,14 @@ export function rendererMap(context) { tX = (eventTransform.x / scale - transformStart.x) * scale, tY = (eventTransform.y / scale - transformStart.y) * scale; + if (context.inIntro()) { + curtainProjection.transform({ + x: eventTransform.x - tX, + y: eventTransform.y - tY, + k: eventTransform.k + }); + } + transformed = true; transformLast = eventTransform; utilSetTransform(supersurface, tX, tY, scale); @@ -339,6 +348,9 @@ export function rendererMap(context) { surface.selectAll('.edit-menu, .radial-menu').interrupt().remove(); utilSetTransform(supersurface, 0, 0); transformed = false; + if (context.inIntro()) { + curtainProjection.transform(projection.transform()); + } return true; } diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 81b4480c8..e2713bfe4 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -17,7 +17,10 @@ export function uiIntroArea(context, reveal) { chapter.enter = function() { var playground = [-85.63552, 41.94159], corner = [-85.63565411045074, 41.9417715536927]; - context.map().centerZoom(playground, 19); + + // context.map().centerZoom(playground, 19); + context.map().zoom(19).centerEase(playground); + reveal('button.add-area', t('intro.areas.add', { button: icon('#icon-area', 'pre-text') }), { tooltipClass: 'intro-areas-add' }); @@ -33,7 +36,7 @@ export function uiIntroArea(context, reveal) { var pointBox = pad(corner, padding, context); reveal(pointBox, t('intro.areas.corner')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { padding = 120 * Math.pow(2, context.map().zoom() - 19); pointBox = pad(corner, padding, context); reveal(pointBox, t('intro.areas.corner'), {duration: 0}); @@ -49,7 +52,7 @@ export function uiIntroArea(context, reveal) { var pointBox = pad(playground, padding, context); reveal(pointBox, t('intro.areas.place')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { padding = 150 * Math.pow(2, context.map().zoom() - 19); pointBox = pad(playground, padding, context); reveal(pointBox, t('intro.areas.place'), {duration: 0}); @@ -59,7 +62,7 @@ export function uiIntroArea(context, reveal) { function enterSelect(mode) { if (mode.id !== 'select') return; - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); timeout = setTimeout(function() { @@ -96,7 +99,7 @@ export function uiIntroArea(context, reveal) { context.on('enter.intro', null); context.on('exit.intro', null); context.history().on('change.intro', null); - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); d3.select('.preset-search-input').on('keyup.intro', null); }; diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index cd2942067..30295368d 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -1,6 +1,6 @@ -export function pointBox(point, context) { +export function pointBox(loc, context) { var rect = context.surfaceRect(); - point = context.projection(point); + var point = context.curtainProjection(loc); return { left: point[0] + rect.left - 30, top: point[1] + rect.top - 50, @@ -10,15 +10,19 @@ export function pointBox(point, context) { } -export function pad(box, padding, context) { - if (box instanceof Array) { +export function pad(locOrBox, padding, context) { + var box; + if (locOrBox instanceof Array) { var rect = context.surfaceRect(); - box = context.projection(box); + var point = context.curtainProjection(locOrBox); box = { - left: box[0] + rect.left, - top: box[1] + rect.top + left: point[0] + rect.left, + top: point[1] + rect.top }; + } else { + box = locOrBox; } + return { left: box.left - padding, top: box.top - padding, @@ -31,4 +35,4 @@ export function pad(box, padding, context) { export function icon(name, svgklass) { return '' + ''; - } +} diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index fe3f90b55..00ec8cd14 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -35,7 +35,9 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { - context.map().centerZoom(start, 18); + // context.map().centerZoom(start, 18); + context.map().zoom(18).centerEase(start); + reveal('button.add-line', t('intro.lines.add', { button: icon('#icon-line', 'pre-text') }), { tooltipClass: 'intro-lines-add' }); @@ -52,7 +54,7 @@ export function uiIntroLine(context, reveal) { var pointBox = pad(start, padding, context); reveal(pointBox, t('intro.lines.start')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { padding = 150 * Math.pow(2, context.map().zoom() - 18); pointBox = pad(start, padding, context); reveal(pointBox, t('intro.lines.start'), {duration: 0}); @@ -70,7 +72,7 @@ export function uiIntroLine(context, reveal) { var pointBox = pad(midpoint, padding, context); reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')})); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { padding = 300 * Math.pow(2, context.map().zoom() - 19); pointBox = pad(midpoint, padding, context); reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')}), {duration: 0}); @@ -115,7 +117,7 @@ export function uiIntroLine(context, reveal) { var pointBox = pad(centroid, padding, context); reveal(pointBox, t('intro.lines.finish')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { padding = 900 * Math.pow(2, context.map().zoom() - 19); pointBox = pad(centroid, padding, context); reveal(pointBox, t('intro.lines.finish'), {duration: 0}); @@ -126,7 +128,7 @@ export function uiIntroLine(context, reveal) { function enterSelect(mode) { if (mode.id !== 'select') return; - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); d3.select('#curtain').style('pointer-events', 'all'); presetCategory(); @@ -187,7 +189,7 @@ export function uiIntroLine(context, reveal) { timeouts.forEach(window.clearTimeout); context.on('enter.intro', null); context.on('exit.intro', null); - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); if (drawId) { context.replace(actionDeleteMultiple([drawId])); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 349e41f6a..4b49623a5 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -1,5 +1,4 @@ import * as d3 from 'd3'; -import _ from 'lodash'; import { t } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox } from './helper'; @@ -64,7 +63,7 @@ export function uiIntroNavigation(context, reveal) { set(function() { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select'), { duration: 0 }); }); @@ -76,7 +75,7 @@ export function uiIntroNavigation(context, reveal) { if (mode.id !== 'select') return; context.on('enter.intro', null); - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('exit.intro', streetSearch); set(function() { @@ -134,7 +133,7 @@ export function uiIntroNavigation(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); d3.select(window).on('mouseup.intro', null, true); - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); context.on('exit.intro', null); d3.select('.search-header input') diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index ff6af98f1..ae80789af 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -26,7 +26,9 @@ export function uiIntroPoint(context, reveal) { chapter.enter = function() { - context.map().centerZoom([-85.63279, 41.94394], 19); + // context.map().centerZoom([-85.63279, 41.94394], 19); + context.map().zoom(19).centerEase([-85.63279, 41.94394]); + reveal('button.add-point', t('intro.points.add', { button: icon('#icon-point', 'pre-text') }), { tooltipClass: 'intro-points-add' }); @@ -43,7 +45,7 @@ export function uiIntroPoint(context, reveal) { var pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.place')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.place'), {duration: 0}); }); @@ -52,7 +54,7 @@ export function uiIntroPoint(context, reveal) { function enterSelect(mode) { if (mode.id !== 'select') return; - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); setTimeout(function() { @@ -100,7 +102,7 @@ export function uiIntroPoint(context, reveal) { var pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.reselect')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.reselect'), {duration: 0}); }); @@ -109,7 +111,7 @@ export function uiIntroPoint(context, reveal) { function enterReselect(mode) { if (mode.id !== 'select') return; - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); setTimeout(function() { @@ -127,7 +129,7 @@ export function uiIntroPoint(context, reveal) { var pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.rightclick')); - context.map().on('move.intro', function() { + context.map().on('move.intro drawn.intro', function() { pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.rightclick'), {duration: 0}); }); @@ -136,10 +138,10 @@ export function uiIntroPoint(context, reveal) { function enterDelete(mode) { if (mode.id !== 'select') return; - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); context.on('exit.intro', deletePoint); - context.map().on('move.intro', deletePoint); + context.map().on('move.intro drawn.intro', deletePoint); context.history().on('change.intro', deleted); setTimeout(function() { @@ -169,7 +171,7 @@ export function uiIntroPoint(context, reveal) { timeouts.forEach(window.clearTimeout); context.on('exit.intro', null); context.on('enter.intro', null); - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-search-input') .on('keyup.intro', null) From d949fe08cbbc2c0159c5b89e8f1f0cf7c72cceb7 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 16:01:14 -0400 Subject: [PATCH 06/91] Fix faulty datum test from 681ee5a --- modules/behavior/select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/behavior/select.js b/modules/behavior/select.js index a24412778..24de5487d 100644 --- a/modules/behavior/select.js +++ b/modules/behavior/select.js @@ -74,7 +74,7 @@ export function behaviorSelect(context) { mode = context.mode(); - if (!datum || datum.type === 'midpoint') { + if (datum && datum.type === 'midpoint') { // do nothing.. } else if (!(datum instanceof osmEntity)) { From 833a67f3995212b0890905d579456b9c2b38471a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 22:05:27 -0400 Subject: [PATCH 07/91] Allow history to set checkpoints and reset to them --- modules/core/history.js | 26 ++++++++++++++++++++++---- test/spec/core/history.js | 30 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 4 deletions(-) diff --git a/modules/core/history.js b/modules/core/history.js index 09f2279b7..b881ec9c3 100644 --- a/modules/core/history.js +++ b/modules/core/history.js @@ -15,6 +15,7 @@ export function coreHistory(context) { dispatch = d3.dispatch('change', 'undone', 'redone'), lock = utilSessionMutex('lock'), duration = 150, + checkpoints = {}, stack, index, tree; @@ -278,10 +279,27 @@ export function coreHistory(context) { }, - reset: function() { - stack = [{graph: coreGraph()}]; - index = 0; - tree = coreTree(stack[0].graph); + // save the current history state + checkpoint: function(key) { + checkpoints[key] = { + stack: _.cloneDeep(stack), + index: index + }; + return history; + }, + + + // restore history state to a given checkpoint or reset completely + reset: function(key) { + if (key !== undefined) { + stack = _.cloneDeep(checkpoints[key].stack); + index = checkpoints[key].index; + } else { + stack = [{graph: coreGraph()}]; + index = 0; + tree = coreTree(stack[0].graph); + checkpoints = {}; + } dispatch.call('change'); return history; }, diff --git a/test/spec/core/history.js b/test/spec/core/history.js index 10693c726..13734de6e 100644 --- a/test/spec/core/history.js +++ b/test/spec/core/history.js @@ -283,6 +283,36 @@ describe('iD.History', function () { }); }); + describe('#checkpoint', function () { + it('saves and resets to checkpoints', function () { + history.perform(action, 'annotation1'); + history.perform(action, 'annotation2'); + history.perform(action, 'annotation3'); + history.checkpoint('check1'); + history.perform(action, 'annotation4'); + history.perform(action, 'annotation5'); + history.checkpoint('check2'); + history.perform(action, 'annotation6'); + history.perform(action, 'annotation7'); + history.perform(action, 'annotation8'); + + history.reset('check1'); + expect(history.undoAnnotation()).to.equal('annotation3'); + + history.reset('check2'); + expect(history.undoAnnotation()).to.equal('annotation5'); + + history.reset('check1'); + expect(history.undoAnnotation()).to.equal('annotation3'); + }); + + it('emits a change event', function () { + history.on('change', spy); + history.reset(); + expect(spy).to.have.been.called; + }); + }); + describe('#toJSON', function() { it('doesn\'t generate unsaveable changes', function() { var node_1 = iD.Node({id: 'n-1'}); From 8200cbb1f4c0bb84d54a4e70db17c40b19cf7079 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 22 Mar 2017 22:32:44 -0400 Subject: [PATCH 08/91] Use checkpoints to reset history to known states in walkthrough --- modules/ui/intro/area.js | 8 +++++++- modules/ui/intro/intro.js | 1 + modules/ui/intro/line.js | 15 ++++++++------- modules/ui/intro/navigation.js | 1 + modules/ui/intro/point.js | 9 ++++++++- 5 files changed, 25 insertions(+), 9 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index e2713bfe4..f3f0636a4 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -18,7 +18,7 @@ export function uiIntroArea(context, reveal) { var playground = [-85.63552, 41.94159], corner = [-85.63565411045074, 41.9417715536927]; - // context.map().centerZoom(playground, 19); + context.history().reset('initial'); context.map().zoom(19).centerEase(playground); reveal('button.add-area', @@ -104,5 +104,11 @@ export function uiIntroArea(context, reveal) { }; + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 013d76b52..8b015f7a5 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -105,6 +105,7 @@ export function uiIntro(context) { context.connection().toggle(false).reset(); context.history().reset(); context.history().merge(d3.values(coreGraph().load(introGraph).entities)); + context.history().checkpoint('initial'); context.background().bing(); d3.selectAll('#map .layer-background').style('opacity', 1); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 00ec8cd14..f865d7dc7 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -35,7 +35,7 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { - // context.map().centerZoom(start, 18); + context.history().reset('initial'); context.map().zoom(18).centerEase(start); reveal('button.add-line', @@ -177,12 +177,6 @@ export function uiIntroLine(context, reveal) { }; - chapter.restart = function() { - chapter.exit(); - chapter.enter(); - }; - - chapter.exit = function() { d3.select(window).on('mousedown.intro', null, true); d3.select('#curtain').style('pointer-events', 'none'); @@ -197,5 +191,12 @@ export function uiIntroLine(context, reveal) { } }; + + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + return utilRebind(chapter, dispatch, 'on'); } diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 4b49623a5..c80a9c98c 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -25,6 +25,7 @@ export function uiIntroNavigation(context, reveal) { chapter.enter = function() { + context.history().reset('initial'); dragMap(); function dragMap() { diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index ae80789af..5a15816db 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -26,7 +26,7 @@ export function uiIntroPoint(context, reveal) { chapter.enter = function() { - // context.map().centerZoom([-85.63279, 41.94394], 19); + context.history().reset('initial'); context.map().zoom(19).centerEase([-85.63279, 41.94394]); reveal('button.add-point', @@ -178,5 +178,12 @@ export function uiIntroPoint(context, reveal) { .on('keydown.intro', null); }; + + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + return utilRebind(chapter, dispatch, 'on'); } From 61d1d1f5494ca774a7253c505d186d6482a77247 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 23 Mar 2017 00:20:08 -0400 Subject: [PATCH 09/91] Make chapters code more consistent --- modules/ui/intro/area.js | 137 ++++++++-------- modules/ui/intro/line.js | 254 +++++++++++++++--------------- modules/ui/intro/navigation.js | 206 ++++++++++++------------ modules/ui/intro/point.js | 239 ++++++++++++++-------------- modules/ui/intro/start_editing.js | 1 + 5 files changed, 428 insertions(+), 409 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index f3f0636a4..857c8824d 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -7,95 +7,104 @@ import { icon, pad } from './helper'; export function uiIntroArea(context, reveal) { var dispatch = d3.dispatch('done'), - timeout; + playground = [-85.63552, 41.94159], + corner = [-85.63565411045074, 41.9417715536927], + timeouts = []; + var chapter = { title: 'intro.areas.title' }; - chapter.enter = function() { - var playground = [-85.63552, 41.94159], - corner = [-85.63565411045074, 41.9417715536927]; + function timeout(f, t) { + timeouts.push(window.setTimeout(f, t)); + } - context.history().reset('initial'); - context.map().zoom(19).centerEase(playground); + function addArea() { reveal('button.add-area', t('intro.areas.add', { button: icon('#icon-area', 'pre-text') }), { tooltipClass: 'intro-areas-add' }); - context.on('enter.intro', addArea); + context.on('enter.intro', startArea); + } - function addArea(mode) { - if (mode.id !== 'add-area') return; - context.on('enter.intro', drawArea); + function startArea(mode) { + if (mode.id !== 'add-area') return; + context.on('enter.intro', drawArea); - var padding = 120 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(corner, padding, context); - reveal(pointBox, t('intro.areas.corner')); + var padding = 120 * Math.pow(2, context.map().zoom() - 19); + var pointBox = pad(corner, padding, context); + reveal(pointBox, t('intro.areas.corner')); - context.map().on('move.intro drawn.intro', function() { - padding = 120 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(corner, padding, context); - reveal(pointBox, t('intro.areas.corner'), {duration: 0}); - }); + context.map().on('move.intro drawn.intro', function() { + padding = 120 * Math.pow(2, context.map().zoom() - 19); + pointBox = pad(corner, padding, context); + reveal(pointBox, t('intro.areas.corner'), {duration: 0}); + }); + } + + + function drawArea(mode) { + if (mode.id !== 'draw-area') return; + context.on('enter.intro', enterSelect); + + var padding = 150 * Math.pow(2, context.map().zoom() - 19); + var pointBox = pad(playground, padding, context); + reveal(pointBox, t('intro.areas.place')); + + context.map().on('move.intro drawn.intro', function() { + padding = 150 * Math.pow(2, context.map().zoom() - 19); + pointBox = pad(playground, padding, context); + reveal(pointBox, t('intro.areas.place'), {duration: 0}); + }); + } + + + function enterSelect(mode) { + if (mode.id !== 'select') return; + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + + timeout(function() { + reveal('.preset-search-input', + t('intro.areas.search', + { name: context.presets().item('leisure/playground').name() })); + d3.select('.preset-search-input').on('keyup.intro', keySearch); + }, 500); + } + + + function keySearch() { + var first = d3.select('.preset-list-item:first-child'); + if (first.classed('preset-leisure-playground')) { + reveal(first.select('.preset-list-button').node(), t('intro.areas.choose')); + utilBindOnce(context.history(), 'change.intro', selectedPreset); + d3.select('.preset-search-input').on('keyup.intro', null); } + } - function drawArea(mode) { - if (mode.id !== 'draw-area') return; - context.on('enter.intro', enterSelect); - - var padding = 150 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(playground, padding, context); - reveal(pointBox, t('intro.areas.place')); - - context.map().on('move.intro drawn.intro', function() { - padding = 150 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(playground, padding, context); - reveal(pointBox, t('intro.areas.place'), {duration: 0}); - }); - } + function selectedPreset() { + reveal('.pane', + t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') })); + context.on('exit.intro', function() { + dispatch.call('done'); + }); + } - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - - timeout = setTimeout(function() { - reveal('.preset-search-input', - t('intro.areas.search', - { name: context.presets().item('leisure/playground').name() })); - d3.select('.preset-search-input').on('keyup.intro', keySearch); - }, 500); - } - - - function keySearch() { - var first = d3.select('.preset-list-item:first-child'); - if (first.classed('preset-leisure-playground')) { - reveal(first.select('.preset-list-button').node(), t('intro.areas.choose')); - utilBindOnce(context.history(), 'change.intro', selectedPreset); - d3.select('.preset-search-input').on('keyup.intro', null); - } - } - - - function selectedPreset() { - reveal('.pane', - t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', function() { - dispatch.call('done'); - }); - } + chapter.enter = function() { + context.history().reset('initial'); + context.map().zoom(19).centerEase(playground); + addArea(); }; chapter.exit = function() { - window.clearTimeout(timeout); + timeouts.forEach(window.clearTimeout); context.on('enter.intro', null); context.on('exit.intro', null); context.history().on('change.intro', null); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index f865d7dc7..bc62ee39c 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -34,153 +34,157 @@ export function uiIntroLine(context, reveal) { } - chapter.enter = function() { - context.history().reset('initial'); - context.map().zoom(18).centerEase(start); - + function addLine() { reveal('button.add-line', t('intro.lines.add', { button: icon('#icon-line', 'pre-text') }), { tooltipClass: 'intro-lines-add' }); - context.on('enter.intro', addLine); + context.on('enter.intro', startLine); + } - function addLine(mode) { - if (mode.id !== 'add-line') return; - drawId = null; - context.on('enter.intro', drawLine); + function startLine(mode) { + if (mode.id !== 'add-line') return; + drawId = null; + context.on('enter.intro', drawLine); - var padding = 150 * Math.pow(2, context.map().zoom() - 18); - var pointBox = pad(start, padding, context); - reveal(pointBox, t('intro.lines.start')); + var padding = 150 * Math.pow(2, context.map().zoom() - 18); + var pointBox = pad(start, padding, context); + reveal(pointBox, t('intro.lines.start')); - context.map().on('move.intro drawn.intro', function() { - padding = 150 * Math.pow(2, context.map().zoom() - 18); - pointBox = pad(start, padding, context); - reveal(pointBox, t('intro.lines.start'), {duration: 0}); + context.map().on('move.intro drawn.intro', function() { + padding = 150 * Math.pow(2, context.map().zoom() - 18); + pointBox = pad(start, padding, context); + reveal(pointBox, t('intro.lines.start'), {duration: 0}); + }); + } + + + function drawLine(mode) { + if (mode.id !== 'draw-line') return; + drawId = mode.selectedIDs()[0]; + context.history().on('change.intro', checkIntersection); + context.on('enter.intro', retry); + + var padding = 300 * Math.pow(2, context.map().zoom() - 19); + var pointBox = pad(midpoint, padding, context); + reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')})); + + context.map().on('move.intro drawn.intro', function() { + padding = 300 * Math.pow(2, context.map().zoom() - 19); + pointBox = pad(midpoint, padding, context); + reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')}), {duration: 0}); + }); + } + + + // ended line before creating intersection + function retry(mode) { + if (mode.id !== 'select') return; + context.history().on('change.intro', null); + var pointBox = pad(intersection, 30, context); + reveal(pointBox, t('intro.lines.restart', {name: t('intro.graph.flower_st')})); + d3.select(window).on('mousedown.intro', eventCancel, true); + + timeout(chapter.restart, 3000); + } + + + function checkIntersection() { + + function joinedTargetWay() { + var drawEntity = drawId && context.hasEntity(drawId); + if (!drawEntity) { + chapter.restart(); + return false; + } + + var drawNodes = context.graph().childNodes(drawEntity); + return _.some(drawNodes, function(node) { + return _.some(context.graph().parentWays(node), function(parent) { + return parent.id === targetId; + }); }); } - - function drawLine(mode) { - if (mode.id !== 'draw-line') return; - drawId = mode.selectedIDs()[0]; - context.history().on('change.intro', checkIntersection); - context.on('enter.intro', retry); - - var padding = 300 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(midpoint, padding, context); - reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')})); - - context.map().on('move.intro drawn.intro', function() { - padding = 300 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(midpoint, padding, context); - reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')}), {duration: 0}); - }); - } - - - // ended line before creating intersection - function retry(mode) { - if (mode.id !== 'select') return; + if (joinedTargetWay()) { context.history().on('change.intro', null); - var pointBox = pad(intersection, 30, context); - reveal(pointBox, t('intro.lines.restart', {name: t('intro.graph.flower_st')})); - d3.select(window).on('mousedown.intro', eventCancel, true); + context.on('enter.intro', enterSelect); - timeout(chapter.restart, 3000); - } + var padding = 900 * Math.pow(2, context.map().zoom() - 19); + var pointBox = pad(centroid, padding, context); + reveal(pointBox, t('intro.lines.finish')); - - function checkIntersection() { - - function joinedTargetWay() { - var drawEntity = drawId && context.hasEntity(drawId); - if (!drawEntity) { - chapter.restart(); - return false; - } - - var drawNodes = context.graph().childNodes(drawEntity); - return _.some(drawNodes, function(node) { - return _.some(context.graph().parentWays(node), function(parent) { - return parent.id === targetId; - }); - }); - } - - if (joinedTargetWay()) { - context.history().on('change.intro', null); - context.on('enter.intro', enterSelect); - - var padding = 900 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(centroid, padding, context); - reveal(pointBox, t('intro.lines.finish')); - - context.map().on('move.intro drawn.intro', function() { - padding = 900 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(centroid, padding, context); - reveal(pointBox, t('intro.lines.finish'), {duration: 0}); - }); - } - } - - - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - d3.select('#curtain').style('pointer-events', 'all'); - presetCategory(); - } - - - function presetCategory() { - timeout(function() { - d3.select('#curtain').style('pointer-events', 'none'); - var road = d3.select('.preset-category-road .preset-list-button'); - reveal(road.node(), t('intro.lines.road')); - utilBindOnce(road, 'click.intro', roadCategory); - }, 500); - } - - - function roadCategory() { - timeout(function() { - var grid = d3.select('.subgrid'); - reveal(grid.node(), t('intro.lines.residential')); - utilBindOnce(grid.selectAll(':not(.preset-highway-residential) .preset-list-button'), - 'click.intro', retryPreset); - utilBindOnce(grid.selectAll('.preset-highway-residential .preset-list-button'), - 'click.intro', roadDetails); - }, 500); - } - - - // selected wrong road type - function retryPreset() { - timeout(function() { - var preset = d3.select('.entity-editor-pane .preset-list-button'); - reveal(preset.node(), t('intro.lines.wrong_preset')); - utilBindOnce(preset, 'click.intro', presetCategory); - }, 500); - } - - - function roadDetails() { - reveal('.pane', - t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', function() { - dispatch.call('done'); + context.map().on('move.intro drawn.intro', function() { + padding = 900 * Math.pow(2, context.map().zoom() - 19); + pointBox = pad(centroid, padding, context); + reveal(pointBox, t('intro.lines.finish'), {duration: 0}); }); } + } + + + function enterSelect(mode) { + if (mode.id !== 'select') return; + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + d3.select('#curtain').style('pointer-events', 'all'); + presetCategory(); + } + + + function presetCategory() { + timeout(function() { + d3.select('#curtain').style('pointer-events', 'none'); + var road = d3.select('.preset-category-road .preset-list-button'); + reveal(road.node(), t('intro.lines.road')); + utilBindOnce(road, 'click.intro', roadCategory); + }, 500); + } + + + function roadCategory() { + timeout(function() { + var grid = d3.select('.subgrid'); + reveal(grid.node(), t('intro.lines.residential')); + utilBindOnce(grid.selectAll(':not(.preset-highway-residential) .preset-list-button'), + 'click.intro', retryPreset); + utilBindOnce(grid.selectAll('.preset-highway-residential .preset-list-button'), + 'click.intro', roadDetails); + }, 500); + } + + + // selected wrong road type + function retryPreset() { + timeout(function() { + var preset = d3.select('.entity-editor-pane .preset-list-button'); + reveal(preset.node(), t('intro.lines.wrong_preset')); + utilBindOnce(preset, 'click.intro', presetCategory); + }, 500); + } + + + function roadDetails() { + reveal('.pane', + t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') })); + context.on('exit.intro', function() { + dispatch.call('done'); + }); + } + + + chapter.enter = function() { + context.history().reset('initial'); + context.map().zoom(18).centerEase(start); + addLine(); }; chapter.exit = function() { + timeouts.forEach(window.clearTimeout); d3.select(window).on('mousedown.intro', null, true); d3.select('#curtain').style('pointer-events', 'none'); - timeouts.forEach(window.clearTimeout); context.on('enter.intro', null); context.on('exit.intro', null); context.map().on('move.intro drawn.intro', null); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index c80a9c98c..7ca405881 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -8,12 +8,13 @@ export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = []; + var chapter = { title: 'intro.navigation.title' }; - function set(f, t) { + function timeout(f, t) { timeouts.push(window.setTimeout(f, t)); } @@ -24,110 +25,111 @@ export function uiIntroNavigation(context, reveal) { } + function dragMap() { + var dragged = false, + rect = context.surfaceRect(), + map = { + left: rect.left + 10, + top: rect.top + 70, + width: rect.width - 70, + height: rect.height - 170 + }; + + context.map().centerZoom([-85.63591, 41.94285], 19); + reveal(map, t('intro.navigation.drag')); + + context.map().on('move.intro', function() { + dragged = true; + }); + + d3.select(window).on('mouseup.intro', function() { + if (!dragged) return; + d3.select(window).on('mouseup.intro', null, true); + context.map().on('move.intro', null); + clickTownHall(); + }, true); + } + + + function clickTownHall() { + context.history().reset('initial'); // ensure townhall exists + var hall = context.entity('n2140018997'); + + context.on('enter.intro', inspectTownHall); + context.map().centerEase(hall.loc, 250); + + timeout(function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.select')); + context.map().on('move.intro drawn.intro', function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.select'), { duration: 0 }); + }); + }, 260); + } + + + function inspectTownHall(mode) { + if (mode.id !== 'select') return; + + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.on('exit.intro', streetSearch); + + timeout(function() { + reveal('.entity-editor-pane', + t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) + ); + }, 700); + } + + + function streetSearch() { + context.history().reset('initial'); // ensure spring street exists + context.on('exit.intro', null); + reveal('.search-header input', + t('intro.navigation.search', { name: t('intro.graph.spring_st') })); + d3.select('.search-header input') + .on('keyup.intro', searchResult); + } + + + function searchResult() { + var first = d3.select('.feature-list-item:nth-child(0n+2)'), // skip No Results item + firstName = first.select('.entity-name'), + name = t('intro.graph.spring_st'); + + if (!firstName.empty() && firstName.text() === name) { + reveal(first.node(), t('intro.navigation.choose', { name: name })); + context.on('exit.intro', selectedStreet); + d3.select('.search-header input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); + } + } + + + function selectedStreet() { + var springSt = [-85.63585099140167, 41.942506848938926]; + context.map().centerEase(springSt); + context.on('exit.intro', function() { + dispatch.call('done'); + }); + + timeout(function() { + reveal('.entity-editor-pane', + t('intro.navigation.chosen', { + name: t('intro.graph.spring_st'), + button: icon('#icon-close', 'pre-text') + }) + ); + }, 400); + } + + chapter.enter = function() { context.history().reset('initial'); dragMap(); - - function dragMap() { - var dragged = false, - rect = context.surfaceRect(), - map = { - left: rect.left + 10, - top: rect.top + 70, - width: rect.width - 70, - height: rect.height - 170 - }; - - context.map().centerZoom([-85.63591, 41.94285], 19); - reveal(map, t('intro.navigation.drag')); - - context.map().on('move.intro', function() { - dragged = true; - }); - - d3.select(window).on('mouseup.intro', function() { - if (!dragged) return; - d3.select(window).on('mouseup.intro', null, true); - context.map().on('move.intro', null); - clickTownHall(); - }, true); - } - - - function clickTownHall() { - var hall = context.hasEntity('n2140018997'); - if (!hall) chapter.restart(); - - context.on('enter.intro', inspectTownHall); - context.map().centerEase(hall.loc, 250); - - set(function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select')); - context.map().on('move.intro drawn.intro', function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select'), { duration: 0 }); - }); - }, 260); - } - - - function inspectTownHall(mode) { - if (mode.id !== 'select') return; - - context.on('enter.intro', null); - context.map().on('move.intro drawn.intro', null); - context.on('exit.intro', streetSearch); - - set(function() { - reveal('.entity-editor-pane', - t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) - ); - }, 700); - } - - - function streetSearch() { - context.on('exit.intro', null); - reveal('.search-header input', - t('intro.navigation.search', { name: t('intro.graph.spring_st') })); - d3.select('.search-header input') - .on('keyup.intro', searchResult); - } - - - function searchResult() { - var first = d3.select('.feature-list-item:nth-child(0n+2)'), // skip No Results item - firstName = first.select('.entity-name'), - name = t('intro.graph.spring_st'); - - if (!firstName.empty() && firstName.text() === name) { - reveal(first.node(), t('intro.navigation.choose', { name: name })); - context.on('exit.intro', selectedStreet); - d3.select('.search-header input') - .on('keydown.intro', eventCancel, true) - .on('keyup.intro', null); - } - } - - - function selectedStreet() { - var springSt = [-85.63585099140167, 41.942506848938926]; - - context.map().centerEase(springSt); - context.on('exit.intro', function() { - dispatch.call('done'); - }); - - set(function() { - reveal('.entity-editor-pane', - t('intro.navigation.chosen', { - name: t('intro.graph.spring_st'), - button: icon('#icon-close', 'pre-text') - }) - ); - }, 400); - } }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 5a15816db..2aa0e9c56 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -7,14 +7,16 @@ import { icon, pad } from './helper'; export function uiIntroPoint(context, reveal) { var dispatch = d3.dispatch('done'), - timeouts = []; + timeouts = [], + corner = [-85.632481, 41.944094]; + var chapter = { title: 'intro.points.title' }; - function setTimeout(f, t) { + function timeout(f, t) { timeouts.push(window.setTimeout(f, t)); } @@ -25,145 +27,146 @@ export function uiIntroPoint(context, reveal) { } - chapter.enter = function() { - context.history().reset('initial'); - context.map().zoom(19).centerEase([-85.63279, 41.94394]); - + function addPoint() { reveal('button.add-point', t('intro.points.add', { button: icon('#icon-point', 'pre-text') }), { tooltipClass: 'intro-points-add' }); - var corner = [-85.632481, 41.944094]; - - context.on('enter.intro', addPoint); + context.on('enter.intro', placePoint); + } - function addPoint(mode) { - if (mode.id !== 'add-point') return; - context.on('enter.intro', enterSelect); + function placePoint(mode) { + if (mode.id !== 'add-point') return; + context.on('enter.intro', enterSelect); - var pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.place')); + var pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.place')); - context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.place'), {duration: 0}); - }); + context.map().on('move.intro drawn.intro', function() { + pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.place'), {duration: 0}); + }); + } + + + function enterSelect(mode) { + if (mode.id !== 'select') return; + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + + timeout(function() { + reveal('.preset-search-input', + t('intro.points.search', {name: context.presets().item('amenity/cafe').name()})); + d3.select('.preset-search-input').on('keyup.intro', keySearch); + }, 500); + } + + + function keySearch() { + var first = d3.select('.preset-list-item:first-child'); + if (first.classed('preset-amenity-cafe')) { + reveal(first.select('.preset-list-button').node(), t('intro.points.choose')); + utilBindOnce(context.history(), 'change.intro', selectedPreset); + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); } + } - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - - setTimeout(function() { - reveal('.preset-search-input', - t('intro.points.search', {name: context.presets().item('amenity/cafe').name()})); - d3.select('.preset-search-input').on('keyup.intro', keySearch); - }, 500); - } + function selectedPreset() { + timeout(function() { + reveal('.entity-editor-pane', t('intro.points.describe'), {tooltipClass: 'intro-points-describe'}); + context.history().on('change.intro', closeEditor); + context.on('exit.intro', selectPoint); + }, 400); + } - function keySearch() { - var first = d3.select('.preset-list-item:first-child'); - if (first.classed('preset-amenity-cafe')) { - reveal(first.select('.preset-list-button').node(), t('intro.points.choose')); - utilBindOnce(context.history(), 'change.intro', selectedPreset); - d3.select('.preset-search-input') - .on('keydown.intro', eventCancel, true) - .on('keyup.intro', null); - } - } + function closeEditor() { + d3.select('.preset-search-input').on('keydown.intro', null); + context.history().on('change.intro', null); + reveal('.entity-editor-pane', + t('intro.points.close', { button: icon('#icon-apply', 'pre-text') })); + } - function selectedPreset() { - setTimeout(function() { - reveal('.entity-editor-pane', t('intro.points.describe'), {tooltipClass: 'intro-points-describe'}); - context.history().on('change.intro', closeEditor); - context.on('exit.intro', selectPoint); - }, 400); - } + function selectPoint() { + context.on('exit.intro', null); + context.history().on('change.intro', null); + context.on('enter.intro', enterReselect); + + var pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.reselect')); + + context.map().on('move.intro drawn.intro', function() { + pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.reselect'), {duration: 0}); + }); + } - function closeEditor() { - d3.select('.preset-search-input').on('keydown.intro', null); - context.history().on('change.intro', null); + function enterReselect(mode) { + if (mode.id !== 'select') return; + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + + timeout(function() { reveal('.entity-editor-pane', - t('intro.points.close', { button: icon('#icon-apply', 'pre-text') })); - } - - - function selectPoint() { - context.on('exit.intro', null); - context.history().on('change.intro', null); - context.on('enter.intro', enterReselect); - - var pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.reselect')); - - context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.reselect'), {duration: 0}); - }); - } - - - function enterReselect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - - setTimeout(function() { - reveal('.entity-editor-pane', - t('intro.points.fixname', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', deletePoint); - }, 500); - } - - - function deletePoint() { - context.on('exit.intro', null); - context.on('enter.intro', enterDelete); - - var pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.rightclick')); - - context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.rightclick'), {duration: 0}); - }); - } - - - function enterDelete(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); + t('intro.points.fixname', { button: icon('#icon-apply', 'pre-text') })); context.on('exit.intro', deletePoint); - context.map().on('move.intro drawn.intro', deletePoint); - context.history().on('change.intro', deleted); - - setTimeout(function() { - // deprecation warning - Radial Menu to be removed in iD v3 - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); - if (!node) { - deletePoint(); - } else { - var pointBox = pad(node.getBoundingClientRect(), 50, context); - reveal(pointBox, - t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') })); - } - }, 300); - } + }, 500); + } - function deleted(changed) { - if (changed.deleted().length) { - dispatch.call('done'); + function deletePoint() { + context.on('exit.intro', null); + context.on('enter.intro', enterDelete); + + var pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.rightclick')); + + context.map().on('move.intro drawn.intro', function() { + pointBox = pad(corner, 150, context); + reveal(pointBox, t('intro.points.rightclick'), {duration: 0}); + }); + } + + + function enterDelete(mode) { + if (mode.id !== 'select') return; + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + context.on('exit.intro', deletePoint); + context.map().on('move.intro drawn.intro', deletePoint); + context.history().on('change.intro', deleted); + + timeout(function() { + // deprecation warning - Radial Menu to be removed in iD v3 + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) { + deletePoint(); + } else { + var pointBox = pad(node.getBoundingClientRect(), 50, context); + reveal(pointBox, + t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') })); } - } + }, 300); + } + + function deleted(changed) { + if (changed.deleted().length) { + dispatch.call('done'); + } + } + + + chapter.enter = function() { + context.history().reset('initial'); + context.map().zoom(19).centerEase([-85.63279, 41.94394]); + addPoint(); }; diff --git a/modules/ui/intro/start_editing.js b/modules/ui/intro/start_editing.js index c684036ca..4c98e6d8d 100644 --- a/modules/ui/intro/start_editing.js +++ b/modules/ui/intro/start_editing.js @@ -10,6 +10,7 @@ export function uiIntroStartEditing(context, reveal) { modalSelection, timeouts = []; + var chapter = { title: 'intro.startediting.title' }; From 09d3e2d09d55ab5edecd2ca4ccd3ff5c602c1bad Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 23 Mar 2017 10:39:43 -0400 Subject: [PATCH 10/91] Code cleanups, move local feature names to helper --- modules/ui/intro/helper.js | 46 +++++++++++++++++++++ modules/ui/intro/intro.js | 82 ++++++++++---------------------------- 2 files changed, 67 insertions(+), 61 deletions(-) diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 30295368d..ca768ac20 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -36,3 +36,49 @@ export function icon(name, svgklass) { return '' + ''; } + + +export var localNames = { + n2140018997: 'city_hall', + n367813436: 'fire_department', + w203988286: 'memory_isle_park', + w203972937: 'riverwalk_trail', + w203972938: 'riverwalk_trail', + w203972940: 'riverwalk_trail', + w41785752: 'w_michigan_ave', + w134150789: 'w_michigan_ave', + w134150795: 'w_michigan_ave', + w134150800: 'w_michigan_ave', + w134150811: 'w_michigan_ave', + w134150802: 'e_michigan_ave', + w134150836: 'e_michigan_ave', + w41074896: 'e_michigan_ave', + w17965834: 'spring_st', + w203986457: 'scidmore_park', + w203049587: 'petting_zoo', + w17967397: 'n_andrews_st', + w17967315: 's_andrews_st', + w17967326: 'n_constantine_st', + w17966400: 's_constantine_st', + w170848823: 'rocky_river', + w170848824: 'rocky_river', + w170848331: 'rocky_river', + w17967752: 'railroad_dr', + w17965998: 'conrail_rr', + w134150845: 'conrail_rr', + w170989131: 'st_joseph_river', + w143497377: 'n_main_st', + w134150801: 's_main_st', + w134150830: 's_main_st', + w17966462: 's_main_st', + w17967734: 'water_st', + w17964996: 'foster_st', + w170848330: 'portage_river', + w17965351: 'flower_st', + w17965502: 'elm_st', + w17965402: 'walnut_st', + w17964793: 'morris_ave', + w17967444: 'east_st', + w17966984: 'portage_ave' +}; + diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 8b015f7a5..2478be5f9 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -1,5 +1,7 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; +import { localNames } from './helper'; + import { coreGraph } from '../../core/graph'; import { modeBrowse } from '../../modes/browse'; import { osmEntity } from '../../osm/entity'; @@ -13,7 +15,7 @@ import { uiIntroLine } from './line'; import { uiIntroStartEditing } from './start_editing'; -var sampleIntros = { +var chapterUi = { navigation: uiIntroNavigation, point: uiIntroPoint, area: uiIntroArea, @@ -21,64 +23,23 @@ var sampleIntros = { startEditing: uiIntroStartEditing }; +var chapterFlow = [ + 'navigation', + 'point', + 'area', + 'line', + 'startEditing' +]; + export function uiIntro(context) { - var chapter; - - function localizedName(id) { - var features = { - n2140018997: 'city_hall', - n367813436: 'fire_department', - w203988286: 'memory_isle_park', - w203972937: 'riverwalk_trail', - w203972938: 'riverwalk_trail', - w203972940: 'riverwalk_trail', - w41785752: 'w_michigan_ave', - w134150789: 'w_michigan_ave', - w134150795: 'w_michigan_ave', - w134150800: 'w_michigan_ave', - w134150811: 'w_michigan_ave', - w134150802: 'e_michigan_ave', - w134150836: 'e_michigan_ave', - w41074896: 'e_michigan_ave', - w17965834: 'spring_st', - w203986457: 'scidmore_park', - w203049587: 'petting_zoo', - w17967397: 'n_andrews_st', - w17967315: 's_andrews_st', - w17967326: 'n_constantine_st', - w17966400: 's_constantine_st', - w170848823: 'rocky_river', - w170848824: 'rocky_river', - w170848331: 'rocky_river', - w17967752: 'railroad_dr', - w17965998: 'conrail_rr', - w134150845: 'conrail_rr', - w170989131: 'st_joseph_river', - w143497377: 'n_main_st', - w134150801: 's_main_st', - w134150830: 's_main_st', - w17966462: 's_main_st', - w17967734: 'water_st', - w17964996: 'foster_st', - w170848330: 'portage_river', - w17965351: 'flower_st', - w17965502: 'elm_st', - w17965402: 'walnut_st', - w17964793: 'morris_ave', - w17967444: 'east_st', - w17966984: 'portage_ave' - }; - - return features[id] && t('intro.graph.' + features[id]); - } - - - var introGraph = {}; + var introGraph = {}, + currChapter; + // create entities for intro graph and localize names for (var key in dataIntroGraph) { introGraph[key] = osmEntity(dataIntroGraph[key]); - var name = localizedName(key); + var name = localNames[id] && t('intro.graph.' + localNames[id]); if (name) { introGraph[key].tags.name = name; } @@ -113,8 +74,8 @@ export function uiIntro(context) { var curtain = uiCurtain(); selection.call(curtain); - var chapters = ['navigation', 'point', 'area', 'line', 'startEditing'].map(function(chapter, i) { - var s = sampleIntros[chapter](context, reveal) + var chapters = chapterFlow.map(function(chapter, i) { + var s = chapterUi[chapter](context, reveal) .on('done', function() { entered.filter(function(d) { return d.title === s.title; @@ -176,18 +137,17 @@ export function uiIntro(context) { function enter(newChapter) { - if (chapter) { chapter.exit(); } + if (currChapter) { currChapter.exit(); } context.enter(modeBrowse(context)); - chapter = newChapter; - chapter.enter(); + currChapter = newChapter; + currChapter.enter(); entered.classed('active', function(d) { - return d.title === chapter.title; + return d.title === currChapter.title; }); } - } From 468c1e427d0eb427ebad0bbce91cfb2fd6d562de Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 23 Mar 2017 21:11:25 -0400 Subject: [PATCH 11/91] All graphics from iD-sprite are now symbols that can be used (re: #3924) --- css/80_app.css | 78 +++++++++++-------------------- modules/ui/curtain.js | 23 +++++++-- modules/ui/help.js | 17 +++++-- modules/ui/intro/area.js | 11 +++-- modules/ui/intro/intro.js | 22 ++++----- modules/ui/intro/line.js | 11 +++-- modules/ui/intro/point.js | 8 +++- modules/ui/intro/start_editing.js | 6 ++- modules/ui/restore.js | 24 ++++++++-- modules/ui/splash.js | 33 ++++++++++--- modules/ui/success.js | 14 +++++- svg/iD-sprite.json | 20 +++++++- 12 files changed, 174 insertions(+), 93 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index ca43f3658..d19dc55d6 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -2420,6 +2420,7 @@ div.full-screen > button:hover { margin-top: 10px; border-bottom: 1px solid #ccc; border-radius: 4px; + text-align: center; } .help-wrap .nav { @@ -3016,20 +3017,14 @@ img.tile-removing { background-color: #ececec; } -.modal-actions button:before, -.save-success a.button.osm:before, -.walkthrough a:before { - display: block; - content: ''; +.logo { height: 100px; width: 100%; max-width: 100px; margin: auto; - margin-bottom: 10px; - background:transparent url(img/iD-sprite.svg) no-repeat -200px -460px; } -.modal-actions :first-child { +.modal-actions > :first-child { border-right: 1px solid #CCC; } @@ -3039,57 +3034,48 @@ img.tile-removing { /* Restore Modal ------------------------------------------------------- */ - -.modal-actions .restore:before { - background-position: -500px -460px; +.modal-actions .logo-restore { + color: #7092FF; } - -.modal-actions .reset:before { - background-position: -600px -460px; +.modal-actions .logo-reset { + color: #E06C5E; } /* Success Modal ------------------------------------------------------- */ - .save-success p { padding: 15px 15px 0 15px; } .save-success a.details { - padding-left: 15px; + padding-left: 15px; } .save-success .button { padding-top: 15px; } - +.save-success .logo-osm { + color: #7092FF; + margin-bottom: 10px; +} .save-success a.button.social { height: auto; + border-bottom: none; } - .save-success .icon.social { height: 80px; width: 80px; color: #7092FF; } -.save-success .button.osm:before { - background-position: -200px -460px; -} - /* Splash Modal ------------------------------------------------------- */ - -.modal-actions .walkthrough:before, -.walkthrough a:before { - background-position: -300px -460px; +.modal-actions .logo-walkthrough, +.modal-actions .logo-features { + color: #7092FF; } -.modal-actions .start:before { - background-position: -400px -460px; -} -/* Commit Modal +/* Save Mode ------------------------------------------------------- */ - .mode-save a.user-info { display: inline-block; } @@ -3452,6 +3438,13 @@ img.tile-removing { .add-point .tooltip .tooltip-arrow { left: 60px; } +[dir='rtl'] .add-point .tooltip .tooltip-arrow { + left: auto; + right: 60px; +} +[dir='rtl'] .curtain-tooltip.intro-points-add .tooltip-arrow { + left: 50%; +} /* radial menu (deprecated) */ @@ -3656,25 +3649,11 @@ img.tile-removing { top: 133px !important; } -/* Tooltip illustrations */ - -.intro-points-add .tooltip-inner::before, -.intro-areas-add .tooltip-inner::before, -.intro-lines-add .tooltip-inner::before { - margin-left: -20px; - display: block; - content: ""; +.tooltip-illustration { height: 80px; width: 200px; - background:transparent url(img/iD-sprite.svg) no-repeat 0 -320px; -} - -.intro-areas-add .tooltip-inner::before { - background-position: 0 -400px; -} - -.intro-lines-add .tooltip-inner::before { - background-position: 0 -480px; + margin-left: -20px; + margin-top: -10px; } .huge-modal-button { @@ -3686,8 +3665,7 @@ img.tile-removing { .huge-modal-button .illustration { height: 100px; width: 100px; - background: rgba(0, 0, 0, 0) url(img/iD-sprite.svg) no-repeat -300px -460px; - margin: auto; + color: #7092FF; } .mapillary-wrap { diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index b6155266f..bbdedb219 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -51,11 +51,12 @@ export function uiCurtain() { } - curtain.reveal = function(box, text, tooltipclass, duration) { + curtain.reveal = function(box, text, options) { if (typeof box === 'string') box = d3.select(box).node(); if (box.getBoundingClientRect) box = box.getBoundingClientRect(); - curtain.cut(box, duration); + options = options || {}; + curtain.cut(box, options.duration); if (text) { // pseudo markdown bold text hack @@ -104,18 +105,20 @@ export function uiCurtain() { Math.min(Math.max(10, pos[1]), h - dimensions[1] - 10) ]; - if (duration !== 0 || !tooltip.classed(side)) { + if (options.duration !== 0 || !tooltip.classed(side)) { tooltip.call(uiToggle(true)); } tooltip .style('top', pos[1] + 'px') .style('left', pos[0] + 'px') - .attr('class', 'curtain-tooltip tooltip in ' + side + ' ' + tooltipclass); + .attr('class', 'curtain-tooltip tooltip in ' + side + ' ' + (options.tooltipClass || '')); } else { tooltip.call(uiToggle(false)); } + + return tooltip; }; @@ -123,7 +126,17 @@ export function uiCurtain() { darkness.datum(datum) .interrupt(); - (duration === 0 ? darkness : darkness.transition().duration(duration || 600)) + var selection; + if (duration === 0) { + selection = darkness; + } else { + selection = darkness + .transition() + .duration(duration || 600) + .ease(d3.easeLinear); + } + + selection .attr('d', function(d) { var string = 'M 0,0 L 0,' + window.innerHeight + ' L ' + window.innerWidth + ',' + window.innerHeight + 'L' + diff --git a/modules/ui/help.js b/modules/ui/help.js index c0faf4d47..61feb834c 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -159,12 +159,23 @@ export function uiHelp(context) { .html(function(d) { return d.title; }) .on('click', clickHelp); - toc.append('li') - .attr('class','walkthrough') + var walkthrough = toc + .append('li') + .attr('class', 'walkthrough') .append('a') - .text(t('splash.walkthrough')) .on('click', clickWalkthrough); + walkthrough + .append('svg') + .attr('class', 'logo logo-walkthrough') + .append('use') + .attr('xlink:href', '#logo-walkthrough'); + + walkthrough + .append('div') + .text(t('splash.walkthrough')); + + var content = pane.append('div') .attr('class', 'left-content'); diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 857c8824d..4c9e54927 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -23,9 +23,14 @@ export function uiIntroArea(context, reveal) { function addArea() { - reveal('button.add-area', - t('intro.areas.add', { button: icon('#icon-area', 'pre-text') }), - { tooltipClass: 'intro-areas-add' }); + var tooltip = reveal('button.add-area', + t('intro.areas.add', { button: icon('#icon-area', 'pre-text') })); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#landuse-images'); context.on('enter.intro', startArea); } diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 2478be5f9..079d3fe0c 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -3,9 +3,10 @@ import { t } from '../../util/locale'; import { localNames } from './helper'; import { coreGraph } from '../../core/graph'; +import { dataIntroGraph } from '../../../data/intro_graph.json'; import { modeBrowse } from '../../modes/browse'; import { osmEntity } from '../../osm/entity'; -import { dataIntroGraph } from '../../../data/intro_graph.json'; +import { svgIcon } from '../../svg/icon'; import { uiCurtain } from '../curtain'; import { uiIntroNavigation } from './navigation'; @@ -39,7 +40,7 @@ export function uiIntro(context) { // create entities for intro graph and localize names for (var key in dataIntroGraph) { introGraph[key] = osmEntity(dataIntroGraph[key]); - var name = localNames[id] && t('intro.graph.' + localNames[id]); + var name = localNames[key] && t('intro.graph.' + localNames[key]); if (name) { introGraph[key].tags.name = name; } @@ -75,7 +76,7 @@ export function uiIntro(context) { selection.call(curtain); var chapters = chapterFlow.map(function(chapter, i) { - var s = chapterUi[chapter](context, reveal) + var s = chapterUi[chapter](context, curtain.reveal) .on('done', function() { entered.filter(function(d) { return d.title === s.title; @@ -102,6 +103,11 @@ export function uiIntro(context) { .append('div') .attr('class', 'intro-nav-wrap fillD'); + // navwrap + // .append('div') + // .attr('class', 'intro-nav-wrap-icon fillD') + // .call(svgIcon('#logo-walkthrough', 'pre-text light')); + var buttonwrap = navwrap .append('div') .attr('class', 'joined') @@ -126,16 +132,6 @@ export function uiIntro(context) { enter(chapters[0]); - function reveal(box, text, options) { - options = options || {}; - curtain.reveal(box, - text || '', - options.tooltipClass || '', - options.duration - ); - } - - function enter(newChapter) { if (currChapter) { currChapter.exit(); } diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index bc62ee39c..d4dcdf382 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -35,9 +35,14 @@ export function uiIntroLine(context, reveal) { function addLine() { - reveal('button.add-line', - t('intro.lines.add', { button: icon('#icon-line', 'pre-text') }), - { tooltipClass: 'intro-lines-add' }); + var tooltip = reveal('button.add-line', + t('intro.lines.add', { button: icon('#icon-line', 'pre-text') })); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#feature-images'); context.on('enter.intro', startLine); } diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 2aa0e9c56..53c162f68 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -28,10 +28,16 @@ export function uiIntroPoint(context, reveal) { function addPoint() { - reveal('button.add-point', + var tooltip = reveal('button.add-point', t('intro.points.add', { button: icon('#icon-point', 'pre-text') }), { tooltipClass: 'intro-points-add' }); + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#poi-images'); + context.on('enter.intro', placePoint); } diff --git a/modules/ui/intro/start_editing.js b/modules/ui/intro/start_editing.js index 4c98e6d8d..375494184 100644 --- a/modules/ui/intro/start_editing.js +++ b/modules/ui/intro/start_editing.js @@ -50,8 +50,10 @@ export function uiIntroStartEditing(context, reveal) { }); startbutton - .append('div') - .attr('class','illustration'); + .append('svg') + .attr('class', 'illustration') + .append('use') + .attr('xlink:href', '#logo-walkthrough'); startbutton .append('h2') diff --git a/modules/ui/restore.js b/modules/ui/restore.js index f67cdd1d3..43da523de 100644 --- a/modules/ui/restore.js +++ b/modules/ui/restore.js @@ -37,21 +37,39 @@ export function uiRestore(context) { var restore = buttonWrap .append('button') .attr('class', 'restore col6') - .text(t('restore.restore')) .on('click', function() { context.history().restore(); modalSelection.remove(); }); - buttonWrap + restore + .append('svg') + .attr('class', 'logo logo-restore') + .append('use') + .attr('xlink:href', '#logo-restore'); + + restore + .append('div') + .text(t('restore.restore')); + + var reset = buttonWrap .append('button') .attr('class', 'reset col6') - .text(t('restore.reset')) .on('click', function() { context.history().clearSaved(); modalSelection.remove(); }); + reset + .append('svg') + .attr('class', 'logo logo-reset') + .append('use') + .attr('xlink:href', '#logo-reset'); + + reset + .append('div') + .text(t('restore.reset')); + restore.node().focus(); }; } diff --git a/modules/ui/splash.js b/modules/ui/splash.js index 791d17693..8703c15c7 100644 --- a/modules/ui/splash.js +++ b/modules/ui/splash.js @@ -36,25 +36,44 @@ export function uiSplash(context) { github: 'github.com' })); - var buttons = introModal + var buttonWrap = introModal .append('div') .attr('class', 'modal-actions cf'); - buttons + var walkthrough = buttonWrap .append('button') - .attr('class', 'col6 walkthrough') - .text(t('splash.walkthrough')) + .attr('class', 'walkthrough col6') .on('click', function() { d3.select(document.body).call(uiIntro(context)); modalSelection.close(); }); - buttons + walkthrough + .append('svg') + .attr('class', 'logo logo-walkthrough') + .append('use') + .attr('xlink:href', '#logo-walkthrough'); + + walkthrough + .append('div') + .text(t('splash.walkthrough')); + + var startEditing = buttonWrap .append('button') - .attr('class', 'col6 start') - .text(t('splash.start')) + .attr('class', 'start-editing col6') .on('click', modalSelection.close); + startEditing + .append('svg') + .attr('class', 'logo logo-features') + .append('use') + .attr('xlink:href', '#logo-features'); + + startEditing + .append('div') + .text(t('splash.start')); + + modalSelection.select('button.close') .attr('class','hide'); diff --git a/modules/ui/success.js b/modules/ui/success.js index 989363e3c..d7002520c 100644 --- a/modules/ui/success.js +++ b/modules/ui/success.js @@ -45,11 +45,21 @@ export function uiSuccess(context) { var changesetURL = context.connection().changesetURL(changeset.id); - body + + var viewOnOsm = body .append('a') .attr('class', 'button col12 osm') .attr('target', '_blank') - .attr('href', changesetURL) + .attr('href', changesetURL); + + viewOnOsm + .append('svg') + .attr('class', 'logo logo-osm') + .append('use') + .attr('xlink:href', '#logo-osm'); + + viewOnOsm + .append('div') .text(t('success.view_on_osm')); diff --git a/svg/iD-sprite.json b/svg/iD-sprite.json index 36fcd2d48..69365f349 100644 --- a/svg/iD-sprite.json +++ b/svg/iD-sprite.json @@ -383,5 +383,23 @@ "logo-twitter-shape": { "fill": "currentColor" }, "logo-facebook-shape": { "fill": "currentColor" }, - "logo-google-shape": { "fill": "currentColor" } + "logo-google-shape": { "fill": "currentColor" }, + + "logo-osm": { "viewBox": "200 460 100 100" }, + "logo-walkthrough": { "viewBox": "300 460 100 100" }, + "logo-features": { "viewBox": "400 460 100 100" }, + "logo-restore": { "viewBox": "500 460 100 100" }, + "logo-reset": { "viewBox": "600 460 100 100" }, + + "logo-osm-shape": { "fill": "currentColor" }, + "logo-walkthrough-shape": { "fill": "currentColor" }, + "logo-features-shape1": { "fill": "currentColor" }, + "logo-features-shape2": { "fill": "currentColor" }, + "logo-features-shape3": { "fill": "currentColor" }, + "logo-restore-shape": { "fill": "currentColor" }, + "logo-reset-shape": { "fill": "currentColor" }, + + "poi-images": { "viewBox": "0 320 200 80" }, + "landuse-images": { "viewBox": "0 400 200 80" }, + "feature-images": { "viewBox": "0 480 200 80" } } From 85be712e03c3933726625c1716812f540853d712 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 23 Mar 2017 22:29:20 -0400 Subject: [PATCH 12/91] Use flex for walkthrough navigation bar, add walkthrough logo --- css/80_app.css | 20 +++++++++++++++++++- modules/ui/intro/intro.js | 9 +++++---- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index d19dc55d6..89cac690b 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3594,6 +3594,8 @@ img.tile-removing { } .intro-nav-wrap { + display: flex; + flex-direction: row; position: absolute; left: 0; right: 0; @@ -3602,8 +3604,24 @@ img.tile-removing { z-index: 1001; } +.intro-nav-wrap .intro-nav-wrap-logo { + flex: 0 0 auto; + height: 40px; + width: 40px; + color: white; + margin: 0px 20px; + vertical-align: middle; +} + +.intro-nav-wrap .joined { + flex: 1 1 auto; + display: flex; + flex-direction: row; +} + .intro-nav-wrap button.chapter { - width: 20%; + flex: 1 1 100%; + padding: 0px 20px; } .intro-nav-wrap button.chapter.finished { diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 079d3fe0c..cc8122bca 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -103,10 +103,11 @@ export function uiIntro(context) { .append('div') .attr('class', 'intro-nav-wrap fillD'); - // navwrap - // .append('div') - // .attr('class', 'intro-nav-wrap-icon fillD') - // .call(svgIcon('#logo-walkthrough', 'pre-text light')); + navwrap + .append('svg') + .attr('class', 'intro-nav-wrap-logo') + .append('use') + .attr('xlink:href', '#logo-walkthrough'); var buttonwrap = navwrap .append('div') From 7432db78481784e4a61a7a31f521b0977e49eeab Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 23 Mar 2017 22:37:14 -0400 Subject: [PATCH 13/91] Attach intro to id-container, not document.body (re: #3925) --- modules/ui/help.js | 2 +- modules/ui/splash.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/help.js b/modules/ui/help.js index 61feb834c..9690af5d0 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -129,7 +129,7 @@ export function uiHelp(context) { function clickWalkthrough() { - d3.select(document.body).call(uiIntro(context)); + context.container().call(uiIntro(context)); setVisible(false); } diff --git a/modules/ui/splash.js b/modules/ui/splash.js index 8703c15c7..e68a5f7fd 100644 --- a/modules/ui/splash.js +++ b/modules/ui/splash.js @@ -44,7 +44,7 @@ export function uiSplash(context) { .append('button') .attr('class', 'walkthrough col6') .on('click', function() { - d3.select(document.body).call(uiIntro(context)); + context.container().call(uiIntro(context)); modalSelection.close(); }); From 424ad63993d31c857dd964b47ac049ca2749fdde Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 24 Mar 2017 10:02:52 -0400 Subject: [PATCH 14/91] Fix rtl for tooltip-illustrations, replace 'done' with next icon --- css/80_app.css | 4 ++++ modules/ui/intro/intro.js | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 89cac690b..e2739f364 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3673,6 +3673,10 @@ img.tile-removing { margin-left: -20px; margin-top: -10px; } +[dir='rtl'] .tooltip-illustration { + margin-left: auto; + margin-right: -20px; +} .huge-modal-button { width: 100%; diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index cc8122bca..1fd66b087 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -1,5 +1,5 @@ import * as d3 from 'd3'; -import { t } from '../../util/locale'; +import { t, textDirection } from '../../util/locale'; import { localNames } from './helper'; import { coreGraph } from '../../core/graph'; @@ -128,7 +128,7 @@ export function uiIntro(context) { entered .append('span') .attr('class', 'status') - .text(' - ' + t('intro.done')); + .call(svgIcon((textDirection === 'rtl' ? '#icon-backward' : '#icon-forward'), 'inline')); enter(chapters[0]); From 525994082c614f64ef90ea6162ccc27bec4171fa Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 24 Mar 2017 21:43:29 -0400 Subject: [PATCH 15/91] Support "top" placement so we can tooltip the navigation menu --- modules/ui/curtain.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index bbdedb219..e309b8bf9 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -96,8 +96,13 @@ export function uiCurtain() { pos = [box.left - 200, box.top + box.height / 2 - dimensions[1] / 2]; } else { - side = 'bottom'; - pos = [box.left, box.top + box.height]; + // need real tooltip height to calculate "top" placement + tooltip + .attr('class', 'curtain-tooltip tooltip in') + .call(uiToggle(true)); + var tip = tooltip.node().getBoundingClientRect(); + side = 'top'; + pos = [box.left + box.width / 2 - dimensions[0] / 2, box.top - tip.height]; } pos = [ From 6cc524a0a0325fe357ef1c263f691c35a2a807e6 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 25 Mar 2017 00:45:42 -0400 Subject: [PATCH 16/91] Improve walkthrough tooltip placement, fix for RTL too (closes #3925) --- css/80_app.css | 19 ++++---- modules/ui/curtain.js | 81 +++++++++++++++++++++++----------- modules/ui/intro/line.js | 5 --- modules/ui/intro/navigation.js | 14 ++++-- modules/ui/intro/point.js | 3 +- modules/ui/splash.js | 1 - 6 files changed, 76 insertions(+), 47 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index e2739f364..1aa0cbed2 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3235,7 +3235,6 @@ img.tile-removing { position: absolute; display: none; color:#333; - text-align: left; font-size: 12px; } @@ -3253,6 +3252,7 @@ img.tile-removing { .tooltip.right { margin-left: 20px; + text-align: left; } .tooltip.bottom { @@ -3429,12 +3429,11 @@ img.tile-removing { .map-control .tooltip { min-width: 160px; } + /* Move over tooltips that are near the edge of screen */ .add-point .tooltip { left: 33.3333% !important; } - -.curtain-tooltip.intro-points-add .tooltip-arrow, .add-point .tooltip .tooltip-arrow { left: 60px; } @@ -3442,9 +3441,7 @@ img.tile-removing { left: auto; right: 60px; } -[dir='rtl'] .curtain-tooltip.intro-points-add .tooltip-arrow { - left: 50%; -} + /* radial menu (deprecated) */ @@ -3629,7 +3626,6 @@ img.tile-removing { } .intro-nav-wrap button.chapter .status { - margin-left: 3px; display: none; } @@ -3637,14 +3633,17 @@ img.tile-removing { display: inline-block; } - -.curtain-tooltip .tooltip-inner { +.curtain-tooltip.tooltip { text-align: left; - padding: 20px; +} +[dir='rtl'] .curtain-tooltip.tooltip { + text-align: right; } .curtain-tooltip .tooltip-inner { font-size: 15px; + position: relative; + padding: 20px; } .curtain-tooltip .tooltip-inner .bold { diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index e309b8bf9..8a7e926a3 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -1,5 +1,5 @@ import * as d3 from 'd3'; -import { utilGetDimensions } from '../util/dimensions'; +import { textDirection } from '../util/locale'; import { uiToggle } from './toggle'; @@ -64,14 +64,18 @@ export function uiCurtain() { var html = parts[0] ? '' + parts[0] + '' : ''; if (parts[1]) html += '' + parts[1] + ''; - var selection = tooltip - .classed('in', true) + var classes = 'curtain-tooltip tooltip in ' + (options.tooltipClass || ''); + tooltip + .classed(classes, true) .selectAll('.tooltip-inner') .html(html); - var dimensions = utilGetDimensions(selection, true), + // var dimensions = utilGetDimensions(selection, true), + var tip = tooltip.node().getBoundingClientRect(), w = window.innerWidth, h = window.innerHeight, + tooltipWidth = 200, + tooltipArrow = 5, side, pos; // trim box dimensions to just the portion that fits in the window.. @@ -83,32 +87,42 @@ export function uiCurtain() { } // determine tooltip placement.. - if (box.top + box.height < Math.min(100, box.width + box.left)) { + + if (box.top + box.height < 100) { + // tooltip below box.. side = 'bottom'; - pos = [box.left + box.width / 2 - dimensions[0] / 2, box.top + box.height]; + pos = [box.left + box.width / 2 - tip.width / 2, box.top + box.height]; - } else if (box.left + box.width + 300 < w) { - side = 'right'; - pos = [box.left + box.width, box.top + box.height / 2 - dimensions[1] / 2]; - - } else if (box.left > 300) { - side = 'left'; - pos = [box.left - 200, box.top + box.height / 2 - dimensions[1] / 2]; + } else if (box.top > h - 140) { + // tooltip above box.. + side = 'top'; + pos = [box.left + box.width / 2 - tip.width / 2, box.top - tip.height]; } else { - // need real tooltip height to calculate "top" placement - tooltip - .attr('class', 'curtain-tooltip tooltip in') - .call(uiToggle(true)); - var tip = tooltip.node().getBoundingClientRect(); - side = 'top'; - pos = [box.left + box.width / 2 - dimensions[0] / 2, box.top - tip.height]; - } + // tooltip to the side of the box.. + var tipY = box.top + box.height / 2 - tip.height / 2; - pos = [ - Math.min(Math.max(10, pos[0]), w - dimensions[0] - 10), - Math.min(Math.max(10, pos[1]), h - dimensions[1] - 10) - ]; + if (textDirection === 'rtl') { + if (box.left - tooltipWidth - tooltipArrow < 70) { + side = 'right'; + pos = [box.left + box.width + tooltipArrow, tipY]; + + } else { + side = 'left'; + pos = [box.left - tooltipWidth - tooltipArrow, tipY]; + } + + } else { + if (box.left + box.width + tooltipArrow + tooltipWidth > w - 70) { + side = 'left'; + pos = [box.left - tooltipWidth - tooltipArrow, tipY]; + } + else { + side = 'right'; + pos = [box.left + box.width + tooltipArrow, tipY]; + } + } + } if (options.duration !== 0 || !tooltip.classed(side)) { tooltip.call(uiToggle(true)); @@ -117,7 +131,22 @@ export function uiCurtain() { tooltip .style('top', pos[1] + 'px') .style('left', pos[0] + 'px') - .attr('class', 'curtain-tooltip tooltip in ' + side + ' ' + (options.tooltipClass || '')); + .attr('class', classes + ' ' + side); + + + // shift tooltip-inner if it is very close to the top or bottom edge + // (doesn't affect the placement of the tooltip-arrow) + var shiftY = 0; + if (side === 'left' || side === 'right') { + if (pos[1] < 60) { + shiftY = 60 - pos[1]; + } + else if (pos[1] + tip.height > h - 100) { + shiftY = h - pos[1] - tip.height - 100; + } + } + tooltip.selectAll('.tooltip-inner') + .style('top', shiftY + 'px'); } else { tooltip.call(uiToggle(false)); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index d4dcdf382..d1e9942e8 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -1,7 +1,6 @@ import * as d3 from 'd3'; import _ from 'lodash'; import { t } from '../../util/locale'; -import { actionDeleteMultiple } from '../../actions/index'; import { utilRebind } from '../../util/rebind'; import { utilBindOnce } from '../../util/bind_once'; import { icon, pad } from './helper'; @@ -194,10 +193,6 @@ export function uiIntroLine(context, reveal) { context.on('exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); - if (drawId) { - context.replace(actionDeleteMultiple([drawId])); - drawId = null; - } }; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 7ca405881..afefbeff3 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -1,5 +1,5 @@ import * as d3 from 'd3'; -import { t } from '../../util/locale'; +import { t, textDirection } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox } from './helper'; @@ -25,11 +25,19 @@ export function uiIntroNavigation(context, reveal) { } + function welcome() { + reveal('.intro-nav-wrap', 'This walkthrough will teach you the basics of editing on OpenStreetMap.'); + timeout(function() { + dragMap(); + }, 5000); + } + + function dragMap() { var dragged = false, rect = context.surfaceRect(), map = { - left: rect.left + 10, + left: rect.left + (textDirection === 'rtl' ? 60 : 10), top: rect.top + 70, width: rect.width - 70, height: rect.height - 170 @@ -129,7 +137,7 @@ export function uiIntroNavigation(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - dragMap(); + welcome(); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 53c162f68..a03846fd5 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -29,8 +29,7 @@ export function uiIntroPoint(context, reveal) { function addPoint() { var tooltip = reveal('button.add-point', - t('intro.points.add', { button: icon('#icon-point', 'pre-text') }), - { tooltipClass: 'intro-points-add' }); + t('intro.points.add', { button: icon('#icon-point', 'pre-text') })); tooltip.selectAll('.tooltip-inner') .insert('svg', 'span') diff --git a/modules/ui/splash.js b/modules/ui/splash.js index e68a5f7fd..6b2eef670 100644 --- a/modules/ui/splash.js +++ b/modules/ui/splash.js @@ -1,4 +1,3 @@ -import * as d3 from 'd3'; import { t } from '../util/locale'; import { uiIntro } from './intro/index'; import { uiModal } from './modal'; From b7267e057107ef7d4928e8dd4e6a803748f4db55 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 26 Mar 2017 00:35:00 -0400 Subject: [PATCH 17/91] Add ability to put an OK button on the curtain-tooltip --- css/80_app.css | 1 + data/core.yaml | 1 + dist/locales/en.json | 1 + modules/ui/curtain.js | 21 ++++++++++++++++++++- modules/ui/intro/navigation.js | 8 ++++---- 5 files changed, 27 insertions(+), 5 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 1aa0cbed2..fba7c802e 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3646,6 +3646,7 @@ img.tile-removing { padding: 20px; } +.curtain-tooltip .tooltip-inner .button-section, .curtain-tooltip .tooltip-inner .bold { font-weight: bold; display: block; diff --git a/data/core.yaml b/data/core.yaml index 12cfc5c98..b9517b90b 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -778,6 +778,7 @@ en: click the "Merge" (+) button. intro: done: done + ok: OK graph: city_hall: Three Rivers City Hall fire_department: Three Rivers Fire Department diff --git a/dist/locales/en.json b/dist/locales/en.json index 7bf594b96..8afd6b340 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -635,6 +635,7 @@ }, "intro": { "done": "done", + "ok": "OK", "graph": { "city_hall": "Three Rivers City Hall", "fire_department": "Three Rivers Fire Department", diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 8a7e926a3..cf29f5eb5 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -62,7 +62,14 @@ export function uiCurtain() { // pseudo markdown bold text hack var parts = text.split('**'); var html = parts[0] ? '' + parts[0] + '' : ''; - if (parts[1]) html += '' + parts[1] + ''; + if (parts[1]) { + html += '' + parts[1] + ''; + } + + if (options.buttonText && options.buttonCallback) { + html += '
' + + '
'; + } var classes = 'curtain-tooltip tooltip in ' + (options.tooltipClass || ''); tooltip @@ -70,6 +77,18 @@ export function uiCurtain() { .selectAll('.tooltip-inner') .html(html); + if (options.buttonText && options.buttonCallback) { + var button = tooltip.selectAll('.button-section .button.action'); + + button + .on('click', function() { + d3.event.preventDefault(); + options.buttonCallback(); + }); + + button.node().focus(); + } + // var dimensions = utilGetDimensions(selection, true), var tip = tooltip.node().getBoundingClientRect(), w = window.innerWidth, diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index afefbeff3..043b91224 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -26,10 +26,10 @@ export function uiIntroNavigation(context, reveal) { function welcome() { - reveal('.intro-nav-wrap', 'This walkthrough will teach you the basics of editing on OpenStreetMap.'); - timeout(function() { - dragMap(); - }, 5000); + reveal('.intro-nav-wrap', + 'Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.', + { buttonText: t('intro.ok'), buttonCallback: dragMap } + ); } From 86330ef3f07edd1738edb7f9fb43979c32d2b977 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 26 Mar 2017 15:27:30 -0400 Subject: [PATCH 18/91] Move welcome to its own chapter --- data/core.yaml | 2 ++ dist/locales/en.json | 3 +++ modules/ui/intro/intro.js | 22 ++++++++-------- modules/ui/intro/navigation.js | 16 +++--------- modules/ui/intro/welcome.js | 47 ++++++++++++++++++++++++++++++++++ 5 files changed, 68 insertions(+), 22 deletions(-) create mode 100644 modules/ui/intro/welcome.js diff --git a/data/core.yaml b/data/core.yaml index b9517b90b..7e19e72a6 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -808,6 +808,8 @@ en: morris_ave: Morris Avenue east_st: East Street portage_ave: Portage Avenue + welcome: + title: "Welcome" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 8afd6b340..645803768 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -666,6 +666,9 @@ "east_st": "East Street", "portage_ave": "Portage Avenue" }, + "welcome": { + "title": "Welcome" + }, "navigation": { "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 1fd66b087..b7b5b2750 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -9,6 +9,7 @@ import { osmEntity } from '../../osm/entity'; import { svgIcon } from '../../svg/icon'; import { uiCurtain } from '../curtain'; +import { uiIntroWelcome } from './welcome'; import { uiIntroNavigation } from './navigation'; import { uiIntroPoint } from './point'; import { uiIntroArea } from './area'; @@ -17,6 +18,7 @@ import { uiIntroStartEditing } from './start_editing'; var chapterUi = { + welcome: uiIntroWelcome, navigation: uiIntroNavigation, point: uiIntroPoint, area: uiIntroArea, @@ -25,6 +27,7 @@ var chapterUi = { }; var chapterFlow = [ + 'welcome', 'navigation', 'point', 'area', @@ -78,10 +81,10 @@ export function uiIntro(context) { var chapters = chapterFlow.map(function(chapter, i) { var s = chapterUi[chapter](context, curtain.reveal) .on('done', function() { - entered.filter(function(d) { + buttons.filter(function(d) { return d.title === s.title; }).classed('finished', true); - enter(chapters[i + 1]); + enterChapter(chapters[i + 1]); }); return s; }); @@ -114,34 +117,33 @@ export function uiIntro(context) { .attr('class', 'joined') .selectAll('button.chapter'); - var entered = buttonwrap + var buttons = buttonwrap .data(chapters) .enter() .append('button') .attr('class', 'chapter') - .on('click', enter); + .on('click', enterChapter); - entered + buttons .append('label') .text(function(d) { return t(d.title); }); - entered + buttons .append('span') .attr('class', 'status') .call(svgIcon((textDirection === 'rtl' ? '#icon-backward' : '#icon-forward'), 'inline')); - enter(chapters[0]); + enterChapter(chapters[0]); - function enter(newChapter) { + function enterChapter(newChapter) { if (currChapter) { currChapter.exit(); } - context.enter(modeBrowse(context)); currChapter = newChapter; currChapter.enter(); - entered.classed('active', function(d) { + buttons.classed('active', function(d) { return d.title === currChapter.title; }); } diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 043b91224..92bcec9eb 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -25,14 +25,6 @@ export function uiIntroNavigation(context, reveal) { } - function welcome() { - reveal('.intro-nav-wrap', - 'Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.', - { buttonText: t('intro.ok'), buttonCallback: dragMap } - ); - } - - function dragMap() { var dragged = false, rect = context.surfaceRect(), @@ -120,9 +112,6 @@ export function uiIntroNavigation(context, reveal) { function selectedStreet() { var springSt = [-85.63585099140167, 41.942506848938926]; context.map().centerEase(springSt); - context.on('exit.intro', function() { - dispatch.call('done'); - }); timeout(function() { reveal('.entity-editor-pane', @@ -131,13 +120,16 @@ export function uiIntroNavigation(context, reveal) { button: icon('#icon-close', 'pre-text') }) ); + context.on('exit.intro', function() { + dispatch.call('done'); + }); }, 400); } chapter.enter = function() { context.history().reset('initial'); - welcome(); + dragMap(); }; diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js new file mode 100644 index 000000000..f23acfcf1 --- /dev/null +++ b/modules/ui/intro/welcome.js @@ -0,0 +1,47 @@ +import * as d3 from 'd3'; +import { t } from '../../util/locale'; +import { utilRebind } from '../../util/rebind'; + + +export function uiIntroWelcome(context, reveal) { + var dispatch = d3.dispatch('done'); + + + var chapter = { + title: 'intro.welcome.title' + }; + + + function welcome() { + context.map().centerZoom([-85.63591, 41.94285], 19); + reveal('.intro-nav-wrap', + 'Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.', + { buttonText: t('intro.ok'), buttonCallback: buttons } + ); + } + + function buttons() { + reveal('.intro-nav-wrap', + 'You can use the buttons along bottom to skip sections or restart a section if you get stuck.', + { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); } } + ); + } + + + chapter.enter = function() { + welcome(); + }; + + + chapter.exit = function() { + }; + + + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + + return utilRebind(chapter, dispatch, 'on'); +} From df20825a10c400ae4524e8fb1a83097fa92ad13d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 27 Mar 2017 23:03:17 -0400 Subject: [PATCH 19/91] Add selected step to navigation, let user free play at end of chapter --- data/core.yaml | 6 +- dist/locales/en.json | 8 ++- modules/ui/curtain.js | 4 +- modules/ui/intro/intro.js | 4 +- modules/ui/intro/navigation.js | 108 +++++++++++++++++++++++++++------ modules/ui/intro/welcome.js | 8 +-- 6 files changed, 109 insertions(+), 29 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 7e19e72a6..66b72849e 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -810,14 +810,18 @@ en: portage_ave: Portage Avenue welcome: title: "Welcome" + welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." + chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin!" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**" + selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**" search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" - chosen: "Great! {name} is now selected. **Close the feature editor by pressing the {button} button.**" + chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**" + play: "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{chapter}'.**" points: title: "Points" add: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 645803768..94069ea3d 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -667,16 +667,20 @@ "portage_ave": "Portage Avenue" }, "welcome": { - "title": "Welcome" + "title": "Welcome", + "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", + "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin!" }, "navigation": { "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", + "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**", "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", - "chosen": "Great! {name} is now selected. **Close the feature editor by pressing the {button} button.**" + "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**", + "play": "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{chapter}'.**" }, "points": { "title": "Points", diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index cf29f5eb5..52e6ccbdc 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -168,7 +168,9 @@ export function uiCurtain() { .style('top', shiftY + 'px'); } else { - tooltip.call(uiToggle(false)); + tooltip + .classed('in', false) + .call(uiToggle(false)); } return tooltip; diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index b7b5b2750..77344e3bf 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -84,7 +84,7 @@ export function uiIntro(context) { buttons.filter(function(d) { return d.title === s.title; }).classed('finished', true); - enterChapter(chapters[i + 1]); + // enterChapter(chapters[i + 1]); }); return s; }); @@ -121,7 +121,7 @@ export function uiIntro(context) { .data(chapters) .enter() .append('button') - .attr('class', 'chapter') + .attr('class', function(d, i) { return 'chapter chapter-' + chapterFlow[i]; }) .on('click', enterChapter); buttons diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 92bcec9eb..0aecfa7bf 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -6,6 +6,7 @@ import { icon, pointBox } from './helper'; export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), + hallId = 'n2140018997', timeouts = []; @@ -25,6 +26,12 @@ export function uiIntroNavigation(context, reveal) { } + function isTownHallSelected() { + var ids = context.selectedIDs(); + return ids.length === 1 && ids[0] === hallId; + } + + function dragMap() { var dragged = false, rect = context.surfaceRect(), @@ -43,21 +50,29 @@ export function uiIntroNavigation(context, reveal) { }); d3.select(window).on('mouseup.intro', function() { - if (!dragged) return; - d3.select(window).on('mouseup.intro', null, true); - context.map().on('move.intro', null); - clickTownHall(); + if (dragged) advance(); }, true); + + function advance() { + context.map().on('move.intro', null); + d3.select(window).on('mouseup.intro', null, true); + clickTownHall(); + } } function clickTownHall() { - context.history().reset('initial'); // ensure townhall exists - var hall = context.entity('n2140018997'); + if (!context.hasEntity(hallId)) { + context.history().reset('initial'); + } - context.on('enter.intro', inspectTownHall); + var hall = context.entity(hallId); context.map().centerEase(hall.loc, 250); + context.on('enter.intro', function() { + if (isTownHallSelected()) advance(); + }); + timeout(function() { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select')); @@ -66,46 +81,85 @@ export function uiIntroNavigation(context, reveal) { reveal(box, t('intro.navigation.select'), { duration: 0 }); }); }, 260); + + function advance() { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + selectedTownHall(); + } + } + + + function selectedTownHall() { + if (!isTownHallSelected()) return clickTownHall(); + + var hall = context.entity('n2140018997'); + var box = pointBox(hall.loc, context); + + reveal(box, t('intro.navigation.selected')); + + context.map().on('move.intro drawn.intro', function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.selected'), { duration: 0 }); + }); + + timeout(advance, 4000); + + function advance() { + context.map().on('move.intro drawn.intro', null); + inspectTownHall(); + } } function inspectTownHall(mode) { - if (mode.id !== 'select') return; + if (!isTownHallSelected()) return clickTownHall(); - context.on('enter.intro', null); - context.map().on('move.intro drawn.intro', null); - context.on('exit.intro', streetSearch); + context.on('exit.intro', advance); timeout(function() { reveal('.entity-editor-pane', t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) ); }, 700); + + function advance() { + context.on('exit.intro', null); + streetSearch(); + } } function streetSearch() { context.history().reset('initial'); // ensure spring street exists - context.on('exit.intro', null); + reveal('.search-header input', t('intro.navigation.search', { name: t('intro.graph.spring_st') })); + d3.select('.search-header input') - .on('keyup.intro', searchResult); + .on('keyup.intro', checkSearchResult); } - function searchResult() { - var first = d3.select('.feature-list-item:nth-child(0n+2)'), // skip No Results item + function checkSearchResult() { + var first = d3.select('.feature-list-item:nth-child(0n+2)'), // skip "No Results" item firstName = first.select('.entity-name'), name = t('intro.graph.spring_st'); if (!firstName.empty() && firstName.text() === name) { reveal(first.node(), t('intro.navigation.choose', { name: name })); - context.on('exit.intro', selectedStreet); + + context.on('exit.intro', advance); + d3.select('.search-header input') .on('keydown.intro', eventCancel, true) .on('keyup.intro', null); } + + function advance() { + context.on('exit.intro', null); + selectedStreet(); + } } @@ -120,10 +174,26 @@ export function uiIntroNavigation(context, reveal) { button: icon('#icon-close', 'pre-text') }) ); - context.on('exit.intro', function() { - dispatch.call('done'); - }); + context.on('exit.intro', advance); }, 400); + + function advance() { + context.on('exit.intro', null); + play(); + } + } + + + function play() { + reveal('.intro-nav-wrap .chapter-point', + t('intro.navigation.play', { chapter: t('intro.points.title') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } + } + ); } diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index f23acfcf1..a469493a6 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -15,14 +15,14 @@ export function uiIntroWelcome(context, reveal) { function welcome() { context.map().centerZoom([-85.63591, 41.94285], 19); reveal('.intro-nav-wrap', - 'Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.', - { buttonText: t('intro.ok'), buttonCallback: buttons } + t('intro.welcome.welcome'), + { buttonText: t('intro.ok'), buttonCallback: chapters } ); } - function buttons() { + function chapters() { reveal('.intro-nav-wrap', - 'You can use the buttons along bottom to skip sections or restart a section if you get stuck.', + t('intro.welcome.chapters'), { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); } } ); } From c6a40b263df17215857ad9b097498c111a612054 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 28 Mar 2017 13:19:35 -0400 Subject: [PATCH 20/91] Add Play step to each chapter of the walkthrough (closes #3067) --- css/80_app.css | 11 ++++++++ data/core.yaml | 9 ++++-- dist/locales/en.json | 13 +++++---- modules/ui/intro/area.js | 21 +++++++++++++- modules/ui/intro/intro.js | 14 ++++++++-- modules/ui/intro/line.js | 21 +++++++++++++- modules/ui/intro/navigation.js | 15 ++++++---- modules/ui/intro/point.js | 50 ++++++++++++++++++++++++++-------- modules/ui/intro/welcome.js | 6 ++-- 9 files changed, 126 insertions(+), 34 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index fba7c802e..49173a01e 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3621,6 +3621,17 @@ img.tile-removing { padding: 0px 20px; } +.intro-nav-wrap button.chapter.next { + animation-duration: 1s; + animation-name: pulse; + animation-iteration-count: infinite; + animation-direction: alternate; +} +@keyframes pulse { + from { background: #7092ff; } + to { background: #c6d4ff; } +} + .intro-nav-wrap button.chapter.finished { background: #8cd05f; } diff --git a/data/core.yaml b/data/core.yaml index 66b72849e..fec550471 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -811,7 +811,7 @@ en: welcome: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." - chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin!" + chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" @@ -821,7 +821,7 @@ en: search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**" - play: "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{chapter}'.**" + play: "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" add: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" @@ -834,6 +834,7 @@ en: fixname: "**Change the name, then click the {button} button to close the feature editor.**" rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" delete: "**Click on the {button} button to delete the point.**" + play: "Try adding a few more points. **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" add: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" @@ -842,6 +843,7 @@ en: search: "**Search for '{name}'.**" choose: "**Choose Playground from the list.**" describe: "**Add a name, then click the {button} button to close the feature editor**" + play: "Try drawing a few more areas. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" add: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" @@ -852,7 +854,8 @@ en: residential: "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**" describe: "**Name the road, then click the {button} button to close the feature editor.**" restart: "The road needs to intersect {name}." - "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**" + wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" + play: "Try drawing a few more lines. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" help: "You can replay this walkthrough or view more documentation by clicking the {button} Help button." diff --git a/dist/locales/en.json b/dist/locales/en.json index 94069ea3d..897ad491b 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -669,7 +669,7 @@ "welcome": { "title": "Welcome", "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", - "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin!" + "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { "title": "Navigation", @@ -680,7 +680,7 @@ "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**", - "play": "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{chapter}'.**" + "play": "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { "title": "Points", @@ -693,7 +693,8 @@ "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the point you just created.**", "fixname": "**Change the name, then click the {button} button to close the feature editor.**", "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", - "delete": "**Click on the {button} button to delete the point.**" + "delete": "**Click on the {button} button to delete the point.**", + "play": "Try adding a few more points. **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", @@ -702,7 +703,8 @@ "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**", "search": "**Search for '{name}'.**", "choose": "**Choose Playground from the list.**", - "describe": "**Add a name, then click the {button} button to close the feature editor**" + "describe": "**Add a name, then click the {button} button to close the feature editor**", + "play": "Try drawing a few more areas. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", @@ -714,7 +716,8 @@ "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", "describe": "**Name the road, then click the {button} button to close the feature editor.**", "restart": "The road needs to intersect {name}.", - "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**" + "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", + "play": "Try drawing a few more lines. **When you are ready to continue to the next chapter, click '{next}'.**" }, "startediting": { "title": "Start Editing", diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 4c9e54927..1911cd492 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -95,9 +95,28 @@ export function uiIntroArea(context, reveal) { function selectedPreset() { reveal('.pane', t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') })); + context.on('exit.intro', function() { - dispatch.call('done'); + advance(); }); + + function advance() { + context.on('exit.intro', null); + play(); + } + } + + + function play() { + reveal('.intro-nav-wrap .chapter-line', + t('intro.area.play', { next: t('intro.line.title') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } + } + ); } diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 77344e3bf..224a1c3aa 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -84,6 +84,12 @@ export function uiIntro(context) { buttons.filter(function(d) { return d.title === s.title; }).classed('finished', true); + + if (i < chapterFlow.length - 1) { + var next = chapterFlow[i + 1]; + d3.select('button.chapter-' + next) + .classed('next', true); + } // enterChapter(chapters[i + 1]); }); return s; @@ -143,9 +149,11 @@ export function uiIntro(context) { currChapter = newChapter; currChapter.enter(); - buttons.classed('active', function(d) { - return d.title === currChapter.title; - }); + buttons + .classed('next', false) + .classed('active', function(d) { + return d.title === currChapter.title; + }); } } diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index d1e9942e8..7491bc30e 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -172,9 +172,28 @@ export function uiIntroLine(context, reveal) { function roadDetails() { reveal('.pane', t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') })); + context.on('exit.intro', function() { - dispatch.call('done'); + advance(); }); + + function advance() { + context.on('exit.intro', null); + play(); + } + } + + + function play() { + reveal('.intro-nav-wrap .chapter-startEditing', + t('intro.line.play', { next: t('intro.startediting.title') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } + } + ); } diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 0aecfa7bf..a8b5a4cf8 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -76,11 +76,12 @@ export function uiIntroNavigation(context, reveal) { timeout(function() { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select')); + context.map().on('move.intro drawn.intro', function() { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select'), { duration: 0 }); }); - }, 260); + }, 260); // after centerEase function advance() { context.on('enter.intro', null); @@ -96,15 +97,17 @@ export function uiIntroNavigation(context, reveal) { var hall = context.entity('n2140018997'); var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.selected')); + reveal(box, t('intro.navigation.selected'), + { buttonText: t('intro.ok'), buttonCallback: advance } + ); context.map().on('move.intro drawn.intro', function() { var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.selected'), { duration: 0 }); + reveal(box, t('intro.navigation.selected'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + ); }); - timeout(advance, 4000); - function advance() { context.map().on('move.intro drawn.intro', null); inspectTownHall(); @@ -186,7 +189,7 @@ export function uiIntroNavigation(context, reveal) { function play() { reveal('.intro-nav-wrap .chapter-point', - t('intro.navigation.play', { chapter: t('intro.points.title') }), { + t('intro.navigation.play', { next: t('intro.points.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index a03846fd5..c751daab2 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -127,30 +127,44 @@ export function uiIntroPoint(context, reveal) { function deletePoint() { context.on('exit.intro', null); - context.on('enter.intro', enterDelete); + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) return; + + advance(); + }); var pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.rightclick')); context.map().on('move.intro drawn.intro', function() { pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.rightclick'), {duration: 0}); + reveal(pointBox, t('intro.points.rightclick'), { duration: 0 }); }); + + function advance() { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + enterDelete() + } } - function enterDelete(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); + function enterDelete() { context.on('exit.intro', deletePoint); - context.map().on('move.intro drawn.intro', deletePoint); - context.history().on('change.intro', deleted); + context.history().on('change.intro', function(changed) { + if (changed.deleted().length) + advance(); + }); timeout(function() { // deprecation warning - Radial Menu to be removed in iD v3 var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); if (!node) { + context.history().on('change.intro', null); + context.on('exit.intro', null); deletePoint(); } else { var pointBox = pad(node.getBoundingClientRect(), 50, context); @@ -158,13 +172,25 @@ export function uiIntroPoint(context, reveal) { t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') })); } }, 300); + + function advance() { + context.history().on('change.intro', null); + context.on('exit.intro', null); + play() + } } - function deleted(changed) { - if (changed.deleted().length) { - dispatch.call('done'); - } + function play() { + reveal('.intro-nav-wrap .chapter-area', + t('intro.point.play', { next: t('intro.area.title') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } + } + ); } diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index a469493a6..a68013d16 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -21,10 +21,10 @@ export function uiIntroWelcome(context, reveal) { } function chapters() { - reveal('.intro-nav-wrap', - t('intro.welcome.chapters'), - { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); } } + reveal('.intro-nav-wrap .chapter-navigation', + t('intro.welcome.chapters', { next: t('intro.navigation.title') }) ); + dispatch.call('done'); } From 063d5605ae99882ac403d794043d9594c34598bd Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 28 Mar 2017 16:41:42 -0400 Subject: [PATCH 21/91] Ensure each step can cleanup after itself and continueTo reliably --- modules/ui/intro/area.js | 2 +- modules/ui/intro/helper.js | 10 +- modules/ui/intro/intro.js | 1 - modules/ui/intro/line.js | 2 +- modules/ui/intro/navigation.js | 45 +++--- modules/ui/intro/point.js | 257 ++++++++++++++++++++++++--------- 6 files changed, 218 insertions(+), 99 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 1911cd492..89aeb6b9d 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -109,7 +109,7 @@ export function uiIntroArea(context, reveal) { function play() { reveal('.intro-nav-wrap .chapter-line', - t('intro.area.play', { next: t('intro.line.title') }), { + t('intro.areas.play', { next: t('intro.lines.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index ca768ac20..3e7c1fd4f 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -2,11 +2,11 @@ export function pointBox(loc, context) { var rect = context.surfaceRect(); var point = context.curtainProjection(loc); return { - left: point[0] + rect.left - 30, - top: point[1] + rect.top - 50, - width: 60, - height: 70 - }; + left: point[0] + rect.left - 40, + top: point[1] + rect.top - 60, + width: 80, + height: 90 + }; } diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 224a1c3aa..45b1104ee 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -90,7 +90,6 @@ export function uiIntro(context) { d3.select('button.chapter-' + next) .classed('next', true); } - // enterChapter(chapters[i + 1]); }); return s; }); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 7491bc30e..223be7fb1 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -186,7 +186,7 @@ export function uiIntroLine(context, reveal) { function play() { reveal('.intro-nav-wrap .chapter-startEditing', - t('intro.line.play', { next: t('intro.startediting.title') }), { + t('intro.lines.play', { next: t('intro.startediting.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index a8b5a4cf8..e450f1c44 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -35,7 +35,7 @@ export function uiIntroNavigation(context, reveal) { function dragMap() { var dragged = false, rect = context.surfaceRect(), - map = { + box = { left: rect.left + (textDirection === 'rtl' ? 60 : 10), top: rect.top + 70, width: rect.width - 70, @@ -43,20 +43,20 @@ export function uiIntroNavigation(context, reveal) { }; context.map().centerZoom([-85.63591, 41.94285], 19); - reveal(map, t('intro.navigation.drag')); + reveal(box, t('intro.navigation.drag')); context.map().on('move.intro', function() { dragged = true; }); d3.select(window).on('mouseup.intro', function() { - if (dragged) advance(); + if (dragged) continueTo(clickTownHall); }, true); - function advance() { + function continueTo(nextStep) { context.map().on('move.intro', null); d3.select(window).on('mouseup.intro', null, true); - clickTownHall(); + nextStep(); } } @@ -70,7 +70,7 @@ export function uiIntroNavigation(context, reveal) { context.map().centerEase(hall.loc, 250); context.on('enter.intro', function() { - if (isTownHallSelected()) advance(); + if (isTownHallSelected()) continueTo(selectedTownHall); }); timeout(function() { @@ -83,10 +83,10 @@ export function uiIntroNavigation(context, reveal) { }); }, 260); // after centerEase - function advance() { + function continueTo(nextStep) { context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); - selectedTownHall(); + nextStep(); } } @@ -96,6 +96,7 @@ export function uiIntroNavigation(context, reveal) { var hall = context.entity('n2140018997'); var box = pointBox(hall.loc, context); + var advance = function() { continueTo(inspectTownHall); }; reveal(box, t('intro.navigation.selected'), { buttonText: t('intro.ok'), buttonCallback: advance } @@ -108,9 +109,9 @@ export function uiIntroNavigation(context, reveal) { ); }); - function advance() { + function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); - inspectTownHall(); + nextStep(); } } @@ -118,7 +119,9 @@ export function uiIntroNavigation(context, reveal) { function inspectTownHall(mode) { if (!isTownHallSelected()) return clickTownHall(); - context.on('exit.intro', advance); + context.on('exit.intro', function() { + continueTo(streetSearch); + }); timeout(function() { reveal('.entity-editor-pane', @@ -126,9 +129,9 @@ export function uiIntroNavigation(context, reveal) { ); }, 700); - function advance() { + function continueTo(nextStep) { context.on('exit.intro', null); - streetSearch(); + nextStep(); } } @@ -152,16 +155,18 @@ export function uiIntroNavigation(context, reveal) { if (!firstName.empty() && firstName.text() === name) { reveal(first.node(), t('intro.navigation.choose', { name: name })); - context.on('exit.intro', advance); + context.on('exit.intro', function() { + continueTo(selectedStreet); + }); d3.select('.search-header input') .on('keydown.intro', eventCancel, true) .on('keyup.intro', null); } - function advance() { + function continueTo(nextStep) { context.on('exit.intro', null); - selectedStreet(); + nextStep(); } } @@ -177,12 +182,14 @@ export function uiIntroNavigation(context, reveal) { button: icon('#icon-close', 'pre-text') }) ); - context.on('exit.intro', advance); + context.on('exit.intro', function() { + continueTo(play); + }); }, 400); - function advance() { + function continueTo(nextStep) { context.on('exit.intro', null); - play(); + nextStep(); } } diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index c751daab2..46c7d4475 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -2,13 +2,14 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { utilBindOnce } from '../../util/bind_once'; import { utilRebind } from '../../util/rebind'; -import { icon, pad } from './helper'; +import { icon, pointBox, pad } from './helper'; export function uiIntroPoint(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], - corner = [-85.632481, 41.944094]; + corner = [-85.632481, 41.944094], + pointId = null; var chapter = { @@ -31,159 +32,271 @@ export function uiIntroPoint(context, reveal) { var tooltip = reveal('button.add-point', t('intro.points.add', { button: icon('#icon-point', 'pre-text') })); + pointId = null; + tooltip.selectAll('.tooltip-inner') .insert('svg', 'span') .attr('class', 'tooltip-illustration') .append('use') .attr('xlink:href', '#poi-images'); - context.on('enter.intro', placePoint); + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-point') return; + continueTo(placePoint); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } } - function placePoint(mode) { - if (mode.id !== 'add-point') return; - context.on('enter.intro', enterSelect); + function placePoint() { + if (context.mode().id !== 'add-point') { + return chapter.restart(); + } var pointBox = pad(corner, 150, context); reveal(pointBox, t('intro.points.place')); context.map().on('move.intro drawn.intro', function() { pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.place'), {duration: 0}); + reveal(pointBox, t('intro.points.place'), { duration: 0 }); }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return chapter.restart(); + continueTo(enterSelect); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } } - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); + function enterSelect() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + pointId = context.mode().selectedIDs()[0]; + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + d3.select('.preset-search-input') + .on('keyup.intro', checkPresetSearch); timeout(function() { reveal('.preset-search-input', - t('intro.points.search', {name: context.presets().item('amenity/cafe').name()})); - d3.select('.preset-search-input').on('keyup.intro', keySearch); + t('intro.points.search', { name: context.presets().item('amenity/cafe').name() }) + ); }, 500); } - function keySearch() { + function checkPresetSearch() { var first = d3.select('.preset-list-item:first-child'); + if (first.classed('preset-amenity-cafe')) { - reveal(first.select('.preset-list-button').node(), t('intro.points.choose')); - utilBindOnce(context.history(), 'change.intro', selectedPreset); + reveal(first.select('.preset-list-button').node(), + t('intro.points.choose') + ); + d3.select('.preset-search-input') .on('keydown.intro', eventCancel, true) .on('keyup.intro', null); + + context.history().on('change.intro', function() { + continueTo(selectedPreset); + }); + } + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + d3.select('.preset-search-input').on('keydown.intro', null); + nextStep(); } } function selectedPreset() { + context.on('exit.intro', function(mode) { + return chapter.restart(); + }); + + context.history().on('change.intro', function() { + continueTo(closeEditor); + }); + timeout(function() { - reveal('.entity-editor-pane', t('intro.points.describe'), {tooltipClass: 'intro-points-describe'}); - context.history().on('change.intro', closeEditor); - context.on('exit.intro', selectPoint); + reveal('.entity-editor-pane', + t('intro.points.describe'), + { tooltipClass: 'intro-points-describe' } + ); }, 400); + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } } function closeEditor() { - d3.select('.preset-search-input').on('keydown.intro', null); - context.history().on('change.intro', null); + context.on('exit.intro', function() { + continueTo(selectPoint); + }); + reveal('.entity-editor-pane', - t('intro.points.close', { button: icon('#icon-apply', 'pre-text') })); + t('intro.points.close', { button: icon('#icon-apply', 'pre-text') }) + ); + + function continueTo(nextStep) { + context.on('exit.intro', null); + nextStep(); + } } function selectPoint() { - context.on('exit.intro', null); - context.history().on('change.intro', null); - context.on('enter.intro', enterReselect); + if (!pointId) return chapter.restart(); + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); - var pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.reselect')); + context.map().centerEase(entity.loc, 250); - context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.reselect'), {duration: 0}); + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + continueTo(updatePoint); }); + + timeout(function() { + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.reselect')); + + context.map().on('move.intro drawn.intro', function() { + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.reselect'), { duration: 0 }); + }); + }, 260); // after centerEase + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } } - function enterReselect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); + function updatePoint() { + if (context.mode().id !== 'select') return continueTo(selectPoint); + + context.on('exit.intro', function(mode) { + continueTo(rightClickPoint); + }); timeout(function() { reveal('.entity-editor-pane', - t('intro.points.fixname', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', deletePoint); + t('intro.points.fixname', { button: icon('#icon-apply', 'pre-text') }) + ); }, 500); + + function continueTo(nextStep) { + context.on('exit.intro', null); + nextStep(); + } } - function deletePoint() { - context.on('exit.intro', null); - context.on('enter.intro', function(mode) { - if (mode.id !== 'select') return; + function rightClickPoint() { + if (!pointId) return chapter.restart(); + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); - if (!node) return; - - advance(); - }); - - var pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.rightclick')); + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.rightclick')); context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); - reveal(pointBox, t('intro.points.rightclick'), { duration: 0 }); + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.rightclick'), { duration: 0 }); }); - function advance() { + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== pointId) return; + + timeout(function() { + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) return; + continueTo(enterDelete); + }, 300); // after menu visible + }); + + function continueTo(nextStep) { context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); - enterDelete() + nextStep() } } function enterDelete() { - context.on('exit.intro', deletePoint); - context.history().on('change.intro', function(changed) { - if (changed.deleted().length) - advance(); + if (!pointId) return chapter.restart(); + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); + + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) { + return continueTo(rightClickPoint); + } else { + var rect = context.surfaceRect(); + var point = context.curtainProjection(entity.loc); + var box = { + left: point[0] + rect.left - 40, + top: point[1] + rect.top - 60, + width: 150, + height: 150 + }; + reveal(box, + t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') }) + ); + } + + context.on('exit.intro', function() { + if (!pointId) return chapter.restart(); + var entity = context.hasEntity(pointId); + if (entity) return continueTo(rightClickPoint); // point still exists }); - timeout(function() { - // deprecation warning - Radial Menu to be removed in iD v3 - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); - if (!node) { - context.history().on('change.intro', null); - context.on('exit.intro', null); - deletePoint(); - } else { - var pointBox = pad(node.getBoundingClientRect(), 50, context); - reveal(pointBox, - t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') })); - } - }, 300); + context.history().on('change.intro', function(changed) { + if (changed.deleted().length) + continueTo(play); + }); - function advance() { + function continueTo(nextStep) { context.history().on('change.intro', null); context.on('exit.intro', null); - play() + nextStep() } } function play() { reveal('.intro-nav-wrap .chapter-area', - t('intro.point.play', { next: t('intro.area.title') }), { + t('intro.points.play', { next: t('intro.areas.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { dispatch.call('done'); From 7873f0c425fe9a9175fb9f01d4dbaf29cb4d1678 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 29 Mar 2017 12:35:33 -0400 Subject: [PATCH 22/91] Relax rules for using keyboard shortcuts in the walkthrough --- modules/behavior/copy.js | 1 - modules/behavior/operation.js | 2 +- modules/behavior/paste.js | 1 - modules/ui/init.js | 4 +--- modules/ui/undo_redo.js | 4 ++-- modules/ui/zoom.js | 8 ++++---- 6 files changed, 8 insertions(+), 12 deletions(-) diff --git a/modules/behavior/copy.js b/modules/behavior/copy.js index 5f79f1a7e..8535f6d77 100644 --- a/modules/behavior/copy.js +++ b/modules/behavior/copy.js @@ -42,7 +42,6 @@ export function behaviorCopy(context) { function doCopy() { d3.event.preventDefault(); - if (context.inIntro()) return; var graph = context.graph(), selected = groupEntities(context.selectedIDs(), graph), diff --git a/modules/behavior/operation.js b/modules/behavior/operation.js index 3c224656b..e1bef5733 100644 --- a/modules/behavior/operation.js +++ b/modules/behavior/operation.js @@ -33,7 +33,7 @@ export function behaviorOperation(context) { var behavior = function () { - if (which && which.available() && !context.inIntro()) { + if (which && which.available()) { keybinding = d3keybinding('behavior.key.' + which.id); keybinding.on(which.keys, function() { d3.event.preventDefault(); diff --git a/modules/behavior/paste.js b/modules/behavior/paste.js index b1ebe3970..f472e14cb 100644 --- a/modules/behavior/paste.js +++ b/modules/behavior/paste.js @@ -39,7 +39,6 @@ export function behaviorPaste(context) { function doPaste() { d3.event.preventDefault(); - if (context.inIntro()) return; var baseGraph = context.graph(), mouse = context.mouse(), diff --git a/modules/ui/init.js b/modules/ui/init.js index 324e01ad7..ec38b78bf 100644 --- a/modules/ui/init.js +++ b/modules/ui/init.js @@ -255,9 +255,7 @@ export function uiInit(context) { function pan(d) { return function() { d3.event.preventDefault(); - if (!context.inIntro()) { - context.pan(d, 100); - } + context.pan(d, 100); }; } diff --git a/modules/ui/undo_redo.js b/modules/ui/undo_redo.js index c0f4cdf8a..54ee8742c 100644 --- a/modules/ui/undo_redo.js +++ b/modules/ui/undo_redo.js @@ -11,12 +11,12 @@ export function uiUndoRedo(context) { var commands = [{ id: 'undo', cmd: uiCmd('⌘Z'), - action: function() { if (!(context.inIntro() || saving())) context.undo(); }, + action: function() { if (!saving()) context.undo(); }, annotation: function() { return context.history().undoAnnotation(); } }, { id: 'redo', cmd: uiCmd('⌘⇧Z'), - action: function() {if (!(context.inIntro() || saving())) context.redo(); }, + action: function() { if (!saving()) context.redo(); }, annotation: function() { return context.history().redoAnnotation(); } }]; diff --git a/modules/ui/zoom.js b/modules/ui/zoom.js index e8065d581..28e00d22b 100644 --- a/modules/ui/zoom.js +++ b/modules/ui/zoom.js @@ -26,25 +26,25 @@ export function uiZoom(context) { function zoomIn() { d3.event.preventDefault(); - if (!context.inIntro()) context.zoomIn(); + context.zoomIn(); } function zoomOut() { d3.event.preventDefault(); - if (!context.inIntro()) context.zoomOut(); + context.zoomOut(); } function zoomInFurther() { d3.event.preventDefault(); - if (!context.inIntro()) context.zoomInFurther(); + context.zoomInFurther(); } function zoomOutFurther() { d3.event.preventDefault(); - if (!context.inIntro()) context.zoomOutFurther(); + context.zoomOutFurther(); } From 4c023635f4b068f79a75e7c65bdf0fca8dae0654 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 29 Mar 2017 12:46:38 -0400 Subject: [PATCH 23/91] Dispatch done before calling reveal in playsteps (to style the buttons) --- modules/ui/intro/area.js | 6 ++---- modules/ui/intro/line.js | 6 ++---- modules/ui/intro/navigation.js | 6 ++---- modules/ui/intro/point.js | 6 ++---- modules/ui/intro/welcome.js | 2 +- 5 files changed, 9 insertions(+), 17 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 89aeb6b9d..2ad090de1 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -108,13 +108,11 @@ export function uiIntroArea(context, reveal) { function play() { + dispatch.call('done'); reveal('.intro-nav-wrap .chapter-line', t('intro.areas.play', { next: t('intro.lines.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 223be7fb1..84d6da0ec 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -185,13 +185,11 @@ export function uiIntroLine(context, reveal) { function play() { + dispatch.call('done'); reveal('.intro-nav-wrap .chapter-startEditing', t('intro.lines.play', { next: t('intro.startediting.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index e450f1c44..54dce5a7e 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -195,13 +195,11 @@ export function uiIntroNavigation(context, reveal) { function play() { + dispatch.call('done'); reveal('.intro-nav-wrap .chapter-point', t('intro.navigation.play', { next: t('intro.points.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 46c7d4475..5159743c7 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -295,13 +295,11 @@ export function uiIntroPoint(context, reveal) { function play() { + dispatch.call('done'); reveal('.intro-nav-wrap .chapter-area', t('intro.points.play', { next: t('intro.areas.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index a68013d16..26c65157b 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -21,10 +21,10 @@ export function uiIntroWelcome(context, reveal) { } function chapters() { + dispatch.call('done'); reveal('.intro-nav-wrap .chapter-navigation', t('intro.welcome.chapters', { next: t('intro.navigation.title') }) ); - dispatch.call('done'); } From 7da34f474bc05dcd471b579d254de50648e8fae5 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 29 Mar 2017 12:50:29 -0400 Subject: [PATCH 24/91] Pacify eslint --- modules/behavior/operation.js | 2 +- modules/ui/intro/navigation.js | 2 +- modules/ui/intro/point.js | 9 ++++----- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/modules/behavior/operation.js b/modules/behavior/operation.js index e1bef5733..5bb103dc3 100644 --- a/modules/behavior/operation.js +++ b/modules/behavior/operation.js @@ -4,7 +4,7 @@ import { uiFlash } from '../ui'; /* Creates a keybinding behavior for an operation */ -export function behaviorOperation(context) { +export function behaviorOperation() { var which, keybinding; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 54dce5a7e..74ce8504e 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -116,7 +116,7 @@ export function uiIntroNavigation(context, reveal) { } - function inspectTownHall(mode) { + function inspectTownHall() { if (!isTownHallSelected()) return clickTownHall(); context.on('exit.intro', function() { diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 5159743c7..b943a6a97 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,6 +1,5 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; -import { utilBindOnce } from '../../util/bind_once'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox, pad } from './helper'; @@ -127,7 +126,7 @@ export function uiIntroPoint(context, reveal) { function selectedPreset() { - context.on('exit.intro', function(mode) { + context.on('exit.intro', function() { return chapter.restart(); }); @@ -201,7 +200,7 @@ export function uiIntroPoint(context, reveal) { function updatePoint() { if (context.mode().id !== 'select') return continueTo(selectPoint); - context.on('exit.intro', function(mode) { + context.on('exit.intro', function() { continueTo(rightClickPoint); }); @@ -248,7 +247,7 @@ export function uiIntroPoint(context, reveal) { function continueTo(nextStep) { context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); - nextStep() + nextStep(); } } @@ -289,7 +288,7 @@ export function uiIntroPoint(context, reveal) { function continueTo(nextStep) { context.history().on('change.intro', null); context.on('exit.intro', null); - nextStep() + nextStep(); } } From ae6ce863a4286b41946daea7fd4397b7fe147de5 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 00:12:48 -0400 Subject: [PATCH 25/91] Add continue/cleanups/restarts for each step of areas chapter --- modules/ui/intro/area.js | 134 ++++++++++++++++++++++++++++---------- modules/ui/intro/point.js | 4 +- 2 files changed, 100 insertions(+), 38 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 2ad090de1..9bebb5a7f 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -1,14 +1,12 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { utilBindOnce } from '../../util/bind_once'; import { icon, pad } from './helper'; export function uiIntroArea(context, reveal) { var dispatch = d3.dispatch('done'), playground = [-85.63552, 41.94159], - corner = [-85.63565411045074, 41.9417715536927], timeouts = []; @@ -22,6 +20,12 @@ export function uiIntroArea(context, reveal) { } + function eventCancel() { + d3.event.stopPropagation(); + d3.event.preventDefault(); + } + + function addArea() { var tooltip = reveal('button.add-area', t('intro.areas.add', { button: icon('#icon-area', 'pre-text') })); @@ -32,77 +36,137 @@ export function uiIntroArea(context, reveal) { .append('use') .attr('xlink:href', '#landuse-images'); - context.on('enter.intro', startArea); + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startArea); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } } - function startArea(mode) { - if (mode.id !== 'add-area') return; - context.on('enter.intro', drawArea); + function startArea() { + if (context.mode().id !== 'add-area') { + return chapter.restart(); + } var padding = 120 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(corner, padding, context); - reveal(pointBox, t('intro.areas.corner')); + var box = pad(playground, padding, context); + reveal(box, t('intro.areas.corner')); context.map().on('move.intro drawn.intro', function() { padding = 120 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(corner, padding, context); - reveal(pointBox, t('intro.areas.corner'), {duration: 0}); + box = pad(playground, padding, context); + reveal(box, t('intro.areas.corner'), { duration: 0 }); }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-area') return chapter.restart(); + continueTo(drawArea); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } } - function drawArea(mode) { - if (mode.id !== 'draw-area') return; - context.on('enter.intro', enterSelect); + function drawArea() { + if (context.mode().id !== 'draw-area') { + return chapter.restart(); + } var padding = 150 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(playground, padding, context); - reveal(pointBox, t('intro.areas.place')); + var box = pad(playground, padding, context); + reveal(box, t('intro.areas.place')); context.map().on('move.intro drawn.intro', function() { padding = 150 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(playground, padding, context); - reveal(pointBox, t('intro.areas.place'), {duration: 0}); + box = pad(playground, padding, context); + reveal(box, t('intro.areas.place'), {duration: 0}); }); + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-area') + return; + else if (mode.id === 'select') + return continueTo(enterSelect); + else + return chapter.restart(); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } } - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); + function enterSelect() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + d3.select('.preset-search-input') + .on('keyup.intro', checkPresetSearch); timeout(function() { reveal('.preset-search-input', t('intro.areas.search', - { name: context.presets().item('leisure/playground').name() })); - d3.select('.preset-search-input').on('keyup.intro', keySearch); + { name: context.presets().item('leisure/playground').name() }) + ); }, 500); } - function keySearch() { + function checkPresetSearch() { var first = d3.select('.preset-list-item:first-child'); + if (first.classed('preset-leisure-playground')) { - reveal(first.select('.preset-list-button').node(), t('intro.areas.choose')); - utilBindOnce(context.history(), 'change.intro', selectedPreset); - d3.select('.preset-search-input').on('keyup.intro', null); + reveal(first.select('.preset-list-button').node(), + t('intro.areas.choose') + ); + + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); + + context.history().on('change.intro', function() { + continueTo(selectedPreset); + }); + } + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + d3.select('.preset-search-input').on('keydown.intro', null); + nextStep(); } } function selectedPreset() { - reveal('.pane', - t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', function() { - advance(); + continueTo(play); }); - function advance() { + reveal('.pane', + t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') }) + ); + + function continueTo(nextStep) { context.on('exit.intro', null); - play(); + nextStep(); } } @@ -129,9 +193,9 @@ export function uiIntroArea(context, reveal) { timeouts.forEach(window.clearTimeout); context.on('enter.intro', null); context.on('exit.intro', null); - context.history().on('change.intro', null); context.map().on('move.intro drawn.intro', null); - d3.select('.preset-search-input').on('keyup.intro', null); + context.history().on('change.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index b943a6a97..7dc04cb84 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -317,9 +317,7 @@ export function uiIntroPoint(context, reveal) { context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); - d3.select('.preset-search-input') - .on('keyup.intro', null) - .on('keydown.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); }; From 7358766d4d7e5324c3b75f031feceec2eefcb96f Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 00:37:11 -0400 Subject: [PATCH 26/91] Don't update hash, imagery_used when changing background in walkthrough (closes #3936) --- modules/renderer/background.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/renderer/background.js b/modules/renderer/background.js index 063f1d6b0..a09237b22 100644 --- a/modules/renderer/background.js +++ b/modules/renderer/background.js @@ -47,6 +47,8 @@ export function rendererBackground(context) { background.updateImagery = function() { + if (context.inIntro()) return; + var b = background.baseLayerSource(), o = overlayLayers .filter(function (d) { return !d.source().isLocatorOverlay(); }) From dabf8556ddeb4a9d20298b0e5c1f13f13e8ac342 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 17:48:18 -0400 Subject: [PATCH 27/91] Add continue/cleanups/restarts for each step of lines chapter --- data/core.yaml | 20 +-- dist/locales/en.json | 20 +-- modules/ui/intro/line.js | 303 ++++++++++++++++++++++++++------------- 3 files changed, 221 insertions(+), 122 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index fec550471..879e8bcd8 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -821,11 +821,11 @@ en: search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**" - play: "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" add: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" - place: "The point can be placed by clicking on the map. **Click the map to place the new point on top of the building.**" + place: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map to place the new point on top of the building.**" search: "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**" choose: "**Choose Cafe from the list.**" describe: "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**" @@ -834,28 +834,28 @@ en: fixname: "**Change the name, then click the {button} button to close the feature editor.**" rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" delete: "**Click on the {button} button to delete the point.**" - play: "Try adding a few more points. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Now that you know how to create points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" add: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" - corner: "Areas are drawn by placing nodes that mark the boundary of the area. **Click to place a starting node on one of the corners of the playground.**" + corner: "Areas are drawn by placing nodes that mark the boundary of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" place: "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**" search: "**Search for '{name}'.**" choose: "**Choose Playground from the list.**" describe: "**Add a name, then click the {button} button to close the feature editor**" - play: "Try drawing a few more areas. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" add: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" - start: "**Start the line by clicking on the end of the road.**" - intersect: "Click to add more nodes to the line. You can drag the map while drawing if necessary. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" - finish: "Lines can be finished by clicking on the last node again. **Finish drawing the road.**" + start: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" + intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" + finish: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" road: "**Select Road from the list**" residential: "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**" describe: "**Name the road, then click the {button} button to close the feature editor.**" - restart: "The road needs to intersect {name}." + restart: "The road needs to intersect {name}. Let's try again!" wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" - play: "Try drawing a few more lines. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" help: "You can replay this walkthrough or view more documentation by clicking the {button} Help button." diff --git a/dist/locales/en.json b/dist/locales/en.json index 897ad491b..bea8fbd06 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -680,12 +680,12 @@ "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**", - "play": "Try moving the map and clicking on some other features. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { "title": "Points", "add": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", - "place": "The point can be placed by clicking on the map. **Click the map to place the new point on top of the building.**", + "place": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map to place the new point on top of the building.**", "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**", "choose": "**Choose Cafe from the list.**", "describe": "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**", @@ -694,30 +694,30 @@ "fixname": "**Change the name, then click the {button} button to close the feature editor.**", "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", "delete": "**Click on the {button} button to delete the point.**", - "play": "Try adding a few more points. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Now that you know how to create points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", - "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Click to place a starting node on one of the corners of the playground.**", + "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**", "search": "**Search for '{name}'.**", "choose": "**Choose Playground from the list.**", "describe": "**Add a name, then click the {button} button to close the feature editor**", - "play": "Try drawing a few more areas. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", "add": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start": "**Start the line by clicking on the end of the road.**", - "intersect": "Click to add more nodes to the line. You can drag the map while drawing if necessary. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", - "finish": "Lines can be finished by clicking on the last node again. **Finish drawing the road.**", + "start": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", + "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", + "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", "road": "**Select Road from the list**", "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", "describe": "**Name the road, then click the {button} button to close the feature editor.**", - "restart": "The road needs to intersect {name}.", + "restart": "The road needs to intersect {name}. Let's try again!", "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", - "play": "Try drawing a few more lines. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "startediting": { "title": "Start Editing", diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 84d6da0ec..2f155b6a5 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -2,19 +2,17 @@ import * as d3 from 'd3'; import _ from 'lodash'; import { t } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { utilBindOnce } from '../../util/bind_once'; import { icon, pad } from './helper'; export function uiIntroLine(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], - centroid = [-85.62830, 41.95699], midpoint = [-85.62975395449628, 41.95787501510204], start = [-85.6297754121684, 41.95805253325314], intersection = [-85.62974496187628, 41.95742515554585], targetId = 'w17965351', - drawId = null; + lineId = null; var chapter = { @@ -43,143 +41,244 @@ export function uiIntroLine(context, reveal) { .append('use') .attr('xlink:href', '#feature-images'); - context.on('enter.intro', startLine); - } - - - function startLine(mode) { - if (mode.id !== 'add-line') return; - drawId = null; - context.on('enter.intro', drawLine); - - var padding = 150 * Math.pow(2, context.map().zoom() - 18); - var pointBox = pad(start, padding, context); - reveal(pointBox, t('intro.lines.start')); - - context.map().on('move.intro drawn.intro', function() { - padding = 150 * Math.pow(2, context.map().zoom() - 18); - pointBox = pad(start, padding, context); - reveal(pointBox, t('intro.lines.start'), {duration: 0}); + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-line') return; + continueTo(startLine); }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } } - function drawLine(mode) { - if (mode.id !== 'draw-line') return; - drawId = mode.selectedIDs()[0]; - context.history().on('change.intro', checkIntersection); - context.on('enter.intro', retry); - - var padding = 300 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(midpoint, padding, context); - reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')})); - - context.map().on('move.intro drawn.intro', function() { - padding = 300 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(midpoint, padding, context); - reveal(pointBox, t('intro.lines.intersect', {name: t('intro.graph.flower_st')}), {duration: 0}); - }); - } - - - // ended line before creating intersection - function retry(mode) { - if (mode.id !== 'select') return; - context.history().on('change.intro', null); - var pointBox = pad(intersection, 30, context); - reveal(pointBox, t('intro.lines.restart', {name: t('intro.graph.flower_st')})); - d3.select(window).on('mousedown.intro', eventCancel, true); - - timeout(chapter.restart, 3000); - } - - - function checkIntersection() { - - function joinedTargetWay() { - var drawEntity = drawId && context.hasEntity(drawId); - if (!drawEntity) { - chapter.restart(); - return false; - } - - var drawNodes = context.graph().childNodes(drawEntity); - return _.some(drawNodes, function(node) { - return _.some(context.graph().parentWays(node), function(parent) { - return parent.id === targetId; - }); - }); + function startLine() { + if (context.mode().id !== 'add-line') { + return chapter.restart(); } - if (joinedTargetWay()) { - context.history().on('change.intro', null); - context.on('enter.intro', enterSelect); + lineId = null; - var padding = 900 * Math.pow(2, context.map().zoom() - 19); - var pointBox = pad(centroid, padding, context); - reveal(pointBox, t('intro.lines.finish')); + var padding = 100 * Math.pow(2, context.map().zoom() - 18); + var box = pad(start, padding, context); + box.height = box.height + 100; + reveal(box, t('intro.lines.start')); + + context.map().on('move.intro drawn.intro', function() { + padding = 100 * Math.pow(2, context.map().zoom() - 18); + box = pad(start, padding, context); + box.height = box.height + 100; + reveal(box, t('intro.lines.start'), { duration: 0 }); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-line') return chapter.restart(); + continueTo(drawLine); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function drawLine() { + if (context.mode().id !== 'draw-line') { + return chapter.restart(); + } + + lineId = context.mode().selectedIDs()[0]; + context.map().centerEase(midpoint); + + timeout(function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18.5); + var box = pad(midpoint, padding, context); + box.height = box.height * 2; + reveal(box, + t('intro.lines.intersect', { name: t('intro.graph.flower_st') }) + ); context.map().on('move.intro drawn.intro', function() { - padding = 900 * Math.pow(2, context.map().zoom() - 19); - pointBox = pad(centroid, padding, context); - reveal(pointBox, t('intro.lines.finish'), {duration: 0}); + padding = 200 * Math.pow(2, context.map().zoom() - 18.5); + box = pad(midpoint, padding, context); + box.height = box.height * 2; + reveal(box, + t('intro.lines.intersect', { name: t('intro.graph.flower_st') }), + { duration: 0 } + ); }); + }, 260); // after easing.. + + context.history().on('change.intro', function() { + var entity = lineId && context.hasEntity(lineId); + if (!entity) return chapter.restart(); + + if (isLineConnected()) { + continueTo(finishLine); + } + }); + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-line') + return; + else if (mode.id === 'select') { + var box = pad(intersection, 80, context); + reveal(box, t('intro.lines.restart', { name: t('intro.graph.flower_st') })); + d3.select(window).on('mousedown.intro', eventCancel, true); + timeout(chapter.restart, 3000); + return; + } + else + return chapter.restart(); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + context.on('enter.intro', null); + nextStep(); } } - function enterSelect(mode) { - if (mode.id !== 'select') return; - context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - d3.select('#curtain').style('pointer-events', 'all'); - presetCategory(); + function isLineConnected() { + var entity = lineId && context.hasEntity(lineId); + if (!entity) return false; + + var drawNodes = context.graph().childNodes(entity); + return _.some(drawNodes, function(node) { + return _.some(context.graph().parentWays(node), function(parent) { + return parent.id === targetId; + }); + }); } - function presetCategory() { + function finishLine() { + if (context.mode().id !== 'draw-line') return chapter.restart(); + var entity = lineId && context.hasEntity(lineId); + if (!entity) return chapter.restart(); + + context.map().centerEase(intersection); + + reveal('#surface', t('intro.lines.finish')); + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-line') + return; + else if (mode.id === 'select') + return continueTo(enterSelect); + else + return chapter.restart(); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } + } + + + function enterSelect() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + var button = d3.select('.preset-category-road .preset-list-button'); + if (button.empty()) return chapter.restart(); + timeout(function() { - d3.select('#curtain').style('pointer-events', 'none'); - var road = d3.select('.preset-category-road .preset-list-button'); - reveal(road.node(), t('intro.lines.road')); - utilBindOnce(road, 'click.intro', roadCategory); + reveal(button.node(), t('intro.lines.road')); + button.on('click.intro', function() { continueTo(roadCategory); }); }, 500); + + function continueTo(nextStep) { + d3.select('.preset-list-button').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } } function roadCategory() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + var subgrid = d3.select('.preset-category-road .subgrid'); + if (subgrid.empty()) return chapter.restart(); + + subgrid.selectAll(':not(.preset-highway-residential) .preset-list-button') + .on('click.intro', function() { + continueTo(retryPreset); + }); + + subgrid.selectAll('.preset-highway-residential .preset-list-button') + .on('click.intro', function() { + continueTo(roadDetails); + }); + timeout(function() { - var grid = d3.select('.subgrid'); - reveal(grid.node(), t('intro.lines.residential')); - utilBindOnce(grid.selectAll(':not(.preset-highway-residential) .preset-list-button'), - 'click.intro', retryPreset); - utilBindOnce(grid.selectAll('.preset-highway-residential .preset-list-button'), - 'click.intro', roadDetails); + reveal(subgrid.node(), t('intro.lines.residential')); }, 500); + + function continueTo(nextStep) { + d3.select('.preset-list-button').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } } // selected wrong road type function retryPreset() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + timeout(function() { - var preset = d3.select('.entity-editor-pane .preset-list-button'); - reveal(preset.node(), t('intro.lines.wrong_preset')); - utilBindOnce(preset, 'click.intro', presetCategory); + var button = d3.select('.entity-editor-pane .preset-list-button'); + reveal(button.node(), t('intro.lines.wrong_preset')); + button.on('click.intro', function() { + continueTo(enterSelect); + }); }, 500); + + function continueTo(nextStep) { + d3.select('.preset-list-button').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } } function roadDetails() { - reveal('.pane', - t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') })); - context.on('exit.intro', function() { - advance(); + continueTo(play); }); - function advance() { + reveal('.pane', + t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') }) + ); + + function continueTo(nextStep) { context.on('exit.intro', null); - play(); + nextStep(); } } @@ -197,7 +296,7 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - context.map().zoom(18).centerEase(start); + context.map().zoom(18.5).centerEase(start); addLine(); }; @@ -205,11 +304,11 @@ export function uiIntroLine(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); d3.select(window).on('mousedown.intro', null, true); - d3.select('#curtain').style('pointer-events', 'none'); context.on('enter.intro', null); context.on('exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); + d3.select('.preset-list-button').on('click.intro', null); }; From 5459f549000ff30b3a97845af3ccd032b56822b6 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 17:48:31 -0400 Subject: [PATCH 28/91] Add copyBox to copy immutable ClientRects bc we do things like `box.height -= something` to trim box to window --- modules/ui/curtain.js | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 52e6ccbdc..ec16cc609 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -53,10 +53,9 @@ export function uiCurtain() { curtain.reveal = function(box, text, options) { if (typeof box === 'string') box = d3.select(box).node(); - if (box.getBoundingClientRect) box = box.getBoundingClientRect(); + if (box.getBoundingClientRect) box = copyBox(box.getBoundingClientRect()); options = options || {}; - curtain.cut(box, options.duration); if (text) { // pseudo markdown bold text hack @@ -90,7 +89,7 @@ export function uiCurtain() { } // var dimensions = utilGetDimensions(selection, true), - var tip = tooltip.node().getBoundingClientRect(), + var tip = copyBox(tooltip.node().getBoundingClientRect()), w = window.innerWidth, h = window.innerHeight, tooltipWidth = 200, @@ -173,6 +172,8 @@ export function uiCurtain() { .call(uiToggle(false)); } + curtain.cut(box, options.duration); + return tooltip; }; @@ -215,5 +216,19 @@ export function uiCurtain() { }; + // ClientRects are immutable, so copy them to an object, + // in case we need to trim the height/width. + function copyBox(src) { + return { + top: src.top, + right: src.right, + bottom: src.bottom, + left: src.left, + width: src.width, + height: src.height + }; + } + + return curtain; } From d5912283ac07cb0f802e2ee0f14d8416275e2038 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 18:07:11 -0400 Subject: [PATCH 29/91] Don't allow geolocate while in walkthrough --- modules/ui/geolocate.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ui/geolocate.js b/modules/ui/geolocate.js index b552a7cf8..b63a9de85 100644 --- a/modules/ui/geolocate.js +++ b/modules/ui/geolocate.js @@ -13,6 +13,7 @@ export function uiGeolocate(context) { function click() { + if (context.inIntro()) return; context.enter(modeBrowse(context)); context.container().call(locating); navigator.geolocation.getCurrentPosition(success, error, geoOptions); From ad5c9760c22a7c5618e934996191410fba0c017c Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 30 Mar 2017 18:08:30 -0400 Subject: [PATCH 30/91] Don't allow user to re-enter walkthrough if already in walkthrough --- modules/ui/help.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ui/help.js b/modules/ui/help.js index 9690af5d0..308a55a1f 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -129,6 +129,7 @@ export function uiHelp(context) { function clickWalkthrough() { + if (context.inIntro()) return; context.container().call(uiIntro(context)); setVisible(false); } From f2f21a090e7be90b28679b180b02ed32196b9996 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 11:27:32 -0400 Subject: [PATCH 31/91] Allow combobox to nest under id-container instead of body (re: https://github.com/openstreetmap/iD/issues/3925#issuecomment-290718356) --- modules/lib/d3.combobox.js | 31 +++++++++++++++++++------------ test/spec/lib/d3.combobox.js | 22 +++++++++++++++++++--- 2 files changed, 38 insertions(+), 15 deletions(-) diff --git a/modules/lib/d3.combobox.js b/modules/lib/d3.combobox.js index 7b4fe95cb..a5f238cfc 100644 --- a/modules/lib/d3.combobox.js +++ b/modules/lib/d3.combobox.js @@ -4,6 +4,7 @@ import { utilRebind } from '../../modules/util/rebind'; export function d3combobox() { var event = d3.dispatch('accept'), + container = d3.select(document.body), data = [], suggestions = [], minItems = 2, @@ -20,10 +21,10 @@ export function d3combobox() { var combobox = function(input, attachTo) { var idx = -1, - container = d3.select(document.body) + wrapper = container .selectAll('div.combobox') .filter(function(d) { return d === input.node(); }), - shown = !container.empty(); + shown = !wrapper.empty(); input .classed('combobox-input', true) @@ -70,7 +71,7 @@ export function d3combobox() { function show() { if (!shown) { - container = d3.select(document.body) + wrapper = container .insert('div', ':first-child') .datum(input.node()) .attr('class', 'combobox') @@ -82,7 +83,7 @@ export function d3combobox() { d3.event.preventDefault(); }); - d3.select(document.body) + d3.select('body') .on('scroll.combobox', render, true); shown = true; @@ -92,9 +93,9 @@ export function d3combobox() { function hide() { if (shown) { idx = -1; - container.remove(); + wrapper.remove(); - d3.select(document.body) + d3.select('body') .on('scroll.combobox', null); shown = false; @@ -116,7 +117,7 @@ export function d3combobox() { break; // tab case 9: - container.selectAll('a.selected').each(function (d) { + wrapper.selectAll('a.selected').each(function (d) { event.call('accept', this, d); }); hide(); @@ -147,7 +148,7 @@ export function d3combobox() { break; // return case 13: - container.selectAll('a.selected').each(function (d) { + wrapper.selectAll('a.selected').each(function (d) { event.call('accept', this, d); }); hide(); @@ -217,7 +218,7 @@ export function d3combobox() { return; } - var options = container + var options = wrapper .selectAll('a.combobox-option') .data(suggestions, function(d) { return d.value; }); @@ -239,7 +240,7 @@ export function d3combobox() { var node = attachTo ? attachTo.node() : input.node(), rect = node.getBoundingClientRect(); - container + wrapper .style('left', rect.left + 'px') .style('width', rect.width + 'px') .style('top', rect.height + rect.top + 'px'); @@ -251,7 +252,7 @@ export function d3combobox() { } function ensureVisible() { - var node = container.selectAll('a.selected').node(); + var node = wrapper.selectAll('a.selected').node(); if (node) node.scrollIntoView(); } @@ -289,6 +290,12 @@ export function d3combobox() { return combobox; }; + combobox.container = function(_) { + if (!arguments.length) return container; + container = _; + return combobox; + }; + return utilRebind(combobox, event, 'on'); } @@ -306,6 +313,6 @@ d3combobox.off = function(input) { .on('mousedown', null); }); - d3.select(document.body) + d3.select('body') .on('scroll.combobox', null); }; diff --git a/test/spec/lib/d3.combobox.js b/test/spec/lib/d3.combobox.js index a8def826a..cc604c68e 100644 --- a/test/spec/lib/d3.combobox.js +++ b/test/spec/lib/d3.combobox.js @@ -1,5 +1,5 @@ describe('d3.combobox', function() { - var body, content, input, combobox; + var body, container, content, input, combobox; var data = [ {title: 'foo', value: 'foo'}, @@ -62,14 +62,16 @@ describe('d3.combobox', function() { beforeEach(function() { body = d3.select('body'); - content = body.append('div'); + container = body.append('div').attr('class', 'id-container'); + content = container.append('div'); input = content.append('input'); combobox = iD.lib.d3combobox(); }); afterEach(function() { - content.remove(); body.selectAll('.combobox').remove(); + content.remove(); + container.remove(); }); function focusTypeahead(input) { @@ -82,6 +84,20 @@ describe('d3.combobox', function() { expect(input).to.be.classed('combobox-input'); }); + it('adds combobox under body by default', function() { + input.call(combobox.data(data)); + focusTypeahead(input); + expect(d3.select('body > div.combobox').nodes().length).to.equal(1); + expect(d3.select('.id-container > div.combobox').nodes().length).to.equal(0); + }); + + it('adds combobox under container with container option', function() { + input.call(combobox.container(container).data(data)); + focusTypeahead(input); + expect(d3.select('body > div.combobox').nodes().length).to.equal(0); + expect(d3.select('.id-container > div.combobox').nodes().length).to.equal(1); + }); + it('shows a menu of entries on focus', function() { input.call(combobox.data(data)); focusTypeahead(input); From e1e366c5f4c778919c1f41a559488d269b0fd72d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 12:00:46 -0400 Subject: [PATCH 32/91] Add a description to the park instead of a name (closes #3121) --- data/core.yaml | 4 ++- dist/locales/en.json | 4 ++- modules/ui/intro/area.js | 53 ++++++++++++++++++++++++++++++++++++---- modules/ui/intro/line.js | 2 +- 4 files changed, 55 insertions(+), 8 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 879e8bcd8..878cd89a9 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -842,7 +842,9 @@ en: place: "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**" search: "**Search for '{name}'.**" choose: "**Choose Playground from the list.**" - describe: "**Add a name, then click the {button} button to close the feature editor**" + add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" + choose_field: "**Choose Description from the list.**" + describe: "**Add a description, then click the {button} button to close the feature editor.**" play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" diff --git a/dist/locales/en.json b/dist/locales/en.json index bea8fbd06..03861ef55 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -703,7 +703,9 @@ "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**", "search": "**Search for '{name}'.**", "choose": "**Choose Playground from the list.**", - "describe": "**Add a name, then click the {button} button to close the feature editor**", + "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", + "choose_field": "**Choose Description from the list.**", + "describe": "**Add a description, then click the {button} button to close the feature editor.**", "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 9bebb5a7f..300ccf614 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -95,7 +95,7 @@ export function uiIntroArea(context, reveal) { if (mode.id === 'draw-area') return; else if (mode.id === 'select') - return continueTo(enterSelect); + return continueTo(searchPresets); else return chapter.restart(); }); @@ -108,7 +108,7 @@ export function uiIntroArea(context, reveal) { } - function enterSelect() { + function searchPresets() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -142,7 +142,7 @@ export function uiIntroArea(context, reveal) { .on('keyup.intro', null); context.history().on('change.intro', function() { - continueTo(selectedPreset); + continueTo(clickAddField); }); } @@ -155,12 +155,54 @@ export function uiIntroArea(context, reveal) { } - function selectedPreset() { + function clickAddField() { + context.on('exit.intro', function() { + return chapter.restart(); + }); + + timeout(function() { + reveal('.more-fields .combobox-input', t('intro.areas.add_field')); + + d3.select('.more-fields .combobox-input') + .on('click.intro', function() { + continueTo(chooseDescriptionField); + }); + }, 500); + + function continueTo(nextStep) { + d3.select('.more-fields .combobox-input').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } + } + + + function chooseDescriptionField() { + context.on('exit.intro', function() { + return chapter.restart(); + }); + + reveal('div.combobox', t('intro.areas.choose_field')); + + d3.select('div.combobox') + .on('click.intro', function() { + continueTo(addDescription); + }); + + function continueTo(nextStep) { + d3.select('div.combobox').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } + } + + + function addDescription() { context.on('exit.intro', function() { continueTo(play); }); - reveal('.pane', + reveal('.entity-editor-pane', t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') }) ); @@ -196,6 +238,7 @@ export function uiIntroArea(context, reveal) { context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); + d3.select('.more-fields .combobox-input').on('click.intro', null); }; diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 2f155b6a5..7509f3e3d 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -272,7 +272,7 @@ export function uiIntroLine(context, reveal) { continueTo(play); }); - reveal('.pane', + reveal('.entity-editor-pane', t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') }) ); From 5f44c9a00ac7b0073888c0c3591921a0ce65db39 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 13:44:55 -0400 Subject: [PATCH 33/91] Add combobox menus to id-container instead of document.body (re: https://github.com/openstreetmap/iD/issues/3925#issuecomment-290718356) --- modules/core/context.js | 3 ++- modules/ui/commit.js | 1 + modules/ui/fields/access.js | 6 ++++-- modules/ui/fields/address.js | 4 +++- modules/ui/fields/combo.js | 4 +++- modules/ui/fields/cycleway.js | 8 ++++++-- modules/ui/fields/localized.js | 13 +++++++++---- modules/ui/fields/maxspeed.js | 8 ++++++-- modules/ui/fields/radio.js | 8 +++++--- modules/ui/fields/wikipedia.js | 2 ++ modules/ui/preset.js | 7 +++++-- modules/ui/raw_member_editor.js | 1 + modules/ui/raw_membership_editor.js | 2 ++ modules/ui/raw_tag_editor.js | 2 ++ test/spec/ui/fields/access.js | 28 +++++++++++++++------------- test/spec/ui/fields/localized.js | 21 +++++++++++---------- 16 files changed, 77 insertions(+), 41 deletions(-) diff --git a/modules/core/context.js b/modules/core/context.js index 354984f94..f412e583a 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -289,13 +289,14 @@ export function coreContext() { /* Container */ - var container, embed; + var container = d3.select(document.body); context.container = function(_) { if (!arguments.length) return container; container = _; container.classed('id-container', true); return context; }; + var embed; context.embed = function(_) { if (!arguments.length) return embed; embed = _; diff --git a/modules/ui/commit.js b/modules/ui/commit.js index c6e41f835..531517657 100644 --- a/modules/ui/commit.js +++ b/modules/ui/commit.js @@ -89,6 +89,7 @@ export function uiCommit(context) { commentField .call(d3combobox() + .container(context.container()) .caseSensitive(true) .data(_.uniqBy(comments, 'title')) ); diff --git a/modules/ui/fields/access.js b/modules/ui/fields/access.js index 7db06ba95..2e47b33d9 100644 --- a/modules/ui/fields/access.js +++ b/modules/ui/fields/access.js @@ -8,7 +8,7 @@ import { } from '../../util'; -export function uiFieldAccess(field) { +export function uiFieldAccess(field, context) { var dispatch = d3.dispatch('change'), items; @@ -55,7 +55,9 @@ export function uiFieldAccess(field) { .each(function(d) { d3.select(this) .call(d3combobox() - .data(access.options(d))); + .container(context.container()) + .data(access.options(d)) + ); }); diff --git a/modules/ui/fields/address.js b/modules/ui/fields/address.js index ed22f2e6a..ddaae542e 100644 --- a/modules/ui/fields/address.js +++ b/modules/ui/fields/address.js @@ -178,10 +178,12 @@ export function uiFieldAddress(field, context) { wrap.selectAll('input.addr-' + tag) .call(d3combobox() + .container(context.container()) .minItems(1) .fetcher(function(value, callback) { callback(nearValues('addr:' + tag)); - })); + }) + ); }); wrap.selectAll('input') diff --git a/modules/ui/fields/combo.js b/modules/ui/fields/combo.js index 49134a2eb..1f61bf0bd 100644 --- a/modules/ui/fields/combo.js +++ b/modules/ui/fields/combo.js @@ -27,7 +27,9 @@ export function uiFieldCombo(field, context) { optstrings = field.strings && field.strings.options, optarray = field.options, snake_case = (field.snake_case || (field.snake_case === undefined)), - combobox = d3combobox().minItems(isMulti || isSemi ? 1 : 2), + combobox = d3combobox() + .container(context.container()) + .minItems(isMulti || isSemi ? 1 : 2), comboData = [], multiData = [], container, diff --git a/modules/ui/fields/cycleway.js b/modules/ui/fields/cycleway.js index 5861f3b69..cbee57bee 100644 --- a/modules/ui/fields/cycleway.js +++ b/modules/ui/fields/cycleway.js @@ -7,7 +7,7 @@ import { } from '../../util'; -export function uiFieldCycleway(field) { +export function uiFieldCycleway(field, context) { var dispatch = d3.dispatch('change'), items = d3.select(null); @@ -57,7 +57,11 @@ export function uiFieldCycleway(field) { .attr('class', function(d) { return 'preset-input-cycleway preset-input-' + stripcolon(d); }) .call(utilNoAuto) .each(function(d) { - d3.select(this).call(d3combobox().data(cycleway.options(d))); + d3.select(this) + .call(d3combobox() + .container(context.container()) + .data(cycleway.options(d)) + ); }); diff --git a/modules/ui/fields/localized.js b/modules/ui/fields/localized.js index 275f4b2b1..7ed965724 100644 --- a/modules/ui/fields/localized.js +++ b/modules/ui/fields/localized.js @@ -39,9 +39,11 @@ export function uiFieldLocalized(field, context) { if (field.id === 'name') { var preset = context.presets().match(entity, context.graph()); - input.call(d3combobox().fetcher( - utilSuggestNames(preset, dataSuggestions) - )); + input + .call(d3combobox() + .container(context.container()) + .fetcher(utilSuggestNames(preset, dataSuggestions)) + ); } input @@ -171,7 +173,10 @@ export function uiFieldLocalized(field, context) { innerWrap.attr('class', 'entry') .each(function() { var wrap = d3.select(this); - var langcombo = d3combobox().fetcher(fetcher).minItems(0); + var langcombo = d3combobox() + .container(context.container()) + .fetcher(fetcher) + .minItems(0); var label = wrap .append('label') diff --git a/modules/ui/fields/maxspeed.js b/modules/ui/fields/maxspeed.js index 75af3dbdf..fd0f33582 100644 --- a/modules/ui/fields/maxspeed.js +++ b/modules/ui/fields/maxspeed.js @@ -23,8 +23,12 @@ export function uiFieldMaxspeed(field, context) { function maxspeed(selection) { - combobox = d3combobox(); - var unitCombobox = d3combobox().data(['km/h', 'mph'].map(comboValues)); + combobox = d3combobox() + .container(context.container()); + + var unitCombobox = d3combobox() + .container(context.container()) + .data(['km/h', 'mph'].map(comboValues)); input = selection.selectAll('#preset-input-' + field.id) .data([0]); diff --git a/modules/ui/fields/radio.js b/modules/ui/fields/radio.js index 5e58133ca..eb6766880 100644 --- a/modules/ui/fields/radio.js +++ b/modules/ui/fields/radio.js @@ -13,7 +13,7 @@ import { export { uiFieldRadio as uiFieldStructureRadio }; -export function uiFieldRadio(field) { +export function uiFieldRadio(field, context) { var dispatch = d3.dispatch('change'), taginfo = services.taginfo, placeholder = d3.select(null), @@ -26,7 +26,6 @@ export function uiFieldRadio(field) { entity; - function selectedKey() { var selector = '.form-field-structure .toggle-list label.active input', node = d3.selectAll(selector); @@ -157,7 +156,10 @@ export function uiFieldRadio(field) { if (taginfo) { typeInput - .call(d3combobox().fetcher(typeFetcher)); + .call(d3combobox() + .container(context.container()) + .fetcher(typeFetcher) + ); } typeInput diff --git a/modules/ui/fields/wikipedia.js b/modules/ui/fields/wikipedia.js index 59db253d2..3dc72b8b1 100644 --- a/modules/ui/fields/wikipedia.js +++ b/modules/ui/fields/wikipedia.js @@ -27,6 +27,7 @@ export function uiFieldWikipedia(field, context) { function wiki(selection) { var langcombo = d3combobox() + .container(context.container()) .fetcher(function(value, cb) { var v = value.toLowerCase(); @@ -40,6 +41,7 @@ export function uiFieldWikipedia(field, context) { }); var titlecombo = d3combobox() + .container(context.container()) .fetcher(function(value, cb) { if (!value) { value = context.entity(entity.id).tags.name || ''; diff --git a/modules/ui/preset.js b/modules/ui/preset.js index 6732468d1..664ae73ef 100644 --- a/modules/ui/preset.js +++ b/modules/ui/preset.js @@ -255,9 +255,12 @@ export function uiPreset(context) { } return placeholder.slice(0,3).join(', ') + ((placeholder.length > 3) ? '…' : ''); }) - .call(d3combobox().data(notShown) + .call(d3combobox() + .container(context.container()) + .data(notShown) .minItems(1) - .on('accept', show)); + .on('accept', show) + ); function show(field) { diff --git a/modules/ui/raw_member_editor.js b/modules/ui/raw_member_editor.js index d2a4afdeb..8ff9be43b 100644 --- a/modules/ui/raw_member_editor.js +++ b/modules/ui/raw_member_editor.js @@ -169,6 +169,7 @@ export function uiRawMemberEditor(context) { } role.call(d3combobox() + .container(context.container()) .fetcher(function(role, callback) { var rtype = entity.tags.type; taginfo.roles({ diff --git a/modules/ui/raw_membership_editor.js b/modules/ui/raw_membership_editor.js index b5cfaa9b3..76973dd70 100644 --- a/modules/ui/raw_membership_editor.js +++ b/modules/ui/raw_membership_editor.js @@ -244,6 +244,7 @@ export function uiRawMembershipEditor(context) { newrow.selectAll('.member-entity-input') .call(d3combobox() + .container(context.container()) .minItems(1) .fetcher(function(value, callback) { callback(relations(value)); }) .on('accept', onAccept) @@ -291,6 +292,7 @@ export function uiRawMembershipEditor(context) { } role.call(d3combobox() + .container(context.container()) .fetcher(function(role, callback) { var rtype = d.relation.tags.type; taginfo.roles({ diff --git a/modules/ui/raw_tag_editor.js b/modules/ui/raw_tag_editor.js index a36dd727e..2cec90b33 100644 --- a/modules/ui/raw_tag_editor.js +++ b/modules/ui/raw_tag_editor.js @@ -187,6 +187,7 @@ export function uiRawTagEditor(context) { var geometry = context.geometry(id); key.call(d3combobox() + .container(context.container()) .fetcher(function(value, callback) { taginfo.keys({ debounce: true, @@ -198,6 +199,7 @@ export function uiRawTagEditor(context) { })); value.call(d3combobox() + .container(context.container()) .fetcher(function(value, callback) { taginfo.values({ debounce: true, diff --git a/test/spec/ui/fields/access.js b/test/spec/ui/fields/access.js index 4e84c5dd6..97b9a9d27 100644 --- a/test/spec/ui/fields/access.js +++ b/test/spec/ui/fields/access.js @@ -1,12 +1,14 @@ describe('iD.uiFieldAccess', function() { - var selection, field; + var context, selection, field; + beforeEach(function() { + context = iD.Context(); selection = d3.select(document.createElement('div')); - field = iD.Context().presets().field('access'); + field = context.presets().field('access'); }); it('creates inputs for a variety of modes of access', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); expect(selection.selectAll('.preset-access-access').size()).to.equal(1); expect(selection.selectAll('.preset-access-foot').size()).to.equal(1); @@ -16,20 +18,20 @@ describe('iD.uiFieldAccess', function() { }); it('does not include "yes", "designated", "dismount" options for general access (#934), (#2213)', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); expect(_.map(access.options('access'), 'value')).not.to.include('yes'); expect(_.map(access.options('access'), 'value')).not.to.include('designated'); expect(_.map(access.options('access'), 'value')).not.to.include('dismount'); }); it('does include a "dismount" option for bicycles (#2726)', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); expect(_.map(access.options('bicycle'), 'value')).to.include('dismount'); expect(_.map(access.options('foot'), 'value')).not.to.include('dismount'); }); it('sets foot placeholder to "yes" for steps and pedestrian', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'steps'}); @@ -40,7 +42,7 @@ describe('iD.uiFieldAccess', function() { }); it('sets foot placeholder to "designated" for footways', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'footway'}); @@ -48,7 +50,7 @@ describe('iD.uiFieldAccess', function() { }); it('sets bicycle placeholder to "designated" for cycleways', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'cycleway'}); @@ -56,7 +58,7 @@ describe('iD.uiFieldAccess', function() { }); it('sets horse placeholder to "designated" for bridleways', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'bridleway'}); @@ -64,7 +66,7 @@ describe('iD.uiFieldAccess', function() { }); it('sets motor_vehicle placeholder to "no" for footways, steps, pedestrian, cycleway, bridleway, and path', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); ['footway', 'steps', 'pedestrian', 'cycleway', 'bridleway', 'path'].forEach(function(value) { access.tags({highway: value}); @@ -73,7 +75,7 @@ describe('iD.uiFieldAccess', function() { }); it('sets motor_vehicle placeholder to "yes" for various other highway tags', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); ['residential', 'motorway', 'trunk', 'primary', 'secondary', 'tertiary', 'service', 'unclassified', 'motorway_link', 'trunk_link', 'primary_link', 'secondary_link', 'tertiary_link'].forEach(function(value) { @@ -83,7 +85,7 @@ describe('iD.uiFieldAccess', function() { }); it('overrides a "yes" or "designated" placeholder with more specific access tag (#2213)', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'service', access: 'emergency'}); @@ -94,7 +96,7 @@ describe('iD.uiFieldAccess', function() { }); it('overrides a "no" placeholder with more specific access tag (#2763)', function() { - var access = iD.uiFieldAccess(field); + var access = iD.uiFieldAccess(field, context); selection.call(access); access.tags({highway: 'cycleway', access: 'destination'}); diff --git a/test/spec/ui/fields/localized.js b/test/spec/ui/fields/localized.js index 63c3cd2cf..8dc6ed8dc 100644 --- a/test/spec/ui/fields/localized.js +++ b/test/spec/ui/fields/localized.js @@ -1,13 +1,14 @@ describe('iD.uiFieldLocalized', function() { - var selection, field; + var context, selection, field; beforeEach(function() { + context = iD.Context(); selection = d3.select(document.createElement('div')); field = iD.presetField('test', {key: 'name'}); }); it('adds a blank set of fields when the + button is clicked', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); happen.click(selection.selectAll('.localized-add').node()); expect(selection.selectAll('.localized-lang').nodes().length).to.equal(1); @@ -15,7 +16,7 @@ describe('iD.uiFieldLocalized', function() { }); it('doesn\'t create a tag when the value is empty', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); happen.click(selection.selectAll('.localized-add').node()); @@ -29,7 +30,7 @@ describe('iD.uiFieldLocalized', function() { }); it('doesn\'t create a tag when the name is empty', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); happen.click(selection.selectAll('.localized-add').node()); @@ -43,7 +44,7 @@ describe('iD.uiFieldLocalized', function() { }); it('creates a tag after setting language then value', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); happen.click(selection.selectAll('.localized-add').node()); @@ -59,7 +60,7 @@ describe('iD.uiFieldLocalized', function() { }); it('creates a tag after setting value then language', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); happen.click(selection.selectAll('.localized-add').node()); @@ -75,7 +76,7 @@ describe('iD.uiFieldLocalized', function() { }); it('changes an existing language', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); localized.tags({'name:de': 'Value'}); @@ -90,7 +91,7 @@ describe('iD.uiFieldLocalized', function() { }); it('ignores similar keys like `old_name`', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); localized.tags({'old_name:de': 'Value'}); @@ -99,7 +100,7 @@ describe('iD.uiFieldLocalized', function() { }); it('removes the tag when the language is emptied', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); localized.tags({'name:de': 'Value'}); @@ -112,7 +113,7 @@ describe('iD.uiFieldLocalized', function() { }); it('removes the tag when the value is emptied', function() { - var localized = iD.uiFieldLocalized(field, {}); + var localized = iD.uiFieldLocalized(field, context); selection.call(localized); localized.tags({'name:de': 'Value'}); From 140e457dee879d7031faab951e987b94370655d3 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 14:42:40 -0400 Subject: [PATCH 34/91] Use span for button labels, so pointer events go to the button --- modules/ui/intro/intro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 45b1104ee..85b31c9c2 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -130,7 +130,7 @@ export function uiIntro(context) { .on('click', enterChapter); buttons - .append('label') + .append('span') .text(function(d) { return t(d.title); }); buttons From d7728691d47f5903b4cda78c4989a943a6254e85 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 15:04:54 -0400 Subject: [PATCH 35/91] Allow user to hit escape to leave select mode in walkthrough --- modules/modes/select.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/modes/select.js b/modules/modes/select.js index fda2cb8b8..1a8eb1618 100644 --- a/modules/modes/select.js +++ b/modules/modes/select.js @@ -301,9 +301,7 @@ export function modeSelect(context, selectedIDs) { function esc() { - if (!context.inIntro()) { - context.enter(modeBrowse(context)); - } + context.enter(modeBrowse(context)); } From 3b01166b2300cbe31c99fab6950ed9cc72036284 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 31 Mar 2017 17:19:56 -0400 Subject: [PATCH 36/91] Add more info about editing, teach Undo (closes #3680) --- data/core.yaml | 18 +++++--- dist/locales/en.json | 18 +++++--- modules/ui/intro/point.js | 85 +++++++++++++++++++++++++++++++------ modules/ui/intro/welcome.js | 7 +++ modules/ui/undo_redo.js | 2 +- 5 files changed, 103 insertions(+), 27 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 878cd89a9..ffdd5deba 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -811,6 +811,7 @@ en: welcome: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." + practice: "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved." chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" @@ -825,16 +826,19 @@ en: points: title: "Points" add: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" - place: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map to place the new point on top of the building.**" + place: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**" search: "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**" choose: "**Choose Cafe from the list.**" - describe: "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**" - close: "The feature editor will remember all of your changes automatically. When you change a feature, the close button will change to a checkmark. **Click the {button} button to close the feature editor**" - reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the point you just created.**" - fixname: "**Change the name, then click the {button} button to close the feature editor.**" + feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." + add_name: "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" + close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" + reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" + update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" + close2: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" - delete: "**Click on the {button} button to delete the point.**" - play: "Now that you know how to create points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" + delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" + undo: "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" + play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" add: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 03861ef55..7fe5146b3 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -669,6 +669,7 @@ "welcome": { "title": "Welcome", "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", + "practice": "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved.", "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { @@ -685,16 +686,19 @@ "points": { "title": "Points", "add": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", - "place": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map to place the new point on top of the building.**", + "place": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**", "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**", "choose": "**Choose Cafe from the list.**", - "describe": "The point is now marked as a cafe. Using the feature editor, we can add more information about the feature. **Add a name**", - "close": "The feature editor will remember all of your changes automatically. When you change a feature, the close button will change to a checkmark. **Click the {button} button to close the feature editor**", - "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the point you just created.**", - "fixname": "**Change the name, then click the {button} button to close the feature editor.**", + "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", + "add_name": "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", + "close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", + "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", + "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", + "close2": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", - "delete": "**Click on the {button} button to delete the point.**", - "play": "Now that you know how to create points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" + "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", + "undo": "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", + "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 7dc04cb84..4f4331671 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,5 +1,5 @@ import * as d3 from 'd3'; -import { t } from '../../util/locale'; +import { t, textDirection } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox, pad } from './helper'; @@ -66,7 +66,7 @@ export function uiIntroPoint(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id !== 'select') return chapter.restart(); - continueTo(enterSelect); + continueTo(searchPreset); }); function continueTo(nextStep) { @@ -77,7 +77,7 @@ export function uiIntroPoint(context, reveal) { } - function enterSelect() { + function searchPreset() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -112,7 +112,7 @@ export function uiIntroPoint(context, reveal) { .on('keyup.intro', null); context.history().on('change.intro', function() { - continueTo(selectedPreset); + continueTo(aboutFeatureEditor); }); } @@ -125,7 +125,27 @@ export function uiIntroPoint(context, reveal) { } - function selectedPreset() { + function aboutFeatureEditor() { + context.on('exit.intro', function() { + return chapter.restart(); + }); + + timeout(function() { + reveal('.entity-editor-pane', t('intro.points.feature_editor'), { + tooltipClass: 'intro-points-describe', + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(addName); } + }); + }, 400); + + function continueTo(nextStep) { + context.on('exit.intro', null); + nextStep(); + } + } + + + function addName() { context.on('exit.intro', function() { return chapter.restart(); }); @@ -135,8 +155,7 @@ export function uiIntroPoint(context, reveal) { }); timeout(function() { - reveal('.entity-editor-pane', - t('intro.points.describe'), + reveal('.entity-editor-pane', t('intro.points.add_name'), { tooltipClass: 'intro-points-describe' } ); }, 400); @@ -151,7 +170,7 @@ export function uiIntroPoint(context, reveal) { function closeEditor() { context.on('exit.intro', function() { - continueTo(selectPoint); + continueTo(reselectPoint); }); reveal('.entity-editor-pane', @@ -165,7 +184,7 @@ export function uiIntroPoint(context, reveal) { } - function selectPoint() { + function reselectPoint() { if (!pointId) return chapter.restart(); var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); @@ -198,7 +217,32 @@ export function uiIntroPoint(context, reveal) { function updatePoint() { - if (context.mode().id !== 'select') return continueTo(selectPoint); + context.on('exit.intro', function() { + continueTo(reselectPoint); + }); + + context.history().on('change.intro', function() { + continueTo(closeEditor2); + }); + + timeout(function() { + reveal('.entity-editor-pane', t('intro.points.update'), + { tooltipClass: 'intro-points-describe' } + ); + }, 400); + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function closeEditor2() { + if (context.mode().id !== 'select') { + return continueTo(reselectPoint); + } context.on('exit.intro', function() { continueTo(rightClickPoint); @@ -206,7 +250,7 @@ export function uiIntroPoint(context, reveal) { timeout(function() { reveal('.entity-editor-pane', - t('intro.points.fixname', { button: icon('#icon-apply', 'pre-text') }) + t('intro.points.close2', { button: icon('#icon-apply', 'pre-text') }) ); }, 500); @@ -282,7 +326,7 @@ export function uiIntroPoint(context, reveal) { context.history().on('change.intro', function(changed) { if (changed.deleted().length) - continueTo(play); + continueTo(undo); }); function continueTo(nextStep) { @@ -293,6 +337,23 @@ export function uiIntroPoint(context, reveal) { } + function undo() { + context.history().on('change.intro', function() { + continueTo(play); + }); + + var iconName = '#icon-' + (textDirection === 'rtl' ? 'redo' : 'undo'); + reveal('#bar button.undo-button', + t('intro.points.undo', { button: icon(iconName, 'pre-text') }) + ); + + function continueTo(nextStep) { + context.history().on('change.intro', null); + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-area', diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index 26c65157b..dd516569a 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -16,6 +16,13 @@ export function uiIntroWelcome(context, reveal) { context.map().centerZoom([-85.63591, 41.94285], 19); reveal('.intro-nav-wrap', t('intro.welcome.welcome'), + { buttonText: t('intro.ok'), buttonCallback: practice } + ); + } + + function practice() { + reveal('.intro-nav-wrap', + t('intro.welcome.practice'), { buttonText: t('intro.ok'), buttonCallback: chapters } ); } diff --git a/modules/ui/undo_redo.js b/modules/ui/undo_redo.js index 54ee8742c..1d3593f7b 100644 --- a/modules/ui/undo_redo.js +++ b/modules/ui/undo_redo.js @@ -40,7 +40,7 @@ export function uiUndoRedo(context) { .data(commands) .enter() .append('button') - .attr('class', 'col6 disabled') + .attr('class', function(d) { return 'col6 disabled ' + d.id + '-button'; }) .on('click', function(d) { return d.action(); }) .call(tooltipBehavior); From 5f627c858e4adceb8ceba930a650cc94003c363f Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 1 Apr 2017 21:43:40 -0400 Subject: [PATCH 37/91] Localize a few more walkthrough names, start buildings chapter --- data/core.yaml | 71 +++++++++++------ dist/locales/en.json | 4 + modules/ui/intro/building.js | 148 +++++++++++++++++++++++++++++++++++ modules/ui/intro/helper.js | 63 ++++++++------- modules/ui/intro/intro.js | 3 + modules/ui/intro/line.js | 4 +- 6 files changed, 238 insertions(+), 55 deletions(-) create mode 100644 modules/ui/intro/building.js diff --git a/data/core.yaml b/data/core.yaml index ffdd5deba..3c23227b3 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -780,34 +780,38 @@ en: done: done ok: OK graph: + azaleamum_drive: Azaleamum Drive city_hall: Three Rivers City Hall - fire_department: Three Rivers Fire Department - memory_isle_park: Memory Isle Park - riverwalk_trail: Riverwalk Trail - w_michigan_ave: West Michigan Avenue - e_michigan_ave: East Michigan Avenue - spring_st: Spring Street - scidmore_park: Scidmore Park - petting_zoo: Scidmore Park Petting Zoo - n_andrews_st: North Andrews Street - s_andrews_st: South Andrews Street - n_constantine_st: North Constantine Street - s_constantine_st: South Constantine Street - rocky_river: Rocky River - railroad_dr: Railroad Drive conrail_rr: Conrail Railroad - st_joseph_river: Saint Joseph River - n_main_st: North Main Street - s_main_st: South Main Street - water_st: Water Street - foster_st: Foster Street - portage_river: Portage River - flower_st: Flower Street - elm_st: Elm Street - walnut_st: Walnut Street - morris_ave: Morris Avenue + e_michigan_ave: East Michigan Avenue east_st: East Street + elm_st: Elm Street + fire_department: Three Rivers Fire Department + first_baptist_church: First Baptist Church + flower_st: Flower Street + foster_st: Foster Street + memory_isle_park: Memory Isle Park + millard_st: Millard Street + morris_ave: Morris Avenue + n_andrews_st: North Andrews Street + n_constantine_st: North Constantine Street + n_main_st: North Main Street + petting_zoo: Scidmore Park Petting Zoo portage_ave: Portage Avenue + portage_river: Portage River + railroad_dr: Railroad Drive + riverwalk_trail: Riverwalk Trail + rocky_river: Rocky River + s_andrews_st: South Andrews Street + s_constantine_st: South Constantine Street + s_main_st: South Main Street + scidmore_park: Scidmore Park + south_st: South Street + spring_st: Spring Street + st_joseph_river: Saint Joseph River + w_michigan_ave: West Michigan Avenue + walnut_st: Walnut Street + water_st: Water Street welcome: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." @@ -862,6 +866,25 @@ en: restart: "The road needs to intersect {name}. Let's try again!" wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + buildings: + title: "Buildings" + add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" + start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" + continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**" + choose_building: "**Select Building from the list**" + choose_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**" + close: "**Hit escape, return, or click the {button} button to close the feature editor**" + rightclick: "**Right-click to select the building you created.**" + square: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" + done_square: "See how the corners of the building moved into place? Let's learn another useful trick." + add_tank: "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**" + start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" + continue_tank: "Add a few more points around the edge. After you've added at least three points, finish the area by clicking on the starting node. **Continue tracing the tank.**" + search_tank: "**Search for '{name}'**" + choose_tank: "**Choose {name} from the list.**" + rightclick: "**Right-click to select the storage tank you created.**" + circle: "**Click on the {button} button to make the tank a circle.**" + play: "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" help: "You can replay this walkthrough or view more documentation by clicking the {button} Help button." diff --git a/dist/locales/en.json b/dist/locales/en.json index 7fe5146b3..bff3ceebb 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -725,6 +725,10 @@ "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, + "buildings": { + "title": "Buildings", + "play": "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" + }, "startediting": { "title": "Start Editing", "help": "You can replay this walkthrough or view more documentation by clicking the {button} Help button.", diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js new file mode 100644 index 000000000..d0f2b22c1 --- /dev/null +++ b/modules/ui/intro/building.js @@ -0,0 +1,148 @@ +import * as d3 from 'd3'; +import { t } from '../../util/locale'; +import { utilRebind } from '../../util/rebind'; +import { icon, pad } from './helper'; + + +export function uiIntroBuilding(context, reveal) { + var dispatch = d3.dispatch('done'), + house = [-85.62815, 41.95638], + tank = [-85.62732, 41.95347], + timeouts = []; + + + var chapter = { + title: 'intro.buildings.title' + }; + + + function timeout(f, t) { + timeouts.push(window.setTimeout(f, t)); + } + + + function eventCancel() { + d3.event.stopPropagation(); + d3.event.preventDefault(); + } + + + function addBuilding() { + var tooltip = reveal('button.add-area', + t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); + + // tooltip.selectAll('.tooltip-inner') + // .insert('svg', 'span') + // .attr('class', 'tooltip-illustration') + // .append('use') + // .attr('xlink:href', '#landuse-images'); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startBuilding); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } + } + + + function startBuilding() { + if (context.mode().id !== 'add-area') { + return chapter.restart(); + } + + var padding = 120 * Math.pow(2, context.map().zoom() - 19); + var box = pad(house, padding, context); + reveal(box, t('intro.buildings.start_building')); + + context.map().on('move.intro drawn.intro', function() { + padding = 120 * Math.pow(2, context.map().zoom() - 19); + box = pad(house, padding, context); + reveal(box, t('intro.buildings.start_building'), { duration: 0 }); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-area') return chapter.restart(); + continueTo(drawBuilding); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function drawBuilding() { + if (context.mode().id !== 'draw-area') { + return chapter.restart(); + } + + var padding = 150 * Math.pow(2, context.map().zoom() - 19); + var box = pad(house, padding, context); + reveal(box, t('intro.buildings.continue_building')); + + context.map().on('move.intro drawn.intro', function() { + padding = 150 * Math.pow(2, context.map().zoom() - 19); + box = pad(house, padding, context); + reveal(box, t('intro.buildings.continue_building'), {duration: 0}); + }); + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-area') + return; + else if (mode.id === 'select') + return continueTo(play); + else + return chapter.restart(); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function play() { + dispatch.call('done'); + reveal('.intro-nav-wrap .chapter-startEditing', + t('intro.buildings.play', { next: t('intro.startediting.title') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { reveal('#id-container'); } + } + ); + } + + + chapter.enter = function() { + context.history().reset('initial'); + context.map().zoom(19).centerEase(house); + addBuilding(); + }; + + + chapter.exit = function() { + timeouts.forEach(window.clearTimeout); + context.on('enter.intro', null); + context.on('exit.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); + d3.select('.more-fields .combobox-input').on('click.intro', null); + }; + + + chapter.restart = function() { + chapter.exit(); + chapter.enter(); + }; + + + return utilRebind(chapter, dispatch, 'on'); +} diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 3e7c1fd4f..8a7496fa7 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -39,46 +39,51 @@ export function icon(name, svgklass) { export var localNames = { + w17967809: 'azaleamum_drive', n2140018997: 'city_hall', + w17965998: 'conrail_rr', + w134150845: 'conrail_rr', + w134150802: 'e_michigan_ave', + w134150836: 'e_michigan_ave', + w41074896: 'e_michigan_ave', + w17967444: 'east_st', + w17965502: 'elm_st', n367813436: 'fire_department', + n354031352: 'first_baptist_church', + w17965351: 'flower_st', + w17964996: 'foster_st', w203988286: 'memory_isle_park', + w17966942: 'millard_st', + w17964793: 'morris_ave', + w17967397: 'n_andrews_st', + w17967326: 'n_constantine_st', + w143497377: 'n_main_st', + w203049587: 'petting_zoo', + w17966984: 'portage_ave', + w170848330: 'portage_river', + w17967752: 'railroad_dr', w203972937: 'riverwalk_trail', w203972938: 'riverwalk_trail', w203972940: 'riverwalk_trail', + w170848823: 'rocky_river', + w170848824: 'rocky_river', + w170848331: 'rocky_river', + w17967315: 's_andrews_st', + w17966400: 's_constantine_st', + w17964497: 's_constantine_st', + w134150801: 's_main_st', + w134150830: 's_main_st', + w17966462: 's_main_st', + w203986457: 'scidmore_park', + w17966102: 'south_st', + w17965834: 'spring_st', + w170989131: 'st_joseph_river', w41785752: 'w_michigan_ave', w134150789: 'w_michigan_ave', w134150795: 'w_michigan_ave', w134150800: 'w_michigan_ave', w134150811: 'w_michigan_ave', - w134150802: 'e_michigan_ave', - w134150836: 'e_michigan_ave', - w41074896: 'e_michigan_ave', - w17965834: 'spring_st', - w203986457: 'scidmore_park', - w203049587: 'petting_zoo', - w17967397: 'n_andrews_st', - w17967315: 's_andrews_st', - w17967326: 'n_constantine_st', - w17966400: 's_constantine_st', - w170848823: 'rocky_river', - w170848824: 'rocky_river', - w170848331: 'rocky_river', - w17967752: 'railroad_dr', - w17965998: 'conrail_rr', - w134150845: 'conrail_rr', - w170989131: 'st_joseph_river', - w143497377: 'n_main_st', - w134150801: 's_main_st', - w134150830: 's_main_st', - w17966462: 's_main_st', - w17967734: 'water_st', - w17964996: 'foster_st', - w170848330: 'portage_river', - w17965351: 'flower_st', - w17965502: 'elm_st', w17965402: 'walnut_st', - w17964793: 'morris_ave', - w17967444: 'east_st', - w17966984: 'portage_ave' + w17967734: 'water_st' }; diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 85b31c9c2..353a247ed 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -14,6 +14,7 @@ import { uiIntroNavigation } from './navigation'; import { uiIntroPoint } from './point'; import { uiIntroArea } from './area'; import { uiIntroLine } from './line'; +import { uiIntroBuilding } from './building'; import { uiIntroStartEditing } from './start_editing'; @@ -23,6 +24,7 @@ var chapterUi = { point: uiIntroPoint, area: uiIntroArea, line: uiIntroLine, + building: uiIntroBuilding, startEditing: uiIntroStartEditing }; @@ -32,6 +34,7 @@ var chapterFlow = [ 'point', 'area', 'line', + 'building', 'startEditing' ]; diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 7509f3e3d..6d633849b 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -285,8 +285,8 @@ export function uiIntroLine(context, reveal) { function play() { dispatch.call('done'); - reveal('.intro-nav-wrap .chapter-startEditing', - t('intro.lines.play', { next: t('intro.startediting.title') }), { + reveal('.intro-nav-wrap .chapter-buildings', + t('intro.lines.play', { next: t('intro.buildings.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { reveal('#id-container'); } } From b923a6d8e01d91492e4e2a46596a02ca7df74000 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 2 Apr 2017 20:12:30 -0400 Subject: [PATCH 38/91] Add timeout so Name Road step will reveal properly (re: https://github.com/openstreetmap/iD/pull/3921#issuecomment-290959115) --- data/core.yaml | 10 +++--- dist/locales/en.json | 72 +++++++++++++++++++++++++--------------- modules/ui/intro/line.js | 10 +++--- 3 files changed, 57 insertions(+), 35 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 3c23227b3..25d26df37 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -862,7 +862,7 @@ en: finish: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" road: "**Select Road from the list**" residential: "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**" - describe: "**Name the road, then click the {button} button to close the feature editor.**" + describe: "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**" restart: "The road needs to intersect {name}. Let's try again!" wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" @@ -874,16 +874,16 @@ en: choose_building: "**Select Building from the list**" choose_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**" close: "**Hit escape, return, or click the {button} button to close the feature editor**" - rightclick: "**Right-click to select the building you created.**" - square: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" + rightclick_building: "**Right-click to select the building you created.**" + square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" continue_tank: "Add a few more points around the edge. After you've added at least three points, finish the area by clicking on the starting node. **Continue tracing the tank.**" search_tank: "**Search for '{name}'**" choose_tank: "**Choose {name} from the list.**" - rightclick: "**Right-click to select the storage tank you created.**" - circle: "**Click on the {button} button to make the tank a circle.**" + rightclick_tank: "**Right-click to select the storage tank you created.**" + circle_tank: "**Click on the {button} button to make the tank a circle.**" play: "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" diff --git a/dist/locales/en.json b/dist/locales/en.json index bff3ceebb..73867ca91 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -637,34 +637,38 @@ "done": "done", "ok": "OK", "graph": { + "azaleamum_drive": "Azaleamum Drive", "city_hall": "Three Rivers City Hall", - "fire_department": "Three Rivers Fire Department", - "memory_isle_park": "Memory Isle Park", - "riverwalk_trail": "Riverwalk Trail", - "w_michigan_ave": "West Michigan Avenue", - "e_michigan_ave": "East Michigan Avenue", - "spring_st": "Spring Street", - "scidmore_park": "Scidmore Park", - "petting_zoo": "Scidmore Park Petting Zoo", - "n_andrews_st": "North Andrews Street", - "s_andrews_st": "South Andrews Street", - "n_constantine_st": "North Constantine Street", - "s_constantine_st": "South Constantine Street", - "rocky_river": "Rocky River", - "railroad_dr": "Railroad Drive", "conrail_rr": "Conrail Railroad", - "st_joseph_river": "Saint Joseph River", - "n_main_st": "North Main Street", - "s_main_st": "South Main Street", - "water_st": "Water Street", - "foster_st": "Foster Street", - "portage_river": "Portage River", - "flower_st": "Flower Street", - "elm_st": "Elm Street", - "walnut_st": "Walnut Street", - "morris_ave": "Morris Avenue", + "e_michigan_ave": "East Michigan Avenue", "east_st": "East Street", - "portage_ave": "Portage Avenue" + "elm_st": "Elm Street", + "fire_department": "Three Rivers Fire Department", + "first_baptist_church": "First Baptist Church", + "flower_st": "Flower Street", + "foster_st": "Foster Street", + "memory_isle_park": "Memory Isle Park", + "millard_st": "Millard Street", + "morris_ave": "Morris Avenue", + "n_andrews_st": "North Andrews Street", + "n_constantine_st": "North Constantine Street", + "n_main_st": "North Main Street", + "petting_zoo": "Scidmore Park Petting Zoo", + "portage_ave": "Portage Avenue", + "portage_river": "Portage River", + "railroad_dr": "Railroad Drive", + "riverwalk_trail": "Riverwalk Trail", + "rocky_river": "Rocky River", + "s_andrews_st": "South Andrews Street", + "s_constantine_st": "South Constantine Street", + "s_main_st": "South Main Street", + "scidmore_park": "Scidmore Park", + "south_st": "South Street", + "spring_st": "Spring Street", + "st_joseph_river": "Saint Joseph River", + "w_michigan_ave": "West Michigan Avenue", + "walnut_st": "Walnut Street", + "water_st": "Water Street" }, "welcome": { "title": "Welcome", @@ -720,13 +724,29 @@ "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", "road": "**Select Road from the list**", "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", - "describe": "**Name the road, then click the {button} button to close the feature editor.**", + "describe": "**Name the road, then hit escape or click the {button} button to close the feature editor.**", "restart": "The road needs to intersect {name}. Let's try again!", "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "buildings": { "title": "Buildings", + "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", + "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", + "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**", + "choose_building": "**Select Building from the list**", + "choose_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**", + "close": "**Hit escape, return, or click the {button} button to close the feature editor**", + "rightclick_building": "**Right-click to select the building you created.**", + "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", + "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", + "add_tank": "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**", + "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", + "continue_tank": "Add a few more points around the edge. After you've added at least three points, finish the area by clicking on the starting node. **Continue tracing the tank.**", + "search_tank": "**Search for '{name}'**", + "choose_tank": "**Choose {name} from the list.**", + "rightclick_tank": "**Right-click to select the storage tank you created.**", + "circle_tank": "**Click on the {button} button to make the tank a circle.**", "play": "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" }, "startediting": { diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 6d633849b..cdf9546b6 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -272,9 +272,11 @@ export function uiIntroLine(context, reveal) { continueTo(play); }); - reveal('.entity-editor-pane', - t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') }) - ); + timeout(function() { + reveal('.entity-editor-pane', + t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') }) + ); + }, 500); function continueTo(nextStep) { context.on('exit.intro', null); @@ -285,7 +287,7 @@ export function uiIntroLine(context, reveal) { function play() { dispatch.call('done'); - reveal('.intro-nav-wrap .chapter-buildings', + reveal('.intro-nav-wrap .chapter-building', t('intro.lines.play', { next: t('intro.buildings.title') }), { buttonText: t('intro.ok'), buttonCallback: function() { reveal('#id-container'); } From 0af9df708f2d26a68b92069dbf7c93fe779ce9e2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 2 Apr 2017 23:05:02 -0400 Subject: [PATCH 39/91] Add house tracing steps to building chapter --- data/core.yaml | 2 +- dist/locales/en.json | 4 +- modules/ui/intro/building.js | 112 +++++++++++++++++++++++++++++------ 3 files changed, 98 insertions(+), 20 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 25d26df37..f39794d79 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -873,7 +873,7 @@ en: continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**" choose_building: "**Select Building from the list**" choose_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**" - close: "**Hit escape, return, or click the {button} button to close the feature editor**" + close: "**Hit escape, or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" done_square: "See how the corners of the building moved into place? Let's learn another useful trick." diff --git a/dist/locales/en.json b/dist/locales/en.json index 73867ca91..7903d6a0d 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -724,7 +724,7 @@ "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", "road": "**Select Road from the list**", "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", - "describe": "**Name the road, then hit escape or click the {button} button to close the feature editor.**", + "describe": "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**", "restart": "The road needs to intersect {name}. Let's try again!", "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" @@ -736,7 +736,7 @@ "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**", "choose_building": "**Select Building from the list**", "choose_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**", - "close": "**Hit escape, return, or click the {button} button to close the feature editor**", + "close": "**Hit escape, or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index d0f2b22c1..56aaa137e 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -54,20 +54,25 @@ export function uiIntroBuilding(context, reveal) { return chapter.restart(); } - var padding = 120 * Math.pow(2, context.map().zoom() - 19); - var box = pad(house, padding, context); - reveal(box, t('intro.buildings.start_building')); + context.map().zoomEase(20, 500); - context.map().on('move.intro drawn.intro', function() { - padding = 120 * Math.pow(2, context.map().zoom() - 19); - box = pad(house, padding, context); - reveal(box, t('intro.buildings.start_building'), { duration: 0 }); - }); + timeout(function() { + var padding = 160 * Math.pow(2, context.map().zoom() - 20); + var box = pad(house, padding, context); + reveal(box, t('intro.buildings.start_building')); - context.on('enter.intro', function(mode) { - if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(drawBuilding); - }); + context.map().on('move.intro drawn.intro', function() { + padding = 160 * Math.pow(2, context.map().zoom() - 20); + box = pad(house, padding, context); + reveal(box, t('intro.buildings.start_building'), { duration: 0 }); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-area') return chapter.restart(); + continueTo(drawBuilding); + }); + + }, 520); // after easing function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -82,12 +87,12 @@ export function uiIntroBuilding(context, reveal) { return chapter.restart(); } - var padding = 150 * Math.pow(2, context.map().zoom() - 19); + var padding = 160 * Math.pow(2, context.map().zoom() - 20); var box = pad(house, padding, context); reveal(box, t('intro.buildings.continue_building')); context.map().on('move.intro drawn.intro', function() { - padding = 150 * Math.pow(2, context.map().zoom() - 19); + padding = 160 * Math.pow(2, context.map().zoom() - 20); box = pad(house, padding, context); reveal(box, t('intro.buildings.continue_building'), {duration: 0}); }); @@ -96,7 +101,7 @@ export function uiIntroBuilding(context, reveal) { if (mode.id === 'draw-area') return; else if (mode.id === 'select') - return continueTo(play); + return continueTo(chooseBuildingCategory); else return chapter.restart(); }); @@ -109,6 +114,79 @@ export function uiIntroBuilding(context, reveal) { } + function chooseBuildingCategory() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + var button = d3.select('.preset-category-building .preset-list-button'); + if (button.empty()) return chapter.restart(); + + timeout(function() { + reveal(button.node(), t('intro.buildings.choose_building')); + button.on('click.intro', function() { continueTo(chooseHouse); }); + }, 500); + + function continueTo(nextStep) { + d3.select('.preset-list-button').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } + } + + + function chooseHouse() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + return chapter.restart(); + }); + + var button = d3.select('.preset-building-house .preset-list-button'); + if (button.empty()) return chapter.restart(); + + + timeout(function() { + reveal(button.node(), t('intro.buildings.choose_house')); + button.on('click.intro', function() { continueTo(closeEditor); }); + }, 500); + + function continueTo(nextStep) { + d3.select('.preset-list-button').on('click.intro', null); + context.on('exit.intro', null); + nextStep(); + } + } + + + function closeEditor() { + if (context.mode().id !== 'select') { + return chapter.restart(); + } + + context.on('exit.intro', function() { + continueTo(play); + }); + + timeout(function() { + reveal('.entity-editor-pane', + t('intro.buildings.close', { button: icon('#icon-apply', 'pre-text') }) + ); + }, 500); + + function continueTo(nextStep) { + context.on('exit.intro', null); + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-startEditing', @@ -122,8 +200,8 @@ export function uiIntroBuilding(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - context.map().zoom(19).centerEase(house); - addBuilding(); + context.map().zoom(19).centerEase(house, 500); + timeout(addBuilding, 520); }; From bb7b60cd2358f0c3d8a4b2f9326398f11b98c6ef Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 3 Apr 2017 16:33:40 -0400 Subject: [PATCH 40/91] Add square buildings steps to building chapter --- data/core.yaml | 2 + dist/locales/en.json | 2 + modules/ui/intro/building.js | 165 +++++++++++++++++++++++++++++++---- 3 files changed, 151 insertions(+), 18 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index f39794d79..0a8a6ef40 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -876,6 +876,7 @@ en: close: "**Hit escape, or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" + retry_square: "You didn't click the Square button. Try again." done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" @@ -884,6 +885,7 @@ en: choose_tank: "**Choose {name} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created.**" circle_tank: "**Click on the {button} button to make the tank a circle.**" + retry_circle: "You didn't click the Circularize button. Try again." play: "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" diff --git a/dist/locales/en.json b/dist/locales/en.json index 7903d6a0d..2bf9c59b4 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -739,6 +739,7 @@ "close": "**Hit escape, or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", + "retry_square": "You didn't click the Square button. Try again.", "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", "add_tank": "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", @@ -747,6 +748,7 @@ "choose_tank": "**Choose {name} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created.**", "circle_tank": "**Click on the {button} button to make the tank a circle.**", + "retry_circle": "You didn't click the Circularize button. Try again.", "play": "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" }, "startediting": { diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 56aaa137e..d98a6b8ff 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -1,5 +1,6 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; +import { modeBrowse } from '../../modes/browse'; import { utilRebind } from '../../util/rebind'; import { icon, pad } from './helper'; @@ -8,7 +9,9 @@ export function uiIntroBuilding(context, reveal) { var dispatch = d3.dispatch('done'), house = [-85.62815, 41.95638], tank = [-85.62732, 41.95347], - timeouts = []; + timeouts = [], + houseId = null, + tankId = null; var chapter = { @@ -27,6 +30,13 @@ export function uiIntroBuilding(context, reveal) { } + function revealBuilding(center, text, options) { + var padding = 160 * Math.pow(2, context.map().zoom() - 20); + var box = pad(center, padding, context); + reveal(box, text, options); + } + + function addBuilding() { var tooltip = reveal('button.add-area', t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); @@ -57,14 +67,10 @@ export function uiIntroBuilding(context, reveal) { context.map().zoomEase(20, 500); timeout(function() { - var padding = 160 * Math.pow(2, context.map().zoom() - 20); - var box = pad(house, padding, context); - reveal(box, t('intro.buildings.start_building')); + revealBuilding(house, t('intro.buildings.start_building')); context.map().on('move.intro drawn.intro', function() { - padding = 160 * Math.pow(2, context.map().zoom() - 20); - box = pad(house, padding, context); - reveal(box, t('intro.buildings.start_building'), { duration: 0 }); + revealBuilding(house, t('intro.buildings.start_building'), { duration: 0 }); }); context.on('enter.intro', function(mode) { @@ -72,7 +78,7 @@ export function uiIntroBuilding(context, reveal) { continueTo(drawBuilding); }); - }, 520); // after easing + }, 550); // after easing function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -87,14 +93,10 @@ export function uiIntroBuilding(context, reveal) { return chapter.restart(); } - var padding = 160 * Math.pow(2, context.map().zoom() - 20); - var box = pad(house, padding, context); - reveal(box, t('intro.buildings.continue_building')); + revealBuilding(house, t('intro.buildings.continue_building')); context.map().on('move.intro drawn.intro', function() { - padding = 160 * Math.pow(2, context.map().zoom() - 20); - box = pad(house, padding, context); - reveal(box, t('intro.buildings.continue_building'), {duration: 0}); + revealBuilding(house, t('intro.buildings.continue_building'), { duration: 0 }); }); context.on('enter.intro', function(mode) { @@ -151,10 +153,9 @@ export function uiIntroBuilding(context, reveal) { var button = d3.select('.preset-building-house .preset-list-button'); if (button.empty()) return chapter.restart(); - timeout(function() { reveal(button.node(), t('intro.buildings.choose_house')); - button.on('click.intro', function() { continueTo(closeEditor); }); + button.on('click.intro', function() { continueTo(closeEditorHouse); }); }, 500); function continueTo(nextStep) { @@ -165,13 +166,16 @@ export function uiIntroBuilding(context, reveal) { } - function closeEditor() { + function closeEditorHouse() { if (context.mode().id !== 'select') { return chapter.restart(); } + houseId = context.mode().selectedIDs()[0]; + context.history().checkpoint('hasHouse'); + context.on('exit.intro', function() { - continueTo(play); + continueTo(rightClickHouse); }); timeout(function() { @@ -187,6 +191,129 @@ export function uiIntroBuilding(context, reveal) { } + function rightClickHouse() { + if (!houseId) return chapter.restart(); + + context.enter(modeBrowse(context)); + context.history().reset('hasHouse'); + context.map().centerEase(house, 500); + + timeout(function() { + if (context.map().zoom() < 20) { + context.map().zoomEase(20, 500); + } + }, 520); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== houseId) return; + + timeout(function() { + var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + if (!node) return; + continueTo(clickSquare); + }, 300); // after menu visible + }); + + context.map().on('move.intro drawn.intro', function() { + revealBuilding(house, t('intro.buildings.rightclick_building'), { duration: 0 }); + }); + + context.history().on('change.intro', function() { + continueTo(rightClickHouse); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function clickSquare() { + if (!houseId) return chapter.restart(); + var entity = context.hasEntity(houseId); + if (!entity) return continueTo(rightClickHouse); + + var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + if (!node) { return continueTo(rightClickHouse); } + + var wasChanged = false; + + revealBuilding(house, + t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }) + ); + + context.on('enter.intro', function(mode) { + if (mode.id === 'browse') { + continueTo(rightClickHouse); + } else if (mode.id === 'move' || mode.id === 'rotate') { + continueTo(retryClickSquare); + } + }); + + context.map().on('move.intro drawn.intro', function() { + var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + if (!wasChanged && !node) { return continueTo(rightClickHouse); } + + revealBuilding(house, + t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }), + { duration: 0 } + ); + }); + + context.history().on('change.intro', function() { + wasChanged = true; + context.history().on('change.intro', null); + + // Something changed. Wait for transition to complete and check undo annotation. + timeout(function() { + if (context.history().undoAnnotation() === t('operations.orthogonalize.annotation.area')) { + continueTo(doneSquare); + } else { + continueTo(retryClickSquare); + } + }, 500); // after transitioned actions + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function retryClickSquare() { + context.enter(modeBrowse(context)); + + revealBuilding(house, t('intro.buildings.retry_square'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(rightClickHouse); } + }); + + function continueTo(nextStep) { + nextStep(); + } + } + + + function doneSquare() { + revealBuilding(house, t('intro.buildings.done_square'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(play); } + }); + + function continueTo(nextStep) { + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-startEditing', @@ -199,6 +326,8 @@ export function uiIntroBuilding(context, reveal) { chapter.enter = function() { + houseId = null; + tankId = null; context.history().reset('initial'); context.map().zoom(19).centerEase(house, 500); timeout(addBuilding, 520); From d173e06cf20ab7a25c62c65aba799b3789aaf3e4 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 3 Apr 2017 17:52:07 -0400 Subject: [PATCH 41/91] Add circle buildings steps to building chapter too (closes #3085) --- modules/ui/intro/building.js | 320 ++++++++++++++++++++++++++++++++--- 1 file changed, 299 insertions(+), 21 deletions(-) diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index d98a6b8ff..1a669fc11 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -30,14 +30,20 @@ export function uiIntroBuilding(context, reveal) { } - function revealBuilding(center, text, options) { + function revealHouse(center, text, options) { var padding = 160 * Math.pow(2, context.map().zoom() - 20); var box = pad(center, padding, context); reveal(box, text, options); } + function revealTank(center, text, options) { + var padding = 190 * Math.pow(2, context.map().zoom() - 19.5); + var box = pad(center, padding, context); + reveal(box, text, options); + } - function addBuilding() { + + function addHouse() { var tooltip = reveal('button.add-area', t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); @@ -47,9 +53,12 @@ export function uiIntroBuilding(context, reveal) { // .append('use') // .attr('xlink:href', '#landuse-images'); + houseId = null; + context.history().reset('initial'); + context.on('enter.intro', function(mode) { if (mode.id !== 'add-area') return; - continueTo(startBuilding); + continueTo(startHouse); }); function continueTo(nextStep) { @@ -59,23 +68,24 @@ export function uiIntroBuilding(context, reveal) { } - function startBuilding() { + function startHouse() { if (context.mode().id !== 'add-area') { return chapter.restart(); } + houseId = null; context.map().zoomEase(20, 500); timeout(function() { - revealBuilding(house, t('intro.buildings.start_building')); + revealHouse(house, t('intro.buildings.start_building')); context.map().on('move.intro drawn.intro', function() { - revealBuilding(house, t('intro.buildings.start_building'), { duration: 0 }); + revealHouse(house, t('intro.buildings.start_building'), { duration: 0 }); }); context.on('enter.intro', function(mode) { if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(drawBuilding); + continueTo(drawHouse); }); }, 550); // after easing @@ -88,22 +98,23 @@ export function uiIntroBuilding(context, reveal) { } - function drawBuilding() { + function drawHouse() { if (context.mode().id !== 'draw-area') { return chapter.restart(); } - revealBuilding(house, t('intro.buildings.continue_building')); + houseId = null; + revealHouse(house, t('intro.buildings.continue_building')); context.map().on('move.intro drawn.intro', function() { - revealBuilding(house, t('intro.buildings.continue_building'), { duration: 0 }); + revealHouse(house, t('intro.buildings.continue_building'), { duration: 0 }); }); context.on('enter.intro', function(mode) { if (mode.id === 'draw-area') return; else if (mode.id === 'select') - return continueTo(chooseBuildingCategory); + return continueTo(chooseCategoryBuilding); else return chapter.restart(); }); @@ -116,7 +127,7 @@ export function uiIntroBuilding(context, reveal) { } - function chooseBuildingCategory() { + function chooseCategoryBuilding() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -130,7 +141,7 @@ export function uiIntroBuilding(context, reveal) { timeout(function() { reveal(button.node(), t('intro.buildings.choose_building')); - button.on('click.intro', function() { continueTo(chooseHouse); }); + button.on('click.intro', function() { continueTo(choosePresetHouse); }); }, 500); function continueTo(nextStep) { @@ -141,7 +152,7 @@ export function uiIntroBuilding(context, reveal) { } - function chooseHouse() { + function choosePresetHouse() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -217,7 +228,7 @@ export function uiIntroBuilding(context, reveal) { }); context.map().on('move.intro drawn.intro', function() { - revealBuilding(house, t('intro.buildings.rightclick_building'), { duration: 0 }); + revealHouse(house, t('intro.buildings.rightclick_building'), { duration: 0 }); }); context.history().on('change.intro', function() { @@ -243,7 +254,7 @@ export function uiIntroBuilding(context, reveal) { var wasChanged = false; - revealBuilding(house, + revealHouse(house, t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }) ); @@ -259,7 +270,7 @@ export function uiIntroBuilding(context, reveal) { var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); if (!wasChanged && !node) { return continueTo(rightClickHouse); } - revealBuilding(house, + revealHouse(house, t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }), { duration: 0 } ); @@ -291,7 +302,7 @@ export function uiIntroBuilding(context, reveal) { function retryClickSquare() { context.enter(modeBrowse(context)); - revealBuilding(house, t('intro.buildings.retry_square'), { + revealHouse(house, t('intro.buildings.retry_square'), { buttonText: t('intro.ok'), buttonCallback: function() { continueTo(rightClickHouse); } }); @@ -303,9 +314,276 @@ export function uiIntroBuilding(context, reveal) { function doneSquare() { - revealBuilding(house, t('intro.buildings.done_square'), { + context.history().checkpoint('doneSquare'); + + revealHouse(house, t('intro.buildings.done_square'), { buttonText: t('intro.ok'), - buttonCallback: function() { continueTo(play); } + buttonCallback: function() { continueTo(addTank); } + }); + + function continueTo(nextStep) { + nextStep(); + } + } + + + function addTank() { + var tooltip = reveal('button.add-area', + t('intro.buildings.add_tank', { button: icon('#icon-area', 'pre-text') })); + + tankId = null; + context.history().reset('doneSquare'); + context.map().zoom(19.5).centerEase(tank, 500); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startTank); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + nextStep(); + } + } + + + function startTank() { + if (context.mode().id !== 'add-area') { + return continueTo(addTank); + } + + tankId = null; + + timeout(function() { + revealTank(tank, t('intro.buildings.start_tank')); + + context.map().on('move.intro drawn.intro', function() { + revealTank(tank, t('intro.buildings.start_tank'), { duration: 0 }); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-area') return chapter.restart(); + continueTo(drawTank); + }); + + }, 550); // after easing + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function drawTank() { + if (context.mode().id !== 'draw-area') { + return continueTo(addTank); + } + + revealTank(tank, t('intro.buildings.continue_tank')); + + context.map().on('move.intro drawn.intro', function() { + revealTank(tank, t('intro.buildings.continue_tank'), { duration: 0 }); + }); + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-area') + return; + else if (mode.id === 'select') + return continueTo(searchPreset); + else + return continueTo(addTank); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function searchPreset() { + if (context.mode().id !== 'select') { + return continueTo(addTank); + } + + context.on('exit.intro', function() { + return continueTo(addTank); + }); + + d3.select('.preset-search-input') + .on('keyup.intro', checkPresetSearch); + + timeout(function() { + reveal('.preset-search-input', + t('intro.buildings.search_tank', { name: context.presets().item('man_made/storage_tank').name() }) + ); + }, 500); + + function continueTo(nextStep) { + context.on('exit.intro', null); + d3.select('.preset-search-input').on('keyup.intro', null); + nextStep(); + } + } + + + function checkPresetSearch() { + var first = d3.select('.preset-list-item:first-child'); + + if (first.classed('preset-man_made-storage_tank')) { + reveal(first.select('.preset-list-button').node(), + t('intro.buildings.choose_tank') + ); + + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); + + context.history().on('change.intro', function() { + continueTo(closeEditorTank); + }); + } + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + d3.select('.preset-search-input').on('keydown.intro', null); + nextStep(); + } + } + + + function closeEditorTank() { + if (context.mode().id !== 'select') { + return continueTo(addTank); + } + + tankId = context.mode().selectedIDs()[0]; + context.history().checkpoint('hasTank'); + + context.on('exit.intro', function() { + continueTo(rightClickTank); + }); + + timeout(function() { + reveal('.entity-editor-pane', + t('intro.buildings.close', { button: icon('#icon-apply', 'pre-text') }) + ); + }, 500); + + function continueTo(nextStep) { + context.on('exit.intro', null); + nextStep(); + } + } + + + function rightClickTank() { + if (!tankId) return continueTo(addTank); + + context.enter(modeBrowse(context)); + context.history().reset('hasTank'); + context.map().centerEase(tank, 500); + + timeout(function() { + if (context.map().zoom() < 19.5) { + context.map().zoomEase(19.5, 500); + } + }, 520); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== tankId) return; + + timeout(function() { + var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + if (!node) return; + continueTo(clickCircle); + }, 300); // after menu visible + }); + + context.map().on('move.intro drawn.intro', function() { + revealTank(tank, t('intro.buildings.rightclick_tank'), { duration: 0 }); + }); + + context.history().on('change.intro', function() { + continueTo(rightClickTank); + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function clickCircle() { + if (!tankId) return chapter.restart(); + var entity = context.hasEntity(tankId); + if (!entity) return continueTo(rightClickTank); + + var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + if (!node) { return continueTo(rightClickTank); } + + var wasChanged = false; + + revealTank(tank, + t('intro.buildings.circle_tank', { button: icon('#operation-circularize', 'pre-text') }) + ); + + context.on('enter.intro', function(mode) { + if (mode.id === 'browse') { + continueTo(rightClickTank); + } else if (mode.id === 'move' || mode.id === 'rotate') { + continueTo(retryClickCircle); + } + }); + + context.map().on('move.intro drawn.intro', function() { + var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + if (!wasChanged && !node) { return continueTo(rightClickTank); } + + revealTank(tank, + t('intro.buildings.circle_tank', { button: icon('#operation-circularize', 'pre-text') }), + { duration: 0 } + ); + }); + + context.history().on('change.intro', function() { + wasChanged = true; + context.history().on('change.intro', null); + + // Something changed. Wait for transition to complete and check undo annotation. + timeout(function() { + if (context.history().undoAnnotation() === t('operations.circularize.annotation.area')) { + continueTo(play); + } else { + continueTo(retryClickCircle); + } + }, 500); // after transitioned actions + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function retryClickCircle() { + context.enter(modeBrowse(context)); + + revealTank(tank, t('intro.buildings.retry_circle'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(rightClickTank); } }); function continueTo(nextStep) { @@ -330,7 +608,7 @@ export function uiIntroBuilding(context, reveal) { tankId = null; context.history().reset('initial'); context.map().zoom(19).centerEase(house, 500); - timeout(addBuilding, 520); + timeout(addHouse, 520); }; From 93b9507431c592d09efe58869463620168672989 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 3 Apr 2017 22:13:07 -0400 Subject: [PATCH 42/91] Add a tooltip illustration for buildings --- modules/ui/intro/building.js | 10 +-- svg/iD-sprite.json | 3 +- svg/iD-sprite.src.idraw | Bin 308483 -> 317679 bytes svg/iD-sprite.src.svg | 157 ++++++++++++++++++++++++++--------- 4 files changed, 123 insertions(+), 47 deletions(-) diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 1a669fc11..759f054c8 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -47,11 +47,11 @@ export function uiIntroBuilding(context, reveal) { var tooltip = reveal('button.add-area', t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); - // tooltip.selectAll('.tooltip-inner') - // .insert('svg', 'span') - // .attr('class', 'tooltip-illustration') - // .append('use') - // .attr('xlink:href', '#landuse-images'); + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#building-images'); houseId = null; context.history().reset('initial'); diff --git a/svg/iD-sprite.json b/svg/iD-sprite.json index 69365f349..41699554c 100644 --- a/svg/iD-sprite.json +++ b/svg/iD-sprite.json @@ -401,5 +401,6 @@ "poi-images": { "viewBox": "0 320 200 80" }, "landuse-images": { "viewBox": "0 400 200 80" }, - "feature-images": { "viewBox": "0 480 200 80" } + "feature-images": { "viewBox": "0 480 200 80" }, + "building-images": { "viewBox": "700 480 200 80" } } diff --git a/svg/iD-sprite.src.idraw b/svg/iD-sprite.src.idraw index 617fafa06a89cf20450172182f93c8a982aa24b2..42ef70b4a48baee5b59baf6a2b272b66160fc31d 100644 GIT binary patch delta 207818 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∨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%0D(Y$zroRkHCms8!Py8He?!TG?x%Q45Qe)ya>ae! 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%0D#egbx;yvy5ez{{9 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'; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index edcb0d6ea..d433c0a88 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -1,5 +1,6 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; +import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox, transitionTime } from './helper'; @@ -9,7 +10,10 @@ export function uiIntroNavigation(context, reveal) { timeouts = [], hallId = 'n2061', townHall = [-85.63591, 41.94285], - springStreet = [-85.63585099140167, 41.942506848938926]; + townHallPreset = context.presets().item('amenity/townhall'), + springStreetId = 'w397', + springStreetEndId = 'n1834', + springStreet = [-85.63582, 41.94255]; var chapter = { @@ -88,7 +92,7 @@ export function uiIntroNavigation(context, reveal) { context.map().on('move.intro', function() { if (context.map().zoom() !== zoomStart) { context.map().on('move.intro', null); - timeout(function() { continueTo(clickTownHall); }, 1500); + timeout(function() { continueTo(features); }, 1500); } }); @@ -99,35 +103,69 @@ export function uiIntroNavigation(context, reveal) { } + function features() { + var onClick = function() { continueTo(clickTownHall); }; + + reveal(trimmedMap(), t('intro.navigation.features'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + context.map().on('drawn.intro', function() { + reveal(trimmedMap(), t('intro.navigation.features'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } + ); + }); + + function continueTo(nextStep) { + context.map().on('drawn.intro', null); + nextStep(); + } + } + + function clickTownHall() { + context.enter(modeBrowse(context)); context.history().reset('initial'); - var hall = context.entity(hallId); reveal(null, null, { duration: 0 }); - context.map().zoomEase(19, 250); + context.map().zoomEase(19, 500); timeout(function() { - context.map().centerEase(hall.loc, 250); + var entity = context.hasEntity(hallId); + if (!entity) return; + context.map().centerEase(entity.loc, 500); timeout(function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select')); + var entity = context.hasEntity(hallId); + if (!entity) return; + var box = pointBox(entity.loc, context); + reveal(box, t('intro.navigation.click_townhall')); context.map().on('move.intro drawn.intro', function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select'), { duration: 0 }); + var entity = context.hasEntity(hallId); + if (!entity) return; + var box = pointBox(entity.loc, context); + reveal(box, t('intro.navigation.click_townhall'), { duration: 0 }); }); context.on('enter.intro', function() { if (isTownHallSelected()) continueTo(selectedTownHall); }); - }, 300); // after centerEase - }, 300); // after zoomEase + }, 550); // after centerEase + + }, 550); // after zoomEase + + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } + }); function continueTo(nextStep) { context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); nextStep(); } } @@ -136,56 +174,162 @@ export function uiIntroNavigation(context, reveal) { function selectedTownHall() { if (!isTownHallSelected()) return clickTownHall(); - var hall = context.entity(hallId); - var box = pointBox(hall.loc, context); - var advance = function() { continueTo(inspectTownHall); }; + var entity = context.hasEntity(hallId); + if (!entity) return clickTownHall(); - reveal(box, t('intro.navigation.selected'), - { buttonText: t('intro.ok'), buttonCallback: advance } + var box = pointBox(entity.loc, context); + var onClick = function() { continueTo(editorTownHall); }; + + reveal(box, t('intro.navigation.selected_townhall'), + { buttonText: t('intro.ok'), buttonCallback: onClick } ); context.map().on('move.intro drawn.intro', function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.selected'), - { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + var entity = context.hasEntity(hallId); + if (!entity) return; + var box = pointBox(entity.loc, context); + reveal(box, t('intro.navigation.selected_townhall'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } ); }); + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } + }); + function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); nextStep(); } } - function inspectTownHall() { + function editorTownHall() { if (!isTownHallSelected()) return clickTownHall(); + var onClick = function() { continueTo(presetTownHall); }; + context.on('exit.intro', function() { - continueTo(streetSearch); + continueTo(clickTownHall); + }); + + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } }); reveal('.entity-editor-pane', - t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) + t('intro.navigation.editor_townhall'), + { buttonText: t('intro.ok'), buttonCallback: onClick } ); function continueTo(nextStep) { context.on('exit.intro', null); + context.history().on('change.intro', null); nextStep(); } } - function streetSearch() { + function presetTownHall() { + if (!isTownHallSelected()) return clickTownHall(); + + var onClick = function() { continueTo(fieldsTownHall); }; + + context.on('exit.intro', function() { + continueTo(clickTownHall); + }); + + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } + }); + + reveal('.inspector-body .preset-list-item.inspector-inner', + t('intro.navigation.preset_townhall', { preset: townHallPreset.name() }), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function fieldsTownHall() { + if (!isTownHallSelected()) return clickTownHall(); + + var onClick = function() { continueTo(closeTownHall); }; + + context.on('exit.intro', function() { + continueTo(clickTownHall); + }); + + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } + }); + + reveal('.inspector-body .inspector-preset', + t('intro.navigation.fields_townhall'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function closeTownHall() { + if (!isTownHallSelected()) return clickTownHall(); + + context.on('exit.intro', function() { + continueTo(searchStreet); + }); + + context.history().on('change.intro', function() { + if (!context.hasEntity(hallId)) { + continueTo(clickTownHall); + } + }); + + var selector = '.entity-editor-pane button.preset-close svg use'; + var href = d3.select(selector).attr('href') || '#icon-close'; + + reveal('.entity-editor-pane', + t('intro.navigation.close_townhall', { button: icon(href, 'pre-text') }) + ); + + function continueTo(nextStep) { + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function searchStreet() { + context.enter(modeBrowse(context)); context.history().reset('initial'); // ensure spring street exists - var msec = transitionTime(townHall, context.map().center()); + var msec = transitionTime(springStreet, context.map().center()); if (msec) { reveal(null, null, { duration: 0 }); } - context.map().zoom(19).centerEase(townHall, msec); // ..and user can see it + context.map().zoom(19).centerEase(springStreet, msec); // ..and user can see it timeout(function() { reveal('.search-header input', - t('intro.navigation.search', { name: t('intro.graph.name.spring-street') }) + t('intro.navigation.search_street', { name: t('intro.graph.name.spring-street') }) ); d3.select('.search-header input') @@ -201,7 +345,7 @@ export function uiIntroNavigation(context, reveal) { if (!firstName.empty() && firstName.text() === name) { reveal(first.node(), - t('intro.navigation.choose', { name: name }), + t('intro.navigation.choose_street', { name: name }), { duration: 300 } ); @@ -216,25 +360,75 @@ export function uiIntroNavigation(context, reveal) { function continueTo(nextStep) { context.on('exit.intro', null); + d3.select('.search-header input') + .on('keydown.intro', null) + .on('keyup.intro', null); nextStep(); } } function selectedStreet() { - context.map().centerEase(springStreet); + if (!context.hasEntity(springStreetEndId) || !context.hasEntity(springStreetId)) { + return searchStreet(); + } - timeout(function() { - reveal('.entity-editor-pane', - t('intro.navigation.chosen', { - name: t('intro.graph.name.spring-street'), - button: icon('#icon-close', 'pre-text') - }) + var onClick = function() { continueTo(editorStreet); }; + var entity = context.entity(springStreetEndId); + var box = pointBox(entity.loc, context); + box.height = 500; + + reveal(box, + t('intro.navigation.selected_street', { name: t('intro.graph.name.spring-street') }), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + context.map().on('move.intro drawn.intro', function() { + var entity = context.hasEntity(springStreetEndId); + if (!entity) return; + var box = pointBox(entity.loc, context); + box.height = 500; + reveal(box, + t('intro.navigation.selected_street', { name: t('intro.graph.name.spring-street') }), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } ); - context.on('exit.intro', function() { - continueTo(play); - }); - }, 400); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') { + // keep Spring Street selected.. + context.enter(modeSelect(context, [springStreetId])); + } + }); + + context.history().on('change.intro', function() { + if (!context.hasEntity(springStreetEndId) || !context.hasEntity(springStreetId)) { + timeout(function() { + continueTo(searchStreet); + }, 300); // after any transition (e.g. if user deleted intersection) + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function editorStreet() { + var selector = '.entity-editor-pane button.preset-close svg use'; + var href = d3.select(selector).attr('href') || '#icon-close'; + + reveal('.entity-editor-pane', + t('intro.navigation.editor_street', { button: icon(href, 'pre-text') }) + ); + + context.on('exit.intro', function() { + continueTo(play); + }); function continueTo(nextStep) { context.on('exit.intro', null); From 0920f29c7558bdc066f31f34da5576d8294fa097 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 13 Apr 2017 15:39:14 -0400 Subject: [PATCH 77/91] Slight rewords in the Areas chapter --- data/core.yaml | 4 ++-- dist/locales/en.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 69e8c3ae4..a11897a95 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -932,14 +932,14 @@ en: title: "Areas" add_playground: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" start_playground: "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" - continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**" + continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**" search_playground: "**Search for '{preset}'.**" choose_playground: "**Choose {preset} from the list.**" add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" choose_field: "**Choose {field} from the list.**" retry_add_field: "You didn't select the {field} field. Let's try again." describe_playground: "**Add a description, then click the {button} button to close the feature editor.**" - play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Good job! Try drawing a few more areas and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" add_line: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index a4a2e7606..1021416ff 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -794,14 +794,14 @@ "title": "Areas", "add_playground": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", "start_playground": "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", - "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**", + "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**", "search_playground": "**Search for '{preset}'.**", "choose_playground": "**Choose {preset} from the list.**", "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", "choose_field": "**Choose {field} from the list.**", "retry_add_field": "You didn't select the {field} field. Let's try again.", "describe_playground": "**Add a description, then click the {button} button to close the feature editor.**", - "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Good job! Try drawing a few more areas and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", From 8989aea023f5b796f1803b9a2eeabb1fbdb1c679 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 14 Apr 2017 00:38:04 -0400 Subject: [PATCH 78/91] Clicking a midpoint should be treated as a click on the parent way --- modules/behavior/select.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/behavior/select.js b/modules/behavior/select.js index 24de5487d..c91d45db1 100644 --- a/modules/behavior/select.js +++ b/modules/behavior/select.js @@ -75,9 +75,10 @@ export function behaviorSelect(context) { if (datum && datum.type === 'midpoint') { - // do nothing.. + datum = datum.parents[0]; + } - } else if (!(datum instanceof osmEntity)) { + if (!(datum instanceof osmEntity)) { // clicked nothing.. if (!isMultiselect && mode.id !== 'browse') { context.enter(modeBrowse(context)); From 633edf15b8f30257c1f6e1537e5fc4ac00c2cb20 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 14 Apr 2017 00:53:33 -0400 Subject: [PATCH 79/91] Increase delay before checking if Description field was added --- modules/ui/intro/area.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 496b18240..8d5877210 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -207,7 +207,7 @@ export function uiIntroArea(context, reveal) { continueTo(retryChooseDescription); else continueTo(describePlayground); - }, 100); + }, 300); }); function continueTo(nextStep) { From 0256252caf22096247e3bd4b4c91b1527b2b07ee Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 14 Apr 2017 11:28:52 -0400 Subject: [PATCH 80/91] Ask user to redraw the building if the points really are not very square --- data/core.yaml | 5 ++-- dist/locales/en.json | 5 ++-- modules/ui/intro/building.js | 44 +++++++++++++++++++++++++++----- modules/ui/intro/helper.js | 49 ++++++++++++++++++++++++++++++++++++ 4 files changed, 93 insertions(+), 10 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index a11897a95..27df2a00c 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -973,7 +973,8 @@ en: title: "Buildings" add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" - continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**" + continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**" + retry_building: "It looks like you had some trouble placing the points at the building corners. Try again!" choose_category_building: "**Choose {category} from the list**" choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**" close: "**Hit escape or click the {button} button to close the feature editor**" @@ -983,7 +984,7 @@ en: done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" - continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**" + continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**" search_tank: "**Search for '{preset}'**" choose_tank: "**Choose {preset} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created and show the edit menu.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 1021416ff..ec351cf2f 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -837,7 +837,8 @@ "title": "Buildings", "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", - "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**", + "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**", + "retry_building": "It looks like you had some trouble placing the points at the building corners. Try again!", "choose_category_building": "**Choose {category} from the list**", "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**", "close": "**Hit escape or click the {button} button to close the feature editor**", @@ -847,7 +848,7 @@ "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", "add_tank": "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", - "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**", + "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**", "search_tank": "**Search for '{preset}'**", "choose_tank": "**Choose {preset} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created and show the edit menu.**", diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 39b82ed95..1c13c5daa 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -1,8 +1,9 @@ import * as d3 from 'd3'; +import _ from 'lodash'; import { t } from '../../util/locale'; import { modeBrowse } from '../../modes/browse'; import { utilRebind } from '../../util/rebind'; -import { icon, pad, selectMenuItem, transitionTime } from './helper'; +import { icon, pad, isMostlySquare, selectMenuItem, transitionTime } from './helper'; export function uiIntroBuilding(context, reveal) { @@ -125,12 +126,24 @@ export function uiIntroBuilding(context, reveal) { }); context.on('enter.intro', function(mode) { - if (mode.id === 'draw-area') + if (mode.id === 'draw-area') { return; - else if (mode.id === 'select') - return continueTo(chooseCategoryBuilding); - else + } else if (mode.id === 'select') { + var graph = context.graph(), + way = context.entity(context.selectedIDs()[0]), + nodes = graph.childNodes(way), + points = _.uniq(nodes).map(function(n) { return context.projection(n.loc); }); + + if (isMostlySquare(points)) { + houseId = way.id; + return continueTo(chooseCategoryBuilding); + } else { + return continueTo(retryHouse); + } + + } else { return chapter.restart(); + } }); function continueTo(nextStep) { @@ -141,6 +154,26 @@ export function uiIntroBuilding(context, reveal) { } + function retryHouse() { + var onClick = function() { continueTo(addHouse); }; + + revealHouse(house, t('intro.buildings.retry_building'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + context.map().on('move.intro drawn.intro', function() { + revealHouse(house, t('intro.buildings.retry_building'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } + ); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + function chooseCategoryBuilding() { if (context.mode().id !== 'select') { return chapter.restart(); @@ -201,7 +234,6 @@ export function uiIntroBuilding(context, reveal) { return chapter.restart(); } - houseId = context.mode().selectedIDs()[0]; context.history().checkpoint('hasHouse'); context.on('exit.intro', function() { diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 6b19c5c38..f68a197da 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -96,6 +96,55 @@ export function localize(obj) { } +// Used to detect squareness.. some duplicataion of code from actionOrthogonalize. +export function isMostlySquare(points) { + // note: uses 15 here instead of the 12 from actionOrthogonalize because + // actionOrthogonalize can actually straighten some larger angles as it iterates + var threshold = 15, // degrees within right or straight + lowerBound = Math.cos((90 - threshold) * Math.PI / 180), // near right + upperBound = Math.cos(threshold * Math.PI / 180), // near straight + mag; + + for (var i = 0; i < points.length; i++) { + mag = Math.abs(normalizedDotProduct(i, points)); + if (mag > lowerBound && mag < upperBound) { + return false; + } + } + + return true; + + + function normalizedDotProduct(i, points) { + var a = points[(i - 1 + points.length) % points.length], + b = points[i], + c = points[(i + 1) % points.length], + p = subtractPoints(a, b), + q = subtractPoints(c, b); + + p = normalizePoint(p); + q = normalizePoint(q); + + return p[0] * q[0] + p[1] * q[1]; + + + function subtractPoints(a, b) { + return [a[0] - b[0], a[1] - b[1]]; + } + + function normalizePoint(point) { + var vector = [0, 0]; + var length = Math.sqrt(point[0] * point[0] + point[1] * point[1]); + if (length !== 0) { + vector[0] = point[0] / length; + vector[1] = point[1] / length; + } + return vector; + } + } +} + + export function selectMenuItem(operation) { var selector = '.edit-menu .edit-menu-item-' + operation + ', .radial-menu .radial-menu-item-' + operation; From 992a6aa958294188c44a181ff0acbb9367b96711 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 15 Apr 2017 00:32:36 -0400 Subject: [PATCH 81/91] More guard code to protect against user undos and mode changes --- modules/renderer/map.js | 2 +- modules/ui/intro/area.js | 173 +++++++++++++++++++------- modules/ui/intro/building.js | 218 +++++++++++++++++++++------------ modules/ui/intro/line.js | 4 +- modules/ui/intro/navigation.js | 64 +++++----- modules/ui/intro/point.js | 137 ++++++++++++++------- modules/ui/intro/welcome.js | 4 +- 7 files changed, 400 insertions(+), 202 deletions(-) diff --git a/modules/renderer/map.js b/modules/renderer/map.js index e99c37590..855a6b623 100644 --- a/modules/renderer/map.js +++ b/modules/renderer/map.js @@ -74,7 +74,7 @@ export function rendererMap(context) { context.history() .on('change.map', immediateRedraw) - .on('undone.context redone.context', function(stack) { + .on('undone.map redone.map', function(stack) { var followSelected = false; if (Array.isArray(stack.selectedIDs)) { followSelected = (stack.selectedIDs.length === 1 && stack.selectedIDs[0][0] === 'n'); diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 8d5877210..2cb2b48f8 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -1,5 +1,6 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; +import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pad, transitionTime } from './helper'; @@ -9,7 +10,8 @@ export function uiIntroArea(context, reveal) { playground = [-85.63552, 41.94159], playgroundPreset = context.presets().item('leisure/playground'), descriptionField = context.presets().field('description'), - timeouts = []; + timeouts = [], + areaId; var chapter = { @@ -29,7 +31,9 @@ export function uiIntroArea(context, reveal) { function addArea() { + context.enter(modeBrowse(context)); context.history().reset('initial'); + areaId = null; var msec = transitionTime(playground, context.map().center()); if (msec) { reveal(null, null, { duration: 0 }); } @@ -63,6 +67,8 @@ export function uiIntroArea(context, reveal) { return chapter.restart(); } + areaId = null; + var padding = 120 * Math.pow(2, context.map().zoom() - 19); var box = pad(playground, padding, context); reveal(box, t('intro.areas.start_playground')); @@ -91,23 +97,27 @@ export function uiIntroArea(context, reveal) { return chapter.restart(); } - var padding = 150 * Math.pow(2, context.map().zoom() - 19); + areaId = null; + + var padding = 120 * Math.pow(2, context.map().zoom() - 19); var box = pad(playground, padding, context); reveal(box, t('intro.areas.continue_playground')); context.map().on('move.intro drawn.intro', function() { - padding = 150 * Math.pow(2, context.map().zoom() - 19); + padding = 120 * Math.pow(2, context.map().zoom() - 19); box = pad(playground, padding, context); reveal(box, t('intro.areas.continue_playground'), {duration: 0}); }); context.on('enter.intro', function(mode) { - if (mode.id === 'draw-area') + if (mode.id === 'draw-area') { return; - else if (mode.id === 'select') + } else if (mode.id === 'select') { + areaId = context.selectedIDs()[0]; return continueTo(searchPresets); - else + } else { return chapter.restart(); + } }); function continueTo(nextStep) { @@ -119,58 +129,93 @@ export function uiIntroArea(context, reveal) { function searchPresets() { - if (context.mode().id !== 'select') { - return chapter.restart(); + if (!areaId || !context.hasEntity(areaId)) { + return addArea(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== areaId) { + context.enter(modeSelect(context, [areaId])); } - context.on('exit.intro', function() { - return chapter.restart(); - }); - - d3.select('.preset-search-input') - .on('keyup.intro', checkPresetSearch); - timeout(function() { + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); + + d3.select('.preset-search-input') + .on('keydown.intro', null) + .on('keyup.intro', checkPresetSearch); + reveal('.preset-search-input', t('intro.areas.search_playground', { preset: playgroundPreset.name() }) ); - }, 500); - } + }, 400); // after preset list pane visible.. + context.on('enter.intro', function(mode) { + if (!areaId || !context.hasEntity(areaId)) { + return continueTo(addArea); + } - function checkPresetSearch() { - var first = d3.select('.preset-list-item:first-child'); + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== areaId) { + // keep the user's area selected.. + context.enter(modeSelect(context, [areaId])); - if (first.classed('preset-leisure-playground')) { - reveal(first.select('.preset-list-button').node(), - t('intro.areas.choose_playground', { preset: playgroundPreset.name() }), - { duration: 300 } - ); + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); - d3.select('.preset-search-input') - .on('keydown.intro', eventCancel, true) - .on('keyup.intro', null); + d3.select('.preset-search-input') + .on('keydown.intro', null) + .on('keyup.intro', checkPresetSearch); - context.history().on('change.intro', function() { - continueTo(clickAddField); - }); + reveal('.preset-search-input', + t('intro.areas.search_playground', { preset: playgroundPreset.name() }) + ); + + context.history().on('change.intro', null); + } + }); + + function checkPresetSearch() { + var first = d3.select('.preset-list-item:first-child'); + + if (first.classed('preset-leisure-playground')) { + reveal(first.select('.preset-list-button').node(), + t('intro.areas.choose_playground', { preset: playgroundPreset.name() }), + { duration: 300 } + ); + + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); + + context.history().on('change.intro', function() { + continueTo(clickAddField); + }); + } } function continueTo(nextStep) { - context.on('exit.intro', null); + context.on('enter.intro', null); context.history().on('change.intro', null); - d3.select('.preset-search-input').on('keydown.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); nextStep(); } } function clickAddField() { - context.on('exit.intro', function() { - return chapter.restart(); - }); + if (!areaId || !context.hasEntity(areaId)) { + return addArea(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== areaId) { + return searchPresets(); + } timeout(function() { + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + reveal('.more-fields .combobox-input', t('intro.areas.add_field'), { duration: 300 } @@ -180,7 +225,11 @@ export function uiIntroArea(context, reveal) { .on('click.intro', function() { continueTo(chooseDescriptionField); }); - }, 300); // after editor pane visible + }, 400); // after editor pane visible + + context.on('exit.intro', function() { + return continueTo(searchPresets); + }); function continueTo(nextStep) { d3.select('.more-fields .combobox-input').on('click.intro', null); @@ -191,9 +240,13 @@ export function uiIntroArea(context, reveal) { function chooseDescriptionField() { - context.on('exit.intro', function() { - return chapter.restart(); - }); + if (!areaId || !context.hasEntity(areaId)) { + return addArea(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== areaId) { + return searchPresets(); + } reveal('div.combobox', t('intro.areas.choose_field', { field: descriptionField.label() }), @@ -203,13 +256,18 @@ export function uiIntroArea(context, reveal) { d3.select('div.combobox') .on('click.intro', function() { timeout(function() { - if (d3.select('.form-field-description').empty()) + if (d3.select('.form-field-description').empty()) { continueTo(retryChooseDescription); - else + } else { continueTo(describePlayground); - }, 300); + } + }, 300); // after description field added. }); + context.on('exit.intro', function() { + return continueTo(searchPresets); + }); + function continueTo(nextStep) { d3.select('div.combobox').on('click.intro', null); context.on('exit.intro', null); @@ -219,6 +277,17 @@ export function uiIntroArea(context, reveal) { function describePlayground() { + if (!areaId || !context.hasEntity(areaId)) { + return addArea(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== areaId) { + return searchPresets(); + } + + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + context.on('exit.intro', function() { continueTo(play); }); @@ -236,9 +305,16 @@ export function uiIntroArea(context, reveal) { function retryChooseDescription() { - context.on('exit.intro', function() { - return chapter.restart(); - }); + if (!areaId || !context.hasEntity(areaId)) { + return addArea(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== areaId) { + return searchPresets(); + } + + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); reveal('.entity-editor-pane', t('intro.areas.retry_add_field', { field: descriptionField.label() }), { @@ -246,6 +322,10 @@ export function uiIntroArea(context, reveal) { buttonCallback: function() { continueTo(clickAddField); } }); + context.on('exit.intro', function() { + return continueTo(searchPresets); + }); + function continueTo(nextStep) { context.on('exit.intro', null); nextStep(); @@ -273,8 +353,7 @@ export function uiIntroArea(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); - context.on('enter.intro', null); - context.on('exit.intro', null); + context.on('enter.intro exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 1c13c5daa..b62fce0ff 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -1,7 +1,7 @@ import * as d3 from 'd3'; import _ from 'lodash'; import { t } from '../../util/locale'; -import { modeBrowse } from '../../modes/browse'; +import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pad, isMostlySquare, selectMenuItem, transitionTime } from './helper'; @@ -49,9 +49,9 @@ export function uiIntroBuilding(context, reveal) { function addHouse() { - houseId = null; - tankId = null; + context.enter(modeBrowse(context)); context.history().reset('initial'); + houseId = null; var msec = transitionTime(house, context.map().center()); if (msec) { reveal(null, null, { duration: 0 }); } @@ -67,9 +67,6 @@ export function uiIntroBuilding(context, reveal) { .append('use') .attr('xlink:href', '#building-images'); - houseId = null; - context.history().reset('initial'); - context.on('enter.intro', function(mode) { if (mode.id !== 'add-area') return; continueTo(startHouse); @@ -85,7 +82,7 @@ export function uiIntroBuilding(context, reveal) { function startHouse() { if (context.mode().id !== 'add-area') { - return chapter.restart(); + return continueTo(addHouse); } houseId = null; @@ -100,7 +97,7 @@ export function uiIntroBuilding(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(drawHouse); + continueTo(continueHouse); }); }, 550); // after easing @@ -113,12 +110,13 @@ export function uiIntroBuilding(context, reveal) { } - function drawHouse() { + function continueHouse() { if (context.mode().id !== 'draw-area') { - return chapter.restart(); + return continueTo(addHouse); } houseId = null; + revealHouse(house, t('intro.buildings.continue_building')); context.map().on('move.intro drawn.intro', function() { @@ -175,51 +173,83 @@ export function uiIntroBuilding(context, reveal) { function chooseCategoryBuilding() { - if (context.mode().id !== 'select') { - return chapter.restart(); + if (!houseId || !context.hasEntity(houseId)) { + return addHouse(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== houseId) { + context.enter(modeSelect(context, [houseId])); } - context.on('exit.intro', function() { - return chapter.restart(); - }); - - var button = d3.select('.preset-category-building .preset-list-button'); - if (button.empty()) return chapter.restart(); - timeout(function() { + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); + + var button = d3.select('.preset-category-building .preset-list-button'); + reveal(button.node(), t('intro.buildings.choose_category_building', { category: buildingCatetory.name() }) ); - button.on('click.intro', function() { continueTo(choosePresetHouse); }); - }, 500); + + button.on('click.intro', function() { + continueTo(choosePresetHouse); + }); + + }, 400); // after preset list pane visible.. + + + context.on('enter.intro', function(mode) { + if (!houseId || !context.hasEntity(houseId)) { + return continueTo(addHouse); + } + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== houseId) { + return continueTo(chooseCategoryBuilding); + } + }); function continueTo(nextStep) { d3.select('.preset-list-button').on('click.intro', null); - context.on('exit.intro', null); + context.on('enter.intro', null); nextStep(); } } function choosePresetHouse() { - if (context.mode().id !== 'select') { - return chapter.restart(); + if (!houseId || !context.hasEntity(houseId)) { + return addHouse(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== houseId) { + context.enter(modeSelect(context, [houseId])); } - context.on('exit.intro', function() { - return chapter.restart(); - }); - - var button = d3.select('.preset-building-house .preset-list-button'); - if (button.empty()) return chapter.restart(); - timeout(function() { + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); + + var button = d3.select('.preset-building-house .preset-list-button'); + reveal(button.node(), t('intro.buildings.choose_preset_house', { preset: housePreset.name() }), { duration: 300 } ); - button.on('click.intro', function() { continueTo(closeEditorHouse); }); - }, 300); + + button.on('click.intro', function() { + continueTo(closeEditorHouse); + }); + }, 400); // after preset list pane visible.. + + context.on('enter.intro', function(mode) { + if (!houseId || !context.hasEntity(houseId)) { + return continueTo(addHouse); + } + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== houseId) { + return continueTo(chooseCategoryBuilding); + } + }); function continueTo(nextStep) { d3.select('.preset-list-button').on('click.intro', null); @@ -230,8 +260,12 @@ export function uiIntroBuilding(context, reveal) { function closeEditorHouse() { - if (context.mode().id !== 'select') { - return chapter.restart(); + if (!houseId || !context.hasEntity(houseId)) { + return addHouse(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== houseId) { + context.enter(modeSelect(context, [houseId])); } context.history().checkpoint('hasHouse'); @@ -379,8 +413,9 @@ export function uiIntroBuilding(context, reveal) { function addTank() { - tankId = null; + context.enter(modeBrowse(context)); context.history().reset('doneSquare'); + tankId = null; var msec = transitionTime(tank, context.map().center()); if (msec) { reveal(null, null, { duration: 0 }); } @@ -420,7 +455,7 @@ export function uiIntroBuilding(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(drawTank); + continueTo(continueTank); }); }, 550); // after easing @@ -433,11 +468,13 @@ export function uiIntroBuilding(context, reveal) { } - function drawTank() { + function continueTank() { if (context.mode().id !== 'draw-area') { return continueTo(addTank); } + tankId = null; + revealTank(tank, t('intro.buildings.continue_tank')); context.map().on('move.intro drawn.intro', function() { @@ -445,12 +482,14 @@ export function uiIntroBuilding(context, reveal) { }); context.on('enter.intro', function(mode) { - if (mode.id === 'draw-area') + if (mode.id === 'draw-area') { return; - else if (mode.id === 'select') + } else if (mode.id === 'select') { + tankId = context.selectedIDs()[0]; return continueTo(searchPresetTank); - else + } else { return continueTo(addTank); + } }); function continueTo(nextStep) { @@ -462,64 +501,89 @@ export function uiIntroBuilding(context, reveal) { function searchPresetTank() { - if (context.mode().id !== 'select') { - return continueTo(addTank); + if (!tankId || !context.hasEntity(tankId)) { + return addTank(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== tankId) { + context.enter(modeSelect(context, [tankId])); } - context.on('exit.intro', function() { - return continueTo(addTank); - }); - - d3.select('.preset-search-input') - .on('keyup.intro', checkPresetSearch); - timeout(function() { + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); + + d3.select('.preset-search-input') + .on('keydown.intro', null) + .on('keyup.intro', checkPresetSearch); + reveal('.preset-search-input', t('intro.buildings.search_tank', { preset: tankPreset.name() }) ); - }, 500); + }, 400); // after preset list pane visible.. - function continueTo(nextStep) { - context.on('exit.intro', null); - d3.select('.preset-search-input').on('keyup.intro', null); - nextStep(); - } - } + context.on('enter.intro', function(mode) { + if (!tankId || !context.hasEntity(tankId)) { + return continueTo(addTank); + } + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== tankId) { + // keep the user's area selected.. + context.enter(modeSelect(context, [tankId])); - function checkPresetSearch() { - var first = d3.select('.preset-list-item:first-child'); + // reset pane, in case user somehow happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '-100%'); - if (first.classed('preset-man_made-storage_tank')) { - reveal(first.select('.preset-list-button').node(), - t('intro.buildings.choose_tank', { preset: tankPreset.name() }), - { duration: 300 } - ); + d3.select('.preset-search-input') + .on('keydown.intro', null) + .on('keyup.intro', checkPresetSearch); - d3.select('.preset-search-input') - .on('keydown.intro', eventCancel, true) - .on('keyup.intro', null); + reveal('.preset-search-input', + t('intro.buildings.search_tank', { preset: tankPreset.name() }) + ); - context.history().on('change.intro', function() { - continueTo(closeEditorTank); - }); + context.history().on('change.intro', null); + } + }); + + function checkPresetSearch() { + var first = d3.select('.preset-list-item:first-child'); + + if (first.classed('preset-man_made-storage_tank')) { + reveal(first.select('.preset-list-button').node(), + t('intro.buildings.choose_tank', { preset: tankPreset.name() }), + { duration: 300 } + ); + + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); + + context.history().on('change.intro', function() { + continueTo(closeEditorTank); + }); + } } function continueTo(nextStep) { - context.on('exit.intro', null); + context.on('enter.intro', null); context.history().on('change.intro', null); - d3.select('.preset-search-input').on('keydown.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); nextStep(); } } function closeEditorTank() { - if (context.mode().id !== 'select') { - return continueTo(addTank); + if (!tankId || !context.hasEntity(tankId)) { + return addTank(); + } + var ids = context.selectedIDs(); + if (context.mode().id !== 'select' || !ids.length || ids[0] !== tankId) { + context.enter(modeSelect(context, [tankId])); } - tankId = context.mode().selectedIDs()[0]; context.history().checkpoint('hasTank'); context.on('exit.intro', function() { @@ -560,6 +624,7 @@ export function uiIntroBuilding(context, reveal) { }); revealTank(tank, t('intro.buildings.rightclick_tank')); + context.map().on('move.intro drawn.intro', function() { revealTank(tank, t('intro.buildings.rightclick_tank'), { duration: 0 }); }); @@ -668,8 +733,7 @@ export function uiIntroBuilding(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); - context.on('enter.intro', null); - context.on('exit.intro', null); + context.on('enter.intro exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 8b09e66be..fa276a50e 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -50,6 +50,7 @@ export function uiIntroLine(context, reveal) { function addLine() { + context.enter(modeBrowse(context)); context.history().reset('initial'); var msec = transitionTime(tulipRoadStart, context.map().center()); @@ -1047,8 +1048,7 @@ export function uiIntroLine(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); d3.select(window).on('mousedown.intro', null, true); - context.on('enter.intro', null); - context.on('exit.intro', null); + context.on('enter.intro exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-list-button').on('click.intro', null); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index d433c0a88..f3f261459 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -10,7 +10,6 @@ export function uiIntroNavigation(context, reveal) { timeouts = [], hallId = 'n2061', townHall = [-85.63591, 41.94285], - townHallPreset = context.presets().item('amenity/townhall'), springStreetId = 'w397', springStreetEndId = 'n1834', springStreet = [-85.63582, 41.94255]; @@ -50,6 +49,7 @@ export function uiIntroNavigation(context, reveal) { function dragMap() { + context.enter(modeBrowse(context)); context.history().reset('initial'); var msec = transitionTime(townHall, context.map().center()); @@ -212,6 +212,11 @@ export function uiIntroNavigation(context, reveal) { var onClick = function() { continueTo(presetTownHall); }; + reveal('.entity-editor-pane', + t('intro.navigation.editor_townhall'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + context.on('exit.intro', function() { continueTo(clickTownHall); }); @@ -222,11 +227,6 @@ export function uiIntroNavigation(context, reveal) { } }); - reveal('.entity-editor-pane', - t('intro.navigation.editor_townhall'), - { buttonText: t('intro.ok'), buttonCallback: onClick } - ); - function continueTo(nextStep) { context.on('exit.intro', null); context.history().on('change.intro', null); @@ -238,6 +238,13 @@ export function uiIntroNavigation(context, reveal) { function presetTownHall() { if (!isTownHallSelected()) return clickTownHall(); + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + + // preset match, in case the user happened to change it. + var entity = context.entity(context.selectedIDs()[0]); + var preset = context.presets().match(entity, context.graph()); + var onClick = function() { continueTo(fieldsTownHall); }; context.on('exit.intro', function() { @@ -251,7 +258,7 @@ export function uiIntroNavigation(context, reveal) { }); reveal('.inspector-body .preset-list-item.inspector-inner', - t('intro.navigation.preset_townhall', { preset: townHallPreset.name() }), + t('intro.navigation.preset_townhall', { preset: preset.name() }), { buttonText: t('intro.ok'), buttonCallback: onClick } ); @@ -266,8 +273,16 @@ export function uiIntroNavigation(context, reveal) { function fieldsTownHall() { if (!isTownHallSelected()) return clickTownHall(); + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + var onClick = function() { continueTo(closeTownHall); }; + reveal('.inspector-body .inspector-preset', + t('intro.navigation.fields_townhall'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + context.on('exit.intro', function() { continueTo(clickTownHall); }); @@ -278,11 +293,6 @@ export function uiIntroNavigation(context, reveal) { } }); - reveal('.inspector-body .inspector-preset', - t('intro.navigation.fields_townhall'), - { buttonText: t('intro.ok'), buttonCallback: onClick } - ); - function continueTo(nextStep) { context.on('exit.intro', null); context.history().on('change.intro', null); @@ -294,16 +304,6 @@ export function uiIntroNavigation(context, reveal) { function closeTownHall() { if (!isTownHallSelected()) return clickTownHall(); - context.on('exit.intro', function() { - continueTo(searchStreet); - }); - - context.history().on('change.intro', function() { - if (!context.hasEntity(hallId)) { - continueTo(clickTownHall); - } - }); - var selector = '.entity-editor-pane button.preset-close svg use'; var href = d3.select(selector).attr('href') || '#icon-close'; @@ -311,9 +311,12 @@ export function uiIntroNavigation(context, reveal) { t('intro.navigation.close_townhall', { button: icon(href, 'pre-text') }) ); + context.on('exit.intro', function() { + continueTo(searchStreet); + }); + function continueTo(nextStep) { context.on('exit.intro', null); - context.history().on('change.intro', null); nextStep(); } } @@ -395,7 +398,11 @@ export function uiIntroNavigation(context, reveal) { }); context.on('enter.intro', function(mode) { - if (mode.id !== 'select') { + if (!context.hasEntity(springStreetId)) { + return continueTo(searchStreet); + } + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== springStreetId) { // keep Spring Street selected.. context.enter(modeSelect(context, [springStreetId])); } @@ -457,13 +464,10 @@ export function uiIntroNavigation(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); - d3.select(window).on('mouseup.intro', null, true); + context.on('enter.intro exit.intro', null); context.map().on('move.intro drawn.intro', null); - context.on('enter.intro', null); - context.on('exit.intro', null); - d3.select('.search-header input') - .on('keydown.intro', null) - .on('keyup.intro', null); + context.history().on('change.intro', null); + d3.select('.search-header input').on('keydown.intro keyup.intro', null); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 9ec9beedb..7e39d81a5 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,5 +1,6 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; +import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox, pad, selectMenuItem, transitionTime } from './helper'; @@ -30,6 +31,7 @@ export function uiIntroPoint(context, reveal) { function addPoint() { + context.enter(modeBrowse(context)); context.history().reset('initial'); var msec = transitionTime(intersection, context.map().center()); @@ -76,6 +78,7 @@ export function uiIntroPoint(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id !== 'select') return chapter.restart(); + pointId = context.mode().selectedIDs()[0]; continueTo(searchPreset); }); @@ -88,58 +91,73 @@ export function uiIntroPoint(context, reveal) { function searchPreset() { - if (context.mode().id !== 'select') { - return chapter.restart(); + if (context.mode().id !== 'select' || !pointId || !context.hasEntity(pointId)) { + return addPoint(); } - pointId = context.mode().selectedIDs()[0]; - - context.on('exit.intro', function() { - return chapter.restart(); - }); - d3.select('.preset-search-input') + .on('keydown.intro', null) .on('keyup.intro', checkPresetSearch); - timeout(function() { - reveal('.preset-search-input', - t('intro.points.search_cafe', { preset: cafePreset.name() }) - ); - }, 500); - } + reveal('.preset-search-input', + t('intro.points.search_cafe', { preset: cafePreset.name() }) + ); + + context.on('enter.intro', function(mode) { + if (!pointId || !context.hasEntity(pointId)) { + return continueTo(addPoint); + } + + var ids = context.selectedIDs(); + if (mode.id !== 'select' || !ids.length || ids[0] !== pointId) { + // keep the user's point selected.. + context.enter(modeSelect(context, [pointId])); + + d3.select('.preset-search-input') + .on('keydown.intro', null) + .on('keyup.intro', checkPresetSearch); + + reveal('.preset-search-input', + t('intro.points.search_cafe', { preset: cafePreset.name() }) + ); + + context.history().on('change.intro', null); + } + }); - function checkPresetSearch() { - var first = d3.select('.preset-list-item:first-child'); + function checkPresetSearch() { + var first = d3.select('.preset-list-item:first-child'); - if (first.classed('preset-amenity-cafe')) { - reveal(first.select('.preset-list-button').node(), - t('intro.points.choose_cafe', { preset: cafePreset.name() }), - { duration: 300 } - ); + if (first.classed('preset-amenity-cafe')) { + d3.select('.preset-search-input') + .on('keydown.intro', eventCancel, true) + .on('keyup.intro', null); - d3.select('.preset-search-input') - .on('keydown.intro', eventCancel, true) - .on('keyup.intro', null); + reveal(first.select('.preset-list-button').node(), + t('intro.points.choose_cafe', { preset: cafePreset.name() }), + { duration: 300 } + ); - context.history().on('change.intro', function() { - continueTo(aboutFeatureEditor); - }); + context.history().on('change.intro', function() { + continueTo(aboutFeatureEditor); + }); + } } function continueTo(nextStep) { - context.on('exit.intro', null); + context.on('enter.intro', null); context.history().on('change.intro', null); - d3.select('.preset-search-input').on('keydown.intro', null); + d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); nextStep(); } } function aboutFeatureEditor() { - context.on('exit.intro', function() { - return chapter.restart(); - }); + if (context.mode().id !== 'select' || !pointId || !context.hasEntity(pointId)) { + return addPoint(); + } timeout(function() { reveal('.entity-editor-pane', t('intro.points.feature_editor'), { @@ -149,6 +167,11 @@ export function uiIntroPoint(context, reveal) { }); }, 400); + context.on('exit.intro', function() { + // if user leaves select mode here, just continue with the tutorial. + continueTo(reselectPoint); + }); + function continueTo(nextStep) { context.on('exit.intro', null); nextStep(); @@ -157,13 +180,12 @@ export function uiIntroPoint(context, reveal) { function addName() { - context.on('exit.intro', function() { - return chapter.restart(); - }); + if (context.mode().id !== 'select' || !pointId || !context.hasEntity(pointId)) { + return addPoint(); + } - context.history().on('change.intro', function() { - continueTo(addCloseEditor); - }); + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); timeout(function() { reveal('.entity-editor-pane', t('intro.points.add_name'), @@ -171,6 +193,15 @@ export function uiIntroPoint(context, reveal) { ); }, 400); + context.history().on('change.intro', function() { + continueTo(addCloseEditor); + }); + + context.on('exit.intro', function() { + // if user leaves select mode here, just continue with the tutorial. + continueTo(reselectPoint); + }); + function continueTo(nextStep) { context.on('exit.intro', null); context.history().on('change.intro', null); @@ -180,12 +211,18 @@ export function uiIntroPoint(context, reveal) { function addCloseEditor() { + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + + var selector = '.entity-editor-pane button.preset-close svg use'; + var href = d3.select(selector).attr('href') || '#icon-close'; + context.on('exit.intro', function() { continueTo(reselectPoint); }); reveal('.entity-editor-pane', - t('intro.points.add_close', { button: icon('#icon-apply', 'pre-text') }) + t('intro.points.add_close', { button: icon(href, 'pre-text') }) ); function continueTo(nextStep) { @@ -200,6 +237,8 @@ export function uiIntroPoint(context, reveal) { var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); + context.enter(modeBrowse(context)); + var msec = transitionTime(entity.loc, context.map().center()); if (msec) { reveal(null, null, { duration: 0 }); } context.map().centerEase(entity.loc, msec); @@ -231,6 +270,13 @@ export function uiIntroPoint(context, reveal) { function updatePoint() { + if (context.mode().id !== 'select' || !pointId || !context.hasEntity(pointId)) { + return continueTo(reselectPoint); + } + + // reset pane, in case user happened to untag the point.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + context.on('exit.intro', function() { continueTo(reselectPoint); }); @@ -254,10 +300,13 @@ export function uiIntroPoint(context, reveal) { function updateCloseEditor() { - if (context.mode().id !== 'select') { + if (context.mode().id !== 'select' || !pointId || !context.hasEntity(pointId)) { return continueTo(reselectPoint); } + // reset pane, in case user happened to change it.. + d3.select('.inspector-wrap .panewrap').style('right', '0%'); + context.on('exit.intro', function() { continueTo(rightClickPoint); }); @@ -280,6 +329,8 @@ export function uiIntroPoint(context, reveal) { var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); + context.enter(modeBrowse(context)); + var box = pointBox(entity.loc, context); reveal(box, t('intro.points.rightclick')); @@ -339,8 +390,9 @@ export function uiIntroPoint(context, reveal) { }); context.history().on('change.intro', function(changed) { - if (changed.deleted().length) + if (changed.deleted().length) { continueTo(undo); + } }); function continueTo(nextStep) { @@ -388,8 +440,7 @@ export function uiIntroPoint(context, reveal) { chapter.exit = function() { timeouts.forEach(window.clearTimeout); - context.on('exit.intro', null); - context.on('enter.intro', null); + context.on('enter.intro exit.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); d3.select('.preset-search-input').on('keydown.intro keyup.intro', null); diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index dd516569a..3564e66d7 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -14,14 +14,14 @@ export function uiIntroWelcome(context, reveal) { function welcome() { context.map().centerZoom([-85.63591, 41.94285], 19); - reveal('.intro-nav-wrap', + reveal('.intro-nav-wrap .chapter-welcome', t('intro.welcome.welcome'), { buttonText: t('intro.ok'), buttonCallback: practice } ); } function practice() { - reveal('.intro-nav-wrap', + reveal('.intro-nav-wrap .chapter-welcome', t('intro.welcome.practice'), { buttonText: t('intro.ok'), buttonCallback: chapters } ); From dfe91207af4f3ea100a73ddc7b3f103966e871d0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 16 Apr 2017 18:29:08 -0400 Subject: [PATCH 82/91] Change the pseudomarkdown emphasis to be global and nongreedy --- modules/ui/curtain.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 1c31d6ecb..0e79d7f2b 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -51,13 +51,24 @@ export function uiCurtain() { } + /** + * Reveal cuts the curtain to highlight the given box, + * and shows a tooltip with instructions next to the box. + * + * @param {String|ClientRect} [box] box to focus on + * @param {String} [text] text for a tooltip + * @param {Object} [options] + * @param {integer} [options.duration] transition time in milliseconds + * @param {string} [options.buttonText] if set, create a button with this text label + * @param {function} [options.buttonCallback] if set, the callback for the button + */ curtain.reveal = function(box, text, options) { if (typeof box === 'string') box = d3.select(box).node(); if (box && box.getBoundingClientRect) box = copyBox(box.getBoundingClientRect()); options = options || {}; - if (text) { + if (box && text) { // pseudo markdown hacks var parts = text.split('**'); var html = parts[0] ? '' + parts[0] + '' : ''; @@ -66,7 +77,7 @@ export function uiCurtain() { } // pseudo markdown bold text hack - html = html.replace(/\*(.*)\*/, '$1'); + html = html.replace(/\*(.*?)\*/g, '$1'); if (options.buttonText && options.buttonCallback) { From 16b8d5c87640fb4bf3fb62c3e926b45a67385d1d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 16 Apr 2017 22:35:57 -0400 Subject: [PATCH 83/91] More gentle introduction to jargon --- data/core.yaml | 29 +++++++++++++------------ dist/locales/en.json | 29 +++++++++++++------------ modules/ui/intro/navigation.js | 39 +++++++++++++++++++++++++++++++++- modules/ui/intro/welcome.js | 7 ++++++ 4 files changed, 77 insertions(+), 27 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 27df2a00c..961ad33eb 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -895,17 +895,20 @@ en: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." practice: "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved." + words: "This walkthrough will introduce some new words and concepts. When we introduce a new word, we'll use *italics*." chapters: "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" zoom: "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**" features: "We use the word *features* to describe the things that appear on the map. Anything in the real world can be mapped as a feature on OpenStreetMap." - click_townhall: "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**" + points_lines_areas: "Map features are represented using *points, lines, or areas.*" + nodes_ways: "In OpenStreetMap, points are sometimes called *nodes*, and lines and areas are sometimes called *ways*." + click_townhall: "All features on the map can be selected by clicking on them. **Click on the point to select it.**" selected_townhall: "Great! The point is now selected. Selected features are drawn with a pulsing glow." editor_townhall: "When a feature is selected, the *feature editor* is displayed alongside the map." preset_townhall: "The top part of the feature editor shows the feature's type. This point is a {preset}." - fields_townhall: "The middle part of the feature editor shows the feature's attributes, such as its name and address." + fields_townhall: "The middle part of the feature editor shows *fields* containing the feature's attributes, such as its name and address." close_townhall: "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" search_street: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose_street: "**Choose {name} from the list to select it.**" @@ -914,7 +917,7 @@ en: play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" - add_point: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" + add_point: "*Points* can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" place_point: "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**" search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**" choose_cafe: "**Choose {preset} from the list.**" @@ -924,14 +927,14 @@ en: reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" - rightclick: "You can right-click on any feature to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" + rightclick: "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" - add_playground: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" - start_playground: "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" + add_playground: "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" + start_playground: "Areas are drawn by placing *nodes* along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**" search_playground: "**Search for '{preset}'.**" choose_playground: "**Choose {preset} from the list.**" @@ -939,12 +942,12 @@ en: choose_field: "**Choose {field} from the list.**" retry_add_field: "You didn't select the {field} field. Let's try again." describe_playground: "**Add a description, then click the {button} button to close the feature editor.**" - play: "Good job! Try drawing a few more areas and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Good job! Try drawing a few more areas and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" - add_line: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" + add_line: "*Lines* are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" start_line: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**" - intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" + intersect: "Click or press spacebar to add more *nodes* to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" retry_intersect: "The road needs to intersect {name}. Let's try again!" continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" choose_category_road: "**Select {category} from the list**" @@ -956,10 +959,10 @@ en: add_node: "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**" start_drag_endpoint: "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**" finish_drag_endpoint: "This spot looks good. **Release the left mouse button to finish dragging.**" - start_drag_midpoint: "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" + start_drag_midpoint: "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." - rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**" + rightclick_intersection: "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." did_split_multi: "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**" @@ -974,9 +977,9 @@ en: add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**" - retry_building: "It looks like you had some trouble placing the points at the building corners. Try again!" + retry_building: "It looks like you had some trouble placing the nodes at the building corners. Try again!" choose_category_building: "**Choose {category} from the list**" - choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**" + choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} building type**" close: "**Hit escape or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created and show the edit menu.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index ec351cf2f..7ab0fd279 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -754,6 +754,7 @@ "title": "Welcome", "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", "practice": "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved.", + "words": "This walkthrough will introduce some new words and concepts. When we introduce a new word, we'll use *italics*.", "chapters": "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { @@ -761,11 +762,13 @@ "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "zoom": "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**", "features": "We use the word *features* to describe the things that appear on the map. Anything in the real world can be mapped as a feature on OpenStreetMap.", - "click_townhall": "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**", + "points_lines_areas": "Map features are represented using *points, lines, or areas.*", + "nodes_ways": "In OpenStreetMap, points are sometimes called *nodes*, and lines and areas are sometimes called *ways*.", + "click_townhall": "All features on the map can be selected by clicking on them. **Click on the point to select it.**", "selected_townhall": "Great! The point is now selected. Selected features are drawn with a pulsing glow.", "editor_townhall": "When a feature is selected, the *feature editor* is displayed alongside the map.", "preset_townhall": "The top part of the feature editor shows the feature's type. This point is a {preset}.", - "fields_townhall": "The middle part of the feature editor shows the feature's attributes, such as its name and address.", + "fields_townhall": "The middle part of the feature editor shows *fields* containing the feature's attributes, such as its name and address.", "close_townhall": "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", "search_street": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose_street": "**Choose {name} from the list to select it.**", @@ -775,7 +778,7 @@ }, "points": { "title": "Points", - "add_point": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", + "add_point": "*Points* can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", "place_point": "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**", "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**", "choose_cafe": "**Choose {preset} from the list.**", @@ -785,15 +788,15 @@ "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", - "rightclick": "You can right-click on any feature to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", + "rightclick": "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", - "add_playground": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", - "start_playground": "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", + "add_playground": "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", + "start_playground": "Areas are drawn by placing *nodes* along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**", "search_playground": "**Search for '{preset}'.**", "choose_playground": "**Choose {preset} from the list.**", @@ -801,13 +804,13 @@ "choose_field": "**Choose {field} from the list.**", "retry_add_field": "You didn't select the {field} field. Let's try again.", "describe_playground": "**Add a description, then click the {button} button to close the feature editor.**", - "play": "Good job! Try drawing a few more areas and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Good job! Try drawing a few more areas and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", - "add_line": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", + "add_line": "*Lines* are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", "start_line": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**", - "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", + "intersect": "Click or press spacebar to add more *nodes* to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", "retry_intersect": "The road needs to intersect {name}. Let's try again!", "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", "choose_category_road": "**Select {category} from the list**", @@ -819,10 +822,10 @@ "add_node": "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**", "start_drag_endpoint": "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**", "finish_drag_endpoint": "This spot looks good. **Release the left mouse button to finish dragging.**", - "start_drag_midpoint": "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", + "start_drag_midpoint": "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", - "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**", + "rightclick_intersection": "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", "did_split_multi": "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**", @@ -838,9 +841,9 @@ "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**", - "retry_building": "It looks like you had some trouble placing the points at the building corners. Try again!", + "retry_building": "It looks like you had some trouble placing the nodes at the building corners. Try again!", "choose_category_building": "**Choose {category} from the list**", - "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**", + "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} building type**", "close": "**Hit escape or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created and show the edit menu.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index f3f261459..bfb8ce0e8 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -104,7 +104,7 @@ export function uiIntroNavigation(context, reveal) { function features() { - var onClick = function() { continueTo(clickTownHall); }; + var onClick = function() { continueTo(pointsLinesAreas); }; reveal(trimmedMap(), t('intro.navigation.features'), { buttonText: t('intro.ok'), buttonCallback: onClick } @@ -122,6 +122,43 @@ export function uiIntroNavigation(context, reveal) { } } + function pointsLinesAreas() { + var onClick = function() { continueTo(nodesWays); }; + + reveal(trimmedMap(), t('intro.navigation.points_lines_areas'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + context.map().on('drawn.intro', function() { + reveal(trimmedMap(), t('intro.navigation.points_lines_areas'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } + ); + }); + + function continueTo(nextStep) { + context.map().on('drawn.intro', null); + nextStep(); + } + } + + function nodesWays() { + var onClick = function() { continueTo(clickTownHall); }; + + reveal(trimmedMap(), t('intro.navigation.nodes_ways'), + { buttonText: t('intro.ok'), buttonCallback: onClick } + ); + + context.map().on('drawn.intro', function() { + reveal(trimmedMap(), t('intro.navigation.nodes_ways'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } + ); + }); + + function continueTo(nextStep) { + context.map().on('drawn.intro', null); + nextStep(); + } + } function clickTownHall() { context.enter(modeBrowse(context)); diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index 3564e66d7..8af0a59d8 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -23,6 +23,13 @@ export function uiIntroWelcome(context, reveal) { function practice() { reveal('.intro-nav-wrap .chapter-welcome', t('intro.welcome.practice'), + { buttonText: t('intro.ok'), buttonCallback: words } + ); + } + + function words() { + reveal('.intro-nav-wrap .chapter-welcome', + t('intro.welcome.words'), { buttonText: t('intro.ok'), buttonCallback: chapters } ); } From 5acad221a9dee078cc13a9210680d2346ccb1d4b Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 10:40:24 -0400 Subject: [PATCH 84/91] Catch a few more conditions where the user changed tutorial data --- modules/ui/intro/area.js | 37 ++++++++++++++++++++++++++++--------- modules/ui/intro/point.js | 12 ++++++++++++ 2 files changed, 40 insertions(+), 9 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 2cb2b48f8..89cbe3550 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -216,6 +216,13 @@ export function uiIntroArea(context, reveal) { // reset pane, in case user somehow happened to change it.. d3.select('.inspector-wrap .panewrap').style('right', '0%'); + // It's possible for the user to add a description in a previous step.. + // If they did this already, just continue to next step. + var entity = context.entity(areaId); + if (entity.tags.description) { + return continueTo(play); + } + reveal('.more-fields .combobox-input', t('intro.areas.add_field'), { duration: 300 } @@ -248,13 +255,15 @@ export function uiIntroArea(context, reveal) { return searchPresets(); } - reveal('div.combobox', - t('intro.areas.choose_field', { field: descriptionField.label() }), - { duration: 300 } - ); - - d3.select('div.combobox') - .on('click.intro', function() { + // Make sure combobox is ready.. + if (d3.select('div.combobox').empty()) { + return continueTo(clickAddField); + } + // Watch for the combobox to go away.. + var watcher; + watcher = window.setInterval(function() { + if (d3.select('div.combobox').empty()) { + window.clearInterval(watcher); timeout(function() { if (d3.select('.form-field-description').empty()) { continueTo(retryChooseDescription); @@ -262,14 +271,20 @@ export function uiIntroArea(context, reveal) { continueTo(describePlayground); } }, 300); // after description field added. - }); + } + }, 300); + + reveal('div.combobox', + t('intro.areas.choose_field', { field: descriptionField.label() }), + { duration: 300 } + ); context.on('exit.intro', function() { return continueTo(searchPresets); }); function continueTo(nextStep) { - d3.select('div.combobox').on('click.intro', null); + if (watcher) window.clearInterval(watcher); context.on('exit.intro', null); nextStep(); } @@ -288,6 +303,10 @@ export function uiIntroArea(context, reveal) { // reset pane, in case user happened to change it.. d3.select('.inspector-wrap .panewrap').style('right', '0%'); + if (d3.select('.form-field-description').empty()) { + return continueTo(retryChooseDescription); + } + context.on('exit.intro', function() { continueTo(play); }); diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 7e39d81a5..2df45c364 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,5 +1,6 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; +import { actionChangePreset } from '../../actions'; import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pointBox, pad, selectMenuItem, transitionTime } from './helper'; @@ -187,6 +188,13 @@ export function uiIntroPoint(context, reveal) { // reset pane, in case user happened to change it.. d3.select('.inspector-wrap .panewrap').style('right', '0%'); + // It's possible for the user to add a name in a previous step.. + // If they did this already, just continue to next step. + var entity = context.entity(pointId); + if (entity.tags.name) { + return continueTo(addCloseEditor); + } + timeout(function() { reveal('.entity-editor-pane', t('intro.points.add_name'), { tooltipClass: 'intro-points-describe' } @@ -237,6 +245,10 @@ export function uiIntroPoint(context, reveal) { var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); + // make sure it's still a cafe, in case user somehow changed it.. + var oldPreset = context.presets().match(entity, context.graph()); + context.replace(actionChangePreset(pointId, oldPreset, cafePreset)); + context.enter(modeBrowse(context)); var msec = transitionTime(entity.loc, context.map().center()); From e249826b1befebda4fd35009ae6edccb99074e99 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 11:13:32 -0400 Subject: [PATCH 85/91] Adjust timings a few places so draw handler doesn't interrupt reveal --- modules/ui/intro/area.js | 14 ++++++++------ modules/ui/intro/line.js | 6 +++--- modules/ui/intro/navigation.js | 24 +++++++++++++----------- modules/ui/intro/point.js | 32 ++++++++++++++++++-------------- 4 files changed, 42 insertions(+), 34 deletions(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 89cbe3550..fab963115 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -101,13 +101,15 @@ export function uiIntroArea(context, reveal) { var padding = 120 * Math.pow(2, context.map().zoom() - 19); var box = pad(playground, padding, context); - reveal(box, t('intro.areas.continue_playground')); + reveal(box, t('intro.areas.continue_playground'), { duration: 250 }); - context.map().on('move.intro drawn.intro', function() { - padding = 120 * Math.pow(2, context.map().zoom() - 19); - box = pad(playground, padding, context); - reveal(box, t('intro.areas.continue_playground'), {duration: 0}); - }); + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + padding = 120 * Math.pow(2, context.map().zoom() - 19); + box = pad(playground, padding, context); + reveal(box, t('intro.areas.continue_playground'), { duration: 0 }); + }); + }, 250); // after reveal context.on('enter.intro', function(mode) { if (mode.id === 'draw-area') { diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index fa276a50e..603d22621 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -118,7 +118,7 @@ export function uiIntroLine(context, reveal) { } tulipRoadId = context.mode().selectedIDs()[0]; - context.map().centerEase(tulipRoadMidpoint); + context.map().centerEase(tulipRoadMidpoint, 500); timeout(function() { var padding = 200 * Math.pow(2, context.map().zoom() - 18.5); @@ -137,7 +137,7 @@ export function uiIntroLine(context, reveal) { { duration: 0 } ); }); - }, 260); // after easing.. + }, 550); // after easing.. context.history().on('change.intro', function() { var entity = tulipRoadId && context.hasEntity(tulipRoadId); @@ -198,7 +198,7 @@ export function uiIntroLine(context, reveal) { var entity = tulipRoadId && context.hasEntity(tulipRoadId); if (!entity) return chapter.restart(); - context.map().centerEase(tulipRoadIntersection); + context.map().centerEase(tulipRoadIntersection, 500); reveal('#surface', t('intro.lines.continue_line')); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index bfb8ce0e8..f4ee6fd24 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -420,19 +420,21 @@ export function uiIntroNavigation(context, reveal) { reveal(box, t('intro.navigation.selected_street', { name: t('intro.graph.name.spring-street') }), - { buttonText: t('intro.ok'), buttonCallback: onClick } + { duration: 600, buttonText: t('intro.ok'), buttonCallback: onClick } ); - context.map().on('move.intro drawn.intro', function() { - var entity = context.hasEntity(springStreetEndId); - if (!entity) return; - var box = pointBox(entity.loc, context); - box.height = 500; - reveal(box, - t('intro.navigation.selected_street', { name: t('intro.graph.name.spring-street') }), - { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } - ); - }); + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + var entity = context.hasEntity(springStreetEndId); + if (!entity) return; + var box = pointBox(entity.loc, context); + box.height = 500; + reveal(box, + t('intro.navigation.selected_street', { name: t('intro.graph.name.spring-street') }), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: onClick } + ); + }); + }, 600); // after reveal. context.on('enter.intro', function(mode) { if (!context.hasEntity(springStreetId)) { diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 2df45c364..6439fe301 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -257,14 +257,16 @@ export function uiIntroPoint(context, reveal) { timeout(function() { var box = pointBox(entity.loc, context); - reveal(box, t('intro.points.reselect')); + reveal(box, t('intro.points.reselect'), { duration: 600 }); - context.map().on('move.intro drawn.intro', function() { - var entity = context.hasEntity(pointId); - if (!entity) return chapter.restart(); - var box = pointBox(entity.loc, context); - reveal(box, t('intro.points.reselect'), { duration: 0 }); - }); + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.reselect'), { duration: 0 }); + }); + }, 600); // after reveal.. context.on('enter.intro', function(mode) { if (mode.id !== 'select') return; @@ -344,14 +346,16 @@ export function uiIntroPoint(context, reveal) { context.enter(modeBrowse(context)); var box = pointBox(entity.loc, context); - reveal(box, t('intro.points.rightclick')); + reveal(box, t('intro.points.rightclick'), { duration: 600 }); - context.map().on('move.intro drawn.intro', function() { - var entity = context.hasEntity(pointId); - if (!entity) return chapter.restart(); - var box = pointBox(entity.loc, context); - reveal(box, t('intro.points.rightclick'), { duration: 0 }); - }); + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + var entity = context.hasEntity(pointId); + if (!entity) return chapter.restart(); + var box = pointBox(entity.loc, context); + reveal(box, t('intro.points.rightclick'), { duration: 0 }); + }); + }, 600); // after reveal context.on('enter.intro', function(mode) { if (mode.id !== 'select') return; From b743d37a313d8eb8f07edd3536ef7165ca49f305 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 14:06:05 -0400 Subject: [PATCH 86/91] Fixes for RTL, improve curtain placement for edit menu steps --- css/80_app.css | 8 +++--- modules/ui/intro/building.js | 34 +++++++++++++++++++----- modules/ui/intro/line.js | 43 ++++++++++++++++++------------- modules/ui/intro/point.js | 50 ++++++++++++++++++++++++------------ 4 files changed, 92 insertions(+), 43 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 5a7d8fb3a..801158597 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3660,9 +3660,6 @@ img.tile-removing { padding: 20px; } -.curtain-tooltip .tooltip-inner .bold { -} - .curtain-tooltip .tooltip-inner .button-section, .curtain-tooltip .tooltip-inner .instruction { font-weight: bold; @@ -3674,6 +3671,10 @@ img.tile-removing { padding: 10px 20px 0 20px; } +[dir='rtl'] .curtain-tooltip .tooltip-inner .button-section button.col8 { + float: right; +} + .curtain-tooltip .tooltip-inner .instruction:only-child { border: 0; padding: 0; @@ -3683,6 +3684,7 @@ img.tile-removing { .curtain-tooltip .tooltip-inner .icon.pre-text { vertical-align: text-top; margin-right: 0; + margin-left: 0; display: inline-block; } diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index b62fce0ff..75258383d 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -1,6 +1,6 @@ import * as d3 from 'd3'; import _ from 'lodash'; -import { t } from '../../util/locale'; +import { t, textDirection } from '../../util/locale'; import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pad, isMostlySquare, selectMenuItem, transitionTime } from './helper'; @@ -48,6 +48,24 @@ export function uiIntroBuilding(context, reveal) { } + function revealEditMenu(loc, text, options) { + var rect = context.surfaceRect(); + var point = context.curtainProjection(loc); + var pad = 40; + var width = 250 + (2 * pad); + var height = 350; + var startX = rect.left + point[0]; + var left = (textDirection === 'rtl') ? (startX - width + pad) : (startX - pad); + var box = { + left: left, + top: point[1] + rect.top - 60, + width: width, + height: height + }; + reveal(box, text, options); + } + + function addHouse() { context.enter(modeBrowse(context)); context.history().reset('initial'); @@ -192,6 +210,7 @@ export function uiIntroBuilding(context, reveal) { ); button.on('click.intro', function() { + button.on('click.intro', null); continueTo(choosePresetHouse); }); @@ -237,6 +256,7 @@ export function uiIntroBuilding(context, reveal) { ); button.on('click.intro', function() { + button.on('click.intro', null); continueTo(closeEditorHouse); }); }, 400); // after preset list pane visible.. @@ -253,7 +273,7 @@ export function uiIntroBuilding(context, reveal) { function continueTo(nextStep) { d3.select('.preset-list-button').on('click.intro', null); - context.on('exit.intro', null); + context.on('enter.intro', null); nextStep(); } } @@ -338,8 +358,9 @@ export function uiIntroBuilding(context, reveal) { if (!node) { return continueTo(rightClickHouse); } var wasChanged = false; + var menuCoords = context.map().mouseCoordinates(); - revealHouse(house, + revealEditMenu(menuCoords, t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }) ); @@ -355,7 +376,7 @@ export function uiIntroBuilding(context, reveal) { var node = selectMenuItem('orthogonalize').node(); if (!wasChanged && !node) { return continueTo(rightClickHouse); } - revealHouse(house, + revealEditMenu(menuCoords, t('intro.buildings.square_building', { button: icon('#operation-orthogonalize', 'pre-text') }), { duration: 0 } ); @@ -653,8 +674,9 @@ export function uiIntroBuilding(context, reveal) { if (!node) { return continueTo(rightClickTank); } var wasChanged = false; + var menuCoords = context.map().mouseCoordinates(); - revealTank(tank, + revealEditMenu(menuCoords, t('intro.buildings.circle_tank', { button: icon('#operation-circularize', 'pre-text') }) ); @@ -670,7 +692,7 @@ export function uiIntroBuilding(context, reveal) { var node = selectMenuItem('circularize').node(); if (!wasChanged && !node) { return continueTo(rightClickTank); } - revealTank(tank, + revealEditMenu(menuCoords, t('intro.buildings.circle_tank', { button: icon('#operation-circularize', 'pre-text') }), { duration: 0 } ); diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 603d22621..fbf6d9288 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -1,6 +1,6 @@ import * as d3 from 'd3'; import _ from 'lodash'; -import { t } from '../../util/locale'; +import { t, textDirection } from '../../util/locale'; import { geoSphericalDistance } from '../../geo'; import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; @@ -49,6 +49,24 @@ export function uiIntroLine(context, reveal) { } + function revealEditMenu(loc, text, options) { + var rect = context.surfaceRect(); + var point = context.curtainProjection(loc); + var pad = 40; + var width = 250 + (2 * pad); + var height = 350; + var startX = rect.left + point[0]; + var left = (textDirection === 'rtl') ? (startX - width + pad) : (startX - pad); + var box = { + left: left, + top: point[1] + rect.top - 60, + width: width, + height: height + }; + reveal(box, text, options); + } + + function addLine() { context.enter(modeBrowse(context)); context.history().reset('initial'); @@ -688,14 +706,10 @@ export function uiIntroLine(context, reveal) { if (!node) { return continueTo(rightClickIntersection); } var wasChanged = false; + var menuCoords = context.map().mouseCoordinates(); washingtonSegmentId = null; - var padding = 60 * Math.pow(2, context.map().zoom() - 18); - var box = pad(eleventhAvenueEnd, padding, context); - box.width += 100; - box.height += 120; - - reveal(box, t('intro.lines.split_intersection', + revealEditMenu(menuCoords, t('intro.lines.split_intersection', { button: icon('#operation-split', 'pre-text'), street: t('intro.graph.name.washington-street') }) ); @@ -703,11 +717,7 @@ export function uiIntroLine(context, reveal) { var node = selectMenuItem('split').node(); if (!wasChanged && !node) { return continueTo(rightClickIntersection); } - var padding = 60 * Math.pow(2, context.map().zoom() - 18); - var box = pad(eleventhAvenueEnd, padding, context); - box.width += 100; - box.height += 120; - reveal(box, t('intro.lines.split_intersection', + revealEditMenu(menuCoords, t('intro.lines.split_intersection', { button: icon('#operation-split', 'pre-text'), street: t('intro.graph.name.washington-street') }), { duration: 0 } ); @@ -973,16 +983,13 @@ export function uiIntroLine(context, reveal) { var node = selectMenuItem('delete').node(); if (!node) return continueTo(multiRightClick); - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - reveal(box, + var menuCoords = context.map().mouseCoordinates(); + revealEditMenu(menuCoords, t('intro.lines.multi_delete', { button: icon('#operation-delete', 'pre-text') }) ); context.map().on('move.intro drawn.intro', function() { - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - reveal(box, + revealEditMenu(menuCoords, t('intro.lines.multi_delete', { button: icon('#operation-delete', 'pre-text') }), { duration: 0 } ); diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 6439fe301..6f4a46315 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -25,6 +25,24 @@ export function uiIntroPoint(context, reveal) { } + function revealEditMenu(loc, text, options) { + var rect = context.surfaceRect(); + var point = context.curtainProjection(loc); + var pad = 40; + var width = 250 + (2 * pad); + var height = 250; + var startX = rect.left + point[0]; + var left = (textDirection === 'rtl') ? (startX - width + pad) : (startX - pad); + var box = { + left: left, + top: point[1] + rect.top - 60, + width: width, + height: height + }; + reveal(box, text, options); + } + + function eventCancel() { d3.event.stopPropagation(); d3.event.preventDefault(); @@ -382,22 +400,21 @@ export function uiIntroPoint(context, reveal) { var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); - if (!node) { - return continueTo(rightClickPoint); - } else { - var rect = context.surfaceRect(); - var point = context.curtainProjection(entity.loc); - var box = { - left: point[0] + rect.left - 40, - top: point[1] + rect.top - 60, - width: 150, - height: 150 - }; - reveal(box, - t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') }) - ); - } + var node = selectMenuItem('delete').node(); + if (!node) { return continueTo(rightClickPoint); } + + revealEditMenu(entity.loc, + t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') }) + ); + + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + revealEditMenu(entity.loc, + t('intro.points.delete', { button: icon('#operation-delete', 'pre-text') }), + { duration: 0} + ); + }); + }, 300); // after menu visible context.on('exit.intro', function() { if (!pointId) return chapter.restart(); @@ -412,6 +429,7 @@ export function uiIntroPoint(context, reveal) { }); function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); context.on('exit.intro', null); nextStep(); From 28802daae470c79f1e65d39e63352e732b08c173 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 15:00:07 -0400 Subject: [PATCH 87/91] Add more examples of landuse and areas --- data/core.yaml | 1 + data/intro_graph.json | 1800 +++++++++++++++++++++++++++++++++++++---- dist/locales/en.json | 1 + 3 files changed, 1623 insertions(+), 179 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 961ad33eb..3aa273c91 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -878,6 +878,7 @@ en: three-rivers-fire-department: Three Rivers Fire Department three-rivers-high-school: Three Rivers High School three-rivers-middle-school: Three Rivers Middle School + three-rivers-municipal-airport: Three Rivers Municipal Airport three-rivers-post-office: Three Rivers Post Office three-rivers-public-library: Three Rivers Public Library three-rivers: Three Rivers diff --git a/data/intro_graph.json b/data/intro_graph.json index 56ac90480..1647a777e 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -3167,6 +3167,10 @@ "id": "n1683", "loc": [-85.642776, 41.941302] }, + "n1684": { + "id": "n1684", + "loc": [-85.632788, 41.946236] + }, "n1685": { "id": "n1685", "loc": [-85.622342, 41.953127] @@ -8836,30 +8840,10 @@ "id": "n2933", "loc": [-85.627835, 41.94455] }, - "n2934": { - "id": "n2934", - "loc": [-85.632105, 41.946034] - }, - "n2935": { - "id": "n2935", - "loc": [-85.632278, 41.945784] - }, "n2936": { "id": "n2936", "loc": [-85.632823, 41.945994] }, - "n2937": { - "id": "n2937", - "loc": [-85.632684, 41.946196] - }, - "n2938": { - "id": "n2938", - "loc": [-85.632566, 41.946151] - }, - "n2939": { - "id": "n2939", - "loc": [-85.632532, 41.946198] - }, "n294": { "id": "n294", "loc": [-85.635696, 41.942712] @@ -10174,19 +10158,19 @@ }, "n3230": { "id": "n3230", - "loc": [-85.624688, 41.948662] + "loc": [-85.624691, 41.948659] }, "n3231": { "id": "n3231", - "loc": [-85.624313, 41.948658] + "loc": [-85.624328, 41.948661] }, "n3232": { "id": "n3232", - "loc": [-85.624306, 41.949057] + "loc": [-85.624331, 41.949046] }, "n3233": { "id": "n3233", - "loc": [-85.624681, 41.94906] + "loc": [-85.624694, 41.949045] }, "n3234": { "id": "n3234", @@ -10698,26 +10682,10 @@ "id": "n3347", "loc": [-85.635448, 41.949424] }, - "n3348": { - "id": "n3348", - "loc": [-85.636042, 41.949416] - }, - "n3349": { - "id": "n3349", - "loc": [-85.636046, 41.94958] - }, "n335": { "id": "n335", "loc": [-85.633856, 41.943315] }, - "n3350": { - "id": "n3350", - "loc": [-85.635746, 41.949584] - }, - "n3351": { - "id": "n3351", - "loc": [-85.635751, 41.949784] - }, "n3352": { "id": "n3352", "loc": [-85.635457, 41.949787] @@ -10726,86 +10694,14 @@ "id": "n3353", "loc": [-85.635459, 41.949886] }, - "n3354": { - "id": "n3354", - "loc": [-85.634961, 41.949749] - }, - "n3355": { - "id": "n3355", - "loc": [-85.634961, 41.949764] - }, - "n3356": { - "id": "n3356", - "loc": [-85.634906, 41.94971] - }, - "n3357": { - "id": "n3357", - "loc": [-85.634905, 41.949657] - }, - "n3358": { - "id": "n3358", - "loc": [-85.634884, 41.949657] - }, - "n3359": { - "id": "n3359", - "loc": [-85.634883, 41.94971] - }, "n336": { "id": "n336", "loc": [-85.633697, 41.943405] }, - "n3360": { - "id": "n3360", - "loc": [-85.635227, 41.949774] - }, - "n3361": { - "id": "n3361", - "loc": [-85.635218, 41.949779] - }, - "n3362": { - "id": "n3362", - "loc": [-85.635118, 41.949781] - }, - "n3363": { - "id": "n3363", - "loc": [-85.635118, 41.949746] - }, - "n3364": { - "id": "n3364", - "loc": [-85.634884, 41.949765] - }, - "n3365": { - "id": "n3365", - "loc": [-85.634883, 41.949624] - }, - "n3366": { - "id": "n3366", - "loc": [-85.635127, 41.949621] - }, - "n3367": { - "id": "n3367", - "loc": [-85.635126, 41.949589] - }, - "n3368": { - "id": "n3368", - "loc": [-85.635196, 41.949588] - }, - "n3369": { - "id": "n3369", - "loc": [-85.635192, 41.949452] - }, "n337": { "id": "n337", "loc": [-85.63347, 41.943181] }, - "n3370": { - "id": "n3370", - "loc": [-85.6354, 41.949449] - }, - "n3371": { - "id": "n3371", - "loc": [-85.635407, 41.949771] - }, "n3372": { "id": "n3372", "loc": [-85.634423, 41.950964] @@ -11440,22 +11336,6 @@ "id": "n3512", "loc": [-85.633439, 41.954596] }, - "n3513": { - "id": "n3513", - "loc": [-85.63727, 41.952289] - }, - "n3514": { - "id": "n3514", - "loc": [-85.637268, 41.952158] - }, - "n3515": { - "id": "n3515", - "loc": [-85.63695, 41.952162] - }, - "n3516": { - "id": "n3516", - "loc": [-85.636953, 41.952293] - }, "n3517": { "id": "n3517", "loc": [-85.621789, 41.952179] @@ -17542,18 +17422,178 @@ "id": "n476", "loc": [-85.63423, 41.943692] }, + "n4760": { + "id": "n4760", + "loc": [-85.63169, 41.947812] + }, + "n4761": { + "id": "n4761", + "loc": [-85.631307, 41.947655] + }, + "n4762": { + "id": "n4762", + "loc": [-85.631407, 41.947413] + }, + "n4763": { + "id": "n4763", + "loc": [-85.631173, 41.947306] + }, + "n4764": { + "id": "n4764", + "loc": [-85.631316, 41.947145] + }, + "n4765": { + "id": "n4765", + "loc": [-85.631476, 41.947087] + }, + "n4766": { + "id": "n4766", + "loc": [-85.631793, 41.946871] + }, + "n4767": { + "id": "n4767", + "loc": [-85.631884, 41.946723] + }, + "n4768": { + "id": "n4768", + "loc": [-85.631814, 41.946397] + }, + "n4769": { + "id": "n4769", + "loc": [-85.631382, 41.947685] + }, "n477": { "id": "n477", "loc": [-85.635096, 41.942814] }, + "n4770": { + "id": "n4770", + "loc": [-85.63109, 41.947819] + }, + "n4771": { + "id": "n4771", + "loc": [-85.630921, 41.947961] + }, + "n4772": { + "id": "n4772", + "loc": [-85.630249, 41.947709] + }, + "n4773": { + "id": "n4773", + "loc": [-85.630149, 41.947451] + }, + "n4774": { + "id": "n4774", + "loc": [-85.629733, 41.947339] + }, + "n4775": { + "id": "n4775", + "loc": [-85.629755, 41.946948] + }, + "n4776": { + "id": "n4776", + "loc": [-85.630457, 41.947103] + }, + "n4777": { + "id": "n4777", + "loc": [-85.630934, 41.946939] + }, + "n4778": { + "id": "n4778", + "loc": [-85.631277, 41.946852] + }, + "n4779": { + "id": "n4779", + "loc": [-85.63142, 41.946781] + }, "n478": { "id": "n478", "loc": [-85.635058, 41.942795] }, + "n4780": { + "id": "n4780", + "loc": [-85.631116, 41.946474] + }, + "n4781": { + "id": "n4781", + "loc": [-85.63073, 41.945965] + }, + "n4782": { + "id": "n4782", + "loc": [-85.631337, 41.94571] + }, + "n4783": { + "id": "n4783", + "loc": [-85.631589, 41.945487] + }, + "n4784": { + "id": "n4784", + "loc": [-85.632278, 41.945784] + }, + "n4785": { + "id": "n4785", + "loc": [-85.632105, 41.946034] + }, + "n4786": { + "id": "n4786", + "loc": [-85.632532, 41.946198] + }, + "n4787": { + "id": "n4787", + "loc": [-85.632566, 41.946151] + }, + "n4788": { + "id": "n4788", + "loc": [-85.632684, 41.946196] + }, + "n4789": { + "id": "n4789", + "loc": [-85.628676, 41.947106] + }, "n479": { "id": "n479", "loc": [-85.635002, 41.94279] }, + "n4790": { + "id": "n4790", + "loc": [-85.628973, 41.946476] + }, + "n4791": { + "id": "n4791", + "loc": [-85.629094, 41.946079] + }, + "n4792": { + "id": "n4792", + "loc": [-85.629226, 41.94578] + }, + "n4793": { + "id": "n4793", + "loc": [-85.629479, 41.945682] + }, + "n4794": { + "id": "n4794", + "loc": [-85.630606, 41.94569] + }, + "n4795": { + "id": "n4795", + "loc": [-85.631255, 41.945588] + }, + "n4796": { + "id": "n4796", + "loc": [-85.631546, 41.945281] + }, + "n4797": { + "id": "n4797", + "loc": [-85.631629, 41.944823] + }, + "n4798": { + "id": "n4798", + "loc": [-85.631766, 41.944958] + }, + "n4799": { + "id": "n4799", + "loc": [-85.631689, 41.945318] + }, "n48": { "id": "n48", "loc": [-85.636689, 41.94276] @@ -17562,42 +17602,442 @@ "id": "n480", "loc": [-85.634908, 41.94279] }, + "n4800": { + "id": "n4800", + "loc": [-85.615069, 41.945527] + }, + "n4801": { + "id": "n4801", + "loc": [-85.615058, 41.946677] + }, + "n4802": { + "id": "n4802", + "loc": [-85.613692, 41.946689] + }, + "n4803": { + "id": "n4803", + "loc": [-85.613475, 41.946531] + }, + "n4804": { + "id": "n4804", + "loc": [-85.611717, 41.946252] + }, + "n4805": { + "id": "n4805", + "loc": [-85.611353, 41.946385] + }, + "n4806": { + "id": "n4806", + "loc": [-85.611304, 41.947397] + }, + "n4807": { + "id": "n4807", + "loc": [-85.610564, 41.947401] + }, + "n4808": { + "id": "n4808", + "loc": [-85.610553, 41.947122] + }, + "n4809": { + "id": "n4809", + "loc": [-85.610194, 41.946992] + }, "n481": { "id": "n481", "loc": [-85.634478, 41.942342] }, + "n4810": { + "id": "n4810", + "loc": [-85.609976, 41.946628] + }, + "n4811": { + "id": "n4811", + "loc": [-85.609769, 41.946523] + }, + "n4812": { + "id": "n4812", + "loc": [-85.609307, 41.946523] + }, + "n4813": { + "id": "n4813", + "loc": [-85.609035, 41.946462] + }, + "n4814": { + "id": "n4814", + "loc": [-85.609018, 41.943277] + }, + "n4815": { + "id": "n4815", + "loc": [-85.609617, 41.943423] + }, + "n4816": { + "id": "n4816", + "loc": [-85.610471, 41.943447] + }, + "n4817": { + "id": "n4817", + "loc": [-85.621491, 41.949168] + }, + "n4818": { + "id": "n4818", + "loc": [-85.620266, 41.94917] + }, + "n4819": { + "id": "n4819", + "loc": [-85.620262, 41.947557] + }, "n482": { "id": "n482", "loc": [-85.634521, 41.942254] }, + "n4820": { + "id": "n4820", + "loc": [-85.620825, 41.947556] + }, + "n4821": { + "id": "n4821", + "loc": [-85.620827, 41.948371] + }, + "n4822": { + "id": "n4822", + "loc": [-85.621489, 41.94837] + }, + "n4823": { + "id": "n4823", + "loc": [-85.622865, 41.950928] + }, + "n4824": { + "id": "n4824", + "loc": [-85.622858, 41.949744] + }, + "n4825": { + "id": "n4825", + "loc": [-85.623696, 41.949714] + }, + "n4826": { + "id": "n4826", + "loc": [-85.623696, 41.949647] + }, + "n4827": { + "id": "n4827", + "loc": [-85.624019, 41.949647] + }, + "n4828": { + "id": "n4828", + "loc": [-85.624024, 41.950093] + }, + "n4829": { + "id": "n4829", + "loc": [-85.622885, 41.949711] + }, "n483": { "id": "n483", "loc": [-85.63425, 41.941819] }, + "n4830": { + "id": "n4830", + "loc": [-85.624584, 41.951049] + }, + "n4831": { + "id": "n4831", + "loc": [-85.624669, 41.9511] + }, + "n4832": { + "id": "n4832", + "loc": [-85.624316, 41.952218] + }, + "n4833": { + "id": "n4833", + "loc": [-85.623819, 41.952094] + }, + "n4834": { + "id": "n4834", + "loc": [-85.623385, 41.952101] + }, + "n4835": { + "id": "n4835", + "loc": [-85.623456, 41.951238] + }, + "n4836": { + "id": "n4836", + "loc": [-85.623535, 41.951051] + }, + "n4837": { + "id": "n4837", + "loc": [-85.624693, 41.950921] + }, + "n4838": { + "id": "n4838", + "loc": [-85.624727, 41.950897] + }, + "n4839": { + "id": "n4839", + "loc": [-85.624869, 41.950341] + }, "n484": { "id": "n484", "loc": [-85.634324, 41.942131] }, + "n4840": { + "id": "n4840", + "loc": [-85.624859, 41.949284] + }, + "n4841": { + "id": "n4841", + "loc": [-85.624788, 41.949262] + }, + "n4842": { + "id": "n4842", + "loc": [-85.62402, 41.949265] + }, + "n4843": { + "id": "n4843", + "loc": [-85.610382, 41.954663] + }, + "n4844": { + "id": "n4844", + "loc": [-85.605675, 41.954667] + }, + "n4845": { + "id": "n4845", + "loc": [-85.605669, 41.949407] + }, + "n4846": { + "id": "n4846", + "loc": [-85.610376, 41.949404] + }, + "n4847": { + "id": "n4847", + "loc": [-85.605552, 41.958536] + }, + "n4848": { + "id": "n4848", + "loc": [-85.595755, 41.958588] + }, + "n4849": { + "id": "n4849", + "loc": [-85.595732, 41.956419] + }, "n485": { "id": "n485", "loc": [-85.634211, 41.941374] }, + "n4850": { + "id": "n4850", + "loc": [-85.596908, 41.955605] + }, + "n4851": { + "id": "n4851", + "loc": [-85.597723, 41.955596] + }, + "n4852": { + "id": "n4852", + "loc": [-85.597715, 41.954967] + }, + "n4853": { + "id": "n4853", + "loc": [-85.5874, 41.955018] + }, + "n4854": { + "id": "n4854", + "loc": [-85.586615, 41.955124] + }, + "n4855": { + "id": "n4855", + "loc": [-85.58613, 41.955293] + }, + "n4856": { + "id": "n4856", + "loc": [-85.586166, 41.962122] + }, + "n4857": { + "id": "n4857", + "loc": [-85.587008, 41.955052] + }, + "n4858": { + "id": "n4858", + "loc": [-85.591685, 41.95499] + }, + "n4859": { + "id": "n4859", + "loc": [-85.591718, 41.956649] + }, "n486": { "id": "n486", "loc": [-85.634085, 41.940704] }, + "n4860": { + "id": "n4860", + "loc": [-85.591133, 41.956649] + }, + "n4861": { + "id": "n4861", + "loc": [-85.591061, 41.95582] + }, + "n4862": { + "id": "n4862", + "loc": [-85.590677, 41.95613] + }, + "n4863": { + "id": "n4863", + "loc": [-85.590826, 41.956369] + }, + "n4864": { + "id": "n4864", + "loc": [-85.591016, 41.954991] + }, + "n4865": { + "id": "n4865", + "loc": [-85.587656, 41.954855] + }, + "n4866": { + "id": "n4866", + "loc": [-85.5964, 41.955274] + }, + "n4867": { + "id": "n4867", + "loc": [-85.58776, 41.96178] + }, + "n4868": { + "id": "n4868", + "loc": [-85.601172, 41.960448] + }, + "n4869": { + "id": "n4869", + "loc": [-85.589489, 41.960478] + }, "n487": { "id": "n487", "loc": [-85.635567, 41.940944] }, + "n4870": { + "id": "n4870", + "loc": [-85.586664, 41.960493] + }, + "n4871": { + "id": "n4871", + "loc": [-85.591227, 41.95676] + }, + "n4872": { + "id": "n4872", + "loc": [-85.589424, 41.958093] + }, + "n4873": { + "id": "n4873", + "loc": [-85.588779, 41.957611] + }, + "n4874": { + "id": "n4874", + "loc": [-85.590583, 41.956278] + }, + "n4875": { + "id": "n4875", + "loc": [-85.590759, 41.957106] + }, + "n4876": { + "id": "n4876", + "loc": [-85.592213, 41.958218] + }, + "n4877": { + "id": "n4877", + "loc": [-85.592262, 41.958279] + }, + "n4878": { + "id": "n4878", + "loc": [-85.592304, 41.958358] + }, + "n4879": { + "id": "n4879", + "loc": [-85.592351, 41.95849] + }, "n488": { "id": "n488", "loc": [-85.635542, 41.940919] }, + "n4880": { + "id": "n4880", + "loc": [-85.592363, 41.958605] + }, + "n4881": { + "id": "n4881", + "loc": [-85.592383, 41.96047] + }, + "n4882": { + "id": "n4882", + "loc": [-85.592376, 41.959808] + }, + "n4883": { + "id": "n4883", + "loc": [-85.600825, 41.959779] + }, + "n4884": { + "id": "n4884", + "loc": [-85.601084, 41.959844] + }, + "n4885": { + "id": "n4885", + "loc": [-85.601144, 41.959908] + }, + "n4886": { + "id": "n4886", + "loc": [-85.601164, 41.960008] + }, + "n4887": { + "id": "n4887", + "loc": [-85.601162, 41.960125] + }, + "n4888": { + "id": "n4888", + "loc": [-85.601134, 41.960221] + }, + "n4889": { + "id": "n4889", + "loc": [-85.600993, 41.960353] + }, "n489": { "id": "n489", "loc": [-85.635514, 41.940906] }, + "n4890": { + "id": "n4890", + "loc": [-85.600794, 41.960449] + }, + "n4891": { + "id": "n4891", + "loc": [-85.60098, 41.959792] + }, + "n4892": { + "id": "n4892", + "loc": [-85.601067, 41.960294] + }, + "n4893": { + "id": "n4893", + "loc": [-85.596829, 41.959793] + }, + "n4894": { + "id": "n4894", + "loc": [-85.596839, 41.960459] + }, + "n4895": { + "id": "n4895", + "loc": [-85.589364, 41.958048] + }, + "n4896": { + "id": "n4896", + "loc": [-85.587374, 41.959511] + }, + "n4897": { + "id": "n4897", + "loc": [-85.587286, 41.959564] + }, + "n4898": { + "id": "n4898", + "loc": [-85.587163, 41.959632] + }, + "n4899": { + "id": "n4899", + "loc": [-85.586694, 41.959865] + }, "n49": { "id": "n49", "loc": [-85.637127, 41.942757] @@ -17606,42 +18046,442 @@ "id": "n490", "loc": [-85.635469, 41.940896] }, + "n4900": { + "id": "n4900", + "loc": [-85.586634, 41.959921] + }, + "n4901": { + "id": "n4901", + "loc": [-85.586607, 41.960001] + }, + "n4902": { + "id": "n4902", + "loc": [-85.586599, 41.960099] + }, + "n4903": { + "id": "n4903", + "loc": [-85.586602, 41.96034] + }, + "n4904": { + "id": "n4904", + "loc": [-85.586669, 41.960439] + }, + "n4905": { + "id": "n4905", + "loc": [-85.586758, 41.960493] + }, + "n4906": { + "id": "n4906", + "loc": [-85.586618, 41.960391] + }, + "n4907": { + "id": "n4907", + "loc": [-85.591201, 41.956352] + }, + "n4908": { + "id": "n4908", + "loc": [-85.59112, 41.954843] + }, + "n4909": { + "id": "n4909", + "loc": [-85.591536, 41.956349] + }, "n491": { "id": "n491", "loc": [-85.635667, 41.940826] }, + "n4910": { + "id": "n4910", + "loc": [-85.590953, 41.956354] + }, + "n4911": { + "id": "n4911", + "loc": [-85.591468, 41.956406] + }, + "n4912": { + "id": "n4912", + "loc": [-85.591469, 41.956478] + }, + "n4913": { + "id": "n4913", + "loc": [-85.591123, 41.956481] + }, + "n4914": { + "id": "n4914", + "loc": [-85.591121, 41.956409] + }, + "n4915": { + "id": "n4915", + "loc": [-85.590826, 41.955954] + }, + "n4916": { + "id": "n4916", + "loc": [-85.590612, 41.956115] + }, + "n4917": { + "id": "n4917", + "loc": [-85.590402, 41.955962] + }, + "n4918": { + "id": "n4918", + "loc": [-85.590622, 41.955804] + }, + "n4919": { + "id": "n4919", + "loc": [-85.59011, 41.956502] + }, "n492": { "id": "n492", "loc": [-85.636197, 41.940599] }, + "n4920": { + "id": "n4920", + "loc": [-85.589877, 41.956668] + }, + "n4921": { + "id": "n4921", + "loc": [-85.589777, 41.95659] + }, + "n4922": { + "id": "n4922", + "loc": [-85.59001, 41.956424] + }, + "n4923": { + "id": "n4923", + "loc": [-85.589595, 41.956427] + }, + "n4924": { + "id": "n4924", + "loc": [-85.589434, 41.956549] + }, + "n4925": { + "id": "n4925", + "loc": [-85.589262, 41.956424] + }, + "n4926": { + "id": "n4926", + "loc": [-85.589422, 41.956302] + }, + "n4927": { + "id": "n4927", + "loc": [-85.589358, 41.956286] + }, + "n4928": { + "id": "n4928", + "loc": [-85.5892, 41.956408] + }, + "n4929": { + "id": "n4929", + "loc": [-85.589032, 41.956288] + }, "n493": { "id": "n493", "loc": [-85.6362, 41.940686] }, + "n4930": { + "id": "n4930", + "loc": [-85.58919, 41.956166] + }, + "n4931": { + "id": "n4931", + "loc": [-85.589165, 41.956132] + }, + "n4932": { + "id": "n4932", + "loc": [-85.589002, 41.956253] + }, + "n4933": { + "id": "n4933", + "loc": [-85.588826, 41.956122] + }, + "n4934": { + "id": "n4934", + "loc": [-85.588989, 41.956001] + }, + "n4935": { + "id": "n4935", + "loc": [-85.588673, 41.955757] + }, + "n4936": { + "id": "n4936", + "loc": [-85.588502, 41.955882] + }, + "n4937": { + "id": "n4937", + "loc": [-85.588339, 41.955759] + }, + "n4938": { + "id": "n4938", + "loc": [-85.58851, 41.955633] + }, + "n4939": { + "id": "n4939", + "loc": [-85.590382, 41.955892] + }, "n494": { "id": "n494", "loc": [-85.635969, 41.94069] }, + "n4940": { + "id": "n4940", + "loc": [-85.589923, 41.956231] + }, + "n4941": { + "id": "n4941", + "loc": [-85.58984, 41.956168] + }, + "n4942": { + "id": "n4942", + "loc": [-85.5903, 41.95583] + }, + "n4943": { + "id": "n4943", + "loc": [-85.589636, 41.956038] + }, + "n4944": { + "id": "n4944", + "loc": [-85.589546, 41.956105] + }, + "n4945": { + "id": "n4945", + "loc": [-85.589045, 41.955729] + }, + "n4946": { + "id": "n4946", + "loc": [-85.589135, 41.955662] + }, + "n4947": { + "id": "n4947", + "loc": [-85.590718, 41.955293] + }, + "n4948": { + "id": "n4948", + "loc": [-85.590718, 41.955374] + }, + "n4949": { + "id": "n4949", + "loc": [-85.589211, 41.955369] + }, "n495": { "id": "n495", "loc": [-85.635965, 41.940561] }, + "n4950": { + "id": "n4950", + "loc": [-85.589212, 41.955287] + }, + "n4951": { + "id": "n4951", + "loc": [-85.589675, 41.956817] + }, + "n4952": { + "id": "n4952", + "loc": [-85.58947, 41.95697] + }, + "n4953": { + "id": "n4953", + "loc": [-85.589219, 41.956784] + }, + "n4954": { + "id": "n4954", + "loc": [-85.589425, 41.95663] + }, + "n4955": { + "id": "n4955", + "loc": [-85.589373, 41.95702] + }, + "n4956": { + "id": "n4956", + "loc": [-85.589171, 41.957172] + }, + "n4957": { + "id": "n4957", + "loc": [-85.588962, 41.957019] + }, + "n4958": { + "id": "n4958", + "loc": [-85.589164, 41.956867] + }, + "n4959": { + "id": "n4959", + "loc": [-85.588881, 41.955006] + }, "n496": { "id": "n496", "loc": [-85.636031, 41.94056] }, + "n4960": { + "id": "n4960", + "loc": [-85.588804, 41.955006] + }, + "n4961": { + "id": "n4961", + "loc": [-85.604773, 41.954521] + }, + "n4962": { + "id": "n4962", + "loc": [-85.601603, 41.954527] + }, + "n4963": { + "id": "n4963", + "loc": [-85.600823, 41.954169] + }, + "n4964": { + "id": "n4964", + "loc": [-85.600828, 41.950191] + }, + "n4965": { + "id": "n4965", + "loc": [-85.601673, 41.949457] + }, + "n4966": { + "id": "n4966", + "loc": [-85.604464, 41.949488] + }, + "n4967": { + "id": "n4967", + "loc": [-85.60538, 41.950212] + }, + "n4968": { + "id": "n4968", + "loc": [-85.605395, 41.954108] + }, + "n4969": { + "id": "n4969", + "loc": [-85.604771, 41.954109] + }, "n497": { "id": "n497", "loc": [-85.636032, 41.940602] }, + "n4970": { + "id": "n4970", + "loc": [-85.600613, 41.953916] + }, + "n4971": { + "id": "n4971", + "loc": [-85.599758, 41.954649] + }, + "n4972": { + "id": "n4972", + "loc": [-85.591194, 41.954663] + }, + "n4973": { + "id": "n4973", + "loc": [-85.591182, 41.950465] + }, + "n4974": { + "id": "n4974", + "loc": [-85.591871, 41.950464] + }, + "n4975": { + "id": "n4975", + "loc": [-85.591868, 41.949209] + }, + "n4976": { + "id": "n4976", + "loc": [-85.592155, 41.949209] + }, + "n4977": { + "id": "n4977", + "loc": [-85.592155, 41.94848] + }, + "n4978": { + "id": "n4978", + "loc": [-85.600615, 41.948482] + }, + "n4979": { + "id": "n4979", + "loc": [-85.605421, 41.949378] + }, "n498": { "id": "n498", "loc": [-85.635776, 41.940583] }, + "n4980": { + "id": "n4980", + "loc": [-85.600614, 41.949373] + }, + "n4981": { + "id": "n4981", + "loc": [-85.601316, 41.94849] + }, + "n4982": { + "id": "n4982", + "loc": [-85.601592, 41.947641] + }, + "n4983": { + "id": "n4983", + "loc": [-85.60395, 41.947618] + }, + "n4984": { + "id": "n4984", + "loc": [-85.603973, 41.948114] + }, + "n4985": { + "id": "n4985", + "loc": [-85.605398, 41.948103] + }, + "n4986": { + "id": "n4986", + "loc": [-85.614017, 41.965566] + }, + "n4987": { + "id": "n4987", + "loc": [-85.605787, 41.965619] + }, + "n4988": { + "id": "n4988", + "loc": [-85.60577, 41.963821] + }, + "n4989": { + "id": "n4989", + "loc": [-85.612886, 41.963808] + }, "n499": { "id": "n499", "loc": [-85.63589, 41.940578] }, + "n4990": { + "id": "n4990", + "loc": [-85.613207, 41.963705] + }, + "n4991": { + "id": "n4991", + "loc": [-85.613511, 41.963525] + }, + "n4992": { + "id": "n4992", + "loc": [-85.613667, 41.963305] + }, + "n4993": { + "id": "n4993", + "loc": [-85.613779, 41.962983] + }, + "n4994": { + "id": "n4994", + "loc": [-85.613797, 41.959709] + }, + "n4995": { + "id": "n4995", + "loc": [-85.613663, 41.95936] + }, + "n4996": { + "id": "n4996", + "loc": [-85.61339, 41.959064] + }, + "n4997": { + "id": "n4997", + "loc": [-85.610503, 41.956898] + }, + "n4998": { + "id": "n4998", + "loc": [-85.610485, 41.956595] + }, + "n4999": { + "id": "n4999", + "loc": [-85.613892, 41.956621] + }, "n5": { "id": "n5", "loc": [-85.622744, 41.95268] @@ -17654,18 +18494,162 @@ "id": "n500", "loc": [-85.636198, 41.940578] }, + "n5000": { + "id": "n5000", + "loc": [-85.613866, 41.958574] + }, + "n5001": { + "id": "n5001", + "loc": [-85.615262, 41.958561] + }, + "n5002": { + "id": "n5002", + "loc": [-85.615279, 41.959541] + }, + "n5003": { + "id": "n5003", + "loc": [-85.615314, 41.95597] + }, + "n5004": { + "id": "n5004", + "loc": [-85.613887, 41.955988] + }, + "n5005": { + "id": "n5005", + "loc": [-85.613074, 41.962244] + }, + "n5006": { + "id": "n5006", + "loc": [-85.611678, 41.963354] + }, + "n5007": { + "id": "n5007", + "loc": [-85.611678, 41.963487] + }, + "n5008": { + "id": "n5008", + "loc": [-85.606906, 41.963502] + }, + "n5009": { + "id": "n5009", + "loc": [-85.605777, 41.962657] + }, "n501": { "id": "n501", "loc": [-85.636251, 41.940584] }, + "n5010": { + "id": "n5010", + "loc": [-85.605711, 41.9599] + }, + "n5011": { + "id": "n5011", + "loc": [-85.608139, 41.9585] + }, + "n5012": { + "id": "n5012", + "loc": [-85.60814, 41.956306] + }, + "n5013": { + "id": "n5013", + "loc": [-85.608854, 41.95581] + }, + "n5014": { + "id": "n5014", + "loc": [-85.610039, 41.955883] + }, + "n5015": { + "id": "n5015", + "loc": [-85.610068, 41.956754] + }, + "n5016": { + "id": "n5016", + "loc": [-85.613058, 41.959411] + }, + "n5017": { + "id": "n5017", + "loc": [-85.610234, 41.957068] + }, + "n5018": { + "id": "n5018", + "loc": [-85.609826, 41.95581] + }, + "n5019": { + "id": "n5019", + "loc": [-85.606987, 41.958505] + }, "n502": { "id": "n502", "loc": [-85.636279, 41.940605] }, + "n5020": { + "id": "n5020", + "loc": [-85.606498, 41.958846] + }, + "n5021": { + "id": "n5021", + "loc": [-85.606013, 41.959342] + }, + "n5022": { + "id": "n5022", + "loc": [-85.614553, 41.961581] + }, + "n5023": { + "id": "n5023", + "loc": [-85.61465, 41.96214] + }, + "n5024": { + "id": "n5024", + "loc": [-85.615277, 41.962442] + }, + "n5025": { + "id": "n5025", + "loc": [-85.615451, 41.962972] + }, + "n5026": { + "id": "n5026", + "loc": [-85.614355, 41.964826] + }, + "n5027": { + "id": "n5027", + "loc": [-85.615133, 41.964589] + }, + "n5028": { + "id": "n5028", + "loc": [-85.615342, 41.963818] + }, + "n5029": { + "id": "n5029", + "loc": [-85.615971, 41.963792] + }, "n503": { "id": "n503", "loc": [-85.636285, 41.940633] }, + "n5030": { + "id": "n5030", + "loc": [-85.615751, 41.963122] + }, + "n5031": { + "id": "n5031", + "loc": [-85.616575, 41.963123] + }, + "n5032": { + "id": "n5032", + "loc": [-85.612527, 41.963846] + }, + "n5033": { + "id": "n5033", + "loc": [-85.630653, 41.940709] + }, + "n5034": { + "id": "n5034", + "loc": [-85.629858, 41.939568] + }, + "n5035": { + "id": "n5035", + "loc": [-85.629847, 41.937926] + }, "n504": { "id": "n504", "loc": [-85.636281, 41.940662] @@ -24398,7 +25382,7 @@ }, "w527": { "id": "w527", - "nodes": ["n2934", "n2935", "n2936", "n2937", "n2938", "n2939", "n2934"], + "nodes": ["n4785", "n4784", "n2936", "n4788", "n4787", "n4786", "n4785"], "tags": { "amenity": "parking" } @@ -25052,7 +26036,7 @@ "id": "w584", "nodes": ["n3243", "n3242", "n3241", "n3240", "n3243"], "tags": { - "building": "yes" + "building": "industrial" } }, "w585": { @@ -25075,7 +26059,7 @@ "id": "w587", "nodes": ["n3269", "n3268", "n3267", "n3266", "n3265", "n3264", "n3263", "n3262", "n3269"], "tags": { - "building": "yes" + "building": "industrial" } }, "w588": { @@ -25113,7 +26097,7 @@ "id": "w591", "nodes": ["n3253", "n3252", "n3251", "n3250", "n3249", "n3248", "n3253"], "tags": { - "building": "yes" + "building": "industrial" } }, "w592": { @@ -25148,7 +26132,7 @@ "id": "w593", "nodes": ["n3261", "n3260", "n3259", "n3258", "n3257", "n3256", "n3255", "n3254", "n3261"], "tags": { - "building": "yes" + "building": "industrial" } }, "w594": { @@ -25162,7 +26146,7 @@ "id": "w595", "nodes": ["n3247", "n3246", "n3245", "n3244", "n3247"], "tags": { - "building": "yes" + "building": "industrial" } }, "w596": { @@ -25187,33 +26171,6 @@ "building": "school" } }, - "w599": { - "id": "w599", - "nodes": [ - "n3371", - "n3370", - "n3369", - "n3368", - "n3367", - "n3366", - "n3365", - "n3358", - "n3357", - "n3356", - "n3359", - "n3364", - "n3355", - "n3354", - "n3363", - "n3362", - "n3361", - "n3360", - "n3371" - ], - "tags": { - "building": "yes" - } - }, "w6": { "id": "w6", "nodes": ["n879", "n880", "n881", "n882", "n879"], @@ -25411,13 +26368,6 @@ "building": "yes" } }, - "w618": { - "id": "w618", - "nodes": ["n3352", "n3351", "n3350", "n3349", "n3348", "n3347", "n3352"], - "tags": { - "amenity": "parking" - } - }, "w619": { "id": "w619", "nodes": ["n2863", "n3424", "n3425", "n3426", "n3427", "n3428", "n3429", "n3430", "n3431", "n3432", "n3433", "n2844"], @@ -25482,6 +26432,7 @@ "n3499", "n3490", "n3489", + "n4800", "n3417" ], "tags": { @@ -25659,13 +26610,6 @@ "name": "Bowman Park" } }, - "w635": { - "id": "w635", - "nodes": ["n3513", "n3514", "n3515", "n3516", "n3513"], - "tags": { - "building": "yes" - } - }, "w636": { "id": "w636", "nodes": ["n2745", "n3752", "n3204", "n3201", "n3415", "n2761", "n2767", "n3411"], @@ -25974,8 +26918,7 @@ ], "tags": { "admin_level": "8", - "boundary": "administrative", - "landuse": "residential" + "boundary": "administrative" } }, "w643": { @@ -26035,7 +26978,7 @@ "id": "w647", "nodes": ["n2874", "n2875", "n2876", "n2954", "n2874"], "tags": { - "building": "yes" + "building": "industrial" } }, "w648": { @@ -26284,7 +27227,7 @@ }, "w670": { "id": "w670", - "nodes": ["n3473", "n3859", "n3860", "n3980"], + "nodes": ["n3473", "n3859", "n3860", "n3980", "n4908", "n4865"], "tags": { "highway": "secondary", "name": "Hoffman Street", @@ -27664,6 +28607,202 @@ "highway": "footway" } }, + "w820": { + "id": "w820", + "nodes": [ + "n4785", + "n4786", + "n4787", + "n4788", + "n1684", + "n4760", + "n4769", + "n4761", + "n4762", + "n4763", + "n4764", + "n4765", + "n4766", + "n4767", + "n4768", + "n4785" + ], + "tags": { + "natural": "wood" + } + }, + "w821": { + "id": "w821", + "nodes": [ + "n4769", + "n4770", + "n4771", + "n4772", + "n4773", + "n4774", + "n4775", + "n4776", + "n4777", + "n4778", + "n4779", + "n4780", + "n4781", + "n4782", + "n4783", + "n4784", + "n4785", + "n4768", + "n4767", + "n4766", + "n4765", + "n4764", + "n4763", + "n4762", + "n4761", + "n4769" + ], + "tags": { + "natural": "scrub" + } + }, + "w822": { + "id": "w822", + "nodes": [ + "n4772", + "n4789", + "n4790", + "n4791", + "n4792", + "n4793", + "n4794", + "n4795", + "n4796", + "n4797", + "n4798", + "n4799", + "n4783", + "n4782", + "n4781", + "n4780", + "n4779", + "n4778", + "n4777", + "n4776", + "n4775", + "n4774", + "n4773", + "n4772" + ], + "tags": { + "natural": "wood" + } + }, + "w823": { + "id": "w823", + "nodes": [ + "n4800", + "n4801", + "n4802", + "n4803", + "n4804", + "n4805", + "n4806", + "n4807", + "n4808", + "n4809", + "n4810", + "n4811", + "n4812", + "n4813", + "n4814", + "n4815", + "n4816", + "n3490", + "n3489", + "n4800" + ], + "tags": { + "natural": "wood" + } + }, + "w824": { + "id": "w824", + "nodes": ["n4817", "n4818", "n4819", "n4820", "n4821", "n4822", "n4817"], + "tags": { + "landuse": "recreation_ground" + } + }, + "w825": { + "id": "w825", + "nodes": [ + "n4563", + "n4823", + "n4824", + "n4829", + "n4825", + "n4826", + "n4827", + "n4828","n4562", "n4563"], + "tags": { + "landuse": "recreation_ground" + } + }, + "w826": { + "id": "w826", + "nodes": ["n4830", "n4831", "n4832", "n4833", "n4834", "n4835", "n4836", "n4830"], + "tags": { + "landuse": "industrial" + } + }, + "w827": { + "id": "w827", + "nodes": [ + "n4563", + "n4837", + "n4838", + "n4839", + "n4840", + "n4841", + "n4842", + "n4827", + "n4828","n4562", "n4563"], + "tags": { + "landuse": "industrial" + } + }, + "w828": { + "id": "w828", + "nodes": ["n4843", "n4844", "n4845", "n4846", "n4843"], + "tags": { + "landuse": "farmland" + } + }, + "w829": { + "id": "w829", + "nodes": [ + "n3712", + "n4847", + "n4848", + "n4849", + "n4850", + "n4851", + "n4852", + "n4858", + "n4864", + "n4959", + "n4960", + "n4853", + "n4857", + "n4854", + "n4855", + "n4856", + "n3712" + ], + "tags": { + "aeroway": "aerodrome", + "name": "Three Rivers Municipal Airport" + } + }, "w83": { "id": "w83", "nodes": ["n371", "n372", "n373", "n374", "n371"], @@ -27671,6 +28810,78 @@ "building": "yes" } }, + "w830": { + "id": "w830", + "nodes": ["n4855", "n4854", "n4857", "n4853", "n4960"], + "tags": { + "barrier": "fence" + } + }, + "w831": { + "id": "w831", + "nodes": ["n4860", "n4859", "n4858", "n4852", "n4851"], + "tags": { + "barrier": "fence" + } + }, + "w832": { + "id": "w832", + "nodes": ["n4866", "n4878", "n4869", "n4867"], + "tags": { + "aeroway": "runway", + "ref": "5/23" + } + }, + "w833": { + "id": "w833", + "nodes": ["n4868", "n4890", "n4894", "n4881", "n4869", "n4905", "n4870"], + "tags": { + "aeroway": "runway", + "ref": "9/27" + } + }, + "w834": { + "id": "w834", + "nodes": ["n4871", "n4875", "n4872", "n4895", "n4873", "n4874", "n4871"], + "tags": { + "aeroway": "apron" + } + }, + "w835": { + "id": "w835", + "nodes": ["n4875", "n4876", "n4877", "n4878", "n4879", "n4880", "n4882", "n4881"], + "tags": { + "aeroway": "taxiway" + } + }, + "w836": { + "id": "w836", + "nodes": ["n4882", "n4893", "n4883", "n4891", "n4884", "n4885", "n4886", "n4887", "n4888", "n4892", "n4889", "n4890"], + "tags": { + "aeroway": "taxiway" + } + }, + "w837": { + "id": "w837", + "nodes": ["n4893", "n4894"], + "tags": { + "aeroway": "taxiway" + } + }, + "w838": { + "id": "w838", + "nodes": ["n4895", "n4896", "n4897", "n4898", "n4899", "n4900", "n4901", "n4902", "n4903", "n4906", "n4904", "n4905"], + "tags": { + "aeroway": "taxiway" + } + }, + "w839": { + "id": "w839", + "nodes": ["n4907", "n4908"], + "tags": { + "highway": "service" + } + }, "w84": { "id": "w84", "nodes": ["n374", "n375", "n376", "n377", "n373", "n374"], @@ -27678,6 +28889,83 @@ "building": "yes" } }, + "w840": { + "id": "w840", + "nodes": ["n4909", "n4907", "n4910"], + "tags": { + "highway": "service" + } + }, + "w841": { + "id": "w841", + "nodes": ["n4911", "n4912", "n4913", "n4914", "n4911"], + "tags": { + "building": "yes" + } + }, + "w842": { + "id": "w842", + "nodes": ["n4915", "n4916", "n4917", "n4918", "n4915"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w843": { + "id": "w843", + "nodes": ["n4919", "n4920", "n4921", "n4922", "n4919"], + "tags": { + "building": "yes" + } + }, + "w844": { + "id": "w844", + "nodes": ["n4923", "n4924", "n4925", "n4926", "n4923"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w845": { + "id": "w845", + "nodes": ["n4927", "n4928", "n4929", "n4930", "n4927"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w846": { + "id": "w846", + "nodes": ["n4931", "n4932", "n4933", "n4934", "n4931"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w847": { + "id": "w847", + "nodes": ["n4935", "n4936", "n4937", "n4938", "n4935"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w848": { + "id": "w848", + "nodes": ["n4939", "n4940", "n4941", "n4942", "n4939"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w849": { + "id": "w849", + "nodes": ["n4943", "n4944", "n4945", "n4946", "n4943"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, "w85": { "id": "w85", "nodes": ["n431", "n432", "n1038", "n433", "n434", "n1040", "n431"], @@ -27685,6 +28973,128 @@ "building": "yes" } }, + "w850": { + "id": "w850", + "nodes": ["n4947", "n4948", "n4949", "n4950", "n4947"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w851": { + "id": "w851", + "nodes": ["n4951", "n4952", "n4953", "n4954", "n4951"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w852": { + "id": "w852", + "nodes": ["n4955", "n4956", "n4957", "n4958", "n4955"], + "tags": { + "aeroway": "hangar", + "building": "yes" + } + }, + "w853": { + "id": "w853", + "nodes": ["n4959", "n4864", "n4861", "n4862", "n4863"], + "tags": { + "barrier": "fence" + } + }, + "w854": { + "id": "w854", + "nodes": ["n4961", "n4962", "n4963", "n4964", "n4965", "n4966", "n4967", "n4968", "n4969", "n4961"], + "tags": { + "landuse": "farmland" + } + }, + "w855": { + "id": "w855", + "nodes": ["n4970", "n4971", "n4972", "n4973", "n4974", "n4975", "n4976", "n4977", "n4978", "n4980", "n4970"], + "tags": { + "landuse": "farmland" + } + }, + "w856": { + "id": "w856", + "nodes": ["n4979", "n4980", "n4978", "n4981", "n4982", "n4983", "n4984", "n4985", "n4979"], + "tags": { + "natural": "scrub" + } + }, + "w857": { + "id": "w857", + "nodes": [ + "n4986", + "n4987", + "n4988", + "n5032", + "n4989", + "n4990", + "n4991", + "n4992", + "n4993", + "n4994", + "n4995", + "n4996", + "n4997", + "n4998", + "n4999", + "n5000", + "n5001", + "n5002", + "n5022", + "n5023", + "n5024", + "n5025", + "n5030", + "n5031", + "n5029", + "n5028", + "n5027", + "n5026", + "n4986" + ], + "tags": { + "landuse": "farmland" + } + }, + "w858": { + "id": "w858", + "nodes": ["n5001", "n5003", "n5004", "n4999", "n5000", "n5001"], + "tags": { + "natural": "scrub" + } + }, + "w859": { + "id": "w859", + "nodes": [ + "n5005", + "n5006", + "n5007", + "n5008", + "n5009", + "n5010", + "n5021", + "n5020", + "n5019", + "n5011", + "n5012", + "n5013", + "n5018", + "n5014", + "n5015", + "n5017", + "n5016", + "n5005" + ], + "tags": { + "landuse": "farmland" + } + }, "w86": { "id": "w86", "nodes": ["n384", "n385", "n386", "n387", "n384"], @@ -27692,6 +29102,38 @@ "building": "yes" } }, + "w860": { + "id": "w860", + "nodes": [ + "n3020", + "n5033", + "n5034", + "n5035", + "n3179", + "n3180", + "n3191", + "n3181", + "n3190", + "n3182", + "n3183", + "n3184", + "n3185", + "n3186", + "n3187", + "n3188", + "n3189", + "n3160", + "n3161", + "n3162", + "n2126", + "n2153", + "n2288", + "n3020" + ], + "tags": { + "landuse": "industrial" + } + }, "w87": { "id": "w87", "nodes": ["n387", "n388", "n389", "n386", "n387"], diff --git a/dist/locales/en.json b/dist/locales/en.json index 7ab0fd279..bad6566ea 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -735,6 +735,7 @@ "three-rivers-fire-department": "Three Rivers Fire Department", "three-rivers-high-school": "Three Rivers High School", "three-rivers-middle-school": "Three Rivers Middle School", + "three-rivers-municipal-airport": "Three Rivers Municipal Airport", "three-rivers-post-office": "Three Rivers Post Office", "three-rivers-public-library": "Three Rivers Public Library", "three-rivers": "Three Rivers", From cf9eb22e5ff16f1332a5351235c8edc5b8b16539 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 17:51:22 -0400 Subject: [PATCH 88/91] Adjust language, remove curtain for play steps --- data/core.yaml | 14 +++---- dist/locales/en.json | 12 +++--- modules/ui/curtain.js | 76 ++++++++++++++++++++++------------ modules/ui/intro/area.js | 9 ++-- modules/ui/intro/building.js | 9 ++-- modules/ui/intro/line.js | 11 +++-- modules/ui/intro/navigation.js | 46 ++++++++++++++++---- modules/ui/intro/point.js | 9 ++-- 8 files changed, 119 insertions(+), 67 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 3aa273c91..32f285ecf 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -454,7 +454,7 @@ en: help_link_text: Details help_link_url: "https://wiki.openstreetmap.org/wiki/FAQ#I_have_just_made_some_changes_to_the_map._How_do_I_get_to_see_my_changes.3F" confirm: - okay: "Okay" + okay: "OK" cancel: "Cancel" splash: welcome: Welcome to the iD OpenStreetMap editor @@ -909,12 +909,12 @@ en: selected_townhall: "Great! The point is now selected. Selected features are drawn with a pulsing glow." editor_townhall: "When a feature is selected, the *feature editor* is displayed alongside the map." preset_townhall: "The top part of the feature editor shows the feature's type. This point is a {preset}." - fields_townhall: "The middle part of the feature editor shows *fields* containing the feature's attributes, such as its name and address." + fields_townhall: "The middle part of the feature editor contains *fields* showing the feature's attributes, such as its name and address." close_townhall: "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" search_street: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose_street: "**Choose {name} from the list to select it.**" selected_street: "Great! {name} is now selected." - editor_street: "The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" + editor_street: "The fields shown for a street are different than the fields that were shown for the town hall. Now we see fields like {field1} and {field2}. **Close the feature editor by hitting escape or pressing the {button} button.**" play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" @@ -923,13 +923,13 @@ en: search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**" choose_cafe: "**Choose {preset} from the list.**" feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." - add_name: "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" + add_name: "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" add_close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" rightclick: "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" - delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" + delete: "It's OK to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: @@ -962,7 +962,7 @@ en: finish_drag_endpoint: "This spot looks good. **Release the left mouse button to finish dragging.**" start_drag_midpoint: "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" - delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." + delete_lines: "It's OK to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." rightclick_intersection: "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." @@ -980,7 +980,7 @@ en: continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**" retry_building: "It looks like you had some trouble placing the nodes at the building corners. Try again!" choose_category_building: "**Choose {category} from the list**" - choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} building type**" + choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**" close: "**Hit escape or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created and show the edit menu.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index bad6566ea..ef5ceadb0 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -561,7 +561,7 @@ "help_link_url": "https://wiki.openstreetmap.org/wiki/FAQ#I_have_just_made_some_changes_to_the_map._How_do_I_get_to_see_my_changes.3F" }, "confirm": { - "okay": "Okay", + "okay": "OK", "cancel": "Cancel" }, "splash": { @@ -769,12 +769,12 @@ "selected_townhall": "Great! The point is now selected. Selected features are drawn with a pulsing glow.", "editor_townhall": "When a feature is selected, the *feature editor* is displayed alongside the map.", "preset_townhall": "The top part of the feature editor shows the feature's type. This point is a {preset}.", - "fields_townhall": "The middle part of the feature editor shows *fields* containing the feature's attributes, such as its name and address.", + "fields_townhall": "The middle part of the feature editor contains *fields* showing the feature's attributes, such as its name and address.", "close_townhall": "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", "search_street": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose_street": "**Choose {name} from the list to select it.**", "selected_street": "Great! {name} is now selected.", - "editor_street": "The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", + "editor_street": "The fields shown for a street are different than the fields that were shown for the town hall. Now we see fields like {field1} and {field2}. **Close the feature editor by hitting escape or pressing the {button} button.**", "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { @@ -784,13 +784,13 @@ "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**", "choose_cafe": "**Choose {preset} from the list.**", "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", - "add_name": "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", + "add_name": "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", "add_close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", "rightclick": "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", - "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", + "delete": "It's OK to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, @@ -825,7 +825,7 @@ "finish_drag_endpoint": "This spot looks good. **Release the left mouse button to finish dragging.**", "start_drag_midpoint": "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", - "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", + "delete_lines": "It's OK to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", "rightclick_intersection": "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 0e79d7f2b..4d947334e 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -55,28 +55,47 @@ export function uiCurtain() { * Reveal cuts the curtain to highlight the given box, * and shows a tooltip with instructions next to the box. * - * @param {String|ClientRect} [box] box to focus on - * @param {String} [text] text for a tooltip + * @param {String|ClientRect} [box] box used to cut the curtain + * @param {String} [text] text for a tooltip * @param {Object} [options] - * @param {integer} [options.duration] transition time in milliseconds - * @param {string} [options.buttonText] if set, create a button with this text label + * @param {string} [options.tooltipClass] optional class to add to the tooltip + * @param {integer} [options.duration] transition time in milliseconds + * @param {string} [options.buttonText] if set, create a button with this text label * @param {function} [options.buttonCallback] if set, the callback for the button + * @param {String|ClientRect} [options.tooltipBox] box for tooltip position, if different from box for the curtain */ curtain.reveal = function(box, text, options) { - if (typeof box === 'string') box = d3.select(box).node(); - if (box && box.getBoundingClientRect) box = copyBox(box.getBoundingClientRect()); + if (typeof box === 'string') { + box = d3.select(box).node(); + } + if (box && box.getBoundingClientRect) { + box = copyBox(box.getBoundingClientRect()); + } options = options || {}; - if (box && text) { - // pseudo markdown hacks + var tooltipBox; + if (options.tooltipBox) { + tooltipBox = options.tooltipBox; + if (typeof tooltipBox === 'string') { + tooltipBox = d3.select(tooltipBox).node(); + } + if (tooltipBox && tooltipBox.getBoundingClientRect) { + tooltipBox = copyBox(tooltipBox.getBoundingClientRect()); + } + } else { + tooltipBox = box; + } + + if (tooltipBox && text) { + // pseudo markdown bold text for the instruction section.. var parts = text.split('**'); var html = parts[0] ? '' + parts[0] + '' : ''; if (parts[1]) { html += '' + parts[1] + ''; } - // pseudo markdown bold text hack + // pseudo markdown emphasis text.. html = html.replace(/\*(.*?)\*/g, '$1'); @@ -100,7 +119,6 @@ export function uiCurtain() { }); } - // var dimensions = utilGetDimensions(selection, true), var tip = copyBox(tooltip.node().getBoundingClientRect()), w = window.innerWidth, h = window.innerHeight, @@ -109,47 +127,53 @@ export function uiCurtain() { side, pos; // trim box dimensions to just the portion that fits in the window.. - if (box.top + box.height > h) { - box.height -= (box.top + box.height - h); + if (tooltipBox.top + tooltipBox.height > h) { + tooltipBox.height -= (tooltipBox.top + tooltipBox.height - h); } - if (box.left + box.width > w) { - box.width -= (box.left + box.width - w); + if (tooltipBox.left + tooltipBox.width > w) { + tooltipBox.width -= (tooltipBox.left + tooltipBox.width - w); } // determine tooltip placement.. - if (box.top + box.height < 100) { + if (tooltipBox.top + tooltipBox.height < 100) { // tooltip below box.. side = 'bottom'; - pos = [box.left + box.width / 2 - tip.width / 2, box.top + box.height]; + pos = [ + tooltipBox.left + tooltipBox.width / 2 - tip.width / 2, + tooltipBox.top + tooltipBox.height + ]; - } else if (box.top > h - 140) { + } else if (tooltipBox.top > h - 140) { // tooltip above box.. side = 'top'; - pos = [box.left + box.width / 2 - tip.width / 2, box.top - tip.height]; + pos = [ + tooltipBox.left + tooltipBox.width / 2 - tip.width / 2, + tooltipBox.top - tip.height + ]; } else { - // tooltip to the side of the box.. - var tipY = box.top + box.height / 2 - tip.height / 2; + // tooltip to the side of the tooltipBox.. + var tipY = tooltipBox.top + tooltipBox.height / 2 - tip.height / 2; if (textDirection === 'rtl') { - if (box.left - tooltipWidth - tooltipArrow < 70) { + if (tooltipBox.left - tooltipWidth - tooltipArrow < 70) { side = 'right'; - pos = [box.left + box.width + tooltipArrow, tipY]; + pos = [tooltipBox.left + tooltipBox.width + tooltipArrow, tipY]; } else { side = 'left'; - pos = [box.left - tooltipWidth - tooltipArrow, tipY]; + pos = [tooltipBox.left - tooltipWidth - tooltipArrow, tipY]; } } else { - if (box.left + box.width + tooltipArrow + tooltipWidth > w - 70) { + if (tooltipBox.left + tooltipBox.width + tooltipArrow + tooltipWidth > w - 70) { side = 'left'; - pos = [box.left - tooltipWidth - tooltipArrow, tipY]; + pos = [tooltipBox.left - tooltipWidth - tooltipArrow, tipY]; } else { side = 'right'; - pos = [box.left + box.width + tooltipArrow, tipY]; + pos = [tooltipBox.left + tooltipBox.width + tooltipArrow, tipY]; } } } diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index fab963115..4ed4da0d9 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -355,13 +355,12 @@ export function uiIntroArea(context, reveal) { function play() { - reveal('.intro-nav-wrap .chapter-line', + dispatch.call('done'); + reveal('#id-container', t('intro.areas.play', { next: t('intro.lines.title') }), { + tooltipBox: '.intro-nav-wrap .chapter-line', buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 75258383d..b0e5e2c56 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -736,13 +736,12 @@ export function uiIntroBuilding(context, reveal) { function play() { - reveal('.intro-nav-wrap .chapter-startEditing', + dispatch.call('done'); + reveal('#id-container', t('intro.buildings.play', { next: t('intro.startediting.title') }), { + tooltipBox: '.intro-nav-wrap .chapter-startEditing', buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index fbf6d9288..cd8ba272e 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -1035,16 +1035,15 @@ export function uiIntroLine(context, reveal) { function play() { - reveal('.intro-nav-wrap .chapter-building', + dispatch.call('done'); + reveal('#id-container', t('intro.lines.play', { next: t('intro.buildings.title') }), { + tooltipBox: '.intro-nav-wrap .chapter-building', buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); - } + } chapter.enter = function() { diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index f4ee6fd24..6da626e23 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -12,7 +12,9 @@ export function uiIntroNavigation(context, reveal) { townHall = [-85.63591, 41.94285], springStreetId = 'w397', springStreetEndId = 'n1834', - springStreet = [-85.63582, 41.94255]; + springStreet = [-85.63582, 41.94255], + onewayField = context.presets().field('oneway'), + maxspeedField = context.presets().field('maxspeed'); var chapter = { @@ -352,8 +354,20 @@ export function uiIntroNavigation(context, reveal) { continueTo(searchStreet); }); + context.history().on('change.intro', function() { + // update the close icon in the tooltip if the user edits something. + var selector = '.entity-editor-pane button.preset-close svg use'; + var href = d3.select(selector).attr('href') || '#icon-close'; + + reveal('.entity-editor-pane', + t('intro.navigation.close_townhall', { button: icon(href, 'pre-text') }), + { duration: 0 } + ); + }); + function continueTo(nextStep) { context.on('exit.intro', null); + context.history().on('change.intro', null); nextStep(); } } @@ -469,28 +483,46 @@ export function uiIntroNavigation(context, reveal) { var href = d3.select(selector).attr('href') || '#icon-close'; reveal('.entity-editor-pane', - t('intro.navigation.editor_street', { button: icon(href, 'pre-text') }) + t('intro.navigation.editor_street', { + button: icon(href, 'pre-text'), + field1: onewayField.label().toLowerCase(), + field2: maxspeedField.label().toLowerCase() + }) ); context.on('exit.intro', function() { continueTo(play); }); + context.history().on('change.intro', function() { + // update the close icon in the tooltip if the user edits something. + var selector = '.entity-editor-pane button.preset-close svg use'; + var href = d3.select(selector).attr('href') || '#icon-close'; + + reveal('.entity-editor-pane', + t('intro.navigation.editor_street', { + button: icon(href, 'pre-text'), + field1: onewayField.label().toLowerCase(), + field2: maxspeedField.label().toLowerCase() + }), { duration: 0 } + ); + }); + function continueTo(nextStep) { context.on('exit.intro', null); + context.history().on('change.intro', null); nextStep(); } } function play() { - reveal('.intro-nav-wrap .chapter-point', + dispatch.call('done'); + reveal('#id-container', t('intro.navigation.play', { next: t('intro.points.title') }), { + tooltipBox: '.intro-nav-wrap .chapter-point', buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 6f4a46315..6760de6c7 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -455,13 +455,12 @@ export function uiIntroPoint(context, reveal) { function play() { - reveal('.intro-nav-wrap .chapter-area', + dispatch.call('done'); + reveal('#id-container', t('intro.points.play', { next: t('intro.areas.title') }), { + tooltipBox: '.intro-nav-wrap .chapter-area', buttonText: t('intro.ok'), - buttonCallback: function() { - dispatch.call('done'); - reveal('#id-container'); - } + buttonCallback: function() { reveal('#id-container'); } } ); } From dafb1dd49e805b78296e7b7bd3d6a378490c6ff8 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 17 Apr 2017 17:59:37 -0400 Subject: [PATCH 89/91] Use the word "nodes" consistently for child nodes along a way --- data/core.yaml | 2 +- dist/locales/en.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 32f285ecf..37a8aa9d8 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -988,7 +988,7 @@ en: done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" - continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**" + continue_tank: "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**" search_tank: "**Search for '{preset}'**" choose_tank: "**Choose {preset} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created and show the edit menu.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index ef5ceadb0..90e7adcb5 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -844,7 +844,7 @@ "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**", "retry_building": "It looks like you had some trouble placing the nodes at the building corners. Try again!", "choose_category_building": "**Choose {category} from the list**", - "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} building type**", + "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**", "close": "**Hit escape or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created and show the edit menu.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", @@ -852,7 +852,7 @@ "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", "add_tank": "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", - "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**", + "continue_tank": "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**", "search_tank": "**Search for '{preset}'**", "choose_tank": "**Choose {preset} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created and show the edit menu.**", From e3152fb8ecacb51738f76637c2d545879d7edabb Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 18 Apr 2017 02:31:00 -0400 Subject: [PATCH 90/91] Make sure user can left and right click --- css/80_app.css | 29 ++++++ data/core.yaml | 5 +- dist/locales/en.json | 5 +- modules/ui/curtain.js | 7 ++ modules/ui/intro/welcome.js | 199 +++++++++++++++++++++++++++++++++++- svg/iD-sprite.json | 8 +- svg/iD-sprite.src.idraw | Bin 317679 -> 318730 bytes svg/iD-sprite.src.svg | 5 + 8 files changed, 252 insertions(+), 6 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 801158597..c2a9b5213 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3703,6 +3703,35 @@ img.tile-removing { margin-right: -20px; } +.curtain-tooltip.intro-mouse { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.curtain-tooltip.intro-mouse .counter { + position: absolute; + display: block; + top: 50px; + width: 100%; + text-align: center; + font-weight: bold; + font-size: 14px; + z-index: 1003; +} + +.curtain-tooltip.intro-mouse .tooltip-illustration use { + fill: rgba(112, 146, 255, 0); + color: rgba(112, 146, 255, 0); +} +.curtain-tooltip.intro-mouse.leftclick .tooltip-illustration use { + fill: rgba(112, 146, 255, 1); +} +.curtain-tooltip.intro-mouse.rightclick .tooltip-illustration use { + color: rgba(112, 146, 255, 1); +} + .huge-modal-button { width: 100%; height: auto; diff --git a/data/core.yaml b/data/core.yaml index 37a8aa9d8..e454fe58a 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -897,7 +897,10 @@ en: welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." practice: "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved." words: "This walkthrough will introduce some new words and concepts. When we introduce a new word, we'll use *italics*." - chapters: "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + mouse: "You can use any input device to edit the map, but this walkthrough assumes you have a mouse with left and right buttons. **If you want to attach a mouse, do so now, then click OK.**" + leftclick: "When this tutorial asks you to click or double-click, we mean with the left button. On a trackpad it might be a single-click or single-finger tap. **Left-click {num} times.**" + rightclick: "Sometimes we'll also ask you to right-click. This might be the same as control-click, or two-finger tap on a trackpad. Your keyboard might even have a 'menu' key that works like right-click. **Right-click {num} times.**" + chapters: "So far, so good! You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 90e7adcb5..32d8a50ee 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -756,7 +756,10 @@ "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", "practice": "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved.", "words": "This walkthrough will introduce some new words and concepts. When we introduce a new word, we'll use *italics*.", - "chapters": "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + "mouse": "You can use any input device to edit the map, but this walkthrough assumes you have a mouse with left and right buttons. **If you want to attach a mouse, do so now, then click OK.**", + "leftclick": "When this tutorial asks you to click or double-click, we mean with the left button. On a trackpad it might be a single-click or single-finger tap. **Left-click {num} times.**", + "rightclick": "Sometimes we'll also ask you to right-click. This might be the same as control-click, or two-finger tap on a trackpad. Your keyboard might even have a 'menu' key that works like right-click. **Right-click {num} times.**", + "chapters": "So far, so good! You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { "title": "Navigation", diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 4d947334e..267021994 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -126,6 +126,13 @@ export function uiCurtain() { tooltipArrow = 5, side, pos; + + // hack: this will have bottom placement, + // so need to reserve extra space for the tooltip illustration. + if (options.tooltipClass === 'intro-mouse') { + tip.height += 80; + } + // trim box dimensions to just the portion that fits in the window.. if (tooltipBox.top + tooltipBox.height > h) { tooltipBox.height -= (tooltipBox.top + tooltipBox.height - h); diff --git a/modules/ui/intro/welcome.js b/modules/ui/intro/welcome.js index 8af0a59d8..155d2555c 100644 --- a/modules/ui/intro/welcome.js +++ b/modules/ui/intro/welcome.js @@ -4,8 +4,8 @@ import { utilRebind } from '../../util/rebind'; export function uiIntroWelcome(context, reveal) { - var dispatch = d3.dispatch('done'); - + var dispatch = d3.dispatch('done'), + listener = clickListener(); var chapter = { title: 'intro.welcome.title' @@ -30,10 +30,101 @@ export function uiIntroWelcome(context, reveal) { function words() { reveal('.intro-nav-wrap .chapter-welcome', t('intro.welcome.words'), - { buttonText: t('intro.ok'), buttonCallback: chapters } + { buttonText: t('intro.ok'), buttonCallback: mouse } ); } + + function mouse() { + reveal('.intro-nav-wrap .chapter-welcome', + t('intro.welcome.mouse'), + { buttonText: t('intro.ok'), buttonCallback: leftClick } + ); + } + + + function leftClick() { + var counter = 0, + times = 5; + + var tooltip = reveal('.intro-nav-wrap .chapter-welcome', + t('intro.welcome.leftclick', { num: times }), + { tooltipClass: 'intro-mouse' } + ); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#walkthrough-mouse'); + + tooltip + .append('div') + .attr('class', 'counter'); + + tooltip.call(listener); + + listener.on('click', function(which) { + if (which === 'left') { + d3.select('.curtain-tooltip.intro-mouse .counter') + .text(String(++counter)); + + if (counter === times) { + window.setTimeout(function() { continueTo(rightClick); }, 1000); + } + } + }); + + function continueTo(nextStep) { + listener.on('click', null); + tooltip.call(listener.off); + tooltip.select('.counter').remove(); + nextStep(); + } + } + + + function rightClick() { + var counter = 0, + times = 5; + + var tooltip = reveal('.intro-nav-wrap .chapter-welcome', + t('intro.welcome.rightclick', { num: times }), + { tooltipClass: 'intro-mouse' } + ); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#walkthrough-mouse'); + + tooltip + .append('div') + .attr('class', 'counter'); + + tooltip.call(listener); + + listener.on('click', function(which) { + if (which === 'right') { + d3.select('.curtain-tooltip.intro-mouse .counter') + .text(String(++counter)); + + if (counter === times) { + window.setTimeout(function() { continueTo(chapters); }, 1000); + } + } + }); + + function continueTo(nextStep) { + listener.on('click', null); + tooltip.call(listener.off); + tooltip.select('.counter').remove(); + nextStep(); + } + } + + function chapters() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-navigation', @@ -48,6 +139,7 @@ export function uiIntroWelcome(context, reveal) { chapter.exit = function() { + listener.off(); }; @@ -59,3 +151,104 @@ export function uiIntroWelcome(context, reveal) { return utilRebind(chapter, dispatch, 'on'); } + + + +function clickListener() { + var dispatch = d3.dispatch('click'), + minTime = 120, + tooltip = d3.select(null), + down = {}; + + + function keydown() { + if (d3.event.keyCode === 93) { //context menu + d3.event.preventDefault(); + d3.event.stopPropagation(); + down.menu = d3.event.timeStamp; + tooltip.classed('rightclick', true); + } + } + + + function keyup() { + if (d3.event.keyCode === 93) { //context menu + d3.event.preventDefault(); + d3.event.stopPropagation(); + var endTime = d3.event.timeStamp, + startTime = down.menu || endTime, + delay = (endTime - startTime < minTime) ? minTime : 0; + + window.setTimeout(function() { tooltip.classed('rightclick', false); }, delay); + dispatch.call('click', this, 'right'); + down.menu = undefined; + } + } + + + function mousedown() { + if (d3.event.button === 0 && !d3.event.ctrlKey) { + tooltip.classed('leftclick', true); + } else if (d3.event.button === 2) { + tooltip.classed('rightclick', true); + } + down[d3.event.button] = d3.event.timeStamp; + } + + + function mouseup() { + var endTime = d3.event.timeStamp, + startTime = down[d3.event.button] || endTime, + delay = (endTime - startTime < minTime) ? minTime : 0; + + if (d3.event.button === 0 && !d3.event.ctrlKey) { + window.setTimeout(function() { tooltip.classed('leftclick', false); }, delay); + dispatch.call('click', this, 'left'); + } else if (d3.event.button === 2) { + window.setTimeout(function() { tooltip.classed('rightclick', false); }, delay); + dispatch.call('click', this, 'right'); + } + down[d3.event.button] = undefined; + } + + + function contextmenu() { + d3.event.preventDefault(); + d3.event.stopPropagation(); + if (!down[2] && !down.menu) { + tooltip.classed('rightclick', true); + window.setTimeout(function() { tooltip.classed('rightclick', false); }, minTime); + dispatch.call('click', this, 'right'); + } + } + + + var behavior = function(selection) { + tooltip = selection; + down = {}; + + d3.select(window) + .on('keydown.intro', keydown) + .on('keyup.intro', keyup) + .on('mousedown.intro', mousedown) + .on('mouseup.intro', mouseup) + .on('contextmenu.intro', contextmenu); + }; + + + behavior.off = function() { + d3.select(window) + .on('keydown.intro', null) + .on('keyup.intro', null) + .on('mousedown.intro', null) + .on('mouseup.intro', null) + .on('contextmenu.intro', null); + + tooltip + .classed('leftclick', false) + .classed('rightclick', false); + }; + + return utilRebind(behavior, dispatch, 'on'); +} + diff --git a/svg/iD-sprite.json b/svg/iD-sprite.json index 41699554c..3047f98d2 100644 --- a/svg/iD-sprite.json +++ b/svg/iD-sprite.json @@ -402,5 +402,11 @@ "poi-images": { "viewBox": "0 320 200 80" }, "landuse-images": { "viewBox": "0 400 200 80" }, "feature-images": { "viewBox": "0 480 200 80" }, - "building-images": { "viewBox": "700 480 200 80" } + "building-images": { "viewBox": "700 480 200 80" }, + + "walkthrough-mouse": { "viewBox": "400 411 25 43" }, + + "walkthrough-mouse-shape": { "fill": "#000000" }, + "walkthrough-mouse-left": { "fill": "inherit" }, + "walkthrough-mouse-right": { "fill": "currentColor" } } diff --git a/svg/iD-sprite.src.idraw b/svg/iD-sprite.src.idraw index 42ef70b4a48baee5b59baf6a2b272b66160fc31d..7b9ebd9082d8896d6935be7437a6438308e19a45 100644 GIT binary patch delta 202832 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�MaoRZ0Dc;^|u2B1shE(m%0le>l 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⁡r85;G$C$@M9n$hCr4+l|~((z}6{R2q5P5 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 U%J^@9BL57t%Cq~Avof#z56N9l3IG5A delta 201928 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∨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

hI4Fo@ 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 diff --git a/svg/iD-sprite.src.svg b/svg/iD-sprite.src.svg index 76802fef0..6021c0325 100644 --- a/svg/iD-sprite.src.svg +++ b/svg/iD-sprite.src.svg @@ -194,6 +194,11 @@ + + + + + From bde1c78d32a345ab797429309a424f31fafbe9ac Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 18 Apr 2017 14:06:00 -0400 Subject: [PATCH 91/91] Break up longer text, mention Alt key to avoid point snapping --- data/core.yaml | 39 +++++++++-------- dist/locales/en.json | 39 +++++++++-------- modules/ui/curtain.js | 5 +-- modules/ui/intro/area.js | 91 +++++++++++++++++++++++++++++++-------- modules/ui/intro/point.js | 27 +++++++----- 5 files changed, 131 insertions(+), 70 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index e454fe58a..804c3afee 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -917,43 +917,44 @@ en: search_street: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose_street: "**Choose {name} from the list to select it.**" selected_street: "Great! {name} is now selected." - editor_street: "The fields shown for a street are different than the fields that were shown for the town hall. Now we see fields like {field1} and {field2}. **Close the feature editor by hitting escape or pressing the {button} button.**" + editor_street: "The fields shown for a street are different than the fields that were shown for the town hall.{br}For this selected street, the feature editor shows fields like '{field1}' and '{field2}'. **Close the feature editor by hitting escape or pressing the {button} button.**" play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" - add_point: "*Points* can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" + add_point: "*Points* can be used to represent features such as shops, restaurants, and monuments.{br}They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" place_point: "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**" search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**" choose_cafe: "**Choose {preset} from the list.**" feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." - add_name: "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" + add_name: "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure.{br}Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" add_close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" rightclick: "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" - delete: "It's OK to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" + delete: "It's OK to delete features that don't exist in the real world.{br}Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" - add_playground: "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" - start_playground: "Areas are drawn by placing *nodes* along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" - continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**" + add_playground: "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas.{br}They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" + start_playground: "Let's add this playground to the map by drawing an area. Areas are drawn by placing *nodes* along the outer edge of the feature. **Click or press spacebar to place a starting node on one of the corners of the playground.**" + continue_playground: "Continue drawing the area by placing more nodes along the playground's edge. It is OK to connect the area to the existing walking paths.{br}Tip: You can hold down the Alt key to prevent nodes from connecting to other features. **Continue drawing an area for the playground.**" + finish_playground: "Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**" search_playground: "**Search for '{preset}'.**" choose_playground: "**Choose {preset} from the list.**" - add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" + add_field: "This playground doesn't have an official name, so we won't add anything in the Name field.{br}Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" choose_field: "**Choose {field} from the list.**" retry_add_field: "You didn't select the {field} field. Let's try again." describe_playground: "**Add a description, then click the {button} button to close the feature editor.**" - play: "Good job! Try drawing a few more areas and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Good job! Try drawing a few more areas, and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" add_line: "*Lines* are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" - start_line: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**" - intersect: "Click or press spacebar to add more *nodes* to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" + start_line: "Here is a road that is missing. Let's add it!{br}In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**" + intersect: "Click or press spacebar to add more nodes to the line.{br}Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" retry_intersect: "The road needs to intersect {name}. Let's try again!" - continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" + continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed.{br}When you are finished drawing, click on the last node again. **Finish drawing the road.**" choose_category_road: "**Select {category} from the list**" choose_preset_residential: "There are many different types of roads, but this one is a residential road. **Choose the {preset} type**" retry_preset_residential: "You didn't select the {preset} type. **Click here to choose again**" @@ -965,7 +966,7 @@ en: finish_drag_endpoint: "This spot looks good. **Release the left mouse button to finish dragging.**" start_drag_midpoint: "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" - delete_lines: "It's OK to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." + delete_lines: "It's OK to delete lines for roads that don't exist in the real world.{br}Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." rightclick_intersection: "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." @@ -978,12 +979,12 @@ en: play: "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" buildings: title: "Buildings" - add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" - start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" - continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**" + add_building: "OpenStreetMap is the world's largest database of buildings.{br}You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" + start_building: "Let's add this house to the map by tracing its outline.{br}Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" + continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details.{br}Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**" retry_building: "It looks like you had some trouble placing the nodes at the building corners. Try again!" choose_category_building: "**Choose {category} from the list**" - choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**" + choose_preset_house: "There are many different types of buildings, but this one is clearly a house.{br}If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**" close: "**Hit escape or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created and show the edit menu.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" @@ -991,7 +992,7 @@ en: done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" - continue_tank: "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**" + continue_tank: "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw.{br}Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**" search_tank: "**Search for '{preset}'**" choose_tank: "**Choose {preset} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created and show the edit menu.**" @@ -1000,6 +1001,6 @@ en: play: "Great Job! Practice tracing a few more buildings, and try some of the other commands on the edit menu. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" - help: "You're now ready to edit OpenStreetMap! You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button." + help: "You're now ready to edit OpenStreetMap!{br}You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button." save: "Don't forget to regularly save your changes!" start: "Start mapping!" diff --git a/dist/locales/en.json b/dist/locales/en.json index 32d8a50ee..d157f9ba5 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -777,46 +777,47 @@ "search_street": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose_street": "**Choose {name} from the list to select it.**", "selected_street": "Great! {name} is now selected.", - "editor_street": "The fields shown for a street are different than the fields that were shown for the town hall. Now we see fields like {field1} and {field2}. **Close the feature editor by hitting escape or pressing the {button} button.**", + "editor_street": "The fields shown for a street are different than the fields that were shown for the town hall.{br}For this selected street, the feature editor shows fields like '{field1}' and '{field2}'. **Close the feature editor by hitting escape or pressing the {button} button.**", "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { "title": "Points", - "add_point": "*Points* can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", + "add_point": "*Points* can be used to represent features such as shops, restaurants, and monuments.{br}They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", "place_point": "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**", "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**", "choose_cafe": "**Choose {preset} from the list.**", "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", - "add_name": "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", + "add_name": "In OpenStreetMap, all of the fields are optional, and it's OK to leave a field blank if you are unsure.{br}Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", "add_close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", "rightclick": "You can right-click on any feature to see the *edit menu*, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", - "delete": "It's OK to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", + "delete": "It's OK to delete features that don't exist in the real world.{br}Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", - "add_playground": "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", - "start_playground": "Areas are drawn by placing *nodes* along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", - "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**", + "add_playground": "*Areas* are used to show the boundaries of features like lakes, buildings, and residential areas.{br}They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", + "start_playground": "Let's add this playground to the map by drawing an area. Areas are drawn by placing *nodes* along the outer edge of the feature. **Click or press spacebar to place a starting node on one of the corners of the playground.**", + "continue_playground": "Continue drawing the area by placing more nodes along the playground's edge. It is OK to connect the area to the existing walking paths.{br}Tip: You can hold down the Alt key to prevent nodes from connecting to other features. **Continue drawing an area for the playground.**", + "finish_playground": "Finish the area by pressing return, or clicking again on either the first or last node. **Finish drawing an area for the playground.**", "search_playground": "**Search for '{preset}'.**", "choose_playground": "**Choose {preset} from the list.**", - "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", + "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field.{br}Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", "choose_field": "**Choose {field} from the list.**", "retry_add_field": "You didn't select the {field} field. Let's try again.", "describe_playground": "**Add a description, then click the {button} button to close the feature editor.**", - "play": "Good job! Try drawing a few more areas and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Good job! Try drawing a few more areas, and see what other kinds of area features you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", "add_line": "*Lines* are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start_line": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**", - "intersect": "Click or press spacebar to add more *nodes* to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", + "start_line": "Here is a road that is missing. Let's add it!{br}In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**", + "intersect": "Click or press spacebar to add more nodes to the line.{br}Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", "retry_intersect": "The road needs to intersect {name}. Let's try again!", - "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", + "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed.{br}When you are finished drawing, click on the last node again. **Finish drawing the road.**", "choose_category_road": "**Select {category} from the list**", "choose_preset_residential": "There are many different types of roads, but this one is a residential road. **Choose the {preset} type**", "retry_preset_residential": "You didn't select the {preset} type. **Click here to choose again**", @@ -828,7 +829,7 @@ "finish_drag_endpoint": "This spot looks good. **Release the left mouse button to finish dragging.**", "start_drag_midpoint": "Small triangles are drawn at the *midpoints* between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", - "delete_lines": "It's OK to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", + "delete_lines": "It's OK to delete lines for roads that don't exist in the real world.{br}Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", "rightclick_intersection": "The last real street is {street1}, so we will *split* {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", @@ -842,12 +843,12 @@ }, "buildings": { "title": "Buildings", - "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", - "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", - "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**", + "add_building": "OpenStreetMap is the world's largest database of buildings.{br}You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", + "start_building": "Let's add this house to the map by tracing its outline.{br}Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", + "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details.{br}Finish the building by pressing return, or clicking again on either the first or last node. **Finish tracing the building.**", "retry_building": "It looks like you had some trouble placing the nodes at the building corners. Try again!", "choose_category_building": "**Choose {category} from the list**", - "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**", + "choose_preset_house": "There are many different types of buildings, but this one is clearly a house.{br}If you're not sure of the type, it's OK to just choose the generic Building type. **Choose the {preset} type**", "close": "**Hit escape or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created and show the edit menu.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", @@ -855,7 +856,7 @@ "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", "add_tank": "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", - "continue_tank": "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw. Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**", + "continue_tank": "Add a few more nodes around the edge. The circle will be created outside the nodes that you draw.{br}Finish the area by pressing return, or clicking again on either the first or last node. **Finish tracing the tank.**", "search_tank": "**Search for '{preset}'**", "choose_tank": "**Choose {preset} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created and show the edit menu.**", @@ -865,7 +866,7 @@ }, "startediting": { "title": "Start Editing", - "help": "You're now ready to edit OpenStreetMap! You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button.", + "help": "You're now ready to edit OpenStreetMap!{br}You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button.", "save": "Don't forget to regularly save your changes!", "start": "Start mapping!" } diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 267021994..d8e64e8db 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -95,9 +95,8 @@ export function uiCurtain() { html += '' + parts[1] + ''; } - // pseudo markdown emphasis text.. - html = html.replace(/\*(.*?)\*/g, '$1'); - + html = html.replace(/\*(.*?)\*/g, '$1'); // emphasis + html = html.replace(/\{br\}/g, '

'); // linebreak if (options.buttonText && options.buttonCallback) { html += '

' + diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 4ed4da0d9..236d52120 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -30,6 +30,13 @@ export function uiIntroArea(context, reveal) { } + function revealPlayground(center, text, options) { + var padding = 180 * Math.pow(2, context.map().zoom() - 19.5); + var box = pad(center, padding, context); + reveal(box, text, options); + } + + function addArea() { context.enter(modeBrowse(context)); context.history().reset('initial'); @@ -68,21 +75,26 @@ export function uiIntroArea(context, reveal) { } areaId = null; + context.map().zoomEase(19.5, 500); - var padding = 120 * Math.pow(2, context.map().zoom() - 19); - var box = pad(playground, padding, context); - reveal(box, t('intro.areas.start_playground')); + timeout(function() { + revealPlayground(playground, + t('intro.areas.start_playground'), { duration: 250 } + ); - context.map().on('move.intro drawn.intro', function() { - padding = 120 * Math.pow(2, context.map().zoom() - 19); - box = pad(playground, padding, context); - reveal(box, t('intro.areas.start_playground'), { duration: 0 }); - }); + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + revealPlayground(playground, + t('intro.areas.start_playground'), { duration: 0 } + ); + }); + context.on('enter.intro', function(mode) { + if (mode.id !== 'draw-area') return chapter.restart(); + continueTo(continuePlayground); + }); + }, 250); // after reveal - context.on('enter.intro', function(mode) { - if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(continuePlayground); - }); + }, 550); // after easing function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -98,16 +110,57 @@ export function uiIntroArea(context, reveal) { } areaId = null; - - var padding = 120 * Math.pow(2, context.map().zoom() - 19); - var box = pad(playground, padding, context); - reveal(box, t('intro.areas.continue_playground'), { duration: 250 }); + revealPlayground(playground, + t('intro.areas.continue_playground'), { duration: 250 } + ); timeout(function() { context.map().on('move.intro drawn.intro', function() { - padding = 120 * Math.pow(2, context.map().zoom() - 19); - box = pad(playground, padding, context); - reveal(box, t('intro.areas.continue_playground'), { duration: 0 }); + revealPlayground(playground, + t('intro.areas.continue_playground'), { duration: 0 } + ); + }); + }, 250); // after reveal + + context.on('enter.intro', function(mode) { + if (mode.id === 'draw-area') { + var entity = context.hasEntity(context.selectedIDs()[0]); + if (entity && entity.nodes.length >= 6) { + return continueTo(finishPlayground); + } else { + return; + } + } else if (mode.id === 'select') { + areaId = context.selectedIDs()[0]; + return continueTo(searchPresets); + } else { + return chapter.restart(); + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function finishPlayground() { + if (context.mode().id !== 'draw-area') { + return chapter.restart(); + } + + areaId = null; + revealPlayground(playground, + t('intro.areas.finish_playground'), { duration: 250 } + ); + + timeout(function() { + context.map().on('move.intro drawn.intro', function() { + revealPlayground(playground, + t('intro.areas.finish_playground'), { duration: 0 } + ); }); }, 250); // after reveal diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 6760de6c7..32883893f 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -206,17 +206,24 @@ export function uiIntroPoint(context, reveal) { // reset pane, in case user happened to change it.. d3.select('.inspector-wrap .panewrap').style('right', '0%'); - // It's possible for the user to add a name in a previous step.. - // If they did this already, just continue to next step. - var entity = context.entity(pointId); - if (entity.tags.name) { - return continueTo(addCloseEditor); - } - timeout(function() { - reveal('.entity-editor-pane', t('intro.points.add_name'), - { tooltipClass: 'intro-points-describe' } - ); + // It's possible for the user to add a name in a previous step.. + // If so, don't tell them to add the name in this step. + // Give them an OK button instead. + var entity = context.entity(pointId); + if (entity.tags.name) { + var tooltip = reveal('.entity-editor-pane', t('intro.points.add_name'), { + tooltipClass: 'intro-points-describe', + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(addCloseEditor); } + }); + tooltip.select('.instruction').style('display', 'none'); + + } else { + reveal('.entity-editor-pane', t('intro.points.add_name'), + { tooltipClass: 'intro-points-describe' } + ); + } }, 400); context.history().on('change.intro', function() {

3c#L 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%0A()P4Q#YfGWU-?QelLX0$AQGp6Jg0 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 diff --git a/svg/iD-sprite.src.svg b/svg/iD-sprite.src.svg index 860aa64ce..76802fef0 100644 --- a/svg/iD-sprite.src.svg +++ b/svg/iD-sprite.src.svg @@ -29,64 +29,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + - - - - - - - + + + + + + + - - - - + + + + - - - - - - - + + + + + + + - - - - - - + + + + + + - + - - - - - + + + + + From 8e9ae095deb1f01505611bd0eeb68aa218c49a9b Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 3 Apr 2017 22:41:11 -0400 Subject: [PATCH 43/91] Fix abbreviations in the intro graph (re: https://github.com/openstreetmap/iD/issues/3068#issuecomment-290297288) --- data/intro_graph.json | 34299 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 34298 insertions(+), 1 deletion(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index 9d49942bd..1486f6cd6 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -1 +1,34298 @@ -{"dataIntroGraph":{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]},"n185964961":{"id":"n185964961","loc":[-85.6406588,41.942601]},"n185964962":{"id":"n185964962","loc":[-85.6394548,41.94261]},"n185970607":{"id":"n185970607","loc":[-85.641094,41.94006]},"n185970614":{"id":"n185970614","loc":[-85.641825,41.941316]},"n185970616":{"id":"n185970616","loc":[-85.641838,41.941556]},"n185973650":{"id":"n185973650","loc":[-85.639918,41.940064]},"n185973660":{"id":"n185973660","loc":[-85.640645,41.941339]},"n185973659":{"id":"n185973659","loc":[-85.6406115,41.9400658]},"n185974479":{"id":"n185974479","loc":[-85.639402,41.941344]},"n185974481":{"id":"n185974481","loc":[-85.643071,41.941288]},"n185976259":{"id":"n185976259","loc":[-85.642213,41.940043]},"n185976261":{"id":"n185976261","loc":[-85.643056,41.94001]},"n185964959":{"id":"n185964959","loc":[-85.6431031,41.9425754]},"n185964960":{"id":"n185964960","loc":[-85.6418749,41.9425864]},"n185981481":{"id":"n185981481","loc":[-85.6386827,41.9400828]},"n185981482":{"id":"n185981482","loc":[-85.6393664,41.9400854]},"n2138493844":{"id":"n2138493844","loc":[-85.6427969,41.940522]},"n2138493845":{"id":"n2138493845","loc":[-85.6425891,41.9405228]},"n2138493846":{"id":"n2138493846","loc":[-85.6425868,41.9402875]},"n2138493847":{"id":"n2138493847","loc":[-85.6427969,41.9402858]},"n2138493848":{"id":"n2138493848","loc":[-85.6425708,41.9405234]},"n2138493849":{"id":"n2138493849","loc":[-85.642568,41.9402855]},"n2138493850":{"id":"n2138493850","loc":[-85.6423157,41.9402886]},"n2138493851":{"id":"n2138493851","loc":[-85.6423212,41.9404362]},"n2138493852":{"id":"n2138493852","loc":[-85.6422923,41.9404578]},"n2138493853":{"id":"n2138493853","loc":[-85.6422868,41.9404834]},"n2138493854":{"id":"n2138493854","loc":[-85.6423226,41.9405091]},"n2138493855":{"id":"n2138493855","loc":[-85.6423847,41.9405111]},"n2138493856":{"id":"n2138493856","loc":[-85.6424081,41.9405265]},"n2140155811":{"id":"n2140155811","loc":[-85.6419547,41.9410956]},"n2140155814":{"id":"n2140155814","loc":[-85.6427577,41.9410884]},"n2140155816":{"id":"n2140155816","loc":[-85.6427545,41.9410052]},"n2140155818":{"id":"n2140155818","loc":[-85.6428057,41.9410028]},"n2140155821":{"id":"n2140155821","loc":[-85.6427993,41.9407339]},"n2140155823":{"id":"n2140155823","loc":[-85.6427385,41.9407339]},"n2140155825":{"id":"n2140155825","loc":[-85.6427417,41.9406435]},"n2140155827":{"id":"n2140155827","loc":[-85.6419515,41.9406482]},"n2140155828":{"id":"n2140155828","loc":[-85.6429368,41.9412407]},"n2140155829":{"id":"n2140155829","loc":[-85.6417756,41.9412526]},"n2140155830":{"id":"n2140155830","loc":[-85.641766,41.9405983]},"n2140155831":{"id":"n2140155831","loc":[-85.6419803,41.9405983]},"n2140155832":{"id":"n2140155832","loc":[-85.6419611,41.9401366]},"n2140155833":{"id":"n2140155833","loc":[-85.6429336,41.94012]},"n2140155834":{"id":"n2140155834","loc":[-85.6430697,41.9411732]},"n2140155835":{"id":"n2140155835","loc":[-85.6428411,41.9409974]},"n2140155837":{"id":"n2140155837","loc":[-85.6428388,41.9407211]},"n2140155839":{"id":"n2140155839","loc":[-85.6430624,41.9405521]},"n2140155840":{"id":"n2140155840","loc":[-85.6427323,41.9412396]},"n2140155842":{"id":"n2140155842","loc":[-85.6418147,41.9412457]},"n2140155844":{"id":"n2140155844","loc":[-85.641813,41.9411319]},"n2140155845":{"id":"n2140155845","loc":[-85.6418394,41.9411111]},"n2140155847":{"id":"n2140155847","loc":[-85.6418838,41.9410977]},"n2140155849":{"id":"n2140155849","loc":[-85.6427324,41.9410921]},"n2140155851":{"id":"n2140155851","loc":[-85.6427798,41.9412945]},"n2140155852":{"id":"n2140155852","loc":[-85.6427701,41.9411777]},"n2140155854":{"id":"n2140155854","loc":[-85.6427323,41.9411572]},"n2140155856":{"id":"n2140155856","loc":[-85.6418478,41.9411666]},"n2165942818":{"id":"n2165942818","loc":[-85.6437533,41.9415029]},"n2165942819":{"id":"n2165942819","loc":[-85.6437623,41.9421195]},"n2168510551":{"id":"n2168510551","loc":[-85.6423795,41.9422615]},"n2168510552":{"id":"n2168510552","loc":[-85.6423744,41.9419439]},"n2168510553":{"id":"n2168510553","loc":[-85.642518,41.9419427]},"n2168510554":{"id":"n2168510554","loc":[-85.6425186,41.9419801]},"n2168510555":{"id":"n2168510555","loc":[-85.6428314,41.9419773]},"n2168510556":{"id":"n2168510556","loc":[-85.6428368,41.9423116]},"n2168510557":{"id":"n2168510557","loc":[-85.6424947,41.9423146]},"n2168510558":{"id":"n2168510558","loc":[-85.6424938,41.9422605]},"n2189046007":{"id":"n2189046007","loc":[-85.6410866,41.9424327]},"n2189046009":{"id":"n2189046009","loc":[-85.6410805,41.9420061]},"n2189046011":{"id":"n2189046011","loc":[-85.6412443,41.9420048]},"n2189046012":{"id":"n2189046012","loc":[-85.6412505,41.9424314]},"n2189046014":{"id":"n2189046014","loc":[-85.6413311,41.942968]},"n2189046016":{"id":"n2189046016","loc":[-85.6413281,41.942713]},"n2189046018":{"id":"n2189046018","loc":[-85.641521,41.9427117]},"n2189046021":{"id":"n2189046021","loc":[-85.6415234,41.9429236]},"n2189046022":{"id":"n2189046022","loc":[-85.6415045,41.9429238]},"n2189046025":{"id":"n2189046025","loc":[-85.641505,41.9429668]},"n2189046053":{"id":"n2189046053","loc":[-85.6385988,41.942412]},"n2189046054":{"id":"n2189046054","loc":[-85.6385985,41.9423311]},"n2189046055":{"id":"n2189046055","loc":[-85.6387617,41.9423308]},"n2189046056":{"id":"n2189046056","loc":[-85.6387616,41.9423026]},"n2189046058":{"id":"n2189046058","loc":[-85.6388215,41.9423025]},"n2189046059":{"id":"n2189046059","loc":[-85.6388219,41.9424115]},"n2189046060":{"id":"n2189046060","loc":[-85.6391096,41.9424486]},"n2189046061":{"id":"n2189046061","loc":[-85.6391105,41.9423673]},"n2189046063":{"id":"n2189046063","loc":[-85.6392911,41.9423684]},"n2189046065":{"id":"n2189046065","loc":[-85.6392903,41.9424497]},"n2189046067":{"id":"n2189046067","loc":[-85.6397927,41.9423876]},"n2189046069":{"id":"n2189046069","loc":[-85.6397897,41.9422981]},"n2189046070":{"id":"n2189046070","loc":[-85.6399702,41.9422947]},"n2189046072":{"id":"n2189046072","loc":[-85.6399732,41.9423843]},"n2189046074":{"id":"n2189046074","loc":[-85.6396331,41.9430227]},"n2189046075":{"id":"n2189046075","loc":[-85.6398673,41.9430189]},"n2189046077":{"id":"n2189046077","loc":[-85.6398656,41.9429637]},"n2189046079":{"id":"n2189046079","loc":[-85.6398885,41.9429633]},"n2189046082":{"id":"n2189046082","loc":[-85.6398832,41.942779]},"n2189046083":{"id":"n2189046083","loc":[-85.6398513,41.9427796]},"n2189046085":{"id":"n2189046085","loc":[-85.6398502,41.9427401]},"n2189046087":{"id":"n2189046087","loc":[-85.6397889,41.9427411]},"n2189046089":{"id":"n2189046089","loc":[-85.6397892,41.942753]},"n2189046090":{"id":"n2189046090","loc":[-85.6396983,41.9427544]},"n2189046092":{"id":"n2189046092","loc":[-85.6396993,41.9427882]},"n2189046094":{"id":"n2189046094","loc":[-85.6396746,41.9427886]},"n2189046096":{"id":"n2189046096","loc":[-85.6396758,41.9428296]},"n2189046097":{"id":"n2189046097","loc":[-85.6397007,41.9428292]},"n2189046099":{"id":"n2189046099","loc":[-85.6397018,41.9428686]},"n2189046103":{"id":"n2189046103","loc":[-85.6396289,41.9428697]},"n2189046112":{"id":"n2189046112","loc":[-85.6435683,41.9429457]},"n2189046113":{"id":"n2189046113","loc":[-85.643568,41.9427766]},"n2189046115":{"id":"n2189046115","loc":[-85.6434011,41.9427767]},"n2189046116":{"id":"n2189046116","loc":[-85.6434012,41.9428631]},"n2189046117":{"id":"n2189046117","loc":[-85.643448,41.9428631]},"n2189046118":{"id":"n2189046118","loc":[-85.6434481,41.9429457]},"n2189046119":{"id":"n2189046119","loc":[-85.6428363,41.9429809]},"n2189046120":{"id":"n2189046120","loc":[-85.6429171,41.9429791]},"n2189046121":{"id":"n2189046121","loc":[-85.642914,41.9429041]},"n2189046122":{"id":"n2189046122","loc":[-85.6429385,41.9429035]},"n2189046123":{"id":"n2189046123","loc":[-85.6429348,41.9428126]},"n2189046124":{"id":"n2189046124","loc":[-85.6427746,41.9428163]},"n2189046125":{"id":"n2189046125","loc":[-85.6427783,41.942906]},"n2189046126":{"id":"n2189046126","loc":[-85.6428332,41.9429047]},"n2189046127":{"id":"n2189046127","loc":[-85.6423018,41.9428859]},"n2189046128":{"id":"n2189046128","loc":[-85.6422987,41.9427208]},"n2189046130":{"id":"n2189046130","loc":[-85.6424218,41.9427195]},"n2189046131":{"id":"n2189046131","loc":[-85.6424246,41.9428684]},"n2189046132":{"id":"n2189046132","loc":[-85.6423845,41.9428689]},"n2189046133":{"id":"n2189046133","loc":[-85.6423848,41.942885]},"n2189046134":{"id":"n2189046134","loc":[-85.641533,41.9429392]},"n2189046135":{"id":"n2189046135","loc":[-85.6416096,41.9428768]},"n2189046137":{"id":"n2189046137","loc":[-85.6416763,41.9429221]},"n2189046138":{"id":"n2189046138","loc":[-85.6415997,41.9429845]},"n2189046139":{"id":"n2189046139","loc":[-85.6420598,41.9428016]},"n2189046140":{"id":"n2189046140","loc":[-85.6420593,41.9427415]},"n2189046141":{"id":"n2189046141","loc":[-85.6421957,41.9427409]},"n2189046142":{"id":"n2189046142","loc":[-85.6421963,41.9428182]},"n2189046143":{"id":"n2189046143","loc":[-85.6421281,41.9428185]},"n2189046144":{"id":"n2189046144","loc":[-85.6421279,41.9428013]},"n2189046145":{"id":"n2189046145","loc":[-85.6409429,41.9429345]},"n2189046146":{"id":"n2189046146","loc":[-85.6410354,41.9429334]},"n2189046147":{"id":"n2189046147","loc":[-85.6410325,41.9427972]},"n2189046148":{"id":"n2189046148","loc":[-85.640997,41.9427976]},"n2189046149":{"id":"n2189046149","loc":[-85.6409963,41.9427643]},"n2189046150":{"id":"n2189046150","loc":[-85.6408605,41.9427659]},"n2189046152":{"id":"n2189046152","loc":[-85.6408623,41.9428482]},"n2189046153":{"id":"n2189046153","loc":[-85.640941,41.9428473]},"n2189152992":{"id":"n2189152992","loc":[-85.6437661,41.9422257]},"n2189152993":{"id":"n2189152993","loc":[-85.643768,41.9424067]},"n2189152994":{"id":"n2189152994","loc":[-85.6432176,41.9417705]},"n2189152995":{"id":"n2189152995","loc":[-85.6432097,41.941327]},"n2189152996":{"id":"n2189152996","loc":[-85.6436493,41.9413226]},"n2189152997":{"id":"n2189152997","loc":[-85.6436563,41.9417164]},"n2189152998":{"id":"n2189152998","loc":[-85.6435796,41.9417171]},"n2189152999":{"id":"n2189152999","loc":[-85.6435805,41.9417669]},"n2189153000":{"id":"n2189153000","loc":[-85.6438202,41.9414953]},"n2189153001":{"id":"n2189153001","loc":[-85.6438173,41.9413175]},"n2189153004":{"id":"n2189153004","loc":[-85.6432535,41.9418466]},"n2189153005":{"id":"n2189153005","loc":[-85.6433935,41.9418599]},"n2189153006":{"id":"n2189153006","loc":[-85.6434831,41.9418986]},"n2189153007":{"id":"n2189153007","loc":[-85.6435678,41.9419774]},"n2189153008":{"id":"n2189153008","loc":[-85.6435987,41.9420282]},"n2189153009":{"id":"n2189153009","loc":[-85.643438,41.9419573]},"n2189153010":{"id":"n2189153010","loc":[-85.6435284,41.9424676]},"n2189153011":{"id":"n2189153011","loc":[-85.6436207,41.9423631]},"n2189153012":{"id":"n2189153012","loc":[-85.6434957,41.9422973]},"n2189153013":{"id":"n2189153013","loc":[-85.6434457,41.9422458]},"n2189153014":{"id":"n2189153014","loc":[-85.6433976,41.9421772]},"n2189153015":{"id":"n2189153015","loc":[-85.6433861,41.9420785]},"n2189153016":{"id":"n2189153016","loc":[-85.6433765,41.9420313]},"n2189153017":{"id":"n2189153017","loc":[-85.6432207,41.9420284]},"n2189153018":{"id":"n2189153018","loc":[-85.6432245,41.9422759]},"n2189153019":{"id":"n2189153019","loc":[-85.6432649,41.9423474]},"n2189153020":{"id":"n2189153020","loc":[-85.6433226,41.9424132]},"n2189153021":{"id":"n2189153021","loc":[-85.6434111,41.9424704]},"n2189153022":{"id":"n2189153022","loc":[-85.6434591,41.9424347]},"n2189153025":{"id":"n2189153025","loc":[-85.6437669,41.9423073]},"n2189153026":{"id":"n2189153026","loc":[-85.6436611,41.942293]},"n2189153027":{"id":"n2189153027","loc":[-85.6435784,41.9422473]},"n2189153028":{"id":"n2189153028","loc":[-85.6435245,41.9421443]},"n2189153029":{"id":"n2189153029","loc":[-85.6435149,41.9420613]},"n2189153030":{"id":"n2189153030","loc":[-85.6433528,41.9419269]},"n2189153031":{"id":"n2189153031","loc":[-85.6432535,41.9419191]},"n2189153032":{"id":"n2189153032","loc":[-85.6430868,41.9419198]},"n2189153033":{"id":"n2189153033","loc":[-85.6434894,41.9420033]},"n2189153034":{"id":"n2189153034","loc":[-85.6432974,41.9419225]},"n2189153035":{"id":"n2189153035","loc":[-85.6433055,41.9421632]},"n2189153036":{"id":"n2189153036","loc":[-85.6433538,41.9422849]},"n2189153037":{"id":"n2189153037","loc":[-85.6434718,41.9423887]},"n2189153038":{"id":"n2189153038","loc":[-85.6436134,41.9422667]},"n2189153040":{"id":"n2189153040","loc":[-85.6438759,41.9414017]},"n2189153041":{"id":"n2189153041","loc":[-85.6438181,41.9413687]},"n2189153042":{"id":"n2189153042","loc":[-85.6436821,41.9413044]},"n2189153043":{"id":"n2189153043","loc":[-85.6435899,41.9412862]},"n2189153044":{"id":"n2189153044","loc":[-85.6433169,41.9417268]},"n2189153045":{"id":"n2189153045","loc":[-85.643301,41.9412859]},"n2189153046":{"id":"n2189153046","loc":[-85.6435531,41.9416981]},"n2189153047":{"id":"n2189153047","loc":[-85.6435427,41.9412863]},"n185948706":{"id":"n185948706","loc":[-85.6369439,41.940122]},"n185949348":{"id":"n185949348","loc":[-85.640039,41.931135]},"n185949870":{"id":"n185949870","loc":[-85.643195,41.949261]},"n185954680":{"id":"n185954680","loc":[-85.6337802,41.9401143]},"n185954784":{"id":"n185954784","loc":[-85.6487485,41.942527]},"n185958670":{"id":"n185958670","loc":[-85.637255,41.940104]},"n185958672":{"id":"n185958672","loc":[-85.636996,41.941355]},"n185960207":{"id":"n185960207","loc":[-85.634992,41.940118]},"n185963163":{"id":"n185963163","loc":[-85.638831,41.93398]},"n185963165":{"id":"n185963165","loc":[-85.640073,41.933968]},"n185963167":{"id":"n185963167","loc":[-85.641225,41.933972]},"n185963168":{"id":"n185963168","loc":[-85.642386,41.933952]},"n185964695":{"id":"n185964695","loc":[-85.6443608,41.9425645]},"n185964697":{"id":"n185964697","loc":[-85.644384,41.939941]},"n185964963":{"id":"n185964963","loc":[-85.6382347,41.9426146]},"n185964965":{"id":"n185964965","loc":[-85.637022,41.942622]},"n185964967":{"id":"n185964967","loc":[-85.6363706,41.9426606]},"n185964968":{"id":"n185964968","loc":[-85.6357988,41.9427748]},"n185964969":{"id":"n185964969","loc":[-85.6355409,41.9428465]},"n185964970":{"id":"n185964970","loc":[-85.6348729,41.9430443]},"n185966958":{"id":"n185966958","loc":[-85.641946,41.946413]},"n185966960":{"id":"n185966960","loc":[-85.643148,41.946389]},"n185967774":{"id":"n185967774","loc":[-85.641889,41.943852]},"n185967775":{"id":"n185967775","loc":[-85.641922,41.945121]},"n185967776":{"id":"n185967776","loc":[-85.641927,41.947544]},"n185967777":{"id":"n185967777","loc":[-85.641982,41.947622]},"n185969289":{"id":"n185969289","loc":[-85.63928,41.929221]},"n185969704":{"id":"n185969704","loc":[-85.6388186,41.9350099]},"n185969706":{"id":"n185969706","loc":[-85.6400709,41.9349957]},"n185969708":{"id":"n185969708","loc":[-85.6412214,41.9349827]},"n185969710":{"id":"n185969710","loc":[-85.6423509,41.934974]},"n185970602":{"id":"n185970602","loc":[-85.641293,41.931817]},"n185970604":{"id":"n185970604","loc":[-85.641258,41.932705]},"n185970605":{"id":"n185970605","loc":[-85.641148,41.936984]},"n185970606":{"id":"n185970606","loc":[-85.641112,41.938169]},"n185970906":{"id":"n185970906","loc":[-85.639454,41.943871]},"n185970908":{"id":"n185970908","loc":[-85.6394635,41.9450504]},"n185970909":{"id":"n185970909","loc":[-85.6394914,41.9451911]},"n185971368":{"id":"n185971368","loc":[-85.635769,41.940122]},"n185971978":{"id":"n185971978","loc":[-85.640003,41.936988]},"n185971980":{"id":"n185971980","loc":[-85.642299,41.936988]},"n185973633":{"id":"n185973633","loc":[-85.639023,41.92861]},"n185973635":{"id":"n185973635","loc":[-85.639153,41.928969]},"n185973637":{"id":"n185973637","loc":[-85.639213,41.929088]},"n185973639":{"id":"n185973639","loc":[-85.63935,41.929396]},"n185973641":{"id":"n185973641","loc":[-85.640143,41.931462]},"n185973644":{"id":"n185973644","loc":[-85.64019,41.931788]},"n185973646":{"id":"n185973646","loc":[-85.6401365,41.9327199]},"n185973648":{"id":"n185973648","loc":[-85.639983,41.938174]},"n185974477":{"id":"n185974477","loc":[-85.638206,41.941331]},"n185975928":{"id":"n185975928","loc":[-85.640683,41.94513]},"n185975930":{"id":"n185975930","loc":[-85.643102,41.945103]},"n185976255":{"id":"n185976255","loc":[-85.642424,41.931817]},"n185976257":{"id":"n185976257","loc":[-85.64242,41.932699]},"n185976258":{"id":"n185976258","loc":[-85.6422621,41.9381489]},"n185977452":{"id":"n185977452","loc":[-85.6457497,41.9398834]},"n185978772":{"id":"n185978772","loc":[-85.646656,41.939869]},"n185981472":{"id":"n185981472","loc":[-85.6388962,41.9321266]},"n185981474":{"id":"n185981474","loc":[-85.6388769,41.9327334]},"n185981476":{"id":"n185981476","loc":[-85.638829,41.934116]},"n185981478":{"id":"n185981478","loc":[-85.63876,41.937002]},"n185981480":{"id":"n185981480","loc":[-85.638682,41.93819]},"n185981999":{"id":"n185981999","loc":[-85.638194,41.9400866]},"n185982001":{"id":"n185982001","loc":[-85.646302,41.93988]},"n185982877":{"id":"n185982877","loc":[-85.640676,41.943867]},"n185982879":{"id":"n185982879","loc":[-85.640734,41.945887]},"n185985823":{"id":"n185985823","loc":[-85.643106,41.943841]},"n185985824":{"id":"n185985824","loc":[-85.643145,41.947641]},"n185985825":{"id":"n185985825","loc":[-85.643219,41.950829]},"n1475301385":{"id":"n1475301385","loc":[-85.6360612,41.9427042]},"n1475301397":{"id":"n1475301397","loc":[-85.6366651,41.9426328]},"n2139795811":{"id":"n2139795811","loc":[-85.6469154,41.9425427]},"n2139795830":{"id":"n2139795830","loc":[-85.6443194,41.9399444]},"n2139795834":{"id":"n2139795834","loc":[-85.6453506,41.9399002]},"n2139795837":{"id":"n2139795837","loc":[-85.645806,41.9398831]},"n2139858932":{"id":"n2139858932","loc":[-85.6351721,41.9429557]},"n2140019000":{"id":"n2140019000","loc":[-85.6359935,41.9427224]},"n2165942817":{"id":"n2165942817","loc":[-85.6442017,41.9414993]},"n2165942820":{"id":"n2165942820","loc":[-85.6442107,41.9421159]},"n2189152990":{"id":"n2189152990","loc":[-85.6442328,41.942404]},"n2189152991":{"id":"n2189152991","loc":[-85.6442309,41.9422229]},"n2189153002":{"id":"n2189153002","loc":[-85.6441329,41.9413147]},"n2189153003":{"id":"n2189153003","loc":[-85.6441357,41.9414925]},"n2189153023":{"id":"n2189153023","loc":[-85.6443453,41.9423074]},"n2189153024":{"id":"n2189153024","loc":[-85.6442318,41.9423045]},"n2189153039":{"id":"n2189153039","loc":[-85.6441343,41.9414025]},"w208643102":{"id":"w208643102","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153034","n2189153035","n2189153036","n2189153037","n2189153038"]},"w17966942":{"id":"w17966942","tags":{"highway":"residential","name":"Millard St"},"nodes":["n185954680","n185960207","n185971368","n185948706","n185958670","n185981999","n185981481","n185981482","n185973650","n185973659","n185970607","n185976259","n185976261","n2139795830","n185964697","n2139795834","n185977452","n2139795837","n185982001","n185978772"]},"w208643105":{"id":"w208643105","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153046","n2189153047"]},"w208631637":{"id":"w208631637","tags":{"area":"yes","building":"yes"},"nodes":["n2189046014","n2189046016","n2189046018","n2189046021","n2189046022","n2189046025","n2189046014"]},"w208643096":{"id":"w208643096","tags":{"amenity":"parking","area":"yes","fee":"no"},"nodes":["n2189152990","n2189153024","n2189152991","n2189152992","n2189153025","n2189152993","n2189152990"]},"w208631656":{"id":"w208631656","tags":{"area":"yes","building":"yes"},"nodes":["n2189046134","n2189046135","n2189046137","n2189046138","n2189046134"]},"w204003417":{"id":"w204003417","tags":{"area":"yes","building":"school"},"nodes":["n2140155811","n2140155814","n2140155816","n2140155818","n2140155821","n2140155823","n2140155825","n2140155827","n2140155811"]},"w208631654":{"id":"w208631654","tags":{"area":"yes","building":"yes"},"nodes":["n2189046127","n2189046128","n2189046130","n2189046131","n2189046132","n2189046133","n2189046127"]},"w17966327":{"id":"w17966327","tags":{"highway":"residential","name":"S Douglas Ave"},"nodes":["n185976261","n2140155839","n2140155834","n185974481","n2189153032","n185964959"]},"w41785752":{"id":"w41785752","tags":{"highway":"primary","name":"West Michigan Avenue","old_ref":"US 131","ref":"US 131 Business;M 60","access":"yes"},"nodes":["n185954784","n2139795811","n185964695","n185964959","n185964960","n185964961","n185964962","n185964963","n185964965","n1475301397","n185964967","n1475301385","n2140019000","n185964968","n185964969","n2139858932","n185964970"]},"w203841842":{"id":"w203841842","tags":{"area":"yes","leisure":"playground"},"nodes":["n2138493848","n2138493849","n2138493850","n2138493851","n2138493852","n2138493853","n2138493854","n2138493855","n2138493856","n2138493848"]},"w208643103":{"id":"w208643103","tags":{"highway":"service"},"nodes":["n2189153039","n2189153040","n2189153041","n2189153042","n2189153043","n2189153047","n2189153045","n185974481"]},"w208643098":{"id":"w208643098","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153000","n2189153041","n2189153001","n2189153002","n2189153039","n2189153003","n2189153000"]},"w208631646":{"id":"w208631646","tags":{"area":"yes","building":"yes"},"nodes":["n2189046067","n2189046069","n2189046070","n2189046072","n2189046067"]},"w208631653":{"id":"w208631653","tags":{"area":"yes","building":"yes"},"nodes":["n2189046119","n2189046120","n2189046121","n2189046122","n2189046123","n2189046124","n2189046125","n2189046126","n2189046119"]},"w17966041":{"id":"w17966041","tags":{"highway":"residential","name":"S Lincoln Ave"},"nodes":["n185973659","n185973660","n185964961"]},"w208631645":{"id":"w208631645","tags":{"area":"yes","building":"yes"},"nodes":["n2189046060","n2189046061","n2189046063","n2189046065","n2189046060"]},"w206803397":{"id":"w206803397","tags":{"area":"yes","building":"yes"},"nodes":["n2168510551","n2168510552","n2168510553","n2168510554","n2168510555","n2168510556","n2168510557","n2168510558","n2168510551"]},"w17965792":{"id":"w17965792","tags":{"highway":"residential","name":"N Hooker Ave"},"nodes":["n185964962","n185970906","n185970908","n185970909"]},"w208631651":{"id":"w208631651","tags":{"area":"yes","building":"yes"},"nodes":["n2189046112","n2189046113","n2189046115","n2189046116","n2189046117","n2189046118","n2189046112"]},"w208631643":{"id":"w208631643","tags":{"area":"yes","building":"yes"},"nodes":["n2189046053","n2189046054","n2189046055","n2189046056","n2189046058","n2189046059","n2189046053"]},"w17966878":{"id":"w17966878","tags":{"highway":"residential","name":"S Hooker Ave"},"nodes":["n185981472","n185981474","n185963163","n185981476","n185969704","n185981478","n185981480","n185981481"]},"w17966102":{"id":"w17966102","tags":{"highway":"residential","name":"South St"},"nodes":["n185958672","n185974477","n185974479","n185973660","n185970614"]},"w208631660":{"id":"w208631660","tags":{"area":"yes","building":"yes"},"nodes":["n2189046145","n2189046146","n2189046147","n2189046148","n2189046149","n2189046150","n2189046152","n2189046153","n2189046145"]},"w208643101":{"id":"w208643101","tags":{"highway":"service"},"nodes":["n2189153023","n2189153024","n2189153025","n2189153026","n2189153038","n2189153027","n2189153028","n2189153029","n2189153033","n2189153009","n2189153030","n2189153034","n2189153031","n2189153032"]},"w204000205":{"id":"w204000205","tags":{"highway":"residential","name":"South St","oneway":"yes"},"nodes":["n185974481","n2140155851","n185970614"]},"w203841841":{"id":"w203841841","tags":{"area":"yes","leisure":"pitch","pitch":"basketball"},"nodes":["n2138493844","n2138493845","n2138493846","n2138493847","n2138493844"]},"w17965444":{"id":"w17965444","tags":{"highway":"residential","name":"N Grant Ave"},"nodes":["n185964960","n185967774","n185967775","n185966958","n185967776","n185967777"]},"w208631648":{"id":"w208631648","tags":{"area":"yes","building":"yes"},"nodes":["n2189046074","n2189046075","n2189046077","n2189046079","n2189046082","n2189046083","n2189046085","n2189046087","n2189046089","n2189046090","n2189046092","n2189046094","n2189046096","n2189046097","n2189046099","n2189046103","n2189046074"]},"w208643100":{"id":"w208643100","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153010","n2189153011","n2189153012","n2189153013","n2189153014","n2189153015","n2189153016","n2189153017","n2189153018","n2189153019","n2189153020","n2189153021","n2189153022","n2189153010"]},"w17965749":{"id":"w17965749","tags":{"highway":"residential","name":"S Grant Ave"},"nodes":["n185970614","n185970616","n185964960"]},"w206574482":{"id":"w206574482","tags":{"amenity":"library","area":"yes","building":"yes","name":"Three Rivers Public Library"},"nodes":["n2165942817","n2165942818","n2165942819","n2165942820","n2165942817"]},"w208643097":{"id":"w208643097","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189152994","n2189152995","n2189152996","n2189152997","n2189152998","n2189152999","n2189152994"]},"w17966879":{"id":"w17966879","tags":{"highway":"residential","name":"S Hooker Ave"},"nodes":["n185981482","n185974479","n185964962"]},"w17966325":{"id":"w17966325","tags":{"highway":"residential","name":"S Douglas Ave"},"nodes":["n185976255","n185976257","n185963168","n185969710","n185971980","n185976258","n185954700","n185976259"]},"w17967390":{"id":"w17967390","tags":{"highway":"residential","name":"N Douglas Ave"},"nodes":["n185964959","n185985823","n185975930","n185966960","n185985824","n185949870","n185985825"]},"w208631635":{"id":"w208631635","tags":{"area":"yes","building":"yes"},"nodes":["n2189046007","n2189046009","n2189046011","n2189046012","n2189046007"]},"w208643099":{"id":"w208643099","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153031","n2189153004","n2189153005","n2189153006","n2189153007","n2189153008","n2189153029","n2189153033","n2189153009","n2189153030","n2189153031"]},"w208631658":{"id":"w208631658","tags":{"area":"yes","building":"yes"},"nodes":["n2189046139","n2189046140","n2189046141","n2189046142","n2189046143","n2189046144","n2189046139"]},"w208643104":{"id":"w208643104","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153044","n2189153045"]},"w17966039":{"id":"w17966039","tags":{"highway":"residential","name":"S Lincoln Ave"},"nodes":["n185973633","n185973635","n185973637","n185969289","n185973639","n185949348","n185973641","n185973644","n185973646","n185963165","n185969706","n185971978","n185973648","n185973650"]},"w204003420":{"id":"w204003420","tags":{"amenity":"parking","area":"yes"},"nodes":["n2140155840","n2140155842","n2140155844","n2140155845","n2140155847","n2140155849","n2140155854","n2140155840"]},"w204003419":{"id":"w204003419","tags":{"highway":"service"},"nodes":["n2140155834","n2140155835","n2140155837","n2140155839"]},"w204003418":{"id":"w204003418","tags":{"amenity":"school","area":"yes","name":"Andrews Elementary School"},"nodes":["n2140155828","n2140155829","n2140155830","n2140155831","n2140155832","n2140155833","n2140155828"]},"w17965747":{"id":"w17965747","tags":{"highway":"residential","name":"S Grant Ave"},"nodes":["n185970602","n185970604","n185963167","n185969708","n185970605","n185970606","n185970607"]},"w17967073":{"id":"w17967073","tags":{"highway":"residential","name":"N Lincoln Ave"},"nodes":["n185964961","n185982877","n185975928","n185982879"]},"w204003421":{"id":"w204003421","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2140155851","n2140155852","n2140155854","n2140155856"]},"r1943857":{"id":"r1943857","tags":{"modifier":"Business","name":"US 131 Business (Three Rivers, MI)","network":"US:US","ref":"131","route":"road","type":"route"},"members":[{"id":"w17966509","type":"way","role":"forward"},{"id":"w143497377","type":"way","role":""},{"id":"w134150811","type":"way","role":""},{"id":"w134150800","type":"way","role":""},{"id":"w134150789","type":"way","role":""},{"id":"w134150795","type":"way","role":""},{"id":"w41785752","type":"way","role":""},{"id":"w17965146","type":"way","role":"forward"},{"id":"w17964031","type":"way","role":"forward"}]},"r270277":{"id":"r270277","tags":{"network":"US:MI","ref":"60","route":"road","state_id":"MI","type":"route","url":"http://en.wikipedia.org/wiki/M-60_%28Michigan_highway%29"},"members":[{"id":"w17751087","type":"way","role":"east"},{"id":"w117148312","type":"way","role":"east"},{"id":"w40942155","type":"way","role":"west"},{"id":"w17751017","type":"way","role":""},{"id":"w17751083","type":"way","role":""},{"id":"w17747780","type":"way","role":""},{"id":"w41068082","type":"way","role":""},{"id":"w197025212","type":"way","role":""},{"id":"w17743874","type":"way","role":""},{"id":"w17751044","type":"way","role":""},{"id":"w17752167","type":"way","role":""},{"id":"w17751089","type":"way","role":""},{"id":"w17743879","type":"way","role":""},{"id":"w17751064","type":"way","role":""},{"id":"w197057073","type":"way","role":""},{"id":"w167699963","type":"way","role":""},{"id":"w167699972","type":"way","role":""},{"id":"w17967584","type":"way","role":""},{"id":"w167699964","type":"way","role":""},{"id":"w17967582","type":"way","role":"west"},{"id":"w41260270","type":"way","role":"west"},{"id":"w17965146","type":"way","role":"west"},{"id":"w41785752","type":"way","role":""},{"id":"w134150795","type":"way","role":""},{"id":"w134150789","type":"way","role":""},{"id":"w134150800","type":"way","role":""},{"id":"w134150811","type":"way","role":""},{"id":"w134150836","type":"way","role":""},{"id":"w134150802","type":"way","role":""},{"id":"w41074896","type":"way","role":""},{"id":"w17966773","type":"way","role":""},{"id":"w17967415","type":"way","role":""},{"id":"w41074899","type":"way","role":""},{"id":"w17967581","type":"way","role":""},{"id":"w41074902","type":"way","role":""},{"id":"w41074906","type":"way","role":""},{"id":"w209707997","type":"way","role":""},{"id":"w209707998","type":"way","role":""},{"id":"w17964798","type":"way","role":""},{"id":"w17966034","type":"way","role":""},{"id":"w17967593","type":"way","role":""},{"id":"w41074888","type":"way","role":""},{"id":"w17733772","type":"way","role":""},{"id":"w41074813","type":"way","role":""},{"id":"w17742213","type":"way","role":""},{"id":"w17746863","type":"way","role":""},{"id":"w17745772","type":"way","role":""},{"id":"w17742222","type":"way","role":""},{"id":"w17745922","type":"way","role":""},{"id":"w17742198","type":"way","role":""},{"id":"w17747675","type":"way","role":""},{"id":"w17739927","type":"way","role":""},{"id":"w17745708","type":"way","role":""},{"id":"w41006323","type":"way","role":""},{"id":"w17744233","type":"way","role":""},{"id":"w17739436","type":"way","role":""},{"id":"w17742201","type":"way","role":""},{"id":"w151418616","type":"way","role":""},{"id":"w17750062","type":"way","role":""},{"id":"w17742227","type":"way","role":"east"},{"id":"w41006348","type":"way","role":"east"},{"id":"w41260984","type":"way","role":""},{"id":"w17832427","type":"way","role":""},{"id":"w17838408","type":"way","role":""},{"id":"w17835846","type":"way","role":""},{"id":"w17832923","type":"way","role":""},{"id":"w17839388","type":"way","role":""},{"id":"w17838390","type":"way","role":""},{"id":"w17831272","type":"way","role":""},{"id":"w17828581","type":"way","role":""},{"id":"w38240686","type":"way","role":""},{"id":"w17838405","type":"way","role":"east"},{"id":"w123323711","type":"way","role":"east"},{"id":"w17830167","type":"way","role":"east"},{"id":"w99011909","type":"way","role":"east"},{"id":"w41911361","type":"way","role":"east"},{"id":"w41911355","type":"way","role":"east"},{"id":"w41911356","type":"way","role":"east"},{"id":"w117148326","type":"way","role":"west"},{"id":"w41911352","type":"way","role":"west"},{"id":"w41911353","type":"way","role":"west"},{"id":"w41911354","type":"way","role":"west"},{"id":"w41911360","type":"way","role":"west"},{"id":"w38240676","type":"way","role":"west"},{"id":"w123323710","type":"way","role":"west"},{"id":"w41260271","type":"way","role":"east"},{"id":"w41260273","type":"way","role":"east"},{"id":"w17964031","type":"way","role":"east"},{"id":"w41006344","type":"way","role":"west"},{"id":"w41006351","type":"way","role":"west"}]},"n367813436":{"id":"n367813436","loc":[-85.63605205663384,41.94305506683346],"tags":{"amenity":"fire_station","name":"Three Rivers Fire Department"}},"n185948708":{"id":"n185948708","loc":[-85.6369828,41.9408789]},"n185948710":{"id":"n185948710","loc":[-85.6370184,41.9411346]},"n185954691":{"id":"n185954691","loc":[-85.634476,41.941475]},"n185954692":{"id":"n185954692","loc":[-85.635008,41.941846]},"n185954693":{"id":"n185954693","loc":[-85.635362,41.941962]},"n185954695":{"id":"n185954695","loc":[-85.63578,41.941978]},"n185972903":{"id":"n185972903","loc":[-85.63295,41.9430062]},"n185964971":{"id":"n185964971","loc":[-85.6346811,41.9431023]},"n1819805854":{"id":"n1819805854","loc":[-85.6331275,41.9404837]},"n1819805918":{"id":"n1819805918","loc":[-85.6331168,41.942798]},"n1819805762":{"id":"n1819805762","loc":[-85.6333034,41.9424123]},"n1819805907":{"id":"n1819805907","loc":[-85.6334819,41.9419121]},"n1819805915":{"id":"n1819805915","loc":[-85.6334554,41.9413588]},"n1819848888":{"id":"n1819848888","loc":[-85.6331625,41.942679]},"n1819848930":{"id":"n1819848930","loc":[-85.6338684,41.9431252]},"n1819858505":{"id":"n1819858505","loc":[-85.6346782,41.9429092]},"n1819858507":{"id":"n1819858507","loc":[-85.6339003,41.9414534]},"n1819858508":{"id":"n1819858508","loc":[-85.6345709,41.9427742]},"n1819858509":{"id":"n1819858509","loc":[-85.63419,41.9417322]},"n1819858511":{"id":"n1819858511","loc":[-85.6340666,41.9415652]},"n1819858512":{"id":"n1819858512","loc":[-85.6343295,41.9423027]},"n1819858514":{"id":"n1819858514","loc":[-85.6343241,41.942207]},"n1819858521":{"id":"n1819858521","loc":[-85.633391,41.941231]},"n1819858528":{"id":"n1819858528","loc":[-85.6343027,41.9419716]},"n185954683":{"id":"n185954683","loc":[-85.6335412,41.940147]},"n185954685":{"id":"n185954685","loc":[-85.6334296,41.9403023]},"n185954687":{"id":"n185954687","loc":[-85.6333988,41.9404704]},"n185954689":{"id":"n185954689","loc":[-85.6335511,41.9410225]},"n185954690":{"id":"n185954690","loc":[-85.6336721,41.9411669]},"n1820938802":{"id":"n1820938802","loc":[-85.6330671,41.941845]},"n1821006702":{"id":"n1821006702","loc":[-85.6344047,41.9395496]},"n2130304133":{"id":"n2130304133","loc":[-85.6349025,41.9427659]},"n2130304136":{"id":"n2130304136","loc":[-85.6346027,41.9422017]},"n2130304138":{"id":"n2130304138","loc":[-85.6348577,41.9421517]},"n2130304140":{"id":"n2130304140","loc":[-85.6348419,41.9422694]},"n2130304142":{"id":"n2130304142","loc":[-85.6349071,41.9423135]},"n2130304144":{"id":"n2130304144","loc":[-85.6350495,41.9423312]},"n2130304146":{"id":"n2130304146","loc":[-85.6351009,41.9422812]},"n2130304147":{"id":"n2130304147","loc":[-85.6351227,41.9421532]},"n2130304148":{"id":"n2130304148","loc":[-85.635526,41.9421547]},"n2130304149":{"id":"n2130304149","loc":[-85.6355339,41.9425768]},"n2130304150":{"id":"n2130304150","loc":[-85.6351582,41.9426562]},"n2130304151":{"id":"n2130304151","loc":[-85.6351207,41.9427032]},"n2138493807":{"id":"n2138493807","loc":[-85.6350923,41.9415216]},"n2138493808":{"id":"n2138493808","loc":[-85.6353603,41.9411061]},"n2138493809":{"id":"n2138493809","loc":[-85.6354421,41.9410942]},"n2138493810":{"id":"n2138493810","loc":[-85.6355079,41.9411044]},"n2138493811":{"id":"n2138493811","loc":[-85.6355693,41.9411246]},"n2138493812":{"id":"n2138493812","loc":[-85.6355829,41.9411061]},"n2138493813":{"id":"n2138493813","loc":[-85.6355624,41.9409777]},"n2138493814":{"id":"n2138493814","loc":[-85.6355011,41.9409152]},"n2138493815":{"id":"n2138493815","loc":[-85.635383,41.9409219]},"n2138493816":{"id":"n2138493816","loc":[-85.635299,41.9409658]},"n2138493817":{"id":"n2138493817","loc":[-85.6351695,41.941204]},"n2138493818":{"id":"n2138493818","loc":[-85.6348879,41.9415166]},"n2138493819":{"id":"n2138493819","loc":[-85.634897,41.9415757]},"n2138493820":{"id":"n2138493820","loc":[-85.6349606,41.9416399]},"n2138493821":{"id":"n2138493821","loc":[-85.6350219,41.9416669]},"n2138493822":{"id":"n2138493822","loc":[-85.6351241,41.9416314]},"n2138493823":{"id":"n2138493823","loc":[-85.6350855,41.9415622]},"n2138493824":{"id":"n2138493824","loc":[-85.6350401,41.9413603]},"n2138493825":{"id":"n2138493825","loc":[-85.6352206,41.9410765]},"n2138493826":{"id":"n2138493826","loc":[-85.6343865,41.9415594]},"n2138493827":{"id":"n2138493827","loc":[-85.6343506,41.9415873]},"n2138493828":{"id":"n2138493828","loc":[-85.6344158,41.9417557]},"n2138493829":{"id":"n2138493829","loc":[-85.6344614,41.9417968]},"n2138493830":{"id":"n2138493830","loc":[-85.6345005,41.9418186]},"n2138493831":{"id":"n2138493831","loc":[-85.6345965,41.9418162]},"n2138493832":{"id":"n2138493832","loc":[-85.6347317,41.9417242]},"n2138493833":{"id":"n2138493833","loc":[-85.6346722,41.941775]},"n2139858909":{"id":"n2139858909","loc":[-85.633403,41.9391006]},"n2139858910":{"id":"n2139858910","loc":[-85.6332973,41.9393967]},"n2139858911":{"id":"n2139858911","loc":[-85.633205,41.9396742]},"n2139858912":{"id":"n2139858912","loc":[-85.6332203,41.9397772]},"n2139858913":{"id":"n2139858913","loc":[-85.6333453,41.939936]},"n2139858914":{"id":"n2139858914","loc":[-85.6333761,41.9400018]},"n2139858915":{"id":"n2139858915","loc":[-85.63328,41.9402249]},"n2139858916":{"id":"n2139858916","loc":[-85.6332357,41.9403523]},"n2139858917":{"id":"n2139858917","loc":[-85.6332838,41.9405831]},"n2139858918":{"id":"n2139858918","loc":[-85.6333643,41.9408744]},"n2139858919":{"id":"n2139858919","loc":[-85.6334394,41.9410519]},"n2139858920":{"id":"n2139858920","loc":[-85.6335815,41.9411717]},"n2139858921":{"id":"n2139858921","loc":[-85.6337478,41.9412734]},"n2139858922":{"id":"n2139858922","loc":[-85.6343174,41.9415268]},"n2139858923":{"id":"n2139858923","loc":[-85.6343886,41.9417397]},"n2139858924":{"id":"n2139858924","loc":[-85.6344407,41.9418015]},"n2139858925":{"id":"n2139858925","loc":[-85.6345139,41.9418366]},"n2139858926":{"id":"n2139858926","loc":[-85.6344846,41.942005]},"n2139858927":{"id":"n2139858927","loc":[-85.6345775,41.9422218]},"n2139858928":{"id":"n2139858928","loc":[-85.6348771,41.9427814]},"n2139858929":{"id":"n2139858929","loc":[-85.6349487,41.9427995]},"n2139858930":{"id":"n2139858930","loc":[-85.6350415,41.9427874]},"n2139858931":{"id":"n2139858931","loc":[-85.6351246,41.9428589]},"n2139858978":{"id":"n2139858978","loc":[-85.6349658,41.9431481]},"n2139858979":{"id":"n2139858979","loc":[-85.6350081,41.9431287]},"n2139858980":{"id":"n2139858980","loc":[-85.6349967,41.9430997]},"n2139858981":{"id":"n2139858981","loc":[-85.6352158,41.9430352]},"n2139858982":{"id":"n2139858982","loc":[-85.6348174,41.94267]},"n2139858983":{"id":"n2139858983","loc":[-85.6346142,41.9425989]},"n2139858984":{"id":"n2139858984","loc":[-85.6344938,41.9423809]},"n2139858985":{"id":"n2139858985","loc":[-85.6344856,41.9422997]},"n2139870380":{"id":"n2139870380","loc":[-85.6346707,41.9417955]},"n2139870381":{"id":"n2139870381","loc":[-85.6345949,41.9418311]},"n2139870382":{"id":"n2139870382","loc":[-85.6343322,41.9418659]},"n2139870383":{"id":"n2139870383","loc":[-85.6342072,41.941885]},"n2139870384":{"id":"n2139870384","loc":[-85.6341325,41.9418919]},"n2139870385":{"id":"n2139870385","loc":[-85.6341314,41.9422028]},"n2139870386":{"id":"n2139870386","loc":[-85.6340472,41.9423271]},"n2139870387":{"id":"n2139870387","loc":[-85.6342185,41.9427933]},"n2139870388":{"id":"n2139870388","loc":[-85.6340605,41.9423924]},"n2139870389":{"id":"n2139870389","loc":[-85.6339889,41.9424069]},"n2139870390":{"id":"n2139870390","loc":[-85.633971,41.942356]},"n2139870391":{"id":"n2139870391","loc":[-85.63361,41.9424235]},"n2139870392":{"id":"n2139870392","loc":[-85.6337137,41.9426819]},"n2139870393":{"id":"n2139870393","loc":[-85.6336977,41.9428632]},"n2139870394":{"id":"n2139870394","loc":[-85.6338823,41.9428647]},"n2139870395":{"id":"n2139870395","loc":[-85.6339412,41.9430069]},"n2139870396":{"id":"n2139870396","loc":[-85.6338873,41.9430353]},"n2139870397":{"id":"n2139870397","loc":[-85.6337676,41.942815]},"n2139870398":{"id":"n2139870398","loc":[-85.6336822,41.9423505]},"n2139870399":{"id":"n2139870399","loc":[-85.634037,41.9422725]},"n2139870400":{"id":"n2139870400","loc":[-85.6340294,41.9422518]},"n2139870401":{"id":"n2139870401","loc":[-85.6336726,41.9423312]},"n2139870402":{"id":"n2139870402","loc":[-85.6342188,41.9425715]},"n2139870403":{"id":"n2139870403","loc":[-85.6342524,41.942565]},"n2139870404":{"id":"n2139870404","loc":[-85.6341438,41.942299]},"n2139870405":{"id":"n2139870405","loc":[-85.6341149,41.9423061]},"n2139870407":{"id":"n2139870407","loc":[-85.6340846,41.9431458]},"n2139870408":{"id":"n2139870408","loc":[-85.6339436,41.9429032]},"n2139870409":{"id":"n2139870409","loc":[-85.6343143,41.9428207]},"n2139870410":{"id":"n2139870410","loc":[-85.6343507,41.94277]},"n2139870411":{"id":"n2139870411","loc":[-85.6341527,41.942254]},"n2139870412":{"id":"n2139870412","loc":[-85.6340925,41.9422199]},"n2139870413":{"id":"n2139870413","loc":[-85.6335435,41.9423433]},"n2139870414":{"id":"n2139870414","loc":[-85.6335023,41.9423975]},"n2139870415":{"id":"n2139870415","loc":[-85.6335086,41.9424552]},"n2139870416":{"id":"n2139870416","loc":[-85.6336296,41.942665]},"n2139870417":{"id":"n2139870417","loc":[-85.6341396,41.9428596]},"n2139870418":{"id":"n2139870418","loc":[-85.6339701,41.9424487]},"n2139870419":{"id":"n2139870419","loc":[-85.6335514,41.9425294]},"n2139870420":{"id":"n2139870420","loc":[-85.6337406,41.9424929]},"n2139870421":{"id":"n2139870421","loc":[-85.6338939,41.9428687]},"n2139870422":{"id":"n2139870422","loc":[-85.6341323,41.9419538]},"n2139870423":{"id":"n2139870423","loc":[-85.6340321,41.9420376]},"n2139870424":{"id":"n2139870424","loc":[-85.6337648,41.942238]},"n2139870425":{"id":"n2139870425","loc":[-85.6337604,41.9422685]},"n2139870426":{"id":"n2139870426","loc":[-85.6337682,41.9422928]},"n2139870427":{"id":"n2139870427","loc":[-85.6338086,41.9423862]},"n2139870428":{"id":"n2139870428","loc":[-85.6349465,41.9416631]},"n2139870429":{"id":"n2139870429","loc":[-85.6351097,41.9416973]},"n2139870430":{"id":"n2139870430","loc":[-85.6353371,41.9416798]},"n2139870431":{"id":"n2139870431","loc":[-85.6349627,41.9422506]},"n2139870432":{"id":"n2139870432","loc":[-85.634979,41.9421815]},"n2139870433":{"id":"n2139870433","loc":[-85.634885,41.9421679]},"n2139870434":{"id":"n2139870434","loc":[-85.6348689,41.9422377]},"n2139870435":{"id":"n2139870435","loc":[-85.6349779,41.9419486]},"n2139870436":{"id":"n2139870436","loc":[-85.6349505,41.9418933]},"n2139870437":{"id":"n2139870437","loc":[-85.6347327,41.9419505]},"n2139870438":{"id":"n2139870438","loc":[-85.6347614,41.9420087]},"n2139870439":{"id":"n2139870439","loc":[-85.6351889,41.9416912]},"n2139870440":{"id":"n2139870440","loc":[-85.6351092,41.9418426]},"n2139870441":{"id":"n2139870441","loc":[-85.635086,41.9419659]},"n2139870442":{"id":"n2139870442","loc":[-85.6350584,41.9421466]},"n2139870443":{"id":"n2139870443","loc":[-85.6350993,41.9421606]},"n2139870444":{"id":"n2139870444","loc":[-85.6350993,41.9422132]},"n2139870445":{"id":"n2139870445","loc":[-85.6350794,41.9422855]},"n2139870446":{"id":"n2139870446","loc":[-85.6350474,41.9423159]},"n2139870447":{"id":"n2139870447","loc":[-85.6349251,41.9422998]},"n2139870448":{"id":"n2139870448","loc":[-85.634911,41.9422755]},"n2139870449":{"id":"n2139870449","loc":[-85.6349157,41.9422553]},"n2139870450":{"id":"n2139870450","loc":[-85.6347213,41.9419324]},"n2139870451":{"id":"n2139870451","loc":[-85.6349535,41.9418771]},"n2139870452":{"id":"n2139870452","loc":[-85.6350135,41.9419421]},"n2139870453":{"id":"n2139870453","loc":[-85.6348584,41.9418997]},"n2139870454":{"id":"n2139870454","loc":[-85.6348113,41.9418101]},"n2139870455":{"id":"n2139870455","loc":[-85.6347306,41.9417449]},"n2139870456":{"id":"n2139870456","loc":[-85.6349123,41.941776]},"n2139870457":{"id":"n2139870457","loc":[-85.6349423,41.9421448]},"n2139870458":{"id":"n2139870458","loc":[-85.6349436,41.9420652]},"n2139870459":{"id":"n2139870459","loc":[-85.6349136,41.9419963]},"n2139870460":{"id":"n2139870460","loc":[-85.6349814,41.9419789]},"n2139989328":{"id":"n2139989328","loc":[-85.6334188,41.9421725]},"n2139989330":{"id":"n2139989330","loc":[-85.6335087,41.9416308]},"n2139989335":{"id":"n2139989335","loc":[-85.6336856,41.9429371]},"n2139989337":{"id":"n2139989337","loc":[-85.6333713,41.9427217]},"n2139989339":{"id":"n2139989339","loc":[-85.6332912,41.9425383]},"n2139989341":{"id":"n2139989341","loc":[-85.6339369,41.9409198]},"n2139989344":{"id":"n2139989344","loc":[-85.634097,41.9409469]},"n2139989346":{"id":"n2139989346","loc":[-85.634137,41.9412852]},"n2139989348":{"id":"n2139989348","loc":[-85.6344536,41.9414151]},"n2139989350":{"id":"n2139989350","loc":[-85.6350794,41.9412392]},"n2139989351":{"id":"n2139989351","loc":[-85.6352541,41.9409387]},"n2139989353":{"id":"n2139989353","loc":[-85.6357198,41.9408007]},"n2139989355":{"id":"n2139989355","loc":[-85.6357235,41.9427088]},"n2139989357":{"id":"n2139989357","loc":[-85.6337119,41.9421256]},"n2139989359":{"id":"n2139989359","loc":[-85.6336913,41.9420655]},"n2139989360":{"id":"n2139989360","loc":[-85.633582,41.9420867]},"n2139989362":{"id":"n2139989362","loc":[-85.6336058,41.9421491]},"n2139989364":{"id":"n2139989364","loc":[-85.6339685,41.9410995]},"n2139989366":{"id":"n2139989366","loc":[-85.6339067,41.9411383]},"n2139989368":{"id":"n2139989368","loc":[-85.6339685,41.9411972]},"n2139989370":{"id":"n2139989370","loc":[-85.6340398,41.9411619]},"n2139870379":{"id":"n2139870379","loc":[-85.6348391,41.9416651]},"n2140006363":{"id":"n2140006363","loc":[-85.6353144,41.9430345]},"n2140006364":{"id":"n2140006364","loc":[-85.6349191,41.9431422]},"n2140018997":{"id":"n2140018997","loc":[-85.63645945147184,41.942986488012565],"tags":{"amenity":"townhall","name":"Three Rivers City Hall"}},"n2140018998":{"id":"n2140018998","loc":[-85.6370319,41.9427919]},"n2140018999":{"id":"n2140018999","loc":[-85.6360687,41.9427808]},"n2199856288":{"id":"n2199856288","loc":[-85.6344968,41.9407307]},"n2199856289":{"id":"n2199856289","loc":[-85.634492,41.9406036]},"n2199856290":{"id":"n2199856290","loc":[-85.634891,41.9406001]},"n2199856291":{"id":"n2199856291","loc":[-85.6348894,41.9405288]},"n2199856292":{"id":"n2199856292","loc":[-85.6349166,41.94053]},"n2199856293":{"id":"n2199856293","loc":[-85.6349166,41.9404956]},"n2199856294":{"id":"n2199856294","loc":[-85.6350219,41.9404956]},"n2199856295":{"id":"n2199856295","loc":[-85.6350251,41.94053]},"n2199856296":{"id":"n2199856296","loc":[-85.6350538,41.9405288]},"n2199856297":{"id":"n2199856297","loc":[-85.6350602,41.94079]},"n2199856298":{"id":"n2199856298","loc":[-85.6351703,41.9407912]},"n2199856299":{"id":"n2199856299","loc":[-85.6351688,41.9409171]},"n2199856300":{"id":"n2199856300","loc":[-85.6347889,41.9409135]},"n2199856301":{"id":"n2199856301","loc":[-85.6347921,41.94079]},"n2199856302":{"id":"n2199856302","loc":[-85.6348942,41.9407888]},"n2199856303":{"id":"n2199856303","loc":[-85.6348926,41.9407283]},"n185951869":{"id":"n185951869","loc":[-85.6387639,41.957288]},"n185958643":{"id":"n185958643","loc":[-85.636746,41.929221]},"n185958645":{"id":"n185958645","loc":[-85.636791,41.929363]},"n185958647":{"id":"n185958647","loc":[-85.6375975,41.9314987]},"n185958649":{"id":"n185958649","loc":[-85.637669,41.931667]},"n185958651":{"id":"n185958651","loc":[-85.637728,41.931901]},"n185958653":{"id":"n185958653","loc":[-85.637724,41.932187]},"n185958656":{"id":"n185958656","loc":[-85.637732,41.932761]},"n185958658":{"id":"n185958658","loc":[-85.637688,41.93398]},"n185958660":{"id":"n185958660","loc":[-85.637685,41.934223]},"n185958662":{"id":"n185958662","loc":[-85.6376468,41.9350232]},"n185958664":{"id":"n185958664","loc":[-85.637564,41.937028]},"n185958666":{"id":"n185958666","loc":[-85.637458,41.938197]},"n185958668":{"id":"n185958668","loc":[-85.637424,41.938692]},"n185964972":{"id":"n185964972","loc":[-85.6341901,41.9432732]},"n185971361":{"id":"n185971361","loc":[-85.635762,41.938208]},"n185971364":{"id":"n185971364","loc":[-85.635732,41.9384]},"n185971366":{"id":"n185971366","loc":[-85.635736,41.938697]},"n185972775":{"id":"n185972775","loc":[-85.635638,42.070357]},"n185972777":{"id":"n185972777","loc":[-85.635724,42.069929]},"n185972779":{"id":"n185972779","loc":[-85.635804,42.069248]},"n185972781":{"id":"n185972781","loc":[-85.635869,42.068361]},"n185972783":{"id":"n185972783","loc":[-85.635883,42.067582]},"n185972785":{"id":"n185972785","loc":[-85.635875,42.067114]},"n185972787":{"id":"n185972787","loc":[-85.635778,42.065359]},"n185972788":{"id":"n185972788","loc":[-85.635728,42.063416]},"n185972789":{"id":"n185972789","loc":[-85.635665,42.062491]},"n185972790":{"id":"n185972790","loc":[-85.635617,42.061928]},"n185972791":{"id":"n185972791","loc":[-85.635614,42.061898]},"n185972793":{"id":"n185972793","loc":[-85.635379,42.060288]},"n185972795":{"id":"n185972795","loc":[-85.635092,42.05799]},"n185972797":{"id":"n185972797","loc":[-85.634843,42.055781]},"n185972798":{"id":"n185972798","loc":[-85.634817,42.055549]},"n185972800":{"id":"n185972800","loc":[-85.634708,42.053942]},"n185972802":{"id":"n185972802","loc":[-85.634447,42.051809]},"n185972805":{"id":"n185972805","loc":[-85.634241,42.04946]},"n185972807":{"id":"n185972807","loc":[-85.633787,42.045926]},"n185972809":{"id":"n185972809","loc":[-85.633811,42.045645]},"n185972811":{"id":"n185972811","loc":[-85.63373,42.043626]},"n185972813":{"id":"n185972813","loc":[-85.633698,42.042184]},"n185972814":{"id":"n185972814","loc":[-85.63369,42.04181]},"n185972815":{"id":"n185972815","loc":[-85.633681,42.040714]},"n185972816":{"id":"n185972816","loc":[-85.633571,42.036322]},"n185972817":{"id":"n185972817","loc":[-85.633537,42.034044]},"n185972819":{"id":"n185972819","loc":[-85.633481,42.030785]},"n185972821":{"id":"n185972821","loc":[-85.633452,42.027538]},"n185972824":{"id":"n185972824","loc":[-85.633438,42.027427]},"n185972826":{"id":"n185972826","loc":[-85.633342,42.022656]},"n185972830":{"id":"n185972830","loc":[-85.63327,42.020724]},"n185972832":{"id":"n185972832","loc":[-85.633198,42.019106]},"n185972834":{"id":"n185972834","loc":[-85.633249,42.018363]},"n185972835":{"id":"n185972835","loc":[-85.633139,42.012944]},"n185972836":{"id":"n185972836","loc":[-85.63309,42.008284]},"n185972839":{"id":"n185972839","loc":[-85.63298,42.00005]},"n185972845":{"id":"n185972845","loc":[-85.6325369,41.9764959]},"n185972847":{"id":"n185972847","loc":[-85.6327549,41.9750005]},"n185972849":{"id":"n185972849","loc":[-85.6329374,41.9742527]},"n185972851":{"id":"n185972851","loc":[-85.6331387,41.9736039]},"n185972862":{"id":"n185972862","loc":[-85.6383589,41.9585023]},"n185972868":{"id":"n185972868","loc":[-85.6393633,41.9551716]},"n185972878":{"id":"n185972878","loc":[-85.639377,41.95335]},"n185972882":{"id":"n185972882","loc":[-85.6389179,41.9516944]},"n185972885":{"id":"n185972885","loc":[-85.6387444,41.9512105]},"n185972891":{"id":"n185972891","loc":[-85.636421,41.946392]},"n185972895":{"id":"n185972895","loc":[-85.635965,41.945809]},"n185972897":{"id":"n185972897","loc":[-85.635683,41.945449]},"n185972899":{"id":"n185972899","loc":[-85.635281,41.9450252]},"n185972905":{"id":"n185972905","loc":[-85.6324428,41.9425743]},"n185985217":{"id":"n185985217","loc":[-85.638243,41.943674]},"n185985219":{"id":"n185985219","loc":[-85.638228,41.943747]},"n185985221":{"id":"n185985221","loc":[-85.638163,41.943797]},"n185985222":{"id":"n185985222","loc":[-85.638089,41.943832]},"n185985223":{"id":"n185985223","loc":[-85.637969,41.943841]},"n185985225":{"id":"n185985225","loc":[-85.637841,41.943833]},"n185985227":{"id":"n185985227","loc":[-85.637601,41.943789]},"n185985229":{"id":"n185985229","loc":[-85.637449,41.943754]},"n185985231":{"id":"n185985231","loc":[-85.637342,41.943734]},"n185985233":{"id":"n185985233","loc":[-85.637218,41.943703]},"n185985235":{"id":"n185985235","loc":[-85.637151,41.943663]},"n185985238":{"id":"n185985238","loc":[-85.637118,41.943615]},"n185985240":{"id":"n185985240","loc":[-85.637073,41.943494]},"n185990434":{"id":"n185990434","loc":[-85.6329028,41.9984292],"tags":{"railway":"level_crossing"}},"n1475284023":{"id":"n1475284023","loc":[-85.6336163,41.9435806],"tags":{"railway":"level_crossing"}},"n1475293222":{"id":"n1475293222","loc":[-85.6394045,41.953658],"tags":{"railway":"level_crossing"}},"n1475293226":{"id":"n1475293226","loc":[-85.6364975,41.9638663],"tags":{"railway":"level_crossing"}},"n1475293234":{"id":"n1475293234","loc":[-85.6390449,41.9565145]},"n1475293240":{"id":"n1475293240","loc":[-85.636943,41.9473114]},"n1475293252":{"id":"n1475293252","loc":[-85.6392115,41.9559003]},"n1475293254":{"id":"n1475293254","loc":[-85.6348931,41.9685127],"tags":{"railway":"level_crossing"}},"n1475293260":{"id":"n1475293260","loc":[-85.6375999,41.9485401]},"n1475293261":{"id":"n1475293261","loc":[-85.6391256,41.9523817],"tags":{"railway":"level_crossing"}},"n1475293264":{"id":"n1475293264","loc":[-85.6394155,41.9546493],"tags":{"railway":"level_crossing"}},"n1819805614":{"id":"n1819805614","loc":[-85.6345652,41.9363097]},"n1819805618":{"id":"n1819805618","loc":[-85.6295334,41.9426862]},"n1819805622":{"id":"n1819805622","loc":[-85.6308208,41.9430773]},"n1819805626":{"id":"n1819805626","loc":[-85.6274734,41.9406592]},"n1819805629":{"id":"n1819805629","loc":[-85.6296943,41.9430533]},"n1819805632":{"id":"n1819805632","loc":[-85.6340931,41.9354477]},"n1819805636":{"id":"n1819805636","loc":[-85.6304131,41.9436598]},"n1819805639":{"id":"n1819805639","loc":[-85.6304882,41.9426623]},"n1819805641":{"id":"n1819805641","loc":[-85.6336103,41.9367487]},"n1819805643":{"id":"n1819805643","loc":[-85.6300376,41.9418084]},"n1819805645":{"id":"n1819805645","loc":[-85.6365286,41.9336679]},"n1819805647":{"id":"n1819805647","loc":[-85.632016,41.9429221]},"n1819805666":{"id":"n1819805666","loc":[-85.6314753,41.9442663]},"n1819805669":{"id":"n1819805669","loc":[-85.6268619,41.9402203]},"n1819805673":{"id":"n1819805673","loc":[-85.6296728,41.9412099]},"n1819805676":{"id":"n1819805676","loc":[-85.6354557,41.932766]},"n1819805680":{"id":"n1819805680","loc":[-85.632752,41.9431012]},"n1819805683":{"id":"n1819805683","loc":[-85.631147,41.9432014]},"n1819805687":{"id":"n1819805687","loc":[-85.635284,41.9343942]},"n1819805690":{"id":"n1819805690","loc":[-85.6249736,41.9405794]},"n1819805694":{"id":"n1819805694","loc":[-85.6294153,41.9417925]},"n1819805698":{"id":"n1819805698","loc":[-85.6323486,41.9426986]},"n1819805702":{"id":"n1819805702","loc":[-85.6340287,41.9373871]},"n1819805707":{"id":"n1819805707","loc":[-85.6353698,41.9316326]},"n1819805711":{"id":"n1819805711","loc":[-85.6284176,41.940356]},"n1819805715":{"id":"n1819805715","loc":[-85.6291471,41.9412897]},"n1819805718":{"id":"n1819805718","loc":[-85.6311105,41.943979]},"n1819805722":{"id":"n1819805722","loc":[-85.6320868,41.9400128]},"n1819805724":{"id":"n1819805724","loc":[-85.635166,41.9324627]},"n1819805727":{"id":"n1819805727","loc":[-85.6344686,41.9350567]},"n1819805728":{"id":"n1819805728","loc":[-85.6357132,41.9332369]},"n1819805731":{"id":"n1819805731","loc":[-85.629984,41.9434444]},"n1819805760":{"id":"n1819805760","loc":[-85.6330996,41.9378784]},"n1819805766":{"id":"n1819805766","loc":[-85.625274,41.9411141]},"n1819805770":{"id":"n1819805770","loc":[-85.6326321,41.9412173]},"n1819805774":{"id":"n1819805774","loc":[-85.6347047,41.9312096]},"n1819805777":{"id":"n1819805777","loc":[-85.6363569,41.9339552]},"n1819805780":{"id":"n1819805780","loc":[-85.6327392,41.941926]},"n1819805783":{"id":"n1819805783","loc":[-85.6357239,41.9338435]},"n1819805786":{"id":"n1819805786","loc":[-85.6356595,41.9346576]},"n1819805789":{"id":"n1819805789","loc":[-85.6316469,41.9436598]},"n1819805792":{"id":"n1819805792","loc":[-85.6350587,41.9354557]},"n1819805795":{"id":"n1819805795","loc":[-85.6360028,41.9322791]},"n1819805798":{"id":"n1819805798","loc":[-85.63125,41.9443062]},"n1819805802":{"id":"n1819805802","loc":[-85.6263362,41.9408109]},"n1819805805":{"id":"n1819805805","loc":[-85.6315075,41.9438753]},"n1819805808":{"id":"n1819805808","loc":[-85.6340008,41.9316051]},"n1819805810":{"id":"n1819805810","loc":[-85.6345545,41.9320557]},"n1819805812":{"id":"n1819805812","loc":[-85.6250809,41.9408587]},"n1819805814":{"id":"n1819805814","loc":[-85.6257783,41.9400926]},"n1819805834":{"id":"n1819805834","loc":[-85.6326408,41.9424363]},"n1819805838":{"id":"n1819805838","loc":[-85.6365607,41.9334365]},"n1819805842":{"id":"n1819805842","loc":[-85.6288253,41.9410343]},"n1819805846":{"id":"n1819805846","loc":[-85.6279133,41.9402921]},"n1819805849":{"id":"n1819805849","loc":[-85.6289433,41.9405156]},"n1819805852":{"id":"n1819805852","loc":[-85.6313787,41.9439152]},"n1819805858":{"id":"n1819805858","loc":[-85.6300805,41.9420398]},"n1819805861":{"id":"n1819805861","loc":[-85.6321941,41.9396297]},"n1819805864":{"id":"n1819805864","loc":[-85.6329129,41.9393903]},"n1819805868":{"id":"n1819805868","loc":[-85.632001,41.9434922]},"n1819805870":{"id":"n1819805870","loc":[-85.6314903,41.9431535]},"n1819805873":{"id":"n1819805873","loc":[-85.6251667,41.9401166]},"n1819805876":{"id":"n1819805876","loc":[-85.63287,41.939941]},"n1819805878":{"id":"n1819805878","loc":[-85.6307886,41.9437317]},"n1819805880":{"id":"n1819805880","loc":[-85.6321727,41.940348]},"n1819805883":{"id":"n1819805883","loc":[-85.6265872,41.940113]},"n1819805885":{"id":"n1819805885","loc":[-85.6268404,41.9406672]},"n1819805887":{"id":"n1819805887","loc":[-85.6325267,41.9389035]},"n1819805889":{"id":"n1819805889","loc":[-85.6364964,41.933189]},"n1819805911":{"id":"n1819805911","loc":[-85.6248663,41.9401804]},"n1819805922":{"id":"n1819805922","loc":[-85.633267,41.9387199]},"n1819805925":{"id":"n1819805925","loc":[-85.6293402,41.9408428]},"n1819848849":{"id":"n1819848849","loc":[-85.6464957,41.9695178]},"n1819848850":{"id":"n1819848850","loc":[-85.6497642,41.9611355]},"n1819848851":{"id":"n1819848851","loc":[-85.6480943,41.9624818]},"n1819848854":{"id":"n1819848854","loc":[-85.6500362,41.9657367]},"n1819848855":{"id":"n1819848855","loc":[-85.6493673,41.9783496]},"n1819848856":{"id":"n1819848856","loc":[-85.6457409,41.9548007]},"n1819848857":{"id":"n1819848857","loc":[-85.651313,41.9760426]},"n1819848858":{"id":"n1819848858","loc":[-85.6495819,41.9784772]},"n1819848859":{"id":"n1819848859","loc":[-85.6495105,41.9833722]},"n1819848860":{"id":"n1819848860","loc":[-85.6405053,41.9492792]},"n1819848863":{"id":"n1819848863","loc":[-85.6502293,41.9786826]},"n1819848865":{"id":"n1819848865","loc":[-85.6406877,41.9495106]},"n1819848870":{"id":"n1819848870","loc":[-85.6493136,41.9704611]},"n1819848871":{"id":"n1819848871","loc":[-85.6372249,41.9441284]},"n1819848873":{"id":"n1819848873","loc":[-85.6512379,41.9659441]},"n1819848875":{"id":"n1819848875","loc":[-85.6508087,41.9650187]},"n1819848877":{"id":"n1819848877","loc":[-85.6487166,41.9605352]},"n1819848878":{"id":"n1819848878","loc":[-85.6506478,41.9760665]},"n1819848879":{"id":"n1819848879","loc":[-85.651431,41.9758512]},"n1819848886":{"id":"n1819848886","loc":[-85.6477617,41.9563945]},"n1819848889":{"id":"n1819848889","loc":[-85.6497895,41.9832286]},"n1819848892":{"id":"n1819848892","loc":[-85.6504868,41.9791931]},"n1819848893":{"id":"n1819848893","loc":[-85.6498002,41.9615085]},"n1819848894":{"id":"n1819848894","loc":[-85.6404302,41.9502846]},"n1819848901":{"id":"n1819848901","loc":[-85.6354412,41.9439886]},"n1819848903":{"id":"n1819848903","loc":[-85.6472145,41.9698528]},"n1819848904":{"id":"n1819848904","loc":[-85.6401979,41.9486233]},"n1819848905":{"id":"n1819848905","loc":[-85.6475042,41.963503]},"n1819848909":{"id":"n1819848909","loc":[-85.6343405,41.94358]},"n1819848914":{"id":"n1819848914","loc":[-85.6503474,41.9737773]},"n1819848915":{"id":"n1819848915","loc":[-85.6389533,41.9470992]},"n1819848916":{"id":"n1819848916","loc":[-85.6483625,41.9577907]},"n1819848917":{"id":"n1819848917","loc":[-85.6484768,41.9617419]},"n1819848918":{"id":"n1819848918","loc":[-85.644078,41.9545693]},"n1819848919":{"id":"n1819848919","loc":[-85.6437169,41.9543041]},"n1819848920":{"id":"n1819848920","loc":[-85.6478331,41.9627949]},"n1819848922":{"id":"n1819848922","loc":[-85.6499144,41.9785889]},"n1819848924":{"id":"n1819848924","loc":[-85.647633,41.9720066]},"n1819848926":{"id":"n1819848926","loc":[-85.6487987,41.978868]},"n1819848927":{"id":"n1819848927","loc":[-85.6495105,41.9730355]},"n1819848928":{"id":"n1819848928","loc":[-85.648223,41.9829654]},"n1819848929":{"id":"n1819848929","loc":[-85.6514846,41.9659122]},"n1819848931":{"id":"n1819848931","loc":[-85.6498753,41.9731871]},"n1819848932":{"id":"n1819848932","loc":[-85.640906,41.9508575]},"n1819848933":{"id":"n1819848933","loc":[-85.649775,41.9799767]},"n1819848934":{"id":"n1819848934","loc":[-85.6507014,41.9739927]},"n1819848937":{"id":"n1819848937","loc":[-85.6479763,41.9840899]},"n1819848938":{"id":"n1819848938","loc":[-85.6501113,41.9600884]},"n1819848939":{"id":"n1819848939","loc":[-85.6389962,41.9478253]},"n1819848941":{"id":"n1819848941","loc":[-85.637469,41.9445791]},"n1819848942":{"id":"n1819848942","loc":[-85.6494569,41.9601682]},"n1819848943":{"id":"n1819848943","loc":[-85.6368803,41.9439351]},"n1819848945":{"id":"n1819848945","loc":[-85.6474398,41.9724213]},"n1819848946":{"id":"n1819848946","loc":[-85.6382629,41.9463666]},"n1819848948":{"id":"n1819848948","loc":[-85.6489633,41.9830771]},"n1819848952":{"id":"n1819848952","loc":[-85.6488882,41.9600326]},"n1819848953":{"id":"n1819848953","loc":[-85.6488094,41.9774324]},"n1819848954":{"id":"n1819848954","loc":[-85.6491135,41.9600485]},"n1819848955":{"id":"n1819848955","loc":[-85.6501435,41.9734583]},"n1819848956":{"id":"n1819848956","loc":[-85.6495534,41.960958]},"n1819848958":{"id":"n1819848958","loc":[-85.6474683,41.9561491]},"n1819848959":{"id":"n1819848959","loc":[-85.6401083,41.9485451]},"n1819848960":{"id":"n1819848960","loc":[-85.6481764,41.9678686]},"n1819848961":{"id":"n1819848961","loc":[-85.6484017,41.967382]},"n1819848962":{"id":"n1819848962","loc":[-85.6501328,41.959897]},"n1819848964":{"id":"n1819848964","loc":[-85.6403695,41.9504586]},"n1819848966":{"id":"n1819848966","loc":[-85.6398975,41.9491499]},"n1819848967":{"id":"n1819848967","loc":[-85.6412455,41.9510187]},"n1819848968":{"id":"n1819848968","loc":[-85.6482622,41.9619493]},"n1819848969":{"id":"n1819848969","loc":[-85.6405841,41.9501474]},"n1819848970":{"id":"n1819848970","loc":[-85.6478583,41.9703394]},"n1819848971":{"id":"n1819848971","loc":[-85.6493388,41.9832845]},"n1819848972":{"id":"n1819848972","loc":[-85.6485664,41.9829415]},"n1819848974":{"id":"n1819848974","loc":[-85.6491457,41.9779887]},"n1819848975":{"id":"n1819848975","loc":[-85.6468889,41.9697033]},"n1819848976":{"id":"n1819848976","loc":[-85.6452726,41.9546072]},"n1819848977":{"id":"n1819848977","loc":[-85.6448435,41.9546072]},"n1819848979":{"id":"n1819848979","loc":[-85.6485342,41.9763138]},"n1819848980":{"id":"n1819848980","loc":[-85.6495282,41.9664087]},"n1819848986":{"id":"n1819848986","loc":[-85.6486307,41.9603278]},"n1819848987":{"id":"n1819848987","loc":[-85.6492278,41.9791871]},"n1819848990":{"id":"n1819848990","loc":[-85.6501934,41.9800724]},"n1819848992":{"id":"n1819848992","loc":[-85.6482445,41.9819685]},"n1819848993":{"id":"n1819848993","loc":[-85.6481871,41.9704451]},"n1819848994":{"id":"n1819848994","loc":[-85.6371364,41.9457602]},"n1819848996":{"id":"n1819848996","loc":[-85.6500362,41.9801023]},"n1819849000":{"id":"n1819849000","loc":[-85.639007,41.9485914]},"n1819849001":{"id":"n1819849001","loc":[-85.6488882,41.9669253]},"n1819849002":{"id":"n1819849002","loc":[-85.6484698,41.9565062]},"n1819849004":{"id":"n1819849004","loc":[-85.6510769,41.9761064]},"n1819849005":{"id":"n1819849005","loc":[-85.6503581,41.9799029]},"n1819849006":{"id":"n1819849006","loc":[-85.6489381,41.9703893]},"n1819849008":{"id":"n1819849008","loc":[-85.6497457,41.9833588]},"n1819849011":{"id":"n1819849011","loc":[-85.6497358,41.9717593]},"n1819849012":{"id":"n1819849012","loc":[-85.6494676,41.9796796]},"n1819849019":{"id":"n1819849019","loc":[-85.6486093,41.9771034]},"n1819849021":{"id":"n1819849021","loc":[-85.6504546,41.9796556]},"n1819849022":{"id":"n1819849022","loc":[-85.6371294,41.9454154]},"n1819849023":{"id":"n1819849023","loc":[-85.6503436,41.9759249]},"n1819849025":{"id":"n1819849025","loc":[-85.6462382,41.9693822]},"n1819849026":{"id":"n1819849026","loc":[-85.6497573,41.983093]},"n1819849028":{"id":"n1819849028","loc":[-85.6497465,41.9602799]},"n1819849029":{"id":"n1819849029","loc":[-85.6374728,41.9460698]},"n1819849030":{"id":"n1819849030","loc":[-85.6486592,41.9566039]},"n1819849031":{"id":"n1819849031","loc":[-85.6515989,41.9654993]},"n1819849032":{"id":"n1819849032","loc":[-85.6387028,41.9482658]},"n1819849033":{"id":"n1819849033","loc":[-85.6464742,41.9688398]},"n1819849034":{"id":"n1819849034","loc":[-85.6495212,41.9589236]},"n1819849035":{"id":"n1819849035","loc":[-85.6490599,41.9790096]},"n1819849036":{"id":"n1819849036","loc":[-85.6489918,41.9800724]},"n1819849038":{"id":"n1819849038","loc":[-85.6499182,41.9659042]},"n1819849040":{"id":"n1819849040","loc":[-85.639758,41.9490143]},"n1819849041":{"id":"n1819849041","loc":[-85.6514846,41.9755241]},"n1819849042":{"id":"n1819849042","loc":[-85.6436633,41.9540647]},"n1819849045":{"id":"n1819849045","loc":[-85.6475541,41.9726387]},"n1819849046":{"id":"n1819849046","loc":[-85.6488308,41.9718331]},"n1819849047":{"id":"n1819849047","loc":[-85.6377694,41.9460953]},"n1819849048":{"id":"n1819849048","loc":[-85.6490706,41.9804452]},"n1819849049":{"id":"n1819849049","loc":[-85.6485449,41.9766248]},"n1819849051":{"id":"n1819849051","loc":[-85.6483625,41.9790256]},"n1819849052":{"id":"n1819849052","loc":[-85.6490706,41.9585167]},"n1819849053":{"id":"n1819849053","loc":[-85.6425008,41.9522874]},"n1819849054":{"id":"n1819849054","loc":[-85.6475793,41.9632158]},"n1819849055":{"id":"n1819849055","loc":[-85.6408631,41.9499399]},"n1819849056":{"id":"n1819849056","loc":[-85.6483373,41.9814681]},"n1819849057":{"id":"n1819849057","loc":[-85.6313548,41.9442876]},"n1819849058":{"id":"n1819849058","loc":[-85.6432663,41.9529796]},"n1819849059":{"id":"n1819849059","loc":[-85.6487128,41.9582873]},"n1819849060":{"id":"n1819849060","loc":[-85.6482338,41.9817612]},"n1819849062":{"id":"n1819849062","loc":[-85.6485664,41.9788661]},"n1819849063":{"id":"n1819849063","loc":[-85.6373081,41.9448824]},"n1819849064":{"id":"n1819849064","loc":[-85.6472215,41.9557582]},"n1819849065":{"id":"n1819849065","loc":[-85.6348984,41.9440414]},"n1819849066":{"id":"n1819849066","loc":[-85.6501972,41.9647315]},"n1819849067":{"id":"n1819849067","loc":[-85.6489741,41.9808281]},"n1819849068":{"id":"n1819849068","loc":[-85.6420111,41.9515034]},"n1819849069":{"id":"n1819849069","loc":[-85.6397972,41.9488882]},"n1819849070":{"id":"n1819849070","loc":[-85.6499718,41.9593465]},"n1819849071":{"id":"n1819849071","loc":[-85.6486844,41.9811311]},"n1819849072":{"id":"n1819849072","loc":[-85.6390392,41.9474663]},"n1819849074":{"id":"n1819849074","loc":[-85.6495642,41.9616362]},"n1819849075":{"id":"n1819849075","loc":[-85.6483518,41.9791931]},"n1819849076":{"id":"n1819849076","loc":[-85.6478974,41.9833104]},"n1819849077":{"id":"n1819849077","loc":[-85.640155,41.948719]},"n1819849078":{"id":"n1819849078","loc":[-85.6399366,41.9487845]},"n1819849079":{"id":"n1819849079","loc":[-85.6492959,41.9825348]},"n1819849080":{"id":"n1819849080","loc":[-85.6505083,41.9648352]},"n1819849081":{"id":"n1819849081","loc":[-85.6492959,41.9645241]},"n1819849082":{"id":"n1819849082","loc":[-85.6402049,41.9491835]},"n1819849083":{"id":"n1819849083","loc":[-85.6495175,41.9826963]},"n1819849084":{"id":"n1819849084","loc":[-85.6480836,41.9728361]},"n1819849085":{"id":"n1819849085","loc":[-85.6374349,41.9443425]},"n1819849086":{"id":"n1819849086","loc":[-85.6478331,41.9681238]},"n1819849089":{"id":"n1819849089","loc":[-85.639368,41.9486169]},"n1819849092":{"id":"n1819849092","loc":[-85.6503581,41.9788022]},"n1819849093":{"id":"n1819849093","loc":[-85.64862,41.9568014]},"n1819849094":{"id":"n1819849094","loc":[-85.6496999,41.9828877]},"n1819849095":{"id":"n1819849095","loc":[-85.647472,41.972198]},"n1819849096":{"id":"n1819849096","loc":[-85.6485771,41.9644523]},"n1819849097":{"id":"n1819849097","loc":[-85.6388353,41.9480488]},"n1819849099":{"id":"n1819849099","loc":[-85.6472752,41.9683312]},"n1819849104":{"id":"n1819849104","loc":[-85.6479548,41.9836035]},"n1819849105":{"id":"n1819849105","loc":[-85.6462489,41.9691668]},"n1819849107":{"id":"n1819849107","loc":[-85.6511912,41.9746328]},"n1819849108":{"id":"n1819849108","loc":[-85.6498646,41.9714881]},"n1819849111":{"id":"n1819849111","loc":[-85.6488239,41.961684]},"n1819849112":{"id":"n1819849112","loc":[-85.6469356,41.9553812]},"n1819849114":{"id":"n1819849114","loc":[-85.6479548,41.9640853]},"n1819849119":{"id":"n1819849119","loc":[-85.6491565,41.961692]},"n1819849121":{"id":"n1819849121","loc":[-85.651667,41.9656728]},"n1819849124":{"id":"n1819849124","loc":[-85.6388423,41.9484414]},"n1819849126":{"id":"n1819849126","loc":[-85.6371686,41.9450978]},"n1819849127":{"id":"n1819849127","loc":[-85.6502615,41.9656728]},"n1819849129":{"id":"n1819849129","loc":[-85.6498501,41.9613031]},"n1819849131":{"id":"n1819849131","loc":[-85.6513881,41.9653298]},"n1819849133":{"id":"n1819849133","loc":[-85.639883,41.9485291]},"n1819849139":{"id":"n1819849139","loc":[-85.6508693,41.9658264]},"n1819849140":{"id":"n1819849140","loc":[-85.6486806,41.9761642]},"n1819849141":{"id":"n1819849141","loc":[-85.6483159,41.9717613]},"n1819849144":{"id":"n1819849144","loc":[-85.6443714,41.9546232]},"n1819849146":{"id":"n1819849146","loc":[-85.641775,41.9513359]},"n1819849147":{"id":"n1819849147","loc":[-85.6495604,41.9757335]},"n1819849148":{"id":"n1819849148","loc":[-85.6465671,41.9551678]},"n1819849150":{"id":"n1819849150","loc":[-85.6485127,41.9794084]},"n1819849151":{"id":"n1819849151","loc":[-85.6499144,41.9757096]},"n1819849152":{"id":"n1819849152","loc":[-85.6433736,41.9531072]},"n1819849154":{"id":"n1819849154","loc":[-85.6489741,41.9607426]},"n1819849155":{"id":"n1819849155","loc":[-85.640627,41.9507697]},"n1819849156":{"id":"n1819849156","loc":[-85.6509659,41.9743058]},"n1819849157":{"id":"n1819849157","loc":[-85.6486844,41.9704431]},"n1819849158":{"id":"n1819849158","loc":[-85.6498538,41.9711132]},"n1819849159":{"id":"n1819849159","loc":[-85.6358937,41.943719]},"n1819849160":{"id":"n1819849160","loc":[-85.6497358,41.9707702]},"n1819849161":{"id":"n1819849161","loc":[-85.6480476,41.9564842]},"n1819849162":{"id":"n1819849162","loc":[-85.6482982,41.9574556]},"n1819849163":{"id":"n1819849163","loc":[-85.6501757,41.9757794]},"n1819849164":{"id":"n1819849164","loc":[-85.6372973,41.9459916]},"n1819849165":{"id":"n1819849165","loc":[-85.6513773,41.9750775]},"n1819849166":{"id":"n1819849166","loc":[-85.6436418,41.9537455]},"n1819849167":{"id":"n1819849167","loc":[-85.6483625,41.9571524]},"n1819849169":{"id":"n1819849169","loc":[-85.647751,41.9727962]},"n1819849170":{"id":"n1819849170","loc":[-85.6504546,41.9656808]},"n1819849171":{"id":"n1819849171","loc":[-85.6479977,41.971839]},"n1819849172":{"id":"n1819849172","loc":[-85.6482767,41.9642449]},"n1819849174":{"id":"n1819849174","loc":[-85.6414317,41.9512086]},"n1819849176":{"id":"n1819849176","loc":[-85.6469034,41.9685287]},"n1819849179":{"id":"n1819849179","loc":[-85.6408631,41.9497564]},"n1819849182":{"id":"n1819849182","loc":[-85.6476721,41.96384]},"n1819849183":{"id":"n1819849183","loc":[-85.6479725,41.983111]},"n1819849184":{"id":"n1819849184","loc":[-85.640788,41.9500516]},"n1819849185":{"id":"n1819849185","loc":[-85.6427798,41.9528778]},"n1819849186":{"id":"n1819849186","loc":[-85.6435308,41.9534124]},"n1819849187":{"id":"n1819849187","loc":[-85.6483733,41.9821998]},"n1819849189":{"id":"n1819849189","loc":[-85.6351752,41.9440796]},"n1819849191":{"id":"n1819849191","loc":[-85.6487021,41.9601463]},"n1819849192":{"id":"n1819849192","loc":[-85.6363811,41.9437605]},"n1819849193":{"id":"n1819849193","loc":[-85.6490883,41.9759728]},"n1819849194":{"id":"n1819849194","loc":[-85.6423292,41.9520081]},"n1819849195":{"id":"n1819849195","loc":[-85.6500003,41.960242]},"n1819849196":{"id":"n1819849196","loc":[-85.6385778,41.9466443]},"n1819849197":{"id":"n1819849197","loc":[-85.6494032,41.9718789]},"n1819849198":{"id":"n1819849198","loc":[-85.6404339,41.9506501]},"n1819849199":{"id":"n1819849199","loc":[-85.6426226,41.9527083]},"n1819849200":{"id":"n1819849200","loc":[-85.6439101,41.9545035]},"n1819849201":{"id":"n1819849201","loc":[-85.6516563,41.9657845]},"n1819849202":{"id":"n1819849202","loc":[-85.6473395,41.9699585]},"n1819858501":{"id":"n1819858501","loc":[-85.6361263,41.9437126]},"n1819858503":{"id":"n1819858503","loc":[-85.6350068,41.944034]},"n1819858513":{"id":"n1819858513","loc":[-85.6371402,41.9453282]},"n1819858518":{"id":"n1819858518","loc":[-85.6348713,41.9432923]},"n1819858523":{"id":"n1819858523","loc":[-85.6357047,41.943799]},"n1819858526":{"id":"n1819858526","loc":[-85.6349947,41.9435756]},"n1819858531":{"id":"n1819858531","loc":[-85.6350376,41.943827]},"n1820937508":{"id":"n1820937508","loc":[-85.1026013,42.0881722]},"n1820937509":{"id":"n1820937509","loc":[-85.0558088,42.102493]},"n1820937511":{"id":"n1820937511","loc":[-85.3030116,41.9724451]},"n1820937513":{"id":"n1820937513","loc":[-85.0353221,42.1027398]},"n1820937514":{"id":"n1820937514","loc":[-85.0835468,42.1015469]},"n1820937515":{"id":"n1820937515","loc":[-85.2421298,42.0106305]},"n1820937517":{"id":"n1820937517","loc":[-85.0090632,42.0910452]},"n1820937518":{"id":"n1820937518","loc":[-85.086626,42.0948838]},"n1820937520":{"id":"n1820937520","loc":[-85.2552039,42.0015448]},"n1820937521":{"id":"n1820937521","loc":[-85.3739614,41.9969917]},"n1820937522":{"id":"n1820937522","loc":[-85.4831166,41.993898]},"n1820937523":{"id":"n1820937523","loc":[-85.0341084,42.0977657]},"n1820937524":{"id":"n1820937524","loc":[-85.3272802,41.9710333]},"n1820937525":{"id":"n1820937525","loc":[-85.2125568,42.0414521]},"n1820937526":{"id":"n1820937526","loc":[-85.3798022,41.9992458]},"n1820937527":{"id":"n1820937527","loc":[-85.2652021,41.999768]},"n1820937528":{"id":"n1820937528","loc":[-85.3852739,42.0004896]},"n1820937529":{"id":"n1820937529","loc":[-85.3911919,42.0030513]},"n1820937530":{"id":"n1820937530","loc":[-85.5440349,41.9717109]},"n1820937531":{"id":"n1820937531","loc":[-85.2790155,41.9911764]},"n1820937532":{"id":"n1820937532","loc":[-85.4723277,41.9950518]},"n1820937533":{"id":"n1820937533","loc":[-85.5690546,41.9653931]},"n1820937535":{"id":"n1820937535","loc":[-85.5674882,41.9649623]},"n1820937536":{"id":"n1820937536","loc":[-85.6362815,41.9189165]},"n1820937537":{"id":"n1820937537","loc":[-85.5659003,41.963638]},"n1820937539":{"id":"n1820937539","loc":[-85.6391353,41.9122262]},"n1820937540":{"id":"n1820937540","loc":[-85.4834385,41.9894803]},"n1820937541":{"id":"n1820937541","loc":[-85.6399078,41.9160744]},"n1820937542":{"id":"n1820937542","loc":[-85.632874,41.941031]},"n1820937543":{"id":"n1820937543","loc":[-85.1307591,42.0726961]},"n1820937544":{"id":"n1820937544","loc":[-85.6444397,41.9128378]},"n1820937545":{"id":"n1820937545","loc":[-85.6197204,41.9420365]},"n1820937546":{"id":"n1820937546","loc":[-85.1164857,42.0864631]},"n1820937547":{"id":"n1820937547","loc":[-85.6476111,41.9142222]},"n1820937548":{"id":"n1820937548","loc":[-85.2915747,41.9774223]},"n1820937549":{"id":"n1820937549","loc":[-85.6430192,41.9102461]},"n1820937550":{"id":"n1820937550","loc":[-85.1597495,42.0639017]},"n1820937551":{"id":"n1820937551","loc":[-85.5504079,41.9701793]},"n1820937553":{"id":"n1820937553","loc":[-85.2781317,41.9948951]},"n1820937555":{"id":"n1820937555","loc":[-85.3724594,41.997518]},"n1820937556":{"id":"n1820937556","loc":[-85.5629434,41.9665155]},"n1820937557":{"id":"n1820937557","loc":[-85.3791971,41.9990808]},"n1820937558":{"id":"n1820937558","loc":[-85.001891,42.0878843]},"n1820937560":{"id":"n1820937560","loc":[-85.3140838,41.9709056]},"n1820937561":{"id":"n1820937561","loc":[-85.2468032,42.0146987]},"n1820937563":{"id":"n1820937563","loc":[-85.0877378,42.097255]},"n1820937564":{"id":"n1820937564","loc":[-85.2442498,42.0150654]},"n1820937566":{"id":"n1820937566","loc":[-85.3108973,41.9701478]},"n1820937568":{"id":"n1820937568","loc":[-85.0344584,42.1016572]},"n1820937569":{"id":"n1820937569","loc":[-85.2331025,42.0297387]},"n1820937570":{"id":"n1820937570","loc":[-85.5058446,41.9746996]},"n1820937571":{"id":"n1820937571","loc":[-85.5622739,41.9676427]},"n1820937572":{"id":"n1820937572","loc":[-85.2792687,41.9890337]},"n1820937574":{"id":"n1820937574","loc":[-84.9909302,42.08695]},"n1820937575":{"id":"n1820937575","loc":[-85.6218233,41.9418609]},"n1820937576":{"id":"n1820937576","loc":[-85.3577437,41.9931062]},"n1820937577":{"id":"n1820937577","loc":[-85.639028,41.9165853]},"n1820937578":{"id":"n1820937578","loc":[-84.9956576,42.0865348]},"n1820937579":{"id":"n1820937579","loc":[-85.4828376,41.990198]},"n1820937580":{"id":"n1820937580","loc":[-85.3244478,41.9720543]},"n1820937582":{"id":"n1820937582","loc":[-85.0517479,42.1035159]},"n1820937583":{"id":"n1820937583","loc":[-85.225646,42.0338025]},"n1820937584":{"id":"n1820937584","loc":[-84.9941019,42.0862163]},"n1820937586":{"id":"n1820937586","loc":[-85.1051762,42.0879452]},"n1820937587":{"id":"n1820937587","loc":[-85.1245203,42.0753162]},"n1820937588":{"id":"n1820937588","loc":[-85.3250808,41.9719506]},"n1820937589":{"id":"n1820937589","loc":[-85.2720109,41.997933]},"n1820937590":{"id":"n1820937590","loc":[-85.2556653,42.0027248]},"n1820937591":{"id":"n1820937591","loc":[-85.0872483,42.0943544]},"n1820937592":{"id":"n1820937592","loc":[-85.2778353,41.9955023]},"n1820937593":{"id":"n1820937593","loc":[-85.2984733,41.9735538]},"n1820937594":{"id":"n1820937594","loc":[-85.101578,42.0889552]},"n1820937595":{"id":"n1820937595","loc":[-85.3888745,42.0016959]},"n1820937596":{"id":"n1820937596","loc":[-84.9903508,42.0870654]},"n1820937597":{"id":"n1820937597","loc":[-85.6405558,41.9146261]},"n1820937598":{"id":"n1820937598","loc":[-85.6460704,41.9141311]},"n1820937599":{"id":"n1820937599","loc":[-85.0377468,42.1037428]},"n1820937600":{"id":"n1820937600","loc":[-85.2298345,42.0312899]},"n1820937601":{"id":"n1820937601","loc":[-85.1080958,42.0861964]},"n1820937602":{"id":"n1820937602","loc":[-85.6325307,41.9402329]},"n1820937603":{"id":"n1820937603","loc":[-85.1165984,42.0832184]},"n1820937604":{"id":"n1820937604","loc":[-85.6354446,41.9190602]},"n1820937605":{"id":"n1820937605","loc":[-85.1114592,42.0862959]},"n1820937606":{"id":"n1820937606","loc":[-85.0858763,42.1001646]},"n1820937607":{"id":"n1820937607","loc":[-85.0472083,42.1015151]},"n1820937608":{"id":"n1820937608","loc":[-85.0802477,42.1027609]},"n1820937610":{"id":"n1820937610","loc":[-85.0924585,42.0928564]},"n1820937611":{"id":"n1820937611","loc":[-85.0329617,42.09827]},"n1820937612":{"id":"n1820937612","loc":[-85.2814617,41.993465]},"n1820937613":{"id":"n1820937613","loc":[-85.3097708,41.9700282]},"n1820937614":{"id":"n1820937614","loc":[-85.2809427,41.993695]},"n1820937615":{"id":"n1820937615","loc":[-85.0583233,42.1026494]},"n1820937617":{"id":"n1820937617","loc":[-85.2801592,41.9840021]},"n1820937619":{"id":"n1820937619","loc":[-85.1064154,42.0863449]},"n1820937620":{"id":"n1820937620","loc":[-85.0423173,42.1014662]},"n1820937621":{"id":"n1820937621","loc":[-85.2168913,42.0398107]},"n1820937622":{"id":"n1820937622","loc":[-85.2798481,41.9833401]},"n1820937623":{"id":"n1820937623","loc":[-85.0575468,42.1028672]},"n1820937625":{"id":"n1820937625","loc":[-85.0130369,42.0893067]},"n1820937626":{"id":"n1820937626","loc":[-85.0346985,42.1018256]},"n1820937627":{"id":"n1820937627","loc":[-85.2231569,42.0372768]},"n1820937628":{"id":"n1820937628","loc":[-85.2956195,41.9732268]},"n1820937629":{"id":"n1820937629","loc":[-85.1052312,42.086893]},"n1820937630":{"id":"n1820937630","loc":[-85.4813356,41.9958436]},"n1820937631":{"id":"n1820937631","loc":[-85.0961599,42.0914672]},"n1820937632":{"id":"n1820937632","loc":[-85.308419,41.9704749]},"n1820937633":{"id":"n1820937633","loc":[-85.295952,41.9715119]},"n1820937634":{"id":"n1820937634","loc":[-85.3310933,41.9703923]},"n1820937635":{"id":"n1820937635","loc":[-85.2940745,41.9739686]},"n1820937636":{"id":"n1820937636","loc":[-85.3803343,42.000484]},"n1820937637":{"id":"n1820937637","loc":[-85.1174231,42.0845533]},"n1820937638":{"id":"n1820937638","loc":[-85.0095836,42.089839]},"n1820937639":{"id":"n1820937639","loc":[-85.3179354,41.9705866]},"n1820937640":{"id":"n1820937640","loc":[-85.257708,42.0001189]},"n1820937641":{"id":"n1820937641","loc":[-85.2563522,42.0002771]},"n1820937642":{"id":"n1820937642","loc":[-85.3181929,41.970419]},"n1820937643":{"id":"n1820937643","loc":[-85.2911884,41.9757154]},"n1820937644":{"id":"n1820937644","loc":[-85.2714423,41.9975862]},"n1820937645":{"id":"n1820937645","loc":[-85.0193669,42.089888]},"n1820937646":{"id":"n1820937646","loc":[-85.3889818,42.0039921]},"n1820937647":{"id":"n1820937647","loc":[-85.3408093,41.9853965]},"n1820937648":{"id":"n1820937648","loc":[-85.1258091,42.0748332]},"n1820937649":{"id":"n1820937649","loc":[-85.5722561,41.962782]},"n1820937650":{"id":"n1820937650","loc":[-85.3266902,41.9721819]},"n1820937651":{"id":"n1820937651","loc":[-85.1473255,42.065192]},"n1820937652":{"id":"n1820937652","loc":[-85.1462526,42.0655106]},"n1820937653":{"id":"n1820937653","loc":[-85.4641051,42.0013929]},"n1820937654":{"id":"n1820937654","loc":[-85.5620379,41.9700677]},"n1820937655":{"id":"n1820937655","loc":[-85.3226025,41.971121]},"n1820937656":{"id":"n1820937656","loc":[-85.0200965,42.0899516]},"n1820937657":{"id":"n1820937657","loc":[-85.0624714,42.1044711]},"n1820937658":{"id":"n1820937658","loc":[-85.5649562,41.9637178]},"n1820937659":{"id":"n1820937659","loc":[-85.2360315,42.0253315]},"n1820937660":{"id":"n1820937660","loc":[-85.3881449,41.9994475]},"n1820937661":{"id":"n1820937661","loc":[-85.5032911,41.976263]},"n1820937662":{"id":"n1820937662","loc":[-85.481297,41.9871414]},"n1820937663":{"id":"n1820937663","loc":[-85.1167056,42.0841898]},"n1820937664":{"id":"n1820937664","loc":[-85.2891714,41.9787223]},"n1820937665":{"id":"n1820937665","loc":[-85.4393429,42.0058736]},"n1820937666":{"id":"n1820937666","loc":[-85.0077007,42.0895762]},"n1820937667":{"id":"n1820937667","loc":[-85.2736202,41.9979171]},"n1820937668":{"id":"n1820937668","loc":[-84.9935332,42.0859296]},"n1820937669":{"id":"n1820937669","loc":[-85.0622769,42.1046713]},"n1820937670":{"id":"n1820937670","loc":[-85.2309031,42.0311249]},"n1820937671":{"id":"n1820937671","loc":[-85.0343726,42.10069]},"n1820937672":{"id":"n1820937672","loc":[-85.0596551,42.1048612]},"n1820937673":{"id":"n1820937673","loc":[-85.1338597,42.0707449]},"n1820937674":{"id":"n1820937674","loc":[-85.3117663,41.9689194]},"n1820937675":{"id":"n1820937675","loc":[-85.0705649,42.1057499]},"n1820937676":{"id":"n1820937676","loc":[-85.2441425,42.0180944]},"n1820937677":{"id":"n1820937677","loc":[-85.1171174,42.0862692]},"n1820937678":{"id":"n1820937678","loc":[-85.0346824,42.1005519]},"n1820937680":{"id":"n1820937680","loc":[-85.2389927,42.0229245]},"n1820937681":{"id":"n1820937681","loc":[-85.0834892,42.1018642]},"n1820937682":{"id":"n1820937682","loc":[-85.0619443,42.1049459]},"n1820937683":{"id":"n1820937683","loc":[-85.2845366,41.9811868]},"n1820937684":{"id":"n1820937684","loc":[-85.210411,42.0394123]},"n1820937685":{"id":"n1820937685","loc":[-85.4377383,42.0055942]},"n1820937686":{"id":"n1820937686","loc":[-85.2882058,41.9789138]},"n1820937687":{"id":"n1820937687","loc":[-85.2741191,41.9955808]},"n1820937688":{"id":"n1820937688","loc":[-85.3442211,41.9903575]},"n1820937689":{"id":"n1820937689","loc":[-85.2641413,41.9995237]},"n1820937690":{"id":"n1820937690","loc":[-85.2804489,41.9829174]},"n1820937691":{"id":"n1820937691","loc":[-85.5593342,41.9729074]},"n1820937692":{"id":"n1820937692","loc":[-85.3590912,41.9932601]},"n1820937694":{"id":"n1820937694","loc":[-85.4826445,41.9957479]},"n1820937695":{"id":"n1820937695","loc":[-85.4539127,42.0063041]},"n1820937696":{"id":"n1820937696","loc":[-85.2456767,42.0153683]},"n1820937697":{"id":"n1820937697","loc":[-85.5794015,41.9489631]},"n1820937698":{"id":"n1820937698","loc":[-85.4108686,42.0078507]},"n1820937699":{"id":"n1820937699","loc":[-85.0616386,42.1051529]},"n1820937700":{"id":"n1820937700","loc":[-85.4977979,41.978241]},"n1820937701":{"id":"n1820937701","loc":[-85.2488417,42.0086319]},"n1820937702":{"id":"n1820937702","loc":[-85.5588836,41.9728116]},"n1820937703":{"id":"n1820937703","loc":[-85.4557366,42.0051241]},"n1820937705":{"id":"n1820937705","loc":[-85.0723151,42.1056094]},"n1820937706":{"id":"n1820937706","loc":[-85.0057909,42.0887323]},"n1820937707":{"id":"n1820937707","loc":[-85.0756786,42.105677]},"n1820937708":{"id":"n1820937708","loc":[-85.0901504,42.0940001]},"n1820937709":{"id":"n1820937709","loc":[-85.0979999,42.0910213]},"n1820937710":{"id":"n1820937710","loc":[-85.2376301,42.0239686]},"n1820937711":{"id":"n1820937711","loc":[-85.2780671,41.9902299]},"n1820937712":{"id":"n1820937712","loc":[-85.251481,42.0113188]},"n1820937713":{"id":"n1820937713","loc":[-85.3114767,41.9690311]},"n1820937714":{"id":"n1820937714","loc":[-85.2649621,41.9975662]},"n1820937715":{"id":"n1820937715","loc":[-85.283807,41.9813383]},"n1820937716":{"id":"n1820937716","loc":[-85.5515451,41.9703867]},"n1820937717":{"id":"n1820937717","loc":[-85.1176605,42.0850896]},"n1820937718":{"id":"n1820937718","loc":[-85.1069317,42.0862441]},"n1820937719":{"id":"n1820937719","loc":[-85.2739314,41.9976938]},"n1820937720":{"id":"n1820937720","loc":[-85.5550212,41.9702112]},"n1820937721":{"id":"n1820937721","loc":[-85.3076679,41.9719904]},"n1820937722":{"id":"n1820937722","loc":[-85.592319,41.9440316]},"n1820937723":{"id":"n1820937723","loc":[-85.3139979,41.9704031]},"n1820937724":{"id":"n1820937724","loc":[-85.0421134,42.1013149]},"n1820937725":{"id":"n1820937725","loc":[-85.2508373,42.0102741]},"n1820937726":{"id":"n1820937726","loc":[-85.0830922,42.1038821]},"n1820937727":{"id":"n1820937727","loc":[-85.6342473,41.9360031]},"n1820937730":{"id":"n1820937730","loc":[-85.0500192,42.1024942]},"n1820937731":{"id":"n1820937731","loc":[-85.3498644,41.9926221]},"n1820937732":{"id":"n1820937732","loc":[-85.0234117,42.0918903]},"n1820937733":{"id":"n1820937733","loc":[-85.0464425,42.1009408]},"n1820937734":{"id":"n1820937734","loc":[-85.033938,42.099886]},"n1820937736":{"id":"n1820937736","loc":[-85.0152752,42.0886009]},"n1820937737":{"id":"n1820937737","loc":[-85.0441894,42.1012671]},"n1820937738":{"id":"n1820937738","loc":[-85.4668731,41.9979804]},"n1820937739":{"id":"n1820937739","loc":[-85.4407377,42.006033]},"n1820937740":{"id":"n1820937740","loc":[-85.2262253,42.0344878]},"n1820937741":{"id":"n1820937741","loc":[-85.2550001,42.0033706]},"n1820937742":{"id":"n1820937742","loc":[-85.3071422,41.9722617]},"n1820937743":{"id":"n1820937743","loc":[-85.6147852,41.942228]},"n1820937744":{"id":"n1820937744","loc":[-85.0183853,42.0901825]},"n1820937745":{"id":"n1820937745","loc":[-85.6323161,41.9228489]},"n1820937746":{"id":"n1820937746","loc":[-85.0095568,42.0901376]},"n1820937747":{"id":"n1820937747","loc":[-85.2524037,42.0113826]},"n1820937748":{"id":"n1820937748","loc":[-85.3186864,41.9708578]},"n1820937749":{"id":"n1820937749","loc":[-85.2805669,41.9870883]},"n1820937750":{"id":"n1820937750","loc":[-85.0585768,42.1038144]},"n1820937751":{"id":"n1820937751","loc":[-85.2970786,41.9715358]},"n1820937752":{"id":"n1820937752","loc":[-85.1315758,42.0723445]},"n1820937753":{"id":"n1820937753","loc":[-85.2448291,42.0175444]},"n1820937754":{"id":"n1820937754","loc":[-85.2446468,42.0174248]},"n1820937755":{"id":"n1820937755","loc":[-85.229165,42.032129]},"n1820937756":{"id":"n1820937756","loc":[-85.5612654,41.9724926]},"n1820937757":{"id":"n1820937757","loc":[-85.2331776,42.030854]},"n1820937758":{"id":"n1820937758","loc":[-85.2271909,42.0334519]},"n1820937759":{"id":"n1820937759","loc":[-85.1032396,42.0879214]},"n1820937760":{"id":"n1820937760","loc":[-85.0638447,42.1044154]},"n1820937761":{"id":"n1820937761","loc":[-85.1260706,42.0745556]},"n1820937762":{"id":"n1820937762","loc":[-85.3454485,41.99132]},"n1820937763":{"id":"n1820937763","loc":[-85.2639321,41.9980088]},"n1820937764":{"id":"n1820937764","loc":[-85.0837681,42.1013746]},"n1820937765":{"id":"n1820937765","loc":[-85.2808137,41.9869368]},"n1820937766":{"id":"n1820937766","loc":[-85.6338997,41.9309373]},"n1820937767":{"id":"n1820937767","loc":[-85.2267403,42.0332766]},"n1820937768":{"id":"n1820937768","loc":[-85.0605831,42.1052074]},"n1820937769":{"id":"n1820937769","loc":[-85.0259021,42.0930037]},"n1820937770":{"id":"n1820937770","loc":[-85.232963,42.0313162]},"n1820937771":{"id":"n1820937771","loc":[-85.2404947,42.0125381]},"n1820937772":{"id":"n1820937772","loc":[-85.0910892,42.0935742]},"n1820937773":{"id":"n1820937773","loc":[-85.2554829,42.0019435]},"n1820937774":{"id":"n1820937774","loc":[-85.2799339,41.9867773]},"n1820937775":{"id":"n1820937775","loc":[-85.1075432,42.0852767]},"n1820937776":{"id":"n1820937776","loc":[-85.1176927,42.0854001]},"n1820937777":{"id":"n1820937777","loc":[-85.1067064,42.0863357]},"n1820937778":{"id":"n1820937778","loc":[-85.2517492,42.0106333]},"n1820937779":{"id":"n1820937779","loc":[-85.0987174,42.0909031]},"n1820937780":{"id":"n1820937780","loc":[-85.1160083,42.0863994]},"n1820937781":{"id":"n1820937781","loc":[-85.1268645,42.0739703]},"n1820937782":{"id":"n1820937782","loc":[-85.0454702,42.1002852]},"n1820937783":{"id":"n1820937783","loc":[-85.1334145,42.0705418]},"n1820937784":{"id":"n1820937784","loc":[-85.5866542,41.947431]},"n1820937786":{"id":"n1820937786","loc":[-85.2359886,42.0250366]},"n1820937787":{"id":"n1820937787","loc":[-85.3138048,41.9698527]},"n1820937788":{"id":"n1820937788","loc":[-85.1274291,42.0733081]},"n1820937790":{"id":"n1820937790","loc":[-85.6292905,41.9411267]},"n1820937791":{"id":"n1820937791","loc":[-85.5958809,41.9417333]},"n1820937792":{"id":"n1820937792","loc":[-85.1271019,42.0737581]},"n1820937793":{"id":"n1820937793","loc":[-85.2312679,42.0314437]},"n1820937794":{"id":"n1820937794","loc":[-85.1081387,42.0863516]},"n1820937795":{"id":"n1820937795","loc":[-85.2424473,42.0212109]},"n1820937796":{"id":"n1820937796","loc":[-85.2710654,41.9975236]},"n1820937797":{"id":"n1820937797","loc":[-85.4798408,41.9863223]},"n1820937798":{"id":"n1820937798","loc":[-85.035939,42.104296]},"n1820937799":{"id":"n1820937799","loc":[-85.2178139,42.0395398]},"n1820937800":{"id":"n1820937800","loc":[-85.0630709,42.1042614]},"n1820937801":{"id":"n1820937801","loc":[-85.0440124,42.1014861]},"n1820937802":{"id":"n1820937802","loc":[-85.1321874,42.0720458]},"n1820937804":{"id":"n1820937804","loc":[-85.079427,42.1029121]},"n1820937805":{"id":"n1820937805","loc":[-85.2962632,41.9738968]},"n1820937806":{"id":"n1820937806","loc":[-85.6334748,41.9274627]},"n1820937807":{"id":"n1820937807","loc":[-85.1057341,42.0872804]},"n1820937808":{"id":"n1820937808","loc":[-85.4960169,41.9778263]},"n1820937809":{"id":"n1820937809","loc":[-85.2821226,41.9910273]},"n1820937810":{"id":"n1820937810","loc":[-85.0013868,42.0885054]},"n1820937811":{"id":"n1820937811","loc":[-85.2952547,41.9729795]},"n1820937812":{"id":"n1820937812","loc":[-85.1298375,42.0667842]},"n1820937813":{"id":"n1820937813","loc":[-85.1339201,42.0710025]},"n1820937814":{"id":"n1820937814","loc":[-85.0374356,42.103691]},"n1820937815":{"id":"n1820937815","loc":[-85.0061115,42.0880607]},"n1820937817":{"id":"n1820937817","loc":[-85.2398402,42.0226934]},"n1820937818":{"id":"n1820937818","loc":[-85.123501,42.076236]},"n1820937819":{"id":"n1820937819","loc":[-85.1209489,42.0791294]},"n1820937820":{"id":"n1820937820","loc":[-85.0818624,42.1025778]},"n1820937821":{"id":"n1820937821","loc":[-85.4428835,42.0054749]},"n1820937822":{"id":"n1820937822","loc":[-85.4710359,41.9961147]},"n1820937823":{"id":"n1820937823","loc":[-85.4253354,42.006198]},"n1820937824":{"id":"n1820937824","loc":[-85.5486483,41.9709451]},"n1820937825":{"id":"n1820937825","loc":[-85.2303238,42.0310452]},"n1820937826":{"id":"n1820937826","loc":[-85.6450405,41.9136361]},"n1820937828":{"id":"n1820937828","loc":[-85.2606853,41.9964073]},"n1820937830":{"id":"n1820937830","loc":[-85.097383,42.0911447]},"n1820937831":{"id":"n1820937831","loc":[-85.0498207,42.102136]},"n1820937832":{"id":"n1820937832","loc":[-85.1232435,42.0763793]},"n1820937833":{"id":"n1820937833","loc":[-85.394093,42.0055921]},"n1820937834":{"id":"n1820937834","loc":[-85.3566665,41.9928295]},"n1820937835":{"id":"n1820937835","loc":[-85.3543276,41.9920002]},"n1820937837":{"id":"n1820937837","loc":[-85.084668,42.1034932]},"n1820937838":{"id":"n1820937838","loc":[-85.4400296,42.0060649]},"n1820937839":{"id":"n1820937839","loc":[-85.2362246,42.025714]},"n1820937840":{"id":"n1820937840","loc":[-85.0409225,42.1012791]},"n1820937841":{"id":"n1820937841","loc":[-85.2442283,42.019832]},"n1820937842":{"id":"n1820937842","loc":[-85.1123001,42.084824]},"n1820937843":{"id":"n1820937843","loc":[-85.1603074,42.0638061]},"n1820937844":{"id":"n1820937844","loc":[-85.1359744,42.0650646]},"n1820937845":{"id":"n1820937845","loc":[-85.1757569,42.053849]},"n1820937846":{"id":"n1820937846","loc":[-85.5200925,41.9716686]},"n1820937848":{"id":"n1820937848","loc":[-85.5525322,41.9701315]},"n1820937849":{"id":"n1820937849","loc":[-85.0406489,42.10149]},"n1820937850":{"id":"n1820937850","loc":[-85.0142547,42.088825]},"n1820937851":{"id":"n1820937851","loc":[-85.343749,41.9881884]},"n1820937852":{"id":"n1820937852","loc":[-85.074996,42.1060205]},"n1820937853":{"id":"n1820937853","loc":[-85.2436275,42.0136864]},"n1820937854":{"id":"n1820937854","loc":[-85.2641453,41.9980897]},"n1820937856":{"id":"n1820937856","loc":[-85.2802343,41.9870086]},"n1820937857":{"id":"n1820937857","loc":[-85.0099256,42.0909946]},"n1820937858":{"id":"n1820937858","loc":[-85.493957,41.9786079]},"n1820937859":{"id":"n1820937859","loc":[-85.0739405,42.1059795]},"n1820937860":{"id":"n1820937860","loc":[-85.2331605,42.0301423]},"n1820937862":{"id":"n1820937862","loc":[-85.2035231,42.0438425]},"n1820937863":{"id":"n1820937863","loc":[-85.0884928,42.0986971]},"n1820937864":{"id":"n1820937864","loc":[-85.131597,42.0690142]},"n1820937865":{"id":"n1820937865","loc":[-85.3937454,42.0052677]},"n1820937866":{"id":"n1820937866","loc":[-85.2212729,42.0378561]},"n1820937867":{"id":"n1820937867","loc":[-85.0886068,42.0982421]},"n1820937868":{"id":"n1820937868","loc":[-85.0875004,42.0968064]},"n1820937869":{"id":"n1820937869","loc":[-85.0771323,42.1042642]},"n1820937870":{"id":"n1820937870","loc":[-85.0164554,42.0894887]},"n1820937871":{"id":"n1820937871","loc":[-85.6069102,41.9415577]},"n1820937872":{"id":"n1820937872","loc":[-85.3273875,41.9704908]},"n1820937873":{"id":"n1820937873","loc":[-85.3890891,41.9997983]},"n1820937875":{"id":"n1820937875","loc":[-85.5091276,41.9723705]},"n1820937876":{"id":"n1820937876","loc":[-85.0770626,42.1047696]},"n1820937877":{"id":"n1820937877","loc":[-85.612575,41.9419567]},"n1820937878":{"id":"n1820937878","loc":[-85.3868146,42.0036094]},"n1820937879":{"id":"n1820937879","loc":[-85.2722738,41.9981204]},"n1820937880":{"id":"n1820937880","loc":[-85.3064878,41.9723733]},"n1820937882":{"id":"n1820937882","loc":[-85.1270845,42.0727678]},"n1820937884":{"id":"n1820937884","loc":[-85.3316512,41.97923]},"n1820937885":{"id":"n1820937885","loc":[-85.3932519,42.0042472]},"n1820937886":{"id":"n1820937886","loc":[-85.2457411,42.0175444]},"n1820937887":{"id":"n1820937887","loc":[-85.1397509,42.0648415]},"n1820937891":{"id":"n1820937891","loc":[-85.3196735,41.9719665]},"n1820937892":{"id":"n1820937892","loc":[-85.3372473,41.9845033]},"n1820937894":{"id":"n1820937894","loc":[-85.3254778,41.9719745]},"n1820937897":{"id":"n1820937897","loc":[-85.3185148,41.9691268]},"n1820937899":{"id":"n1820937899","loc":[-85.5419106,41.9714556]},"n1820937901":{"id":"n1820937901","loc":[-85.3293509,41.9748368]},"n1820937903":{"id":"n1820937903","loc":[-85.0798078,42.1028365]},"n1820937905":{"id":"n1820937905","loc":[-85.3954191,42.0056025]},"n1820937909":{"id":"n1820937909","loc":[-85.3417534,41.9857155]},"n1820937913":{"id":"n1820937913","loc":[-84.9927822,42.0857107]},"n1820937915":{"id":"n1820937915","loc":[-85.5444212,41.9712801]},"n1820937917":{"id":"n1820937917","loc":[-85.259088,41.9981682]},"n1820937921":{"id":"n1820937921","loc":[-85.2784576,41.9876358]},"n1820937922":{"id":"n1820937922","loc":[-84.9971918,42.087753]},"n1820937924":{"id":"n1820937924","loc":[-85.5310688,41.966899]},"n1820937928":{"id":"n1820937928","loc":[-85.3766436,41.9979326]},"n1820937930":{"id":"n1820937930","loc":[-85.5494852,41.9704346]},"n1820937933":{"id":"n1820937933","loc":[-85.5548281,41.9695412]},"n1820937935":{"id":"n1820937935","loc":[-85.0768588,42.105088]},"n1820937937":{"id":"n1820937937","loc":[-85.2646885,41.9978054]},"n1820937939":{"id":"n1820937939","loc":[-85.2441532,42.0176082]},"n1820937941":{"id":"n1820937941","loc":[-85.105553,42.0877928]},"n1820937943":{"id":"n1820937943","loc":[-85.0879457,42.0958909]},"n1820937944":{"id":"n1820937944","loc":[-85.3187015,41.9704402]},"n1820937945":{"id":"n1820937945","loc":[-85.5624456,41.970626]},"n1820937946":{"id":"n1820937946","loc":[-85.0580176,42.1028644]},"n1820937948":{"id":"n1820937948","loc":[-85.3016061,41.9726286]},"n1820937949":{"id":"n1820937949","loc":[-85.4310388,42.0069418]},"n1820937950":{"id":"n1820937950","loc":[-85.2945144,41.9740723]},"n1820937951":{"id":"n1820937951","loc":[-85.1170222,42.082657]},"n1820937952":{"id":"n1820937952","loc":[-85.0864503,42.0947632]},"n1820937953":{"id":"n1820937953","loc":[-85.4285926,42.0059533]},"n1820937970":{"id":"n1820937970","loc":[-85.3629965,41.9938023]},"n1820937972":{"id":"n1820937972","loc":[-85.2438099,42.0199755]},"n1820937974":{"id":"n1820937974","loc":[-85.1327654,42.0699285]},"n1820937977":{"id":"n1820937977","loc":[-85.1515956,42.0611935]},"n1820937978":{"id":"n1820937978","loc":[-85.0107369,42.0896638]},"n1820937979":{"id":"n1820937979","loc":[-85.1152626,42.0862083]},"n1820937980":{"id":"n1820937980","loc":[-85.4531831,42.0062881]},"n1820937981":{"id":"n1820937981","loc":[-85.0341473,42.0985924]},"n1820937982":{"id":"n1820937982","loc":[-85.0877485,42.0960171]},"n1820937983":{"id":"n1820937983","loc":[-85.2756373,41.9951742]},"n1820937984":{"id":"n1820937984","loc":[-85.2965421,41.9714401]},"n1820937985":{"id":"n1820937985","loc":[-85.2409775,42.0226934]},"n1820937986":{"id":"n1820937986","loc":[-85.0170723,42.0900579]},"n1820937987":{"id":"n1820937987","loc":[-85.1034663,42.0880555]},"n1820937988":{"id":"n1820937988","loc":[-85.0585071,42.1031577]},"n1820937990":{"id":"n1820937990","loc":[-85.0819174,42.1032373]},"n1820937992":{"id":"n1820937992","loc":[-85.0546608,42.1030542]},"n1820937993":{"id":"n1820937993","loc":[-85.0100811,42.0906125]},"n1820937995":{"id":"n1820937995","loc":[-85.6304278,41.9432655]},"n1820937997":{"id":"n1820937997","loc":[-85.0255628,42.092778]},"n1820938011":{"id":"n1820938011","loc":[-85.2316756,42.0317146]},"n1820938012":{"id":"n1820938012","loc":[-85.4067917,42.008042]},"n1820938013":{"id":"n1820938013","loc":[-85.390398,42.0028759]},"n1820938014":{"id":"n1820938014","loc":[-85.0161604,42.0886527]},"n1820938015":{"id":"n1820938015","loc":[-85.125337,42.0744589]},"n1820938016":{"id":"n1820938016","loc":[-85.2151317,42.0404801]},"n1820938017":{"id":"n1820938017","loc":[-85.3165085,41.9706025]},"n1820938018":{"id":"n1820938018","loc":[-85.5641193,41.9640688]},"n1820938019":{"id":"n1820938019","loc":[-85.147583,42.0642203]},"n1820938022":{"id":"n1820938022","loc":[-85.2803781,41.9947886]},"n1820938024":{"id":"n1820938024","loc":[-85.2692469,41.9982053]},"n1820938026":{"id":"n1820938026","loc":[-85.4321975,42.0067505]},"n1820938028":{"id":"n1820938028","loc":[-85.572535,41.9633405]},"n1820938030":{"id":"n1820938030","loc":[-85.3237505,41.9716475]},"n1820938032":{"id":"n1820938032","loc":[-85.6487698,41.9141583]},"n1820938033":{"id":"n1820938033","loc":[-85.0526371,42.1038315]},"n1820938034":{"id":"n1820938034","loc":[-85.088069,42.0978731]},"n1820938035":{"id":"n1820938035","loc":[-85.2516312,42.0102267]},"n1820938039":{"id":"n1820938039","loc":[-85.2731374,41.9982958]},"n1820938040":{"id":"n1820938040","loc":[-85.5453224,41.9713439]},"n1820938041":{"id":"n1820938041","loc":[-85.4480548,42.0049647]},"n1820938043":{"id":"n1820938043","loc":[-85.2504081,42.010322]},"n1820938045":{"id":"n1820938045","loc":[-85.2663447,41.99919]},"n1820938046":{"id":"n1820938046","loc":[-85.0507287,42.102907]},"n1820938047":{"id":"n1820938047","loc":[-85.0408246,42.1024743]},"n1820938048":{"id":"n1820938048","loc":[-85.2796335,41.9866099]},"n1820938050":{"id":"n1820938050","loc":[-85.452475,42.0061127]},"n1820938051":{"id":"n1820938051","loc":[-85.2410569,42.0128147]},"n1820938052":{"id":"n1820938052","loc":[-85.0413302,42.1011477]},"n1820938053":{"id":"n1820938053","loc":[-85.6327409,41.9197627]},"n1820938056":{"id":"n1820938056","loc":[-85.1072039,42.0857994]},"n1820938057":{"id":"n1820938057","loc":[-85.2001114,42.0448145]},"n1820938058":{"id":"n1820938058","loc":[-85.2655347,41.9978186]},"n1820938059":{"id":"n1820938059","loc":[-85.2330918,42.0304874]},"n1820938060":{"id":"n1820938060","loc":[-85.2601113,41.9966545]},"n1820938061":{"id":"n1820938061","loc":[-85.5397863,41.9708494]},"n1820938062":{"id":"n1820938062","loc":[-85.2702085,41.9977217]},"n1820938063":{"id":"n1820938063","loc":[-85.2219982,42.03699]},"n1820938064":{"id":"n1820938064","loc":[-85.0668957,42.105121]},"n1820938065":{"id":"n1820938065","loc":[-85.2328665,42.0270769]},"n1820938066":{"id":"n1820938066","loc":[-85.3189654,41.9694778]},"n1820938067":{"id":"n1820938067","loc":[-85.3814115,42.0022915]},"n1820938068":{"id":"n1820938068","loc":[-85.2759108,41.9956008]},"n1820938069":{"id":"n1820938069","loc":[-85.0391938,42.1034853]},"n1820938070":{"id":"n1820938070","loc":[-85.2850623,41.9810353]},"n1820938071":{"id":"n1820938071","loc":[-85.538074,41.970855]},"n1820938073":{"id":"n1820938073","loc":[-85.1319661,42.0670932]},"n1820938074":{"id":"n1820938074","loc":[-85.2816763,41.9913678]},"n1820938075":{"id":"n1820938075","loc":[-85.3182144,41.9700282]},"n1820938076":{"id":"n1820938076","loc":[-85.5909028,41.9458989]},"n1820938077":{"id":"n1820938077","loc":[-85.4057617,42.0074361]},"n1820938078":{"id":"n1820938078","loc":[-85.2620438,41.9967729]},"n1820938079":{"id":"n1820938079","loc":[-85.1122143,42.0851107]},"n1820938080":{"id":"n1820938080","loc":[-85.2443785,42.0174567]},"n1820938081":{"id":"n1820938081","loc":[-85.0319733,42.0953853]},"n1820938082":{"id":"n1820938082","loc":[-85.0878276,42.09443]},"n1820938083":{"id":"n1820938083","loc":[-85.0271789,42.0935809]},"n1820938084":{"id":"n1820938084","loc":[-85.0326399,42.0974222]},"n1820938085":{"id":"n1820938085","loc":[-85.3989167,42.0065592]},"n1820938086":{"id":"n1820938086","loc":[-85.3263361,41.9721261]},"n1820938087":{"id":"n1820938087","loc":[-85.2547855,42.0037134]},"n1820938088":{"id":"n1820938088","loc":[-85.4373259,42.005746]},"n1820938089":{"id":"n1820938089","loc":[-85.3094275,41.9699245]},"n1820938090":{"id":"n1820938090","loc":[-85.2783246,41.9872793]},"n1820938092":{"id":"n1820938092","loc":[-85.0815633,42.1025169]},"n1820938093":{"id":"n1820938093","loc":[-85.1788511,42.0522134]},"n1820938095":{"id":"n1820938095","loc":[-85.2830345,41.9816733]},"n1820938096":{"id":"n1820938096","loc":[-85.0744984,42.1059835]},"n1820938097":{"id":"n1820938097","loc":[-85.2788396,41.9879333]},"n1820938098":{"id":"n1820938098","loc":[-85.3640093,41.9946531]},"n1820938099":{"id":"n1820938099","loc":[-85.291167,41.9787463]},"n1820938100":{"id":"n1820938100","loc":[-85.0772436,42.1038156]},"n1820938101":{"id":"n1820938101","loc":[-85.00563,42.0887482]},"n1820938102":{"id":"n1820938102","loc":[-85.0326881,42.0961245]},"n1820938104":{"id":"n1820938104","loc":[-85.0530448,42.1038634]},"n1820938105":{"id":"n1820938105","loc":[-85.2625266,41.9970639]},"n1820938106":{"id":"n1820938106","loc":[-85.2827556,41.9823512]},"n1820938107":{"id":"n1820938107","loc":[-85.2784319,41.9910752]},"n1820938108":{"id":"n1820938108","loc":[-85.0882099,42.094393]},"n1820938109":{"id":"n1820938109","loc":[-85.5718484,41.9645371]},"n1820938110":{"id":"n1820938110","loc":[-85.2559764,42.0099317]},"n1820938111":{"id":"n1820938111","loc":[-85.2969284,41.973179]},"n1820938113":{"id":"n1820938113","loc":[-85.3875055,42.0019726]},"n1820938114":{"id":"n1820938114","loc":[-85.4250779,42.0068199]},"n1820938115":{"id":"n1820938115","loc":[-85.0645367,42.104889]},"n1820938116":{"id":"n1820938116","loc":[-85.1636762,42.0623724]},"n1820938117":{"id":"n1820938117","loc":[-85.0757322,42.1055935]},"n1820938118":{"id":"n1820938118","loc":[-85.3695197,41.9981559]},"n1820938120":{"id":"n1820938120","loc":[-85.1297516,42.0671027]},"n1820938121":{"id":"n1820938121","loc":[-85.1057448,42.0875551]},"n1820938122":{"id":"n1820938122","loc":[-85.2805175,41.9943182]},"n1820938123":{"id":"n1820938123","loc":[-85.2545173,42.0040722]},"n1820938124":{"id":"n1820938124","loc":[-84.9966607,42.0871319]},"n1820938125":{"id":"n1820938125","loc":[-85.0099899,42.0904612]},"n1820938126":{"id":"n1820938126","loc":[-85.2489919,42.0091102]},"n1820938127":{"id":"n1820938127","loc":[-85.0342706,42.0979476]},"n1820938128":{"id":"n1820938128","loc":[-85.1080891,42.0855884]},"n1820938129":{"id":"n1820938129","loc":[-85.0128183,42.0905356]},"n1820938130":{"id":"n1820938130","loc":[-85.631608,41.9434251]},"n1820938131":{"id":"n1820938131","loc":[-85.2551975,42.0008524]},"n1820938132":{"id":"n1820938132","loc":[-85.6421823,41.9096233]},"n1820938133":{"id":"n1820938133","loc":[-85.0125059,42.0906284]},"n1820938134":{"id":"n1820938134","loc":[-85.5499358,41.9701793]},"n1820938135":{"id":"n1820938135","loc":[-85.5472107,41.9712323]},"n1820938136":{"id":"n1820938136","loc":[-85.2760758,41.9958691]},"n1820938137":{"id":"n1820938137","loc":[-85.276678,41.9960433]},"n1820938138":{"id":"n1820938138","loc":[-85.0570319,42.1024731]},"n1820938140":{"id":"n1820938140","loc":[-85.2394325,42.0227492]},"n1820938142":{"id":"n1820938142","loc":[-85.5666341,41.9638829]},"n1820938144":{"id":"n1820938144","loc":[-85.258101,41.9996353]},"n1820938147":{"id":"n1820938147","loc":[-85.2129645,42.0413565]},"n1820938149":{"id":"n1820938149","loc":[-84.9962369,42.0868373]},"n1820938151":{"id":"n1820938151","loc":[-85.2570386,42.0084968]},"n1820938153":{"id":"n1820938153","loc":[-85.3971142,42.0050285]},"n1820938155":{"id":"n1820938155","loc":[-85.1072093,42.0855566]},"n1820938157":{"id":"n1820938157","loc":[-85.2840323,41.9920959]},"n1820938159":{"id":"n1820938159","loc":[-85.1187924,42.0816458]},"n1820938161":{"id":"n1820938161","loc":[-85.2681324,41.9985788]},"n1820938163":{"id":"n1820938163","loc":[-85.0887034,42.0984969]},"n1820938165":{"id":"n1820938165","loc":[-85.4133405,42.0073141]},"n1820938166":{"id":"n1820938166","loc":[-85.0097445,42.0902888]},"n1820938167":{"id":"n1820938167","loc":[-85.0828133,42.1037388]},"n1820938168":{"id":"n1820938168","loc":[-85.0549599,42.1030833]},"n1820938169":{"id":"n1820938169","loc":[-85.4571528,42.0010421]},"n1820938178":{"id":"n1820938178","loc":[-85.2706644,41.9975941]},"n1820938180":{"id":"n1820938180","loc":[-85.2258606,42.0335794]},"n1820938182":{"id":"n1820938182","loc":[-85.2832276,41.9814659]},"n1820938184":{"id":"n1820938184","loc":[-85.1082299,42.0860928]},"n1820938185":{"id":"n1820938185","loc":[-85.3839392,42.0022381]},"n1820938186":{"id":"n1820938186","loc":[-85.2772131,41.995905]},"n1820938187":{"id":"n1820938187","loc":[-85.1044895,42.0879214]},"n1820938188":{"id":"n1820938188","loc":[-85.2135267,42.0407087]},"n1820938189":{"id":"n1820938189","loc":[-85.2543993,42.0044628]},"n1820938190":{"id":"n1820938190","loc":[-85.1501793,42.0617351]},"n1820938191":{"id":"n1820938191","loc":[-85.3350587,41.9820469]},"n1820938192":{"id":"n1820938192","loc":[-85.1350731,42.0655735]},"n1820938193":{"id":"n1820938193","loc":[-85.0404008,42.1028843]},"n1820938194":{"id":"n1820938194","loc":[-85.6323161,41.943042]},"n1820938195":{"id":"n1820938195","loc":[-85.1259593,42.0742837]},"n1820938196":{"id":"n1820938196","loc":[-85.4562988,42.0033758]},"n1820938197":{"id":"n1820938197","loc":[-85.256824,42.0056826]},"n1820938198":{"id":"n1820938198","loc":[-85.2742103,41.9963862]},"n1820938199":{"id":"n1820938199","loc":[-85.0380888,42.1037877]},"n1820938200":{"id":"n1820938200","loc":[-85.47404,41.9944721]},"n1820938201":{"id":"n1820938201","loc":[-85.103021,42.087948]},"n1820938202":{"id":"n1820938202","loc":[-85.4030151,42.0065113]},"n1820938203":{"id":"n1820938203","loc":[-85.2113981,42.040735]},"n1820938204":{"id":"n1820938204","loc":[-85.2603433,41.9965137]},"n1820938206":{"id":"n1820938206","loc":[-85.1669378,42.0607634]},"n1820938207":{"id":"n1820938207","loc":[-85.0642027,42.1046076]},"n1820938208":{"id":"n1820938208","loc":[-85.2812428,41.9915696]},"n1820938209":{"id":"n1820938209","loc":[-85.0839559,42.1038343]},"n1820938210":{"id":"n1820938210","loc":[-85.1239946,42.0769368]},"n1820938211":{"id":"n1820938211","loc":[-85.2311177,42.0283042]},"n1820938212":{"id":"n1820938212","loc":[-85.2791614,41.9882682]},"n1820938213":{"id":"n1820938213","loc":[-85.2674941,41.9987582]},"n1820938214":{"id":"n1820938214","loc":[-85.352787,41.9919579]},"n1820938215":{"id":"n1820938215","loc":[-85.0874146,42.0952182]},"n1820938216":{"id":"n1820938216","loc":[-85.0069711,42.0877092]},"n1820938217":{"id":"n1820938217","loc":[-85.2059049,42.0404004]},"n1820938218":{"id":"n1820938218","loc":[-85.2403552,42.0227332]},"n1820938219":{"id":"n1820938219","loc":[-85.2492923,42.0098915]},"n1820938220":{"id":"n1820938220","loc":[-85.269778,41.9979541]},"n1820938221":{"id":"n1820938221","loc":[-85.2097673,42.0389024]},"n1820938222":{"id":"n1820938222","loc":[-85.0845942,42.1032015]},"n1820938223":{"id":"n1820938223","loc":[-84.993206,42.0858142]},"n1820938224":{"id":"n1820938224","loc":[-85.2108187,42.0402729]},"n1820938225":{"id":"n1820938225","loc":[-84.9893959,42.0873043]},"n1820938226":{"id":"n1820938226","loc":[-85.2952332,41.9719984]},"n1820938227":{"id":"n1820938227","loc":[-85.4100961,42.0081536]},"n1820938228":{"id":"n1820938228","loc":[-85.3299088,41.9785696]},"n1820938229":{"id":"n1820938229","loc":[-85.2258176,42.0340097]},"n1820938230":{"id":"n1820938230","loc":[-85.3146739,41.9711449]},"n1820938231":{"id":"n1820938231","loc":[-85.5447645,41.9712801]},"n1820938232":{"id":"n1820938232","loc":[-85.5510087,41.9705941]},"n1820938233":{"id":"n1820938233","loc":[-85.5122389,41.9703445]},"n1820938234":{"id":"n1820938234","loc":[-85.2792687,41.9865381]},"n1820938235":{"id":"n1820938235","loc":[-85.1475229,42.0630151]},"n1820938237":{"id":"n1820938237","loc":[-85.0332889,42.0996034]},"n1820938238":{"id":"n1820938238","loc":[-85.2588882,41.9986877]},"n1820938239":{"id":"n1820938239","loc":[-85.0656458,42.1050892]},"n1820938240":{"id":"n1820938240","loc":[-84.9913915,42.086098]},"n1820938241":{"id":"n1820938241","loc":[-85.4752416,41.9944402]},"n1820938242":{"id":"n1820938242","loc":[-85.1214304,42.0791147]},"n1820938243":{"id":"n1820938243","loc":[-85.0075183,42.0886925]},"n1820938244":{"id":"n1820938244","loc":[-85.1052888,42.0872087]},"n1820938245":{"id":"n1820938245","loc":[-85.3104252,41.9703393]},"n1820938246":{"id":"n1820938246","loc":[-85.232109,42.0318158]},"n1820938247":{"id":"n1820938247","loc":[-85.0756075,42.1059528]},"n1820938248":{"id":"n1820938248","loc":[-85.0075612,42.0890866]},"n1820938249":{"id":"n1820938249","loc":[-85.1013312,42.0897474]},"n1820938250":{"id":"n1820938250","loc":[-85.1168076,42.0828919]},"n1820938251":{"id":"n1820938251","loc":[-85.2951367,41.9723334]},"n1820938252":{"id":"n1820938252","loc":[-85.0879363,42.0976053]},"n1820938253":{"id":"n1820938253","loc":[-85.0354763,42.1021838]},"n1820938254":{"id":"n1820938254","loc":[-85.2379627,42.0236339]},"n1820938255":{"id":"n1820938255","loc":[-85.1308245,42.0685364]},"n1820938256":{"id":"n1820938256","loc":[-85.0914446,42.0934774]},"n1820938257":{"id":"n1820938257","loc":[-85.2436812,42.014069]},"n1820938258":{"id":"n1820938258","loc":[-85.0682529,42.1056106]},"n1820938259":{"id":"n1820938259","loc":[-85.290652,41.9766805]},"n1820938260":{"id":"n1820938260","loc":[-85.0133494,42.0897434]},"n1820938261":{"id":"n1820938261","loc":[-85.2753047,41.9949429]},"n1820938262":{"id":"n1820938262","loc":[-85.0314691,42.0950788]},"n1820938263":{"id":"n1820938263","loc":[-85.3444786,41.9908359]},"n1820938264":{"id":"n1820938264","loc":[-85.0443115,42.1009061]},"n1820938265":{"id":"n1820938265","loc":[-85.0634853,42.1043159]},"n1820938267":{"id":"n1820938267","loc":[-85.3978223,42.0053952]},"n1820938268":{"id":"n1820938268","loc":[-85.0228659,42.0911885]},"n1820938269":{"id":"n1820938269","loc":[-85.0220237,42.0906272]},"n1820938270":{"id":"n1820938270","loc":[-85.1061525,42.0863369]},"n1820938271":{"id":"n1820938271","loc":[-85.2382309,42.0233708]},"n1820938272":{"id":"n1820938272","loc":[-85.310672,41.9702755]},"n1820938273":{"id":"n1820938273","loc":[-85.1448192,42.0652613]},"n1820938274":{"id":"n1820938274","loc":[-85.6036057,41.9403766]},"n1820938275":{"id":"n1820938275","loc":[-85.0778941,42.1032413]},"n1820938276":{"id":"n1820938276","loc":[-85.1279374,42.0723974]},"n1820938277":{"id":"n1820938277","loc":[-85.2806635,41.9847836]},"n1820938278":{"id":"n1820938278","loc":[-85.2653201,41.9976352]},"n1820938279":{"id":"n1820938279","loc":[-85.0351665,42.1001805]},"n1820938280":{"id":"n1820938280","loc":[-85.0718269,42.1056253]},"n1820938281":{"id":"n1820938281","loc":[-85.2574248,42.0075322]},"n1820938282":{"id":"n1820938282","loc":[-85.126666,42.0740778]},"n1820938283":{"id":"n1820938283","loc":[-85.077705,42.1034733]},"n1820938284":{"id":"n1820938284","loc":[-85.3535552,41.9919045]},"n1820938286":{"id":"n1820938286","loc":[-85.2810711,41.9866657]},"n1820938287":{"id":"n1820938287","loc":[-85.4567494,42.0019885]},"n1820938288":{"id":"n1820938288","loc":[-85.2642419,41.9992936]},"n1820938289":{"id":"n1820938289","loc":[-85.2643344,41.9980925]},"n1820938290":{"id":"n1820938290","loc":[-85.3270335,41.9776125]},"n1820938291":{"id":"n1820938291","loc":[-85.1200584,42.0795077]},"n1820938292":{"id":"n1820938292","loc":[-85.2290792,42.0340256]},"n1820938293":{"id":"n1820938293","loc":[-85.6015887,41.9401372]},"n1820938294":{"id":"n1820938294","loc":[-85.5370869,41.970488]},"n1820938295":{"id":"n1820938295","loc":[-85.3108866,41.9698048]},"n1820938297":{"id":"n1820938297","loc":[-85.1556511,42.0628184]},"n1820938298":{"id":"n1820938298","loc":[-85.0027922,42.0875221]},"n1820938300":{"id":"n1820938300","loc":[-85.3873338,42.0040614]},"n1820938301":{"id":"n1820938301","loc":[-85.0350753,42.1004034]},"n1820938302":{"id":"n1820938302","loc":[-85.6239476,41.9411906]},"n1820938304":{"id":"n1820938304","loc":[-85.0118246,42.0897964]},"n1820938306":{"id":"n1820938306","loc":[-85.4796877,41.995275]},"n1820938307":{"id":"n1820938307","loc":[-85.5388636,41.9707856]},"n1820938309":{"id":"n1820938309","loc":[-85.2971902,41.9727773]},"n1820938310":{"id":"n1820938310","loc":[-85.5426831,41.9715513]},"n1820938311":{"id":"n1820938311","loc":[-85.2798373,41.9836671]},"n1820938312":{"id":"n1820938312","loc":[-85.2432198,42.0104017]},"n1820938313":{"id":"n1820938313","loc":[-85.2650412,41.9987554]},"n1820938317":{"id":"n1820938317","loc":[-85.0015423,42.0882386]},"n1820938318":{"id":"n1820938318","loc":[-85.1409783,42.064879]},"n1820938319":{"id":"n1820938319","loc":[-85.1691908,42.058995]},"n1820938320":{"id":"n1820938320","loc":[-85.1059165,42.0864882]},"n1820938321":{"id":"n1820938321","loc":[-85.3664941,41.9965771]},"n1820938323":{"id":"n1820938323","loc":[-85.3143198,41.9710971]},"n1820938324":{"id":"n1820938324","loc":[-85.0016067,42.0880675]},"n1820938325":{"id":"n1820938325","loc":[-85.0148139,42.0887164]},"n1820938326":{"id":"n1820938326","loc":[-85.0324682,42.0959056]},"n1820938327":{"id":"n1820938327","loc":[-85.0898661,42.0939921]},"n1820938328":{"id":"n1820938328","loc":[-85.2556427,42.0004936]},"n1820938329":{"id":"n1820938329","loc":[-85.6287112,41.9407437]},"n1820938330":{"id":"n1820938330","loc":[-84.9913392,42.0866701]},"n1820938331":{"id":"n1820938331","loc":[-85.2685777,41.9984632]},"n1820938332":{"id":"n1820938332","loc":[-85.0078884,42.0901614]},"n1820938333":{"id":"n1820938333","loc":[-84.999642,42.0878616]},"n1820938334":{"id":"n1820938334","loc":[-85.0188909,42.0899186]},"n1820938335":{"id":"n1820938335","loc":[-85.2830238,41.9819843]},"n1820938336":{"id":"n1820938336","loc":[-85.2491421,42.0096204]},"n1820938337":{"id":"n1820938337","loc":[-85.0585701,42.1034295]},"n1820938338":{"id":"n1820938338","loc":[-85.0651965,42.1051636]},"n1820938339":{"id":"n1820938339","loc":[-85.0583944,42.104292]},"n1820938340":{"id":"n1820938340","loc":[-85.119876,42.0801567]},"n1820938341":{"id":"n1820938341","loc":[-85.0943937,42.0931323]},"n1820938342":{"id":"n1820938342","loc":[-85.1504583,42.0613209]},"n1820938343":{"id":"n1820938343","loc":[-85.0425426,42.1019836]},"n1820938345":{"id":"n1820938345","loc":[-84.9991391,42.0878206]},"n1820938346":{"id":"n1820938346","loc":[-85.2563841,42.0094614]},"n1820938347":{"id":"n1820938347","loc":[-85.0515387,42.103297]},"n1820938348":{"id":"n1820938348","loc":[-85.0857261,42.1003636]},"n1820938349":{"id":"n1820938349","loc":[-85.078971,42.1029241]},"n1820938350":{"id":"n1820938350","loc":[-85.5699558,41.958931]},"n1820938351":{"id":"n1820938351","loc":[-85.3181285,41.9696533]},"n1820938352":{"id":"n1820938352","loc":[-85.5998506,41.9402329]},"n1820938353":{"id":"n1820938353","loc":[-85.2567277,42.000317]},"n1820938354":{"id":"n1820938354","loc":[-85.3082795,41.9708338]},"n1820938355":{"id":"n1820938355","loc":[-85.3127856,41.9692784]},"n1820938356":{"id":"n1820938356","loc":[-85.0340775,42.1010721]},"n1820938357":{"id":"n1820938357","loc":[-85.3158111,41.9706583]},"n1820938359":{"id":"n1820938359","loc":[-85.2312035,42.0280412]},"n1820938360":{"id":"n1820938360","loc":[-85.2448613,42.018477]},"n1820938361":{"id":"n1820938361","loc":[-85.29077,41.9759068]},"n1820938364":{"id":"n1820938364","loc":[-85.3677387,41.9976615]},"n1820938365":{"id":"n1820938365","loc":[-85.0785204,42.1030355]},"n1820938366":{"id":"n1820938366","loc":[-85.2262039,42.0333722]},"n1820938367":{"id":"n1820938367","loc":[-85.1226011,42.0780902]},"n1820938368":{"id":"n1820938368","loc":[-85.3229673,41.971129]},"n1820938369":{"id":"n1820938369","loc":[-85.385334,42.0000056]},"n1820938370":{"id":"n1820938370","loc":[-85.000098,42.0879094]},"n1820938372":{"id":"n1820938372","loc":[-85.3852481,42.0025091]},"n1820938373":{"id":"n1820938373","loc":[-85.3770513,41.9982515]},"n1820938374":{"id":"n1820938374","loc":[-85.6278314,41.9405362]},"n1820938375":{"id":"n1820938375","loc":[-85.6355133,41.9344068]},"n1820938376":{"id":"n1820938376","loc":[-85.635642,41.9324753]},"n1820938377":{"id":"n1820938377","loc":[-85.3154463,41.970778]},"n1820938378":{"id":"n1820938378","loc":[-85.0920334,42.093411]},"n1820938379":{"id":"n1820938379","loc":[-85.3269155,41.9722297]},"n1820938381":{"id":"n1820938381","loc":[-85.1134334,42.0849184]},"n1820938382":{"id":"n1820938382","loc":[-85.005968,42.088585]},"n1820938384":{"id":"n1820938384","loc":[-85.1245203,42.0757183]},"n1820938385":{"id":"n1820938385","loc":[-85.020704,42.0905396]},"n1820938386":{"id":"n1820938386","loc":[-85.119585,42.0808984]},"n1820938387":{"id":"n1820938387","loc":[-85.0072447,42.0880117]},"n1820938388":{"id":"n1820938388","loc":[-85.2742908,41.9960273]},"n1820938389":{"id":"n1820938389","loc":[-85.3275807,41.9696852]},"n1820938390":{"id":"n1820938390","loc":[-85.2385635,42.0231556]},"n1820938392":{"id":"n1820938392","loc":[-85.0202856,42.0900778]},"n1820938393":{"id":"n1820938393","loc":[-85.2067847,42.0395398]},"n1820938394":{"id":"n1820938394","loc":[-85.5183544,41.9713495]},"n1820938396":{"id":"n1820938396","loc":[-85.5073037,41.9736787]},"n1820938397":{"id":"n1820938397","loc":[-85.2519638,42.0114225]},"n1820938398":{"id":"n1820938398","loc":[-85.287487,41.9793285]},"n1820938399":{"id":"n1820938399","loc":[-85.2298088,42.0336431]},"n1820938400":{"id":"n1820938400","loc":[-85.229444,42.0339141]},"n1820938401":{"id":"n1820938401","loc":[-85.2421791,42.0220239]},"n1820938402":{"id":"n1820938402","loc":[-85.2976687,41.9737612]},"n1820938403":{"id":"n1820938403","loc":[-85.3622069,41.993473]},"n1820938404":{"id":"n1820938404","loc":[-85.2465458,42.014906]},"n1820938405":{"id":"n1820938405","loc":[-85.5724663,41.9639412]},"n1820938406":{"id":"n1820938406","loc":[-85.3708501,41.9982037]},"n1820938408":{"id":"n1820938408","loc":[-85.2564592,42.0055311]},"n1820938409":{"id":"n1820938409","loc":[-85.1192846,42.0810856]},"n1820938410":{"id":"n1820938410","loc":[-85.5623812,41.971663]},"n1820938411":{"id":"n1820938411","loc":[-85.3221948,41.9719665]},"n1820938412":{"id":"n1820938412","loc":[-85.5168738,41.9710305]},"n1820938413":{"id":"n1820938413","loc":[-85.4546852,42.0061127]},"n1820938414":{"id":"n1820938414","loc":[-85.5896153,41.9463617]},"n1820938415":{"id":"n1820938415","loc":[-85.2978189,41.9722138]},"n1820938416":{"id":"n1820938416","loc":[-85.1021681,42.0883581]},"n1820938417":{"id":"n1820938417","loc":[-85.2797193,41.9912984]},"n1820938419":{"id":"n1820938419","loc":[-85.2362461,42.0248533]},"n1820938420":{"id":"n1820938420","loc":[-85.4833639,41.9846252]},"n1820938422":{"id":"n1820938422","loc":[-85.3281064,41.9689433]},"n1820938424":{"id":"n1820938424","loc":[-85.2416963,42.0130088]},"n1820938425":{"id":"n1820938425","loc":[-85.5718655,41.9564577]},"n1820938426":{"id":"n1820938426","loc":[-85.0512812,42.1030701]},"n1820938427":{"id":"n1820938427","loc":[-85.1273527,42.0723616]},"n1820938428":{"id":"n1820938428","loc":[-85.0215033,42.0904083]},"n1820938429":{"id":"n1820938429","loc":[-85.6169953,41.942228]},"n1820938430":{"id":"n1820938430","loc":[-85.2829165,41.9907243]},"n1820938431":{"id":"n1820938431","loc":[-85.2240796,42.0374203]},"n1820938432":{"id":"n1820938432","loc":[-85.0167598,42.0898442]},"n1820938433":{"id":"n1820938433","loc":[-85.2132649,42.0411334]},"n1820938434":{"id":"n1820938434","loc":[-85.2293839,42.031513]},"n1820938435":{"id":"n1820938435","loc":[-85.1203374,42.0792608]},"n1820938436":{"id":"n1820938436","loc":[-85.109571,42.086268]},"n1820938437":{"id":"n1820938437","loc":[-85.1079026,42.0853842]},"n1820938438":{"id":"n1820938438","loc":[-85.109237,42.0862413]},"n1820938439":{"id":"n1820938439","loc":[-85.2259936,42.0350831]},"n1820938440":{"id":"n1820938440","loc":[-85.3669705,41.99679]},"n1820938441":{"id":"n1820938441","loc":[-85.2418143,42.0223507]},"n1820938442":{"id":"n1820938442","loc":[-85.3101248,41.9702515]},"n1820938443":{"id":"n1820938443","loc":[-85.069315,42.1059688]},"n1820938444":{"id":"n1820938444","loc":[-85.205862,42.0410378]},"n1820938445":{"id":"n1820938445","loc":[-85.0388076,42.1036604]},"n1820938446":{"id":"n1820938446","loc":[-85.2225389,42.0370115]},"n1820938447":{"id":"n1820938447","loc":[-85.3241474,41.9719346]},"n1820938448":{"id":"n1820938448","loc":[-85.3125496,41.9690789]},"n1820938449":{"id":"n1820938449","loc":[-85.1146497,42.0857039]},"n1820938450":{"id":"n1820938450","loc":[-85.1333944,42.0714963]},"n1820938451":{"id":"n1820938451","loc":[-85.5619306,41.9720937]},"n1820938452":{"id":"n1820938452","loc":[-85.2553651,42.0006479]},"n1820938453":{"id":"n1820938453","loc":[-85.3151137,41.9710093]},"n1820938454":{"id":"n1820938454","loc":[-85.2592315,41.9977947]},"n1820938455":{"id":"n1820938455","loc":[-85.2655723,41.9995966]},"n1820938456":{"id":"n1820938456","loc":[-85.4820652,41.9959233]},"n1820938459":{"id":"n1820938459","loc":[-85.450737,42.0055068]},"n1820938460":{"id":"n1820938460","loc":[-85.2428658,42.0205573]},"n1820938461":{"id":"n1820938461","loc":[-85.0835576,42.1021559]},"n1820938462":{"id":"n1820938462","loc":[-85.244636,42.0194733]},"n1820938463":{"id":"n1820938463","loc":[-85.5702562,41.9581332]},"n1820938465":{"id":"n1820938465","loc":[-85.5680031,41.9659515]},"n1820938467":{"id":"n1820938467","loc":[-85.2798752,41.9948353]},"n1820938468":{"id":"n1820938468","loc":[-85.0477407,42.1015537]},"n1820938469":{"id":"n1820938469","loc":[-85.6403842,41.913732]},"n1820938470":{"id":"n1820938470","loc":[-85.0396029,42.103289]},"n1820938471":{"id":"n1820938471","loc":[-85.2824702,41.9907777]},"n1820938472":{"id":"n1820938472","loc":[-85.2969284,41.9735538]},"n1820938474":{"id":"n1820938474","loc":[-85.401041,42.0070853]},"n1820938475":{"id":"n1820938475","loc":[-85.4116625,42.0073883]},"n1820938476":{"id":"n1820938476","loc":[-85.0437764,42.1016214]},"n1820938477":{"id":"n1820938477","loc":[-85.3643269,41.9958436]},"n1820938478":{"id":"n1820938478","loc":[-85.3895182,42.0009465]},"n1820938479":{"id":"n1820938479","loc":[-85.636157,41.9333373]},"n1820938480":{"id":"n1820938480","loc":[-85.2811355,41.9858044]},"n1820938481":{"id":"n1820938481","loc":[-85.0239052,42.092153]},"n1820938482":{"id":"n1820938482","loc":[-85.2558798,42.0053557]},"n1820938483":{"id":"n1820938483","loc":[-85.2544422,42.0047339]},"n1820938484":{"id":"n1820938484","loc":[-85.4864683,41.9843183]},"n1820938485":{"id":"n1820938485","loc":[-85.2554185,42.0031075]},"n1820938486":{"id":"n1820938486","loc":[-85.3082795,41.9712486]},"n1820938487":{"id":"n1820938487","loc":[-85.2433378,42.0133436]},"n1820938488":{"id":"n1820938488","loc":[-85.0216696,42.0904162]},"n1820938489":{"id":"n1820938489","loc":[-85.2546138,42.0050289]},"n1820938490":{"id":"n1820938490","loc":[-85.2717521,41.9977349]},"n1820938491":{"id":"n1820938491","loc":[-85.0100489,42.0908195]},"n1820938492":{"id":"n1820938492","loc":[-85.207879,42.0392211]},"n1820938493":{"id":"n1820938493","loc":[-85.0007363,42.0882836]},"n1820938494":{"id":"n1820938494","loc":[-85.5775303,41.9504097]},"n1820938495":{"id":"n1820938495","loc":[-85.1131584,42.0847683]},"n1820938496":{"id":"n1820938496","loc":[-85.0887825,42.0941633]},"n1820938497":{"id":"n1820938497","loc":[-85.1185926,42.0818938]},"n1820938498":{"id":"n1820938498","loc":[-85.2748487,41.9948712]},"n1820938499":{"id":"n1820938499","loc":[-85.2566952,42.0090788]},"n1820938500":{"id":"n1820938500","loc":[-85.0774757,42.1036234]},"n1820938501":{"id":"n1820938501","loc":[-85.4190869,42.008903]},"n1820938502":{"id":"n1820938502","loc":[-85.1140395,42.0850577]},"n1820938503":{"id":"n1820938503","loc":[-85.1136104,42.0848627]},"n1820938504":{"id":"n1820938504","loc":[-85.5828089,41.9480638]},"n1820938505":{"id":"n1820938505","loc":[-85.625514,41.9405202]},"n1820938506":{"id":"n1820938506","loc":[-85.2063384,42.0398322]},"n1820938507":{"id":"n1820938507","loc":[-85.3395476,41.9851636]},"n1820938508":{"id":"n1820938508","loc":[-85.0328853,42.0963606]},"n1820938510":{"id":"n1820938510","loc":[-85.1170369,42.0843702]},"n1820938511":{"id":"n1820938511","loc":[-85.2784748,41.9868487]},"n1820938512":{"id":"n1820938512","loc":[-85.6310501,41.9435528]},"n1820938514":{"id":"n1820938514","loc":[-85.0334284,42.0981028]},"n1820938515":{"id":"n1820938515","loc":[-84.9912091,42.0868226]},"n1820938516":{"id":"n1820938516","loc":[-85.2806141,41.9940351]},"n1820938517":{"id":"n1820938517","loc":[-85.1233025,42.0776734]},"n1820938518":{"id":"n1820938518","loc":[-85.2047891,42.0429023]},"n1820938519":{"id":"n1820938519","loc":[-85.1475443,42.0648312]},"n1820938520":{"id":"n1820938520","loc":[-85.2644685,41.9990891]},"n1820938521":{"id":"n1820938521","loc":[-85.1056281,42.0872553]},"n1820938522":{"id":"n1820938522","loc":[-85.4813184,41.9930105]},"n1820938523":{"id":"n1820938523","loc":[-85.321551,41.9722936]},"n1820938524":{"id":"n1820938524","loc":[-85.1564664,42.0631211]},"n1820938525":{"id":"n1820938525","loc":[-85.4149885,42.0079144]},"n1820938527":{"id":"n1820938527","loc":[-85.2861888,41.9803653]},"n1820938528":{"id":"n1820938528","loc":[-85.1301379,42.0682178]},"n1820938529":{"id":"n1820938529","loc":[-85.4156537,42.0084247]},"n1820938530":{"id":"n1820938530","loc":[-85.245151,42.0176082]},"n1820938531":{"id":"n1820938531","loc":[-85.457818,42.0001651]},"n1820938532":{"id":"n1820938532","loc":[-85.310951,41.9694538]},"n1820938533":{"id":"n1820938533","loc":[-85.1509089,42.0611298]},"n1820938534":{"id":"n1820938534","loc":[-85.1108249,42.086321]},"n1820938535":{"id":"n1820938535","loc":[-85.1260344,42.0740687]},"n1820938536":{"id":"n1820938536","loc":[-85.4561228,42.0042791]},"n1820938537":{"id":"n1820938537","loc":[-85.2805082,41.9945761]},"n1820938538":{"id":"n1820938538","loc":[-85.273352,41.9981921]},"n1820938539":{"id":"n1820938539","loc":[-85.1084216,42.0864364]},"n1820938540":{"id":"n1820938540","loc":[-85.5009737,41.9773637]},"n1820938541":{"id":"n1820938541","loc":[-85.3960843,42.0051879]},"n1820938542":{"id":"n1820938542","loc":[-85.3425088,41.9865034]},"n1820938545":{"id":"n1820938545","loc":[-84.9937907,42.0860849]},"n1820938546":{"id":"n1820938546","loc":[-85.1084176,42.086065]},"n1820938547":{"id":"n1820938547","loc":[-85.3492851,41.9924786]},"n1820938548":{"id":"n1820938548","loc":[-85.2512235,42.0101147]},"n1820938549":{"id":"n1820938549","loc":[-85.3717298,41.9979326]},"n1820938551":{"id":"n1820938551","loc":[-85.2573712,42.0064081]},"n1820938552":{"id":"n1820938552","loc":[-85.2514596,42.010139]},"n1820938553":{"id":"n1820938553","loc":[-85.416512,42.0088073]},"n1820938554":{"id":"n1820938554","loc":[-85.4365964,42.0061606]},"n1820938555":{"id":"n1820938555","loc":[-85.4552431,42.0057301]},"n1820938556":{"id":"n1820938556","loc":[-85.2916283,41.9778769]},"n1820938557":{"id":"n1820938557","loc":[-85.100709,42.0902968]},"n1820938558":{"id":"n1820938558","loc":[-85.4703064,41.9965771]},"n1820938559":{"id":"n1820938559","loc":[-85.3134722,41.9696134]},"n1820938560":{"id":"n1820938560","loc":[-85.4834213,41.9885768]},"n1820938561":{"id":"n1820938561","loc":[-85.2740641,41.9975236]},"n1820938562":{"id":"n1820938562","loc":[-85.148334,42.0623405]},"n1820938563":{"id":"n1820938563","loc":[-85.2358598,42.0263675]},"n1820938565":{"id":"n1820938565","loc":[-85.2902979,41.9790892]},"n1820938566":{"id":"n1820938566","loc":[-85.2528865,42.0112869]},"n1820938567":{"id":"n1820938567","loc":[-85.2595319,41.9973003]},"n1820938568":{"id":"n1820938568","loc":[-85.071151,42.105689]},"n1820938570":{"id":"n1820938570","loc":[-85.299278,41.9732188]},"n1820938571":{"id":"n1820938571","loc":[-85.0354669,42.1024771]},"n1820938583":{"id":"n1820938583","loc":[-85.3313937,41.972562]},"n1820938585":{"id":"n1820938585","loc":[-85.0756933,42.1058334]},"n1820938587":{"id":"n1820938587","loc":[-85.3130324,41.9694219]},"n1820938590":{"id":"n1820938590","loc":[-85.0934227,42.0931681]},"n1820938592":{"id":"n1820938592","loc":[-85.3517956,41.9922553]},"n1820938593":{"id":"n1820938593","loc":[-85.4023971,42.0065169]},"n1820938594":{"id":"n1820938594","loc":[-85.3506798,41.9925583]},"n1820938595":{"id":"n1820938595","loc":[-85.3673524,41.9971193]},"n1820938596":{"id":"n1820938596","loc":[-85.1073608,42.0853523]},"n1820938597":{"id":"n1820938597","loc":[-85.2976579,41.972477]},"n1820938598":{"id":"n1820938598","loc":[-85.5616517,41.9694295]},"n1820938599":{"id":"n1820938599","loc":[-85.3552074,41.9921915]},"n1820938600":{"id":"n1820938600","loc":[-85.4665126,41.9999953]},"n1820938601":{"id":"n1820938601","loc":[-85.2740695,41.9966226]},"n1820938602":{"id":"n1820938602","loc":[-85.279376,41.9886669]},"n1820938603":{"id":"n1820938603","loc":[-85.0771109,42.1040413]},"n1820938604":{"id":"n1820938604","loc":[-85.2636049,41.9977895]},"n1820938605":{"id":"n1820938605","loc":[-85.3762145,41.9976456]},"n1820938606":{"id":"n1820938606","loc":[-85.2321369,42.0289577]},"n1820938620":{"id":"n1820938620","loc":[-85.4947724,41.9776189]},"n1820938622":{"id":"n1820938622","loc":[-85.1547069,42.0622768]},"n1820938624":{"id":"n1820938624","loc":[-85.0005056,42.0880249]},"n1820938626":{"id":"n1820938626","loc":[-85.0735596,42.1059357]},"n1820938628":{"id":"n1820938628","loc":[-85.4665298,41.99932]},"n1820938629":{"id":"n1820938629","loc":[-85.434515,42.0065273]},"n1820938630":{"id":"n1820938630","loc":[-85.117462,42.0823823]},"n1820938631":{"id":"n1820938631","loc":[-85.0131777,42.0890707]},"n1820938632":{"id":"n1820938632","loc":[-85.0875326,42.0961934]},"n1820938634":{"id":"n1820938634","loc":[-85.6433839,41.9112042]},"n1820938635":{"id":"n1820938635","loc":[-85.1366181,42.064969]},"n1820938636":{"id":"n1820938636","loc":[-85.073109,42.1057925]},"n1820938638":{"id":"n1820938638","loc":[-85.161406,42.0632541]},"n1820938640":{"id":"n1820938640","loc":[-85.6343932,41.9188845]},"n1820938642":{"id":"n1820938642","loc":[-85.2500004,42.010306]},"n1820938644":{"id":"n1820938644","loc":[-85.291918,41.9753166]},"n1820938663":{"id":"n1820938663","loc":[-85.2841611,41.9916812]},"n1820938664":{"id":"n1820938664","loc":[-85.1052955,42.0868134]},"n1820938665":{"id":"n1820938665","loc":[-85.4606118,42.0005534]},"n1820938666":{"id":"n1820938666","loc":[-85.5672736,41.9642922]},"n1820938667":{"id":"n1820938667","loc":[-85.6348481,41.9316932]},"n1820938668":{"id":"n1820938668","loc":[-85.0224904,42.0909576]},"n1820938669":{"id":"n1820938669","loc":[-85.0133856,42.0899755]},"n1820938670":{"id":"n1820938670","loc":[-85.344779,41.991139]},"n1820938671":{"id":"n1820938671","loc":[-85.632874,41.9425313]},"n1820938673":{"id":"n1820938673","loc":[-85.4941501,41.9779698]},"n1820938675":{"id":"n1820938675","loc":[-85.0862559,42.0997519]},"n1820938676":{"id":"n1820938676","loc":[-85.0097874,42.0898032]},"n1820938678":{"id":"n1820938678","loc":[-84.9913553,42.0863675]},"n1820938680":{"id":"n1820938680","loc":[-85.0533666,42.1038315]},"n1820938682":{"id":"n1820938682","loc":[-85.2950294,41.9743914]},"n1820938684":{"id":"n1820938684","loc":[-85.2517385,42.0104499]},"n1820938686":{"id":"n1820938686","loc":[-85.0247971,42.0922514]},"n1820938688":{"id":"n1820938688","loc":[-85.0807037,42.1026017]},"n1820938690":{"id":"n1820938690","loc":[-85.52462,41.9722748]},"n1820938694":{"id":"n1820938694","loc":[-85.2586535,41.9988818]},"n1820938695":{"id":"n1820938695","loc":[-85.0931612,42.092948]},"n1820938697":{"id":"n1820938697","loc":[-85.2470822,42.016564]},"n1820938698":{"id":"n1820938698","loc":[-85.4143018,42.0075158]},"n1820938699":{"id":"n1820938699","loc":[-85.0771484,42.104487]},"n1820938700":{"id":"n1820938700","loc":[-85.0291208,42.0942775]},"n1820938701":{"id":"n1820938701","loc":[-85.6367964,41.9185971]},"n1820938702":{"id":"n1820938702","loc":[-85.085419,42.1010693]},"n1820938703":{"id":"n1820938703","loc":[-85.0583877,42.1040584]},"n1820938705":{"id":"n1820938705","loc":[-85.2573379,42.0003182]},"n1820938706":{"id":"n1820938706","loc":[-85.2655937,41.9981575]},"n1820938707":{"id":"n1820938707","loc":[-85.023181,42.0915758]},"n1820938708":{"id":"n1820938708","loc":[-85.2318687,42.0274674]},"n1820938709":{"id":"n1820938709","loc":[-85.1056389,42.0866184]},"n1820938710":{"id":"n1820938710","loc":[-85.5276265,41.9700978]},"n1820938711":{"id":"n1820938711","loc":[-85.0864128,42.0945761]},"n1820938712":{"id":"n1820938712","loc":[-84.9897071,42.0871888]},"n1820938714":{"id":"n1820938714","loc":[-85.1328845,42.0665611]},"n1820938715":{"id":"n1820938715","loc":[-85.0336537,42.0991377]},"n1820938716":{"id":"n1820938716","loc":[-85.087597,42.0986692]},"n1820938717":{"id":"n1820938717","loc":[-85.1241394,42.0761882]},"n1820938718":{"id":"n1820938718","loc":[-85.1176002,42.0847723]},"n1820938719":{"id":"n1820938719","loc":[-85.2423615,42.0216572]},"n1820938721":{"id":"n1820938721","loc":[-85.2196378,42.0387908]},"n1820938722":{"id":"n1820938722","loc":[-85.0164272,42.0890082]},"n1820938723":{"id":"n1820938723","loc":[-85.5917182,41.9451807]},"n1820938724":{"id":"n1820938724","loc":[-85.2458806,42.0086638]},"n1820938725":{"id":"n1820938725","loc":[-85.1264474,42.0740527]},"n1820938726":{"id":"n1820938726","loc":[-85.1961631,42.04738]},"n1820938727":{"id":"n1820938727","loc":[-85.2784643,41.9943648]},"n1820938728":{"id":"n1820938728","loc":[-85.2905554,41.9763216]},"n1820938729":{"id":"n1820938729","loc":[-85.2913386,41.9771511]},"n1820938730":{"id":"n1820938730","loc":[-85.0112519,42.0895683]},"n1820938732":{"id":"n1820938732","loc":[-85.4290261,42.0064531]},"n1820938733":{"id":"n1820938733","loc":[-85.3867073,42.0031629]},"n1820938734":{"id":"n1820938734","loc":[-85.4943647,41.9836005]},"n1820938735":{"id":"n1820938735","loc":[-85.4900303,41.9860728]},"n1820938736":{"id":"n1820938736","loc":[-85.0866153,42.0944539]},"n1820938737":{"id":"n1820938737","loc":[-85.0869532,42.0990911]},"n1820938738":{"id":"n1820938738","loc":[-85.6321659,41.9208851]},"n1820938739":{"id":"n1820938739","loc":[-85.5930485,41.9433453]},"n1820938740":{"id":"n1820938740","loc":[-85.0406851,42.102733]},"n1820938741":{"id":"n1820938741","loc":[-85.1051131,42.0869846]},"n1820938742":{"id":"n1820938742","loc":[-85.1377554,42.0648893]},"n1820938743":{"id":"n1820938743","loc":[-85.2795694,41.994604]},"n1820938745":{"id":"n1820938745","loc":[-85.4948153,41.9826594]},"n1820938746":{"id":"n1820938746","loc":[-85.4488916,42.0050923]},"n1820938747":{"id":"n1820938747","loc":[-85.1052526,42.0866144]},"n1820938748":{"id":"n1820938748","loc":[-85.1468749,42.0653991]},"n1820938749":{"id":"n1820938749","loc":[-85.0856886,42.1006104]},"n1820938750":{"id":"n1820938750","loc":[-85.2144022,42.0404004]},"n1820938751":{"id":"n1820938751","loc":[-85.277771,41.9907458]},"n1820938752":{"id":"n1820938752","loc":[-85.1474542,42.0636149]},"n1820938753":{"id":"n1820938753","loc":[-85.0820515,42.1028075]},"n1820938754":{"id":"n1820938754","loc":[-85.1122948,42.08525]},"n1820938756":{"id":"n1820938756","loc":[-85.0173352,42.0901933]},"n1820938757":{"id":"n1820938757","loc":[-85.2259721,42.0354018]},"n1820938758":{"id":"n1820938758","loc":[-85.0872389,42.0987795]},"n1820938759":{"id":"n1820938759","loc":[-85.2291436,42.031874]},"n1820938760":{"id":"n1820938760","loc":[-85.3802485,42.0016002]},"n1820938761":{"id":"n1820938761","loc":[-85.3945822,42.0057938]},"n1820938762":{"id":"n1820938762","loc":[-85.5273237,41.9713017]},"n1820938763":{"id":"n1820938763","loc":[-85.2868862,41.9798629]},"n1820938764":{"id":"n1820938764","loc":[-85.2516677,42.0107899]},"n1820938766":{"id":"n1820938766","loc":[-85.3183002,41.9693103]},"n1820938768":{"id":"n1820938768","loc":[-85.2159042,42.0401932]},"n1820938770":{"id":"n1820938770","loc":[-85.0094481,42.0911141]},"n1820938771":{"id":"n1820938771","loc":[-85.0244538,42.0922155]},"n1820938772":{"id":"n1820938772","loc":[-85.231697,42.028862]},"n1820938773":{"id":"n1820938773","loc":[-85.2102394,42.0390617]},"n1820938774":{"id":"n1820938774","loc":[-85.2463419,42.0151212]},"n1820938775":{"id":"n1820938775","loc":[-85.0726195,42.1056424]},"n1820938776":{"id":"n1820938776","loc":[-85.0060431,42.0883262]},"n1820938778":{"id":"n1820938778","loc":[-85.425889,42.0056982]},"n1820938779":{"id":"n1820938779","loc":[-85.1183042,42.0820638]},"n1820938780":{"id":"n1820938780","loc":[-85.441596,42.0058257]},"n1820938781":{"id":"n1820938781","loc":[-85.1124879,42.0847086]},"n1820938782":{"id":"n1820938782","loc":[-85.2452733,42.0153894]},"n1820938783":{"id":"n1820938783","loc":[-85.2741191,41.9969244]},"n1820938784":{"id":"n1820938784","loc":[-85.2829487,41.9822236]},"n1820938785":{"id":"n1820938785","loc":[-85.3202743,41.972142]},"n1820938786":{"id":"n1820938786","loc":[-85.2345402,42.0266465]},"n1820938787":{"id":"n1820938787","loc":[-85.3037626,41.9724611]},"n1820938789":{"id":"n1820938789","loc":[-85.2474792,42.0161973]},"n1820938790":{"id":"n1820938790","loc":[-85.2951045,41.9727323]},"n1820938791":{"id":"n1820938791","loc":[-85.322345,41.9712726]},"n1820938792":{"id":"n1820938792","loc":[-85.2402372,42.0110394]},"n1820938793":{"id":"n1820938793","loc":[-85.5135693,41.9698659]},"n1820938794":{"id":"n1820938794","loc":[-85.4695339,41.9967366]},"n1820938796":{"id":"n1820938796","loc":[-85.0418492,42.1011131]},"n1820938797":{"id":"n1820938797","loc":[-85.3334107,41.9806337]},"n1820938798":{"id":"n1820938798","loc":[-85.5625314,41.9711685]},"n1820938799":{"id":"n1820938799","loc":[-85.3755707,41.9973585]},"n1820938800":{"id":"n1820938800","loc":[-85.5227532,41.9722429]},"n1820938801":{"id":"n1820938801","loc":[-85.4267687,42.0052836]},"n1820938803":{"id":"n1820938803","loc":[-85.0284704,42.0940837]},"n1820938804":{"id":"n1820938804","loc":[-85.015585,42.0885305]},"n1820938805":{"id":"n1820938805","loc":[-85.0765905,42.1053865]},"n1820938806":{"id":"n1820938806","loc":[-85.2614953,41.9964551]},"n1820938808":{"id":"n1820938808","loc":[-85.0307355,42.0947313]},"n1820938810":{"id":"n1820938810","loc":[-85.3894753,42.0003565]},"n1820938812":{"id":"n1820938812","loc":[-85.0868848,42.095006]},"n1820938813":{"id":"n1820938813","loc":[-85.3854198,42.0009465]},"n1820938814":{"id":"n1820938814","loc":[-85.2659692,41.9993534]},"n1820938815":{"id":"n1820938815","loc":[-85.1234259,42.0765266]},"n1820938816":{"id":"n1820938816","loc":[-85.1426906,42.0648893]},"n1820938818":{"id":"n1820938818","loc":[-85.1014533,42.0893067]},"n1820938819":{"id":"n1820938819","loc":[-85.0883064,42.098067]},"n1820938820":{"id":"n1820938820","loc":[-85.0503156,42.102704]},"n1820938821":{"id":"n1820938821","loc":[-85.1179649,42.0821884]},"n1820938822":{"id":"n1820938822","loc":[-85.3484697,41.9921596]},"n1820938823":{"id":"n1820938823","loc":[-85.3732962,41.9970874]},"n1820938824":{"id":"n1820938824","loc":[-85.2784104,41.9898312]},"n1820938825":{"id":"n1820938825","loc":[-85.4441709,42.0052198]},"n1820938826":{"id":"n1820938826","loc":[-85.3925438,42.0038326]},"n1820938829":{"id":"n1820938829","loc":[-85.5717582,41.9621861]},"n1820938830":{"id":"n1820938830","loc":[-85.0866314,42.0995051]},"n1820938831":{"id":"n1820938831","loc":[-85.576672,41.9522769]},"n1820938832":{"id":"n1820938832","loc":[-85.1587238,42.0636205]},"n1820938833":{"id":"n1820938833","loc":[-85.3804245,41.9999155]},"n1820938834":{"id":"n1820938834","loc":[-85.280083,41.9948843]},"n1820938836":{"id":"n1820938836","loc":[-85.561892,41.9686693]},"n1820938837":{"id":"n1820938837","loc":[-85.0158975,42.0885253]},"n1820938838":{"id":"n1820938838","loc":[-85.4248204,42.007633]},"n1820938839":{"id":"n1820938839","loc":[-85.0352738,42.1039657]},"n1820938840":{"id":"n1820938840","loc":[-85.211956,42.0411812]},"n1820938841":{"id":"n1820938841","loc":[-85.4816575,41.9908997]},"n1820938842":{"id":"n1820938842","loc":[-85.3807635,42.0020308]},"n1820938843":{"id":"n1820938843","loc":[-85.0100865,42.0898521]},"n1820938844":{"id":"n1820938844","loc":[-85.0103936,42.0897434]},"n1820938848":{"id":"n1820938848","loc":[-85.2430052,42.0131363]},"n1820938849":{"id":"n1820938849","loc":[-85.112559,42.0853723]},"n1820938851":{"id":"n1820938851","loc":[-85.3641553,41.9952535]},"n1820938852":{"id":"n1820938852","loc":[-85.2087373,42.0390777]},"n1820938853":{"id":"n1820938853","loc":[-85.2473933,42.0148263]},"n1820938854":{"id":"n1820938854","loc":[-85.0213464,42.090509]},"n1820938855":{"id":"n1820938855","loc":[-85.0673208,42.1052353]},"n1820938856":{"id":"n1820938856","loc":[-85.1003053,42.0905528]},"n1820938857":{"id":"n1820938857","loc":[-85.2617367,41.9965389]},"n1820938858":{"id":"n1820938858","loc":[-85.280363,41.9916015]},"n1820938859":{"id":"n1820938859","loc":[-85.0038866,42.0873469]},"n1820938860":{"id":"n1820938860","loc":[-85.2476401,42.0151451]},"n1820938861":{"id":"n1820938861","loc":[-85.193717,42.0499294]},"n1820938862":{"id":"n1820938862","loc":[-85.3478689,41.9917609]},"n1820938863":{"id":"n1820938863","loc":[-85.5638017,41.9648881]},"n1820938864":{"id":"n1820938864","loc":[-85.4356308,42.0064476]},"n1820938865":{"id":"n1820938865","loc":[-85.0561722,42.1023509]},"n1820938867":{"id":"n1820938867","loc":[-85.2256031,42.0356034]},"n1820938868":{"id":"n1820938868","loc":[-85.6102576,41.9420844]},"n1820938869":{"id":"n1820938869","loc":[-85.2285213,42.0339938]},"n1820938870":{"id":"n1820938870","loc":[-85.0326238,42.0978003]},"n1820938871":{"id":"n1820938871","loc":[-85.0131389,42.0903736]},"n1820938872":{"id":"n1820938872","loc":[-85.2550859,42.0012259]},"n1820938873":{"id":"n1820938873","loc":[-85.1130029,42.0846966]},"n1820938874":{"id":"n1820938874","loc":[-85.1579041,42.06336]},"n1820938875":{"id":"n1820938875","loc":[-85.0430522,42.1020234]},"n1820938876":{"id":"n1820938876","loc":[-85.2786679,41.9865935]},"n1820938877":{"id":"n1820938877","loc":[-85.1221666,42.0788706]},"n1820938878":{"id":"n1820938878","loc":[-85.2554614,42.0103303]},"n1820938879":{"id":"n1820938879","loc":[-85.2349801,42.0265748]},"n1820938880":{"id":"n1820938880","loc":[-85.0997434,42.0907864]},"n1820938881":{"id":"n1820938881","loc":[-85.0045464,42.0878167]},"n1820938882":{"id":"n1820938882","loc":[-85.2728048,41.9982519]},"n1820938883":{"id":"n1820938883","loc":[-85.3111333,41.9691587]},"n1820938884":{"id":"n1820938884","loc":[-85.3219802,41.9721899]},"n1820938885":{"id":"n1820938885","loc":[-85.3091378,41.9699325]},"n1820938887":{"id":"n1820938887","loc":[-85.4242367,42.0085203]},"n1820938888":{"id":"n1820938888","loc":[-84.9968377,42.0874504]},"n1820938890":{"id":"n1820938890","loc":[-85.5443139,41.9714078]},"n1820938891":{"id":"n1820938891","loc":[-85.6404013,41.9154676]},"n1820938892":{"id":"n1820938892","loc":[-85.3644986,41.9962582]},"n1820938893":{"id":"n1820938893","loc":[-85.0496772,42.1018323]},"n1820938894":{"id":"n1820938894","loc":[-85.297261,41.9737373]},"n1820938895":{"id":"n1820938895","loc":[-85.0327096,42.098071]},"n1820938896":{"id":"n1820938896","loc":[-85.3856773,41.9996867]},"n1820938897":{"id":"n1820938897","loc":[-85.0493862,42.1015509]},"n1820938898":{"id":"n1820938898","loc":[-84.9969879,42.0876614]},"n1820938899":{"id":"n1820938899","loc":[-85.0848625,42.1013587]},"n1820938900":{"id":"n1820938900","loc":[-85.5853195,41.9479201]},"n1820938901":{"id":"n1820938901","loc":[-85.6329169,41.9387964]},"n1820938902":{"id":"n1820938902","loc":[-85.0843046,42.1029468]},"n1820938903":{"id":"n1820938903","loc":[-85.1228747,42.0778474]},"n1820938904":{"id":"n1820938904","loc":[-85.4855456,41.984095]},"n1820938905":{"id":"n1820938905","loc":[-85.0573269,42.1026801]},"n1820938906":{"id":"n1820938906","loc":[-85.2425868,42.0131523]},"n1820938907":{"id":"n1820938907","loc":[-85.1149622,42.0860053]},"n1820938908":{"id":"n1820938908","loc":[-85.4833097,41.9951578]},"n1820938909":{"id":"n1820938909","loc":[-85.075979,42.1056372]},"n1820938910":{"id":"n1820938910","loc":[-85.0338509,42.0977139]},"n1820938911":{"id":"n1820938911","loc":[-85.6384272,41.9115715]},"n1820938912":{"id":"n1820938912","loc":[-85.0458363,42.1004074]},"n1820938913":{"id":"n1820938913","loc":[-85.0592138,42.1048305]},"n1820938914":{"id":"n1820938914","loc":[-85.2807493,41.9916653]},"n1820938915":{"id":"n1820938915","loc":[-85.1103274,42.0864193]},"n1820938916":{"id":"n1820938916","loc":[-85.6267156,41.9404404]},"n1820938918":{"id":"n1820938918","loc":[-85.0331374,42.0982911]},"n1820938919":{"id":"n1820938919","loc":[-85.5637331,41.965409]},"n1820938920":{"id":"n1820938920","loc":[-85.5457515,41.9714237]},"n1820938922":{"id":"n1820938922","loc":[-85.082073,42.1030104]},"n1820938923":{"id":"n1820938923","loc":[-85.0780765,42.103102]},"n1820938924":{"id":"n1820938924","loc":[-85.4208035,42.0089508]},"n1820938925":{"id":"n1820938925","loc":[-85.3469934,41.9914795]},"n1820938926":{"id":"n1820938926","loc":[-85.0322,42.095619]},"n1820938927":{"id":"n1820938927","loc":[-85.4784431,41.9949401]},"n1820938928":{"id":"n1820938928","loc":[-85.1303095,42.0667523]},"n1820938929":{"id":"n1820938929","loc":[-85.2463784,42.0084781]},"n1820938930":{"id":"n1820938930","loc":[-85.6299986,41.9427707]},"n1820938931":{"id":"n1820938931","loc":[-85.6325907,41.9238499]},"n1820938932":{"id":"n1820938932","loc":[-85.4808464,41.9914476]},"n1820938934":{"id":"n1820938934","loc":[-85.2411599,42.0105292]},"n1820938935":{"id":"n1820938935","loc":[-85.0163213,42.0892379]},"n1820938936":{"id":"n1820938936","loc":[-85.3290934,41.9682322]},"n1820938937":{"id":"n1820938937","loc":[-85.4925623,41.9853231]},"n1820938938":{"id":"n1820938938","loc":[-85.0338294,42.09892]},"n1820938940":{"id":"n1820938940","loc":[-85.4174561,42.008903]},"n1820938941":{"id":"n1820938941","loc":[-85.1165595,42.0838845]},"n1820938942":{"id":"n1820938942","loc":[-85.2954585,41.9717192]},"n1820938943":{"id":"n1820938943","loc":[-85.6330199,41.9257338]},"n1820938944":{"id":"n1820938944","loc":[-85.2294654,42.0324478]},"n1820938945":{"id":"n1820938945","loc":[-85.5601282,41.9728914]},"n1820938946":{"id":"n1820938946","loc":[-85.1176324,42.08568]},"n1820938947":{"id":"n1820938947","loc":[-85.0210245,42.0906005]},"n1820938948":{"id":"n1820938948","loc":[-85.0251887,42.09253]},"n1820938949":{"id":"n1820938949","loc":[-85.0895832,42.0939551]},"n1820938950":{"id":"n1820938950","loc":[-84.9915109,42.085842]},"n1820938951":{"id":"n1820938951","loc":[-85.2187366,42.0393486]},"n1820938952":{"id":"n1820938952","loc":[-85.006605,42.087579]},"n1820938953":{"id":"n1820938953","loc":[-85.046641,42.1012393]},"n1820938954":{"id":"n1820938954","loc":[-85.052102,42.103695]},"n1820938955":{"id":"n1820938955","loc":[-85.283925,41.9912825]},"n1820938956":{"id":"n1820938956","loc":[-85.2326626,42.0316349]},"n1820938957":{"id":"n1820938957","loc":[-85.1174298,42.0859694]},"n1820938958":{"id":"n1820938958","loc":[-85.3802056,41.9994794]},"n1820938959":{"id":"n1820938959","loc":[-85.4586334,41.9999737]},"n1820938960":{"id":"n1820938960","loc":[-85.4302234,42.0069418]},"n1820938961":{"id":"n1820938961","loc":[-85.092201,42.0930674]},"n1820938962":{"id":"n1820938962","loc":[-85.3684511,41.9979382]},"n1820938963":{"id":"n1820938963","loc":[-85.4618735,42.0011856]},"n1820938964":{"id":"n1820938964","loc":[-85.4828205,41.9877793]},"n1820938965":{"id":"n1820938965","loc":[-85.0837789,42.1025726]},"n1820938966":{"id":"n1820938966","loc":[-85.0176195,42.090253]},"n1820938967":{"id":"n1820938967","loc":[-85.3801627,42.001074]},"n1820938968":{"id":"n1820938968","loc":[-85.4767007,41.994488]},"n1820938969":{"id":"n1820938969","loc":[-85.274268,41.9957495]},"n1820938970":{"id":"n1820938970","loc":[-85.2977438,41.9719506]},"n1820938971":{"id":"n1820938971","loc":[-85.2425546,42.0208682]},"n1820938972":{"id":"n1820938972","loc":[-85.2557082,42.002382]},"n1820938973":{"id":"n1820938973","loc":[-85.3187937,41.9691986]},"n1820938975":{"id":"n1820938975","loc":[-85.2448077,42.0153045]},"n1820938977":{"id":"n1820938977","loc":[-85.0343015,42.0997718]},"n1820938978":{"id":"n1820938978","loc":[-85.2449364,42.01874]},"n1820938979":{"id":"n1820938979","loc":[-85.2598391,41.9969602]},"n1820938980":{"id":"n1820938980","loc":[-85.4294724,42.0067665]},"n1820938981":{"id":"n1820938981","loc":[-85.428082,42.0055124]},"n1820938983":{"id":"n1820938983","loc":[-85.5436315,41.9717484]},"n1820938985":{"id":"n1820938985","loc":[-85.5978336,41.9407437]},"n1820938986":{"id":"n1820938986","loc":[-85.491661,41.9860249]},"n1820938987":{"id":"n1820938987","loc":[-85.4942789,41.9801392]},"n1820938988":{"id":"n1820938988","loc":[-85.0416306,42.1010841]},"n1820938989":{"id":"n1820938989","loc":[-85.2653644,41.9984433]},"n1820938990":{"id":"n1820938990","loc":[-85.1028266,42.0881124]},"n1820938991":{"id":"n1820938991","loc":[-85.0163146,42.0887932]},"n1820938992":{"id":"n1820938992","loc":[-85.5282209,41.9678112]},"n1820938993":{"id":"n1820938993","loc":[-85.5442752,41.9715888]},"n1820938994":{"id":"n1820938994","loc":[-85.5634327,41.9658558]},"n1820938995":{"id":"n1820938995","loc":[-85.0384227,42.1037627]},"n1820938996":{"id":"n1820938996","loc":[-85.1144258,42.0854439]},"n1820938997":{"id":"n1820938997","loc":[-85.1870651,42.0506305]},"n1820938998":{"id":"n1820938998","loc":[-85.1256159,42.0747376]},"n1820938999":{"id":"n1820938999","loc":[-85.3272695,41.9715836]},"n1820939000":{"id":"n1820939000","loc":[-85.0543067,42.103098]},"n1820939001":{"id":"n1820939001","loc":[-85.4678173,41.9973585]},"n1820939003":{"id":"n1820939003","loc":[-85.0266626,42.0933154]},"n1820939004":{"id":"n1820939004","loc":[-85.0353046,42.1019728]},"n1820939005":{"id":"n1820939005","loc":[-85.1237961,42.0762798]},"n1820939006":{"id":"n1820939006","loc":[-85.2812214,41.9826702]},"n1820939007":{"id":"n1820939007","loc":[-85.2927763,41.9747343]},"n1820939008":{"id":"n1820939008","loc":[-85.3270979,41.9720862]},"n1820939009":{"id":"n1820939009","loc":[-85.488657,41.9856581]},"n1820939010":{"id":"n1820939010","loc":[-85.3087301,41.9701399]},"n1820939011":{"id":"n1820939011","loc":[-85.0276939,42.093768]},"n1820939012":{"id":"n1820939012","loc":[-85.2956516,41.9748779]},"n1820939013":{"id":"n1820939013","loc":[-85.1298579,42.0726443]},"n1820939014":{"id":"n1820939014","loc":[-85.105144,42.0870893]},"n1820939015":{"id":"n1820939015","loc":[-85.0677486,42.1053917]},"n1820939016":{"id":"n1820939016","loc":[-85.0333681,42.0993459]},"n1820939017":{"id":"n1820939017","loc":[-85.6384272,41.910805]},"n1820939018":{"id":"n1820939018","loc":[-85.399496,42.006894]},"n1820939019":{"id":"n1820939019","loc":[-85.2648427,41.9998318]},"n1820939020":{"id":"n1820939020","loc":[-85.1237424,42.0766779]},"n1820939021":{"id":"n1820939021","loc":[-85.2515025,42.0109442]},"n1820939022":{"id":"n1820939022","loc":[-85.5566306,41.9718385]},"n1820939023":{"id":"n1820939023","loc":[-85.090644,42.0938369]},"n1820939024":{"id":"n1820939024","loc":[-85.1245525,42.074914]},"n1820939025":{"id":"n1820939025","loc":[-85.1099934,42.0863926]},"n1820939026":{"id":"n1820939026","loc":[-85.1251653,42.0744589]},"n1820939027":{"id":"n1820939027","loc":[-85.401792,42.0068143]},"n1820939028":{"id":"n1820939028","loc":[-85.0094763,42.0899584]},"n1820939029":{"id":"n1820939029","loc":[-85.1330779,42.0705605]},"n1820939030":{"id":"n1820939030","loc":[-85.4935064,41.984398]},"n1820939031":{"id":"n1820939031","loc":[-85.5713334,41.9613939]},"n1820939032":{"id":"n1820939032","loc":[-85.0873945,42.0964669]},"n1820939033":{"id":"n1820939033","loc":[-85.0886497,42.0986481]},"n1820939034":{"id":"n1820939034","loc":[-85.3276343,41.9758897]},"n1820939035":{"id":"n1820939035","loc":[-85.1304386,42.0727387]},"n1820939036":{"id":"n1820939036","loc":[-85.2551932,42.0052999]},"n1820939037":{"id":"n1820939037","loc":[-85.2206936,42.0384458]},"n1820939038":{"id":"n1820939038","loc":[-85.2313645,42.0286389]},"n1820939039":{"id":"n1820939039","loc":[-85.0754586,42.1059835]},"n1820939040":{"id":"n1820939040","loc":[-85.0663324,42.1050812]},"n1820939041":{"id":"n1820939041","loc":[-85.2406234,42.0106887]},"n1820939042":{"id":"n1820939042","loc":[-85.0685962,42.1058175]},"n1820939043":{"id":"n1820939043","loc":[-85.0689462,42.1059437]},"n1820939044":{"id":"n1820939044","loc":[-85.0586144,42.1046144]},"n1820939045":{"id":"n1820939045","loc":[-85.3650565,41.9965452]},"n1820939047":{"id":"n1820939047","loc":[-85.5752558,41.9536014]},"n1820939048":{"id":"n1820939048","loc":[-85.5110159,41.9710624]},"n1820939050":{"id":"n1820939050","loc":[-85.2832641,41.9926477]},"n1820939051":{"id":"n1820939051","loc":[-85.0078402,42.0898947]},"n1820939052":{"id":"n1820939052","loc":[-85.3882737,42.0017916]},"n1820939053":{"id":"n1820939053","loc":[-85.1718945,42.0564937]},"n1820939054":{"id":"n1820939054","loc":[-85.0947048,42.0929293]},"n1820939055":{"id":"n1820939055","loc":[-85.4456944,42.0051082]},"n1820939056":{"id":"n1820939056","loc":[-85.3139872,41.9706903]},"n1820939057":{"id":"n1820939057","loc":[-85.3893895,42.0034021]},"n1820939058":{"id":"n1820939058","loc":[-85.2425332,42.0106089]},"n1820939059":{"id":"n1820939059","loc":[-85.6085624,41.9420844]},"n1820939060":{"id":"n1820939060","loc":[-85.210411,42.0397789]},"n1820939061":{"id":"n1820939061","loc":[-85.2762542,41.9960473]},"n1820939062":{"id":"n1820939062","loc":[-85.4686584,41.9969973]},"n1820939063":{"id":"n1820939063","loc":[-85.3860421,42.0018394]},"n1820939064":{"id":"n1820939064","loc":[-85.5636944,41.9644414]},"n1820939065":{"id":"n1820939065","loc":[-85.3267331,41.9766554]},"n1820939066":{"id":"n1820939066","loc":[-85.0868996,42.0943822]},"n1820939067":{"id":"n1820939067","loc":[-85.104861,42.0880038]},"n1820939068":{"id":"n1820939068","loc":[-85.5537123,41.9695093]},"n1820939069":{"id":"n1820939069","loc":[-85.6325092,41.9396743]},"n1820939070":{"id":"n1820939070","loc":[-85.3869648,42.0024454]},"n1820939071":{"id":"n1820939071","loc":[-85.2775349,41.9957335]},"n1820939072":{"id":"n1820939072","loc":[-85.2055616,42.0421533]},"n1820939073":{"id":"n1820939073","loc":[-85.4731431,41.9946531]},"n1820939074":{"id":"n1820939074","loc":[-85.0399609,42.1030833]},"n1820939075":{"id":"n1820939075","loc":[-85.3055758,41.9725169]},"n1820939076":{"id":"n1820939076","loc":[-85.4834599,41.994488]},"n1820939077":{"id":"n1820939077","loc":[-85.3819866,42.0023018]},"n1820939078":{"id":"n1820939078","loc":[-85.1218756,42.0789992]},"n1820939079":{"id":"n1820939079","loc":[-85.2793159,41.9944458]},"n1820939080":{"id":"n1820939080","loc":[-85.2495498,42.0101466]},"n1820939081":{"id":"n1820939081","loc":[-85.0035969,42.0872434]},"n1820939082":{"id":"n1820939082","loc":[-85.1054243,42.0865626]},"n1820939083":{"id":"n1820939083","loc":[-85.0917665,42.0934774]},"n1820939084":{"id":"n1820939084","loc":[-85.3442211,41.988938]},"n1820939086":{"id":"n1820939086","loc":[-85.273989,41.9953588]},"n1820939087":{"id":"n1820939087","loc":[-85.1142541,42.0852488]},"n1820939089":{"id":"n1820939089","loc":[-85.1526684,42.0615758]},"n1820939090":{"id":"n1820939090","loc":[-85.2538843,42.0110159]},"n1820939091":{"id":"n1820939091","loc":[-85.28341,41.9909635]},"n1820939092":{"id":"n1820939092","loc":[-85.3963178,42.0050217]},"n1820939093":{"id":"n1820939093","loc":[-85.0851682,42.1012472]},"n1820939095":{"id":"n1820939095","loc":[-85.2811784,41.986243]},"n1820939096":{"id":"n1820939096","loc":[-85.4274125,42.0052995]},"n1820939097":{"id":"n1820939097","loc":[-85.0871262,42.0951652]},"n1820939099":{"id":"n1820939099","loc":[-85.1314253,42.0671665]},"n1820939100":{"id":"n1820939100","loc":[-85.2778997,41.991001]},"n1820939101":{"id":"n1820939101","loc":[-85.112107,42.0862812]},"n1820939102":{"id":"n1820939102","loc":[-85.299911,41.9729955]},"n1820939103":{"id":"n1820939103","loc":[-85.639822,41.9094796]},"n1820939104":{"id":"n1820939104","loc":[-85.122294,42.0785334]},"n1820939105":{"id":"n1820939105","loc":[-85.2476294,42.015719]},"n1820939106":{"id":"n1820939106","loc":[-85.4946007,41.9814631]},"n1820939107":{"id":"n1820939107","loc":[-85.0879524,42.0986919]},"n1820939108":{"id":"n1820939108","loc":[-85.0342814,42.098274]},"n1820939109":{"id":"n1820939109","loc":[-85.2450695,42.0095463]},"n1820939110":{"id":"n1820939110","loc":[-85.3847546,42.0024135]},"n1820939111":{"id":"n1820939111","loc":[-85.2961344,41.9742558]},"n1820939112":{"id":"n1820939112","loc":[-85.27899,41.994317]},"n1820939114":{"id":"n1820939114","loc":[-85.1017644,42.0886618]},"n1820939115":{"id":"n1820939115","loc":[-85.076215,42.1056333]},"n1820939116":{"id":"n1820939116","loc":[-85.1198009,42.0805349]},"n1820939117":{"id":"n1820939117","loc":[-85.11988,42.0798513]},"n1820939118":{"id":"n1820939118","loc":[-85.147819,42.0625476]},"n1820939119":{"id":"n1820939119","loc":[-85.0585969,42.1029042]},"n1820939120":{"id":"n1820939120","loc":[-85.1248596,42.0745744]},"n1820939121":{"id":"n1820939121","loc":[-85.3023786,41.9725249]},"n1820939123":{"id":"n1820939123","loc":[-85.0119332,42.0900699]},"n1820939124":{"id":"n1820939124","loc":[-85.2466852,42.0170343]},"n1820939125":{"id":"n1820939125","loc":[-85.0033019,42.0872792]},"n1820939126":{"id":"n1820939126","loc":[-85.0042084,42.0875778]},"n1820939128":{"id":"n1820939128","loc":[-85.0052961,42.0885424]},"n1820939130":{"id":"n1820939130","loc":[-85.0647942,42.10508]},"n1820939131":{"id":"n1820939131","loc":[-85.2824123,41.9825107]},"n1820939132":{"id":"n1820939132","loc":[-85.3210039,41.9723255]},"n1820939133":{"id":"n1820939133","loc":[-85.0491033,42.1014184]},"n1820939134":{"id":"n1820939134","loc":[-85.1127776,42.0855168]},"n1820939135":{"id":"n1820939135","loc":[-85.1243768,42.0759322]},"n1820939137":{"id":"n1820939137","loc":[-85.125974,42.0747547]},"n1820939138":{"id":"n1820939138","loc":[-85.1071248,42.0859973]},"n1820939139":{"id":"n1820939139","loc":[-85.5326175,41.9674833]},"n1820939140":{"id":"n1820939140","loc":[-85.1338715,42.0660833]},"n1820939142":{"id":"n1820939142","loc":[-85.649671,41.9135675]},"n1820939144":{"id":"n1820939144","loc":[-85.0236545,42.0920444]},"n1820939145":{"id":"n1820939145","loc":[-85.1084391,42.0859376]},"n1820939146":{"id":"n1820939146","loc":[-85.1539988,42.0618626]},"n1820939147":{"id":"n1820939147","loc":[-85.2354521,42.026511]},"n1820939148":{"id":"n1820939148","loc":[-85.2362246,42.0260408]},"n1820939149":{"id":"n1820939149","loc":[-85.2401342,42.0115233]},"n1820939150":{"id":"n1820939150","loc":[-85.295319,41.9747423]},"n1820939151":{"id":"n1820939151","loc":[-85.1164696,42.0835409]},"n1820939152":{"id":"n1820939152","loc":[-85.3232891,41.9712885]},"n1820939153":{"id":"n1820939153","loc":[-85.2574463,42.0068944]},"n1820939155":{"id":"n1820939155","loc":[-85.5704064,41.9598246]},"n1820939156":{"id":"n1820939156","loc":[-85.0349077,42.0998116]},"n1820939157":{"id":"n1820939157","loc":[-85.0949529,42.0925619]},"n1820939159":{"id":"n1820939159","loc":[-85.0179829,42.0902343]},"n1820939160":{"id":"n1820939160","loc":[-85.0405832,42.1016942]},"n1820939161":{"id":"n1820939161","loc":[-85.2534015,42.0111833]},"n1820939162":{"id":"n1820939162","loc":[-85.0839881,42.102708]},"n1820939163":{"id":"n1820939163","loc":[-85.0341996,42.1008385]},"n1820939164":{"id":"n1820939164","loc":[-85.1037761,42.0879731]},"n1820939173":{"id":"n1820939173","loc":[-85.0460616,42.1005786]},"n1820939177":{"id":"n1820939177","loc":[-85.0061651,42.0878059]},"n1820939181":{"id":"n1820939181","loc":[-85.1456775,42.0654684]},"n1820939183":{"id":"n1820939183","loc":[-85.1325508,42.0718439]},"n1820939185":{"id":"n1820939185","loc":[-85.2485842,42.008329]},"n1820939187":{"id":"n1820939187","loc":[-85.2744128,41.9949322]},"n1820939189":{"id":"n1820939189","loc":[-85.2579025,41.9999542]},"n1820939191":{"id":"n1820939191","loc":[-85.3358998,41.9828987]},"n1820939193":{"id":"n1820939193","loc":[-85.3192658,41.9716714]},"n1820939194":{"id":"n1820939194","loc":[-85.6400795,41.9130725]},"n1820939195":{"id":"n1820939195","loc":[-85.3278489,41.9780591]},"n1820939196":{"id":"n1820939196","loc":[-85.2800197,41.983061]},"n1820939197":{"id":"n1820939197","loc":[-85.3278167,41.9692943]},"n1820939198":{"id":"n1820939198","loc":[-85.3366894,41.9838653]},"n1820939199":{"id":"n1820939199","loc":[-85.0328383,42.0969923]},"n1820939201":{"id":"n1820939201","loc":[-85.3259284,41.9720383]},"n1820939217":{"id":"n1820939217","loc":[-85.1840181,42.0503277]},"n1820939220":{"id":"n1820939220","loc":[-85.422563,42.0089986]},"n1820939222":{"id":"n1820939222","loc":[-85.555386,41.9707856]},"n1820939224":{"id":"n1820939224","loc":[-85.3830809,42.002254]},"n1820939226":{"id":"n1820939226","loc":[-84.9917938,42.0857517]},"n1820939227":{"id":"n1820939227","loc":[-85.2936775,41.9740484]},"n1820939228":{"id":"n1820939228","loc":[-85.2632133,41.9975024]},"n1820939229":{"id":"n1820939229","loc":[-85.2809424,41.9853259]},"n1820939230":{"id":"n1820939230","loc":[-85.242104,42.0131204]},"n1820939232":{"id":"n1820939232","loc":[-85.2610246,41.9963901]},"n1820939233":{"id":"n1820939233","loc":[-85.2335531,42.0268378]},"n1820939234":{"id":"n1820939234","loc":[-85.3188839,41.9713575]},"n1820939235":{"id":"n1820939235","loc":[-85.2413637,42.0225658]},"n1820939237":{"id":"n1820939237","loc":[-85.0010796,42.0887215]},"n1820939239":{"id":"n1820939239","loc":[-85.2241697,42.0362624]},"n1820939243":{"id":"n1820939243","loc":[-85.0368456,42.1040134]},"n1820939244":{"id":"n1820939244","loc":[-85.1327986,42.069524]},"n1820939260":{"id":"n1820939260","loc":[-85.5408163,41.9711206]},"n1820939261":{"id":"n1820939261","loc":[-85.2959199,41.9746546]},"n1820939262":{"id":"n1820939262","loc":[-85.3298659,41.9683598]},"n1820939263":{"id":"n1820939263","loc":[-85.2240581,42.0358425]},"n1820939264":{"id":"n1820939264","loc":[-85.2438206,42.0101944]},"n1820939265":{"id":"n1820939265","loc":[-85.3984489,42.0059589]},"n1820939266":{"id":"n1820939266","loc":[-85.2330811,42.0294279]},"n1820939268":{"id":"n1820939268","loc":[-85.1126877,42.0857704]},"n1820939271":{"id":"n1820939271","loc":[-85.254925,42.0106253]},"n1820939273":{"id":"n1820939273","loc":[-85.4328046,42.0064662]},"n1820939277":{"id":"n1820939277","loc":[-85.289622,41.9789616]},"n1820939279":{"id":"n1820939279","loc":[-85.4574532,42.0004043]},"n1820939281":{"id":"n1820939281","loc":[-85.4803486,41.9867211]},"n1820939283":{"id":"n1820939283","loc":[-85.157475,42.0631848]},"n1820939285":{"id":"n1820939285","loc":[-85.2571458,42.0059935]},"n1820939287":{"id":"n1820939287","loc":[-85.2818544,41.9825984]},"n1820939289":{"id":"n1820939289","loc":[-85.2298302,42.0328781]},"n1820939291":{"id":"n1820939291","loc":[-85.4819523,41.984821]},"n1820939301":{"id":"n1820939301","loc":[-85.3139765,41.9701159]},"n1820939304":{"id":"n1820939304","loc":[-85.0424447,42.101742]},"n1820939306":{"id":"n1820939306","loc":[-85.6360283,41.9338482]},"n1820939310":{"id":"n1820939310","loc":[-85.3463025,41.9913622]},"n1820939312":{"id":"n1820939312","loc":[-85.4664869,41.9988097]},"n1820939314":{"id":"n1820939314","loc":[-85.149364,42.0622449]},"n1820939316":{"id":"n1820939316","loc":[-85.2460415,42.0153125]},"n1820939318":{"id":"n1820939318","loc":[-85.4806103,41.9924523]},"n1820939320":{"id":"n1820939320","loc":[-85.2449042,42.0190987]},"n1820939322":{"id":"n1820939322","loc":[-85.5280165,41.9689263]},"n1820939324":{"id":"n1820939324","loc":[-85.0051204,42.0882625]},"n1820939326":{"id":"n1820939326","loc":[-85.1240925,42.0771546]},"n1820939329":{"id":"n1820939329","loc":[-85.2261653,42.0342225]},"n1820939331":{"id":"n1820939331","loc":[-85.5259933,41.972211]},"n1820939333":{"id":"n1820939333","loc":[-85.0074754,42.0883183]},"n1820939335":{"id":"n1820939335","loc":[-85.0764014,42.1055549]},"n1820939336":{"id":"n1820939336","loc":[-85.2908773,41.9769597]},"n1820939337":{"id":"n1820939337","loc":[-85.4095382,42.0083449]},"n1820939346":{"id":"n1820939346","loc":[-85.2514166,42.0111753]},"n1820939348":{"id":"n1820939348","loc":[-85.0030377,42.0873799]},"n1820939350":{"id":"n1820939350","loc":[-85.3659362,41.9964974]},"n1820939352":{"id":"n1820939352","loc":[-85.226058,42.0348281]},"n1820939355":{"id":"n1820939355","loc":[-85.1902408,42.0507101]},"n1820939357":{"id":"n1820939357","loc":[-85.2781854,41.9946001]},"n1820939359":{"id":"n1820939359","loc":[-85.2139988,42.0405175]},"n1820939361":{"id":"n1820939361","loc":[-85.0086609,42.0908262]},"n1820939363":{"id":"n1820939363","loc":[-85.0627128,42.1043398]},"n1820939365":{"id":"n1820939365","loc":[-85.1311346,42.072501]},"n1820939369":{"id":"n1820939369","loc":[-85.248198,42.0082652]},"n1820939370":{"id":"n1820939370","loc":[-84.99792,42.087794]},"n1820939371":{"id":"n1820939371","loc":[-85.2786775,41.9942783]},"n1820939372":{"id":"n1820939372","loc":[-85.0342103,42.1013957]},"n1820939373":{"id":"n1820939373","loc":[-85.2022357,42.0444799]},"n1820939374":{"id":"n1820939374","loc":[-85.2279205,42.0337388]},"n1820939375":{"id":"n1820939375","loc":[-85.1337699,42.0712614]},"n1820939376":{"id":"n1820939376","loc":[-85.317517,41.9707062]},"n1820939377":{"id":"n1820939377","loc":[-85.1326326,42.070218]},"n1820939394":{"id":"n1820939394","loc":[-85.0197746,42.0899118]},"n1820939397":{"id":"n1820939397","loc":[-85.2590076,41.9984632]},"n1820939399":{"id":"n1820939399","loc":[-85.2469964,42.0083449]},"n1820939400":{"id":"n1820939400","loc":[-85.2470929,42.0146668]},"n1820939401":{"id":"n1820939401","loc":[-84.9984095,42.0878087]},"n1820939402":{"id":"n1820939402","loc":[-85.2372653,42.0243273]},"n1820939403":{"id":"n1820939403","loc":[-85.2454986,42.0091955]},"n1820939404":{"id":"n1820939404","loc":[-85.0539205,42.1035995]},"n1820939405":{"id":"n1820939405","loc":[-85.550601,41.9706101]},"n1820939406":{"id":"n1820939406","loc":[-85.0351343,42.0999656]},"n1820939407":{"id":"n1820939407","loc":[-85.0082908,42.0905755]},"n1820939408":{"id":"n1820939408","loc":[-85.0132904,42.0902251]},"n1820939410":{"id":"n1820939410","loc":[-85.0892546,42.094012]},"n1820939412":{"id":"n1820939412","loc":[-85.0350793,42.1030315]},"n1820939416":{"id":"n1820939416","loc":[-85.0012406,42.0886777]},"n1820939418":{"id":"n1820939418","loc":[-85.0577453,42.1029229]},"n1820939420":{"id":"n1820939420","loc":[-85.1230786,42.0776722]},"n1820939422":{"id":"n1820939422","loc":[-85.571136,41.9649304]},"n1820939436":{"id":"n1820939436","loc":[-85.1137968,42.0848997]},"n1820939437":{"id":"n1820939437","loc":[-85.3559584,41.9925105]},"n1820939438":{"id":"n1820939438","loc":[-85.0080172,42.0903565]},"n1820939439":{"id":"n1820939439","loc":[-85.0048897,42.0880913]},"n1820939441":{"id":"n1820939441","loc":[-85.0406959,42.1018574]},"n1820939443":{"id":"n1820939443","loc":[-85.3897328,42.0029078]},"n1820939445":{"id":"n1820939445","loc":[-85.122349,42.0782814]},"n1820939448":{"id":"n1820939448","loc":[-85.4872193,41.985036]},"n1820939450":{"id":"n1820939450","loc":[-85.0120459,42.0904919]},"n1820939452":{"id":"n1820939452","loc":[-85.6320543,41.921982]},"n1820939456":{"id":"n1820939456","loc":[-85.0844749,42.1036843]},"n1820939458":{"id":"n1820939458","loc":[-85.0968037,42.091296]},"n1820939463":{"id":"n1820939463","loc":[-85.5339747,41.9681841]},"n1820939465":{"id":"n1820939465","loc":[-85.4125423,42.0072129]},"n1820939467":{"id":"n1820939467","loc":[-85.6335563,41.9303626]},"n1820939469":{"id":"n1820939469","loc":[-85.2821014,41.9932126]},"n1820939471":{"id":"n1820939471","loc":[-85.374691,41.9969917]},"n1820939485":{"id":"n1820939485","loc":[-85.4471321,42.0049806]},"n1820939487":{"id":"n1820939487","loc":[-85.3752532,41.9972206]},"n1820939489":{"id":"n1820939489","loc":[-85.4517283,42.005927]},"n1820939492":{"id":"n1820939492","loc":[-85.4662552,42.0005693]},"n1820939494":{"id":"n1820939494","loc":[-85.0120083,42.0902928]},"n1820939496":{"id":"n1820939496","loc":[-85.044463,42.1004631]},"n1820939498":{"id":"n1820939498","loc":[-85.418293,42.0089667]},"n1820939500":{"id":"n1820939500","loc":[-85.0554762,42.1027358]},"n1820939504":{"id":"n1820939504","loc":[-85.1246289,42.0746858]},"n1820939507":{"id":"n1820939507","loc":[-85.0408139,42.1021838]},"n1820939508":{"id":"n1820939508","loc":[-85.1236204,42.0775169]},"n1820939509":{"id":"n1820939509","loc":[-85.0350109,42.1037428]},"n1820939510":{"id":"n1820939510","loc":[-85.0551583,42.1029878]},"n1820939511":{"id":"n1820939511","loc":[-85.0956771,42.0916662]},"n1820939512":{"id":"n1820939512","loc":[-85.2323408,42.0273638]},"n1820939513":{"id":"n1820939513","loc":[-85.1232771,42.0762388]},"n1820939531":{"id":"n1820939531","loc":[-85.264608,41.9997828]},"n1820939533":{"id":"n1820939533","loc":[-85.4198808,42.0087914]},"n1820939535":{"id":"n1820939535","loc":[-85.3080864,41.9715677]},"n1820939536":{"id":"n1820939536","loc":[-85.1189426,42.0812596]},"n1820939537":{"id":"n1820939537","loc":[-85.2642741,41.9996764]},"n1820939538":{"id":"n1820939538","loc":[-85.2572531,42.0079627]},"n1820939539":{"id":"n1820939539","loc":[-85.2907807,41.9790174]},"n1820939540":{"id":"n1820939540","loc":[-85.3171415,41.9707301]},"n1820939541":{"id":"n1820939541","loc":[-85.08777,42.0953841]},"n1820939542":{"id":"n1820939542","loc":[-85.1239262,42.0773218]},"n1820939543":{"id":"n1820939543","loc":[-84.9973956,42.0877968]},"n1820939544":{"id":"n1820939544","loc":[-85.011606,42.0896161]},"n1820939545":{"id":"n1820939545","loc":[-85.4077358,42.0082971]},"n1820939546":{"id":"n1820939546","loc":[-85.3614945,41.9933717]},"n1820939547":{"id":"n1820939547","loc":[-85.3189118,41.9697649]},"n1820939550":{"id":"n1820939550","loc":[-85.1262691,42.0740221]},"n1820939551":{"id":"n1820939551","loc":[-85.3863639,41.9994635]},"n1820939552":{"id":"n1820939552","loc":[-85.2836034,41.9923953]},"n1820939554":{"id":"n1820939554","loc":[-85.3222377,41.9715916]},"n1820939555":{"id":"n1820939555","loc":[-85.0122658,42.0906312]},"n1820939556":{"id":"n1820939556","loc":[-85.0022652,42.0877581]},"n1820939557":{"id":"n1820939557","loc":[-85.1011314,42.0899954]},"n1820939559":{"id":"n1820939559","loc":[-85.0008181,42.0885293]},"n1820939561":{"id":"n1820939561","loc":[-85.3637046,41.9942488]},"n1820939562":{"id":"n1820939562","loc":[-85.4500117,42.0052892]},"n1820939563":{"id":"n1820939563","loc":[-85.0537636,42.1036365]},"n1820939565":{"id":"n1820939565","loc":[-85.2367503,42.0246939]},"n1820939566":{"id":"n1820939566","loc":[-85.0448479,42.1002653]},"n1820939567":{"id":"n1820939567","loc":[-85.6337065,41.9295006]},"n1820939568":{"id":"n1820939568","loc":[-85.0879792,42.095623]},"n1820939569":{"id":"n1820939569","loc":[-85.6347623,41.9352369]},"n1820939570":{"id":"n1820939570","loc":[-85.1497931,42.0620378]},"n1820939571":{"id":"n1820939571","loc":[-85.5676169,41.9656324]},"n1820939572":{"id":"n1820939572","loc":[-85.638041,41.9166971]},"n1820939573":{"id":"n1820939573","loc":[-85.4993429,41.9781293]},"n1820939574":{"id":"n1820939574","loc":[-85.5352831,41.9692127]},"n1820939575":{"id":"n1820939575","loc":[-84.9924429,42.0857118]},"n1820939577":{"id":"n1820939577","loc":[-85.0581101,42.1026721]},"n1820939578":{"id":"n1820939578","loc":[-85.641088,41.9094477]},"n1820939579":{"id":"n1820939579","loc":[-85.2548821,42.0052282]},"n1820939580":{"id":"n1820939580","loc":[-85.1124463,42.0859734]},"n1820939581":{"id":"n1820939581","loc":[-85.1083479,42.0857624]},"n1820939583":{"id":"n1820939583","loc":[-85.1387424,42.0648893]},"n1820939584":{"id":"n1820939584","loc":[-85.5152645,41.9700892]},"n1820939585":{"id":"n1820939585","loc":[-85.5463738,41.9713439]},"n1820939586":{"id":"n1820939586","loc":[-85.360207,41.9933717]},"n1820939587":{"id":"n1820939587","loc":[-85.2402372,42.0120917]},"n1820939588":{"id":"n1820939588","loc":[-85.3936381,42.0047255]},"n1820939589":{"id":"n1820939589","loc":[-85.3310246,41.973784]},"n1820939590":{"id":"n1820939590","loc":[-85.0329403,42.096642]},"n1820939591":{"id":"n1820939591","loc":[-85.0097271,42.0910981]},"n1820939593":{"id":"n1820939593","loc":[-85.0446562,42.1003437]},"n1820939595":{"id":"n1820939595","loc":[-85.0856671,42.1008452]},"n1820939596":{"id":"n1820939596","loc":[-85.4087228,42.0083449]},"n1820939597":{"id":"n1820939597","loc":[-85.0609519,42.1052564]},"n1820939598":{"id":"n1820939598","loc":[-85.3432126,41.9874548]},"n1820939599":{"id":"n1820939599","loc":[-85.4041738,42.0067027]},"n1820939600":{"id":"n1820939600","loc":[-85.0825437,42.1035768]},"n1820939601":{"id":"n1820939601","loc":[-85.048422,42.101498]},"n1820939602":{"id":"n1820939602","loc":[-85.0336256,42.0999031]},"n1820939603":{"id":"n1820939603","loc":[-85.046818,42.1014104]},"n1820939605":{"id":"n1820939605","loc":[-85.2856524,41.98078]},"n1820939607":{"id":"n1820939607","loc":[-85.1118173,42.0864245]},"n1820939609":{"id":"n1820939609","loc":[-85.0443397,42.1006263]},"n1820939610":{"id":"n1820939610","loc":[-85.0336698,42.0978361]},"n1820939611":{"id":"n1820939611","loc":[-85.4630322,42.0014248]},"n1820939612":{"id":"n1820939612","loc":[-85.0613127,42.1052353]},"n1820939613":{"id":"n1820939613","loc":[-85.0137571,42.0887801]},"n1820939614":{"id":"n1820939614","loc":[-85.272487,41.9982013]},"n1820939616":{"id":"n1820939616","loc":[-85.4665727,41.9983791]},"n1820939617":{"id":"n1820939617","loc":[-85.1288078,42.0725476]},"n1820939618":{"id":"n1820939618","loc":[-85.4653282,42.00109]},"n1820939619":{"id":"n1820939619","loc":[-85.2314717,42.0276746]},"n1820939620":{"id":"n1820939620","loc":[-85.255982,42.0003569]},"n1820939621":{"id":"n1820939621","loc":[-85.2886779,41.9787223]},"n1820939622":{"id":"n1820939622","loc":[-85.22438,42.0367509]},"n1820939623":{"id":"n1820939623","loc":[-85.0334713,42.0998382]},"n1820939624":{"id":"n1820939624","loc":[-85.2236504,42.037484]},"n1820939625":{"id":"n1820939625","loc":[-85.636908,41.9175162]},"n1820939627":{"id":"n1820939627","loc":[-85.2669187,41.9989707]},"n1820939628":{"id":"n1820939628","loc":[-85.3247268,41.9720702]},"n1820939629":{"id":"n1820939629","loc":[-85.3785104,41.9987299]},"n1820939630":{"id":"n1820939630","loc":[-85.5267658,41.9720515]},"n1820939631":{"id":"n1820939631","loc":[-85.2445116,42.0098811]},"n1820939632":{"id":"n1820939632","loc":[-85.1271448,42.0725077]},"n1820939633":{"id":"n1820939633","loc":[-85.0345751,42.099724]},"n1820939634":{"id":"n1820939634","loc":[-85.4217476,42.0089986]},"n1820939635":{"id":"n1820939635","loc":[-85.3121848,41.9689433]},"n1820939636":{"id":"n1820939636","loc":[-85.2826419,41.9929985]},"n1820939637":{"id":"n1820939637","loc":[-85.3160257,41.9706344]},"n1820939638":{"id":"n1820939638","loc":[-85.5684967,41.9657919]},"n1820939640":{"id":"n1820939640","loc":[-85.225131,42.0356194]},"n1820939642":{"id":"n1820939642","loc":[-85.1324124,42.0693328]},"n1820939644":{"id":"n1820939644","loc":[-84.9994073,42.0878843]},"n1820939645":{"id":"n1820939645","loc":[-85.1087596,42.0863329]},"n1820939646":{"id":"n1820939646","loc":[-85.2915532,41.9782996]},"n1820939647":{"id":"n1820939647","loc":[-84.9988708,42.0877808]},"n1820939648":{"id":"n1820939648","loc":[-85.2243628,42.0356728]},"n1820939649":{"id":"n1820939649","loc":[-85.0427397,42.1020524]},"n1820939650":{"id":"n1820939650","loc":[-85.6388392,41.9100752]},"n1820939651":{"id":"n1820939651","loc":[-85.0133709,42.0888557]},"n1820939652":{"id":"n1820939652","loc":[-85.318798,41.9701211]},"n1820939653":{"id":"n1820939653","loc":[-85.6335778,41.9190602]},"n1820939654":{"id":"n1820939654","loc":[-85.6338396,41.9370247]},"n1820939655":{"id":"n1820939655","loc":[-85.0939069,42.0931988]},"n1820939656":{"id":"n1820939656","loc":[-85.5702347,41.9651378]},"n1820939657":{"id":"n1820939657","loc":[-85.4235286,42.0088392]},"n1820939658":{"id":"n1820939658","loc":[-85.2740856,41.9972206]},"n1820939659":{"id":"n1820939659","loc":[-85.4824299,41.9934195]},"n1820939660":{"id":"n1820939660","loc":[-85.3857846,42.0014408]},"n1820939661":{"id":"n1820939661","loc":[-85.0451658,42.10028]},"n1820939662":{"id":"n1820939662","loc":[-85.3893036,42.001377]},"n1820939664":{"id":"n1820939664","loc":[-85.2455845,42.0088607]},"n1820939665":{"id":"n1820939665","loc":[-85.2741071,41.9951116]},"n1820939666":{"id":"n1820939666","loc":[-85.1298375,42.0677718]},"n1820939667":{"id":"n1820939667","loc":[-85.5491848,41.9707377]},"n1820939669":{"id":"n1820939669","loc":[-85.2780298,41.995238]},"n1820939670":{"id":"n1820939670","loc":[-85.1330068,42.0716926]},"n1820939671":{"id":"n1820939671","loc":[-85.0811342,42.1025129]},"n1820939672":{"id":"n1820939672","loc":[-85.2325124,42.0290135]},"n1820939673":{"id":"n1820939673","loc":[-85.2975077,41.9716953]},"n1820939674":{"id":"n1820939674","loc":[-85.0951729,42.0922394]},"n1820939676":{"id":"n1820939676","loc":[-85.0363252,42.1043119]},"n1820939677":{"id":"n1820939677","loc":[-85.2960057,41.97349]},"n1820939678":{"id":"n1820939678","loc":[-85.3701849,41.9982515]},"n1820939679":{"id":"n1820939679","loc":[-85.3381486,41.9848861]},"n1820939680":{"id":"n1820939680","loc":[-85.2058448,42.0417286]},"n1820939682":{"id":"n1820939682","loc":[-85.0819335,42.1034443]},"n1820939683":{"id":"n1820939683","loc":[-85.3872223,41.9993359]},"n1820939684":{"id":"n1820939684","loc":[-85.095366,42.091909]},"n1820939685":{"id":"n1820939685","loc":[-85.2327914,42.0291888]},"n1820939686":{"id":"n1820939686","loc":[-85.0433459,42.1018773]},"n1820939687":{"id":"n1820939687","loc":[-85.0585339,42.1027318]},"n1820939688":{"id":"n1820939688","loc":[-85.0062885,42.0876347]},"n1820939689":{"id":"n1820939689","loc":[-85.246299,42.017377]},"n1820939690":{"id":"n1820939690","loc":[-85.2932376,41.9742877]},"n1820939691":{"id":"n1820939691","loc":[-85.2962846,41.9736815]},"n1820939692":{"id":"n1820939692","loc":[-85.6052365,41.9409193]},"n1820939693":{"id":"n1820939693","loc":[-85.2570536,42.0003341]},"n1820939694":{"id":"n1820939694","loc":[-85.0488458,42.1014064]},"n1820939695":{"id":"n1820939695","loc":[-85.4050321,42.0069578]},"n1820939696":{"id":"n1820939696","loc":[-85.4847517,41.9845894]},"n1820939697":{"id":"n1820939697","loc":[-85.0844655,42.1013826]},"n1820939698":{"id":"n1820939698","loc":[-85.1437206,42.0650008]},"n1820939699":{"id":"n1820939699","loc":[-85.1168183,42.0864034]},"n1820939700":{"id":"n1820939700","loc":[-85.5479831,41.9711366]},"n1820939701":{"id":"n1820939701","loc":[-85.0349948,42.1034124]},"n1820939702":{"id":"n1820939702","loc":[-85.0835589,42.1038821]},"n1820939703":{"id":"n1820939703","loc":[-85.0203875,42.0902649]},"n1820939704":{"id":"n1820939704","loc":[-85.0371191,42.1038184]},"n1820939705":{"id":"n1820939705","loc":[-85.1273312,42.0735681]},"n1820939707":{"id":"n1820939707","loc":[-85.1272239,42.0730226]},"n1820939710":{"id":"n1820939710","loc":[-85.0349881,42.1019012]},"n1820939712":{"id":"n1820939712","loc":[-85.2440459,42.0178313]},"n1820939713":{"id":"n1820939713","loc":[-85.2444751,42.0182618]},"n1820939714":{"id":"n1820939714","loc":[-85.0539996,42.1032863]},"n1820939715":{"id":"n1820939715","loc":[-85.2215905,42.0373246]},"n1820939716":{"id":"n1820939716","loc":[-85.0649712,42.1051994]},"n1820939717":{"id":"n1820939717","loc":[-85.0927146,42.0927581]},"n1820939718":{"id":"n1820939718","loc":[-85.3884668,42.0042312]},"n1820939719":{"id":"n1820939719","loc":[-85.0840672,42.1013241]},"n1820939720":{"id":"n1820939720","loc":[-85.304739,41.9725408]},"n1820939721":{"id":"n1820939721","loc":[-85.2243585,42.0371334]},"n1820939722":{"id":"n1820939722","loc":[-85.0599823,42.1049686]},"n1820939723":{"id":"n1820939723","loc":[-85.0298825,42.0944288]},"n1820939724":{"id":"n1820939724","loc":[-85.0366095,42.1042443]},"n1820939725":{"id":"n1820939725","loc":[-85.0698783,42.1058135]},"n1820939726":{"id":"n1820939726","loc":[-85.1054551,42.0873361]},"n1820939727":{"id":"n1820939727","loc":[-84.9952324,42.0864285]},"n1820939728":{"id":"n1820939728","loc":[-85.3442211,41.9897993]},"n1820939729":{"id":"n1820939729","loc":[-85.4386134,42.0056822]},"n1820939730":{"id":"n1820939730","loc":[-85.2438528,42.0146589]},"n1820939731":{"id":"n1820939731","loc":[-85.0355581,42.1041846]},"n1820939732":{"id":"n1820939732","loc":[-85.557682,41.9724447]},"n1820939734":{"id":"n1820939734","loc":[-85.2299418,42.033314]},"n1820939735":{"id":"n1820939735","loc":[-85.6297412,41.9419088]},"n1820939736":{"id":"n1820939736","loc":[-85.2645101,41.9980259]},"n1820939738":{"id":"n1820939738","loc":[-85.082195,42.1035649]},"n1820939739":{"id":"n1820939739","loc":[-85.234272,42.0267102]},"n1820939740":{"id":"n1820939740","loc":[-85.0130758,42.0895006]},"n1820939741":{"id":"n1820939741","loc":[-85.4594702,42.0000375]},"n1820939742":{"id":"n1820939742","loc":[-84.9946745,42.0863687]},"n1820939743":{"id":"n1820939743","loc":[-85.6438775,41.9120186]},"n1820939744":{"id":"n1820939744","loc":[-85.6372685,41.9168089]},"n1820939745":{"id":"n1820939745","loc":[-85.2789468,41.9893208]},"n1820939747":{"id":"n1820939747","loc":[-85.3775019,41.998427]},"n1820939749":{"id":"n1820939749","loc":[-85.0993571,42.0909178]},"n1820939750":{"id":"n1820939750","loc":[-85.1308503,42.0669339]},"n1820939751":{"id":"n1820939751","loc":[-85.4802566,41.9856659]},"n1820939752":{"id":"n1820939752","loc":[-85.2543563,42.0108804]},"n1820939753":{"id":"n1820939753","loc":[-85.1041033,42.0878815]},"n1820939755":{"id":"n1820939755","loc":[-85.4000969,42.0071651]},"n1820939757":{"id":"n1820939757","loc":[-85.3858275,42.0022381]},"n1820939758":{"id":"n1820939758","loc":[-85.3653998,41.996609]},"n1820939759":{"id":"n1820939759","loc":[-85.2432949,42.0202305]},"n1820939760":{"id":"n1820939760","loc":[-85.3878874,42.0042472]},"n1820939761":{"id":"n1820939761","loc":[-85.2516741,42.0114145]},"n1820939762":{"id":"n1820939762","loc":[-85.2788825,41.9865142]},"n1820939763":{"id":"n1820939763","loc":[-85.0009147,42.0886686]},"n1820939764":{"id":"n1820939764","loc":[-85.3918142,42.003434]},"n1820939765":{"id":"n1820939765","loc":[-85.5532832,41.9696848]},"n1820939766":{"id":"n1820939766","loc":[-85.5545063,41.969254]},"n1820939768":{"id":"n1820939768","loc":[-85.1327989,42.0704769]},"n1820939770":{"id":"n1820939770","loc":[-85.0588558,42.1047696]},"n1820939772":{"id":"n1820939772","loc":[-85.555798,41.9713017]},"n1820939773":{"id":"n1820939773","loc":[-85.0565853,42.1023589]},"n1820939774":{"id":"n1820939774","loc":[-85.2582941,41.9992765]},"n1820939775":{"id":"n1820939775","loc":[-85.3007264,41.9727642]},"n1820939776":{"id":"n1820939776","loc":[-85.2477045,42.0082652]},"n1820939777":{"id":"n1820939777","loc":[-85.2415247,42.0104973]},"n1821006698":{"id":"n1821006698","loc":[-85.6345227,41.9382009]},"n1821006700":{"id":"n1821006700","loc":[-85.6344894,41.938975]},"n1821006704":{"id":"n1821006704","loc":[-85.6351181,41.9370157]},"n1821006706":{"id":"n1821006706","loc":[-85.6357554,41.9361657]},"n1821006708":{"id":"n1821006708","loc":[-85.6351235,41.9368481]},"n1821006710":{"id":"n1821006710","loc":[-85.6352844,41.9364211]},"n1821006712":{"id":"n1821006712","loc":[-85.6351503,41.937307]},"n1821006716":{"id":"n1821006716","loc":[-85.6350366,41.9379774]},"n1821006725":{"id":"n1821006725","loc":[-85.6352147,41.9375903]},"n1821137607":{"id":"n1821137607","loc":[-85.5297057,41.9669915]},"n1821137608":{"id":"n1821137608","loc":[-85.5288598,41.9673094]},"n1821139530":{"id":"n1821139530","loc":[-85.4832228,41.9881686]},"n1821139531":{"id":"n1821139531","loc":[-85.4812101,41.9851258]},"n1821139532":{"id":"n1821139532","loc":[-85.4799127,41.9860244]},"n1821139533":{"id":"n1821139533","loc":[-85.4800313,41.9865555]},"n1841425201":{"id":"n1841425201","loc":[-85.4334577,42.0063713]},"n1841425222":{"id":"n1841425222","loc":[-85.4382449,42.0055785]},"n1914861007":{"id":"n1914861007","loc":[-85.394959,42.0057472]},"n1914861057":{"id":"n1914861057","loc":[-85.3967185,42.0049695]},"n1914861112":{"id":"n1914861112","loc":[-85.394179,42.0056906]},"n1914861306":{"id":"n1914861306","loc":[-85.3900226,42.0028488]},"n2114807565":{"id":"n2114807565","loc":[-85.6385979,41.9577824]},"n2114807568":{"id":"n2114807568","loc":[-85.6325097,41.9775713]},"n2114807572":{"id":"n2114807572","loc":[-85.6328996,41.9980965]},"n2114807578":{"id":"n2114807578","loc":[-85.6344818,41.9696956]},"n2114807583":{"id":"n2114807583","loc":[-85.6326289,41.9757853]},"n2114807593":{"id":"n2114807593","loc":[-85.6360828,41.9650674]},"n2130304159":{"id":"n2130304159","loc":[-85.6352537,41.9450015],"tags":{"railway":"level_crossing"}},"n2139795852":{"id":"n2139795852","loc":[-85.6374708,41.9311633]},"n2139858882":{"id":"n2139858882","loc":[-85.635178,41.9356158]},"n2139858883":{"id":"n2139858883","loc":[-85.63533,41.9355886]},"n2139858884":{"id":"n2139858884","loc":[-85.6353819,41.93556]},"n2139858885":{"id":"n2139858885","loc":[-85.6353665,41.9355157]},"n2139858886":{"id":"n2139858886","loc":[-85.6353165,41.9354971]},"n2139858887":{"id":"n2139858887","loc":[-85.6352454,41.9355328]},"n2139858888":{"id":"n2139858888","loc":[-85.6350184,41.9357846]},"n2139858889":{"id":"n2139858889","loc":[-85.634978,41.9359448]},"n2139858890":{"id":"n2139858890","loc":[-85.6347723,41.9361523]},"n2139858891":{"id":"n2139858891","loc":[-85.6347165,41.9362667]},"n2139858892":{"id":"n2139858892","loc":[-85.6346992,41.9364312]},"n2139858893":{"id":"n2139858893","loc":[-85.634603,41.9366329]},"n2139858894":{"id":"n2139858894","loc":[-85.6345973,41.9367488]},"n2139858895":{"id":"n2139858895","loc":[-85.6345127,41.9369734]},"n2139858896":{"id":"n2139858896","loc":[-85.634478,41.9371923]},"n2139858897":{"id":"n2139858897","loc":[-85.6344838,41.9373768]},"n2139858898":{"id":"n2139858898","loc":[-85.6346242,41.9375299]},"n2139858899":{"id":"n2139858899","loc":[-85.6347723,41.9376357]},"n2139858900":{"id":"n2139858900","loc":[-85.6347607,41.9377788]},"n2139858901":{"id":"n2139858901","loc":[-85.6346204,41.9379533]},"n2139858902":{"id":"n2139858902","loc":[-85.6344184,41.9380105]},"n2139858903":{"id":"n2139858903","loc":[-85.6341627,41.9380406]},"n2139858904":{"id":"n2139858904","loc":[-85.634005,41.9381679]},"n2139858905":{"id":"n2139858905","loc":[-85.63393,41.9383353]},"n2139858906":{"id":"n2139858906","loc":[-85.6338588,41.9384597]},"n2139858907":{"id":"n2139858907","loc":[-85.6336627,41.9387759]},"n2139858908":{"id":"n2139858908","loc":[-85.6335127,41.9389361]},"n2139858933":{"id":"n2139858933","loc":[-85.6353118,41.9432646]},"n2139858934":{"id":"n2139858934","loc":[-85.6353952,41.9433002]},"n2139858935":{"id":"n2139858935","loc":[-85.6356496,41.9433255]},"n2139858936":{"id":"n2139858936","loc":[-85.6363128,41.9433373]},"n2139858937":{"id":"n2139858937","loc":[-85.6365467,41.9433779]},"n2139858938":{"id":"n2139858938","loc":[-85.6368692,41.9435265]},"n2139858939":{"id":"n2139858939","loc":[-85.6370986,41.9437039]},"n2139858940":{"id":"n2139858940","loc":[-85.6372371,41.9437732]},"n2139858941":{"id":"n2139858941","loc":[-85.6374756,41.9438171]},"n2139858942":{"id":"n2139858942","loc":[-85.6376164,41.9439286]},"n2139858943":{"id":"n2139858943","loc":[-85.6377504,41.944138]},"n2139858944":{"id":"n2139858944","loc":[-85.6384204,41.9443137]},"n2139858945":{"id":"n2139858945","loc":[-85.6385726,41.9444506]},"n2139858946":{"id":"n2139858946","loc":[-85.638702,41.9445739]},"n2139858947":{"id":"n2139858947","loc":[-85.6387179,41.9446516]},"n2139858948":{"id":"n2139858948","loc":[-85.6387088,41.9447985]},"n2139858949":{"id":"n2139858949","loc":[-85.6387656,41.9449877]},"n2139858950":{"id":"n2139858950","loc":[-85.638777,41.9451448]},"n2139858951":{"id":"n2139858951","loc":[-85.6387088,41.9452631]},"n2139858964":{"id":"n2139858964","loc":[-85.6383346,41.9442912]},"n2139858966":{"id":"n2139858966","loc":[-85.6384724,41.9443605]},"n2139858967":{"id":"n2139858967","loc":[-85.6354078,41.9434285]},"n2139858968":{"id":"n2139858968","loc":[-85.635271,41.943654]},"n2139858969":{"id":"n2139858969","loc":[-85.6352657,41.9437437]},"n2139858970":{"id":"n2139858970","loc":[-85.635271,41.9438195]},"n2139858971":{"id":"n2139858971","loc":[-85.6351563,41.9438906]},"n2139858972":{"id":"n2139858972","loc":[-85.6351384,41.9438882]},"n2139858973":{"id":"n2139858973","loc":[-85.6351514,41.9438034]},"n2139858974":{"id":"n2139858974","loc":[-85.6351237,41.9436641]},"n2139858975":{"id":"n2139858975","loc":[-85.6351498,41.9436108]},"n2139858976":{"id":"n2139858976","loc":[-85.6351058,41.9435345]},"n2139858977":{"id":"n2139858977","loc":[-85.6349641,41.9432051]},"n2139858986":{"id":"n2139858986","loc":[-85.6341205,41.9380746]},"n2139858990":{"id":"n2139858990","loc":[-85.6345671,41.9381816]},"n2139858995":{"id":"n2139858995","loc":[-85.6339783,41.9382273]},"n2139859003":{"id":"n2139859003","loc":[-85.6340477,41.9373489]},"n2139859004":{"id":"n2139859004","loc":[-85.6339784,41.9374752]},"n2139870406":{"id":"n2139870406","loc":[-85.6342265,41.9432605]},"n2139877106":{"id":"n2139877106","loc":[-85.6346323,41.9438746]},"n2139982399":{"id":"n2139982399","loc":[-85.6324055,41.9408537]},"n2139982400":{"id":"n2139982400","loc":[-85.632488,41.941063],"tags":{"leisure":"slipway"}},"n2139982401":{"id":"n2139982401","loc":[-85.6327261,41.9415366]},"n2139982402":{"id":"n2139982402","loc":[-85.6326391,41.9413598]},"n2139982403":{"id":"n2139982403","loc":[-85.6327041,41.9414391]},"n2139982405":{"id":"n2139982405","loc":[-85.6322891,41.9406009]},"n2139982406":{"id":"n2139982406","loc":[-85.6325412,41.9425257]},"n2139989333":{"id":"n2139989333","loc":[-85.6340584,41.9431731]},"n2140006331":{"id":"n2140006331","loc":[-85.6361751,41.9459744]},"n2140006334":{"id":"n2140006334","loc":[-85.636528,41.9459751]},"n2140006336":{"id":"n2140006336","loc":[-85.6370918,41.9458926]},"n2140006338":{"id":"n2140006338","loc":[-85.6378806,41.9456474]},"n2140006340":{"id":"n2140006340","loc":[-85.6385831,41.9454343]},"n2140006342":{"id":"n2140006342","loc":[-85.639341,41.945157]},"n2140006344":{"id":"n2140006344","loc":[-85.6393497,41.9450232]},"n2140006346":{"id":"n2140006346","loc":[-85.6388245,41.9450145]},"n2140006348":{"id":"n2140006348","loc":[-85.6388167,41.9441739]},"n2140006351":{"id":"n2140006351","loc":[-85.6382915,41.9441797]},"n2140006353":{"id":"n2140006353","loc":[-85.63828,41.9438109]},"n2140006355":{"id":"n2140006355","loc":[-85.6381949,41.9436009]},"n2140006357":{"id":"n2140006357","loc":[-85.6371904,41.9435918]},"n2140006359":{"id":"n2140006359","loc":[-85.6366966,41.9432727]},"n2140006361":{"id":"n2140006361","loc":[-85.6353755,41.9432744]},"n2140006365":{"id":"n2140006365","loc":[-85.6350906,41.9435472]},"n2140006366":{"id":"n2140006366","loc":[-85.6343461,41.9441573]},"n2140006395":{"id":"n2140006395","loc":[-85.6351171,41.9437175]},"n2140006397":{"id":"n2140006397","loc":[-85.635352,41.9450206]},"n2140006399":{"id":"n2140006399","loc":[-85.6358194,41.9454937]},"n2140006401":{"id":"n2140006401","loc":[-85.6348693,41.9445739]},"n2140006431":{"id":"n2140006431","loc":[-85.6376737,41.9438023]},"n2140006437":{"id":"n2140006437","loc":[-85.6382631,41.9442724]},"n2189123379":{"id":"n2189123379","loc":[-85.6342671,41.9352665]},"w203974076":{"id":"w203974076","tags":{"highway":"footway"},"nodes":["n2139870442","n2139870457","n2139870458","n2139870459","n2139870460","n2139870452"]},"w170989131":{"id":"w170989131","tags":{"name":"St Joseph River","waterway":"river"},"nodes":["n1820938225","n1820938712","n1820937596","n1820937574","n1820938515","n1820938330","n1820938678","n1820938240","n1820938950","n1820939226","n1820939575","n1820937913","n1820938223","n1820937668","n1820938545","n1820937584","n1820939742","n1820939727","n1820937578","n1820938149","n1820938124","n1820938888","n1820938898","n1820937922","n1820939543","n1820939370","n1820939401","n1820939647","n1820938345","n1820939644","n1820938333","n1820938370","n1820938624","n1820938493","n1820939559","n1820939763","n1820939237","n1820939416","n1820937810","n1820938317","n1820938324","n1820937558","n1820939556","n1820938298","n1820939348","n1820939125","n1820939081","n1820938859","n1820939126","n1820938881","n1820939439","n1820939324","n1820939128","n1820938101","n1820937706","n1820938382","n1820938776","n1820937815","n1820939177","n1820939688","n1820938952","n1820938216","n1820938387","n1820939333","n1820938243","n1820938248","n1820937666","n1820939051","n1820938332","n1820939438","n1820939407","n1820939361","n1820937517","n1820938770","n1820939591","n1820937857","n1820938491","n1820937993","n1820938125","n1820938166","n1820937746","n1820939028","n1820937638","n1820938676","n1820938843","n1820938844","n1820937978","n1820938730","n1820939544","n1820938304","n1820939123","n1820939494","n1820939450","n1820939555","n1820938133","n1820938129","n1820938871","n1820939408","n1820938669","n1820938260","n1820939740","n1820937625","n1820938631","n1820939651","n1820939613","n1820937850","n1820938325","n1820937736","n1820938804","n1820938837","n1820938014","n1820938991","n1820938722","n1820938935","n1820937870","n1820938432","n1820937986","n1820938756","n1820938966","n1820939159","n1820937744","n1820938334","n1820937645","n1820939394","n1820937656","n1820938392","n1820939703","n1820938385","n1820938947","n1820938854","n1820938428","n1820938488","n1820938269","n1820938668","n1820938268","n1820938707","n1820937732","n1820939144","n1820938481","n1820938771","n1820938686","n1820938948","n1820937997","n1820937769","n1820939003","n1820938083","n1820939011","n1820938803","n1820938700","n1820939723","n1820938808","n1820938262","n1820938081","n1820938926","n1820938326","n1820938102","n1820938508","n1820939590","n1820939199","n1820938084","n1820938870","n1820938895","n1820937611","n1820938918","n1820938514","n1820939610","n1820938910","n1820937523","n1820938127","n1820939108","n1820937981","n1820938938","n1820938715","n1820939016","n1820938237","n1820939623","n1820939602","n1820937734","n1820938977","n1820939633","n1820939156","n1820939406","n1820938279","n1820938301","n1820937678","n1820937671","n1820939163","n1820938356","n1820939372","n1820937568","n1820937626","n1820939710","n1820939004","n1820938253","n1820938571","n1820937513","n1820939412","n1820939701","n1820939509","n1820938839","n1820939731","n1820937798","n1820939676","n1820939724","n1820939243","n1820939704","n1820937814","n1820937599","n1820938199","n1820938995","n1820938445","n1820938069","n1820938470","n1820939074","n1820938193","n1820938740","n1820938047","n1820939507","n1820939441","n1820939160","n1820937849","n1820937840","n1820938052","n1820938988","n1820938796","n1820937724","n1820937620","n1820939304","n1820938343","n1820939649","n1820938875","n1820939686","n1820938476","n1820937801","n1820937737","n1820938264","n1820939609","n1820939496","n1820939593","n1820939566","n1820939661","n1820937782","n1820938912","n1820939173","n1820937733","n1820938953","n1820939603","n1820937607","n1820938468","n1820939601","n1820939694","n1820939133","n1820938897","n1820938893","n1820937831","n1820937730","n1820938820","n1820938046","n1820938426","n1820938347","n1820937582","n1820938954","n1820938033","n1820938104","n1820938680","n1820939563","n1820939404","n1820939714","n1820939000","n1820937992","n1820938168","n1820939510","n1820939500","n1820937509","n1820938865","n1820939773","n1820938138","n1820938905","n1820937623","n1820939418","n1820937946","n1820939577","n1820937615","n1820939687","n1820939119","n1820937988","n1820938337","n1820937750","n1820938703","n1820938339","n1820939044","n1820939770","n1820938913","n1820937672","n1820939722","n1820937768","n1820939597","n1820939612","n1820937699","n1820937682","n1820937669","n1820937657","n1820939363","n1820937800","n1820938265","n1820937760","n1820938207","n1820938115","n1820939130","n1820939716","n1820938338","n1820938239","n1820939040","n1820938064","n1820938855","n1820939015","n1820938258","n1820939042","n1820939043","n1820938443","n1820939725","n1820937675","n1820938568","n1820938280","n1820937705","n1820938775","n1820938636","n1820938626","n1820937859","n1820938096","n1820937852","n1820939039","n1820938247","n1820938585","n1820937707","n1820938117","n1820938909","n1820939115","n1820939335","n1820938805","n1820937935","n1820937876","n1820938699","n1820937869","n1820938603","n1820938100","n1820938500","n1820938283","n1820938275","n1820938923","n1820938365","n1820938349","n1820937804","n1820937903","n1820937608","n1820938688","n1820939671","n1820938092","n1820937820","n1820938753","n1820938922","n1820937990","n1820939682","n1820939738","n1820939600","n1820938167","n1820937726","n1820939702","n1820938209","n1820939456","n1820937837","n1820938222","n1820938902","n1820939162","n1820938965","n1820938461","n1820937681","n1820937514","n1820937764","n1820939719","n1820939697","n1820938899","n1820939093","n1820938702","n1820939595","n1820938749","n1820938348","n1820937606","n1820938675","n1820938830","n1820938737","n1820938758","n1820938716","n1820939107","n1820937863","n1820939033","n1820938163","n1820937867","n1820938819","n1820938034","n1820938252","n1820937563","n1820937868","n1820939032","n1820938632","n1820937982","n1820937943","n1820939568","n1820939541","n1820938215","n1820939097","n1820938812","n1820937518","n1820937952","n1820938711","n1820938736","n1820939066","n1820937591","n1820938082","n1820938108","n1820938496","n1820939410","n1820938949","n1820938327","n1820937708","n1820939023","n1820937772","n1820938256","n1820939083","n1820938378","n1820938961","n1820937610","n1820939717","n1820938695","n1820938590","n1820939655","n1820938341","n1820939054","n1820939157","n1820939674","n1820939684","n1820939511","n1820937631","n1820939458","n1820937830","n1820937709","n1820937779","n1820939749","n1820938880","n1820938856","n1820938557","n1820939557","n1820938249","n1820938818","n1820937594","n1820939114","n1820938416","n1820937508","n1820938990","n1820938201","n1820937759","n1820937987","n1820939164","n1820939753","n1820938187","n1820939067","n1820937586","n1820937941","n1820938121","n1820937807","n1820938521","n1820939726","n1820938244","n1820939014","n1820938741","n1820937629","n1820938664","n1820938747","n1820939082","n1820938709","n1820938320","n1820938270","n1820937619","n1820937777","n1820937718","n1820939138","n1820938056","n1820938155","n1820938596","n1820937775","n1820938437","n1820938128","n1820939581","n1820939145","n1820938546","n1820938184","n1820937601","n1820937794","n1820938539","n1820939645","n1820938438","n1820938436","n1820939025","n1820938915","n1820938534","n1820937605","n1820939607","n1820939101","n1820939580","n1820939268","n1820939134","n1820938849","n1820938754","n1820938079","n1820937842","n1820938781","n1820938873","n1820938495","n1820938381","n1820938503","n1820939436","n1820938502","n1820939087","n1820938996","n1820938449","n1820938907","n1820937979","n1820937780","n1820937546","n1820939699","n1820937677","n1820938957","n1820938946","n1820937776","n1820937717","n1820938718","n1820937637","n1820938510","n1820937663","n1820938941","n1820939151","n1820937603","n1820938250","n1820937951","n1820938630","n1820938821","n1820938779","n1820938497","n1820938159","n1820939536","n1820938409","n1820938386","n1820939116","n1820938340","n1820939117","n1820938291","n1820938435","n1820937819","n1820938242","n1820939078","n1820938877","n1820939104","n1820939445","n1820938367","n1820938903","n1820939420","n1820938517","n1820939508","n1820939542","n1820939326","n1820938210","n1820939020","n1820938815","n1820937832","n1820939513","n1820937818","n1820939005","n1820938717","n1820939135","n1820938384","n1820937587","n1820939024","n1820939504","n1820939120","n1820939026","n1820938015","n1820938998","n1820937648","n1820939137","n1820937761","n1820938195","n1820938535","n1820939550","n1820938725","n1820938282","n1820937781","n1820937792","n1820939705","n1820937788","n1820939707","n1820937882","n1820939632","n1820938427","n1820938276","n1820939617","n1820939013","n1820939035","n1820937543","n1820939365","n1820937752","n1820937802","n1820939183","n1820939670","n1820938450","n1820939375","n1820937813","n1820937673","n1820937783","n1820939029","n1820939768","n1820939377","n1820937974","n1820939244","n1820939642","n1820937864","n1820938255","n1820938528","n1820939666","n1820938120","n1820937812","n1820938928","n1820939750","n1820939099","n1820938073","n1820938714","n1820939140","n1820938192","n1820937844","n1820938635","n1820938742","n1820939583","n1820937887","n1820938318","n1820938816","n1820939698","n1820938273","n1820939181","n1820937652","n1820938748","n1820937651","n1820938519","n1820938019","n1820938752","n1820938235","n1820939118","n1820938562","n1820939314","n1820939570","n1820938190","n1820938342","n1820938533","n1820937977","n1820939089","n1820939146","n1820938622","n1820938297","n1820938524","n1820939283","n1820938874","n1820938832","n1820937550","n1820937843","n1820938638","n1820938116","n1820938206","n1820938319","n1820939053","n1820937845","n1820938093","n1820939217","n1820938997","n1820939355","n1820938861","n1820938726","n1820938057","n1820939373","n1820937862","n1820938518","n1820939072","n1820939680","n1820938444","n1820938217","n1820938506","n1820938393","n1820938492","n1820938852","n1820938221","n1820938773","n1820937684","n1820939060","n1820938224","n1820938203","n1820938840","n1820937525","n1820938147","n1820938433","n1820938188","n1820939359","n1820938750","n1820938016","n1820938768","n1820937621","n1820937799","n1820938951","n1820938721","n1820939037","n1820937866","n1820939715","n1820938063","n1820938446","n1820937627","n1820939624","n1820938431","n1820939721","n1820939622","n1820939239","n1820939263","n1820939648","n1820939640","n1820938867","n1820938757","n1820938439","n1820939352","n1820937740","n1820939329","n1820938229","n1820937583","n1820938180","n1820938366","n1820937767","n1820937758","n1820939374","n1820938869","n1820938292","n1820938400","n1820938399","n1820939734","n1820939289","n1820938944","n1820937755","n1820938759","n1820938434","n1820937600","n1820937825","n1820937670","n1820937793","n1820938011","n1820938246","n1820938956","n1820937770","n1820937757","n1820938059","n1820937860","n1820937569","n1820939266","n1820939685","n1820939672","n1820938606","n1820938772","n1820939038","n1820938211","n1820938359","n1820939619","n1820938708","n1820939512","n1820938065","n1820939233","n1820939739","n1820938786","n1820938879","n1820939147","n1820938563","n1820939148","n1820937839","n1820937659","n1820937786","n1820938419","n1820939565","n1820939402","n1820937710","n1820938254","n1820938271","n1820938390","n1820937680","n1820938140","n1820937817","n1820938218","n1820937985","n1820939235","n1820938441","n1820938401","n1820938719","n1820937795","n1820938971","n1820938460","n1820939759","n1820937972","n1820937841","n1820938462","n1820939320","n1820938978","n1820938360","n1820939713","n1820937676","n1820939712","n1820937939","n1820938080","n1820937754","n1820937753","n1820938530","n1820937886","n1820939689","n1820939124","n1820938697","n1820938789","n1820939105","n1820938860","n1820938853","n1820939400","n1820937561","n1820938404","n1820938774","n1820939316","n1820937696","n1820938782","n1820938975","n1820937564","n1820939730","n1820938257","n1820937853","n1820938487","n1820938848","n1820938906","n1820939230","n1820938424","n1820938051","n1820937771","n1820939587","n1820939149","n1820938792","n1820939041","n1820938934","n1820939777","n1820937515","n1820939058","n1820938312","n1820939264","n1820939631","n1820939109","n1820939403","n1820939664","n1820938724","n1820938929","n1820939399","n1820939776","n1820939369","n1820939185","n1820937701","n1820938126","n1820938336","n1820938219","n1820939080","n1820938642","n1820938043","n1820937725","n1820938548","n1820938552","n1820938035","n1820938684","n1820937778","n1820938764","n1820939021","n1820939346","n1820937712","n1820939761","n1820938397","n1820937747","n1820938566","n1820939161","n1820939090","n1820939752","n1820939271","n1820938878","n1820938110","n1820938346","n1820938499","n1820938151","n1820939538","n1820938281","n1820939153","n1820938551","n1820939285","n1820938197","n1820938408","n1820938482","n1820939036","n1820939579","n1820938489","n1820938483","n1820938189","n1820938123","n1820938087","n1820937741","n1820938485","n1820937590","n1820938972","n1820937773","n1820937520","n1820938872","n1820938131","n1820938452","n1820938328","n1820939620","n1820937641","n1820938353","n1820939693","n1820938705","n1820937640","n1820939189","n1820938144","n1820939774","n1820938694","n1820938238","n1820939397","n1820937917","n1820938454","n1820938567","n1820938979","n1820938060","n1820938204","n1820937828","n1820939232","n1820938806","n1820938857","n1820938078","n1820938105","n1820939228","n1820938604","n1820937763","n1820937854","n1820938289","n1820939736","n1820937937","n1820937714","n1820938278","n1820938058","n1820938706","n1820938989","n1820938313","n1820938520","n1820938288","n1820937689","n1820939537","n1820939531","n1820939019","n1820937527","n1820938455","n1820938814","n1820938045","n1820939627","n1820938213","n1820938161","n1820938331","n1820938024","n1820938220","n1820938062","n1820938178","n1820937796","n1820937644","n1820938490","n1820937589","n1820937879","n1820939614","n1820938882","n1820938039","n1820938538","n1820937667","n1820937719","n1820938561","n1820939658","n1820938783","n1820938601","n1820938198","n1820938388","n1820938969","n1820937687","n1820939086","n1820939665","n1820939187","n1820938498","n1820938261","n1820937983","n1820938068","n1820938136","n1820939061","n1820938137","n1820938186","n1820939071","n1820937592","n1820939669","n1820937553","n1820939357","n1820938727","n1820939371","n1820939112","n1820939079","n1820938743","n1820938467","n1820938834","n1820938022","n1820938537","n1820938122","n1820938516","n1820937614","n1820937612","n1820939469","n1820939636","n1820939050","n1820939552","n1820938157","n1820938663","n1820938955","n1820939091","n1820938430","n1820938471","n1820937809","n1820938074","n1820938208","n1820938914","n1820938858","n1820938417","n1820937531","n1820938107","n1820939100","n1820938751","n1820937711","n1820938824","n1820939745","n1820937572","n1820938602","n1820938212","n1820938097","n1820937921","n1820938090","n1820938511","n1820938876","n1820939762","n1820938234","n1820938048","n1820937774","n1820937856","n1820937749","n1820937765","n1820938286","n1820939095","n1820938480","n1820939229","n1820938277","n1820937617","n1820938311","n1820937622","n1820939196","n1820937690","n1820939006","n1820939287","n1820939131","n1820938106","n1820938784","n1820938335","n1820938095","n1820938182","n1820937715","n1820937683","n1820938070","n1820939605","n1820938527","n1820938763","n1820938398","n1820937686","n1820939621","n1820937664","n1820939277","n1820938565","n1820939539","n1820938099","n1820939646","n1820938556","n1820937548","n1820938729","n1820939336","n1820938259","n1820938728","n1820938361","n1820937643","n1820938644","n1820939007","n1820939690","n1820939227","n1820937635","n1820937950","n1820938682","n1820939150","n1820939012","n1820939261","n1820939111","n1820937805","n1820939691","n1820939677","n1820937628","n1820937811","n1820938790","n1820938251","n1820938226","n1820938942","n1820937633","n1820937984","n1820937751","n1820939673","n1820938970","n1820938415","n1820938597","n1820938309","n1820938111","n1820938472","n1820938894","n1820938402","n1820937593","n1820938570","n1820939102","n1820939775","n1820937948","n1820939121","n1820937511","n1820938787","n1820939720","n1820939075","n1820937880","n1820937742","n1820937721","n1820939535","n1820938486","n1820938354","n1820937632","n1820939010","n1820938885","n1820938089","n1820937613","n1820938442","n1820938245","n1820938272","n1820937566","n1820938295","n1820938532","n1820938883","n1820937713","n1820937674","n1820939635","n1820938448","n1820938355","n1820938587","n1820938559","n1820937787","n1820939301","n1820937723","n1820939056","n1820937560","n1820938323","n1820938230","n1820938453","n1820938377","n1820938357","n1820939637","n1820938017","n1820939540","n1820939376","n1820937639","n1820937642","n1820938075","n1820938351","n1820938766","n1820937897","n1820938973","n1820938066","n1820939547","n1820939652","n1820937944","n1820937748","n1820939234","n1820939193","n1820937891","n1820938785","n1820939132","n1820938523","n1820938884","n1820938411","n1820939554","n1820938791","n1820937655","n1820938368","n1820939152","n1820938030","n1820938447","n1820937580","n1820939628","n1820937588","n1820937894","n1820939201","n1820938086","n1820937650","n1820938379","n1820939008","n1820938999","n1820937524","n1820937872","n1820938389","n1820939197","n1820938422","n1820938936","n1820939262","n1820937634","n1820938583","n1820939589","n1820937901","n1820939034","n1820939065","n1820938290","n1820939195","n1820938228","n1820937884","n1820938797","n1820938191","n1820939191","n1820939198","n1820937892","n1820939679","n1820938507","n1820937647","n1820937909","n1820938542","n1820939598","n1820937851","n1820939084","n1820939728","n1820937688","n1820938263","n1820938670","n1820937762","n1820939310","n1820938925","n1820938862","n1820938822","n1820938547","n1820937731","n1820938594","n1820938592","n1820938214","n1820938284","n1820937835","n1820938599","n1820939437","n1820937834","n1820937576","n1820937692","n1820939586","n1820939546","n1820938403","n1820937970","n1820939561","n1820938098","n1820938851","n1820938477","n1820938892","n1820939045","n1820939758","n1820939350","n1820938321","n1820938440","n1820938595","n1820938364","n1820938962","n1820938118","n1820939678","n1820938406","n1820938549","n1820937555","n1820938823","n1820937521","n1820939471","n1820939487","n1820938799","n1820938605","n1820937928","n1820938373","n1820939747","n1820939629","n1820937557","n1820937526","n1820938958","n1820938833","n1820937636","n1820938967","n1820938760","n1820938842","n1820938067","n1820939077","n1820939224","n1820938185","n1820939110","n1820938372","n1820939757","n1820939063","n1820939660","n1820938813","n1820937528","n1820938369","n1820938896","n1820939551","n1820939683","n1820937660","n1820937873","n1820938810","n1820938478","n1820939662","n1820937595","n1820939052","n1820938113","n1820939070","n1820938733","n1820937878","n1820938300","n1820939760","n1820939718","n1820937646","n1820939057","n1820939443","n1914861306","n1820938013","n1820937529","n1820939764","n1820938826","n1820937885","n1820939588","n1820937865","n1820937833","n1914861112","n1820938761","n1914861007","n1820937905","n1820938541","n1820939092","n1914861057","n1820938153","n1820938267","n1820939265","n1820938085","n1820939018","n1820939755","n1820938474","n1820939027","n1820938593","n1820938202","n1820939599","n1820939695","n1820938077","n1820938012","n1820939545","n1820939596","n1820939337","n1820938227","n1820937698","n1820938475","n1820939465","n1820938165","n1820938698","n1820938525","n1820938529","n1820938553","n1820938940","n1820939498","n1820938501","n1820939533","n1820938924","n1820939634","n1820939220","n1820939657","n1820938887","n1820938838","n1820938114","n1820937823","n1820938778","n1820938801","n1820939096","n1820938981","n1820937953","n1820938732","n1820938980","n1820938960","n1820937949","n1820938026","n1820939273","n1841425201","n1820938629","n1820938864","n1820938554","n1820938088","n1820937685","n1841425222","n1820939729","n1820937665","n1820937838","n1820937739","n1820938780","n1820937821","n1820938825","n1820939055","n1820939485","n1820938041","n1820938746","n1820939562","n1820938459","n1820939489","n1820938050","n1820937980","n1820937695","n1820938413","n1820938555","n1820937703","n1820938536","n1820938196","n1820938287","n1820938169","n1820939279","n1820938531","n1820938959","n1820939741","n1820938665","n1820938963","n1820939611","n1820937653","n1820939618","n1820939492","n1820938600","n1820938628","n1820939312","n1820939616","n1820937738","n1820939001","n1820939062","n1820938794","n1820938558","n1820937822","n1820937532","n1820939073","n1820938200","n1820938241","n1820938968","n1820938927","n1820938306","n1820937630","n1820938456","n1820937694","n1820938908","n1820939076","n1820937522","n1820939659","n1820938522","n1820939318","n1820938932","n1820938841","n1820937579","n1820937540","n1820938560","n1821139530","n1820938964","n1820937662","n1820939281","n1821139533","n1820937797","n1821139532","n1820939751","n1821139531","n1820939291","n1820938420","n1820939696","n1820938904","n1820938484","n1820939448","n1820939009","n1820938735","n1820938986","n1820938937","n1820939030","n1820938734","n1820938745","n1820939106","n1820938987","n1820937858","n1820938673","n1820938620","n1820937808","n1820937700","n1820939573","n1820938540","n1820937661","n1820937570","n1820938396","n1820937875","n1820939048","n1820938233","n1820938793","n1820939584","n1820938412","n1820938394","n1820937846","n1820938800","n1820938690","n1820939331","n1820939630","n1820938762","n1820938710","n1820939322","n1820938992","n1821137608","n1821137607","n1820937924","n1820939139","n1820939463","n1820939574","n1820938294","n1820938071","n1820938307","n1820938061","n1820939260","n1820937899","n1820938310","n1820938983","n1820937530","n1820938993","n1820938890","n1820937915","n1820938231","n1820938040","n1820938920","n1820939585","n1820938135","n1820939700","n1820937824","n1820939667","n1820937930","n1820938134","n1820937551","n1820939405","n1820938232","n1820937716","n1820937848","n1820939765","n1820939068","n1820939766","n1820937933","n1820937720","n1820939222","n1820939772","n1820939022","n1820939732","n1820937702","n1820937691","n1820938945","n1820937756","n1820938451","n1820938410","n1820938798","n1820937945","n1820937654","n1820938598","n1820938836","n1820937571","n1820937556","n1820938994","n1820938919","n1820938863","n1820939064","n1820938018","n1820937658","n1820937537","n1820938142","n1820938666","n1820937535","n1820939571","n1820938465","n1820939638","n1820937533","n1820939656","n1820939422","n1820938109","n1820938405","n1820938028","n1820937649","n1820938829","n1820939031","n1820939155","n1820938350","n1820938463","n1820938425","n1820939047","n1820938831","n1820938494","n1820937697","n1820938504","n1820938900","n1820937784","n1820938414","n1820938076","n1820938723","n1820937722","n1820938739","n1820937791","n1820938985","n1820938352","n1820938293","n1820938274","n1820939692","n1820937871","n1820939059","n1820938868","n1820937877","n1820937743","n1820938429","n1820937545","n1820937575","n1820938302","n1820938505","n1820938916","n1820938374","n1820938329","n1820937790","n1820939735","n1820938930","n1820937995","n1820938512","n1820938130","n1820938194","n1820938671","n1820938802","n1820937542","n1820937602","n1820939069","n1820938901","n1820939654","n1820937727","n1820939569","n1820938375","n1820939306","n1820938479","n1820938376","n1820938667","n1820937766","n1820939467","n1820939567","n1820937806","n1820938943","n1820938931","n1820937745","n1820939452","n1820938738","n1820938053","n1820939653","n1820938640","n1820937604","n1820937536","n1820938701","n1820939625","n1820939744","n1820939572","n1820937577","n1820937541","n1820938891","n1820937597","n1820938469","n1820939194","n1820937539","n1820938911","n1820939017","n1820939650","n1820939103","n1820939578","n1820938132","n1820937549","n1820938634","n1820939743","n1820937544","n1820937826","n1820937598","n1820937547","n1820938032","n1820939142"]},"w17963021":{"id":"w17963021","tags":{"highway":"residential"},"nodes":["n185948706","n185948708","n185948710"]},"w203974069":{"id":"w203974069","tags":{"amenity":"shelter","area":"yes","building":"yes","shelter_type":"picnic_shelter"},"nodes":["n2139870431","n2139870432","n2139870433","n2139870434","n2139870431"]},"w209816575":{"id":"w209816575","tags":{"area":"yes","building":"yes"},"nodes":["n2199856288","n2199856289","n2199856290","n2199856291","n2199856292","n2199856293","n2199856294","n2199856295","n2199856296","n2199856297","n2199856298","n2199856299","n2199856300","n2199856301","n2199856302","n2199856303","n2199856288"]},"w203841838":{"id":"w203841838","tags":{"area":"yes","natural":"water"},"nodes":["n2138493826","n2138493827","n2138493828","n2138493829","n2138493830","n2138493831","n2138493833","n2138493832","n2138493826"]},"w203972937":{"id":"w203972937","tags":{"highway":"path","name":"Riverwalk Trail","surface":"asphalt","width":"3"},"nodes":["n2139858882","n2139858883","n2139858884","n2139858885","n2139858886","n2139858887","n2139858882","n2139858888","n2139858889","n2139858890","n2139858891","n2139858892","n2139858893","n2139858894","n2139858895","n2139858896","n2139858897","n2139858898","n2139858899","n2139858900","n2139858901","n2139858902","n2139858903","n2139858986","n2139858904","n2139858995","n2139858905","n2139858906","n2139858907","n2139858908","n2139858909","n2139858910","n2139858911","n2139858912","n2139858913","n2139858914","n2139858915","n2139858916","n2139858917","n2139858918","n2139858919","n2139858920","n2139858921","n2139858922","n2139858923","n2139858924","n2139858925","n2139858926","n2139858927","n2139858982","n2139858928","n2139858929","n2139858930","n2139858931","n2139858932","n2139858981","n2139858933","n2139858934","n2139858935","n2139858936","n2139858937","n2139858938","n2139858939","n2139858940","n2139858941","n2139858942","n2139858943","n2140006437","n2139858964","n2139858944","n2139858966","n2139858945","n2139858946","n2139858947","n2139858948","n2139858949","n2139858950","n2139858951"]},"w17964015":{"id":"w17964015","tags":{"highway":"residential"},"nodes":["n185954680","n185954683","n185954685","n185954687","n185954689","n185954690","n185954691","n2139870379","n2139870456","n185954692","n185954693","n185954695"]},"w17967315":{"id":"w17967315","tags":{"highway":"residential","name":"South Andrews Street"},"nodes":["n185981999","n185974477","n185964963"]},"w203974071":{"id":"w203974071","tags":{"highway":"footway"},"nodes":["n2139870439","n2139870440","n2139870441","n2139870442","n2139870443","n2139870444","n2139870445","n2139870446","n2139870447","n2139870448","n2139870449"]},"w170848824":{"id":"w170848824","tags":{"name":"Rocky River","waterway":"river"},"nodes":["n1819858503","n1819858531","n1819858526","n1819858518","n1819858505","n1819858508","n1819858512","n1819858514","n1819858528","n1819858509","n1819858511","n1819858507","n1819858521"]},"w203986458":{"id":"w203986458","tags":{"amenity":"shelter","area":"yes","shelter_type":"picnic_shelter"},"nodes":["n2139989357","n2139989359","n2139989360","n2139989362","n2139989357"]},"w170844917":{"id":"w170844917","tags":{"waterway":"riverbank"},"nodes":["n1819805911","n1819805690","n1819805812","n1819805766","n1819805802","n1819805885","n1819805626","n1819805842","n1819805715","n1819805694","n1819805618","n1819805629","n1819805731","n1819805636","n1819805878","n1819805718","n1819805798","n1819849057","n1819805666","n1819805852","n1819805805","n1819805789","n1819805868","n1819805680","n1819805918","n1819848888","n1819805762","n2139989328","n1819805907","n2139989330","n1819805915","n1819858521","n1819805854","n1819805876","n1819805864","n1819805922","n2139859004","n1819805702","n2139859003","n1819805614","n1819805792","n1819805786","n1819805777","n1819805645","n1819805838","n1819805889","n1819805795","n1819805707","n1819805774","n1819805808","n1819805810","n1819805724","n1819805676","n1819805728","n1819805783","n1819805687","n1819805727","n2189123379","n1819805632","n1819805641","n1819805760","n1819805887","n1819805861","n1819805722","n1819805880","n2139982405","n2139982399","n2139982400","n1819805770","n2139982402","n2139982403","n2139982401","n1819805780","n1819805834","n2139982406","n1819805698","n1819805647","n1819805870","n1819805683","n1819805622","n1819805639","n1819805858","n1819805643","n1819805673","n1819805925","n1819805849","n1819805711","n1819805846","n1819805669","n1819805883","n1819805814","n1819805873","n1819805911"]},"w17967326":{"id":"w17967326","tags":{"highway":"residential","name":"North Constantine Street"},"nodes":["n185985217","n185985219","n185985221","n185985222","n185985223","n185985225","n2140006431","n185985227","n185985229","n185985231","n185985233","n185985235","n185985238","n185985240","n2140018998","n185964965"]},"w134150789":{"id":"w134150789","tags":{"highway":"primary","name":"West Michigan Avenue","old_ref":"US 131","ref":"US 131 Business;M 60"},"nodes":["n185964971","n2139870406","n185964972"]},"w17966400":{"id":"w17966400","tags":{"highway":"tertiary","name":"South Constantine Street"},"nodes":["n185958672","n185964965"]},"w203974066":{"id":"w203974066","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139870417","n2139870418","n2139870420","n2139870419"]},"w17965998":{"id":"w17965998","tags":{"name":"Conrail Railroad","railway":"rail"},"nodes":["n185972775","n185972777","n185972779","n185972781","n185972783","n185972785","n185972787","n185972788","n185972789","n185972790","n185972791","n185972793","n185972795","n185972797","n185972798","n185972800","n185972802","n185972805","n185972807","n185972809","n185972811","n185972813","n185972814","n185972815","n185972816","n185972817","n185972819","n185972821","n185972824","n185972826","n185972830","n185972832","n185972834","n185972835","n185972836","n185972839","n185990434","n2114807572","n2114807568","n185972845","n2114807583","n185972847","n185972849","n185972851","n2114807578","n1475293254","n2114807593","n1475293226","n185972862","n2114807565","n185951869","n1475293234","n1475293252","n185972868","n1475293264","n1475293222","n185972878","n1475293261","n185972882","n185972885","n1475293260","n1475293240","n185972891","n185972895","n185972897","n185972899","n2130304159","n1475284023","n185972903"]},"w134150795":{"id":"w134150795","tags":{"bridge":"yes","highway":"primary","name":"West Michigan Avenue","old_ref":"US 131","ref":"US 131 Business;M 60"},"nodes":["n185964970","n185964971"]},"w203974067":{"id":"w203974067","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139870420","n2139870421"]},"w170995908":{"id":"w170995908","tags":{"highway":"residential","name":"Thomas Street"},"nodes":["n1821006702","n1821006700","n1821006698","n2139858990","n1821006716","n1821006725","n1821006712","n1821006704","n1821006708","n1821006710","n1821006706"]},"w17965834":{"id":"w17965834","tags":{"highway":"residential","name":"Spring Street"},"nodes":["n185971361","n185971364","n185971366","n185971368","n185954695","n185964968"]},"w203974070":{"id":"w203974070","tags":{"amenity":"shelter","area":"yes","building":"yes","shelter_type":"picnic_shelter"},"nodes":["n2139870435","n2139870436","n2139870437","n2139870438","n2139870435"]},"w203989879":{"id":"w203989879","tags":{"highway":"service"},"nodes":["n2140018998","n2140018999","n2140019000"]},"w203974062":{"id":"w203974062","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139870387","n2139870388","n2139870389","n2139870390","n2139870391","n2139870392","n2139870397","n2139870393","n2139870396","n2139870395","n2139870394","n2139870387"]},"w203974061":{"id":"w203974061","tags":{"bridge":"yes","highway":"footway"},"nodes":["n2139870382","n2139870383"]},"w203049587":{"id":"w203049587","tags":{"area":"yes","name":"Scidmore Park Petting Zoo","tourism":"zoo","zoo":"petting_zoo"},"nodes":["n2130304133","n2130304136","n2130304138","n2130304140","n2130304142","n2130304144","n2130304146","n2130304147","n2130304148","n2130304149","n2130304150","n2130304151","n2130304133"]},"w203972941":{"id":"w203972941","tags":{"highway":"path"},"nodes":["n2139858982","n2139858983","n2139858984","n2139858985","n2139858927"]},"w203974065":{"id":"w203974065","tags":{"highway":"service"},"nodes":["n2139870406","n2139870407","n2139870408","n2139870417","n2139870409","n2139870410","n2139870411","n2139870412","n2139870426","n2139870413","n2139870414","n2139870415","n2139870419","n2139870416","n2139870421","n2139870408"]},"w203972940":{"id":"w203972940","tags":{"highway":"path","name":"Riverwalk Trail"},"nodes":["n2139858934","n2139858967","n2139858968","n2139858969","n2139858970","n2139858971","n2139858972","n2139858973","n2139858974","n2139858975","n2139858976","n2139858977","n2139858978","n2139858979","n2139858980","n2139858981"]},"w203974072":{"id":"w203974072","tags":{"highway":"footway"},"nodes":["n2139858925","n2139870450","n2139870453","n2139870451","n2139870452","n2139870441"]},"w203974074":{"id":"w203974074","tags":{"highway":"footway"},"nodes":["n2139870454","n2139870456","n2139870429"]},"w203974060":{"id":"w203974060","tags":{"highway":"footway"},"nodes":["n2139870383","n2139870384","n2139870422","n2139870385","n2139870386","n2139870388"]},"w203841837":{"id":"w203841837","tags":{"area":"yes","natural":"water"},"nodes":["n2138493807","n2138493808","n2138493809","n2138493810","n2138493811","n2138493812","n2138493813","n2138493814","n2138493815","n2138493816","n2138493825","n2138493817","n2138493824","n2138493818","n2138493819","n2138493820","n2138493821","n2138493822","n2138493823","n2138493807"]},"w134150845":{"id":"w134150845","tags":{"bridge":"yes","name":"Conrail Railroad","railway":"rail"},"nodes":["n185972903","n185972905"]},"w203974059":{"id":"w203974059","tags":{"highway":"footway"},"nodes":["n2139870430","n2139870439","n2139870429","n2139870428","n2139870379","n2139870455","n2139870380","n2139870381","n2139858925","n2139870382"]},"w203986457":{"id":"w203986457","tags":{"area":"yes","leisure":"park","name":"Scidmore Park"},"nodes":["n2139989333","n2139989335","n2139989337","n2139989339","n1819805762","n2139989328","n1819805907","n2139989330","n1819805915","n2139989341","n2139989344","n2139989346","n2139989348","n2139989350","n2139989351","n2139989353","n2139989355","n2139989333"]},"w170848331":{"id":"w170848331","tags":{"name":"Rocky River","waterway":"river"},"nodes":["n1819848937","n1819849104","n1819849076","n1819849183","n1819848928","n1819848972","n1819848948","n1819848971","n1819848859","n1819849008","n1819848889","n1819849026","n1819849094","n1819849083","n1819849079","n1819849187","n1819848992","n1819849060","n1819849056","n1819849071","n1819849067","n1819849048","n1819849036","n1819849150","n1819849075","n1819849051","n1819849062","n1819848926","n1819849035","n1819848987","n1819849012","n1819848933","n1819848996","n1819848990","n1819849005","n1819849021","n1819848892","n1819849092","n1819848863","n1819848922","n1819848858","n1819848855","n1819848974","n1819848953","n1819849019","n1819849049","n1819848979","n1819849140","n1819849193","n1819849147","n1819849151","n1819849163","n1819849023","n1819848878","n1819849004","n1819848857","n1819848879","n1819849041","n1819849165","n1819849107","n1819849156","n1819848934","n1819848914","n1819848955","n1819848931","n1819848927","n1819849084","n1819849169","n1819849045","n1819848945","n1819849095","n1819848924","n1819849171","n1819849141","n1819849046","n1819849197","n1819849011","n1819849108","n1819849158","n1819849160","n1819848870","n1819849006","n1819849157","n1819848993","n1819848970","n1819849202","n1819848903","n1819848975","n1819848849","n1819849025","n1819849105","n1819849033","n1819849176","n1819849099","n1819849086","n1819848960","n1819848961","n1819849001","n1819848980","n1819849038","n1819848854","n1819849127","n1819849170","n1819849139","n1819848873","n1819848929","n1819849201","n1819849121","n1819849031","n1819849131","n1819848875","n1819849080","n1819849066","n1819849081","n1819849096","n1819849172","n1819849114","n1819849182","n1819848905","n1819849054","n1819848920","n1819848851","n1819848968","n1819848917","n1819849111","n1819849119","n1819849074","n1819848893","n1819849129","n1819848850","n1819848956","n1819849154","n1819848877","n1819848986","n1819849191","n1819848952","n1819848954","n1819848942","n1819849028","n1819849195","n1819848938","n1819848962","n1819849070","n1819849034","n1819849052","n1819849059","n1819848916","n1819849162","n1819849167","n1819849093","n1819849030","n1819849002","n1819849161","n1819848886","n1819848958","n1819849064","n1819849112","n1819849148","n1819848856","n1819848976","n1819848977","n1819849144","n1819848918","n1819849200","n1819848919","n1819849042","n1819849166","n1819849186","n1819849152","n1819849058","n1819849185","n1819849199","n1819849053","n1819849194","n1819849068","n1819849146","n1819849174","n1819848967","n1819848932","n1819849155","n1819849198","n1819848964","n1819848894","n1819848969","n1819849184","n1819849055","n1819849179","n1819848865","n1819848860","n1819849082","n1819848966","n1819849040","n1819849069","n1819849078","n1819849077","n1819848904","n1819848959","n1819849133","n1819849089","n1819849000","n1819849124","n1819849032","n1819849097","n1819848939","n1819849072","n1819848915","n1819849196","n1819848946","n1819849047","n1819849029","n1819849164","n1819848994","n1819849022","n1819858513","n1819849126","n1819849063","n1819848941","n1819849085","n1819848871","n1819848943","n1819849192","n1819858501","n1819849159","n1819858523","n1819848901","n1819849189","n1819858503","n1819849065","n2139877106","n1819848909","n1819848930","n1819848888"]},"w17967397":{"id":"w17967397","tags":{"highway":"residential","name":"North Andrews Street"},"nodes":["n185964963","n185985217"]},"w17964497":{"id":"w17964497","tags":{"highway":"tertiary","name":"Constantine St"},"nodes":["n185958643","n185958645","n2139795852","n185958647","n185958649","n185958651","n185958653","n185958656","n185958658","n185958660","n185958662","n185958664","n185958666","n185958668","n185958670","n185948710","n185958672"]},"w203974068":{"id":"w203974068","tags":{"highway":"footway"},"nodes":["n2139870422","n2139870423","n2139870424","n2139870425","n2139870426","n2139870427"]},"w203974063":{"id":"w203974063","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139870398","n2139870399","n2139870400","n2139870401","n2139870398"]},"w203986459":{"id":"w203986459","tags":{"amenity":"shelter","area":"yes","shelter_type":"picnic_shelter"},"nodes":["n2139989364","n2139989366","n2139989368","n2139989370","n2139989364"]},"w203988286":{"id":"w203988286","tags":{"area":"yes","leisure":"park","name":"Memory Isle Park"},"nodes":["n2140006331","n2140006334","n2140006336","n2140006338","n2140006340","n2140006342","n2140006344","n2140006346","n2140006348","n2140006351","n2140006353","n2140006355","n2140006357","n2140006359","n2140006361","n2140006363","n2140006364","n2140006365","n2140006395","n2140006366","n2140006401","n2140006397","n2140006399","n2140006331"]},"w203974073":{"id":"w203974073","tags":{"highway":"footway"},"nodes":["n2139870453","n2139870454","n2139870455"]},"w203974064":{"id":"w203974064","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139870402","n2139870403","n2139870404","n2139870405","n2139870402"]},"n185966959":{"id":"n185966959","loc":[-85.642185,41.946411]},"n1475283980":{"id":"n1475283980","loc":[-85.6398249,41.9451425]},"n1475284013":{"id":"n1475284013","loc":[-85.6396448,41.9451666]},"n1475284042":{"id":"n1475284042","loc":[-85.6386382,41.9454789]},"n185975925":{"id":"n185975925","loc":[-85.6393332,41.9452388]},"n185975919":{"id":"n185975919","loc":[-85.6391279,41.9453044]},"n185975917":{"id":"n185975917","loc":[-85.6389034,41.9453872]},"n2140006369":{"id":"n2140006369","loc":[-85.6386163,41.9451631]},"n2140006370":{"id":"n2140006370","loc":[-85.6385144,41.9449357]},"n2140006417":{"id":"n2140006417","loc":[-85.6385785,41.9450299]},"n2140006419":{"id":"n2140006419","loc":[-85.6385781,41.9452152]},"n2189123361":{"id":"n2189123361","loc":[-85.6404948,41.947015]},"n2189123363":{"id":"n2189123363","loc":[-85.6395765,41.946495]},"n2189123365":{"id":"n2189123365","loc":[-85.6389347,41.9460875]},"n185966962":{"id":"n185966962","loc":[-85.644417,41.946364]},"n185975911":{"id":"n185975911","loc":[-85.637532,41.9458276]},"n185975913":{"id":"n185975913","loc":[-85.6376323,41.9457936]},"n185975915":{"id":"n185975915","loc":[-85.6383596,41.9455425]},"n185975932":{"id":"n185975932","loc":[-85.644403,41.945088]},"n185975934":{"id":"n185975934","loc":[-85.645486,41.945084]},"n185979974":{"id":"n185979974","loc":[-85.644381,41.943831]},"n2139795809":{"id":"n2139795809","loc":[-85.6464756,41.9450813]},"n2139795810":{"id":"n2139795810","loc":[-85.6466646,41.945174]},"n2139858952":{"id":"n2139858952","loc":[-85.6383567,41.9454039]},"n2139858953":{"id":"n2139858953","loc":[-85.6380506,41.9455301]},"n2139858954":{"id":"n2139858954","loc":[-85.6377321,41.9455546]},"n2139858955":{"id":"n2139858955","loc":[-85.6376571,41.9455245]},"n2139858956":{"id":"n2139858956","loc":[-85.6375859,41.9454544]},"n2139858957":{"id":"n2139858957","loc":[-85.6376686,41.9453185]},"n2139858958":{"id":"n2139858958","loc":[-85.6378936,41.9451712]},"n2139858959":{"id":"n2139858959","loc":[-85.6379225,41.9450825]},"n2139858960":{"id":"n2139858960","loc":[-85.6379302,41.9447564]},"n2139858961":{"id":"n2139858961","loc":[-85.6379763,41.9446963]},"n2139858962":{"id":"n2139858962","loc":[-85.6380436,41.9446706]},"n2139858963":{"id":"n2139858963","loc":[-85.6381286,41.9445969]},"n2139858965":{"id":"n2139858965","loc":[-85.6382523,41.9444134]},"n2140006367":{"id":"n2140006367","loc":[-85.6380923,41.9454418]},"n2140006368":{"id":"n2140006368","loc":[-85.6384089,41.9453146]},"n2140006372":{"id":"n2140006372","loc":[-85.6383252,41.9447706]},"n2140006374":{"id":"n2140006374","loc":[-85.6381033,41.9447436]},"n2140006376":{"id":"n2140006376","loc":[-85.6379759,41.9447815]},"n2140006378":{"id":"n2140006378","loc":[-85.6379832,41.9448654]},"n2140006380":{"id":"n2140006380","loc":[-85.6380632,41.9450738]},"n2140006382":{"id":"n2140006382","loc":[-85.6380414,41.9452064]},"n2140006389":{"id":"n2140006389","loc":[-85.6379068,41.9453092]},"n2140006391":{"id":"n2140006391","loc":[-85.637925,41.9453904]},"n2140006393":{"id":"n2140006393","loc":[-85.6379977,41.94545]},"n2189123275":{"id":"n2189123275","loc":[-85.6371346,41.9462544]},"n2189123278":{"id":"n2189123278","loc":[-85.6368371,41.9466153]},"n2189123280":{"id":"n2189123280","loc":[-85.6379537,41.9489088]},"n2189123282":{"id":"n2189123282","loc":[-85.6383816,41.9497858]},"n2189123285":{"id":"n2189123285","loc":[-85.6393673,41.9512417]},"n2189123287":{"id":"n2189123287","loc":[-85.640554,41.9517766]},"n2189123289":{"id":"n2189123289","loc":[-85.6411,41.9522344]},"n2189123291":{"id":"n2189123291","loc":[-85.6417418,41.9526574]},"n2189123293":{"id":"n2189123293","loc":[-85.642321,41.9529407]},"n2189123295":{"id":"n2189123295","loc":[-85.6427697,41.9532278]},"n2189123297":{"id":"n2189123297","loc":[-85.6433332,41.9538254]},"n2189123300":{"id":"n2189123300","loc":[-85.6435785,41.9543648]},"n2189123301":{"id":"n2189123301","loc":[-85.6444394,41.9541048]},"n2189123303":{"id":"n2189123303","loc":[-85.6450603,41.954]},"n2189123312":{"id":"n2189123312","loc":[-85.6454829,41.9539108]},"n2189123314":{"id":"n2189123314","loc":[-85.6460464,41.9538526]},"n2189123315":{"id":"n2189123315","loc":[-85.6463178,41.9537167]},"n2189123316":{"id":"n2189123316","loc":[-85.646276,41.9534141]},"n2189123317":{"id":"n2189123317","loc":[-85.6459995,41.9531541]},"n2189123318":{"id":"n2189123318","loc":[-85.645222,41.9531929]},"n2189123319":{"id":"n2189123319","loc":[-85.6447316,41.9531813]},"n2189123320":{"id":"n2189123320","loc":[-85.6440637,41.9532977]},"n2189123321":{"id":"n2189123321","loc":[-85.6438185,41.9531774]},"n2189123322":{"id":"n2189123322","loc":[-85.6440011,41.9528398]},"n2189123323":{"id":"n2189123323","loc":[-85.6442672,41.9525914]},"n2189123324":{"id":"n2189123324","loc":[-85.6442881,41.9523276]},"n2189123326":{"id":"n2189123326","loc":[-85.644262,41.952153]},"n2189123328":{"id":"n2189123328","loc":[-85.6441681,41.9520404]},"n2189123330":{"id":"n2189123330","loc":[-85.6442098,41.9517494]},"n2189123333":{"id":"n2189123333","loc":[-85.6438498,41.9515864]},"n2189123336":{"id":"n2189123336","loc":[-85.6435889,41.9513225]},"n2189123339":{"id":"n2189123339","loc":[-85.6425349,41.9510315]},"n2189123342":{"id":"n2189123342","loc":[-85.6422688,41.9508802]},"n2189123345":{"id":"n2189123345","loc":[-85.6418775,41.9508142]},"n2189123348":{"id":"n2189123348","loc":[-85.6415488,41.9508064]},"n2189123351":{"id":"n2189123351","loc":[-85.6411027,41.9505488]},"n2189123353":{"id":"n2189123353","loc":[-85.6410374,41.9498208]},"n2189123355":{"id":"n2189123355","loc":[-85.6410061,41.9494327]},"n2189123357":{"id":"n2189123357","loc":[-85.6411522,41.9482569]},"n2189123359":{"id":"n2189123359","loc":[-85.6410548,41.9473036]},"n2189123368":{"id":"n2189123368","loc":[-85.6380216,41.9458974]},"n2189123370":{"id":"n2189123370","loc":[-85.6386721,41.9507782]},"w17968193":{"id":"w17968193","tags":{"highway":"residential","name":"French St"},"nodes":["n185970906","n185982877","n185967774","n185985823","n185979974"]},"w203972939":{"id":"w203972939","tags":{"highway":"path"},"nodes":["n2139858965","n2139858966"]},"w203988289":{"id":"w203988289","tags":{"area":"yes","natural":"water"},"nodes":["n2140006367","n2140006368","n2140006419","n2140006369","n2140006417","n2140006370","n2140006372","n2140006374","n2140006376","n2140006378","n2140006380","n2140006382","n2140006389","n2140006391","n2140006393","n2140006367"]},"w208640157":{"id":"w208640157","tags":{"area":"yes","natural":"wetland"},"nodes":["n1819849029","n2189123275","n2189123278","n2189123280","n2189123282","n2189123370","n2189123285","n2189123287","n2189123289","n2189123291","n2189123293","n2189123295","n2189123297","n2189123300","n2189123301","n2189123303","n2189123312","n2189123314","n2189123315","n2189123316","n2189123317","n2189123318","n2189123319","n2189123320","n2189123321","n2189123322","n2189123323","n2189123324","n2189123326","n2189123328","n2189123330","n2189123333","n2189123336","n2189123339","n2189123342","n2189123345","n2189123348","n2189123351","n2189123353","n2189123355","n2189123357","n2189123359","n2189123361","n2189123363","n2189123365","n2189123368","n1819849029"]},"w17966281":{"id":"w17966281","tags":{"highway":"residential","name":"Pealer St"},"nodes":["n185975911","n185975913","n185975915","n1475284042","n185975917","n185975919","n185975925","n185970909","n1475284013","n1475283980","n185975928","n185967775","n185975930","n185975932","n185975934","n2139795809","n2139795810"]},"w17965353":{"id":"w17965353","tags":{"highway":"residential","name":"Yauney St"},"nodes":["n185966958","n185966959","n185966960","n185966962"]},"w203972938":{"id":"w203972938","tags":{"highway":"path","name":"Riverwalk Trail"},"nodes":["n2139858964","n2139858965","n2139858963","n2139858962","n2139858961","n2139858960","n2139858959","n2139858958","n2139858957","n2139858956","n2139858955","n2139858954","n2139858953","n2139858952","n2139858951"]},"n354002665":{"id":"n354002665","loc":[-85.6366599,41.9444923],"tags":{"name":"Memory Isle","place":"island"}},"n354031301":{"id":"n354031301","loc":[-85.635,41.9463889],"tags":{"amenity":"post_office","name":"Three Rivers Post Office"}},"n185963454":{"id":"n185963454","loc":[-85.633686,41.946072]},"n185963455":{"id":"n185963455","loc":[-85.633815,41.946131]},"n185963456":{"id":"n185963456","loc":[-85.633951,41.946174]},"n185978375":{"id":"n185978375","loc":[-85.634385,41.94559]},"n185978377":{"id":"n185978377","loc":[-85.634544,41.945725]},"n185978379":{"id":"n185978379","loc":[-85.634573,41.945764]},"n185978381":{"id":"n185978381","loc":[-85.634616,41.945849]},"n185978383":{"id":"n185978383","loc":[-85.634629,41.945893]},"n185984011":{"id":"n185984011","loc":[-85.636058,41.946201]},"n185984013":{"id":"n185984013","loc":[-85.636112,41.946366]},"n185984015":{"id":"n185984015","loc":[-85.636143,41.946551]},"n185988237":{"id":"n185988237","loc":[-85.6354162,41.946044]},"n185988969":{"id":"n185988969","loc":[-85.635374,41.945325]},"n185988971":{"id":"n185988971","loc":[-85.635643,41.945585]},"n185988972":{"id":"n185988972","loc":[-85.635853,41.94586]},"n1475283992":{"id":"n1475283992","loc":[-85.6372968,41.9459007]},"n1475284011":{"id":"n1475284011","loc":[-85.6359415,41.9459797]},"n1475284019":{"id":"n1475284019","loc":[-85.6364433,41.9460423]},"n185984009":{"id":"n185984009","loc":[-85.6360524,41.9460485]},"n185988239":{"id":"n185988239","loc":[-85.6358187,41.9460423]},"n185988243":{"id":"n185988243","loc":[-85.6366156,41.9460282]},"n185988244":{"id":"n185988244","loc":[-85.6368316,41.9460046]},"n185988245":{"id":"n185988245","loc":[-85.6370133,41.9459704]},"n185988241":{"id":"n185988241","loc":[-85.636291,41.9460461]},"n185964976":{"id":"n185964976","loc":[-85.633923,41.9434157]},"n185964980":{"id":"n185964980","loc":[-85.6333656,41.9437293]},"n185978388":{"id":"n185978388","loc":[-85.6346449,41.9460571]},"n1819858504":{"id":"n1819858504","loc":[-85.6365343,41.9447926]},"n1819858506":{"id":"n1819858506","loc":[-85.6370546,41.9451882]},"n1819858516":{"id":"n1819858516","loc":[-85.6358369,41.9444654]},"n1819858519":{"id":"n1819858519","loc":[-85.6361534,41.9446176]},"n1819858525":{"id":"n1819858525","loc":[-85.6368025,41.9449442]},"n1819858527":{"id":"n1819858527","loc":[-85.6334199,41.9457495]},"n185963452":{"id":"n185963452","loc":[-85.633564,41.9458519]},"n185963453":{"id":"n185963453","loc":[-85.6336152,41.9459804]},"n185963451":{"id":"n185963451","loc":[-85.6332888,41.9456871]},"n2130304152":{"id":"n2130304152","loc":[-85.6359466,41.9454599]},"n2130304153":{"id":"n2130304153","loc":[-85.6362773,41.9452683]},"n2130304154":{"id":"n2130304154","loc":[-85.6352028,41.9442868]},"n2130304155":{"id":"n2130304155","loc":[-85.6348756,41.9444769]},"n2130304156":{"id":"n2130304156","loc":[-85.6349723,41.9444207]},"n2130304157":{"id":"n2130304157","loc":[-85.6338698,41.9434443]},"n2130304158":{"id":"n2130304158","loc":[-85.635094,41.9451026]},"n2130304160":{"id":"n2130304160","loc":[-85.6353716,41.9449322]},"n2130304162":{"id":"n2130304162","loc":[-85.6365942,41.9459352]},"n2130304163":{"id":"n2130304163","loc":[-85.6369006,41.9457469]},"n2130304164":{"id":"n2130304164","loc":[-85.6363292,41.9452278]},"n2130304165":{"id":"n2130304165","loc":[-85.6360248,41.9454175]},"n2139824683":{"id":"n2139824683","loc":[-85.6339825,41.9446441]},"n2139824689":{"id":"n2139824689","loc":[-85.6340437,41.9446925]},"n2139824702":{"id":"n2139824702","loc":[-85.6340961,41.9447551]},"n2139824705":{"id":"n2139824705","loc":[-85.6337467,41.944809]},"n2139824707":{"id":"n2139824707","loc":[-85.6341598,41.9448129]},"n2139824710":{"id":"n2139824710","loc":[-85.6342771,41.9448223]},"n2139824712":{"id":"n2139824712","loc":[-85.6346058,41.944841]},"n2139824713":{"id":"n2139824713","loc":[-85.633808,41.9448574]},"n2139824714":{"id":"n2139824714","loc":[-85.6340889,41.9448589]},"n2139824716":{"id":"n2139824716","loc":[-85.6343335,41.944871]},"n2139824717":{"id":"n2139824717","loc":[-85.6343341,41.9448717]},"n2139824720":{"id":"n2139824720","loc":[-85.6338757,41.9449069]},"n2139824721":{"id":"n2139824721","loc":[-85.6341445,41.9449071]},"n2139824724":{"id":"n2139824724","loc":[-85.6334787,41.9449262]},"n2139824726":{"id":"n2139824726","loc":[-85.6347119,41.9449332]},"n2139824727":{"id":"n2139824727","loc":[-85.6347175,41.9449418]},"n2139824728":{"id":"n2139824728","loc":[-85.6344284,41.9449538]},"n2139824729":{"id":"n2139824729","loc":[-85.6339339,41.9449573]},"n2139824730":{"id":"n2139824730","loc":[-85.6339179,41.9449682]},"n2139824732":{"id":"n2139824732","loc":[-85.6335472,41.9449895]},"n2139824733":{"id":"n2139824733","loc":[-85.6339736,41.9450164]},"n2139824735":{"id":"n2139824735","loc":[-85.6336034,41.9450415]},"n2139824736":{"id":"n2139824736","loc":[-85.6348317,41.945043]},"n2139824737":{"id":"n2139824737","loc":[-85.63403,41.9450651]},"n2139824738":{"id":"n2139824738","loc":[-85.6336611,41.9450949]},"n2139824740":{"id":"n2139824740","loc":[-85.6336582,41.9450966]},"n2139824744":{"id":"n2139824744","loc":[-85.6331702,41.9451107]},"n2139824745":{"id":"n2139824745","loc":[-85.6333388,41.9451142]},"n2139824746":{"id":"n2139824746","loc":[-85.6337131,41.9451341]},"n2139824747":{"id":"n2139824747","loc":[-85.6337021,41.9451372]},"n2139824748":{"id":"n2139824748","loc":[-85.6341244,41.9451472]},"n2139824749":{"id":"n2139824749","loc":[-85.6333952,41.945166]},"n2139824750":{"id":"n2139824750","loc":[-85.633395,41.9451661]},"n2139824751":{"id":"n2139824751","loc":[-85.6346258,41.9451725]},"n2139824752":{"id":"n2139824752","loc":[-85.6332387,41.9451741]},"n2139824753":{"id":"n2139824753","loc":[-85.6346901,41.9451853]},"n2139824754":{"id":"n2139824754","loc":[-85.6346611,41.9452035]},"n2139824755":{"id":"n2139824755","loc":[-85.6346574,41.9452059]},"n2139824756":{"id":"n2139824756","loc":[-85.6345611,41.9452133]},"n2139824757":{"id":"n2139824757","loc":[-85.633453,41.9452194]},"n2139824758":{"id":"n2139824758","loc":[-85.6335508,41.9452283]},"n2139824759":{"id":"n2139824759","loc":[-85.6347424,41.9452312]},"n2139824760":{"id":"n2139824760","loc":[-85.6342305,41.9452395]},"n2139824761":{"id":"n2139824761","loc":[-85.6342319,41.9452449]},"n2139824762":{"id":"n2139824762","loc":[-85.6334969,41.94526]},"n2139824763":{"id":"n2139824763","loc":[-85.63468,41.9452706]},"n2139824764":{"id":"n2139824764","loc":[-85.6346772,41.9452724]},"n2139824765":{"id":"n2139824765","loc":[-85.6338611,41.9452763]},"n2139824766":{"id":"n2139824766","loc":[-85.6347811,41.9452939]},"n2139824767":{"id":"n2139824767","loc":[-85.6347375,41.9453211]},"n2139824768":{"id":"n2139824768","loc":[-85.6339171,41.9453301]},"n2139824769":{"id":"n2139824769","loc":[-85.6348307,41.9453377]},"n2139824770":{"id":"n2139824770","loc":[-85.6347067,41.9453405]},"n2139824771":{"id":"n2139824771","loc":[-85.6343461,41.9453461]},"n2139824772":{"id":"n2139824772","loc":[-85.6343481,41.9453475]},"n2139824773":{"id":"n2139824773","loc":[-85.634805,41.9453538]},"n2139824774":{"id":"n2139824774","loc":[-85.6336997,41.9453692]},"n2139824775":{"id":"n2139824775","loc":[-85.6339709,41.9453818]},"n2139824776":{"id":"n2139824776","loc":[-85.6336229,41.9454134]},"n2139824777":{"id":"n2139824777","loc":[-85.6349022,41.9454141]},"n2139824778":{"id":"n2139824778","loc":[-85.6348854,41.9454246]},"n2139824779":{"id":"n2139824779","loc":[-85.6340286,41.9454373]},"n2139824780":{"id":"n2139824780","loc":[-85.6336963,41.9454572]},"n2139824781":{"id":"n2139824781","loc":[-85.6336789,41.9454672]},"n2139824782":{"id":"n2139824782","loc":[-85.6344933,41.945475]},"n2139824783":{"id":"n2139824783","loc":[-85.6340854,41.9454918]},"n2139824784":{"id":"n2139824784","loc":[-85.6350036,41.9455034]},"n2139824785":{"id":"n2139824785","loc":[-85.6337501,41.9455089]},"n2139824786":{"id":"n2139824786","loc":[-85.6337497,41.9455091]},"n2139824787":{"id":"n2139824787","loc":[-85.6345425,41.9455186]},"n2139824788":{"id":"n2139824788","loc":[-85.6341459,41.9455372]},"n2139824789":{"id":"n2139824789","loc":[-85.6341376,41.945542]},"n2139824790":{"id":"n2139824790","loc":[-85.6338394,41.9455462]},"n2139824791":{"id":"n2139824791","loc":[-85.6349171,41.9455588]},"n2139824792":{"id":"n2139824792","loc":[-85.6338074,41.9455646]},"n2139824793":{"id":"n2139824793","loc":[-85.6346229,41.9455894]},"n2139824794":{"id":"n2139824794","loc":[-85.6338983,41.9455995]},"n2139824795":{"id":"n2139824795","loc":[-85.6338962,41.9456007]},"n2139824796":{"id":"n2139824796","loc":[-85.6342475,41.9456348]},"n2139824797":{"id":"n2139824797","loc":[-85.6339505,41.9456497]},"n2139824798":{"id":"n2139824798","loc":[-85.6347243,41.9456788]},"n2139824799":{"id":"n2139824799","loc":[-85.635057,41.9456831]},"n2139824800":{"id":"n2139824800","loc":[-85.635287,41.9457056]},"n2139824801":{"id":"n2139824801","loc":[-85.6350753,41.9457068]},"n2139824802":{"id":"n2139824802","loc":[-85.6347753,41.9457252]},"n2139824803":{"id":"n2139824803","loc":[-85.6340521,41.9457473]},"n2139824804":{"id":"n2139824804","loc":[-85.6352875,41.9457611]},"n2139824805":{"id":"n2139824805","loc":[-85.6352941,41.9457611]},"n2139824806":{"id":"n2139824806","loc":[-85.6350758,41.9457623]},"n2139824807":{"id":"n2139824807","loc":[-85.6348194,41.9457638]},"n2139824808":{"id":"n2139824808","loc":[-85.635296,41.9459428]},"n2139824809":{"id":"n2139824809","loc":[-85.6348212,41.9459455]},"n2139832635":{"id":"n2139832635","loc":[-85.6354612,41.9448791]},"n2139832636":{"id":"n2139832636","loc":[-85.6360241,41.9453844]},"n2139832637":{"id":"n2139832637","loc":[-85.6361452,41.9453121]},"n2139832639":{"id":"n2139832639","loc":[-85.6355997,41.944797]},"n2139832641":{"id":"n2139832641","loc":[-85.6351346,41.9443541]},"n2139832647":{"id":"n2139832647","loc":[-85.6329883,41.9453692]},"n2139832653":{"id":"n2139832653","loc":[-85.6333643,41.9456293]},"n2139832663":{"id":"n2139832663","loc":[-85.6335394,41.9455339]},"n2139832665":{"id":"n2139832665","loc":[-85.6332375,41.9452476]},"n2139832667":{"id":"n2139832667","loc":[-85.6331664,41.9452161]},"n2139832669":{"id":"n2139832669","loc":[-85.6331144,41.9451875]},"n2139832671":{"id":"n2139832671","loc":[-85.6330779,41.9451274]},"n2139832673":{"id":"n2139832673","loc":[-85.6330664,41.9450802]},"n2139832678":{"id":"n2139832678","loc":[-85.6332218,41.9453585]},"n2139832686":{"id":"n2139832686","loc":[-85.6334246,41.945541]},"n2139832691":{"id":"n2139832691","loc":[-85.6329898,41.9454997]},"n2139832693":{"id":"n2139832693","loc":[-85.6343554,41.9443274]},"n2139832694":{"id":"n2139832694","loc":[-85.6336339,41.9437089]},"n2139832696":{"id":"n2139832696","loc":[-85.633532,41.9437708]},"n2139832697":{"id":"n2139832697","loc":[-85.6338316,41.9440868]},"n2139832698":{"id":"n2139832698","loc":[-85.6342258,41.9444141]},"n2139832699":{"id":"n2139832699","loc":[-85.6339164,41.9442166]},"n2139832700":{"id":"n2139832700","loc":[-85.6341389,41.944384]},"n2139832701":{"id":"n2139832701","loc":[-85.634235,41.9443259]},"n2139832702":{"id":"n2139832702","loc":[-85.633613,41.9437875]},"n2139832703":{"id":"n2139832703","loc":[-85.633915,41.9436132]},"n2139832704":{"id":"n2139832704","loc":[-85.6340019,41.9435613]},"n2139832706":{"id":"n2139832706","loc":[-85.6343197,41.9438427]},"n2139832708":{"id":"n2139832708","loc":[-85.6342361,41.9438936]},"n2139832709":{"id":"n2139832709","loc":[-85.6353839,41.9460401]},"n2139832710":{"id":"n2139832710","loc":[-85.6354032,41.9456763]},"n2139832711":{"id":"n2139832711","loc":[-85.6356839,41.9459252]},"n2139832712":{"id":"n2139832712","loc":[-85.6356109,41.945735]},"n2139832713":{"id":"n2139832713","loc":[-85.6353997,41.9457421]},"n2139832714":{"id":"n2139832714","loc":[-85.6353895,41.9459347]},"n2139832715":{"id":"n2139832715","loc":[-85.6334777,41.9436628]},"n2139832716":{"id":"n2139832716","loc":[-85.6333137,41.9435382]},"n2139832717":{"id":"n2139832717","loc":[-85.6330938,41.9435406]},"n2139832721":{"id":"n2139832721","loc":[-85.6333023,41.9434922]},"n2139832722":{"id":"n2139832722","loc":[-85.6330466,41.943623]},"n2139832723":{"id":"n2139832723","loc":[-85.6332746,41.9435624]},"n2139832724":{"id":"n2139832724","loc":[-85.6333511,41.9435176]},"n2139832725":{"id":"n2139832725","loc":[-85.6332241,41.9434001]},"n2139832726":{"id":"n2139832726","loc":[-85.6332355,41.9433686]},"n2139870373":{"id":"n2139870373","loc":[-85.6351783,41.9439117]},"n2139870374":{"id":"n2139870374","loc":[-85.6351431,41.9439217]},"n2139870375":{"id":"n2139870375","loc":[-85.6348853,41.9439117]},"n2139870376":{"id":"n2139870376","loc":[-85.6348317,41.9439105]},"n2139870377":{"id":"n2139870377","loc":[-85.6346384,41.944007]},"n2139870378":{"id":"n2139870378","loc":[-85.6345563,41.9440523]},"n2140006403":{"id":"n2140006403","loc":[-85.6359942,41.9450097]},"n2140006405":{"id":"n2140006405","loc":[-85.6363884,41.9446079]},"n2140006407":{"id":"n2140006407","loc":[-85.6362148,41.9447874]},"n2140006409":{"id":"n2140006409","loc":[-85.6379476,41.9445869]},"n2140006411":{"id":"n2140006411","loc":[-85.6378485,41.9445674]},"n2140006413":{"id":"n2140006413","loc":[-85.6378952,41.9444547]},"n2140006415":{"id":"n2140006415","loc":[-85.6379962,41.944477]},"n2140006421":{"id":"n2140006421","loc":[-85.6355248,41.9433702]},"n2140006423":{"id":"n2140006423","loc":[-85.6378471,41.9439233]},"n2140006425":{"id":"n2140006425","loc":[-85.6378913,41.9441238]},"n2140006426":{"id":"n2140006426","loc":[-85.6381674,41.9442289]},"n2140006427":{"id":"n2140006427","loc":[-85.6382359,41.9440975]},"n2140006428":{"id":"n2140006428","loc":[-85.6382071,41.9440252]},"n2140006429":{"id":"n2140006429","loc":[-85.6381409,41.9439973]},"n2140006430":{"id":"n2140006430","loc":[-85.6380569,41.9440153]},"n2140006433":{"id":"n2140006433","loc":[-85.6379071,41.9442467]},"n2140006435":{"id":"n2140006435","loc":[-85.6381634,41.9443125]},"n2140006436":{"id":"n2140006436","loc":[-85.6382407,41.944301]},"n2140006438":{"id":"n2140006438","loc":[-85.6382761,41.9442188]},"n2140006439":{"id":"n2140006439","loc":[-85.6382429,41.9441761]},"n2140006440":{"id":"n2140006440","loc":[-85.6382016,41.9441632]},"n2140006441":{"id":"n2140006441","loc":[-85.6378185,41.9439835]},"n2166205688":{"id":"n2166205688","loc":[-85.6349963,41.9444392]},"n2168544780":{"id":"n2168544780","loc":[-85.633944,41.945807]},"n2168544781":{"id":"n2168544781","loc":[-85.6340783,41.9458621]},"n2168544782":{"id":"n2168544782","loc":[-85.6338184,41.9457548]},"n2168544783":{"id":"n2168544783","loc":[-85.6339925,41.9459777]},"n2168544784":{"id":"n2168544784","loc":[-85.6337317,41.9458698]},"n2168544785":{"id":"n2168544785","loc":[-85.6337297,41.9460042]},"n2168544786":{"id":"n2168544786","loc":[-85.633919,41.9460797]},"n2168544787":{"id":"n2168544787","loc":[-85.6338672,41.9459263]},"n2168544788":{"id":"n2168544788","loc":[-85.6338246,41.9459853]},"n2168544789":{"id":"n2168544789","loc":[-85.6337615,41.9459601]},"n2168544790":{"id":"n2168544790","loc":[-85.6342079,41.9460399]},"n2168544791":{"id":"n2168544791","loc":[-85.6343346,41.9458503]},"n2168544792":{"id":"n2168544792","loc":[-85.6343759,41.9458116]},"n2168544793":{"id":"n2168544793","loc":[-85.6344394,41.9458109]},"n2168544795":{"id":"n2168544795","loc":[-85.6344827,41.945851]},"n2168544797":{"id":"n2168544797","loc":[-85.6344807,41.945969]},"n2168544798":{"id":"n2168544798","loc":[-85.6344404,41.9459697]},"n2168544799":{"id":"n2168544799","loc":[-85.6344413,41.9460333]},"n2168544800":{"id":"n2168544800","loc":[-85.6342173,41.9460705]},"n2168544801":{"id":"n2168544801","loc":[-85.6342162,41.9460392]},"n2168544802":{"id":"n2168544802","loc":[-85.6344251,41.9460351]},"n2168544805":{"id":"n2168544805","loc":[-85.6344257,41.9460507]},"n2168544807":{"id":"n2168544807","loc":[-85.6344721,41.9460498]},"n2168544809":{"id":"n2168544809","loc":[-85.6344754,41.9461427]},"n2168544811":{"id":"n2168544811","loc":[-85.6344311,41.9461435]},"n2168544813":{"id":"n2168544813","loc":[-85.6344317,41.9461592]},"n2168544815":{"id":"n2168544815","loc":[-85.6343708,41.9461604]},"n2168544817":{"id":"n2168544817","loc":[-85.6343715,41.9461786]},"n2168544819":{"id":"n2168544819","loc":[-85.6343229,41.9461795]},"n2168544821":{"id":"n2168544821","loc":[-85.6343222,41.9461606]},"n2168544823":{"id":"n2168544823","loc":[-85.6342476,41.9461621]},"n2168544825":{"id":"n2168544825","loc":[-85.6342444,41.94607]},"n2168544827":{"id":"n2168544827","loc":[-85.634138,41.9461632]},"n2168544829":{"id":"n2168544829","loc":[-85.6342016,41.9460703]},"n2168544830":{"id":"n2168544830","loc":[-85.6332929,41.9463092]},"n2168544831":{"id":"n2168544831","loc":[-85.633122,41.946239]},"n2168544832":{"id":"n2168544832","loc":[-85.6332954,41.9460055]},"n2168544833":{"id":"n2168544833","loc":[-85.6333954,41.9460466]},"n2168544834":{"id":"n2168544834","loc":[-85.6334044,41.9460345]},"n2168544835":{"id":"n2168544835","loc":[-85.6334594,41.9460571]},"n2168544836":{"id":"n2168544836","loc":[-85.6333871,41.9461544]},"n2168544837":{"id":"n2168544837","loc":[-85.633403,41.9461609]},"n2168544838":{"id":"n2168544838","loc":[-85.6341683,41.9464167]},"n2168544839":{"id":"n2168544839","loc":[-85.6341711,41.9463411]},"n2168544840":{"id":"n2168544840","loc":[-85.6344471,41.9463469]},"n2168544841":{"id":"n2168544841","loc":[-85.6344441,41.9464243]},"n2168544842":{"id":"n2168544842","loc":[-85.6343622,41.9464226]},"n2168544843":{"id":"n2168544843","loc":[-85.6343593,41.9464989]},"n2168544844":{"id":"n2168544844","loc":[-85.6342812,41.9464973]},"n2168544845":{"id":"n2168544845","loc":[-85.634283,41.9464504]},"n2168544846":{"id":"n2168544846","loc":[-85.6342609,41.9464499]},"n2168544847":{"id":"n2168544847","loc":[-85.6342621,41.9464187]},"n2168544848":{"id":"n2168544848","loc":[-85.6348414,41.9463396]},"n2168544849":{"id":"n2168544849","loc":[-85.6348387,41.9461872]},"n2168544850":{"id":"n2168544850","loc":[-85.6351186,41.9461844]},"n2168544851":{"id":"n2168544851","loc":[-85.635119,41.9462112]},"n2168544852":{"id":"n2168544852","loc":[-85.6351918,41.9462104]},"n2168544853":{"id":"n2168544853","loc":[-85.6351944,41.9463515]},"n2168544854":{"id":"n2168544854","loc":[-85.6351049,41.9463524]},"n2168544855":{"id":"n2168544855","loc":[-85.6351046,41.946337]},"n2189153180":{"id":"n2189153180","loc":[-85.6340369,41.9469572]},"n2189153181":{"id":"n2189153181","loc":[-85.6342531,41.946953]},"n2189153183":{"id":"n2189153183","loc":[-85.6348115,41.9465468]},"n2189153184":{"id":"n2189153184","loc":[-85.6348105,41.9464569]},"n2189153185":{"id":"n2189153185","loc":[-85.6351431,41.9464549]},"n2189153186":{"id":"n2189153186","loc":[-85.6351441,41.9465448]},"n2189153187":{"id":"n2189153187","loc":[-85.6350077,41.9465456]},"n2189153188":{"id":"n2189153188","loc":[-85.635008,41.9465721]},"n2189153189":{"id":"n2189153189","loc":[-85.6348965,41.9465727]},"n2189153190":{"id":"n2189153190","loc":[-85.6348962,41.9465463]},"n2189153191":{"id":"n2189153191","loc":[-85.6348963,41.9471586]},"n2189153192":{"id":"n2189153192","loc":[-85.6348944,41.947032]},"n2189153193":{"id":"n2189153193","loc":[-85.6350241,41.947031]},"n2189153194":{"id":"n2189153194","loc":[-85.635026,41.9471575]},"n2189153195":{"id":"n2189153195","loc":[-85.6352328,41.9471053]},"n2189153196":{"id":"n2189153196","loc":[-85.6352359,41.9469906]},"n2189153197":{"id":"n2189153197","loc":[-85.6353694,41.9469925]},"n2189153198":{"id":"n2189153198","loc":[-85.6353664,41.9471072]},"n2189153199":{"id":"n2189153199","loc":[-85.6348241,41.9469287]},"n2189153200":{"id":"n2189153200","loc":[-85.6348248,41.9468185]},"n2189153201":{"id":"n2189153201","loc":[-85.6351199,41.9468195]},"n2189153202":{"id":"n2189153202","loc":[-85.6351192,41.9469298]},"n2189153203":{"id":"n2189153203","loc":[-85.6347965,41.9468057]},"n2189153204":{"id":"n2189153204","loc":[-85.634792,41.9466044]},"n2189153205":{"id":"n2189153205","loc":[-85.6349483,41.9466025]},"n2189153206":{"id":"n2189153206","loc":[-85.6349493,41.9466448]},"n2189153207":{"id":"n2189153207","loc":[-85.6349753,41.9466445]},"n2189153208":{"id":"n2189153208","loc":[-85.6349743,41.9465995]},"n2189153209":{"id":"n2189153209","loc":[-85.6351173,41.9465977]},"n2189153210":{"id":"n2189153210","loc":[-85.6351219,41.9468015]},"n2189153211":{"id":"n2189153211","loc":[-85.6349806,41.9468032]},"n2189153212":{"id":"n2189153212","loc":[-85.6349794,41.9467519]},"n2189153213":{"id":"n2189153213","loc":[-85.6349521,41.9467523]},"n2189153214":{"id":"n2189153214","loc":[-85.6349532,41.9468037]},"n2189153215":{"id":"n2189153215","loc":[-85.6346302,41.9468381]},"n2189153216":{"id":"n2189153216","loc":[-85.6343028,41.9468449]},"n2189153217":{"id":"n2189153217","loc":[-85.6342006,41.9468297]},"n2189153218":{"id":"n2189153218","loc":[-85.6336698,41.9465918]},"n2189153219":{"id":"n2189153219","loc":[-85.6344663,41.9466639]},"n2189153220":{"id":"n2189153220","loc":[-85.6344639,41.9466015]},"n2189153221":{"id":"n2189153221","loc":[-85.6342283,41.9466065]},"n2189153222":{"id":"n2189153222","loc":[-85.6342303,41.9466587]},"n2189153223":{"id":"n2189153223","loc":[-85.6342843,41.9466575]},"n2189153224":{"id":"n2189153224","loc":[-85.6342851,41.9466794]},"n2189153225":{"id":"n2189153225","loc":[-85.6343475,41.9466781]},"n2189153226":{"id":"n2189153226","loc":[-85.634347,41.9466664]},"n2189153227":{"id":"n2189153227","loc":[-85.6354428,41.9470148]},"n2189153228":{"id":"n2189153228","loc":[-85.6354432,41.9468005]},"n2189153229":{"id":"n2189153229","loc":[-85.6360277,41.9468011]},"n2189153230":{"id":"n2189153230","loc":[-85.6360273,41.9470154]},"n2189153231":{"id":"n2189153231","loc":[-85.6354565,41.9465823]},"n2189153232":{"id":"n2189153232","loc":[-85.6354496,41.946218]},"n2189153233":{"id":"n2189153233","loc":[-85.6356355,41.9465788]},"n2189153234":{"id":"n2189153234","loc":[-85.6357155,41.9468008]},"n2189153235":{"id":"n2189153235","loc":[-85.6359539,41.9467969]},"n2189153236":{"id":"n2189153236","loc":[-85.6359561,41.9463036]},"n2189153237":{"id":"n2189153237","loc":[-85.6360129,41.9464793]},"n2189153238":{"id":"n2189153238","loc":[-85.6360152,41.9463898]},"n2189153239":{"id":"n2189153239","loc":[-85.6359607,41.9464928]},"n2189153240":{"id":"n2189153240","loc":[-85.6356903,41.9462227]},"n2189153242":{"id":"n2189153242","loc":[-85.6354163,41.946142]},"n2189153243":{"id":"n2189153243","loc":[-85.6357546,41.9462214]},"n2189153244":{"id":"n2189153244","loc":[-85.6357937,41.9462542]},"n2189153245":{"id":"n2189153245","loc":[-85.6358723,41.9467048]},"n2189153246":{"id":"n2189153246","loc":[-85.6361494,41.946757]},"n2189153247":{"id":"n2189153247","loc":[-85.6354173,41.9469082]},"n2189153248":{"id":"n2189153248","loc":[-85.635443,41.9469079]},"n2189153249":{"id":"n2189153249","loc":[-85.6360275,41.9469093]},"n2189153250":{"id":"n2189153250","loc":[-85.6361542,41.946915]},"n2189153251":{"id":"n2189153251","loc":[-85.6358654,41.9464843]},"n2189153252":{"id":"n2189153252","loc":[-85.6359549,41.9467499]},"n2189153253":{"id":"n2189153253","loc":[-85.6357172,41.9466335]},"n2189153254":{"id":"n2189153254","loc":[-85.6355644,41.9461768]},"n2189153255":{"id":"n2189153255","loc":[-85.6355655,41.946528]},"n2189153256":{"id":"n2189153256","loc":[-85.6357055,41.9465971]},"n2189153257":{"id":"n2189153257","loc":[-85.635869,41.9465971]},"n2189153259":{"id":"n2189153259","loc":[-85.6354561,41.9470278]},"n2189153260":{"id":"n2189153260","loc":[-85.6357961,41.9470233]},"n2189153261":{"id":"n2189153261","loc":[-85.6357977,41.9470907]},"n2189153262":{"id":"n2189153262","loc":[-85.6357297,41.9470916]},"n2189153263":{"id":"n2189153263","loc":[-85.635733,41.947233]},"n2189153264":{"id":"n2189153264","loc":[-85.6362674,41.9468637]},"n2189153265":{"id":"n2189153265","loc":[-85.6362646,41.9467047]},"n2189153266":{"id":"n2189153266","loc":[-85.6363267,41.9467047]},"n2189153267":{"id":"n2189153267","loc":[-85.6362633,41.9465848]},"n2189153268":{"id":"n2189153268","loc":[-85.6363805,41.9465468]},"n2189153269":{"id":"n2189153269","loc":[-85.6364604,41.9466842]},"n2189153270":{"id":"n2189153270","loc":[-85.6364604,41.9468647]},"n2199109756":{"id":"n2199109756","loc":[-85.6337134,41.9471841]},"n2199109757":{"id":"n2199109757","loc":[-85.6336514,41.94716]},"n2199109758":{"id":"n2199109758","loc":[-85.6337043,41.9470847]},"n2199109759":{"id":"n2199109759","loc":[-85.6335997,41.9470441]},"n2199109760":{"id":"n2199109760","loc":[-85.6335064,41.9471771]},"n185960195":{"id":"n185960195","loc":[-85.6295992,41.9524346]},"n185960796":{"id":"n185960796","loc":[-85.634723,41.953681]},"n185961396":{"id":"n185961396","loc":[-85.634767,41.959009]},"n185962625":{"id":"n185962625","loc":[-85.635175,41.97201]},"n185964982":{"id":"n185964982","loc":[-85.632799,41.9440543]},"n185965289":{"id":"n185965289","loc":[-85.634621,41.947323]},"n185965291":{"id":"n185965291","loc":[-85.636166,41.947296]},"n185965399":{"id":"n185965399","loc":[-85.634776,41.959834]},"n185966937":{"id":"n185966937","loc":[-85.633183,41.947315]},"n185966948":{"id":"n185966948","loc":[-85.626406,41.957188]},"n185967422":{"id":"n185967422","loc":[-85.6320229,41.9490123]},"n185967917":{"id":"n185967917","loc":[-85.634763,41.958292]},"n185967918":{"id":"n185967918","loc":[-85.636271,41.958311]},"n185968100":{"id":"n185968100","loc":[-85.630835,41.950656]},"n185970515":{"id":"n185970515","loc":[-85.634832,41.963866]},"n185971578":{"id":"n185971578","loc":[-85.634641,41.948627]},"n185971580":{"id":"n185971580","loc":[-85.6361818,41.9486135]},"n185971631":{"id":"n185971631","loc":[-85.634729,41.954667]},"n185971632":{"id":"n185971632","loc":[-85.636236,41.954656]},"n185972155":{"id":"n185972155","loc":[-85.623333,41.961987]},"n185974583":{"id":"n185974583","loc":[-85.634686,41.951158]},"n185974585":{"id":"n185974585","loc":[-85.6362059,41.9511457]},"n185975064":{"id":"n185975064","loc":[-85.636218,41.953667]},"n185975735":{"id":"n185975735","loc":[-85.634923,41.969269]},"n185978390":{"id":"n185978390","loc":[-85.634668,41.949875]},"n185978392":{"id":"n185978392","loc":[-85.634686,41.952415]},"n185978394":{"id":"n185978394","loc":[-85.634726,41.955921]},"n185978399":{"id":"n185978399","loc":[-85.6347861,41.9606613]},"n185978402":{"id":"n185978402","loc":[-85.634806,41.961485]},"n185978406":{"id":"n185978406","loc":[-85.6348298,41.964783]},"n185978410":{"id":"n185978410","loc":[-85.6348766,41.9677088]},"n185978414":{"id":"n185978414","loc":[-85.634938,41.971566]},"n185978415":{"id":"n185978415","loc":[-85.634942,41.971611]},"n185978417":{"id":"n185978417","loc":[-85.634952,41.971655]},"n185978419":{"id":"n185978419","loc":[-85.634989,41.971741]},"n185978420":{"id":"n185978420","loc":[-85.635063,41.971864]},"n185978787":{"id":"n185978787","loc":[-85.627936,41.954693]},"n185978790":{"id":"n185978790","loc":[-85.626832,41.954677]},"n185978967":{"id":"n185978967","loc":[-85.632278,41.948613]},"n185980735":{"id":"n185980735","loc":[-85.628639,41.953725]},"n185982163":{"id":"n185982163","loc":[-85.636233,41.952398]},"n185982193":{"id":"n185982193","loc":[-85.6313855,41.9499125]},"n185982195":{"id":"n185982195","loc":[-85.6304857,41.9511945]},"n185982196":{"id":"n185982196","loc":[-85.626336,41.957291]},"n185982197":{"id":"n185982197","loc":[-85.625578,41.958664]},"n185982198":{"id":"n185982198","loc":[-85.624619,41.960145]},"n185982200":{"id":"n185982200","loc":[-85.624494,41.960338]},"n185984017":{"id":"n185984017","loc":[-85.636163,41.947382]},"n185984020":{"id":"n185984020","loc":[-85.636188,41.9498803]},"n185984022":{"id":"n185984022","loc":[-85.636276,41.955919]},"n185984024":{"id":"n185984024","loc":[-85.636279,41.956901]},"n185988036":{"id":"n185988036","loc":[-85.631422,41.948294]},"n185988867":{"id":"n185988867","loc":[-85.63102,41.948805]},"n185988869":{"id":"n185988869","loc":[-85.630773,41.949209]},"n185988871":{"id":"n185988871","loc":[-85.63005,41.95016]},"n185988872":{"id":"n185988872","loc":[-85.629423,41.951016]},"n185988873":{"id":"n185988873","loc":[-85.629252,41.951256]},"n185988875":{"id":"n185988875","loc":[-85.629126,41.951489]},"n185988877":{"id":"n185988877","loc":[-85.628991,41.951704]},"n185988878":{"id":"n185988878","loc":[-85.628689,41.952112]},"n185988879":{"id":"n185988879","loc":[-85.628313,41.952666]},"n185988880":{"id":"n185988880","loc":[-85.627687,41.953529]},"n185988882":{"id":"n185988882","loc":[-85.627394,41.953947]},"n185988884":{"id":"n185988884","loc":[-85.627287,41.954128]},"n1819858502":{"id":"n1819858502","loc":[-85.6328435,41.9455473]},"n1819858510":{"id":"n1819858510","loc":[-85.6324841,41.9453438]},"n1819858515":{"id":"n1819858515","loc":[-85.6318511,41.9446409]},"n1819858520":{"id":"n1819858520","loc":[-85.6326558,41.9454708]},"n1819858522":{"id":"n1819858522","loc":[-85.6319048,41.9447407]},"n1819858524":{"id":"n1819858524","loc":[-85.6317718,41.9443666]},"n1819858530":{"id":"n1819858530","loc":[-85.632055,41.9449128]},"n2139795768":{"id":"n2139795768","loc":[-85.6243023,41.9606102]},"n2139832645":{"id":"n2139832645","loc":[-85.6324455,41.9448607]},"n2139832649":{"id":"n2139832649","loc":[-85.6328043,41.9454773]},"n2139832651":{"id":"n2139832651","loc":[-85.6322547,41.9449621]},"n2139832675":{"id":"n2139832675","loc":[-85.6327356,41.944757]},"n2139832677":{"id":"n2139832677","loc":[-85.6325433,41.9448599]},"n2139832680":{"id":"n2139832680","loc":[-85.6328885,41.9455614]},"n2139832682":{"id":"n2139832682","loc":[-85.6320913,41.9449492]},"n2139832684":{"id":"n2139832684","loc":[-85.6325366,41.9447133]},"n2139832688":{"id":"n2139832688","loc":[-85.6322786,41.94485]},"n2139832718":{"id":"n2139832718","loc":[-85.6327486,41.9432475]},"n2139832719":{"id":"n2139832719","loc":[-85.6327926,41.9431773]},"n2139832720":{"id":"n2139832720","loc":[-85.6329033,41.943153]},"n2139832727":{"id":"n2139832727","loc":[-85.6328975,41.9430783]},"n2139844839":{"id":"n2139844839","loc":[-85.6326261,41.9432308]},"n2189015992":{"id":"n2189015992","loc":[-85.6347706,41.9593383]},"n2189153179":{"id":"n2189153179","loc":[-85.6340476,41.9472565]},"n2189153182":{"id":"n2189153182","loc":[-85.6342638,41.9472522]},"n2189153241":{"id":"n2189153241","loc":[-85.6354184,41.9473091]},"n2189153258":{"id":"n2189153258","loc":[-85.6354611,41.9472366]},"n2189153277":{"id":"n2189153277","loc":[-85.6328948,41.9462374]},"n2199109755":{"id":"n2199109755","loc":[-85.6336729,41.9472417]},"w203970139":{"id":"w203970139","tags":{"building":"yes"},"nodes":["n2139824793","n2139824787","n2139824773","n2139824778","n2139824793"]},"w203970098":{"id":"w203970098","tags":{"building":"yes"},"nodes":["n2139824748","n2139824712","n2139824726","n2139824760","n2139824748"]},"w208643132":{"id":"w208643132","tags":{"area":"yes","building":"yes"},"nodes":["n2189153195","n2189153196","n2189153197","n2189153198","n2189153195"]},"w203970094":{"id":"w203970094","tags":{"building":"yes"},"nodes":["n2139824755","n2139824753","n2139824759","n2139824764","n2139824763","n2139824767","n2139824770","n2139824782","n2139824772","n2139824756","n2139824751","n2139824754","n2139824755"]},"w208643138":{"id":"w208643138","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153231","n2189153232","n2189153240","n2189153244","n2189153236","n2189153238","n2189153237","n2189153239","n2189153252","n2189153235","n2189153234","n2189153253","n2189153233","n2189153231"]},"w203970125":{"id":"w203970125","tags":{"building":"yes"},"nodes":["n2139824735","n2139824738","n2139824757","n2139824749","n2139824735"]},"w170848823":{"id":"w170848823","tags":{"name":"Rocky River","waterway":"river"},"nodes":["n1819849189","n1819858516","n1819858519","n1819858504","n1819858525","n1819858506","n1819858513"]},"w203970898":{"id":"w203970898","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832645","n2139832647","n2139832649","n2139832651","n2139832645"]},"w203970134":{"id":"w203970134","tags":{"building":"yes"},"nodes":["n2139824796","n2139824803","n2139824797","n2139824788","n2139824796"]},"w203970104":{"id":"w203970104","tags":{"building":"yes"},"nodes":["n2139824733","n2139824730","n2139824714","n2139824721","n2139824733"]},"w206805245":{"id":"w206805245","tags":{"area":"yes","building":"yes"},"nodes":["n2168544780","n2168544781","n2139824796","n2139824803","n2168544780"]},"w206805252":{"id":"w206805252","tags":{"area":"yes","building":"yes"},"nodes":["n2168544838","n2168544839","n2168544840","n2168544841","n2168544842","n2168544843","n2168544844","n2168544845","n2168544846","n2168544847","n2168544838"]},"w203970099":{"id":"w203970099","tags":{"building":"yes"},"nodes":["n2139824783","n2139824795","n2139824790","n2139824779","n2139824783"]},"w17967730":{"id":"w17967730","tags":{"highway":"residential","name":"Water St"},"nodes":["n185963451","n2189153277","n185988036","n185988867","n185988869","n185988871","n185988872","n185988873","n185988875","n185988877","n185988878","n185988879","n185988880","n185988882","n185988884","n185978790"]},"w208643133":{"id":"w208643133","tags":{"area":"yes","building":"yes"},"nodes":["n2189153199","n2189153200","n2189153201","n2189153202","n2189153199"]},"w203970127":{"id":"w203970127","tags":{"building":"yes"},"nodes":["n2139824794","n2139824783","n2139824789","n2139824797","n2139824794"]},"w208643139":{"id":"w208643139","tags":{"highway":"service"},"nodes":["n185988237","n2189153242","n2189153247","n2189153241"]},"w203988297":{"id":"w203988297","tags":{"amenity":"parking","area":"yes"},"nodes":["n2140006423","n2140006441","n2140006425","n2140006426","n2140006440","n2140006427","n2140006428","n2140006429","n2140006430","n2140006423"]},"w206805250":{"id":"w206805250","tags":{"area":"yes","building":"yes"},"nodes":["n2168544827","n2168544823","n2168544825","n2168544800","n2168544829","n2168544827"]},"w208643140":{"id":"w208643140","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153242","n2189153254","n2189153243","n2189153244","n2189153251","n2189153257","n2189153245","n2189153252","n2189153246"]},"w203974055":{"id":"w203974055","tags":{"bridge":"yes","highway":"path","name":"Riverwalk Trail"},"nodes":["n2139870376","n2139870377"]},"w206805247":{"id":"w206805247","tags":{"area":"yes","building":"yes"},"nodes":["n2168544785","n2168544786","n2168544783","n2168544787","n2168544788","n2168544789","n2168544785"]},"w17964996":{"id":"w17964996","tags":{"highway":"residential","name":"Foster St"},"nodes":["n1819858524","n1819858515","n1819858522","n1819858530","n2139832682","n1819858510","n1819858520","n1819858502","n2139832680","n185963451","n1819858527","n185963452","n185963453","n185963454","n185963455","n185963456"]},"w208643144":{"id":"w208643144","tags":{"area":"yes","building":"yes"},"nodes":["n2189153264","n2189153265","n2189153266","n2189153267","n2189153268","n2189153269","n2189153270","n2189153264"]},"w203970914":{"id":"w203970914","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832722","n2139832723","n2139832724","n2139832725","n2139832726","n2139832727","n2139844839","n2139832722"]},"w208643143":{"id":"w208643143","tags":{"area":"yes","building":"yes"},"nodes":["n2189153258","n2189153259","n2189153260","n2189153261","n2189153262","n2189153263","n2189153258"]},"w203049590":{"id":"w203049590","tags":{"amenity":"parking","area":"yes"},"nodes":["n2130304152","n2130304153","n2140006403","n2130304154","n2130304156","n2130304155","n2130304160","n2130304152"]},"w203974054":{"id":"w203974054","tags":{"highway":"path","name":"Riverwalk Trail"},"nodes":["n2139858971","n2139870373","n2139870374"]},"w203049595":{"id":"w203049595","tags":{"highway":"service"},"nodes":["n2130304158","n2130304159","n2130304160","n2139832635","n2139832639"]},"w203970913":{"id":"w203970913","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139832715","n2139832716","n2139832717","n2139832718","n2139832719","n2139832720","n2139832721","n2139832716"]},"w208643134":{"id":"w208643134","tags":{"area":"yes","building":"yes"},"nodes":["n2189153203","n2189153204","n2189153205","n2189153206","n2189153207","n2189153208","n2189153209","n2189153210","n2189153211","n2189153212","n2189153213","n2189153214","n2189153203"]},"w134150808":{"id":"w134150808","tags":{"bridge":"yes","highway":"residential","name":"Moore St"},"nodes":["n185988239","n185984009","n185988241","n1475284019"]},"w203970115":{"id":"w203970115","tags":{"building":"yes"},"nodes":["n2139824761","n2139824727","n2139824736","n2139824771","n2139824761"]},"w208643130":{"id":"w208643130","tags":{"area":"yes","building":"yes"},"nodes":["n2189153183","n2189153184","n2189153185","n2189153186","n2189153187","n2189153188","n2189153189","n2189153190","n2189153183"]},"w206805246":{"id":"w206805246","tags":{"area":"yes","building":"yes"},"nodes":["n2168544782","n2168544780","n2168544781","n2168544783","n2168544787","n2168544784","n2168544782"]},"w203970138":{"id":"w203970138","tags":{"building":"yes"},"nodes":["n2139824729","n2139824720","n2139824702","n2139824707","n2139824729"]},"w203970133":{"id":"w203970133","tags":{"building":"yes"},"nodes":["n2139824748","n2139824737","n2139824717","n2139824728","n2139824748"]},"w203970907":{"id":"w203970907","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139832700","n2139832701","n2139832702"]},"w203974056":{"id":"w203974056","tags":{"highway":"path","name":"Riverwalk Trail"},"nodes":["n2139870377","n2139870378"]},"w203970897":{"id":"w203970897","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2130304156","n2166205688","n2139832635","n2139832636","n2139832637","n2139832639","n2139832641","n2166205688"]},"w203974057":{"id":"w203974057","tags":{"highway":"path","name":"Riverwalk Trail"},"nodes":["n2139870375","n2139870376"]},"w203049594":{"id":"w203049594","tags":{"highway":"service"},"nodes":["n2130304156","n2139870378","n2139832706","n2139832704","n2130304157"]},"w203970122":{"id":"w203970122","tags":{"building":"yes"},"nodes":["n2139824757","n2139824740","n2139824747","n2139824762","n2139824757"]},"w208643136":{"id":"w208643136","tags":{"area":"yes","building":"yes"},"nodes":["n2189153219","n2189153220","n2189153221","n2189153222","n2189153223","n2189153224","n2189153225","n2189153226","n2189153219"]},"w203970128":{"id":"w203970128","tags":{"building":"yes"},"nodes":["n2139824732","n2139824752","n2139824744","n2139824724","n2139824732"]},"w203970097":{"id":"w203970097","tags":{"building":"yes"},"nodes":["n2139824737","n2139824733","n2139824710","n2139824716","n2139824737"]},"w203970137":{"id":"w203970137","tags":{"building":"yes"},"nodes":["n2139824765","n2139824774","n2139824758","n2139824746","n2139824765"]},"w134150840":{"id":"w134150840","tags":{"highway":"residential","name":"Moore St"},"nodes":["n1475284019","n185988243","n185988244","n185988245"]},"w17967628":{"id":"w17967628","tags":{"highway":"residential","name":"Moore St"},"nodes":["n185978388","n2139832709","n185988237","n185988239"]},"w203988292":{"id":"w203988292","tags":{"bridge":"yes","highway":"footway"},"nodes":["n2140006407","n2140006405"]},"w203970118":{"id":"w203970118","tags":{"building":"yes"},"nodes":["n2139824775","n2139824785","n2139824780","n2139824768","n2139824775"]},"w203970121":{"id":"w203970121","tags":{"building":"yes"},"nodes":["n2139824768","n2139824781","n2139824776","n2139824765","n2139824768"]},"w17967752":{"id":"w17967752","tags":{"highway":"residential","name":"Railroad Drive"},"nodes":["n185964980","n2139832699","n2139832700","n2130304158","n185988969","n185988971","n185988972","n1475284011"]},"w203970136":{"id":"w203970136","tags":{"building":"yes"},"nodes":["n2139824798","n2139824793","n2139824777","n2139824784","n2139824798"]},"w203970142":{"id":"w203970142","tags":{"building":"yes"},"nodes":["n2139824808","n2139824809","n2139824807","n2139824806","n2139824801","n2139824800","n2139824804","n2139824805","n2139824808"]},"w208643137":{"id":"w208643137","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153227","n2189153248","n2189153228","n2189153234","n2189153235","n2189153229","n2189153249","n2189153230","n2189153227"]},"w208643129":{"id":"w208643129","tags":{"area":"yes","building":"yes"},"nodes":["n2189153179","n2189153180","n2189153181","n2189153182","n2189153179"]},"w203970909":{"id":"w203970909","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832703","n2139832704","n2139832706","n2139832708","n2139832703"]},"w203970905":{"id":"w203970905","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139832688","n2139832691"]},"w203988298":{"id":"w203988298","tags":{"highway":"service"},"nodes":["n2140006431","n2140006433","n2140006435","n2140006436","n2140006437","n2140006438","n2140006439","n2140006440"]},"w203970106":{"id":"w203970106","tags":{"building":"yes"},"nodes":["n2139824798","n2139824791","n2139824799","n2139824802","n2139824798"]},"w203970129":{"id":"w203970129","tags":{"building":"yes"},"nodes":["n2139824787","n2139824782","n2139824766","n2139824769","n2139824787"]},"w208643131":{"id":"w208643131","tags":{"area":"yes","building":"yes"},"nodes":["n2189153191","n2189153192","n2189153193","n2189153194","n2189153191"]},"w206805249":{"id":"w206805249","tags":{"area":"yes","building":"yes"},"nodes":["n2168544800","n2168544801","n2168544802","n2168544805","n2168544807","n2168544809","n2168544811","n2168544813","n2168544815","n2168544817","n2168544819","n2168544821","n2168544823","n2168544825","n2168544800"]},"w134150800":{"id":"w134150800","tags":{"bridge":"yes","highway":"primary","name":"W Michigan Ave","old_ref":"US 131","ref":"US 131 Business;M 60"},"nodes":["n185964972","n185964976"]},"w17966984":{"id":"w17966984","tags":{"highway":"residential","name":"Portage Avenue"},"nodes":["n185978375","n185963456","n2189153218","n185966937","n185978967","n185967422","n185982193","n185968100","n185982195","n185960195","n185980735","n185978787","n185966948","n185982196","n185982197","n185982198","n185982200","n2139795768","n185972155"]},"w203988294":{"id":"w203988294","tags":{"amenity":"shelter","area":"yes","building":"yes","shelter_type":"picnic_shelter"},"nodes":["n2140006409","n2140006411","n2140006413","n2140006415","n2140006409"]},"w203970912":{"id":"w203970912","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832711","n2139832712","n2139832713","n2139832714","n2139832711"]},"w203970119":{"id":"w203970119","tags":{"building":"yes"},"nodes":["n2139824713","n2139824705","n2139824683","n2139824689","n2139824713"]},"w203970114":{"id":"w203970114","tags":{"building":"yes"},"nodes":["n2139824735","n2139824750","n2139824745","n2139824732","n2139824735"]},"w208643142":{"id":"w208643142","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153254","n2189153255","n2189153256","n2189153257"]},"w206805253":{"id":"w206805253","tags":{"area":"yes","building":"yes"},"nodes":["n2168544848","n2168544849","n2168544850","n2168544851","n2168544852","n2168544853","n2168544854","n2168544855","n2168544848"]},"w143497377":{"id":"w143497377","tags":{"highway":"primary","name":"North Main Street","old_ref":"US 131","ref":"US 131 Business"},"nodes":["n185962625","n185978420","n185978419","n185978417","n185978415","n185978414","n185975735","n1475293254","n185978410","n185978406","n185970515","n185978402","n185978399","n185965399","n2189015992","n185961396","n185967917","n185978394","n185971631","n185960796","n185978392","n185974583","n185978390","n185971578","n185965289","n2189153215","n185978388","n185978383","n185978381","n185978379","n185978377","n185978375","n185964982"]},"w134150811":{"id":"w134150811","tags":{"highway":"primary","name":"West Michigan Avenue","old_ref":"US 131","ref":"US 131 Business;M 60"},"nodes":["n185964976","n2130304157","n1475284023","n2139832715","n185964980","n185964982"]},"w208643135":{"id":"w208643135","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153215","n2189153216","n2189153217","n2189153218"]},"w17967183":{"id":"w17967183","tags":{"highway":"residential","name":"West Street"},"nodes":["n1475284011","n185984011","n185984013","n185984015","n2189153246","n2189153250","n185965291","n185984017","n185971580","n185984020","n185974585","n185982163","n185975064","n185971632","n185984022","n185984024","n185967918"]},"w134150778":{"id":"w134150778","tags":{"bridge":"yes","highway":"residential","name":"Moore St"},"nodes":["n185988245","n1475283992","n185975911"]},"w206805248":{"id":"w206805248","tags":{"area":"yes","building":"yes"},"nodes":["n2168544790","n2168544791","n2168544792","n2168544793","n2168544795","n2168544797","n2168544798","n2168544799","n2168544802","n2168544801","n2168544790"]},"w203974058":{"id":"w203974058","tags":{"bridge":"yes","highway":"path","name":"Riverwalk Trail"},"nodes":["n2139870374","n2139870375"]},"w203970902":{"id":"w203970902","tags":{"highway":"service"},"nodes":["n2139832678","n2139832691","n2139832680"]},"w203988296":{"id":"w203988296","tags":{"highway":"path"},"nodes":["n2139858967","n2140006421","n2139858935"]},"w206805251":{"id":"w206805251","tags":{"area":"yes","building":"yes"},"nodes":["n2168544830","n2168544831","n2168544832","n2168544833","n2168544834","n2168544835","n2168544836","n2168544837","n2168544830"]},"w203970906":{"id":"w203970906","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832693","n2139832694","n2139832696","n2139832697","n2139832698","n2139832693"]},"w203049598":{"id":"w203049598","tags":{"area":"yes","leisure":"pitch","sport":"tennis"},"nodes":["n2130304162","n2130304163","n2130304164","n2130304165","n2130304162"]},"w203970911":{"id":"w203970911","tags":{"highway":"service"},"nodes":["n2139832709","n2139832714","n2139832713","n2139832710","n185988971"]},"w203970105":{"id":"w203970105","tags":{"building":"yes"},"nodes":["n2139824779","n2139824792","n2139824786","n2139824775","n2139824779"]},"w203988290":{"id":"w203988290","tags":{"highway":"footway"},"nodes":["n2140006403","n2140006407"]},"w203970900":{"id":"w203970900","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139832653","n2139832663","n2139832665","n2139832667","n2139832669","n2139832671","n2139832673","n2139832675","n2139832677","n2139832653"]},"w209717048":{"id":"w209717048","tags":{"area":"yes","building":"yes"},"nodes":["n2199109755","n2199109756","n2199109757","n2199109758","n2199109759","n2199109760","n2199109755"]},"w208643141":{"id":"w208643141","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153247","n2189153248","n2189153249","n2189153250"]},"w203970903":{"id":"w203970903","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2139832682","n2139832688","n2139832684","n2139832678","n2139832686"]},"n354002527":{"id":"n354002527","loc":[-85.6236039,41.9458813],"tags":{"amenity":"school","name":"Barrows School"}},"n185963396":{"id":"n185963396","loc":[-85.627401,41.943496]},"n185963397":{"id":"n185963397","loc":[-85.627403,41.943625]},"n185965101":{"id":"n185965101","loc":[-85.626409,41.943215]},"n185971474":{"id":"n185971474","loc":[-85.624884,41.943508]},"n185971475":{"id":"n185971475","loc":[-85.625191,41.943509]},"n185971482":{"id":"n185971482","loc":[-85.624882,41.94382]},"n185983135":{"id":"n185983135","loc":[-85.624893,41.945616]},"n185983137":{"id":"n185983137","loc":[-85.624912,41.946524]},"n185988027":{"id":"n185988027","loc":[-85.622721,41.946535]},"n185963398":{"id":"n185963398","loc":[-85.6273993,41.9446899]},"n185983238":{"id":"n185983238","loc":[-85.6227157,41.9456321]},"n185980374":{"id":"n185980374","loc":[-85.6248856,41.9447242]},"n185980373":{"id":"n185980373","loc":[-85.6226744,41.9447371]},"n2196831342":{"id":"n2196831342","loc":[-85.6250924,41.945063]},"n2196831343":{"id":"n2196831343","loc":[-85.6252335,41.9450636]},"n2196831344":{"id":"n2196831344","loc":[-85.6252286,41.9448707]},"n2196831345":{"id":"n2196831345","loc":[-85.6250661,41.9448707]},"n2196831346":{"id":"n2196831346","loc":[-85.6250243,41.9449012]},"n2196831347":{"id":"n2196831347","loc":[-85.6250251,41.9449244]},"n2196831348":{"id":"n2196831348","loc":[-85.6250867,41.9449257]},"n2196831349":{"id":"n2196831349","loc":[-85.625349,41.9445058]},"n2196831350":{"id":"n2196831350","loc":[-85.6253471,41.9443882]},"n2196831351":{"id":"n2196831351","loc":[-85.6251516,41.94439]},"n2196831352":{"id":"n2196831352","loc":[-85.6251522,41.9444308]},"n2196831353":{"id":"n2196831353","loc":[-85.6251344,41.9444309]},"n2196831354":{"id":"n2196831354","loc":[-85.6251356,41.9445077]},"n2196831355":{"id":"n2196831355","loc":[-85.6232357,41.9463406]},"n2196831356":{"id":"n2196831356","loc":[-85.6232409,41.9460668]},"n2196831357":{"id":"n2196831357","loc":[-85.6232072,41.9460665]},"n2196831358":{"id":"n2196831358","loc":[-85.6232117,41.9458272]},"n2196831359":{"id":"n2196831359","loc":[-85.6229808,41.9458248]},"n2196831360":{"id":"n2196831360","loc":[-85.6229763,41.9460627]},"n2196831361":{"id":"n2196831361","loc":[-85.623006,41.946063]},"n2196831362":{"id":"n2196831362","loc":[-85.6230023,41.9462557]},"n2196831363":{"id":"n2196831363","loc":[-85.6230755,41.9462565]},"n2196831364":{"id":"n2196831364","loc":[-85.6230739,41.9463389]},"n185947349":{"id":"n185947349","loc":[-85.618327,41.945607]},"n185947359":{"id":"n185947359","loc":[-85.615453,41.945597]},"n185947378":{"id":"n185947378","loc":[-85.617231,41.945603]},"n185947474":{"id":"n185947474","loc":[-85.616136,41.945602]},"n185948972":{"id":"n185948972","loc":[-85.615273,41.945637]},"n185955019":{"id":"n185955019","loc":[-85.620172,41.945627]},"n185960682":{"id":"n185960682","loc":[-85.622759,41.951845]},"n185961369":{"id":"n185961369","loc":[-85.622758,41.947444]},"n185961371":{"id":"n185961371","loc":[-85.624908,41.947416]},"n185963392":{"id":"n185963392","loc":[-85.6270462,41.9409953]},"n185963393":{"id":"n185963393","loc":[-85.627295,41.941304]},"n185963394":{"id":"n185963394","loc":[-85.627352,41.94148]},"n185963395":{"id":"n185963395","loc":[-85.62737,41.942261]},"n185965099":{"id":"n185965099","loc":[-85.6264,41.942263]},"n185965108":{"id":"n185965108","loc":[-85.622769,41.949224]},"n185965110":{"id":"n185965110","loc":[-85.624937,41.949237]},"n185966295":{"id":"n185966295","loc":[-85.6299942,41.9446689]},"n185966342":{"id":"n185966342","loc":[-85.624873,41.942022]},"n185970222":{"id":"n185970222","loc":[-85.622761,41.948357]},"n185970224":{"id":"n185970224","loc":[-85.624924,41.9483338]},"n185971477":{"id":"n185971477","loc":[-85.620051,41.94383]},"n185971478":{"id":"n185971478","loc":[-85.621219,41.943801]},"n185971481":{"id":"n185971481","loc":[-85.621812,41.943807]},"n185973866":{"id":"n185973866","loc":[-85.627629,41.946498]},"n185974699":{"id":"n185974699","loc":[-85.6227688,41.950119]},"n185978800":{"id":"n185978800","loc":[-85.623953,41.954684]},"n185980372":{"id":"n185980372","loc":[-85.621459,41.944756]},"n185980378":{"id":"n185980378","loc":[-85.6286375,41.9446764]},"n185980380":{"id":"n185980380","loc":[-85.630139,41.944661]},"n185980382":{"id":"n185980382","loc":[-85.630298,41.944635]},"n185980384":{"id":"n185980384","loc":[-85.630759,41.94454]},"n185980386":{"id":"n185980386","loc":[-85.6312369,41.9444548]},"n185983133":{"id":"n185983133","loc":[-85.6248672,41.9415903]},"n185983139":{"id":"n185983139","loc":[-85.624951,41.950239]},"n185983140":{"id":"n185983140","loc":[-85.624934,41.950681]},"n185983141":{"id":"n185983141","loc":[-85.624813,41.950983]},"n185983143":{"id":"n185983143","loc":[-85.6246225,41.951591]},"n185983144":{"id":"n185983144","loc":[-85.623908,41.9539165]},"n185983145":{"id":"n185983145","loc":[-85.6238903,41.9540956]},"n185983146":{"id":"n185983146","loc":[-85.623898,41.95431]},"n185983236":{"id":"n185983236","loc":[-85.628481,41.945611]},"n185985914":{"id":"n185985914","loc":[-85.620072,41.946538]},"n185986812":{"id":"n185986812","loc":[-85.6227785,41.9510005]},"n185988028":{"id":"n185988028","loc":[-85.6281401,41.9469632]},"n185988030":{"id":"n185988030","loc":[-85.6282451,41.9470314]},"n185988032":{"id":"n185988032","loc":[-85.6283312,41.9470656]},"w17964989":{"id":"w17964989","tags":{"highway":"residential","name":"Middle St"},"nodes":["n185963392","n185963393","n185963394","n185963395","n185963396","n185963397","n185963398"]},"w17965158":{"id":"w17965158","tags":{"access":"private","highway":"service","name":"Battle St"},"nodes":["n185965099","n185965101"]},"w41074896":{"id":"w41074896","tags":{"highway":"secondary","name":"East Michigan Avenue","name_1":"State Highway 60","ref":"M 60"},"nodes":["n185980372","n185980373","n185980374","n185963398","n185980378","n185966295","n185980380","n185980382","n185980384","n185980386"]},"w17965846":{"id":"w17965846","tags":{"highway":"residential","name":"2nd Ave"},"nodes":["n185971477","n185971478","n185971481","n185971482"]},"w209470306":{"id":"w209470306","tags":{"area":"yes","building":"yes"},"nodes":["n2196831349","n2196831350","n2196831351","n2196831352","n2196831353","n2196831354","n2196831349"]},"w17965845":{"id":"w17965845","tags":{"highway":"residential","name":"2nd Ave"},"nodes":["n185971474","n185971475","n185963396"]},"w209470307":{"id":"w209470307","tags":{"area":"yes","building":"yes"},"nodes":["n2196831355","n2196831356","n2196831357","n2196831358","n2196831359","n2196831360","n2196831361","n2196831362","n2196831363","n2196831364","n2196831355"]},"w17968192":{"id":"w17968192","tags":{"highway":"residential","name":"Washington St"},"nodes":["n185980373","n185983238","n185988027","n185961369","n185970222","n185965108","n185974699","n185986812","n185960682"]},"w17967603":{"id":"w17967603","tags":{"highway":"residential","name":"5th Ave"},"nodes":["n185985914","n185988027","n185983137","n185973866","n185988028","n185988030","n185988032"]},"w209470305":{"id":"w209470305","tags":{"area":"yes","building":"yes"},"nodes":["n2196831342","n2196831343","n2196831344","n2196831345","n2196831346","n2196831347","n2196831348","n2196831342"]},"w17967092":{"id":"w17967092","tags":{"highway":"residential","name":"Wood St"},"nodes":["n185983133","n185966342","n185971474","n185971482","n185980374","n185983135","n185983137","n185961371","n185970224","n185965110","n185983139","n185983140","n185983141","n185983143","n185983144","n185983145","n185983146","n185978800"]},"w17967107":{"id":"w17967107","tags":{"highway":"residential","name":"4th Ave"},"nodes":["n185983236","n185983135","n185983238","n185955019","n185947349","n185947378","n185947474","n185947359","n185948972"]},"n354030330":{"id":"n354030330","loc":[-85.6297222,41.9444444],"tags":{"leisure":"park","name":"Scouter Park"}},"n185966296":{"id":"n185966296","loc":[-85.629998,41.944078]},"n185966298":{"id":"n185966298","loc":[-85.629972,41.943927]},"n185966300":{"id":"n185966300","loc":[-85.629948,41.943783]},"n185980391":{"id":"n185980391","loc":[-85.6322992,41.9442766]},"n185980393":{"id":"n185980393","loc":[-85.6324925,41.9442136]},"n185980389":{"id":"n185980389","loc":[-85.6320272,41.9443281]},"n185980388":{"id":"n185980388","loc":[-85.6315778,41.9443959]},"n354031320":{"id":"n354031320","loc":[-85.6280556,41.9447222],"tags":{"amenity":"place_of_worship","name":"Riverside Church","religion":"christian"}},"n185987309":{"id":"n185987309","loc":[-85.6286497,41.9453531]},"n185987311":{"id":"n185987311","loc":[-85.6285942,41.9454805]},"n185988034":{"id":"n185988034","loc":[-85.6285815,41.9471692]},"n185988896":{"id":"n185988896","loc":[-85.6318433,41.9437929]},"n185977764":{"id":"n185977764","loc":[-85.6322988,41.943472]},"n1819848852":{"id":"n1819848852","loc":[-85.6315188,41.9448808]},"n1819848912":{"id":"n1819848912","loc":[-85.6284289,41.9472189]},"n1819848925":{"id":"n1819848925","loc":[-85.6314501,41.9451617]},"n1819848949":{"id":"n1819848949","loc":[-85.6309394,41.9455192]},"n1819848951":{"id":"n1819848951","loc":[-85.6290297,41.9457187]},"n1819848963":{"id":"n1819848963","loc":[-85.630521,41.9455591]},"n1819848981":{"id":"n1819848981","loc":[-85.6292936,41.9455846]},"n1819848989":{"id":"n1819848989","loc":[-85.6298451,41.9455431]},"n1819848998":{"id":"n1819848998","loc":[-85.6314973,41.9446254]},"n1819849018":{"id":"n1819849018","loc":[-85.6302807,41.9455527]},"n1819849043":{"id":"n1819849043","loc":[-85.6285533,41.9469731]},"n1819849087":{"id":"n1819849087","loc":[-85.6314501,41.9453532]},"n1819849090":{"id":"n1819849090","loc":[-85.628843,41.9461033]},"n1819849109":{"id":"n1819849109","loc":[-85.6311926,41.9454729]},"n1819849116":{"id":"n1819849116","loc":[-85.6288967,41.9459437]},"n1819849177":{"id":"n1819849177","loc":[-85.6287894,41.9464544]},"n1819858529":{"id":"n1819858529","loc":[-85.6325485,41.9445625]},"n2189112797":{"id":"n2189112797","loc":[-85.6275271,41.944555]},"n2189112798":{"id":"n2189112798","loc":[-85.6275196,41.9437258]},"n2189112799":{"id":"n2189112799","loc":[-85.6278937,41.943723]},"n2189112800":{"id":"n2189112800","loc":[-85.6278969,41.9439191]},"n2189112801":{"id":"n2189112801","loc":[-85.6279907,41.9439345]},"n2189112802":{"id":"n2189112802","loc":[-85.6280817,41.9439663]},"n2189112803":{"id":"n2189112803","loc":[-85.6281768,41.9440145]},"n2189112804":{"id":"n2189112804","loc":[-85.6281933,41.9440483]},"n2189112805":{"id":"n2189112805","loc":[-85.6281671,41.9440535]},"n2189112806":{"id":"n2189112806","loc":[-85.6281933,41.9440935]},"n2189112807":{"id":"n2189112807","loc":[-85.6282126,41.9441437]},"n2189112808":{"id":"n2189112808","loc":[-85.628214,41.9441991]},"n2189112809":{"id":"n2189112809","loc":[-85.6283298,41.944196]},"n2189112810":{"id":"n2189112810","loc":[-85.6283285,41.9442616]},"n2189112811":{"id":"n2189112811","loc":[-85.6281727,41.9442616]},"n2189112812":{"id":"n2189112812","loc":[-85.6281713,41.9442934]},"n2189112813":{"id":"n2189112813","loc":[-85.6280386,41.9442963]},"n2189112814":{"id":"n2189112814","loc":[-85.6280405,41.9443292]},"n2189112815":{"id":"n2189112815","loc":[-85.627829,41.9443349]},"n2189112816":{"id":"n2189112816","loc":[-85.6278347,41.9445495]},"n2189153271":{"id":"n2189153271","loc":[-85.6321053,41.9460342]},"n2189153272":{"id":"n2189153272","loc":[-85.632278,41.9457841]},"n2189153273":{"id":"n2189153273","loc":[-85.632823,41.9459936]},"n2189153274":{"id":"n2189153274","loc":[-85.6326845,41.9461963]},"n2189153275":{"id":"n2189153275","loc":[-85.6325664,41.9461507]},"n2189153276":{"id":"n2189153276","loc":[-85.6325323,41.946198]},"n2189153278":{"id":"n2189153278","loc":[-85.6321916,41.9459733]},"n2189153279":{"id":"n2189153279","loc":[-85.6322598,41.9458703]},"n2189153280":{"id":"n2189153280","loc":[-85.6327208,41.9460358]},"n2189153281":{"id":"n2189153281","loc":[-85.6326413,41.9461422]},"n185959079":{"id":"n185959079","loc":[-85.6293702,41.9474668]},"n185966301":{"id":"n185966301","loc":[-85.629692,41.943136]},"n185966304":{"id":"n185966304","loc":[-85.629565,41.942916]},"n185966308":{"id":"n185966308","loc":[-85.629501,41.942751]},"n185966315":{"id":"n185966315","loc":[-85.629472,41.942578]},"n185966319":{"id":"n185966319","loc":[-85.629444,41.942414]},"n185966321":{"id":"n185966321","loc":[-85.629391,41.94205]},"n185966323":{"id":"n185966323","loc":[-85.629369,41.941858]},"n185966327":{"id":"n185966327","loc":[-85.629297,41.941604]},"n185966331":{"id":"n185966331","loc":[-85.629233,41.941549]},"n185966336":{"id":"n185966336","loc":[-85.628504,41.941364]},"n185966338":{"id":"n185966338","loc":[-85.628275,41.941303]},"n185966340":{"id":"n185966340","loc":[-85.6269038,41.9410983]},"n185973867":{"id":"n185973867","loc":[-85.626843,41.947333]},"n185977762":{"id":"n185977762","loc":[-85.6318441,41.9429453]},"n1819848853":{"id":"n1819848853","loc":[-85.625854,41.9492218]},"n1819848861":{"id":"n1819848861","loc":[-85.6251459,41.9552376]},"n1819848874":{"id":"n1819848874","loc":[-85.6267445,41.9482961]},"n1819848882":{"id":"n1819848882","loc":[-85.6257209,41.9552396]},"n1819848883":{"id":"n1819848883","loc":[-85.624706,41.9523173]},"n1819848907":{"id":"n1819848907","loc":[-85.62609,41.9561471]},"n1819848908":{"id":"n1819848908","loc":[-85.6244013,41.9549284]},"n1819848911":{"id":"n1819848911","loc":[-85.6265578,41.9553672]},"n1819848923":{"id":"n1819848923","loc":[-85.6246802,41.9550959]},"n1819848936":{"id":"n1819848936","loc":[-85.6241588,41.9539291]},"n1819848940":{"id":"n1819848940","loc":[-85.62506,41.9511129]},"n1819848944":{"id":"n1819848944","loc":[-85.624942,41.9515912]},"n1819848950":{"id":"n1819848950","loc":[-85.6273989,41.9475461]},"n1819848957":{"id":"n1819848957","loc":[-85.627695,41.947404]},"n1819849009":{"id":"n1819849009","loc":[-85.6259248,41.94896]},"n1819849037":{"id":"n1819849037","loc":[-85.6257252,41.9502112]},"n1819849061":{"id":"n1819849061","loc":[-85.6270084,41.9479626]},"n1819849073":{"id":"n1819849073","loc":[-85.6243734,41.9534583]},"n1819849091":{"id":"n1819849091","loc":[-85.6241373,41.9543918]},"n1819849130":{"id":"n1819849130","loc":[-85.6282572,41.9473067]},"n1819849143":{"id":"n1819849143","loc":[-85.625281,41.9506596]},"n1819849153":{"id":"n1819849153","loc":[-85.6258647,41.9498043]},"n1819849168":{"id":"n1819849168","loc":[-85.6265084,41.9559317]},"n1819849173":{"id":"n1819849173","loc":[-85.6263325,41.9552156]},"n1819849175":{"id":"n1819849175","loc":[-85.6266372,41.9556764]},"n1819849178":{"id":"n1819849178","loc":[-85.6242232,41.9545993]},"n1819849181":{"id":"n1819849181","loc":[-85.6262187,41.9486712]},"n1819849188":{"id":"n1819849188","loc":[-85.6245558,41.9530434]},"n1819849190":{"id":"n1819849190","loc":[-85.6255982,41.9563017]},"n2168544738":{"id":"n2168544738","loc":[-85.6245707,41.9529711]},"w208643145":{"id":"w208643145","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189153271","n2189153272","n2189153273","n2189153274","n2189153275","n2189153276","n2189153271"]},"w17967561":{"id":"w17967561","tags":{"highway":"residential","name":"Garden St"},"nodes":["n185980378","n185987309","n185987311","n185983236","n185973866"]},"w134150802":{"id":"w134150802","tags":{"bridge":"yes","highway":"secondary","name":"East Michigan Avenue","name_1":"State Highway 60","ref":"M 60"},"nodes":["n185980386","n185980388"]},"w208639462":{"id":"w208639462","tags":{"area":"yes","building":"yes"},"nodes":["n2189112797","n2189112798","n2189112799","n2189112800","n2189112801","n2189112802","n2189112803","n2189112804","n2189112805","n2189112806","n2189112807","n2189112808","n2189112809","n2189112810","n2189112811","n2189112812","n2189112813","n2189112814","n2189112815","n2189112816","n2189112797"]},"w134150830":{"id":"w134150830","tags":{"bridge":"yes","highway":"secondary","name":"South Main Street","old_ref":"US 131","ref":"M 86"},"nodes":["n185977762","n185977764"]},"w134150801":{"id":"w134150801","tags":{"highway":"secondary","name":"South Main Street","old_ref":"US 131","ref":"M 86"},"nodes":["n185977764","n185964982"]},"w208643146":{"id":"w208643146","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2189153277","n2189153281","n2189153278","n2189153279","n2189153280","n2189153281"]},"w17966061":{"id":"w17966061","tags":{"highway":"residential","name":"John Glenn Ct"},"nodes":["n185973866","n185973867"]},"w134150772":{"id":"w134150772","tags":{"highway":"residential","name":"5th Ave"},"nodes":["n185988034","n185959079","n185988036","n185978967"]},"w134150836":{"id":"w134150836","tags":{"highway":"secondary","name":"East Michigan Avenue","name_1":"State Highway 60","ref":"M 60"},"nodes":["n185980388","n1819858524","n185980389","n185980391","n185980393","n185964982"]},"w17967734":{"id":"w17967734","tags":{"highway":"residential","name":"Water Street"},"nodes":["n185988896","n185980391","n1819858529"]},"w17965305":{"id":"w17965305","tags":{"highway":"residential","name":"River Dr"},"nodes":["n185966295","n185966296","n185966298","n185966300","n185966301","n185966304","n185966308","n185966315","n185966319","n185966321","n185966323","n185966327","n185966331","n185966336","n185966338","n185963392","n185966340","n185966342"]},"w134150826":{"id":"w134150826","tags":{"bridge":"yes","highway":"residential","name":"5th Ave"},"nodes":["n185988032","n185988034"]},"w170848330":{"id":"w170848330","tags":{"name":"Portage River","waterway":"river"},"nodes":["n1819849190","n1819848907","n1819849168","n1819849175","n1819848911","n1819849173","n1819848882","n1819848861","n1819848923","n1819848908","n1819849178","n1819849091","n1819848936","n1819849073","n1819849188","n2168544738","n1819848883","n1819848944","n1819848940","n1819849143","n1819849037","n1819849153","n1819848853","n1819849009","n1819849181","n1819848874","n1819849061","n1819848950","n1819848957","n1819849130","n1819848912","n1819849043","n1819849177","n1819849090","n1819849116","n1819848951","n1819848981","n1819848989","n1819849018","n1819848963","n1819848949","n1819849109","n1819849087","n1819848925","n1819848852","n1819848998","n1819849057"]},"r270264":{"id":"r270264","tags":{"network":"US:MI","ref":"86","route":"road","state_id":"MI","type":"route","url":"http://en.wikipedia.org/wiki/M-86_%28Michigan_highway%29"},"members":[{"id":"w17737723","type":"way","role":""},{"id":"w17735949","type":"way","role":""},{"id":"w17740404","type":"way","role":""},{"id":"w17966273","type":"way","role":""},{"id":"w17964745","type":"way","role":""},{"id":"w151538068","type":"way","role":""},{"id":"w151538067","type":"way","role":""},{"id":"w17964960","type":"way","role":""},{"id":"w17966099","type":"way","role":""},{"id":"w17968009","type":"way","role":""},{"id":"w41259499","type":"way","role":""},{"id":"w151540401","type":"way","role":""},{"id":"w151540418","type":"way","role":""},{"id":"w17967997","type":"way","role":""},{"id":"w17966029","type":"way","role":""},{"id":"w17964801","type":"way","role":""},{"id":"w41259496","type":"way","role":""},{"id":"w151540399","type":"way","role":""},{"id":"w17968004","type":"way","role":""},{"id":"w17966462","type":"way","role":""},{"id":"w134150830","type":"way","role":""},{"id":"w134150801","type":"way","role":""},{"id":"w17732295","type":"way","role":""}]},"n185980093":{"id":"n185980093","loc":[-85.6271414,41.9407274]},"n185964330":{"id":"n185964330","loc":[-85.6235688,41.9399111]},"n185964328":{"id":"n185964328","loc":[-85.6235609,41.9391301]},"n185958034":{"id":"n185958034","loc":[-85.627102,41.939125]},"n185964331":{"id":"n185964331","loc":[-85.623571,41.940124]},"n185964329":{"id":"n185964329","loc":[-85.623562,41.9392411]},"n185972756":{"id":"n185972756","loc":[-85.623802,41.939102]},"n185972757":{"id":"n185972757","loc":[-85.623584,41.93913]},"n185975325":{"id":"n185975325","loc":[-85.624835,41.939318]},"n185975326":{"id":"n185975326","loc":[-85.624811,41.939435]},"n185975327":{"id":"n185975327","loc":[-85.624635,41.939703]},"n185975328":{"id":"n185975328","loc":[-85.624366,41.940055]},"n185975330":{"id":"n185975330","loc":[-85.624287,41.940113]},"n185975332":{"id":"n185975332","loc":[-85.624215,41.940134]},"n185980088":{"id":"n185980088","loc":[-85.627127,41.940086]},"n185988943":{"id":"n185988943","loc":[-85.622643,41.940128]},"n185988961":{"id":"n185988961","loc":[-85.627263,41.940082]},"n185990192":{"id":"n185990192","loc":[-85.622933,41.939224]},"n185990194":{"id":"n185990194","loc":[-85.621976,41.939203]},"n185991378":{"id":"n185991378","loc":[-85.622643,41.940635]},"n1475283999":{"id":"n1475283999","loc":[-85.6271165,41.9408429]},"n185980090":{"id":"n185980090","loc":[-85.6271315,41.9402001]},"n185958036":{"id":"n185958036","loc":[-85.6248366,41.9391615]},"n1819800188":{"id":"n1819800188","loc":[-85.6246947,41.9401644]},"n1819800199":{"id":"n1819800199","loc":[-85.6233686,41.9430896]},"n1819800204":{"id":"n1819800204","loc":[-85.6223236,41.9408587]},"n1819800213":{"id":"n1819800213","loc":[-85.6247526,41.9414138]},"n1819800216":{"id":"n1819800216","loc":[-85.6230961,41.9407151]},"n1819800218":{"id":"n1819800218","loc":[-85.621991,41.9429336]},"n1819800221":{"id":"n1819800221","loc":[-85.6246088,41.9424708]},"n1819800227":{"id":"n1819800227","loc":[-85.6241368,41.9403081]},"n1819800230":{"id":"n1819800230","loc":[-85.6226776,41.9431012]},"n1819800231":{"id":"n1819800231","loc":[-85.6243728,41.9401644]},"n1819800232":{"id":"n1819800232","loc":[-85.6249629,41.9408907]},"n1819800248":{"id":"n1819800248","loc":[-85.6238685,41.9405555]},"n1819800266":{"id":"n1819800266","loc":[-85.6246882,41.9418367]},"n1819800271":{"id":"n1819800271","loc":[-85.62492,41.9413695]},"n1819800294":{"id":"n1819800294","loc":[-85.6243556,41.9427465]},"n1819800304":{"id":"n1819800304","loc":[-85.6251453,41.94117]},"n1819800325":{"id":"n1819800325","loc":[-85.6248234,41.9405714]},"n1819800362":{"id":"n1819800362","loc":[-85.6239544,41.9429416]},"n1819800368":{"id":"n1819800368","loc":[-85.6243406,41.9402283]},"n1819800375":{"id":"n1819800375","loc":[-85.6226562,41.940755]},"n1819800377":{"id":"n1819800377","loc":[-85.6232033,41.9406512]},"n185945133":{"id":"n185945133","loc":[-85.623501,41.933232]},"n185945135":{"id":"n185945135","loc":[-85.624776,41.933205]},"n185945395":{"id":"n185945395","loc":[-85.624741,41.93019]},"n185952239":{"id":"n185952239","loc":[-85.615166,41.9382]},"n185954490":{"id":"n185954490","loc":[-85.624721,41.929278]},"n185957831":{"id":"n185957831","loc":[-85.625041,41.938662]},"n185958030":{"id":"n185958030","loc":[-85.629033,41.93913]},"n185958032":{"id":"n185958032","loc":[-85.628429,41.939143]},"n185958498":{"id":"n185958498","loc":[-85.621605,41.940143]},"n185961186":{"id":"n185961186","loc":[-85.624792,41.935214]},"n185963099":{"id":"n185963099","loc":[-85.6204461,41.9401485]},"n185963698":{"id":"n185963698","loc":[-85.6297342,41.9400783]},"n185964320":{"id":"n185964320","loc":[-85.623511,41.934216]},"n185964322":{"id":"n185964322","loc":[-85.6235312,41.9362084]},"n185964324":{"id":"n185964324","loc":[-85.6235488,41.9371726]},"n185964326":{"id":"n185964326","loc":[-85.6235512,41.9381718]},"n185967077":{"id":"n185967077","loc":[-85.617359,41.940161]},"n185967634":{"id":"n185967634","loc":[-85.6248039,41.9362012]},"n185970833":{"id":"n185970833","loc":[-85.6248019,41.9381684]},"n185972752":{"id":"n185972752","loc":[-85.624582,41.938848]},"n185972754":{"id":"n185972754","loc":[-85.6242,41.939008]},"n185973251":{"id":"n185973251","loc":[-85.602727,41.936012]},"n185974509":{"id":"n185974509","loc":[-85.62478,41.93217]},"n185975315":{"id":"n185975315","loc":[-85.624703,41.925597]},"n185975316":{"id":"n185975316","loc":[-85.624716,41.927359]},"n185975317":{"id":"n185975317","loc":[-85.62475,41.93119]},"n185975318":{"id":"n185975318","loc":[-85.624782,41.934218]},"n185975320":{"id":"n185975320","loc":[-85.6247949,41.9371708]},"n185977754":{"id":"n185977754","loc":[-85.6276,41.937412]},"n185980075":{"id":"n185980075","loc":[-85.627451,41.937549]},"n185980077":{"id":"n185980077","loc":[-85.627375,41.937618]},"n185980078":{"id":"n185980078","loc":[-85.627278,41.937728]},"n185980079":{"id":"n185980079","loc":[-85.627199,41.937842]},"n185980081":{"id":"n185980081","loc":[-85.627141,41.937981]},"n185980083":{"id":"n185980083","loc":[-85.627109,41.938153]},"n185980085":{"id":"n185980085","loc":[-85.627101,41.938699]},"n185981173":{"id":"n185981173","loc":[-85.61433,41.940167]},"n185987021":{"id":"n185987021","loc":[-85.628311,41.942261]},"n185988963":{"id":"n185988963","loc":[-85.628439,41.940086]},"n185990195":{"id":"n185990195","loc":[-85.621225,41.939143]},"n185990196":{"id":"n185990196","loc":[-85.620576,41.939033]},"n185990198":{"id":"n185990198","loc":[-85.619081,41.938804]},"n185990200":{"id":"n185990200","loc":[-85.617593,41.938552]},"n185990202":{"id":"n185990202","loc":[-85.617372,41.938535]},"n185990204":{"id":"n185990204","loc":[-85.616087,41.93832]},"n185990206":{"id":"n185990206","loc":[-85.615754,41.938289]},"n185990209":{"id":"n185990209","loc":[-85.615438,41.938251]},"n185990211":{"id":"n185990211","loc":[-85.613469,41.937867]},"n185990212":{"id":"n185990212","loc":[-85.610172,41.937298]},"n185990213":{"id":"n185990213","loc":[-85.605537,41.936497]},"n185990214":{"id":"n185990214","loc":[-85.604014,41.936234]},"n1819800180":{"id":"n1819800180","loc":[-85.588775,41.9455032]},"n1819800181":{"id":"n1819800181","loc":[-85.6074212,41.9408827]},"n1819800182":{"id":"n1819800182","loc":[-85.6131397,41.9427022]},"n1819800183":{"id":"n1819800183","loc":[-85.6171523,41.9416807]},"n1819800184":{"id":"n1819800184","loc":[-85.602465,41.9397415]},"n1819800185":{"id":"n1819800185","loc":[-85.6109296,41.9410583]},"n1819800186":{"id":"n1819800186","loc":[-85.6165729,41.9418004]},"n1819800189":{"id":"n1819800189","loc":[-85.5866293,41.9458224]},"n1819800191":{"id":"n1819800191","loc":[-85.5853311,41.9466603]},"n1819800201":{"id":"n1819800201","loc":[-85.6101142,41.9433406]},"n1819800202":{"id":"n1819800202","loc":[-85.600963,41.9428618]},"n1819800206":{"id":"n1819800206","loc":[-85.6154357,41.9427501]},"n1819800207":{"id":"n1819800207","loc":[-85.6040309,41.9414094]},"n1819800209":{"id":"n1819800209","loc":[-85.6113694,41.943189]},"n1819800211":{"id":"n1819800211","loc":[-85.618032,41.9416408]},"n1819800214":{"id":"n1819800214","loc":[-85.5959419,41.9402602]},"n1819800219":{"id":"n1819800219","loc":[-85.5972117,41.9420043]},"n1819800223":{"id":"n1819800223","loc":[-85.6117171,41.9430019]},"n1819800224":{"id":"n1819800224","loc":[-85.5977873,41.9395579]},"n1819800226":{"id":"n1819800226","loc":[-85.5917362,41.9432209]},"n1819800228":{"id":"n1819800228","loc":[-85.6055759,41.9419122]},"n1819800229":{"id":"n1819800229","loc":[-85.6203395,41.9425595]},"n1819800233":{"id":"n1819800233","loc":[-85.6107579,41.9433007]},"n1819800234":{"id":"n1819800234","loc":[-85.6039773,41.9412498]},"n1819800235":{"id":"n1819800235","loc":[-85.6000977,41.9412861]},"n1819800236":{"id":"n1819800236","loc":[-85.6026689,41.9407231]},"n1819800237":{"id":"n1819800237","loc":[-85.615161,41.9428662]},"n1819800238":{"id":"n1819800238","loc":[-85.5878953,41.9454314]},"n1819800239":{"id":"n1819800239","loc":[-85.6035267,41.941569]},"n1819800240":{"id":"n1819800240","loc":[-85.5929738,41.9450208]},"n1819800241":{"id":"n1819800241","loc":[-85.6186329,41.9416488]},"n1819800242":{"id":"n1819800242","loc":[-85.5881136,41.9483963]},"n1819800243":{"id":"n1819800243","loc":[-85.5909208,41.9466922]},"n1819800244":{"id":"n1819800244","loc":[-85.5997721,41.9394941]},"n1819800245":{"id":"n1819800245","loc":[-85.6202064,41.9425712]},"n1819800246":{"id":"n1819800246","loc":[-85.591071,41.9448808]},"n1819800247":{"id":"n1819800247","loc":[-85.5866078,41.9490622]},"n1819800250":{"id":"n1819800250","loc":[-85.602383,41.9420841]},"n1819800251":{"id":"n1819800251","loc":[-85.5957418,41.9426906]},"n1819800255":{"id":"n1819800255","loc":[-85.6157039,41.9416727]},"n1819800256":{"id":"n1819800256","loc":[-85.6080328,41.9410982]},"n1819800258":{"id":"n1819800258","loc":[-85.6192551,41.9414892]},"n1819800260":{"id":"n1819800260","loc":[-85.6104253,41.94117]},"n1819800261":{"id":"n1819800261","loc":[-85.6204503,41.9425709]},"n1819800263":{"id":"n1819800263","loc":[-85.5872194,41.9455431]},"n1819800264":{"id":"n1819800264","loc":[-85.616176,41.9418244]},"n1819800268":{"id":"n1819800268","loc":[-85.6120883,41.9426703]},"n1819800269":{"id":"n1819800269","loc":[-85.5894547,41.9474946]},"n1819800272":{"id":"n1819800272","loc":[-85.6209181,41.9425027]},"n1819800274":{"id":"n1819800274","loc":[-85.6122814,41.9412817]},"n1819800276":{"id":"n1819800276","loc":[-85.5895153,41.9452798]},"n1819800277":{"id":"n1819800277","loc":[-85.5884317,41.9455272]},"n1819800279":{"id":"n1819800279","loc":[-85.5884103,41.9480966]},"n1819800287":{"id":"n1819800287","loc":[-85.5904917,41.9453915]},"n1819800288":{"id":"n1819800288","loc":[-85.6212292,41.9412977]},"n1819800289":{"id":"n1819800289","loc":[-85.5954377,41.9406832]},"n1819800290":{"id":"n1819800290","loc":[-85.593721,41.9420957]},"n1819800291":{"id":"n1819800291","loc":[-85.6162832,41.9427102]},"n1819800292":{"id":"n1819800292","loc":[-85.605018,41.9401804]},"n1819800293":{"id":"n1819800293","loc":[-85.6086443,41.941146]},"n1819800296":{"id":"n1819800296","loc":[-85.6204675,41.9413775]},"n1819800297":{"id":"n1819800297","loc":[-85.612496,41.9424947]},"n1819800299":{"id":"n1819800299","loc":[-85.6065629,41.9423431]},"n1819800301":{"id":"n1819800301","loc":[-85.6036125,41.9398452]},"n1819800303":{"id":"n1819800303","loc":[-85.6114767,41.94117]},"n1819800306":{"id":"n1819800306","loc":[-85.592616,41.9428139]},"n1819800308":{"id":"n1819800308","loc":[-85.6023041,41.9419521]},"n1819800310":{"id":"n1819800310","loc":[-85.6218944,41.9411061]},"n1819800311":{"id":"n1819800311","loc":[-85.6097816,41.941162]},"n1819800312":{"id":"n1819800312","loc":[-85.5922549,41.9457869]},"n1819800313":{"id":"n1819800313","loc":[-85.5986027,41.9417206]},"n1819800314":{"id":"n1819800314","loc":[-85.5918687,41.946138]},"n1819800315":{"id":"n1819800315","loc":[-85.5872875,41.948883]},"n1819800316":{"id":"n1819800316","loc":[-85.594272,41.9436642]},"n1819800317":{"id":"n1819800317","loc":[-85.6176351,41.941577]},"n1819800318":{"id":"n1819800318","loc":[-85.6137834,41.9430853]},"n1819800319":{"id":"n1819800319","loc":[-85.6195383,41.942622],"tags":{"leisure":"slipway"}},"n1819800320":{"id":"n1819800320","loc":[-85.5971006,41.9398053]},"n1819800321":{"id":"n1819800321","loc":[-85.601714,41.9406752]},"n1819800322":{"id":"n1819800322","loc":[-85.5908028,41.9453117]},"n1819800323":{"id":"n1819800323","loc":[-85.6062732,41.9404597]},"n1819800324":{"id":"n1819800324","loc":[-85.62124,41.9425905]},"n1819800327":{"id":"n1819800327","loc":[-85.6008664,41.942766]},"n1819800328":{"id":"n1819800328","loc":[-85.6179355,41.9428538]},"n1819800330":{"id":"n1819800330","loc":[-85.6045566,41.9415131]},"n1819800331":{"id":"n1819800331","loc":[-85.5944935,41.9414653]},"n1819800333":{"id":"n1819800333","loc":[-85.6088911,41.943181]},"n1819800334":{"id":"n1819800334","loc":[-85.5946367,41.943369]},"n1819800336":{"id":"n1819800336","loc":[-85.6150494,41.9429656]},"n1819800343":{"id":"n1819800343","loc":[-85.6096099,41.9433326]},"n1819800345":{"id":"n1819800345","loc":[-85.5915216,41.9435401]},"n1819800347":{"id":"n1819800347","loc":[-85.607786,41.9428698]},"n1819800349":{"id":"n1819800349","loc":[-85.6187616,41.9426623]},"n1819800350":{"id":"n1819800350","loc":[-85.6012527,41.9426064]},"n1819800352":{"id":"n1819800352","loc":[-85.6214867,41.9428379]},"n1819800354":{"id":"n1819800354","loc":[-85.61338,41.94293]},"n1819800355":{"id":"n1819800355","loc":[-85.5923156,41.9428139]},"n1819800357":{"id":"n1819800357","loc":[-85.5901591,41.9453197]},"n1819800359":{"id":"n1819800359","loc":[-85.6033979,41.9408827]},"n1819800360":{"id":"n1819800360","loc":[-85.6186543,41.9414653]},"n1819800363":{"id":"n1819800363","loc":[-85.6128607,41.9425665]},"n1819800365":{"id":"n1819800365","loc":[-85.614234,41.9412977]},"n1819800367":{"id":"n1819800367","loc":[-85.6089662,41.9410902]},"n1819800369":{"id":"n1819800369","loc":[-85.6197379,41.9413695]},"n1819800370":{"id":"n1819800370","loc":[-85.6037348,41.941733]},"n1819800371":{"id":"n1819800371","loc":[-85.5993467,41.9415654]},"n1819800372":{"id":"n1819800372","loc":[-85.598077,41.94196]},"n1819800373":{"id":"n1819800373","loc":[-85.5984203,41.9394781]},"n1819800374":{"id":"n1819800374","loc":[-85.6013315,41.9427066]},"n1819800376":{"id":"n1819800376","loc":[-85.5934673,41.944167]},"n1819800378":{"id":"n1819800378","loc":[-85.6011062,41.9407753]},"n1819800379":{"id":"n1819800379","loc":[-85.6150602,41.9415131]},"n1819800380":{"id":"n1819800380","loc":[-85.6132148,41.9412338]},"n1819800381":{"id":"n1819800381","loc":[-85.5889038,41.9453835]},"n2139966621":{"id":"n2139966621","loc":[-85.6198719,41.9426184]},"n2139966622":{"id":"n2139966622","loc":[-85.6197551,41.9426123]},"n2139966623":{"id":"n2139966623","loc":[-85.6196467,41.9426279]},"n2139966624":{"id":"n2139966624","loc":[-85.6191519,41.9426221]},"n2139966625":{"id":"n2139966625","loc":[-85.6194153,41.9426256]},"n2139966626":{"id":"n2139966626","loc":[-85.6200497,41.9425812]},"n2139966629":{"id":"n2139966629","loc":[-85.6192123,41.9426229]},"n2203933101":{"id":"n2203933101","loc":[-85.6030009,41.9360592]},"w17967539":{"id":"w17967539","tags":{"highway":"residential","name":"1st Ave"},"nodes":["n185965099","n185963395","n185987021"]},"w17967751":{"id":"w17967751","tags":{"highway":"residential","name":"River St"},"nodes":["n185980088","n185988961","n185988963","n185963698"]},"w17965088":{"id":"w17965088","tags":{"highway":"residential","name":"9th St"},"nodes":["n185945133","n185964320","n185964322","n185964324","n185964326","n185964328","n185964329","n185964330","n185964331"]},"w17964467":{"id":"w17964467","tags":{"highway":"residential","name":"Mechanic St"},"nodes":["n185958030","n185958032","n185958034","n185958036"]},"w134150842":{"id":"w134150842","tags":{"bridge":"yes","highway":"residential","name":"6th St"},"nodes":["n185980090","n185980093"]},"w17966740":{"id":"w17966740","tags":{"highway":"residential","name":"6th St"},"nodes":["n185977754","n185980075","n185980077","n185980078","n185980079","n185980081","n185980083","n185980085","n185958034","n185980088","n185980090"]},"w170844765":{"id":"w170844765","tags":{"waterway":"dam"},"nodes":["n1819800304","n1819800232","n1819800325","n1819800188"]},"w17967745":{"id":"w17967745","tags":{"highway":"residential","name":"River St"},"nodes":["n185981173","n185967077","n185963099","n185958498","n185988943","n185964331","n185975332"]},"w17968113":{"id":"w17968113","tags":{"highway":"residential","name":"Green St"},"nodes":["n185988943","n185991378"]},"w134150833":{"id":"w134150833","tags":{"highway":"residential","name":"6th St"},"nodes":["n185980093","n1475283999","n185963392"]},"w17967935":{"id":"w17967935","tags":{"name":"Michigan Central Railroad","railway":"abandoned"},"nodes":["n185972757","n185990192","n185990194","n185990195","n185990196","n185990198","n185990200","n185990202","n185990204","n185990206","n185990209","n185952239","n185990211","n185990212","n185990213","n185990214","n2203933101","n185973251"]},"w17965993":{"id":"w17965993","tags":{"name":"Conrail Railroad","railway":"abandoned"},"nodes":["n185957831","n185972752","n185972754","n185972756","n185972757"]},"w17966211":{"id":"w17966211","tags":{"highway":"residential","name":"8th St"},"nodes":["n185975315","n185975316","n185954490","n185945395","n185975317","n185974509","n185945135","n185975318","n185961186","n185967634","n185975320","n185970833","n185958036","n185975325","n185975326","n185975327","n185975328","n185975330","n185975332"]},"w170844766":{"id":"w170844766","tags":{"waterway":"riverbank"},"nodes":["n1819800229","n1819800245","n2139966626","n2139966621","n2139966622","n2139966623","n1819800319","n2139966625","n2139966629","n2139966624","n1819800349","n1819800328","n1819800291","n1819800206","n1819800237","n1819800336","n1819800318","n1819800354","n1819800182","n1819800363","n1819800297","n1819800268","n1819800223","n1819800209","n1819800233","n1819800201","n1819800343","n1819800333","n1819800347","n1819800299","n1819800228","n1819800330","n1819800370","n1819800250","n1819800374","n1819800202","n1819800327","n1819800350","n1819800308","n1819800239","n1819800207","n1819800234","n1819800359","n1819800236","n1819800321","n1819800378","n1819800235","n1819800371","n1819800313","n1819800372","n1819800219","n1819800251","n1819800334","n1819800316","n1819800376","n1819800240","n1819800312","n1819800314","n1819800243","n1819800269","n1819800279","n1819800242","n1819800315","n1819800247","n1819800191","n1819800189","n1819800263","n1819800238","n1819800277","n1819800180","n1819800381","n1819800276","n1819800357","n1819800287","n1819800322","n1819800246","n1819800345","n1819800226","n1819800355","n1819800306","n1819800290","n1819800331","n1819800289","n1819800214","n1819800320","n1819800224","n1819800373","n1819800244","n1819800184","n1819800301","n1819800292","n1819800323","n1819800181","n1819800256","n1819800293","n1819800367","n1819800311","n1819800260","n1819800185","n1819800303","n1819800274","n1819800380","n1819800365","n1819800379","n1819800255","n1819800264","n1819800186","n1819800183","n1819800317","n1819800211","n1819800241","n1819800360","n1819800258","n1819800369","n1819800296","n1819800288","n1819800310","n1819800204","n1819800375","n1819800216","n1819800377","n1819800248","n1819800227","n1819800368","n1819800231","n1819800188","n1819800325","n1819800232","n1819800304","n1819800271","n1819800213","n1819800266","n1819800221","n1819800294","n1819800362","n1819800199","n1819800230","n1819800218","n1819800352","n1819800324","n1819800272","n1819800261","n1819800229"]},"n1875654132":{"id":"n1875654132","loc":[-85.6297439,41.939808]},"n1475293263":{"id":"n1475293263","loc":[-85.6296235,41.939922]},"n185947850":{"id":"n185947850","loc":[-85.631594,41.942613]},"n185952745":{"id":"n185952745","loc":[-85.630986,41.941786]},"n185972907":{"id":"n185972907","loc":[-85.631797,41.9420055]},"n185972911":{"id":"n185972911","loc":[-85.6309723,41.9411623]},"n185972915":{"id":"n185972915","loc":[-85.6295971,41.939267]},"n1475293223":{"id":"n1475293223","loc":[-85.6313962,41.9416114],"tags":{"railway":"level_crossing"}},"n1475293231":{"id":"n1475293231","loc":[-85.6318779,41.9415447]},"n1475293241":{"id":"n1475293241","loc":[-85.6304613,41.9405499]},"n1475293246":{"id":"n1475293246","loc":[-85.6297512,41.9395393],"tags":{"railway":"level_crossing"}},"n1475293251":{"id":"n1475293251","loc":[-85.6316633,41.9415128]},"n2139982404":{"id":"n2139982404","loc":[-85.6313283,41.9413748]},"n2139982407":{"id":"n2139982407","loc":[-85.6325545,41.9417787]},"n2139982408":{"id":"n2139982408","loc":[-85.6324499,41.9417693]},"n2139982409":{"id":"n2139982409","loc":[-85.6324753,41.9416444]},"n2139982410":{"id":"n2139982410","loc":[-85.6325814,41.9416538]},"n2139982411":{"id":"n2139982411","loc":[-85.6319572,41.9413515]},"n2139982412":{"id":"n2139982412","loc":[-85.6322925,41.941139]},"n2139982413":{"id":"n2139982413","loc":[-85.6323153,41.941153]},"n2139982414":{"id":"n2139982414","loc":[-85.6323019,41.9412617]},"n2139982415":{"id":"n2139982415","loc":[-85.6323703,41.9412667]},"n2139982416":{"id":"n2139982416","loc":[-85.6323555,41.941538]},"n2139982417":{"id":"n2139982417","loc":[-85.6321343,41.9416777]},"n2139982418":{"id":"n2139982418","loc":[-85.6319425,41.9416866]},"n2139982419":{"id":"n2139982419","loc":[-85.6320303,41.9416941]},"n2139982420":{"id":"n2139982420","loc":[-85.6321665,41.9415554]},"n2139982421":{"id":"n2139982421","loc":[-85.632412,41.9414164]},"n2139982422":{"id":"n2139982422","loc":[-85.6324801,41.9413421]},"n2139982423":{"id":"n2139982423","loc":[-85.6325023,41.9412585]},"n2139982424":{"id":"n2139982424","loc":[-85.6324532,41.9411607]},"n2139982425":{"id":"n2139982425","loc":[-85.6323502,41.941103]},"n2139982426":{"id":"n2139982426","loc":[-85.6322362,41.9411183]},"n2139982427":{"id":"n2139982427","loc":[-85.6318941,41.9413551]},"n2139982428":{"id":"n2139982428","loc":[-85.6318592,41.9414105]},"n2139982429":{"id":"n2139982429","loc":[-85.6320111,41.9415866]},"n2139982430":{"id":"n2139982430","loc":[-85.632446,41.9413792]},"n2139982431":{"id":"n2139982431","loc":[-85.6325112,41.941416]},"n2139982432":{"id":"n2139982432","loc":[-85.6325449,41.9416345]},"n2139982433":{"id":"n2139982433","loc":[-85.6326122,41.94164]},"n2139982434":{"id":"n2139982434","loc":[-85.6325954,41.9421966]},"n2139982435":{"id":"n2139982435","loc":[-85.6325655,41.9422411]},"n2139982436":{"id":"n2139982436","loc":[-85.632515,41.9422564]},"n2139982437":{"id":"n2139982437","loc":[-85.6324495,41.94223]},"n2139982438":{"id":"n2139982438","loc":[-85.6324009,41.9421743]},"n2139982439":{"id":"n2139982439","loc":[-85.6323915,41.9421145]},"n2139982440":{"id":"n2139982440","loc":[-85.6320287,41.9418585]},"n2139982441":{"id":"n2139982441","loc":[-85.6318285,41.9416387]},"n1475293258":{"id":"n1475293258","loc":[-85.6318289,41.9415077]},"n2168544754":{"id":"n2168544754","loc":[-85.6312814,41.9431198]},"n2168544755":{"id":"n2168544755","loc":[-85.6314212,41.9430646]},"n2168544756":{"id":"n2168544756","loc":[-85.6313387,41.942949]},"n2168544757":{"id":"n2168544757","loc":[-85.6311989,41.9430041]},"n2168544758":{"id":"n2168544758","loc":[-85.6311024,41.9429313]},"n2168544759":{"id":"n2168544759","loc":[-85.6310087,41.9428087]},"n2168544760":{"id":"n2168544760","loc":[-85.6313831,41.9426504]},"n2168544761":{"id":"n2168544761","loc":[-85.6314768,41.9427729]},"n2168544762":{"id":"n2168544762","loc":[-85.6306376,41.942809]},"n2168544763":{"id":"n2168544763","loc":[-85.6307378,41.9429427]},"n2168544764":{"id":"n2168544764","loc":[-85.630841,41.9428998]},"n2168544765":{"id":"n2168544765","loc":[-85.6307408,41.9427662]},"n2168544766":{"id":"n2168544766","loc":[-85.6305404,41.9426029]},"n2168544767":{"id":"n2168544767","loc":[-85.6304976,41.9426194]},"n2168544768":{"id":"n2168544768","loc":[-85.6305673,41.9427184]},"n2168544769":{"id":"n2168544769","loc":[-85.6306164,41.9426984]},"n2168544770":{"id":"n2168544770","loc":[-85.6306418,41.9427302]},"n2168544771":{"id":"n2168544771","loc":[-85.6306861,41.9427137]},"n2168544772":{"id":"n2168544772","loc":[-85.6307146,41.9427537]},"n2168544773":{"id":"n2168544773","loc":[-85.6308999,41.9426807]},"n2168544774":{"id":"n2168544774","loc":[-85.6308429,41.9426053]},"n2168544775":{"id":"n2168544775","loc":[-85.6308999,41.9425806]},"n2168544776":{"id":"n2168544776","loc":[-85.6308318,41.9424875]},"n2168544777":{"id":"n2168544777","loc":[-85.6307732,41.9425087]},"n2168544778":{"id":"n2168544778","loc":[-85.6307178,41.9424357]},"n2168544779":{"id":"n2168544779","loc":[-85.630485,41.942524]},"n2189099387":{"id":"n2189099387","loc":[-85.631203,41.9393371]},"n2189099404":{"id":"n2189099404","loc":[-85.6301963,41.9391363]},"n2189099405":{"id":"n2189099405","loc":[-85.6304447,41.9391352]},"n2189099406":{"id":"n2189099406","loc":[-85.6304463,41.9393391]},"n2189099407":{"id":"n2189099407","loc":[-85.6308435,41.9393373]},"n2189099408":{"id":"n2189099408","loc":[-85.6308418,41.9391251]},"n2189099409":{"id":"n2189099409","loc":[-85.6310929,41.939124]},"n2189099410":{"id":"n2189099410","loc":[-85.6310946,41.9393376]},"n2189112720":{"id":"n2189112720","loc":[-85.6314677,41.9412327]},"n2189112721":{"id":"n2189112721","loc":[-85.6313337,41.9411397]},"n2189112722":{"id":"n2189112722","loc":[-85.6320521,41.9405678]},"n2189112723":{"id":"n2189112723","loc":[-85.6321899,41.9406633]},"n2189112724":{"id":"n2189112724","loc":[-85.6313229,41.9408344]},"n2189112725":{"id":"n2189112725","loc":[-85.6311223,41.9410018]},"n2189112726":{"id":"n2189112726","loc":[-85.6313205,41.9411333]},"n2189112727":{"id":"n2189112727","loc":[-85.6315211,41.9409659]},"n2189112728":{"id":"n2189112728","loc":[-85.6311035,41.9402529]},"n2189112729":{"id":"n2189112729","loc":[-85.631226,41.9402107]},"n2189112730":{"id":"n2189112730","loc":[-85.6315966,41.9408051]},"n2189112731":{"id":"n2189112731","loc":[-85.6314741,41.9408473]},"n2189112732":{"id":"n2189112732","loc":[-85.6318114,41.940534]},"n2189112733":{"id":"n2189112733","loc":[-85.631588,41.94061]},"n2189112734":{"id":"n2189112734","loc":[-85.6314379,41.940366]},"n2189112735":{"id":"n2189112735","loc":[-85.6316613,41.94029]},"n2189112736":{"id":"n2189112736","loc":[-85.6306214,41.9400415]},"n2189112737":{"id":"n2189112737","loc":[-85.6304362,41.9397728]},"n2189112738":{"id":"n2189112738","loc":[-85.6305899,41.9397142]},"n2189112739":{"id":"n2189112739","loc":[-85.6307751,41.9399828]},"n2189112740":{"id":"n2189112740","loc":[-85.6304695,41.9401673]},"n2189112741":{"id":"n2189112741","loc":[-85.6301298,41.9396855]},"n2189112742":{"id":"n2189112742","loc":[-85.6303016,41.9396184]},"n2189112743":{"id":"n2189112743","loc":[-85.6306413,41.9401003]},"n2189112744":{"id":"n2189112744","loc":[-85.6309656,41.9406189]},"n2189112745":{"id":"n2189112745","loc":[-85.6308738,41.940493]},"n2189112746":{"id":"n2189112746","loc":[-85.6309333,41.940469]},"n2189112747":{"id":"n2189112747","loc":[-85.6307634,41.9402358]},"n2189112748":{"id":"n2189112748","loc":[-85.6308798,41.9401889]},"n2189112749":{"id":"n2189112749","loc":[-85.6311416,41.940548]},"n2189112750":{"id":"n2189112750","loc":[-85.6309577,41.9408708]},"n2189112751":{"id":"n2189112751","loc":[-85.630874,41.9407777]},"n2189112752":{"id":"n2189112752","loc":[-85.6310622,41.9406841]},"n2189112753":{"id":"n2189112753","loc":[-85.6311459,41.9407772]},"n2189112754":{"id":"n2189112754","loc":[-85.6320308,41.9405747]},"n2189112755":{"id":"n2189112755","loc":[-85.6317769,41.9401857]},"n2189112756":{"id":"n2189112756","loc":[-85.6313462,41.9401785]},"n2189112757":{"id":"n2189112757","loc":[-85.6313423,41.9401199]},"n2189112758":{"id":"n2189112758","loc":[-85.6318308,41.9401184]},"n2189112759":{"id":"n2189112759","loc":[-85.6321154,41.9405433]},"n2189112760":{"id":"n2189112760","loc":[-85.6310307,41.941683]},"n2189112761":{"id":"n2189112761","loc":[-85.6309808,41.9416078]},"n2189112762":{"id":"n2189112762","loc":[-85.6312094,41.9415156]},"n2189112763":{"id":"n2189112763","loc":[-85.6312636,41.9415865]},"n2189112764":{"id":"n2189112764","loc":[-85.6309384,41.94155]},"n2189112765":{"id":"n2189112765","loc":[-85.631156,41.9414619]},"n2189112766":{"id":"n2189112766","loc":[-85.6311968,41.94152]},"n2189112767":{"id":"n2189112767","loc":[-85.6308946,41.9414851]},"n2189112768":{"id":"n2189112768","loc":[-85.6308237,41.9413888]},"n2189112769":{"id":"n2189112769","loc":[-85.6309858,41.9413228]},"n2189112770":{"id":"n2189112770","loc":[-85.6310567,41.9414192]},"n2189112771":{"id":"n2189112771","loc":[-85.6307774,41.9413276]},"n2189112772":{"id":"n2189112772","loc":[-85.6309068,41.9412735]},"n2189112773":{"id":"n2189112773","loc":[-85.6309531,41.9413347]},"n2189112774":{"id":"n2189112774","loc":[-85.6307975,41.9412466]},"n2189112775":{"id":"n2189112775","loc":[-85.6307006,41.9411699]},"n2189112776":{"id":"n2189112776","loc":[-85.6308289,41.941113]},"n2189112777":{"id":"n2189112777","loc":[-85.6308997,41.9412012]},"n2189112778":{"id":"n2189112778","loc":[-85.630765,41.9412062]},"n2189112779":{"id":"n2189112779","loc":[-85.630739,41.9412177]},"n2189112780":{"id":"n2189112780","loc":[-85.6305822,41.9410391]},"n2189112781":{"id":"n2189112781","loc":[-85.6304117,41.9408177]},"n2189112782":{"id":"n2189112782","loc":[-85.6305086,41.9407769]},"n2189112783":{"id":"n2189112783","loc":[-85.6306779,41.9410044]},"n2189112784":{"id":"n2189112784","loc":[-85.6307734,41.9421663]},"n2189112785":{"id":"n2189112785","loc":[-85.630708,41.9420741]},"n2189112786":{"id":"n2189112786","loc":[-85.630863,41.9420133]},"n2189112787":{"id":"n2189112787","loc":[-85.6309285,41.9421055]},"n2189112788":{"id":"n2189112788","loc":[-85.6307014,41.9420263]},"n2189112789":{"id":"n2189112789","loc":[-85.6306648,41.941971]},"n2189112790":{"id":"n2189112790","loc":[-85.6307927,41.9419178]},"n2189112791":{"id":"n2189112791","loc":[-85.6308366,41.9419696]},"n2189112792":{"id":"n2189112792","loc":[-85.6307574,41.9418708]},"n2189112793":{"id":"n2189112793","loc":[-85.6306288,41.9419231]},"n2189112794":{"id":"n2189112794","loc":[-85.6306943,41.9417835]},"n2189112795":{"id":"n2189112795","loc":[-85.6305344,41.9418474]},"n2189112796":{"id":"n2189112796","loc":[-85.6305981,41.9419355]},"n2189123410":{"id":"n2189123410","loc":[-85.6315476,41.9393801]},"n2189123412":{"id":"n2189123412","loc":[-85.6315247,41.9399188]},"n2189123415":{"id":"n2189123415","loc":[-85.6316484,41.9400433]},"n185945138":{"id":"n185945138","loc":[-85.627073,41.93319]},"n185945142":{"id":"n185945142","loc":[-85.6296891,41.9331674]},"n185945401":{"id":"n185945401","loc":[-85.6269,41.930199]},"n185945405":{"id":"n185945405","loc":[-85.6296598,41.9301676]},"n185956891":{"id":"n185956891","loc":[-85.6251617,41.9255049]},"n185959979":{"id":"n185959979","loc":[-85.626333,41.928347]},"n185959983":{"id":"n185959983","loc":[-85.6296419,41.9283288]},"n185961192":{"id":"n185961192","loc":[-85.627053,41.9352031]},"n185961200":{"id":"n185961200","loc":[-85.6297088,41.9351902]},"n185963655":{"id":"n185963655","loc":[-85.6296112,41.9273948]},"n185963665":{"id":"n185963665","loc":[-85.626047,41.92737]},"n185963688":{"id":"n185963688","loc":[-85.6296503,41.9292199]},"n185963689":{"id":"n185963689","loc":[-85.6296694,41.931157]},"n185963690":{"id":"n185963690","loc":[-85.6296791,41.9321485]},"n185963691":{"id":"n185963691","loc":[-85.6296991,41.9341973]},"n185967638":{"id":"n185967638","loc":[-85.627089,41.9361884]},"n185972917":{"id":"n185972917","loc":[-85.6293759,41.9388605]},"n185972919":{"id":"n185972919","loc":[-85.6290337,41.9380234]},"n185972921":{"id":"n185972921","loc":[-85.628424,41.936212]},"n185972923":{"id":"n185972923","loc":[-85.628367,41.936029]},"n185974511":{"id":"n185974511","loc":[-85.627064,41.932169]},"n185977728":{"id":"n185977728","loc":[-85.625605,41.925842]},"n185977729":{"id":"n185977729","loc":[-85.625685,41.926163]},"n185977731":{"id":"n185977731","loc":[-85.6257845,41.9264872]},"n185977733":{"id":"n185977733","loc":[-85.62663,41.929251]},"n185977734":{"id":"n185977734","loc":[-85.627008,41.930642]},"n185977736":{"id":"n185977736","loc":[-85.627029,41.930775]},"n185977738":{"id":"n185977738","loc":[-85.627041,41.930946]},"n185977739":{"id":"n185977739","loc":[-85.6270379,41.9311746]},"n185977742":{"id":"n185977742","loc":[-85.627055,41.934206]},"n185977744":{"id":"n185977744","loc":[-85.627084,41.936804]},"n185977746":{"id":"n185977746","loc":[-85.627104,41.936914]},"n185977748":{"id":"n185977748","loc":[-85.627156,41.937026]},"n185977750":{"id":"n185977750","loc":[-85.6272406,41.9371672]},"n185977752":{"id":"n185977752","loc":[-85.627317,41.93723]},"n185977753":{"id":"n185977753","loc":[-85.627422,41.937312]},"n185977755":{"id":"n185977755","loc":[-85.627754,41.937504]},"n185977757":{"id":"n185977757","loc":[-85.627883,41.937623]},"n185977761":{"id":"n185977761","loc":[-85.627984,41.93773]},"n1475283996":{"id":"n1475283996","loc":[-85.6270514,41.9317122],"tags":{"railway":"level_crossing"}},"n1475284004":{"id":"n1475284004","loc":[-85.6278177,41.9342117],"tags":{"railway":"level_crossing"}},"n1475284014":{"id":"n1475284014","loc":[-85.6251877,41.9255913],"tags":{"railway":"level_crossing"}},"n1475284017":{"id":"n1475284017","loc":[-85.6274992,41.9331816],"tags":{"railway":"level_crossing"}},"n1475284021":{"id":"n1475284021","loc":[-85.6297108,41.9353939],"tags":{"railway":"level_crossing"}},"n1475284027":{"id":"n1475284027","loc":[-85.62811,41.935198],"tags":{"railway":"level_crossing"}},"n1475284035":{"id":"n1475284035","loc":[-85.626888,41.9311757],"tags":{"railway":"level_crossing"}},"n1475293245":{"id":"n1475293245","loc":[-85.6286047,41.9367881]},"n1875654302":{"id":"n1875654302","loc":[-85.6296367,41.927491]},"n2189099388":{"id":"n2189099388","loc":[-85.6312007,41.9389988]},"n2189099389":{"id":"n2189099389","loc":[-85.6311003,41.9389992]},"n2189099390":{"id":"n2189099390","loc":[-85.6310988,41.9387847]},"n2189099391":{"id":"n2189099391","loc":[-85.6312165,41.9387843]},"n2189099392":{"id":"n2189099392","loc":[-85.6312152,41.9385857]},"n2189099393":{"id":"n2189099393","loc":[-85.6310877,41.9385862]},"n2189099394":{"id":"n2189099394","loc":[-85.6310858,41.9383161]},"n2189099395":{"id":"n2189099395","loc":[-85.6302002,41.9383196]},"n2189099396":{"id":"n2189099396","loc":[-85.6302011,41.9384472]},"n2189099397":{"id":"n2189099397","loc":[-85.6301018,41.9384476]},"n2189099398":{"id":"n2189099398","loc":[-85.6301025,41.9385419]},"n2189099399":{"id":"n2189099399","loc":[-85.6299275,41.9385427]},"n2189099400":{"id":"n2189099400","loc":[-85.62993,41.9388653]},"n2189099401":{"id":"n2189099401","loc":[-85.630107,41.9388645]},"n2189099402":{"id":"n2189099402","loc":[-85.6301079,41.9389908]},"n2189099403":{"id":"n2189099403","loc":[-85.6301951,41.9389904]},"n2189123382":{"id":"n2189123382","loc":[-85.6336279,41.9354365]},"n2189123384":{"id":"n2189123384","loc":[-85.6328492,41.9355177]},"n2189123387":{"id":"n2189123387","loc":[-85.6323762,41.9357396]},"n2189123388":{"id":"n2189123388","loc":[-85.6315174,41.9358966]},"n2189123389":{"id":"n2189123389","loc":[-85.6304331,41.936124]},"n2189123390":{"id":"n2189123390","loc":[-85.6302075,41.9364271]},"n2189123391":{"id":"n2189123391","loc":[-85.6303458,41.9367953]},"n2189123392":{"id":"n2189123392","loc":[-85.6299601,41.9369739]},"n2189123393":{"id":"n2189123393","loc":[-85.6299164,41.9374882]},"n2189123394":{"id":"n2189123394","loc":[-85.6299455,41.9378022]},"n2189123395":{"id":"n2189123395","loc":[-85.6299771,41.9379053]},"n2189123396":{"id":"n2189123396","loc":[-85.6301597,41.9379091]},"n2189123397":{"id":"n2189123397","loc":[-85.6308042,41.9377913]},"n2189123398":{"id":"n2189123398","loc":[-85.6316885,41.9378082]},"n2189123399":{"id":"n2189123399","loc":[-85.6316848,41.9380079]},"n2189123400":{"id":"n2189123400","loc":[-85.6318449,41.9381161]},"n2189123401":{"id":"n2189123401","loc":[-85.6320705,41.9381811]},"n2189123402":{"id":"n2189123402","loc":[-85.6321433,41.9383706]},"n2189123404":{"id":"n2189123404","loc":[-85.632056,41.9384355]},"n2189123406":{"id":"n2189123406","loc":[-85.6317867,41.9384572]},"n2189123409":{"id":"n2189123409","loc":[-85.6316572,41.9387281]},"n2189123417":{"id":"n2189123417","loc":[-85.6315946,41.93775]},"n2189123419":{"id":"n2189123419","loc":[-85.6302641,41.9378393]},"w208640158":{"id":"w208640158","tags":{"area":"yes","natural":"wetland"},"nodes":["n2189123379","n2189123382","n2189123384","n2189123387","n2189123388","n2189123389","n2189123390","n2189123391","n2189123392","n2189123393","n2189123394","n2189123395","n2189123396","n2189123419","n2189123397","n2189123417","n2189123398","n2189123399","n2189123400","n2189123401","n2189123402","n2189123404","n2189123406","n2189123409","n2189123410","n2189123412","n2189123415","n1819805722","n1819805861","n1819805887","n1819805760","n1819805641","n1819805632","n2189123379"]},"w134150787":{"id":"w134150787","tags":{"name":"Conrail Railroad","railway":"rail"},"nodes":["n185972905","n185972907","n1475293223","n185972911","n1475293241","n1475293246","n185972915","n185972917","n185972919","n1475293245","n185972921","n185972923","n1475284027","n1475284004","n1475284017","n1475283996","n1475284035","n1475284014","n185956891"]},"w208639443":{"id":"w208639443","tags":{"area":"yes","building":"yes"},"nodes":["n2189112720","n2189112721","n2189112722","n2189112723","n2189112720"]},"w17966462":{"id":"w17966462","tags":{"highway":"secondary","name":"South Main Street","old_ref":"US 131","ref":"M 86"},"nodes":["n185977728","n185977729","n185977731","n185963665","n185959979","n185977733","n185945401","n185977734","n185977736","n185977738","n185977739","n1475283996","n185974511","n185945138","n185977742","n185961192","n185967638","n185977744","n185977746","n185977748","n185977750","n185977752","n185977753","n185977754","n185977755","n185977757","n185977761","n185958030","n1475293263","n185963698","n185952745","n185947850","n185977762"]},"w203985741":{"id":"w203985741","tags":{"area":"yes","leisure":"park","name":"Conservation Park"},"nodes":["n2139982404","n2139982405","n2139982399","n2139982400","n1819805770","n2139982402","n2139982403","n2139982401","n1819805780","n1819805834","n2139982406","n2139982404"]},"w17963676":{"id":"w17963676","tags":{"highway":"service"},"nodes":["n1475293258","n2139982428","n2139982427","n2139982426","n2139982425","n2139982424","n2139982423","n2139982422","n2139982430","n2139982421","n2139982420","n2139982429","n1475293231","n1475293258","n1475293251","n1475293223","n185952745"]},"w203985745":{"id":"w203985745","tags":{"highway":"footway"},"nodes":["n2139982430","n2139982431","n2139982432","n2139982433","n2139982434","n2139982435","n2139982436","n2139982437","n2139982438","n2139982439","n2139982440","n2139982441","n1475293231"]},"w208639451":{"id":"w208639451","tags":{"area":"yes","building":"yes"},"nodes":["n2189112754","n2189112755","n2189112756","n2189112757","n2189112758","n2189112759","n2189112754"]},"w208639452":{"id":"w208639452","tags":{"area":"yes","building":"yes"},"nodes":["n2189112760","n2189112761","n2189112766","n2189112762","n2189112763","n2189112760"]},"w206805244":{"id":"w206805244","tags":{"area":"yes","building":"yes"},"nodes":["n2168544766","n2168544767","n2168544768","n2168544769","n2168544770","n2168544771","n2168544772","n2168544773","n2168544774","n2168544775","n2168544776","n2168544777","n2168544778","n2168544779","n2168544766"]},"w208639444":{"id":"w208639444","tags":{"area":"yes","building":"yes"},"nodes":["n2189112724","n2189112725","n2189112726","n2189112727","n2189112724"]},"w208639450":{"id":"w208639450","tags":{"area":"yes","building":"yes"},"nodes":["n2189112750","n2189112751","n2189112752","n2189112753","n2189112750"]},"w208639448":{"id":"w208639448","tags":{"area":"yes","building":"yes"},"nodes":["n2189112740","n2189112741","n2189112742","n2189112743","n2189112740"]},"w208637859":{"id":"w208637859","tags":{"area":"yes","building":"yes"},"nodes":["n2189099387","n2189099388","n2189099389","n2189099390","n2189099391","n2189099392","n2189099393","n2189099394","n2189099395","n2189099396","n2189099397","n2189099398","n2189099399","n2189099400","n2189099401","n2189099402","n2189099403","n2189099404","n2189099405","n2189099406","n2189099407","n2189099408","n2189099409","n2189099410","n2189099387"]},"w208639453":{"id":"w208639453","tags":{"area":"yes","building":"yes"},"nodes":["n2189112764","n2189112765","n2189112766","n2189112761","n2189112764"]},"w208639456":{"id":"w208639456","tags":{"area":"yes","building":"yes"},"nodes":["n2189112774","n2189112778","n2189112779","n2189112775","n2189112776","n2189112777","n2189112774"]},"w208639445":{"id":"w208639445","tags":{"area":"yes","building":"yes"},"nodes":["n2189112728","n2189112729","n2189112730","n2189112731","n2189112728"]},"w17967776":{"id":"w17967776","tags":{"highway":"residential","name":"5th St"},"nodes":["n185958032","n185988963"]},"w208639461":{"id":"w208639461","tags":{"area":"yes","building":"yes"},"nodes":["n2189112792","n2189112794","n2189112795","n2189112796","n2189112793","n2189112792"]},"w206805241":{"id":"w206805241","tags":{"area":"yes","building":"yes"},"nodes":["n2168544754","n2168544755","n2168544756","n2168544757","n2168544754"]},"w208639449":{"id":"w208639449","tags":{"area":"yes","building":"yes"},"nodes":["n2189112744","n2189112745","n2189112746","n2189112747","n2189112748","n2189112749","n2189112744"]},"w208639455":{"id":"w208639455","tags":{"area":"yes","building":"yes"},"nodes":["n2189112771","n2189112772","n2189112773","n2189112768","n2189112771"]},"w208639457":{"id":"w208639457","tags":{"area":"yes","building":"yes"},"nodes":["n2189112780","n2189112781","n2189112782","n2189112783","n2189112780"]},"w208639446":{"id":"w208639446","tags":{"area":"yes","building":"yes"},"nodes":["n2189112732","n2189112733","n2189112734","n2189112735","n2189112732"]},"w208639454":{"id":"w208639454","tags":{"area":"yes","building":"yes"},"nodes":["n2189112767","n2189112768","n2189112773","n2189112769","n2189112770","n2189112767"]},"w203985743":{"id":"w203985743","tags":{"amenity":"parking","area":"yes"},"nodes":["n2139982411","n2139982412","n2139982413","n2139982414","n2139982415","n2139982416","n2139982417","n2139982419","n2139982418","n2139982411"]},"w17965023":{"id":"w17965023","tags":{"highway":"residential","name":"4th St"},"nodes":["n185963655","n1875654302","n185959983","n185963688","n185945405","n185963689","n185963690","n185945142","n185963691","n185961200","n1475284021","n1475293246","n1875654132","n1475293263"]},"w206805242":{"id":"w206805242","tags":{"area":"yes","building":"yes"},"nodes":["n2168544758","n2168544759","n2168544760","n2168544761","n2168544758"]},"w208639460":{"id":"w208639460","tags":{"area":"yes","building":"yes"},"nodes":["n2189112792","n2189112793","n2189112789","n2189112790","n2189112792"]},"w208639447":{"id":"w208639447","tags":{"area":"yes","building":"yes"},"nodes":["n2189112736","n2189112737","n2189112738","n2189112739","n2189112736"]},"w208639458":{"id":"w208639458","tags":{"area":"yes","building":"yes"},"nodes":["n2189112784","n2189112785","n2189112786","n2189112787","n2189112784"]},"w203985744":{"id":"w203985744","tags":{"highway":"service"},"nodes":["n2139982425","n2139982400"]},"w208639459":{"id":"w208639459","tags":{"area":"yes","building":"yes"},"nodes":["n2189112788","n2189112789","n2189112790","n2189112791","n2189112788"]},"w203985742":{"id":"w203985742","tags":{"amenity":"shelter","area":"yes","shelter_type":"picnic_shelter"},"nodes":["n2139982407","n2139982408","n2139982409","n2139982410","n2139982407"]},"w206805243":{"id":"w206805243","tags":{"area":"yes","building":"yes"},"nodes":["n2168544762","n2168544763","n2168544764","n2168544765","n2168544762"]},"n185959081":{"id":"n185959081","loc":[-85.628469,41.948674]},"n185967427":{"id":"n185967427","loc":[-85.632054,41.951174]},"n185967424":{"id":"n185967424","loc":[-85.6320391,41.9499109]},"n185968101":{"id":"n185968101","loc":[-85.6308395,41.9511969]},"n185960792":{"id":"n185960792","loc":[-85.632074,41.953707]},"n185961389":{"id":"n185961389","loc":[-85.630935,41.959037]},"n185961391":{"id":"n185961391","loc":[-85.632169,41.959025]},"n185965395":{"id":"n185965395","loc":[-85.63216,41.959859]},"n185966953":{"id":"n185966953","loc":[-85.630894,41.957428]},"n185966955":{"id":"n185966955","loc":[-85.632122,41.957427]},"n185967430":{"id":"n185967430","loc":[-85.632077,41.952453]},"n185967432":{"id":"n185967432","loc":[-85.632095,41.954685]},"n185967434":{"id":"n185967434","loc":[-85.632121,41.955914]},"n185967436":{"id":"n185967436","loc":[-85.632128,41.9583]},"n185967438":{"id":"n185967438","loc":[-85.632187,41.960681]},"n185967440":{"id":"n185967440","loc":[-85.632182,41.961493]},"n185968102":{"id":"n185968102","loc":[-85.630855,41.952452]},"n185968104":{"id":"n185968104","loc":[-85.630887,41.953714]},"n185968106":{"id":"n185968106","loc":[-85.630883,41.954692]},"n185968108":{"id":"n185968108","loc":[-85.630904,41.955913]},"n185968110":{"id":"n185968110","loc":[-85.630904,41.958058]},"n185968112":{"id":"n185968112","loc":[-85.630952,41.960667]},"n185968114":{"id":"n185968114","loc":[-85.630972,41.961495]},"n185968116":{"id":"n185968116","loc":[-85.630962,41.961967]},"n185978969":{"id":"n185978969","loc":[-85.633214,41.948618]},"n185985812":{"id":"n185985812","loc":[-85.633274,41.951159]},"n185986155":{"id":"n185986155","loc":[-85.633258,41.949893]},"n2208608826":{"id":"n2208608826","loc":[-85.6339222,41.9486225]},"w17964531":{"id":"w17964531","tags":{"highway":"residential","name":"Willow Dr"},"nodes":["n185959079","n185959081"]},"w17967386":{"id":"w17967386","tags":{"highway":"residential","name":"East Armitage Street"},"nodes":["n185982195","n185968101","n185967427","n185985812","n185974583"]},"w17965502":{"id":"w17965502","tags":{"highway":"residential","name":"Elm Street"},"nodes":["n185968100","n185968101","n185968102","n185968104","n185968106","n185968108","n185966953","n185968110","n185961389","n185968112","n185968114","n185968116"]},"w17967844":{"id":"w17967844","tags":{"highway":"residential","name":"East Bennett Street"},"nodes":["n185982193","n185967424","n185986155","n185978390"]},"w17966581":{"id":"w17966581","tags":{"highway":"residential","name":"E Kelsey St"},"nodes":["n185978967","n185978969","n2208608826","n185971578"]},"w17965402":{"id":"w17965402","tags":{"highway":"residential","name":"Walnut Street"},"nodes":["n185967422","n185967424","n185967427","n185967430","n185960792","n185967432","n185967434","n185966955","n185967436","n185961391","n185965395","n185967438","n185967440"]},"n2199093506":{"id":"n2199093506","loc":[-85.6251879,41.9478322]},"n2199093505":{"id":"n2199093505","loc":[-85.6252076,41.9477749]},"n2199093504":{"id":"n2199093504","loc":[-85.6252289,41.9477602]},"n2199093503":{"id":"n2199093503","loc":[-85.625201,41.9477492]},"n2199093502":{"id":"n2199093502","loc":[-85.6251682,41.9477066]},"n2199093501":{"id":"n2199093501","loc":[-85.6251715,41.947609]},"n2199093500":{"id":"n2199093500","loc":[-85.6252125,41.9475639]},"n2199093499":{"id":"n2199093499","loc":[-85.6252896,41.9475602]},"n2199093498":{"id":"n2199093498","loc":[-85.6253027,41.9475334]},"n2199093497":{"id":"n2199093497","loc":[-85.6253437,41.9474822]},"n2199093496":{"id":"n2199093496","loc":[-85.6254421,41.9474675]},"n2199093495":{"id":"n2199093495","loc":[-85.6256503,41.9474944]},"n2199093494":{"id":"n2199093494","loc":[-85.6257257,41.9476127]},"n2199093493":{"id":"n2199093493","loc":[-85.6257028,41.9477285]},"n2199093492":{"id":"n2199093492","loc":[-85.6255339,41.9478102]},"n2199093491":{"id":"n2199093491","loc":[-85.6253912,41.9478224]},"n2199093490":{"id":"n2199093490","loc":[-85.6253043,41.947859]},"n2199093489":{"id":"n2199093489","loc":[-85.6252027,41.9478846]},"n2199093458":{"id":"n2199093458","loc":[-85.6246876,41.9486617]},"n2199093457":{"id":"n2199093457","loc":[-85.6243127,41.9486583]},"n2199093456":{"id":"n2199093456","loc":[-85.624306,41.9490569]},"n2199093455":{"id":"n2199093455","loc":[-85.624681,41.9490603]},"n2199093514":{"id":"n2199093514","loc":[-85.6236228,41.9496059]},"n2199093513":{"id":"n2199093513","loc":[-85.6236231,41.9496997]},"n2199093512":{"id":"n2199093512","loc":[-85.623357,41.9497002]},"n2199093511":{"id":"n2199093511","loc":[-85.6233567,41.9496136]},"n2199093508":{"id":"n2199093508","loc":[-85.6239735,41.9494287]},"n2199093507":{"id":"n2199093507","loc":[-85.6239741,41.9496052]},"n2199093488":{"id":"n2199093488","loc":[-85.624497,41.9512286]},"n2199093487":{"id":"n2199093487","loc":[-85.6244966,41.9511259]},"n2199093486":{"id":"n2199093486","loc":[-85.6243151,41.9511263]},"n2199093485":{"id":"n2199093485","loc":[-85.6243154,41.951229]},"n2199093484":{"id":"n2199093484","loc":[-85.6241205,41.9508665]},"n2199093483":{"id":"n2199093483","loc":[-85.624115,41.9505249]},"n2199093482":{"id":"n2199093482","loc":[-85.6243149,41.9505231]},"n2199093481":{"id":"n2199093481","loc":[-85.6243203,41.9508648]},"n2199093480":{"id":"n2199093480","loc":[-85.624393,41.9508668]},"n2199093479":{"id":"n2199093479","loc":[-85.6243904,41.9505956]},"n2199093478":{"id":"n2199093478","loc":[-85.6246727,41.950594]},"n2199093477":{"id":"n2199093477","loc":[-85.624675,41.9508203]},"n2199093476":{"id":"n2199093476","loc":[-85.6245097,41.9508212]},"n2199093475":{"id":"n2199093475","loc":[-85.6245101,41.9508662]},"n2199093474":{"id":"n2199093474","loc":[-85.6241008,41.9493459]},"n2199093473":{"id":"n2199093473","loc":[-85.6242442,41.9493459]},"n2199093472":{"id":"n2199093472","loc":[-85.6242442,41.9493681]},"n2199093471":{"id":"n2199093471","loc":[-85.6243397,41.9493681]},"n2199093470":{"id":"n2199093470","loc":[-85.6243417,41.9493511]},"n2199093469":{"id":"n2199093469","loc":[-85.6247251,41.9493485]},"n2199093468":{"id":"n2199093468","loc":[-85.6247548,41.9504949]},"n2199093467":{"id":"n2199093467","loc":[-85.6241214,41.9505017]},"n2199093466":{"id":"n2199093466","loc":[-85.6254398,41.950174]},"n2199093465":{"id":"n2199093465","loc":[-85.6254412,41.9499872]},"n2199093464":{"id":"n2199093464","loc":[-85.6255363,41.9499876]},"n2199093463":{"id":"n2199093463","loc":[-85.6255374,41.9498439]},"n2199093462":{"id":"n2199093462","loc":[-85.6255638,41.949844]},"n2199093461":{"id":"n2199093461","loc":[-85.6255652,41.9496672]},"n2199093460":{"id":"n2199093460","loc":[-85.6251823,41.9496656]},"n2199093459":{"id":"n2199093459","loc":[-85.6251785,41.9501729]},"n2199093510":{"id":"n2199093510","loc":[-85.6229922,41.9496143]},"n2199093509":{"id":"n2199093509","loc":[-85.6229915,41.9494306]},"n185948903":{"id":"n185948903","loc":[-85.616514,41.947449]},"n185955120":{"id":"n185955120","loc":[-85.620103,41.951]},"n185955143":{"id":"n185955143","loc":[-85.619784,41.94746]},"n185960124":{"id":"n185960124","loc":[-85.615238,41.947468]},"n185961362":{"id":"n185961362","loc":[-85.617437,41.947451]},"n185961364":{"id":"n185961364","loc":[-85.61861,41.947456]},"n185961367":{"id":"n185961367","loc":[-85.620088,41.947458]},"n185965105":{"id":"n185965105","loc":[-85.620087,41.94924]},"n185970220":{"id":"n185970220","loc":[-85.62156,41.948333]},"n185974697":{"id":"n185974697","loc":[-85.6201059,41.950132]},"n2138420778":{"id":"n2138420778","loc":[-85.616948,41.9474499]},"w17967535":{"id":"w17967535","tags":{"highway":"residential","name":"10th Ave"},"nodes":["n185955120","n185986812","n185983141"]},"w209716130":{"id":"w209716130","tags":{"area":"yes","building":"yes"},"nodes":["n2199093485","n2199093486","n2199093487","n2199093488","n2199093485"]},"w17964788":{"id":"w17964788","tags":{"highway":"residential","name":"6th Ave"},"nodes":["n185960124","n185948903","n2138420778","n185961362","n185961364","n185955143","n185961367","n185961369","n185961371"]},"w17965159":{"id":"w17965159","tags":{"highway":"residential","name":"8th Ave"},"nodes":["n185965105","n185965108","n185965110"]},"w209716125":{"id":"w209716125","tags":{"area":"yes","building":"yes"},"nodes":["n2199093459","n2199093460","n2199093461","n2199093462","n2199093463","n2199093464","n2199093465","n2199093466","n2199093459"]},"w17965699":{"id":"w17965699","tags":{"highway":"residential","name":"7th Ave"},"nodes":["n185970220","n185970222","n185970224"]},"w209716132":{"id":"w209716132","tags":{"area":"yes","building":"yes"},"nodes":["n2199093507","n2199093508","n2199093509","n2199093510","n2199093511","n2199093512","n2199093513","n2199093514","n2199093507"]},"w17966129":{"id":"w17966129","tags":{"highway":"residential","name":"9th Ave"},"nodes":["n185974697","n185974699"]},"w209716127":{"id":"w209716127","tags":{"area":"yes","building":"yes"},"nodes":["n2199093475","n2199093476","n2199093477","n2199093478","n2199093479","n2199093480","n2199093475"]},"w209716131":{"id":"w209716131","tags":{"area":"yes","natural":"water","water":"pond"},"nodes":["n2199093489","n2199093490","n2199093491","n2199093492","n2199093493","n2199093494","n2199093495","n2199093496","n2199093497","n2199093498","n2199093499","n2199093500","n2199093501","n2199093502","n2199093503","n2199093504","n2199093505","n2199093506","n2199093489"]},"w209716126":{"id":"w209716126","tags":{"area":"yes","building":"yes"},"nodes":["n2199093467","n2199093468","n2199093469","n2199093470","n2199093471","n2199093472","n2199093473","n2199093474","n2199093467"]},"w209716124":{"id":"w209716124","tags":{"area":"yes","building":"yes"},"nodes":["n2199093455","n2199093456","n2199093457","n2199093458","n2199093455"]},"w209716128":{"id":"w209716128","tags":{"area":"yes","building":"yes"},"nodes":["n2199093481","n2199093482","n2199093483","n2199093484","n2199093481"]},"n185949872":{"id":"n185949872","loc":[-85.643009,41.949264]},"n185949875":{"id":"n185949875","loc":[-85.642598,41.94929]},"n185949877":{"id":"n185949877","loc":[-85.642127,41.949382]},"n185949881":{"id":"n185949881","loc":[-85.64169,41.949936]},"n185988165":{"id":"n185988165","loc":[-85.642167,41.947657]},"n185988167":{"id":"n185988167","loc":[-85.642347,41.947662]},"n185988169":{"id":"n185988169","loc":[-85.642621,41.947659]},"n185965019":{"id":"n185965019","loc":[-85.6385084,41.951127]},"n1475293248":{"id":"n1475293248","loc":[-85.6386095,41.9512214]},"n185962639":{"id":"n185962639","loc":[-85.649669,41.949161]},"n185962810":{"id":"n185962810","loc":[-85.649907,41.949157]},"n185964355":{"id":"n185964355","loc":[-85.637412,41.9511359]},"n185965021":{"id":"n185965021","loc":[-85.638661,41.952386]},"n185965023":{"id":"n185965023","loc":[-85.638654,41.953665]},"n185965025":{"id":"n185965025","loc":[-85.638694,41.954649]},"n185965027":{"id":"n185965027","loc":[-85.638724,41.955913]},"n185971415":{"id":"n185971415","loc":[-85.644466,41.949246]},"n185971417":{"id":"n185971417","loc":[-85.647021,41.949193]},"n185971420":{"id":"n185971420","loc":[-85.648476,41.949169]},"n185979975":{"id":"n185979975","loc":[-85.644429,41.947633]},"n185988171":{"id":"n185988171","loc":[-85.645377,41.947622]},"w17963211":{"id":"w17963211","tags":{"highway":"residential"},"nodes":["n185949870","n185949872","n185949875","n185949877","n185949881"]},"w17965839":{"id":"w17965839","tags":{"highway":"residential","name":"Arnold St"},"nodes":["n185949870","n185971415","n185971417","n185971420","n185962639","n185962810"]},"w17967618":{"id":"w17967618","tags":{"highway":"residential","name":"Pierson St"},"nodes":["n185967777","n185988165","n185988167","n185988169","n185985824","n185979975","n185988171"]},"w17965149":{"id":"w17965149","tags":{"highway":"residential","name":"Oak St"},"nodes":["n185965019","n1475293248","n185965021","n185965023","n185965025","n185965027"]},"w17966118":{"id":"w17966118","tags":{"highway":"residential","name":"West Armitage Street"},"nodes":["n185974583","n185974585","n185964355","n185965019"]},"n2208608800":{"id":"n2208608800","loc":[-85.6354294,41.9486201]},"n2199109806":{"id":"n2199109806","loc":[-85.6350474,41.9477884]},"n2199109804":{"id":"n2199109804","loc":[-85.6350476,41.9477962]},"n2199109802":{"id":"n2199109802","loc":[-85.635002,41.9477969]},"n2199109799":{"id":"n2199109799","loc":[-85.6350018,41.9477883]},"n2199109797":{"id":"n2199109797","loc":[-85.6349141,41.9477897]},"n2199109795":{"id":"n2199109795","loc":[-85.6349131,41.9477535]},"n2199109793":{"id":"n2199109793","loc":[-85.6349395,41.9477531]},"n2199109791":{"id":"n2199109791","loc":[-85.6349382,41.9477077]},"n2199109789":{"id":"n2199109789","loc":[-85.6351236,41.9477049]},"n2199109787":{"id":"n2199109787","loc":[-85.6351259,41.9477872]},"n2199109785":{"id":"n2199109785","loc":[-85.634972,41.9475992]},"n2199109783":{"id":"n2199109783","loc":[-85.6349206,41.9475997]},"n2199109770":{"id":"n2199109770","loc":[-85.6348499,41.9475461]},"n2199109768":{"id":"n2199109768","loc":[-85.6348499,41.9475084]},"n2199109765":{"id":"n2199109765","loc":[-85.6349241,41.9474569]},"n2199109763":{"id":"n2199109763","loc":[-85.634967,41.9474564]},"n2199109762":{"id":"n2199109762","loc":[-85.6350405,41.9475121]},"n2199109761":{"id":"n2199109761","loc":[-85.6350405,41.9475419]},"n2199109753":{"id":"n2199109753","loc":[-85.6342443,41.9478391]},"n2199109751":{"id":"n2199109751","loc":[-85.6342427,41.9477927]},"n2199109745":{"id":"n2199109745","loc":[-85.6342439,41.9476859]},"n2199109743":{"id":"n2199109743","loc":[-85.6342429,41.9476575]},"n2199109741":{"id":"n2199109741","loc":[-85.6344615,41.9476533]},"n2199109739":{"id":"n2199109739","loc":[-85.6344678,41.9478348]},"n2199109737":{"id":"n2199109737","loc":[-85.634416,41.9480059]},"n2199109735":{"id":"n2199109735","loc":[-85.6344145,41.9478983]},"n2199109733":{"id":"n2199109733","loc":[-85.6342749,41.9478993]},"n2199109731":{"id":"n2199109731","loc":[-85.6342753,41.9479272]},"n2199109729":{"id":"n2199109729","loc":[-85.6342498,41.9479274]},"n2199109727":{"id":"n2199109727","loc":[-85.6342505,41.9479762]},"n2199109725":{"id":"n2199109725","loc":[-85.6342743,41.947976]},"n2199109723":{"id":"n2199109723","loc":[-85.6342747,41.948007]},"n2199109721":{"id":"n2199109721","loc":[-85.6343415,41.9476355]},"n2199109719":{"id":"n2199109719","loc":[-85.6343391,41.9474973]},"n2199109717":{"id":"n2199109717","loc":[-85.6343133,41.9474798]},"n2199109715":{"id":"n2199109715","loc":[-85.6342874,41.9474737]},"n2199109709":{"id":"n2199109709","loc":[-85.6349804,41.94815]},"n2199109707":{"id":"n2199109707","loc":[-85.6348915,41.9481505]},"n2199109705":{"id":"n2199109705","loc":[-85.6348917,41.9481692]},"n2199109702":{"id":"n2199109702","loc":[-85.6348522,41.9481694]},"n2199109700":{"id":"n2199109700","loc":[-85.6348532,41.9482679]},"n2199109698":{"id":"n2199109698","loc":[-85.6348315,41.948268]},"n2199109696":{"id":"n2199109696","loc":[-85.6348318,41.9482955]},"n2199109694":{"id":"n2199109694","loc":[-85.6349653,41.9482946]},"n2199109692":{"id":"n2199109692","loc":[-85.6349656,41.9483211]},"n2199109690":{"id":"n2199109690","loc":[-85.634999,41.9483209]},"n2199109688":{"id":"n2199109688","loc":[-85.6349987,41.9482947]},"n2199109686":{"id":"n2199109686","loc":[-85.6351753,41.9482935]},"n2199109684":{"id":"n2199109684","loc":[-85.6351749,41.9482617]},"n2199109682":{"id":"n2199109682","loc":[-85.6351588,41.9482618]},"n2199109680":{"id":"n2199109680","loc":[-85.6351575,41.9481518]},"n2199109678":{"id":"n2199109678","loc":[-85.6350671,41.9481524]},"n2199109676":{"id":"n2199109676","loc":[-85.6350649,41.9479659]},"n2199109674":{"id":"n2199109674","loc":[-85.6349785,41.9479665]},"n2199109671":{"id":"n2199109671","loc":[-85.6343069,41.9483263]},"n2199109669":{"id":"n2199109669","loc":[-85.6343052,41.9482981]},"n2199109658":{"id":"n2199109658","loc":[-85.6343314,41.9480549]},"n2199109656":{"id":"n2199109656","loc":[-85.6343305,41.9480461]},"n2199109654":{"id":"n2199109654","loc":[-85.634435,41.9480468]},"n2199109652":{"id":"n2199109652","loc":[-85.6344342,41.9483746]},"n2199109650":{"id":"n2199109650","loc":[-85.6344629,41.9483727]},"n2199109648":{"id":"n2199109648","loc":[-85.6344637,41.9484561]},"n2199109645":{"id":"n2199109645","loc":[-85.63443,41.9484567]},"n2199109642":{"id":"n2199109642","loc":[-85.6344317,41.948505]},"n185964352":{"id":"n185964352","loc":[-85.6373958,41.9489943]},"n185964351":{"id":"n185964351","loc":[-85.637113,41.9486]},"n2208608825":{"id":"n2208608825","loc":[-85.6354483,41.9494241]},"n2208608823":{"id":"n2208608823","loc":[-85.6360418,41.949416]},"n2208608821":{"id":"n2208608821","loc":[-85.6360458,41.9495802]},"n2208608811":{"id":"n2208608811","loc":[-85.6357458,41.9495843]},"n2208608808":{"id":"n2208608808","loc":[-85.6357508,41.9497835]},"n2208608806":{"id":"n2208608806","loc":[-85.6354573,41.9497875]},"n2208608795":{"id":"n2208608795","loc":[-85.6354595,41.9498778]},"n2199109638":{"id":"n2199109638","loc":[-85.6349605,41.949749]},"n2199109636":{"id":"n2199109636","loc":[-85.6349605,41.9497639]},"n2199109634":{"id":"n2199109634","loc":[-85.6349061,41.94971]},"n2199109632":{"id":"n2199109632","loc":[-85.6349048,41.9496569]},"n2199109630":{"id":"n2199109630","loc":[-85.6348835,41.9496571]},"n2199109628":{"id":"n2199109628","loc":[-85.6348829,41.9497103]},"n2199109626":{"id":"n2199109626","loc":[-85.635227,41.9497738]},"n2199109624":{"id":"n2199109624","loc":[-85.6352184,41.9497787]},"n2199109622":{"id":"n2199109622","loc":[-85.6351181,41.9497806]},"n2199109620":{"id":"n2199109620","loc":[-85.6351181,41.9497456]},"n2199109618":{"id":"n2199109618","loc":[-85.6348842,41.9497651]},"n2199109616":{"id":"n2199109616","loc":[-85.6348827,41.9496238]},"n2199109615":{"id":"n2199109615","loc":[-85.6351268,41.9496206]},"n2199109614":{"id":"n2199109614","loc":[-85.6351261,41.9495891]},"n2199109613":{"id":"n2199109613","loc":[-85.6351957,41.9495881]},"n2199109612":{"id":"n2199109612","loc":[-85.6351924,41.9494515]},"n2199109611":{"id":"n2199109611","loc":[-85.6353997,41.9494488]},"n2199109610":{"id":"n2199109610","loc":[-85.6354074,41.9497715]},"n2189015681":{"id":"n2189015681","loc":[-85.6344229,41.9509639]},"n2189015677":{"id":"n2189015677","loc":[-85.634424,41.9507396]},"n2138493843":{"id":"n2138493843","loc":[-85.6343935,41.9502836]},"n2138493840":{"id":"n2138493840","loc":[-85.634398,41.9506264]},"n354002838":{"id":"n354002838","loc":[-85.6345197,41.9510631]},"n2114807590":{"id":"n2114807590","loc":[-85.634511,41.9499767]},"n185964353":{"id":"n185964353","loc":[-85.6374092,41.9498755]},"n1819849180":{"id":"n1819849180","loc":[-85.6348236,41.94996]},"n1819849115":{"id":"n1819849115","loc":[-85.6354372,41.9499538]},"n1819848921":{"id":"n1819848921","loc":[-85.6348439,41.951064]},"n1819848885":{"id":"n1819848885","loc":[-85.6354575,41.9510578]},"n185984281":{"id":"n185984281","loc":[-85.638075,41.949872]},"n2208608827":{"id":"n2208608827","loc":[-85.6339169,41.9473191]},"n2199109749":{"id":"n2199109749","loc":[-85.6342082,41.9477934]},"n2199109747":{"id":"n2199109747","loc":[-85.6342045,41.9476867]},"n2199109713":{"id":"n2199109713","loc":[-85.6342404,41.9474746]},"n2199109711":{"id":"n2199109711","loc":[-85.6342404,41.9476355]},"n2199109673":{"id":"n2199109673","loc":[-85.6340886,41.9483282]},"n2199109667":{"id":"n2199109667","loc":[-85.6342403,41.9482988]},"n2199109665":{"id":"n2199109665","loc":[-85.6342386,41.9482116]},"n2199109662":{"id":"n2199109662","loc":[-85.6340861,41.9482135]},"n2199109660":{"id":"n2199109660","loc":[-85.6340802,41.9480562]},"n2199109640":{"id":"n2199109640","loc":[-85.6340928,41.9485063]},"n354031366":{"id":"n354031366","loc":[-85.6341667,41.9477778],"tags":{"amenity":"place_of_worship","name":"Faith Tabernacle Church","religion":"christian"}},"n2189015686":{"id":"n2189015686","loc":[-85.6337798,41.95099]},"n2189015684":{"id":"n2189015684","loc":[-85.6337794,41.9509674]},"n2189015673":{"id":"n2189015673","loc":[-85.6337501,41.9507457]},"n2189015669":{"id":"n2189015669","loc":[-85.6337501,41.9506974]},"n2189015665":{"id":"n2189015665","loc":[-85.6339034,41.9506959]},"n2189015662":{"id":"n2189015662","loc":[-85.6339015,41.950436]},"n2189015658":{"id":"n2189015658","loc":[-85.6334916,41.9504376]},"n2189015655":{"id":"n2189015655","loc":[-85.6334939,41.9507558]},"n2189015650":{"id":"n2189015650","loc":[-85.6334543,41.950756]},"n2189015649":{"id":"n2189015649","loc":[-85.633456,41.9509915]},"n2138493842":{"id":"n2138493842","loc":[-85.6339937,41.9502836]},"n2138493841":{"id":"n2138493841","loc":[-85.6339983,41.9506281]},"n2114807579":{"id":"n2114807579","loc":[-85.6333644,41.9510682]},"n2114807573":{"id":"n2114807573","loc":[-85.6333557,41.9499819]},"n354031330":{"id":"n354031330","loc":[-85.6341667,41.9497222],"tags":{"amenity":"place_of_worship","name":"Trinity Episcopal Church","religion":"christian"}},"n185960794":{"id":"n185960794","loc":[-85.633307,41.9537]},"n185964357":{"id":"n185964357","loc":[-85.637432,41.952399]},"n185964358":{"id":"n185964358","loc":[-85.637452,41.953665]},"n185964359":{"id":"n185964359","loc":[-85.63746,41.954658]},"n185964360":{"id":"n185964360","loc":[-85.637473,41.95592]},"n185964361":{"id":"n185964361","loc":[-85.637468,41.956906]},"n185964362":{"id":"n185964362","loc":[-85.637483,41.958313]},"n185966957":{"id":"n185966957","loc":[-85.633361,41.957422]},"n185975351":{"id":"n185975351","loc":[-85.63334,41.9559]},"n185978784":{"id":"n185978784","loc":[-85.633311,41.954679]},"n185986157":{"id":"n185986157","loc":[-85.633287,41.952426]},"n185986158":{"id":"n185986158","loc":[-85.6333607,41.9582301],"tags":{"highway":"turning_circle"}},"w17965182":{"id":"w17965182","tags":{"highway":"residential","name":"W Prutzman St"},"nodes":["n185965289","n2189153241","n185965291"]},"w208627205":{"id":"w208627205","tags":{"area":"yes","building":"yes"},"nodes":["n2189015649","n2189015650","n2189015655","n2189015658","n2189015662","n2189015665","n2189015669","n2189015673","n2189015677","n2189015681","n2189015684","n2189015686","n2189015649"]},"w209717042":{"id":"w209717042","tags":{"amenity":"place_of_worship","area":"yes","building":"yes","denomination":"presbyterian","name":"First Presbyterian Church","religion":"christian"},"nodes":["n2199109610","n2199109611","n2199109612","n2199109613","n2199109614","n2199109615","n2199109616","n2199109630","n2199109632","n2199109634","n2199109628","n2199109618","n2199109636","n2199109638","n2199109620","n2199109622","n2199109624","n2199109626","n2199109610"]},"w209717045":{"id":"w209717045","tags":{"area":"yes","building":"yes"},"nodes":["n2199109711","n2199109713","n2199109715","n2199109717","n2199109719","n2199109721","n2199109711"]},"w209717047":{"id":"w209717047","tags":{"area":"yes","building":"yes"},"nodes":["n2199109739","n2199109741","n2199109743","n2199109745","n2199109747","n2199109749","n2199109751","n2199109753","n2199109739"]},"w209717044":{"id":"w209717044","tags":{"area":"yes","building":"yes"},"nodes":["n2199109674","n2199109676","n2199109678","n2199109680","n2199109682","n2199109684","n2199109686","n2199109688","n2199109690","n2199109692","n2199109694","n2199109696","n2199109698","n2199109700","n2199109702","n2199109705","n2199109707","n2199109709","n2199109674"]},"w210822776":{"id":"w210822776","tags":{"highway":"service","service":"alley","surface":"unpaved"},"nodes":["n2208608795","n2208608806","n2208608825","n2208608800","n2189153241"]},"w210822778":{"id":"w210822778","tags":{"highway":"service","service":"alley"},"nodes":["n2208608826","n2208608827"]},"w209717050":{"id":"w209717050","tags":{"area":"yes","building":"yes"},"nodes":["n2199109787","n2199109789","n2199109791","n2199109793","n2199109795","n2199109797","n2199109799","n2199109802","n2199109804","n2199109806","n2199109787"]},"w17965097":{"id":"w17965097","tags":{"highway":"residential","name":"Maple Street"},"nodes":["n185964351","n185964352","n185964353","n185964355","n185964357","n185964358","n185964359","n185964360","n185964361","n185964362"]},"w17965856":{"id":"w17965856","tags":{"highway":"residential","name":"W Kelsey St"},"nodes":["n185971578","n2208608800","n185971580","n185964351"]},"w17967444":{"id":"w17967444","tags":{"highway":"residential","name":"East Street"},"nodes":["n185966937","n185978969","n185986155","n185985812","n185986157","n185960794","n185978784","n185975351","n185966957","n185986158"]},"w17967764":{"id":"w17967764","tags":{"highway":"residential","name":"Rock River Ave"},"nodes":["n185984017","n185964351"]},"w170848329":{"id":"w170848329","tags":{"leisure":"park","name":"LaFayette Park"},"nodes":["n1819849180","n1819849115","n1819848885","n1819848921","n1819849180"]},"w17967208":{"id":"w17967208","tags":{"highway":"residential","name":"West Bennett Street"},"nodes":["n185978390","n2208608795","n185984020","n185964353","n185984281"]},"w17965349":{"id":"w17965349","tags":{"highway":"residential","name":"E Prutzman St"},"nodes":["n185966937","n2208608827","n185965289"]},"w209717049":{"id":"w209717049","tags":{"area":"yes","building":"yes"},"nodes":["n2199109761","n2199109762","n2199109763","n2199109765","n2199109768","n2199109770","n2199109783","n2199109785","n2199109761"]},"w203841840":{"id":"w203841840","tags":{"area":"yes","leisure":"playground"},"nodes":["n2138493840","n2138493841","n2138493842","n2138493843","n2138493840"]},"w209717043":{"id":"w209717043","tags":{"amenity":"place_of_worship","area":"yes","building":"church","denomination":"methodist","name":"First United Methodist Church","religion":"christian"},"nodes":["n2199109640","n2199109642","n2199109645","n2199109648","n2199109650","n2199109652","n2199109654","n2199109656","n2199109658","n2199109660","n2199109662","n2199109665","n2199109667","n2199109669","n2199109671","n2199109673","n2199109640"]},"w201484341":{"id":"w201484341","tags":{"amenity":"school","name":"Hoppin School"},"nodes":["n354002838","n2114807579","n2114807573","n2114807590","n354002838"]},"w209717046":{"id":"w209717046","tags":{"area":"yes","building":"yes"},"nodes":["n2199109723","n2199109725","n2199109727","n2199109729","n2199109731","n2199109733","n2199109735","n2199109737","n2199109723"]},"w210822777":{"id":"w210822777","tags":{"amenity":"parking","area":"yes"},"nodes":["n2208608806","n2208608808","n2208608811","n2208608821","n2208608823","n2208608825","n2208608806"]},"n185954965":{"id":"n185954965","loc":[-85.6191189,41.9441922]},"n185954968":{"id":"n185954968","loc":[-85.6194384,41.9442405]},"n185954970":{"id":"n185954970","loc":[-85.6196543,41.9443252]},"n185954972":{"id":"n185954972","loc":[-85.6197862,41.9444539]},"n354002931":{"id":"n354002931","loc":[-85.6198991,41.9455269]},"n354030853":{"id":"n354030853","loc":[-85.6219444,41.9455556],"tags":{"amenity":"place_of_worship","name":"Grant Chapel","religion":"christian"}},"n367815963":{"id":"n367815963","loc":[-85.6202778,41.9461111],"tags":{"building":"yes","name":"George Washington Carver Community Center"}},"n185947331":{"id":"n185947331","loc":[-85.618779,41.943269]},"n185947333":{"id":"n185947333","loc":[-85.618795,41.943511]},"n185947336":{"id":"n185947336","loc":[-85.618711,41.94413]},"n185947338":{"id":"n185947338","loc":[-85.618704,41.944189]},"n185947339":{"id":"n185947339","loc":[-85.618597,41.944337]},"n185947340":{"id":"n185947340","loc":[-85.618485,41.944528]},"n185947343":{"id":"n185947343","loc":[-85.618442,41.944716]},"n185947345":{"id":"n185947345","loc":[-85.618457,41.945107]},"n185947347":{"id":"n185947347","loc":[-85.618296,41.945338]},"n185947374":{"id":"n185947374","loc":[-85.616748,41.944453]},"n185947375":{"id":"n185947375","loc":[-85.616813,41.944646]},"n185947376":{"id":"n185947376","loc":[-85.616859,41.945196]},"n185947377":{"id":"n185947377","loc":[-85.616941,41.945352]},"n185947406":{"id":"n185947406","loc":[-85.618184,41.944227]},"n185947409":{"id":"n185947409","loc":[-85.617911,41.943875]},"n185947410":{"id":"n185947410","loc":[-85.617579,41.943682]},"n185947411":{"id":"n185947411","loc":[-85.61713,41.943589]},"n185947412":{"id":"n185947412","loc":[-85.616549,41.943559]},"n185947414":{"id":"n185947414","loc":[-85.616482,41.943556]},"n185947464":{"id":"n185947464","loc":[-85.616526,41.943788]},"n185947466":{"id":"n185947466","loc":[-85.616504,41.944002]},"n185948863":{"id":"n185948863","loc":[-85.619017,41.943391]},"n185948865":{"id":"n185948865","loc":[-85.619059,41.943368]},"n185955022":{"id":"n185955022","loc":[-85.620088,41.945571]},"n185955025":{"id":"n185955025","loc":[-85.620051,41.945505]},"n185955028":{"id":"n185955028","loc":[-85.62001,41.94541]},"n185980371":{"id":"n185980371","loc":[-85.620982,41.944742]},"n185980398":{"id":"n185980398","loc":[-85.621305,41.944782]},"n185980401":{"id":"n185980401","loc":[-85.621174,41.944819]},"n185980403":{"id":"n185980403","loc":[-85.621029,41.944871]},"n185980405":{"id":"n185980405","loc":[-85.620741,41.945011]},"n185980407":{"id":"n185980407","loc":[-85.620616,41.945085]},"n185980409":{"id":"n185980409","loc":[-85.620506,41.945172]},"n185980411":{"id":"n185980411","loc":[-85.620394,41.945273]},"n185980413":{"id":"n185980413","loc":[-85.620316,41.94536]},"n185980415":{"id":"n185980415","loc":[-85.620257,41.945452]},"n185980417":{"id":"n185980417","loc":[-85.620212,41.945535]},"n185985910":{"id":"n185985910","loc":[-85.620101,41.945811]},"n185985912":{"id":"n185985912","loc":[-85.620081,41.945937]},"n1475283972":{"id":"n1475283972","loc":[-85.6198991,41.9437179]},"n1475283982":{"id":"n1475283982","loc":[-85.6195022,41.9433463]},"n1475284007":{"id":"n1475284007","loc":[-85.6193037,41.9433383]},"n1475284040":{"id":"n1475284040","loc":[-85.6197329,41.9434121]},"n1475284044":{"id":"n1475284044","loc":[-85.6198756,41.9435363]},"n1475284050":{"id":"n1475284050","loc":[-85.6199689,41.9432106]},"n1475284053":{"id":"n1475284053","loc":[-85.6198943,41.9432921]},"n185954974":{"id":"n185954974","loc":[-85.6198296,41.94473]},"n185954977":{"id":"n185954977","loc":[-85.6200474,41.9447384]},"n2196831365":{"id":"n2196831365","loc":[-85.6202259,41.9460883]},"n2196831366":{"id":"n2196831366","loc":[-85.6202245,41.9458642]},"n2196831367":{"id":"n2196831367","loc":[-85.6205184,41.9458631]},"n2196831368":{"id":"n2196831368","loc":[-85.6205189,41.9459437]},"n2196831369":{"id":"n2196831369","loc":[-85.6203879,41.9459441]},"n2196831370":{"id":"n2196831370","loc":[-85.6203888,41.9460878]},"n2196831371":{"id":"n2196831371","loc":[-85.6184046,41.9465663]},"n2196831372":{"id":"n2196831372","loc":[-85.6191563,41.9465618]},"n2196831373":{"id":"n2196831373","loc":[-85.6191536,41.946319]},"n2196831374":{"id":"n2196831374","loc":[-85.6187356,41.9463216]},"n2196831375":{"id":"n2196831375","loc":[-85.6187334,41.9461197]},"n2196831376":{"id":"n2196831376","loc":[-85.6193167,41.9461162]},"n2196831377":{"id":"n2196831377","loc":[-85.6193156,41.9460229]},"n2196831378":{"id":"n2196831378","loc":[-85.619622,41.946021]},"n2196831379":{"id":"n2196831379","loc":[-85.6196237,41.9461712]},"n2196831380":{"id":"n2196831380","loc":[-85.6197702,41.9461703]},"n2196831381":{"id":"n2196831381","loc":[-85.6197685,41.9460202]},"n2196831382":{"id":"n2196831382","loc":[-85.6197323,41.9460204]},"n2196831383":{"id":"n2196831383","loc":[-85.6197305,41.9458563]},"n2196831384":{"id":"n2196831384","loc":[-85.6196165,41.945857]},"n2196831385":{"id":"n2196831385","loc":[-85.6196156,41.9457764]},"n2196831386":{"id":"n2196831386","loc":[-85.6194472,41.9457775]},"n2196831387":{"id":"n2196831387","loc":[-85.6194151,41.9457777]},"n2196831388":{"id":"n2196831388","loc":[-85.6183779,41.9457883]},"n2196831389":{"id":"n2196831389","loc":[-85.6183842,41.9461317]},"n2196831390":{"id":"n2196831390","loc":[-85.6185026,41.9461304]},"n2196831391":{"id":"n2196831391","loc":[-85.6185061,41.9463194]},"n2196831392":{"id":"n2196831392","loc":[-85.6184001,41.9463205]},"n2196831393":{"id":"n2196831393","loc":[-85.6182482,41.9464163]},"n2196831394":{"id":"n2196831394","loc":[-85.6182467,41.9463193]},"n2196831395":{"id":"n2196831395","loc":[-85.6180389,41.946321]},"n2196831397":{"id":"n2196831397","loc":[-85.6180404,41.946418]},"n185947303":{"id":"n185947303","loc":[-85.611074,41.943389]},"n185947304":{"id":"n185947304","loc":[-85.611332,41.943267]},"n185947305":{"id":"n185947305","loc":[-85.611635,41.943218]},"n185947306":{"id":"n185947306","loc":[-85.612762,41.943311]},"n185947308":{"id":"n185947308","loc":[-85.613027,41.943327]},"n185947310":{"id":"n185947310","loc":[-85.615377,41.942996]},"n185947312":{"id":"n185947312","loc":[-85.615701,41.943007]},"n185947314":{"id":"n185947314","loc":[-85.61604,41.943067]},"n185947315":{"id":"n185947315","loc":[-85.61626,41.943083]},"n185947316":{"id":"n185947316","loc":[-85.616507,41.943048]},"n185947319":{"id":"n185947319","loc":[-85.616702,41.94299]},"n185947321":{"id":"n185947321","loc":[-85.617078,41.942918]},"n185947322":{"id":"n185947322","loc":[-85.617366,41.942973]},"n185947323":{"id":"n185947323","loc":[-85.617601,41.943033]},"n185947325":{"id":"n185947325","loc":[-85.617799,41.943027]},"n185947327":{"id":"n185947327","loc":[-85.618264,41.942961]},"n185947328":{"id":"n185947328","loc":[-85.618508,41.942972]},"n185947329":{"id":"n185947329","loc":[-85.618707,41.943076]},"n185947361":{"id":"n185947361","loc":[-85.615356,41.944922]},"n185947363":{"id":"n185947363","loc":[-85.61536,41.944893]},"n185947365":{"id":"n185947365","loc":[-85.615406,41.944547]},"n185947367":{"id":"n185947367","loc":[-85.61548,41.944351]},"n185947369":{"id":"n185947369","loc":[-85.615805,41.94419]},"n185947371":{"id":"n185947371","loc":[-85.616166,41.944156]},"n185947373":{"id":"n185947373","loc":[-85.616411,41.944197]},"n185947416":{"id":"n185947416","loc":[-85.616335,41.94343]},"n185947417":{"id":"n185947417","loc":[-85.616069,41.943293]},"n185947419":{"id":"n185947419","loc":[-85.615803,41.943249]},"n185947420":{"id":"n185947420","loc":[-85.615524,41.943342]},"n185947421":{"id":"n185947421","loc":[-85.615311,41.94353]},"n185947422":{"id":"n185947422","loc":[-85.614338,41.943558]},"n185947423":{"id":"n185947423","loc":[-85.61422,41.94369]},"n185947425":{"id":"n185947425","loc":[-85.614221,41.944224]},"n185947427":{"id":"n185947427","loc":[-85.614198,41.944888]},"n185947429":{"id":"n185947429","loc":[-85.614221,41.945439]},"n185947468":{"id":"n185947468","loc":[-85.615908,41.944756]},"n185947470":{"id":"n185947470","loc":[-85.615871,41.944888]},"n185947472":{"id":"n185947472","loc":[-85.615878,41.94507]},"n185955153":{"id":"n185955153","loc":[-85.620087,41.947701]},"n185960690":{"id":"n185960690","loc":[-85.620141,41.951901]},"n185978817":{"id":"n185978817","loc":[-85.617193,41.954706]},"n185985916":{"id":"n185985916","loc":[-85.620088,41.94758]},"n185985918":{"id":"n185985918","loc":[-85.620133,41.951538]},"n185985919":{"id":"n185985919","loc":[-85.62013,41.952104]},"n185985920":{"id":"n185985920","loc":[-85.620104,41.952305]},"n185985921":{"id":"n185985921","loc":[-85.620062,41.952499]},"n185985922":{"id":"n185985922","loc":[-85.619993,41.952702]},"n185985925":{"id":"n185985925","loc":[-85.619879,41.952986]},"n185985927":{"id":"n185985927","loc":[-85.619689,41.95329]},"n185985928":{"id":"n185985928","loc":[-85.619508,41.953521]},"n185985929":{"id":"n185985929","loc":[-85.619286,41.953728]},"n185985930":{"id":"n185985930","loc":[-85.618925,41.954007]},"n185985931":{"id":"n185985931","loc":[-85.618638,41.954189]},"n185985932":{"id":"n185985932","loc":[-85.61831,41.954358]},"n185985934":{"id":"n185985934","loc":[-85.618015,41.954485]},"n185985936":{"id":"n185985936","loc":[-85.617606,41.954611]},"n1475283975":{"id":"n1475283975","loc":[-85.6150935,41.9434118]},"n1475283979":{"id":"n1475283979","loc":[-85.6193367,41.9430252]},"n1475283989":{"id":"n1475283989","loc":[-85.6104771,41.9455269]},"n1475283990":{"id":"n1475283990","loc":[-85.6104771,41.9437179]},"n1475283994":{"id":"n1475283994","loc":[-85.6198042,41.9429763]},"n1475283998":{"id":"n1475283998","loc":[-85.6192101,41.9426716]},"n1475284000":{"id":"n1475284000","loc":[-85.6198622,41.942836]},"n1475284002":{"id":"n1475284002","loc":[-85.6163262,41.9427688]},"n1475284006":{"id":"n1475284006","loc":[-85.6179527,41.9429168]},"n1475284029":{"id":"n1475284029","loc":[-85.6197195,41.9427278]},"n1475284038":{"id":"n1475284038","loc":[-85.6194405,41.9427837]},"n1475284052":{"id":"n1475284052","loc":[-85.6153225,41.942841]},"n1475284055":{"id":"n1475284055","loc":[-85.6129233,41.9437179]},"n2139966627":{"id":"n2139966627","loc":[-85.61958,41.9427558]},"w17966773":{"id":"w17966773","tags":{"highway":"secondary","name":"E Michigan Ave","ref":"M 60"},"nodes":["n185980372","n185980398","n185980401","n185980403","n185980405","n185980407","n185980409","n185980411","n185980413","n185980415","n185980417","n185955019"]},"w17964043":{"id":"w17964043","tags":{"highway":"residential"},"nodes":["n185955019","n185955022","n185955025","n185955028","n185954977","n185971477","n1475284050","n1475284000","n1475284029","n2139966627","n1475284038"]},"w17962834":{"id":"w17962834","tags":{"highway":"service"},"nodes":["n185947316","n185947414","n185947464","n185947466","n185947373","n185947468","n185947470","n185947472","n185947474"]},"w209470310":{"id":"w209470310","tags":{"area":"yes","building":"yes"},"nodes":["n2196831393","n2196831394","n2196831395","n2196831397","n2196831393"]},"w17963058":{"id":"w17963058","tags":{"highway":"service"},"nodes":["n185947333","n185948863","n185948865","n1475284007","n1475283982","n1475284040","n1475284044"]},"w17962823":{"id":"w17962823","tags":{"highway":"service"},"nodes":["n185947359","n185947361","n185947363","n185947365","n185947367","n185947369","n185947371","n185947373","n185947374","n185947375","n185947376","n185947377","n185947378"]},"w17962821":{"id":"w17962821","tags":{"highway":"service"},"nodes":["n185947303","n185947304","n185947305","n185947306","n185947308","n185947310","n185947312","n185947314","n185947315","n185947316","n185947319","n185947321","n185947322","n185947323","n185947325","n185947327","n185947328","n185947329","n185947331","n185947333","n185947336","n185947338","n185947339","n185947340","n185947343","n185947345","n185947347","n185947349"]},"w134150798":{"id":"w134150798","tags":{"amenity":"grave_yard","name":"Riverside Cemetery"},"nodes":["n354002931","n1475283972","n1475284053","n1475283994","n1475283979","n1475283998","n1475284006","n1475284002","n1475284052","n1475283975","n1475284055","n1475283990","n1475283989","n354002931"]},"w17964040":{"id":"w17964040","tags":{"highway":"service"},"nodes":["n185947336","n185954965","n185954968","n185954970","n185954972","n185954974","n185954977"]},"w209470308":{"id":"w209470308","tags":{"area":"yes","building":"yes"},"nodes":["n2196831365","n2196831366","n2196831367","n2196831368","n2196831369","n2196831370","n2196831365"]},"w17962828":{"id":"w17962828","tags":{"highway":"service"},"nodes":["n185947340","n185947406","n185947409","n185947410","n185947411","n185947412","n185947414","n185947416","n185947417","n185947419","n185947420","n185947421","n185947422","n185947423","n185947425","n185947427","n185947429"]},"w209470309":{"id":"w209470309","tags":{"area":"yes","building":"yes"},"nodes":["n2196831371","n2196831372","n2196831373","n2196831374","n2196831375","n2196831376","n2196831377","n2196831378","n2196831379","n2196831380","n2196831381","n2196831382","n2196831383","n2196831384","n2196831385","n2196831386","n2196831387","n2196831388","n2196831389","n2196831390","n2196831391","n2196831392","n2196831371"]},"w17967415":{"id":"w17967415","tags":{"highway":"secondary","name":"Jefferson St","name_1":"State Highway 60","ref":"M 60"},"nodes":["n185955019","n185985910","n185985912","n185985914","n185961367","n185985916","n185955153","n185965105","n185974697","n185955120","n185985918","n185960690","n185985919","n185985920","n185985921","n185985922","n185985925","n185985927","n185985928","n185985929","n185985930","n185985931","n185985932","n185985934","n185985936","n185978817"]},"w17966772":{"id":"w17966772","tags":{"highway":"unclassified","name":"E Michigan Ave","name_1":"State Highway 60"},"nodes":["n185954977","n185980371","n185980372"]},"n185958500":{"id":"n185958500","loc":[-85.621591,41.941075]},"n185963110":{"id":"n185963110","loc":[-85.6204416,41.9408882]},"n2139966628":{"id":"n2139966628","loc":[-85.6196431,41.9426467],"tags":{"leisure":"fishing"}},"n2139966630":{"id":"n2139966630","loc":[-85.6199354,41.9429616]},"n2199127051":{"id":"n2199127051","loc":[-85.6170556,41.939696]},"n2199127052":{"id":"n2199127052","loc":[-85.6170536,41.9392909]},"n2199127053":{"id":"n2199127053","loc":[-85.6172067,41.9392905]},"n2199127054":{"id":"n2199127054","loc":[-85.6172061,41.9391853]},"n2199127055":{"id":"n2199127055","loc":[-85.6171481,41.9391854]},"n2199127060":{"id":"n2199127060","loc":[-85.6167389,41.9392896]},"n2199127061":{"id":"n2199127061","loc":[-85.6168728,41.9392892]},"n2199127062":{"id":"n2199127062","loc":[-85.6168747,41.9396965]},"n2199127071":{"id":"n2199127071","loc":[-85.620196,41.9399446]},"n2199127072":{"id":"n2199127072","loc":[-85.620193,41.9397316]},"n2199127073":{"id":"n2199127073","loc":[-85.6200381,41.9397328]},"n2199127074":{"id":"n2199127074","loc":[-85.6200412,41.9399458]},"n2199127075":{"id":"n2199127075","loc":[-85.6203606,41.9399939]},"n2199127076":{"id":"n2199127076","loc":[-85.6205527,41.9399922]},"n2199127077":{"id":"n2199127077","loc":[-85.6205482,41.9397115]},"n2199127078":{"id":"n2199127078","loc":[-85.6204132,41.9397124]},"n2199127079":{"id":"n2199127079","loc":[-85.6204144,41.9396341]},"n2199127080":{"id":"n2199127080","loc":[-85.6205699,41.9396324]},"n2199127081":{"id":"n2199127081","loc":[-85.6205722,41.939498]},"n2199127082":{"id":"n2199127082","loc":[-85.6204064,41.9394997]},"n2199127083":{"id":"n2199127083","loc":[-85.6204087,41.939561]},"n2199127084":{"id":"n2199127084","loc":[-85.6203103,41.9395618]},"n2199127085":{"id":"n2199127085","loc":[-85.620308,41.9396069]},"n2199127086":{"id":"n2199127086","loc":[-85.6200347,41.9396086]},"n2199127087":{"id":"n2199127087","loc":[-85.6200382,41.9397141]},"n2199127088":{"id":"n2199127088","loc":[-85.6202257,41.9397149]},"n2199127089":{"id":"n2199127089","loc":[-85.6202269,41.9399182]},"n2199127090":{"id":"n2199127090","loc":[-85.6203595,41.9399199]},"n2199127091":{"id":"n2199127091","loc":[-85.6212335,41.939688]},"n2199127092":{"id":"n2199127092","loc":[-85.6212328,41.939595]},"n2199127093":{"id":"n2199127093","loc":[-85.6208807,41.9395966]},"n2199127094":{"id":"n2199127094","loc":[-85.6208815,41.9396896]},"n2199127095":{"id":"n2199127095","loc":[-85.6208676,41.9396872]},"n2199127096":{"id":"n2199127096","loc":[-85.6208583,41.9393539]},"n2199127097":{"id":"n2199127097","loc":[-85.6207006,41.9393563]},"n2199127098":{"id":"n2199127098","loc":[-85.6207099,41.9396896]},"n185967054":{"id":"n185967054","loc":[-85.6173384,41.9356126]},"n185967063":{"id":"n185967063","loc":[-85.617371,41.936243]},"n185967065":{"id":"n185967065","loc":[-85.617337,41.936299]},"n185967068":{"id":"n185967068","loc":[-85.617321,41.936373]},"n185967070":{"id":"n185967070","loc":[-85.6173562,41.9366969]},"n185967074":{"id":"n185967074","loc":[-85.6173635,41.9377414]},"n185967075":{"id":"n185967075","loc":[-85.6173696,41.9381886]},"n185967076":{"id":"n185967076","loc":[-85.617372,41.938535]},"n2199127056":{"id":"n2199127056","loc":[-85.617147,41.9389616]},"n2199127057":{"id":"n2199127057","loc":[-85.6172136,41.9389614]},"n2199127058":{"id":"n2199127058","loc":[-85.6172123,41.9386909]},"n2199127059":{"id":"n2199127059","loc":[-85.616736,41.9386922]},"n2203921041":{"id":"n2203921041","loc":[-85.6173018,41.9346369]},"w203983952":{"id":"w203983952","tags":{"highway":"service"},"nodes":["n2139966627","n1819800319"]},"w209718301":{"id":"w209718301","tags":{"area":"yes","building":"yes"},"nodes":["n2199127051","n2199127052","n2199127053","n2199127054","n2199127055","n2199127056","n2199127057","n2199127058","n2199127059","n2199127060","n2199127061","n2199127062","n2199127051"]},"w209718304":{"id":"w209718304","tags":{"area":"yes","building":"yes"},"nodes":["n2199127071","n2199127072","n2199127073","n2199127074","n2199127071"]},"w17964961":{"id":"w17964961","tags":{"highway":"residential","name":"Whipple St"},"nodes":["n185963099","n185963110"]},"w17964489":{"id":"w17964489","tags":{"highway":"residential","name":"Jackson St"},"nodes":["n185958498","n185958500"]},"w203983953":{"id":"w203983953","tags":{"area":"yes","leisure":"park","name":"Marina Park"},"nodes":["n1475283994","n1475283979","n1475283998","n2139966629","n2139966625","n1819800319","n2139966623","n2139966622","n2139966621","n2139966630","n1475283994"]},"w17965366":{"id":"w17965366","tags":{"highway":"residential","name":"14th St"},"nodes":["n2203921041","n185967054","n185967063","n185967065","n185967068","n185967070","n185967074","n185967075","n185967076","n185967077"]},"w209718306":{"id":"w209718306","tags":{"area":"yes","building":"yes"},"nodes":["n2199127091","n2199127092","n2199127093","n2199127094","n2199127091"]},"w209718307":{"id":"w209718307","tags":{"area":"yes","building":"yes"},"nodes":["n2199127095","n2199127096","n2199127097","n2199127098","n2199127095"]},"w209718305":{"id":"w209718305","tags":{"area":"yes","building":"yes"},"nodes":["n2199127075","n2199127076","n2199127077","n2199127078","n2199127079","n2199127080","n2199127081","n2199127082","n2199127083","n2199127084","n2199127085","n2199127086","n2199127087","n2199127088","n2199127089","n2199127090","n2199127075"]},"n185960199":{"id":"n185960199","loc":[-85.62965,41.95469]},"n185980737":{"id":"n185980737","loc":[-85.629083,41.953725]},"n2114807561":{"id":"n2114807561","loc":[-85.6297681,41.9524688]},"n2114807597":{"id":"n2114807597","loc":[-85.6296517,41.952563]},"n185960197":{"id":"n185960197","loc":[-85.629676,41.9537314]},"n185978791":{"id":"n185978791","loc":[-85.6244542,41.9547066]},"w17967573":{"id":"w17967573","tags":{"highway":"residential","name":"E Wheeler St"},"nodes":["n185960195","n2114807561","n185968102","n185967430","n185986157","n185978392"]},"w17966553":{"id":"w17966553","tags":{"highway":"residential","name":"East Hoffman Street"},"nodes":["n185971631","n185978784","n185967432","n185968106","n185960199","n185978787","n185978790","n185978791"]},"w17966787":{"id":"w17966787","tags":{"highway":"residential","name":"East Cushman Street"},"nodes":["n185980735","n185980737","n185960197","n185968104","n185960792"]},"w17964723":{"id":"w17964723","tags":{"highway":"residential","name":"Cushman Street"},"nodes":["n185960792","n185960794","n185960796"]},"w17964654":{"id":"w17964654","tags":{"highway":"residential","name":"Pine Street"},"nodes":["n185960195","n2114807597","n185960197","n185960199"]},"n1819848862":{"id":"n1819848862","loc":[-85.6346087,41.9545845]},"n1819848935":{"id":"n1819848935","loc":[-85.6345948,41.9537717]},"n1819848973":{"id":"n1819848973","loc":[-85.6334247,41.9537827]},"n1819848997":{"id":"n1819848997","loc":[-85.6334386,41.9545956]},"n2189015861":{"id":"n2189015861","loc":[-85.6375906,41.954836]},"n2189015865":{"id":"n2189015865","loc":[-85.6383307,41.9548291]},"n2189015867":{"id":"n2189015867","loc":[-85.6383337,41.9550072]},"n2189015868":{"id":"n2189015868","loc":[-85.6380986,41.9550094]},"n2189015869":{"id":"n2189015869","loc":[-85.6381005,41.9551226]},"n2199109808":{"id":"n2199109808","loc":[-85.6372702,41.9522894]},"n2199109810":{"id":"n2199109810","loc":[-85.6372677,41.9521583]},"n2199109812":{"id":"n2199109812","loc":[-85.6369505,41.9521617]},"n2199109814":{"id":"n2199109814","loc":[-85.636953,41.9522927]},"n185952156":{"id":"n185952156","loc":[-85.640983,41.9546557]},"n185953423":{"id":"n185953423","loc":[-85.641871,41.954652]},"n185971637":{"id":"n185971637","loc":[-85.641583,41.95465]},"n185971639":{"id":"n185971639","loc":[-85.6421344,41.9546444]},"n185971642":{"id":"n185971642","loc":[-85.6428264,41.9545612]},"n185971648":{"id":"n185971648","loc":[-85.6436023,41.9544262]},"n185975066":{"id":"n185975066","loc":[-85.640532,41.953638]},"n185975067":{"id":"n185975067","loc":[-85.64079,41.953638]},"n185982166":{"id":"n185982166","loc":[-85.6399012,41.9523817]},"n2189015858":{"id":"n2189015858","loc":[-85.6376104,41.9560138]},"n2189015870":{"id":"n2189015870","loc":[-85.6386794,41.9551172]},"n2189015871":{"id":"n2189015871","loc":[-85.6386817,41.955256]},"n2189015873":{"id":"n2189015873","loc":[-85.6385437,41.9552573]},"n2189015876":{"id":"n2189015876","loc":[-85.638555,41.9559278]},"n2189015879":{"id":"n2189015879","loc":[-85.6384954,41.9559283]},"n2189015882":{"id":"n2189015882","loc":[-85.6384965,41.9559935]},"n2189015885":{"id":"n2189015885","loc":[-85.6383533,41.9559949]},"n2189015888":{"id":"n2189015888","loc":[-85.638351,41.9558607]},"n2189015891":{"id":"n2189015891","loc":[-85.6382178,41.9558619]},"n2189015894":{"id":"n2189015894","loc":[-85.6382203,41.956008]},"w208627223":{"id":"w208627223","tags":{"area":"yes","building":"yes"},"nodes":["n2189015858","n2189015861","n2189015865","n2189015867","n2189015868","n2189015869","n2189015870","n2189015871","n2189015873","n2189015876","n2189015879","n2189015882","n2189015885","n2189015888","n2189015891","n2189015894","n2189015858"]},"w170848328":{"id":"w170848328","tags":{"leisure":"park","name":"Bowman Park"},"nodes":["n1819848935","n1819848973","n1819848997","n1819848862","n1819848935"]},"w17965866":{"id":"w17965866","tags":{"highway":"residential","name":"West Hoffman Street"},"nodes":["n185971631","n185971632","n185964359","n185965025","n1475293264","n185952156","n185971637","n185953423","n185971639","n185971642","n185971648"]},"w209717051":{"id":"w209717051","tags":{"amenity":"place_of_worship","area":"yes","building":"yes","denomination":"baptist","name":"Calvary Missionary Baptist Church","religion":"christian"},"nodes":["n2199109808","n2199109810","n2199109812","n2199109814","n2199109808"]},"w17966172":{"id":"w17966172","tags":{"highway":"residential","name":"West Cushman Street"},"nodes":["n185960796","n185975064","n185964358","n185965023","n1475293222","n185975066","n185975067"]},"w17966975":{"id":"w17966975","tags":{"highway":"residential","name":"W Wheeler St"},"nodes":["n185978392","n185982163","n185964357","n185965021","n1475293261","n185982166"]},"n185960684":{"id":"n185960684","loc":[-85.622687,41.951885]},"n185960686":{"id":"n185960686","loc":[-85.622492,41.951901]},"n185978795":{"id":"n185978795","loc":[-85.6240991,41.954708]},"n185978803":{"id":"n185978803","loc":[-85.623348,41.954547]},"n185978806":{"id":"n185978806","loc":[-85.623123,41.954502]},"n185978808":{"id":"n185978808","loc":[-85.622923,41.954469]},"n185978810":{"id":"n185978810","loc":[-85.622787,41.954457]},"n185978811":{"id":"n185978811","loc":[-85.622612,41.954458]},"n185978813":{"id":"n185978813","loc":[-85.622368,41.954472]},"n1819790545":{"id":"n1819790545","loc":[-85.6240295,41.9548949]},"n1819790621":{"id":"n1819790621","loc":[-85.6235789,41.954855]},"n1819790664":{"id":"n1819790664","loc":[-85.6238363,41.9549507]},"n1819790683":{"id":"n1819790683","loc":[-85.6224727,41.9545921]},"n1819790730":{"id":"n1819790730","loc":[-85.6227527,41.9545795]},"n1819790740":{"id":"n1819790740","loc":[-85.6240402,41.9550784]},"n1819790831":{"id":"n1819790831","loc":[-85.624126,41.9549986]},"n1819790861":{"id":"n1819790861","loc":[-85.6231712,41.9546872]},"n1819790887":{"id":"n1819790887","loc":[-85.6242762,41.955206]},"n2168544739":{"id":"n2168544739","loc":[-85.6249102,41.952801]},"n2168544740":{"id":"n2168544740","loc":[-85.6251859,41.9527564]},"n2168544741":{"id":"n2168544741","loc":[-85.6255515,41.9527921]},"n2168544742":{"id":"n2168544742","loc":[-85.626001,41.9529481]},"n2168544743":{"id":"n2168544743","loc":[-85.6265284,41.9529838]},"n2168544744":{"id":"n2168544744","loc":[-85.626942,41.9528857]},"n2168544745":{"id":"n2168544745","loc":[-85.6270918,41.9526851]},"n2168544746":{"id":"n2168544746","loc":[-85.6272117,41.95244]},"n2168544747":{"id":"n2168544747","loc":[-85.6271578,41.952226]},"n2168544748":{"id":"n2168544748","loc":[-85.6270019,41.9519719]},"n2168544749":{"id":"n2168544749","loc":[-85.6268221,41.9518382]},"n2168544750":{"id":"n2168544750","loc":[-85.6265284,41.951807]},"n2168544751":{"id":"n2168544751","loc":[-85.6256534,41.9518516]},"n2168544752":{"id":"n2168544752","loc":[-85.6253477,41.9518338]},"n2168544753":{"id":"n2168544753","loc":[-85.6251139,41.9517669]},"n185955747":{"id":"n185955747","loc":[-85.620674,41.954709]},"n185960688":{"id":"n185960688","loc":[-85.621032,41.951913]},"n185972054":{"id":"n185972054","loc":[-85.6186728,41.9547335]},"n185978814":{"id":"n185978814","loc":[-85.6201708,41.9547403]},"n1819790532":{"id":"n1819790532","loc":[-85.6244908,41.9555731]},"n1819790536":{"id":"n1819790536","loc":[-85.6217925,41.9583135]},"n1819790538":{"id":"n1819790538","loc":[-85.6233954,41.9600014]},"n1819790539":{"id":"n1819790539","loc":[-85.6204611,41.9562117]},"n1819790546":{"id":"n1819790546","loc":[-85.6210898,41.9567657]},"n1819790548":{"id":"n1819790548","loc":[-85.6202465,41.9562237]},"n1819790550":{"id":"n1819790550","loc":[-85.6250165,41.9560677]},"n1819790551":{"id":"n1819790551","loc":[-85.6227946,41.9597023]},"n1819790553":{"id":"n1819790553","loc":[-85.6215726,41.9584571]},"n1819790556":{"id":"n1819790556","loc":[-85.6196306,41.9573002]},"n1819790557":{"id":"n1819790557","loc":[-85.6209503,41.9563109]},"n1819790558":{"id":"n1819790558","loc":[-85.6196939,41.9574085]},"n1819790561":{"id":"n1819790561","loc":[-85.621079,41.957751]},"n1819790562":{"id":"n1819790562","loc":[-85.6224255,41.9611417]},"n1819790565":{"id":"n1819790565","loc":[-85.6232506,41.9604841]},"n1819790566":{"id":"n1819790566","loc":[-85.6190835,41.9562909]},"n1819790567":{"id":"n1819790567","loc":[-85.622227,41.9593028]},"n1819790569":{"id":"n1819790569","loc":[-85.620976,41.9591039]},"n1819790571":{"id":"n1819790571","loc":[-85.6212078,41.9565303]},"n1819790572":{"id":"n1819790572","loc":[-85.6235306,41.9595102]},"n1819790581":{"id":"n1819790581","loc":[-85.6235563,41.9579351]},"n1819790584":{"id":"n1819790584","loc":[-85.6230371,41.9574598]},"n1819790586":{"id":"n1819790586","loc":[-85.6211748,41.9564272]},"n1819790588":{"id":"n1819790588","loc":[-85.6226508,41.9601086]},"n1819790591":{"id":"n1819790591","loc":[-85.6218032,41.9607468]},"n1819790593":{"id":"n1819790593","loc":[-85.6207915,41.9618735]},"n1819790596":{"id":"n1819790596","loc":[-85.6252955,41.9567858]},"n1819790598":{"id":"n1819790598","loc":[-85.6196618,41.9568939]},"n1819790600":{"id":"n1819790600","loc":[-85.6224416,41.9587084]},"n1819790602":{"id":"n1819790602","loc":[-85.6217442,41.9558641]},"n1819790603":{"id":"n1819790603","loc":[-85.6213355,41.9592116]},"n1819790604":{"id":"n1819790604","loc":[-85.622801,41.9573042]},"n1819790608":{"id":"n1819790608","loc":[-85.6199729,41.9574325]},"n1819790610":{"id":"n1819790610","loc":[-85.6195555,41.9557165]},"n1819790611":{"id":"n1819790611","loc":[-85.622978,41.9586007]},"n1819790613":{"id":"n1819790613","loc":[-85.6253963,41.9562636]},"n1819790614":{"id":"n1819790614","loc":[-85.6235252,41.9580342]},"n1819790616":{"id":"n1819790616","loc":[-85.6232988,41.9596305]},"n1819790617":{"id":"n1819790617","loc":[-85.6226776,41.9598732]},"n1819790619":{"id":"n1819790619","loc":[-85.625553,41.9561794]},"n1819790620":{"id":"n1819790620","loc":[-85.6235574,41.959231]},"n1819790624":{"id":"n1819790624","loc":[-85.6228429,41.9573726]},"n1819790626":{"id":"n1819790626","loc":[-85.6193785,41.9556766]},"n1819790628":{"id":"n1819790628","loc":[-85.620092,41.9554253]},"n1819790630":{"id":"n1819790630","loc":[-85.6226658,41.9604402]},"n1819790638":{"id":"n1819790638","loc":[-85.6219964,41.9602561]},"n1819790640":{"id":"n1819790640","loc":[-85.6232731,41.9599969]},"n1819790643":{"id":"n1819790643","loc":[-85.6247698,41.9568895]},"n1819790650":{"id":"n1819790650","loc":[-85.6216412,41.9550149]},"n1819790652":{"id":"n1819790652","loc":[-85.6224952,41.9603918]},"n1819790656":{"id":"n1819790656","loc":[-85.61918,41.9555649]},"n1819790661":{"id":"n1819790661","loc":[-85.6200169,41.955505]},"n1819790662":{"id":"n1819790662","loc":[-85.6217389,41.9563149]},"n1819790666":{"id":"n1819790666","loc":[-85.6229566,41.9598373]},"n1819790667":{"id":"n1819790667","loc":[-85.6209117,41.9609189]},"n1819790669":{"id":"n1819790669","loc":[-85.6252311,41.9562353]},"n1819790670":{"id":"n1819790670","loc":[-85.6209758,41.961868]},"n1819790672":{"id":"n1819790672","loc":[-85.6209557,41.9589078]},"n1819790673":{"id":"n1819790673","loc":[-85.6190352,41.9561393]},"n1819790675":{"id":"n1819790675","loc":[-85.6236432,41.9586685]},"n1819790676":{"id":"n1819790676","loc":[-85.6194901,41.9565389]},"n1819790678":{"id":"n1819790678","loc":[-85.6219266,41.9582417]},"n1819790680":{"id":"n1819790680","loc":[-85.6208258,41.9557211]},"n1819790681":{"id":"n1819790681","loc":[-85.6212024,41.9613212]},"n1819790682":{"id":"n1819790682","loc":[-85.624877,41.9559401]},"n1819790684":{"id":"n1819790684","loc":[-85.6206499,41.9583693]},"n1819790699":{"id":"n1819790699","loc":[-85.6215243,41.956279]},"n1819790701":{"id":"n1819790701","loc":[-85.6246625,41.9559321]},"n1819790703":{"id":"n1819790703","loc":[-85.6230478,41.9585089]},"n1819790708":{"id":"n1819790708","loc":[-85.6211102,41.9575402]},"n1819790710":{"id":"n1819790710","loc":[-85.6215082,41.9548468]},"n1819790711":{"id":"n1819790711","loc":[-85.6206552,41.9586007]},"n1819790713":{"id":"n1819790713","loc":[-85.6215404,41.9549705]},"n1819790715":{"id":"n1819790715","loc":[-85.6216906,41.955521]},"n1819790717":{"id":"n1819790717","loc":[-85.6215404,41.9547391]},"n1819790722":{"id":"n1819790722","loc":[-85.6219964,41.9599131]},"n1819790723":{"id":"n1819790723","loc":[-85.622286,41.9606989]},"n1819790725":{"id":"n1819790725","loc":[-85.6228439,41.9572005]},"n1819790727":{"id":"n1819790727","loc":[-85.6202518,41.9554458]},"n1819790728":{"id":"n1819790728","loc":[-85.623434,41.9575276]},"n1819790729":{"id":"n1819790729","loc":[-85.6234287,41.9568576]},"n1819790732":{"id":"n1819790732","loc":[-85.6229566,41.9571369]},"n1819790733":{"id":"n1819790733","loc":[-85.6225543,41.9590275]},"n1819790734":{"id":"n1819790734","loc":[-85.6232892,41.9583135]},"n1819790736":{"id":"n1819790736","loc":[-85.622977,41.9608551]},"n1819790737":{"id":"n1819790737","loc":[-85.624008,41.9569533]},"n1819790741":{"id":"n1819790741","loc":[-85.6212775,41.9608545]},"n1819790742":{"id":"n1819790742","loc":[-85.6231282,41.9569932]},"n1819790743":{"id":"n1819790743","loc":[-85.6224523,41.9591831]},"n1819790744":{"id":"n1819790744","loc":[-85.6210951,41.9610819]},"n1819790745":{"id":"n1819790745","loc":[-85.6220114,41.960544]},"n1819790755":{"id":"n1819790755","loc":[-85.6216369,41.9553854]},"n1819790757":{"id":"n1819790757","loc":[-85.6209986,41.9592709]},"n1819790758":{"id":"n1819790758","loc":[-85.6200437,41.9563468]},"n1819790764":{"id":"n1819790764","loc":[-85.6219363,41.9596823]},"n1819790765":{"id":"n1819790765","loc":[-85.6237612,41.9568496]},"n1819790769":{"id":"n1819790769","loc":[-85.6212389,41.9593433]},"n1819790771":{"id":"n1819790771","loc":[-85.6210726,41.9560123]},"n1819790772":{"id":"n1819790772","loc":[-85.6212711,41.9561838]},"n1819790776":{"id":"n1819790776","loc":[-85.6234437,41.9577795]},"n1819790777":{"id":"n1819790777","loc":[-85.6212502,41.9618599]},"n1819790783":{"id":"n1819790783","loc":[-85.6216895,41.9610585]},"n1819790784":{"id":"n1819790784","loc":[-85.6200115,41.9556367]},"n1819790785":{"id":"n1819790785","loc":[-85.6210576,41.9573002]},"n1819790786":{"id":"n1819790786","loc":[-85.621138,41.9576632]},"n1819790788":{"id":"n1819790788","loc":[-85.6207733,41.9578946]},"n1819790789":{"id":"n1819790789","loc":[-85.6200705,41.9571566]},"n1819790790":{"id":"n1819790790","loc":[-85.6245337,41.9558443]},"n1819790792":{"id":"n1819790792","loc":[-85.621932,41.9608066]},"n1819790793":{"id":"n1819790793","loc":[-85.6233578,41.9581385]},"n1819790794":{"id":"n1819790794","loc":[-85.6204557,41.9555136]},"n1819790797":{"id":"n1819790797","loc":[-85.6235038,41.9576074]},"n1819790800":{"id":"n1819790800","loc":[-85.6214438,41.9607508]},"n1819790801":{"id":"n1819790801","loc":[-85.623492,41.9602129]},"n1819790802":{"id":"n1819790802","loc":[-85.6216691,41.9546553]},"n1819790803":{"id":"n1819790803","loc":[-85.6231057,41.9586851]},"n1819790804":{"id":"n1819790804","loc":[-85.6209224,41.9578673]},"n1819790813":{"id":"n1819790813","loc":[-85.620092,41.9572962]},"n1819790814":{"id":"n1819790814","loc":[-85.6216691,41.9552218]},"n1819790816":{"id":"n1819790816","loc":[-85.6216144,41.9609668]},"n1819790818":{"id":"n1819790818","loc":[-85.6216906,41.9557324]},"n1819790820":{"id":"n1819790820","loc":[-85.6192069,41.9564186]},"n1819790823":{"id":"n1819790823","loc":[-85.6211155,41.9566027]},"n1819790825":{"id":"n1819790825","loc":[-85.6233106,41.9569294]},"n1819790839":{"id":"n1819790839","loc":[-85.625671,41.9564986]},"n1819790842":{"id":"n1819790842","loc":[-85.6235252,41.9567379]},"n1819790844":{"id":"n1819790844","loc":[-85.6253813,41.9566342]},"n1819790847":{"id":"n1819790847","loc":[-85.6200963,41.9567702]},"n1819790849":{"id":"n1819790849","loc":[-85.6238031,41.9587449]},"n1819790851":{"id":"n1819790851","loc":[-85.6234984,41.9584571]},"n1819790856":{"id":"n1819790856","loc":[-85.6242226,41.9570092]},"n1819790865":{"id":"n1819790865","loc":[-85.6200265,41.9569458]},"n1819790869":{"id":"n1819790869","loc":[-85.6230049,41.9601245]},"n1819790871":{"id":"n1819790871","loc":[-85.6190727,41.9558322]},"n1819790873":{"id":"n1819790873","loc":[-85.6217442,41.9550104]},"n1819790875":{"id":"n1819790875","loc":[-85.6208044,41.9587808]},"n1819790879":{"id":"n1819790879","loc":[-85.6198444,41.9574484]},"n1819790883":{"id":"n1819790883","loc":[-85.623713,41.9588719]},"n1819790885":{"id":"n1819790885","loc":[-85.6223289,41.9605075]},"n1819790889":{"id":"n1819790889","loc":[-85.6208044,41.9562437]},"n1819790893":{"id":"n1819790893","loc":[-85.6218183,41.9559684]},"n1819790906":{"id":"n1819790906","loc":[-85.6214052,41.958697]},"n1819790913":{"id":"n1819790913","loc":[-85.6209981,41.9609957]},"n1819790917":{"id":"n1819790917","loc":[-85.6216208,41.9604436]},"n1819790919":{"id":"n1819790919","loc":[-85.6209406,41.9616373]},"n1819790920":{"id":"n1819790920","loc":[-85.6221948,41.9583334]},"n1819790922":{"id":"n1819790922","loc":[-85.6216681,41.9615292]},"n1819790924":{"id":"n1819790924","loc":[-85.6210147,41.9570489]},"n1819790929":{"id":"n1819790929","loc":[-85.6193678,41.955521]},"w17964707":{"id":"w17964707","tags":{"highway":"residential","name":"11th Ave"},"nodes":["n185960682","n185960684","n185960686","n185960688","n185960690"]},"w201484345":{"id":"w201484345","tags":{"bridge":"yes","highway":"residential","name":"E Hoffman St"},"nodes":["n185978791","n185978795"]},"w201484348":{"id":"w201484348","tags":{"highway":"residential","name":"E Hoffman St"},"nodes":["n185978795","n185978800","n185978803","n185978806","n185978808","n185978810","n185978811","n185978813","n185955747","n185978814","n185972054","n185978817"]},"w170843845":{"id":"w170843845","tags":{"landuse":"reservoir","name":"Hoffman Pond","natural":"water"},"nodes":["n1819790732","n1819790742","n1819790825","n1819790729","n1819790842","n1819790765","n1819790737","n1819790856","n1819790643","n1819790596","n1819790844","n1819790839","n1819849190","n1819790619","n1819790613","n1819790669","n1819790550","n1819790682","n1819790701","n1819790790","n1819790532","n1819790887","n1819790740","n1819790831","n1819790545","n1819790664","n1819790621","n1819790861","n1819790730","n1819790683","n1819790802","n1819790717","n1819790710","n1819790713","n1819790650","n1819790873","n1819790814","n1819790755","n1819790715","n1819790818","n1819790602","n1819790893","n1819790662","n1819790699","n1819790772","n1819790771","n1819790680","n1819790794","n1819790727","n1819790628","n1819790661","n1819790784","n1819790610","n1819790626","n1819790929","n1819790656","n1819790871","n1819790673","n1819790566","n1819790820","n1819790676","n1819790598","n1819790556","n1819790558","n1819790879","n1819790608","n1819790813","n1819790789","n1819790865","n1819790847","n1819790758","n1819790548","n1819790539","n1819790889","n1819790557","n1819790586","n1819790571","n1819790823","n1819790546","n1819790924","n1819790785","n1819790708","n1819790786","n1819790561","n1819790804","n1819790788","n1819790684","n1819790711","n1819790875","n1819790672","n1819790569","n1819790757","n1819790769","n1819790603","n1819790906","n1819790553","n1819790536","n1819790678","n1819790920","n1819790600","n1819790733","n1819790743","n1819790567","n1819790764","n1819790722","n1819790638","n1819790917","n1819790800","n1819790741","n1819790667","n1819790913","n1819790744","n1819790816","n1819790591","n1819790745","n1819790885","n1819790652","n1819790588","n1819790617","n1819790551","n1819790666","n1819790869","n1819790630","n1819790723","n1819790792","n1819790783","n1819790681","n1819790919","n1819790593","n1819790670","n1819790777","n1819790922","n1819790562","n1819790736","n1819790565","n1819790801","n1819790538","n1819790640","n1819790616","n1819790572","n1819790620","n1819790883","n1819790849","n1819790675","n1819790851","n1819790803","n1819790611","n1819790703","n1819790734","n1819790793","n1819790614","n1819790581","n1819790776","n1819790797","n1819790728","n1819790584","n1819790624","n1819790604","n1819790725","n1819790732"]},"w206805240":{"id":"w206805240","tags":{"waterway":"river"},"nodes":["n2168544738","n2168544739","n2168544740","n2168544741","n2168544742","n2168544743","n2168544744","n2168544745","n2168544746","n2168544747","n2168544748","n2168544749","n2168544750","n2168544751","n2168544752","n2168544753","n1819848944"]},"n394490429":{"id":"n394490429","loc":[-85.643883,41.954365]},"n185953421":{"id":"n185953421","loc":[-85.641876,41.954946]},"n185953417":{"id":"n185953417","loc":[-85.6418306,41.9551597]},"n185977233":{"id":"n185977233","loc":[-85.642987,41.95486]},"n185977232":{"id":"n185977232","loc":[-85.642894,41.9547842]},"n1475293244":{"id":"n1475293244","loc":[-85.63974,41.9521543]},"n1819848890":{"id":"n1819848890","loc":[-85.6410004,41.9552822]},"n1819848965":{"id":"n1819848965","loc":[-85.6409795,41.9553892]},"n2189015846":{"id":"n2189015846","loc":[-85.6420457,41.9549528]},"n2189015849":{"id":"n2189015849","loc":[-85.6425867,41.9551392]},"n2189015852":{"id":"n2189015852","loc":[-85.6426877,41.9549771]},"n2199109816":{"id":"n2199109816","loc":[-85.6399215,41.9540925]},"n2199109818":{"id":"n2199109818","loc":[-85.6399182,41.9538236]},"n2199109820":{"id":"n2199109820","loc":[-85.6402201,41.9538216]},"n2199109822":{"id":"n2199109822","loc":[-85.640222,41.9539771]},"n2199109825":{"id":"n2199109825","loc":[-85.6402904,41.9539766]},"n2199109827":{"id":"n2199109827","loc":[-85.6402918,41.95409]},"n2199109829":{"id":"n2199109829","loc":[-85.6395845,41.9544626]},"n2199109831":{"id":"n2199109831","loc":[-85.6395792,41.9540671]},"n2199109833":{"id":"n2199109833","loc":[-85.6397173,41.9540661]},"n2199109835":{"id":"n2199109835","loc":[-85.6397226,41.9544616]},"n2199109837":{"id":"n2199109837","loc":[-85.6399641,41.9545058]},"n2199109839":{"id":"n2199109839","loc":[-85.6399637,41.9541859]},"n2199109841":{"id":"n2199109841","loc":[-85.6401098,41.9541858]},"n2199109843":{"id":"n2199109843","loc":[-85.64011,41.9543272]},"n2199109845":{"id":"n2199109845","loc":[-85.6400783,41.9543273]},"n2199109847":{"id":"n2199109847","loc":[-85.6400785,41.9545058]},"n2199109853":{"id":"n2199109853","loc":[-85.6396184,41.9554049]},"n2199109855":{"id":"n2199109855","loc":[-85.6396825,41.9553713]},"n185949745":{"id":"n185949745","loc":[-85.6442727,41.9553112]},"n185949748":{"id":"n185949748","loc":[-85.6448804,41.9555238]},"n185949755":{"id":"n185949755","loc":[-85.6420011,41.9603536]},"n185949763":{"id":"n185949763","loc":[-85.6408843,41.9555822]},"n185949765":{"id":"n185949765","loc":[-85.6414548,41.9557751]},"n185952158":{"id":"n185952158","loc":[-85.640066,41.956854]},"n185952160":{"id":"n185952160","loc":[-85.639848,41.957229]},"n185952161":{"id":"n185952161","loc":[-85.6396089,41.9576192]},"n185952163":{"id":"n185952163","loc":[-85.63892,41.957957]},"n185953413":{"id":"n185953413","loc":[-85.64162,41.955475]},"n185971651":{"id":"n185971651","loc":[-85.6440766,41.9543462]},"n185977234":{"id":"n185977234","loc":[-85.645044,41.955581]},"n394490395":{"id":"n394490395","loc":[-85.657336,41.936762]},"n394490396":{"id":"n394490396","loc":[-85.653896,41.936978]},"n394490397":{"id":"n394490397","loc":[-85.653732,41.937386]},"n394490398":{"id":"n394490398","loc":[-85.65182,41.937378]},"n394490399":{"id":"n394490399","loc":[-85.651843,41.938445]},"n394490400":{"id":"n394490400","loc":[-85.652536,41.938447]},"n394490401":{"id":"n394490401","loc":[-85.652533,41.938901]},"n394490402":{"id":"n394490402","loc":[-85.652084,41.9389]},"n394490403":{"id":"n394490403","loc":[-85.6521,41.939627]},"n394490404":{"id":"n394490404","loc":[-85.652301,41.939628]},"n394490405":{"id":"n394490405","loc":[-85.652302,41.939755]},"n394490406":{"id":"n394490406","loc":[-85.652783,41.939747]},"n394490407":{"id":"n394490407","loc":[-85.652835,41.94112]},"n394490408":{"id":"n394490408","loc":[-85.651968,41.941123]},"n394490409":{"id":"n394490409","loc":[-85.651983,41.941969]},"n394490410":{"id":"n394490410","loc":[-85.652908,41.941961]},"n394490411":{"id":"n394490411","loc":[-85.65292,41.94278]},"n394490412":{"id":"n394490412","loc":[-85.651698,41.942816]},"n394490413":{"id":"n394490413","loc":[-85.651509,41.942823]},"n394490414":{"id":"n394490414","loc":[-85.651272,41.942837]},"n394490415":{"id":"n394490415","loc":[-85.651272,41.943325]},"n394490416":{"id":"n394490416","loc":[-85.65122,41.944053]},"n394490417":{"id":"n394490417","loc":[-85.651193,41.944449]},"n394490418":{"id":"n394490418","loc":[-85.651088,41.944969]},"n394490419":{"id":"n394490419","loc":[-85.650949,41.945554]},"n394490420":{"id":"n394490420","loc":[-85.650907,41.945719]},"n394490421":{"id":"n394490421","loc":[-85.650808,41.946016]},"n394490422":{"id":"n394490422","loc":[-85.650712,41.946516]},"n394490423":{"id":"n394490423","loc":[-85.650493,41.947166]},"n394490424":{"id":"n394490424","loc":[-85.650626,41.947213]},"n394490425":{"id":"n394490425","loc":[-85.650201,41.948109]},"n394490426":{"id":"n394490426","loc":[-85.649868,41.948797]},"n394490427":{"id":"n394490427","loc":[-85.649669,41.949161]},"n394490428":{"id":"n394490428","loc":[-85.64659,41.954067]},"n394490430":{"id":"n394490430","loc":[-85.644034,41.95444]},"n394490431":{"id":"n394490431","loc":[-85.644248,41.954507]},"n394490432":{"id":"n394490432","loc":[-85.64491,41.954481]},"n394490433":{"id":"n394490433","loc":[-85.645213,41.954433]},"n394490434":{"id":"n394490434","loc":[-85.645426,41.954477]},"n394490435":{"id":"n394490435","loc":[-85.6458,41.954704]},"n394490436":{"id":"n394490436","loc":[-85.64605,41.954804]},"n394490437":{"id":"n394490437","loc":[-85.646125,41.954817]},"n394490438":{"id":"n394490438","loc":[-85.646002,41.954997]},"n394490439":{"id":"n394490439","loc":[-85.645764,41.955366]},"n394490440":{"id":"n394490440","loc":[-85.645525,41.955734]},"n394490441":{"id":"n394490441","loc":[-85.64443,41.957424]},"n394490442":{"id":"n394490442","loc":[-85.641712,41.961723]},"n394490443":{"id":"n394490443","loc":[-85.640747,41.963246]},"n394490444":{"id":"n394490444","loc":[-85.637803,41.967894]},"n394490445":{"id":"n394490445","loc":[-85.637673,41.967861]},"n394490446":{"id":"n394490446","loc":[-85.636637,41.969275]},"n394490447":{"id":"n394490447","loc":[-85.634923,41.969269]},"n394490448":{"id":"n394490448","loc":[-85.634893,41.968537]},"n394490449":{"id":"n394490449","loc":[-85.634544,41.96927]},"n394490450":{"id":"n394490450","loc":[-85.630835,41.969274]},"n394490451":{"id":"n394490451","loc":[-85.630834,41.968348]},"n394490452":{"id":"n394490452","loc":[-85.630857,41.968179]},"n394490453":{"id":"n394490453","loc":[-85.630924,41.968044]},"n394490454":{"id":"n394490454","loc":[-85.631004,41.967925]},"n394490455":{"id":"n394490455","loc":[-85.631143,41.967811]},"n394490456":{"id":"n394490456","loc":[-85.631311,41.967736]},"n394490457":{"id":"n394490457","loc":[-85.631595,41.967693]},"n394490458":{"id":"n394490458","loc":[-85.63325,41.967702]},"n394490459":{"id":"n394490459","loc":[-85.633247,41.967021]},"n394490460":{"id":"n394490460","loc":[-85.634858,41.967021]},"n394490461":{"id":"n394490461","loc":[-85.634865,41.967711]},"n394490462":{"id":"n394490462","loc":[-85.634884,41.968231]},"n394490463":{"id":"n394490463","loc":[-85.636559,41.963867]},"n394490464":{"id":"n394490464","loc":[-85.634832,41.963866]},"n394490465":{"id":"n394490465","loc":[-85.63481,41.961899]},"n394490466":{"id":"n394490466","loc":[-85.637219,41.961842]},"n394490467":{"id":"n394490467","loc":[-85.637837,41.960019]},"n394490468":{"id":"n394490468","loc":[-85.637459,41.960022]},"n394490469":{"id":"n394490469","loc":[-85.635295,41.959987]},"n394490470":{"id":"n394490470","loc":[-85.634783,41.959979]},"n394490471":{"id":"n394490471","loc":[-85.634776,41.959834]},"n394490472":{"id":"n394490472","loc":[-85.634767,41.959009]},"n394490473":{"id":"n394490473","loc":[-85.634763,41.958292]},"n394490474":{"id":"n394490474","loc":[-85.633346,41.958287]},"n394490475":{"id":"n394490475","loc":[-85.632128,41.9583]},"n394490476":{"id":"n394490476","loc":[-85.631414,41.958318]},"n394490477":{"id":"n394490477","loc":[-85.63137,41.959033]},"n394490478":{"id":"n394490478","loc":[-85.631325,41.959753]},"n394490479":{"id":"n394490479","loc":[-85.631494,41.95977]},"n394490480":{"id":"n394490480","loc":[-85.631456,41.960673]},"n394490481":{"id":"n394490481","loc":[-85.631421,41.961494]},"n394490482":{"id":"n394490482","loc":[-85.631404,41.961887]},"n394490483":{"id":"n394490483","loc":[-85.631401,41.961968]},"n394490484":{"id":"n394490484","loc":[-85.630962,41.961967]},"n394490485":{"id":"n394490485","loc":[-85.6299,41.961973]},"n394490486":{"id":"n394490486","loc":[-85.624929,41.962002]},"n394490487":{"id":"n394490487","loc":[-85.623333,41.961987]},"n394490488":{"id":"n394490488","loc":[-85.621894,41.963956]},"n394490489":{"id":"n394490489","loc":[-85.62131,41.963727]},"n394490490":{"id":"n394490490","loc":[-85.621216,41.963868]},"n394490491":{"id":"n394490491","loc":[-85.620356,41.965119]},"n394490492":{"id":"n394490492","loc":[-85.620848,41.965341]},"n394490493":{"id":"n394490493","loc":[-85.620684,41.965558]},"n394490494":{"id":"n394490494","loc":[-85.620621,41.965658]},"n394490495":{"id":"n394490495","loc":[-85.618165,41.965759]},"n394490496":{"id":"n394490496","loc":[-85.618071,41.965759]},"n394490497":{"id":"n394490497","loc":[-85.617986,41.965759]},"n394490498":{"id":"n394490498","loc":[-85.605673,41.965764]},"n394490499":{"id":"n394490499","loc":[-85.605668,41.963548]},"n394490500":{"id":"n394490500","loc":[-85.605664,41.962094]},"n394490501":{"id":"n394490501","loc":[-85.595828,41.962159]},"n394490502":{"id":"n394490502","loc":[-85.587869,41.962169]},"n394490503":{"id":"n394490503","loc":[-85.586289,41.962179]},"n394490504":{"id":"n394490504","loc":[-85.583774,41.962178]},"n394490505":{"id":"n394490505","loc":[-85.583774,41.961789]},"n394490506":{"id":"n394490506","loc":[-85.581303,41.961783]},"n394490507":{"id":"n394490507","loc":[-85.581304,41.961616]},"n394490508":{"id":"n394490508","loc":[-85.581292,41.961616]},"n394490509":{"id":"n394490509","loc":[-85.581247,41.959244]},"n394490510":{"id":"n394490510","loc":[-85.581245,41.958394]},"n394490511":{"id":"n394490511","loc":[-85.581276,41.958372]},"n394490512":{"id":"n394490512","loc":[-85.581302,41.958353]},"n394490513":{"id":"n394490513","loc":[-85.581376,41.9583]},"n394490514":{"id":"n394490514","loc":[-85.582256,41.957663]},"n394490515":{"id":"n394490515","loc":[-85.585299,41.955483]},"n394490516":{"id":"n394490516","loc":[-85.585588,41.955331]},"n394490517":{"id":"n394490517","loc":[-85.586053,41.955163]},"n394490518":{"id":"n394490518","loc":[-85.58632,41.955076]},"n394490519":{"id":"n394490519","loc":[-85.586478,41.955025]},"n394490520":{"id":"n394490520","loc":[-85.58692,41.954947]},"n394490521":{"id":"n394490521","loc":[-85.587327,41.954914]},"n394490522":{"id":"n394490522","loc":[-85.587345,41.954913]},"n394490523":{"id":"n394490523","loc":[-85.587358,41.954913]},"n394490524":{"id":"n394490524","loc":[-85.58963,41.954877]},"n394490525":{"id":"n394490525","loc":[-85.591077,41.954865]},"n394490526":{"id":"n394490526","loc":[-85.594824,41.954843]},"n394490527":{"id":"n394490527","loc":[-85.594804,41.95331]},"n394490528":{"id":"n394490528","loc":[-85.599336,41.95331]},"n394490529":{"id":"n394490529","loc":[-85.599336,41.954825]},"n394490530":{"id":"n394490530","loc":[-85.597828,41.954839]},"n394490531":{"id":"n394490531","loc":[-85.597833,41.95614]},"n394490532":{"id":"n394490532","loc":[-85.596586,41.956151]},"n394490533":{"id":"n394490533","loc":[-85.596586,41.956394]},"n394490534":{"id":"n394490534","loc":[-85.595933,41.956394]},"n394490535":{"id":"n394490535","loc":[-85.595933,41.958176]},"n394490536":{"id":"n394490536","loc":[-85.597635,41.958179]},"n394490537":{"id":"n394490537","loc":[-85.597717,41.958177]},"n394490538":{"id":"n394490538","loc":[-85.601671,41.958194]},"n394490539":{"id":"n394490539","loc":[-85.605619,41.958194]},"n394490540":{"id":"n394490540","loc":[-85.608054,41.958187]},"n394490542":{"id":"n394490542","loc":[-85.6080762,41.9547864]},"n394490545":{"id":"n394490545","loc":[-85.6104354,41.9548263]},"n394490546":{"id":"n394490546","loc":[-85.610274,41.951106]},"n394490547":{"id":"n394490547","loc":[-85.610278,41.950829]},"n394490548":{"id":"n394490548","loc":[-85.610309,41.948377]},"n394490549":{"id":"n394490549","loc":[-85.610314,41.947986]},"n394490550":{"id":"n394490550","loc":[-85.610464,41.947985]},"n394490551":{"id":"n394490551","loc":[-85.610447,41.947468]},"n394490552":{"id":"n394490552","loc":[-85.612469,41.947471]},"n394490553":{"id":"n394490553","loc":[-85.612494,41.945576]},"n394490554":{"id":"n394490554","loc":[-85.610292,41.94558]},"n394490555":{"id":"n394490555","loc":[-85.608412,41.945625]},"n394490556":{"id":"n394490556","loc":[-85.608412,41.943036]},"n394490557":{"id":"n394490557","loc":[-85.608702,41.943087]},"n394490558":{"id":"n394490558","loc":[-85.609196,41.943224]},"n394490559":{"id":"n394490559","loc":[-85.609571,41.943263]},"n394490560":{"id":"n394490560","loc":[-85.610116,41.943295]},"n394490561":{"id":"n394490561","loc":[-85.610273,41.943275]},"n394490562":{"id":"n394490562","loc":[-85.611339,41.943075]},"n394490563":{"id":"n394490563","loc":[-85.611575,41.942997]},"n394490564":{"id":"n394490564","loc":[-85.611847,41.942849]},"n394490565":{"id":"n394490565","loc":[-85.612164,41.942568]},"n394490566":{"id":"n394490566","loc":[-85.612341,41.942529]},"n394490567":{"id":"n394490567","loc":[-85.612562,41.942524]},"n394490568":{"id":"n394490568","loc":[-85.612768,41.942546]},"n394490569":{"id":"n394490569","loc":[-85.612938,41.942633]},"n394490570":{"id":"n394490570","loc":[-85.6131,41.942782]},"n394490571":{"id":"n394490571","loc":[-85.613299,41.942919]},"n394490572":{"id":"n394490572","loc":[-85.613498,41.942996]},"n394490573":{"id":"n394490573","loc":[-85.614698,41.942842]},"n394490574":{"id":"n394490574","loc":[-85.615288,41.942698]},"n394490575":{"id":"n394490575","loc":[-85.616054,41.942693]},"n394490576":{"id":"n394490576","loc":[-85.61603,41.942175]},"n394490577":{"id":"n394490577","loc":[-85.616004,41.941741]},"n394490578":{"id":"n394490578","loc":[-85.615994,41.940156]},"n394490579":{"id":"n394490579","loc":[-85.615144,41.940159]},"n394490580":{"id":"n394490580","loc":[-85.614915,41.940161]},"n394490582":{"id":"n394490582","loc":[-85.614875,41.938532]},"n394490583":{"id":"n394490583","loc":[-85.616167,41.938787]},"n394490585":{"id":"n394490585","loc":[-85.616176,41.938589]},"n394490586":{"id":"n394490586","loc":[-85.614537,41.938282]},"n394490588":{"id":"n394490588","loc":[-85.610141,41.937459]},"n394490589":{"id":"n394490589","loc":[-85.610172,41.937298]},"n394490590":{"id":"n394490590","loc":[-85.609918,41.935495]},"n394490592":{"id":"n394490592","loc":[-85.610092,41.935451]},"n394490594":{"id":"n394490594","loc":[-85.610681,41.935247]},"n394490595":{"id":"n394490595","loc":[-85.611446,41.934955]},"n394490596":{"id":"n394490596","loc":[-85.612057,41.934696]},"n394490598":{"id":"n394490598","loc":[-85.613256,41.934084]},"n394490599":{"id":"n394490599","loc":[-85.613948,41.933682]},"n394490601":{"id":"n394490601","loc":[-85.61436,41.933417]},"n394490602":{"id":"n394490602","loc":[-85.614638,41.933212]},"n394490604":{"id":"n394490604","loc":[-85.615249,41.9332]},"n394490605":{"id":"n394490605","loc":[-85.618218,41.933223]},"n394490607":{"id":"n394490607","loc":[-85.618241,41.933479]},"n394490608":{"id":"n394490608","loc":[-85.618257,41.93365]},"n394490609":{"id":"n394490609","loc":[-85.618298,41.935067]},"n394490611":{"id":"n394490611","loc":[-85.619791,41.935067]},"n394490612":{"id":"n394490612","loc":[-85.619794,41.933301]},"n394490613":{"id":"n394490613","loc":[-85.619795,41.932692]},"n394490614":{"id":"n394490614","loc":[-85.619729,41.929517]},"n394490615":{"id":"n394490615","loc":[-85.619801,41.929305]},"n394490616":{"id":"n394490616","loc":[-85.619809,41.927391]},"n394490617":{"id":"n394490617","loc":[-85.620883,41.927378]},"n394490618":{"id":"n394490618","loc":[-85.620988,41.927368]},"n394490619":{"id":"n394490619","loc":[-85.621076,41.927368]},"n394490620":{"id":"n394490620","loc":[-85.621156,41.927376]},"n394490621":{"id":"n394490621","loc":[-85.621685,41.92737]},"n394490622":{"id":"n394490622","loc":[-85.624716,41.927359]},"n394490623":{"id":"n394490623","loc":[-85.625308,41.92737]},"n394490624":{"id":"n394490624","loc":[-85.625655,41.927377]},"n394490625":{"id":"n394490625","loc":[-85.625093,41.925591]},"n394490626":{"id":"n394490626","loc":[-85.625174,41.92559]},"n394490627":{"id":"n394490627","loc":[-85.625249,41.925597]},"n394490628":{"id":"n394490628","loc":[-85.625532,41.925604]},"n394490629":{"id":"n394490629","loc":[-85.625761,41.925597]},"n394490630":{"id":"n394490630","loc":[-85.625955,41.926153]},"n394490631":{"id":"n394490631","loc":[-85.626209,41.926155]},"n394490632":{"id":"n394490632","loc":[-85.627757,41.926151]},"n394490633":{"id":"n394490633","loc":[-85.627825,41.926298]},"n394490634":{"id":"n394490634","loc":[-85.627994,41.926315]},"n394490635":{"id":"n394490635","loc":[-85.628049,41.927196]},"n394490636":{"id":"n394490636","loc":[-85.62949,41.927221]},"n394490637":{"id":"n394490637","loc":[-85.629602,41.927277]},"n394490638":{"id":"n394490638","loc":[-85.6297102,41.9273279]},"n394490639":{"id":"n394490639","loc":[-85.630958,41.927398]},"n394490699":{"id":"n394490699","loc":[-85.632741,41.927388]},"n394490700":{"id":"n394490700","loc":[-85.632997,41.927391]},"n394490701":{"id":"n394490701","loc":[-85.633149,41.927393]},"n394490702":{"id":"n394490702","loc":[-85.633334,41.927393]},"n394490703":{"id":"n394490703","loc":[-85.633468,41.927561]},"n394490704":{"id":"n394490704","loc":[-85.633563,41.927755]},"n394490705":{"id":"n394490705","loc":[-85.633662,41.928192]},"n394490706":{"id":"n394490706","loc":[-85.633679,41.928807]},"n394490707":{"id":"n394490707","loc":[-85.633687,41.929107]},"n394490708":{"id":"n394490708","loc":[-85.633927,41.929109]},"n394490709":{"id":"n394490709","loc":[-85.634126,41.929111]},"n394490710":{"id":"n394490710","loc":[-85.634207,41.92911]},"n394490711":{"id":"n394490711","loc":[-85.634323,41.929111]},"n394490712":{"id":"n394490712","loc":[-85.636712,41.929128]},"n394490713":{"id":"n394490713","loc":[-85.63808,41.9291]},"n394490714":{"id":"n394490714","loc":[-85.639213,41.929088]},"n394490715":{"id":"n394490715","loc":[-85.639189,41.92852]},"n394490716":{"id":"n394490716","loc":[-85.639204,41.925488]},"n394490717":{"id":"n394490717","loc":[-85.644204,41.925452]},"n394490718":{"id":"n394490718","loc":[-85.651425,41.925406]},"n394490719":{"id":"n394490719","loc":[-85.651449,41.926321]},"n394490720":{"id":"n394490720","loc":[-85.651451,41.926969]},"n394490721":{"id":"n394490721","loc":[-85.651458,41.928052]},"n394490722":{"id":"n394490722","loc":[-85.651446,41.928892]},"n394490723":{"id":"n394490723","loc":[-85.651456,41.929447]},"n394490724":{"id":"n394490724","loc":[-85.651707,41.929454]},"n394490725":{"id":"n394490725","loc":[-85.652369,41.929473]},"n394490726":{"id":"n394490726","loc":[-85.6525,41.929452]},"n394490727":{"id":"n394490727","loc":[-85.654066,41.92946]},"n394490728":{"id":"n394490728","loc":[-85.654816,41.92946]},"n394490729":{"id":"n394490729","loc":[-85.654816,41.930337]},"n394490730":{"id":"n394490730","loc":[-85.654587,41.930337]},"n394490731":{"id":"n394490731","loc":[-85.654548,41.931072]},"n394490732":{"id":"n394490732","loc":[-85.654538,41.931701]},"n394490733":{"id":"n394490733","loc":[-85.654898,41.931689]},"n394490734":{"id":"n394490734","loc":[-85.654898,41.932505]},"n394490735":{"id":"n394490735","loc":[-85.654854,41.932514]},"n394490736":{"id":"n394490736","loc":[-85.655497,41.932499]},"n394490737":{"id":"n394490737","loc":[-85.656405,41.932493]},"n394490738":{"id":"n394490738","loc":[-85.656422,41.933416]},"n394490739":{"id":"n394490739","loc":[-85.657322,41.933438]},"n1475293233":{"id":"n1475293233","loc":[-85.6385522,41.9585167]},"n1475293242":{"id":"n1475293242","loc":[-85.64609,41.9540815]},"n1475293249":{"id":"n1475293249","loc":[-85.6358079,41.9692721]},"n1475293256":{"id":"n1475293256","loc":[-85.6387369,41.9581583]},"n1475293259":{"id":"n1475293259","loc":[-85.6455882,41.9541138]},"n1475293266":{"id":"n1475293266","loc":[-85.6451008,41.9541821]},"n1819800253":{"id":"n1819800253","loc":[-85.6134286,41.9429692]},"n2114807558":{"id":"n2114807558","loc":[-85.6365609,41.963866],"tags":{"railway":"level_crossing"}},"n2189015728":{"id":"n2189015728","loc":[-85.6383956,41.9590576]},"n2189015838":{"id":"n2189015838","loc":[-85.6435144,41.9563705]},"n2189015842":{"id":"n2189015842","loc":[-85.6415782,41.9557035]},"n2189015855":{"id":"n2189015855","loc":[-85.6440829,41.9554577]},"n2199109849":{"id":"n2199109849","loc":[-85.6393434,41.9565591]},"n2199109851":{"id":"n2199109851","loc":[-85.6393208,41.9565002]},"n2199109857":{"id":"n2199109857","loc":[-85.6401986,41.955545]},"n2199109859":{"id":"n2199109859","loc":[-85.6402362,41.955587]},"n2199109861":{"id":"n2199109861","loc":[-85.6395958,41.9565675]},"n2199109863":{"id":"n2199109863","loc":[-85.639528,41.9566011]},"w209717053":{"id":"w209717053","tags":{"area":"yes","building":"yes"},"nodes":["n2199109829","n2199109831","n2199109833","n2199109835","n2199109829"]},"w17966415":{"id":"w17966415","tags":{"access":"private","highway":"service","name":"Manufacturing Way"},"nodes":["n185971642","n185977232","n185977233","n185949745","n185949748","n185977234"]},"w209717054":{"id":"w209717054","tags":{"area":"yes","building":"yes"},"nodes":["n2199109837","n2199109839","n2199109841","n2199109843","n2199109845","n2199109847","n2199109837"]},"w208627214":{"id":"w208627214","tags":{"highway":"service"},"nodes":["n185949755","n2189015728","n1475293233","n1475293256","n185952163","n185952161","n185952160","n185952158","n185949763","n1819848965","n1819848890","n185952156"]},"w17963817":{"id":"w17963817","tags":{"access":"private","highway":"service"},"nodes":["n185949765","n185953413","n185953417","n185953421","n185953423"]},"w34369809":{"id":"w34369809","tags":{"admin_level":"8","boundary":"administrative","landuse":"residential"},"nodes":["n394490395","n394490396","n394490397","n394490398","n394490399","n394490400","n394490401","n394490402","n394490403","n394490404","n394490405","n394490406","n394490407","n394490408","n394490409","n394490410","n394490411","n394490412","n394490413","n394490414","n394490415","n394490416","n394490417","n394490418","n394490419","n394490420","n394490421","n394490422","n394490423","n394490424","n394490425","n394490426","n394490427","n394490428","n1475293242","n1475293259","n1475293266","n394490429","n394490430","n394490431","n394490432","n394490433","n394490434","n394490435","n394490436","n394490437","n394490438","n394490439","n394490440","n394490441","n394490442","n394490443","n394490444","n394490445","n394490446","n1475293249","n394490447","n394490448","n394490449","n394490450","n394490451","n394490452","n394490453","n394490454","n394490455","n394490456","n394490457","n394490458","n394490459","n394490460","n394490461","n394490462","n2114807558","n394490463","n1475293226","n394490464","n394490465","n394490466","n394490467","n394490468","n394490469","n394490470","n394490471","n394490472","n394490473","n394490474","n394490475","n394490476","n394490477","n394490478","n394490479","n394490480","n394490481","n394490482","n394490483","n394490484","n394490485","n394490486","n394490487","n394490488","n394490489","n394490490","n394490491","n394490492","n394490493","n394490494","n394490495","n394490496","n394490497","n394490498","n394490499","n394490500","n394490501","n394490502","n394490503","n394490504","n394490505","n394490506","n394490507","n394490508","n394490509","n394490510","n394490511","n394490512","n394490513","n394490514","n394490515","n394490516","n394490517","n394490518","n394490519","n394490520","n394490521","n394490522","n394490523","n394490524","n394490525","n394490526","n394490527","n394490528","n394490529","n394490530","n394490531","n394490532","n394490533","n394490534","n394490535","n394490536","n394490537","n394490538","n394490539","n394490540","n394490542","n394490545","n394490546","n394490547","n394490548","n394490549","n394490550","n394490551","n394490552","n394490553","n394490554","n394490555","n394490556","n394490557","n394490558","n394490559","n394490560","n394490561","n394490562","n394490563","n394490564","n394490565","n394490566","n394490567","n394490568","n394490569","n394490570","n394490571","n1819800253","n394490572","n394490573","n394490574","n394490575","n394490576","n394490577","n394490578","n394490579","n394490580","n394490582","n394490583","n394490585","n394490586","n394490588","n394490589","n394490590","n394490592","n394490594","n394490595","n394490596","n394490598","n394490599","n394490601","n394490602","n394490604","n394490605","n394490607","n394490608","n394490609","n394490611","n394490612","n394490613","n394490614","n394490615","n394490616","n394490617","n394490618","n394490619","n394490620","n394490621","n394490622","n394490623","n394490624","n394490625","n394490626","n394490627","n394490628","n394490629","n394490630","n394490631","n394490632","n394490633","n394490634","n394490635","n394490636","n394490637","n394490638","n394490639","n394490699","n394490700","n394490701","n394490702","n394490703","n394490704","n394490705","n394490706","n394490707","n394490708","n394490709","n394490710","n394490711","n394490712","n394490713","n394490714","n394490715","n394490716","n394490717","n394490718","n394490719","n394490720","n394490721","n394490722","n394490723","n394490724","n394490725","n394490726","n394490727","n394490728","n394490729","n394490730","n394490731","n394490732","n394490733","n394490734","n394490735","n394490736","n394490737","n394490738","n394490739","n394490395"]},"w208627221":{"id":"w208627221","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189015838","n2189015842","n2189015846","n2189015849","n2189015852","n2189015855","n2189015838"]},"w209717052":{"id":"w209717052","tags":{"area":"yes","building":"yes"},"nodes":["n2199109816","n2199109818","n2199109820","n2199109822","n2199109825","n2199109827","n2199109816"]},"w134151784":{"id":"w134151784","tags":{"bridge":"yes","highway":"residential","name":"W Hoffman St"},"nodes":["n185971648","n185971651"]},"w209717055":{"id":"w209717055","tags":{"area":"yes","landuse":"basin"},"nodes":["n2199109849","n2199109851","n2199109853","n2199109855","n2199109857","n2199109859","n2199109861","n2199109863","n2199109849"]},"w17967763":{"id":"w17967763","tags":{"highway":"residential","name":"Rock River Ave"},"nodes":["n1475293244","n185982166","n185975067","n185971637"]},"r134949":{"id":"r134949","tags":{"admin_level":"8","border_type":"city","boundary":"administrative","name":"Three Rivers","place":"city","type":"boundary"},"members":[{"id":"w34369809","type":"way","role":"outer"},{"id":"w34369821","type":"way","role":"outer"},{"id":"w34369822","type":"way","role":"outer"},{"id":"w34369823","type":"way","role":"outer"},{"id":"w34369824","type":"way","role":"outer"},{"id":"w34369825","type":"way","role":"outer"},{"id":"w34369826","type":"way","role":"outer"},{"id":"w34369810","type":"way","role":"inner"},{"id":"w34369811","type":"way","role":"inner"},{"id":"w34369812","type":"way","role":"inner"},{"id":"w34367079","type":"way","role":"inner"},{"id":"w34369814","type":"way","role":"inner"},{"id":"w34367080","type":"way","role":"inner"},{"id":"w34369815","type":"way","role":"inner"},{"id":"w34369820","type":"way","role":"inner"}]},"n1819848881":{"id":"n1819848881","loc":[-85.638562,41.9569965]},"n1819848947":{"id":"n1819848947","loc":[-85.6384348,41.9576565]},"n1819849044":{"id":"n1819849044","loc":[-85.6385749,41.9573345]},"n2114807547":{"id":"n2114807547","loc":[-85.6384626,41.9583756]},"n2114807564":{"id":"n2114807564","loc":[-85.638535,41.9581283]},"n2189015691":{"id":"n2189015691","loc":[-85.6435584,41.9565243]},"n2189015696":{"id":"n2189015696","loc":[-85.6435805,41.9566049]},"n2189015722":{"id":"n2189015722","loc":[-85.6435035,41.9567438]},"n2189015744":{"id":"n2189015744","loc":[-85.6437991,41.9569582]},"n2189015747":{"id":"n2189015747","loc":[-85.6433042,41.9567742]},"n2189015750":{"id":"n2189015750","loc":[-85.6433827,41.9566844]},"n2189015753":{"id":"n2189015753","loc":[-85.6430447,41.9565588]},"n2189015756":{"id":"n2189015756","loc":[-85.6431111,41.956451]},"n2189015759":{"id":"n2189015759","loc":[-85.6420247,41.956083]},"n2189015760":{"id":"n2189015760","loc":[-85.6419945,41.9561369]},"n2189015764":{"id":"n2189015764","loc":[-85.6413729,41.9558945]},"n2189015766":{"id":"n2189015766","loc":[-85.6412884,41.9560606]},"n2189015770":{"id":"n2189015770","loc":[-85.6411798,41.9560112]},"n2189015771":{"id":"n2189015771","loc":[-85.6410651,41.9562132]},"n2189015774":{"id":"n2189015774","loc":[-85.6409504,41.9561728]},"n2189015778":{"id":"n2189015778","loc":[-85.6407996,41.9564241]},"n2189015781":{"id":"n2189015781","loc":[-85.6406889,41.9563892]},"n2189015785":{"id":"n2189015785","loc":[-85.6404857,41.9567024]},"n2189015789":{"id":"n2189015789","loc":[-85.6406909,41.9567877]},"n2189015793":{"id":"n2189015793","loc":[-85.6405642,41.9570165]},"n2189015796":{"id":"n2189015796","loc":[-85.6415359,41.9573711]},"n2189015800":{"id":"n2189015800","loc":[-85.6411738,41.9579501]},"n2189015804":{"id":"n2189015804","loc":[-85.6411119,41.957921]},"n2189015808":{"id":"n2189015808","loc":[-85.6403186,41.9591751]},"n2189015909":{"id":"n2189015909","loc":[-85.6389293,41.9564636]},"n2189015926":{"id":"n2189015926","loc":[-85.6385431,41.9564617]},"n2189015929":{"id":"n2189015929","loc":[-85.6385457,41.9561823]},"n2189015932":{"id":"n2189015932","loc":[-85.6389319,41.9561843]},"n2199109865":{"id":"n2199109865","loc":[-85.6400768,41.956776]},"n2199109867":{"id":"n2199109867","loc":[-85.639902,41.9567153]},"n2199109869":{"id":"n2199109869","loc":[-85.640004,41.956553]},"n2199109871":{"id":"n2199109871","loc":[-85.6401788,41.9566137]},"n2199109873":{"id":"n2199109873","loc":[-85.6399316,41.9564506],"tags":{"man_made":"water_tower"}},"n2199109876":{"id":"n2199109876","loc":[-85.6397689,41.9572354]},"n2199109878":{"id":"n2199109878","loc":[-85.6399229,41.9569826]},"n2199109880":{"id":"n2199109880","loc":[-85.639706,41.9569095]},"n2199109882":{"id":"n2199109882","loc":[-85.639552,41.9571623]},"n2199109884":{"id":"n2199109884","loc":[-85.6391028,41.9569517]},"n2199109886":{"id":"n2199109886","loc":[-85.6392876,41.956646]},"n2199109888":{"id":"n2199109888","loc":[-85.639484,41.9567117]},"n2199109889":{"id":"n2199109889","loc":[-85.6394322,41.9567973]},"n2199109890":{"id":"n2199109890","loc":[-85.6393718,41.9567771]},"n2199109891":{"id":"n2199109891","loc":[-85.6392387,41.9569972]},"n1819848900":{"id":"n1819848900","loc":[-85.638281,41.9576578]},"n1819848978":{"id":"n1819848978","loc":[-85.6377186,41.9580867]},"n1819849039":{"id":"n1819849039","loc":[-85.6384217,41.9573405]},"n1819849050":{"id":"n1819849050","loc":[-85.6377011,41.9570042]},"n1819849088":{"id":"n1819849088","loc":[-85.6382879,41.9580817]},"n2114807549":{"id":"n2114807549","loc":[-85.6362551,41.96473]},"n2114807587":{"id":"n2114807587","loc":[-85.6368694,41.9629829]},"n2189015725":{"id":"n2189015725","loc":[-85.644156,41.9569753]},"n2189015741":{"id":"n2189015741","loc":[-85.6419825,41.9597632]},"w208627217":{"id":"w208627217","tags":{"area":"yes","building":"yes"},"nodes":["n2189015741","n2189015744","n2189015747","n2189015750","n2189015753","n2189015756","n2189015759","n2189015760","n2189015764","n2189015766","n2189015770","n2189015771","n2189015774","n2189015778","n2189015781","n2189015785","n2189015789","n2189015793","n2189015796","n2189015800","n2189015804","n2189015808","n2189015741"]},"w208627212":{"id":"w208627212","tags":{"highway":"service"},"nodes":["n2189015691","n2189015696","n2189015722","n2189015725"]},"w209717057":{"id":"w209717057","tags":{"area":"yes","building":"yes"},"nodes":["n2199109876","n2199109878","n2199109880","n2199109882","n2199109876"]},"w209717056":{"id":"w209717056","tags":{"area":"yes","building":"yes"},"nodes":["n2199109865","n2199109867","n2199109869","n2199109871","n2199109865"]},"w208627231":{"id":"w208627231","tags":{"area":"yes","building":"yes"},"nodes":["n2189015909","n2189015926","n2189015929","n2189015932","n2189015909"]},"w170848326":{"id":"w170848326","tags":{"building":"yes"},"nodes":["n1819848881","n1819849050","n1819848978","n1819849088","n1819848900","n1819848947","n1819849039","n1819849044","n1819848881"]},"w17963182":{"id":"w17963182","tags":{"highway":"service"},"nodes":["n185949763","n185949765","n2189015691","n185949745"]},"w201484340":{"id":"w201484340","tags":{"railway":"rail","service":"siding"},"nodes":["n2114807565","n2114807564","n2114807547","n2114807587","n2114807558","n2114807549","n2114807593"]},"w209717058":{"id":"w209717058","tags":{"area":"yes","building":"yes"},"nodes":["n2199109884","n2199109886","n2199109888","n2199109889","n2199109890","n2199109891","n2199109884"]},"n185954650":{"id":"n185954650","loc":[-85.627331,41.957439]},"n185966949":{"id":"n185966949","loc":[-85.626868,41.957314]},"n185989335":{"id":"n185989335","loc":[-85.62529,41.958568]},"n185989337":{"id":"n185989337","loc":[-85.624962,41.958453]},"n185989339":{"id":"n185989339","loc":[-85.624832,41.958399]},"n185989340":{"id":"n185989340","loc":[-85.624707,41.958325]},"n185989342":{"id":"n185989342","loc":[-85.624636,41.958251]},"n185989345":{"id":"n185989345","loc":[-85.624578,41.95818]},"n185989347":{"id":"n185989347","loc":[-85.624533,41.958099]},"n185989349":{"id":"n185989349","loc":[-85.624507,41.957985]},"n185989351":{"id":"n185989351","loc":[-85.624495,41.957807]},"n185989353":{"id":"n185989353","loc":[-85.624514,41.957663]},"n185989354":{"id":"n185989354","loc":[-85.624577,41.957593]},"n185989356":{"id":"n185989356","loc":[-85.624685,41.95754]},"n185989357":{"id":"n185989357","loc":[-85.624802,41.957523]},"n185989359":{"id":"n185989359","loc":[-85.624996,41.957524]},"n185989361":{"id":"n185989361","loc":[-85.625409,41.957515]},"n185989364":{"id":"n185989364","loc":[-85.625634,41.957496]},"n185989367":{"id":"n185989367","loc":[-85.625832,41.957453]},"n185989368":{"id":"n185989368","loc":[-85.626044,41.957394]},"n354031352":{"id":"n354031352","loc":[-85.6252778,41.9586111],"tags":{"amenity":"place_of_worship","denomination":"baptist","name":"First Baptist Church","religion":"christian"}},"n2199109892":{"id":"n2199109892","loc":[-85.6261578,41.9589963]},"n2199109893":{"id":"n2199109893","loc":[-85.6263191,41.9586865]},"n2199109894":{"id":"n2199109894","loc":[-85.6261186,41.9586288]},"n2199109895":{"id":"n2199109895","loc":[-85.6260644,41.9587329]},"n2199109896":{"id":"n2199109896","loc":[-85.6261547,41.9587589]},"n2199109898":{"id":"n2199109898","loc":[-85.6260476,41.9589646]},"n185966951":{"id":"n185966951","loc":[-85.628404,41.957438]},"w17965351":{"id":"w17965351","tags":{"highway":"residential","name":"Flower Street"},"nodes":["n185966948","n185966949","n185954650","n185966951","n185966953","n185966955","n185966957"]},"w17967809":{"id":"w17967809","tags":{"highway":"residential","name":"Azaleamum Drive"},"nodes":["n185982197","n185989335","n185989337","n185989339","n185989340","n185989342","n185989345","n185989347","n185989349","n185989351","n185989353","n185989354","n185989356","n185989357","n185989359","n185989361","n185989364","n185989367","n185989368","n185982196"]},"w209717059":{"id":"w209717059","tags":{"area":"yes","building":"yes"},"nodes":["n2199109892","n2199109893","n2199109894","n2199109895","n2199109896","n2199109898","n2199109892"]},"n185961390":{"id":"n185961390","loc":[-85.63137,41.959033]},"n185961393":{"id":"n185961393","loc":[-85.634315,41.959017]},"w17966214":{"id":"w17966214","tags":{"highway":"residential","name":"East Adams Street"},"nodes":["n185975351","n185967434","n185968108"]},"w17964793":{"id":"w17964793","tags":{"highway":"residential","name":"Morris Ave"},"nodes":["n185961389","n185961390","n185961391","n185961393","n185961396"]},"n185952166":{"id":"n185952166","loc":[-85.638174,41.95831]},"n2114807552":{"id":"n2114807552","loc":[-85.6383526,41.9593788]},"n2114807591":{"id":"n2114807591","loc":[-85.6383741,41.9593968]},"n2189015731":{"id":"n2189015731","loc":[-85.6368404,41.9592785]},"n2189015734":{"id":"n2189015734","loc":[-85.6368404,41.9585918]},"n2189015737":{"id":"n2189015737","loc":[-85.6376009,41.9585918]},"n2189015738":{"id":"n2189015738","loc":[-85.6376009,41.9592785]},"n2189015897":{"id":"n2189015897","loc":[-85.6376839,41.9566137]},"n2189015900":{"id":"n2189015900","loc":[-85.6376831,41.9564865]},"n2189015903":{"id":"n2189015903","loc":[-85.6381161,41.9564851]},"n2189015906":{"id":"n2189015906","loc":[-85.6381168,41.9566122]},"n2189015937":{"id":"n2189015937","loc":[-85.6364789,41.9590634]},"n2189015940":{"id":"n2189015940","loc":[-85.6361137,41.9590672]},"n2189015943":{"id":"n2189015943","loc":[-85.6361169,41.9594033]},"n2189015945":{"id":"n2189015945","loc":[-85.6363456,41.9594021]},"n2189015952":{"id":"n2189015952","loc":[-85.636112,41.958892]},"n2189015955":{"id":"n2189015955","loc":[-85.6364757,41.9588894]},"n2189015957":{"id":"n2189015957","loc":[-85.6364729,41.9586747]},"n2189015958":{"id":"n2189015958","loc":[-85.6361103,41.9586765]},"n2189015959":{"id":"n2189015959","loc":[-85.6364719,41.9585562]},"n2189015960":{"id":"n2189015960","loc":[-85.6361093,41.958558]},"n2189015961":{"id":"n2189015961","loc":[-85.6355494,41.9586403]},"n2189015962":{"id":"n2189015962","loc":[-85.635549,41.9584711]},"n2189015963":{"id":"n2189015963","loc":[-85.6351831,41.9584715]},"n2189015964":{"id":"n2189015964","loc":[-85.6351834,41.9586408]},"n2189015966":{"id":"n2189015966","loc":[-85.6359579,41.9586359]},"n2189015968":{"id":"n2189015968","loc":[-85.6359561,41.9585465]},"n2189015971":{"id":"n2189015971","loc":[-85.6355476,41.9585509]},"n2189015974":{"id":"n2189015974","loc":[-85.6359516,41.9592934]},"n2189015977":{"id":"n2189015977","loc":[-85.635949,41.9586697]},"n2189015980":{"id":"n2189015980","loc":[-85.6351329,41.9586716]},"n2189015983":{"id":"n2189015983","loc":[-85.6351318,41.9583949]},"n2189015986":{"id":"n2189015986","loc":[-85.6349148,41.9583954]},"n2189015989":{"id":"n2189015989","loc":[-85.6349186,41.9592958]},"n2189015995":{"id":"n2189015995","loc":[-85.6360173,41.9593286]},"n2189015998":{"id":"n2189015998","loc":[-85.6360278,41.9583079]},"n2114807550":{"id":"n2114807550","loc":[-85.6383392,41.9595404]},"n2114807551":{"id":"n2114807551","loc":[-85.6375855,41.9616107]},"n2114807559":{"id":"n2114807559","loc":[-85.6373978,41.9621273]},"n2114807562":{"id":"n2114807562","loc":[-85.6373361,41.9622609]},"n2114807563":{"id":"n2114807563","loc":[-85.6376472,41.9613953]},"n2114807574":{"id":"n2114807574","loc":[-85.636974,41.9627695]},"n2114807589":{"id":"n2114807589","loc":[-85.6383017,41.9595005]},"n2114807592":{"id":"n2114807592","loc":[-85.6377169,41.9613494]},"n2114807595":{"id":"n2114807595","loc":[-85.6371081,41.962574]},"n2189015934":{"id":"n2189015934","loc":[-85.6364855,41.9595098]},"n2189015949":{"id":"n2189015949","loc":[-85.6363466,41.9595105]},"w208627244":{"id":"w208627244","tags":{"highway":"service"},"nodes":["n2189015992","n2189015995","n2189015998"]},"w208627240":{"id":"w208627240","tags":{"area":"yes","building":"yes"},"nodes":["n2189015961","n2189015971","n2189015962","n2189015963","n2189015964","n2189015961"]},"w17967437":{"id":"w17967437","tags":{"highway":"residential","name":"Lyman St"},"nodes":["n185964361","n185984024"]},"w208627237":{"id":"w208627237","tags":{"area":"yes","building":"yes"},"nodes":["n2189015955","n2189015957","n2189015958","n2189015952","n2189015955"]},"w17967465":{"id":"w17967465","tags":{"highway":"residential","name":"W Adams St"},"nodes":["n185978394","n185984022","n185964360"]},"w208627228":{"id":"w208627228","tags":{"area":"yes","building":"yes"},"nodes":["n2189015897","n2189015900","n2189015903","n2189015906","n2189015897"]},"w201484351":{"id":"w201484351","tags":{"railway":"rail","service":"siding"},"nodes":["n2114807587","n2114807574","n2114807595","n2114807562","n2114807559","n2114807551","n2114807563","n2114807589","n2114807552"]},"w208627239":{"id":"w208627239","tags":{"area":"yes","building":"yes"},"nodes":["n2189015957","n2189015959","n2189015960","n2189015958","n2189015957"]},"w208627233":{"id":"w208627233","tags":{"area":"yes","building":"yes"},"nodes":["n2189015934","n2189015937","n2189015940","n2189015943","n2189015945","n2189015949","n2189015934"]},"w208627241":{"id":"w208627241","tags":{"area":"yes","building":"yes"},"nodes":["n2189015961","n2189015966","n2189015968","n2189015971","n2189015961"]},"w17967970":{"id":"w17967970","tags":{"highway":"residential","name":"Adams St"},"nodes":["n185975351","n185978394"]},"w208627235":{"id":"w208627235","tags":{"area":"yes","building":"yes"},"nodes":["n2189015940","n2189015952","n2189015955","n2189015937","n2189015940"]},"w17965468":{"id":"w17965468","tags":{"highway":"residential","name":"Armstrong Blvd"},"nodes":["n185967917","n2189015998","n185967918","n185964362","n185952166"]},"w201484346":{"id":"w201484346","tags":{"railway":"rail","service":"siding"},"nodes":["n2114807551","n2114807592","n2114807550","n2114807591"]},"w208627242":{"id":"w208627242","tags":{"amenity":"parking","area":"yes"},"nodes":["n2189015974","n2189015977","n2189015980","n2189015983","n2189015986","n2189015989","n2189015974"]},"w208627216":{"id":"w208627216","tags":{"area":"yes","building":"yes"},"nodes":["n2189015731","n2189015734","n2189015737","n2189015738","n2189015731"]},"n185984309":{"id":"n185984309","loc":[-85.631421,41.961494]},"n185987987":{"id":"n185987987","loc":[-85.631456,41.960673]},"n185965397":{"id":"n185965397","loc":[-85.634603,41.959838]},"w17965196":{"id":"w17965196","tags":{"highway":"residential","name":"Burke Ave"},"nodes":["n185965395","n185965397","n185965399"]},"w17967215":{"id":"w17967215","tags":{"highway":"residential","name":"Kellogg Ave"},"nodes":["n185968114","n185984309","n185967440","n185978402"]},"w17967597":{"id":"w17967597","tags":{"highway":"residential","name":"Barnard Ave"},"nodes":["n185968112","n185987987","n185967438","n185978399"]},"n394490857":{"id":"n394490857","loc":[-85.633952,41.960664]},"n394490858":{"id":"n394490858","loc":[-85.633938,41.960227]},"n394490859":{"id":"n394490859","loc":[-85.634794,41.960212]},"n394490860":{"id":"n394490860","loc":[-85.634815,41.960662]},"n394490861":{"id":"n394490861","loc":[-85.634103,41.961268]},"n394490862":{"id":"n394490862","loc":[-85.634103,41.961001]},"n394490863":{"id":"n394490863","loc":[-85.634504,41.961003]},"n394490864":{"id":"n394490864","loc":[-85.634561,41.961269]},"n1057629869":{"id":"n1057629869","loc":[-85.6382599,41.9612134]},"n1057629937":{"id":"n1057629937","loc":[-85.6380035,41.9616137]},"n2189016014":{"id":"n2189016014","loc":[-85.6360365,41.9626496]},"n2189016017":{"id":"n2189016017","loc":[-85.6360374,41.9623228]},"n2189016020":{"id":"n2189016020","loc":[-85.6367557,41.9623239]},"n2189016022":{"id":"n2189016022","loc":[-85.6367566,41.9619919]},"n2189016025":{"id":"n2189016025","loc":[-85.6351794,41.9619893]},"n2189016028":{"id":"n2189016028","loc":[-85.6351788,41.9622011]},"n2189016031":{"id":"n2189016031","loc":[-85.6350855,41.9622009]},"n2189016034":{"id":"n2189016034","loc":[-85.6350845,41.962527]},"n2189016037":{"id":"n2189016037","loc":[-85.6352732,41.9625273]},"n2189016039":{"id":"n2189016039","loc":[-85.6352738,41.9623178]},"n2189016042":{"id":"n2189016042","loc":[-85.6357712,41.9623186]},"n2189016044":{"id":"n2189016044","loc":[-85.6357702,41.9626492]},"n1057629880":{"id":"n1057629880","loc":[-85.638817,41.9619017]},"n1057629923":{"id":"n1057629923","loc":[-85.6390733,41.9615014]},"w91092312":{"id":"w91092312","tags":{"power":"station"},"nodes":["n1057629923","n1057629869","n1057629937","n1057629880","n1057629923"]},"w34369826":{"id":"w34369826","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394490861","n394490862","n394490863","n394490864","n394490861"]},"w34369825":{"id":"w34369825","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394490857","n394490858","n394490859","n394490860","n394490857"]},"w208627248":{"id":"w208627248","tags":{"area":"yes","building":"yes"},"nodes":["n2189016014","n2189016017","n2189016020","n2189016022","n2189016025","n2189016028","n2189016031","n2189016034","n2189016037","n2189016039","n2189016042","n2189016044","n2189016014"]},"n394490766":{"id":"n394490766","loc":[-85.616777,41.955642]},"n394490768":{"id":"n394490768","loc":[-85.617239,41.955644]},"n394490792":{"id":"n394490792","loc":[-85.619034,41.95543]},"n185972055":{"id":"n185972055","loc":[-85.6185905,41.9568211]},"n185972057":{"id":"n185972057","loc":[-85.6186688,41.9570086]},"n185972059":{"id":"n185972059","loc":[-85.6186924,41.9581453]},"n185972060":{"id":"n185972060","loc":[-85.6187082,41.9588211],"tags":{"highway":"turning_circle"}},"n1819790724":{"id":"n1819790724","loc":[-85.6182155,41.9555703]},"n1819790735":{"id":"n1819790735","loc":[-85.6184059,41.9566188]},"n1819790799":{"id":"n1819790799","loc":[-85.6182372,41.9563771]},"n1819790896":{"id":"n1819790896","loc":[-85.6181431,41.9557227]},"n185971405":{"id":"n185971405","loc":[-85.6186766,41.9577468]},"n185971565":{"id":"n185971565","loc":[-85.6181613,41.9560879]},"n185967985":{"id":"n185967985","loc":[-85.6186798,41.9585791]},"n185955753":{"id":"n185955753","loc":[-85.620773,41.9555854]},"n185955755":{"id":"n185955755","loc":[-85.6212652,41.9559891]},"n185955748":{"id":"n185955748","loc":[-85.620722,41.954858]},"n185955751":{"id":"n185955751","loc":[-85.6206912,41.955367]},"n185967987":{"id":"n185967987","loc":[-85.6159351,41.9585809]},"n185971407":{"id":"n185971407","loc":[-85.6159142,41.9577578]},"n185971570":{"id":"n185971570","loc":[-85.6162248,41.95603]},"n185971572":{"id":"n185971572","loc":[-85.6160402,41.9560749]},"n185971574":{"id":"n185971574","loc":[-85.61593,41.956201]},"n185981301":{"id":"n185981301","loc":[-85.6158973,41.9581601]},"n394490762":{"id":"n394490762","loc":[-85.617193,41.954706]},"n394490764":{"id":"n394490764","loc":[-85.616773,41.954737]},"n394490787":{"id":"n394490787","loc":[-85.618972,41.954737]},"n394490790":{"id":"n394490790","loc":[-85.619046,41.954929]},"n394490794":{"id":"n394490794","loc":[-85.619922,41.955296]},"n394490796":{"id":"n394490796","loc":[-85.61991,41.95501]},"n394490798":{"id":"n394490798","loc":[-85.619974,41.954751]},"n1819790677":{"id":"n1819790677","loc":[-85.6187031,41.9550522]},"n1819790787":{"id":"n1819790787","loc":[-85.6186436,41.9552022]},"n1819790828":{"id":"n1819790828","loc":[-85.6185127,41.9553393]},"w17966857":{"id":"w17966857","tags":{"access":"private","highway":"service","name":"Sable River Rd"},"nodes":["n185972059","n185981301"]},"w34369814":{"id":"w34369814","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394490787","n394490790","n394490792","n394490794","n394490796","n394490798","n394490787"]},"w17964176":{"id":"w17964176","tags":{"highway":"residential"},"nodes":["n185955747","n185955748","n185955751","n185955753","n185955755"]},"w17965838":{"id":"w17965838","tags":{"access":"private","highway":"service","name":"Pine River Rd"},"nodes":["n185971405","n185971407"]},"w17965476":{"id":"w17965476","tags":{"access":"private","highway":"service","name":"Raisin River Rd"},"nodes":["n185967985","n185967987"]},"w17965913":{"id":"w17965913","tags":{"access":"private","highway":"service","name":"Shiawassee River Rd"},"nodes":["n185972054","n1819790677","n1819790787","n1819790828","n1819790724","n1819790896","n185971565","n1819790799","n1819790735","n185972055","n185972057","n185971405","n185972059","n185967985","n185972060"]},"w34369811":{"id":"w34369811","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394490762","n394490764","n394490766","n394490768","n394490762"]},"w17965854":{"id":"w17965854","tags":{"access":"private","highway":"service","name":"Sturgeon River Rd"},"nodes":["n185971565","n185971570","n185971572","n185971574"]},"n2139795769":{"id":"n2139795769","loc":[-85.6250804,41.9608796]},"n2139795770":{"id":"n2139795770","loc":[-85.6250315,41.9613684]},"n2139795771":{"id":"n2139795771","loc":[-85.6249671,41.9614362]},"n2139795772":{"id":"n2139795772","loc":[-85.6249698,41.961522]},"n2139795773":{"id":"n2139795773","loc":[-85.6250798,41.9615838]},"n2139795774":{"id":"n2139795774","loc":[-85.6252273,41.9615639]},"n2139795775":{"id":"n2139795775","loc":[-85.6252863,41.9614622]},"n2139795776":{"id":"n2139795776","loc":[-85.6252273,41.9613764]},"n2139795777":{"id":"n2139795777","loc":[-85.6251227,41.9613525]},"n2139795778":{"id":"n2139795778","loc":[-85.6249564,41.9612527]},"n2139795779":{"id":"n2139795779","loc":[-85.6249846,41.9610254]},"n2139795780":{"id":"n2139795780","loc":[-85.6266725,41.9599647]},"n2139795781":{"id":"n2139795781","loc":[-85.6259162,41.9599711]},"n2139795782":{"id":"n2139795782","loc":[-85.6257185,41.960019]},"n2139795783":{"id":"n2139795783","loc":[-85.6255509,41.9601213]},"n185963539":{"id":"n185963539","loc":[-85.615718,41.983893]},"n185964418":{"id":"n185964418","loc":[-85.616626,42.049512]},"n185966614":{"id":"n185966614","loc":[-85.615514,41.976603]},"n185966635":{"id":"n185966635","loc":[-85.616118,42.013017]},"n185969040":{"id":"n185969040","loc":[-85.615632,41.972357]},"n185969070":{"id":"n185969070","loc":[-85.619145,41.967648]},"n185972156":{"id":"n185972156","loc":[-85.621894,41.963956]},"n185972157":{"id":"n185972157","loc":[-85.621806,41.964077]},"n185972158":{"id":"n185972158","loc":[-85.620848,41.965341]},"n185972159":{"id":"n185972159","loc":[-85.620684,41.965558]},"n185972160":{"id":"n185972160","loc":[-85.620621,41.965658]},"n185972161":{"id":"n185972161","loc":[-85.617844,41.969359]},"n185972162":{"id":"n185972162","loc":[-85.616843,41.97068]},"n185972164":{"id":"n185972164","loc":[-85.616714,41.970839]},"n185972166":{"id":"n185972166","loc":[-85.615879,41.971969]},"n185972168":{"id":"n185972168","loc":[-85.615748,41.972159]},"n185972170":{"id":"n185972170","loc":[-85.615589,41.972502]},"n185972172":{"id":"n185972172","loc":[-85.615542,41.972733]},"n185972175":{"id":"n185972175","loc":[-85.615524,41.972947]},"n185972177":{"id":"n185972177","loc":[-85.615512,41.973715]},"n185972179":{"id":"n185972179","loc":[-85.615513,41.976496]},"n185972180":{"id":"n185972180","loc":[-85.615538,41.977246]},"n185972181":{"id":"n185972181","loc":[-85.61558,41.982139]},"n185972184":{"id":"n185972184","loc":[-85.61557,41.983317]},"n185972186":{"id":"n185972186","loc":[-85.615591,41.983463]},"n185972188":{"id":"n185972188","loc":[-85.615763,41.984146]},"n185972190":{"id":"n185972190","loc":[-85.615814,41.98435]},"n185972192":{"id":"n185972192","loc":[-85.615965,41.998453]},"n185972194":{"id":"n185972194","loc":[-85.615982,42.001237]},"n185972195":{"id":"n185972195","loc":[-85.616055,42.00555]},"n185972197":{"id":"n185972197","loc":[-85.616134,42.014887]},"n185972199":{"id":"n185972199","loc":[-85.616177,42.018465]},"n185972201":{"id":"n185972201","loc":[-85.616298,42.027627]},"n185972203":{"id":"n185972203","loc":[-85.616513,42.042212]},"w203968015":{"id":"w203968015","tags":{"highway":"residential"},"nodes":["n2139795768","n2139795769"]},"w17965932":{"id":"w17965932","tags":{"highway":"residential","name":"Buckhorn Road","name_1":"County Highway 122"},"nodes":["n185972155","n185972156","n185972157","n185972158","n185972159","n185972160","n185969070","n185972161","n185972162","n185972164","n185972166","n185972168","n185969040","n185972170","n185972172","n185972175","n185972177","n185972179","n185966614","n185972180","n185972181","n185972184","n185972186","n185963539","n185972188","n185972190","n185972192","n185972194","n185972195","n185966635","n185972197","n185972199","n185972201","n185972203","n185964418"]},"w203968016":{"id":"w203968016","tags":{"highway":"residential","name":"New Jersey Court"},"nodes":["n2139795770","n2139795771","n2139795772","n2139795773","n2139795774","n2139795775","n2139795776","n2139795777","n2139795770","n2139795778","n2139795779","n2139795769"]},"w203968017":{"id":"w203968017","tags":{"highway":"residential","name":"Oklahoma Drive"},"nodes":["n2139795780","n2139795781","n2139795782","n2139795783","n2139795769"]},"n1819790528":{"id":"n1819790528","loc":[-85.6184827,41.960025]},"n1819790530":{"id":"n1819790530","loc":[-85.6168626,41.9605834]},"n1819790534":{"id":"n1819790534","loc":[-85.6197379,41.9617163]},"n1819790541":{"id":"n1819790541","loc":[-85.6198881,41.9620833]},"n1819790543":{"id":"n1819790543","loc":[-85.619695,41.9619397]},"n1819790547":{"id":"n1819790547","loc":[-85.6190298,41.9609504]},"n1819790555":{"id":"n1819790555","loc":[-85.6180471,41.9609788]},"n1819790559":{"id":"n1819790559","loc":[-85.6203817,41.9605436]},"n1819790583":{"id":"n1819790583","loc":[-85.6201564,41.9603282]},"n1819790590":{"id":"n1819790590","loc":[-85.617045,41.9598894]},"n1819790609":{"id":"n1819790609","loc":[-85.6177638,41.9598495]},"n1819790618":{"id":"n1819790618","loc":[-85.6195234,41.9610143]},"n1819790642":{"id":"n1819790642","loc":[-85.6181179,41.9627933]},"n1819790659":{"id":"n1819790659","loc":[-85.6174634,41.962897]},"n1819790665":{"id":"n1819790665","loc":[-85.6170343,41.9630885]},"n1819790674":{"id":"n1819790674","loc":[-85.6194697,41.9601925]},"n1819790685":{"id":"n1819790685","loc":[-85.6207722,41.9610665]},"n1819790687":{"id":"n1819790687","loc":[-85.6202315,41.9622109]},"n1819790697":{"id":"n1819790697","loc":[-85.6184505,41.9624662]},"n1819790726":{"id":"n1819790726","loc":[-85.6178926,41.9628492]},"n1819790738":{"id":"n1819790738","loc":[-85.6173347,41.9598016]},"n1819790762":{"id":"n1819790762","loc":[-85.6186221,41.9609105]},"n1819790774":{"id":"n1819790774","loc":[-85.6175922,41.9608308]},"n1819790781":{"id":"n1819790781","loc":[-85.6167768,41.9633198]},"n1819790796":{"id":"n1819790796","loc":[-85.619856,41.961461]},"n1819790811":{"id":"n1819790811","loc":[-85.6208215,41.9620195]},"n1819790833":{"id":"n1819790833","loc":[-85.618311,41.9612536]},"n1819790854":{"id":"n1819790854","loc":[-85.6183646,41.9626417]},"n1819790863":{"id":"n1819790863","loc":[-85.6204997,41.9608547]},"n1819790867":{"id":"n1819790867","loc":[-85.6184934,41.9621391]},"n1819790877":{"id":"n1819790877","loc":[-85.6206928,41.9621152]},"n1819790881":{"id":"n1819790881","loc":[-85.6170879,41.960735]},"n1819790891":{"id":"n1819790891","loc":[-85.6168304,41.9601207]},"n1819790898":{"id":"n1819790898","loc":[-85.619813,41.9612297]},"n1819790909":{"id":"n1819790909","loc":[-85.6167982,41.960376]},"n1819790912":{"id":"n1819790912","loc":[-85.6205855,41.9610462]},"n1819790544":{"id":"n1819790544","loc":[-85.612968,41.9707781]},"n1819790549":{"id":"n1819790549","loc":[-85.614395,41.9697172]},"n1819790552":{"id":"n1819790552","loc":[-85.6180535,41.9655536]},"n1819790554":{"id":"n1819790554","loc":[-85.6111227,41.9703713]},"n1819790560":{"id":"n1819790560","loc":[-85.6112729,41.9701958]},"n1819790563":{"id":"n1819790563","loc":[-85.6137512,41.9689917]},"n1819790564":{"id":"n1819790564","loc":[-85.6181072,41.9659205]},"n1819790595":{"id":"n1819790595","loc":[-85.6170021,41.9666863]},"n1819790605":{"id":"n1819790605","loc":[-85.6168948,41.9644527]},"n1819790606":{"id":"n1819790606","loc":[-85.6128071,41.9701081]},"n1819790607":{"id":"n1819790607","loc":[-85.6129251,41.9704032]},"n1819790612":{"id":"n1819790612","loc":[-85.6177638,41.9663912]},"n1819790615":{"id":"n1819790615","loc":[-85.6152533,41.9670373]},"n1819790622":{"id":"n1819790622","loc":[-85.6146739,41.9673804]},"n1819790623":{"id":"n1819790623","loc":[-85.6180428,41.9661838]},"n1819790625":{"id":"n1819790625","loc":[-85.6172918,41.9646202]},"n1819790645":{"id":"n1819790645","loc":[-85.6178067,41.965043]},"n1819790647":{"id":"n1819790647","loc":[-85.6143306,41.9712488]},"n1819790649":{"id":"n1819790649","loc":[-85.6147383,41.9707702]},"n1819790654":{"id":"n1819790654","loc":[-85.6157361,41.9668459]},"n1819790657":{"id":"n1819790657","loc":[-85.6145666,41.9710733]},"n1819790668":{"id":"n1819790668","loc":[-85.6166909,41.9642692]},"n1819790671":{"id":"n1819790671","loc":[-85.6141482,41.9696538]},"n1819790679":{"id":"n1819790679","loc":[-85.6148349,41.9705388]},"n1819790686":{"id":"n1819790686","loc":[-85.6139551,41.9695501]},"n1819790696":{"id":"n1819790696","loc":[-85.6119703,41.9699087]},"n1819790704":{"id":"n1819790704","loc":[-85.6140731,41.9684174]},"n1819790706":{"id":"n1819790706","loc":[-85.6124745,41.9699246]},"n1819790718":{"id":"n1819790718","loc":[-85.6165407,41.9636868]},"n1819790720":{"id":"n1819790720","loc":[-85.61388,41.9687365]},"n1819790731":{"id":"n1819790731","loc":[-85.6165193,41.9639421]},"n1819790739":{"id":"n1819790739","loc":[-85.6146739,41.9699964]},"n1819790753":{"id":"n1819790753","loc":[-85.6173883,41.9665747]},"n1819790760":{"id":"n1819790760","loc":[-85.6133221,41.9712089]},"n1819790767":{"id":"n1819790767","loc":[-85.6116698,41.9699246]},"n1819790779":{"id":"n1819790779","loc":[-85.6130753,41.9710573]},"n1819790791":{"id":"n1819790791","loc":[-85.6137083,41.9692869]},"n1819790795":{"id":"n1819790795","loc":[-85.6141482,41.9679627]},"n1819790798":{"id":"n1819790798","loc":[-85.6137727,41.9694305]},"n1819790836":{"id":"n1819790836","loc":[-85.6143842,41.9676037]},"n1819790915":{"id":"n1819790915","loc":[-85.6148456,41.9702756]},"n1819790926":{"id":"n1819790926","loc":[-85.6138371,41.9713525]},"n1819790927":{"id":"n1819790927","loc":[-85.6141053,41.9713525]},"n1819790931":{"id":"n1819790931","loc":[-85.6162832,41.966814]},"n1821014625":{"id":"n1821014625","loc":[-85.5960611,41.9808498]},"n1821014627":{"id":"n1821014627","loc":[-85.5565843,42.010982]},"n1821014629":{"id":"n1821014629","loc":[-85.5971541,41.9805808]},"n1821014632":{"id":"n1821014632","loc":[-85.6061837,41.9725907]},"n1821014633":{"id":"n1821014633","loc":[-85.5247773,42.025766]},"n1821014635":{"id":"n1821014635","loc":[-85.5908938,41.9902384]},"n1821014636":{"id":"n1821014636","loc":[-85.5917682,41.9860637]},"n1821014637":{"id":"n1821014637","loc":[-85.5456556,42.0166797]},"n1821014638":{"id":"n1821014638","loc":[-85.5795749,42.0032352]},"n1821014639":{"id":"n1821014639","loc":[-85.6103988,41.9723456]},"n1821014642":{"id":"n1821014642","loc":[-85.5818816,42.0022466]},"n1821014643":{"id":"n1821014643","loc":[-85.5570604,42.0091586]},"n1821014644":{"id":"n1821014644","loc":[-85.5952886,41.9803792]},"n1821014645":{"id":"n1821014645","loc":[-85.5780366,42.0040343]},"n1821014646":{"id":"n1821014646","loc":[-85.6050505,41.9751971]},"n1821014647":{"id":"n1821014647","loc":[-85.5854435,41.9946162]},"n1821014648":{"id":"n1821014648","loc":[-85.5452278,42.0168768]},"n1821014649":{"id":"n1821014649","loc":[-85.6023254,41.9780166]},"n1821014651":{"id":"n1821014651","loc":[-85.5761899,42.0046783]},"n1821014653":{"id":"n1821014653","loc":[-85.5897351,41.9876707]},"n1821014657":{"id":"n1821014657","loc":[-85.5963601,41.9808998]},"n1821014658":{"id":"n1821014658","loc":[-85.5892952,41.9951983]},"n1821014660":{"id":"n1821014660","loc":[-85.5778328,42.0037194]},"n1821014661":{"id":"n1821014661","loc":[-85.5541475,42.0125705]},"n1821014663":{"id":"n1821014663","loc":[-85.5914047,41.9856469]},"n1821014664":{"id":"n1821014664","loc":[-85.6101681,41.9727723]},"n1821014665":{"id":"n1821014665","loc":[-85.5910172,41.9854696]},"n1821014666":{"id":"n1821014666","loc":[-85.5398688,42.0187699]},"n1821014667":{"id":"n1821014667","loc":[-85.5218752,42.0282884]},"n1821014668":{"id":"n1821014668","loc":[-85.5159582,42.0329384]},"n1821014669":{"id":"n1821014669","loc":[-85.5898102,41.9847319]},"n1821014670":{"id":"n1821014670","loc":[-85.5734809,42.0066235]},"n1821014671":{"id":"n1821014671","loc":[-85.5922939,41.980852]},"n1821014672":{"id":"n1821014672","loc":[-85.6023629,41.9781163]},"n1821014674":{"id":"n1821014674","loc":[-85.5409953,42.0191724]},"n1821014676":{"id":"n1821014676","loc":[-85.584435,41.9949909]},"n1821014677":{"id":"n1821014677","loc":[-85.5972399,41.9783835]},"n1821014678":{"id":"n1821014678","loc":[-85.5616738,42.0071337]},"n1821014681":{"id":"n1821014681","loc":[-85.5202994,42.0310755]},"n1821014682":{"id":"n1821014682","loc":[-85.5915912,41.9857767]},"n1821014684":{"id":"n1821014684","loc":[-85.6022288,41.977897]},"n1821014687":{"id":"n1821014687","loc":[-85.5933024,41.9846362]},"n1821014688":{"id":"n1821014688","loc":[-85.5846871,41.9956169]},"n1821014689":{"id":"n1821014689","loc":[-85.5898209,41.99037]},"n1821014691":{"id":"n1821014691","loc":[-85.5448939,42.0149261]},"n1821014692":{"id":"n1821014692","loc":[-85.5977763,41.9786348]},"n1821014694":{"id":"n1821014694","loc":[-85.5767706,42.0034523]},"n1821014695":{"id":"n1821014695","loc":[-85.6103559,41.9726766]},"n1821014697":{"id":"n1821014697","loc":[-85.5922134,41.9809876]},"n1821014698":{"id":"n1821014698","loc":[-85.5935277,41.9831728]},"n1821014700":{"id":"n1821014700","loc":[-85.5674674,42.0078273]},"n1821014703":{"id":"n1821014703","loc":[-85.6021,41.9778053]},"n1821014704":{"id":"n1821014704","loc":[-85.5756763,42.0053737]},"n1821014705":{"id":"n1821014705","loc":[-85.5887695,41.9895207]},"n1821014707":{"id":"n1821014707","loc":[-85.6061073,41.9746866]},"n1821014708":{"id":"n1821014708","loc":[-85.6033446,41.9751692]},"n1821014710":{"id":"n1821014710","loc":[-85.5180986,42.0322332]},"n1821014711":{"id":"n1821014711","loc":[-85.543365,42.0163569]},"n1821014712":{"id":"n1821014712","loc":[-85.6030656,41.9753646]},"n1821014713":{"id":"n1821014713","loc":[-85.6104417,41.9704792]},"n1821014714":{"id":"n1821014714","loc":[-85.5205716,42.030998]},"n1821014716":{"id":"n1821014716","loc":[-85.516382,42.032536]},"n1821014717":{"id":"n1821014717","loc":[-85.5932863,41.9820882]},"n1821014718":{"id":"n1821014718","loc":[-85.5361928,42.0194974]},"n1821014720":{"id":"n1821014720","loc":[-85.6011613,41.9773586]},"n1821014721":{"id":"n1821014721","loc":[-85.554287,42.0109124]},"n1821014722":{"id":"n1821014722","loc":[-85.5577524,42.0103425]},"n1821014725":{"id":"n1821014725","loc":[-85.5867256,41.9921004]},"n1821014726":{"id":"n1821014726","loc":[-85.5856045,41.9968807]},"n1821014727":{"id":"n1821014727","loc":[-85.5545445,42.0106454]},"n1821014728":{"id":"n1821014728","loc":[-85.5923797,41.9842534]},"n1821014729":{"id":"n1821014729","loc":[-85.5696346,42.0081462]},"n1821014730":{"id":"n1821014730","loc":[-85.5998322,41.9786884]},"n1821014735":{"id":"n1821014735","loc":[-85.5337426,42.0218266]},"n1821014736":{"id":"n1821014736","loc":[-85.5847944,41.994672]},"n1821014740":{"id":"n1821014740","loc":[-85.5315271,42.0238669]},"n1821014741":{"id":"n1821014741","loc":[-85.5248846,42.027085]},"n1821014742":{"id":"n1821014742","loc":[-85.5853376,41.997018]},"n1821014743":{"id":"n1821014743","loc":[-85.5894883,41.988811]},"n1821014745":{"id":"n1821014745","loc":[-85.6095311,41.9726226]},"n1821014746":{"id":"n1821014746","loc":[-85.5531511,42.0133416]},"n1821014747":{"id":"n1821014747","loc":[-85.5735882,42.007058]},"n1821014749":{"id":"n1821014749","loc":[-85.5428554,42.0164366]},"n1821014751":{"id":"n1821014751","loc":[-85.5395255,42.0186304]},"n1821014752":{"id":"n1821014752","loc":[-85.571378,42.0083176]},"n1821014754":{"id":"n1821014754","loc":[-85.5541918,42.0113925]},"n1821014755":{"id":"n1821014755","loc":[-85.5278029,42.0250806]},"n1821014756":{"id":"n1821014756","loc":[-85.5936725,41.9827102]},"n1821014757":{"id":"n1821014757","loc":[-85.5176266,42.0346677]},"n1821014758":{"id":"n1821014758","loc":[-85.6096692,41.9714245]},"n1821014759":{"id":"n1821014759","loc":[-85.5770321,42.0034266]},"n1821014761":{"id":"n1821014761","loc":[-85.5988921,41.9779369]},"n1821014762":{"id":"n1821014762","loc":[-85.5811788,42.0024499]},"n1821014763":{"id":"n1821014763","loc":[-85.5154003,42.0381101]},"n1821014764":{"id":"n1821014764","loc":[-85.5155827,42.0374089]},"n1821014765":{"id":"n1821014765","loc":[-85.5891249,41.9884978]},"n1821014766":{"id":"n1821014766","loc":[-85.5313863,42.0238293]},"n1821014768":{"id":"n1821014768","loc":[-85.593297,41.9833363]},"n1821014769":{"id":"n1821014769","loc":[-85.5849446,41.9957245]},"n1821014770":{"id":"n1821014770","loc":[-85.5537774,42.0130847]},"n1821014771":{"id":"n1821014771","loc":[-85.6111766,41.9706069]},"n1821014772":{"id":"n1821014772","loc":[-85.5585477,42.008989]},"n1821014774":{"id":"n1821014774","loc":[-85.5928142,41.9852623]},"n1821014777":{"id":"n1821014777","loc":[-85.5891933,41.9882608]},"n1821014778":{"id":"n1821014778","loc":[-85.5926909,41.9817532]},"n1821014779":{"id":"n1821014779","loc":[-85.5260272,42.0252201]},"n1821014781":{"id":"n1821014781","loc":[-85.5894615,41.9950468]},"n1821014782":{"id":"n1821014782","loc":[-85.5461063,42.0143242]},"n1821014783":{"id":"n1821014783","loc":[-85.5711527,42.0085886]},"n1821014784":{"id":"n1821014784","loc":[-85.5329379,42.0218624]},"n1821014786":{"id":"n1821014786","loc":[-85.583047,42.0020252]},"n1821014787":{"id":"n1821014787","loc":[-85.5758962,42.0054095]},"n1821014788":{"id":"n1821014788","loc":[-85.5626354,42.0077733]},"n1821014789":{"id":"n1821014789","loc":[-85.6029852,41.9755999]},"n1821014790":{"id":"n1821014790","loc":[-85.5892362,41.9886755]},"n1821014791":{"id":"n1821014791","loc":[-85.5157597,42.0372017]},"n1821014793":{"id":"n1821014793","loc":[-85.6054582,41.9751094]},"n1821014794":{"id":"n1821014794","loc":[-85.5986936,41.9778412]},"n1821014795":{"id":"n1821014795","loc":[-85.5880775,41.98976]},"n1821014796":{"id":"n1821014796","loc":[-85.5858727,41.9963624]},"n1821014798":{"id":"n1821014798","loc":[-85.5792543,42.0035958]},"n1821014799":{"id":"n1821014799","loc":[-85.5921665,41.9838326]},"n1821014801":{"id":"n1821014801","loc":[-85.599214,41.9782599]},"n1821014802":{"id":"n1821014802","loc":[-85.5571905,42.0090967]},"n1821014803":{"id":"n1821014803","loc":[-85.5426891,42.0173612]},"n1821014804":{"id":"n1821014804","loc":[-85.5889626,41.9896404]},"n1821014805":{"id":"n1821014805","loc":[-85.5491264,42.0141648]},"n1821014806":{"id":"n1821014806","loc":[-85.5618897,42.0072631]},"n1821014808":{"id":"n1821014808","loc":[-85.5573501,42.0109802]},"n1821014809":{"id":"n1821014809","loc":[-85.5983463,41.9778031]},"n1821014810":{"id":"n1821014810","loc":[-85.5885173,41.9895128]},"n1821014811":{"id":"n1821014811","loc":[-85.6084998,41.9721143]},"n1821014812":{"id":"n1821014812","loc":[-85.5737598,42.0056389]},"n1821014814":{"id":"n1821014814","loc":[-85.5542173,42.0118132]},"n1821014816":{"id":"n1821014816","loc":[-85.5277868,42.024451]},"n1821014817":{"id":"n1821014817","loc":[-85.5403999,42.0191724]},"n1821014819":{"id":"n1821014819","loc":[-85.5983879,41.9791452]},"n1821014820":{"id":"n1821014820","loc":[-85.5891302,41.9897578]},"n1821014822":{"id":"n1821014822","loc":[-85.5930731,41.9805108]},"n1821014824":{"id":"n1821014824","loc":[-85.515395,42.0378471]},"n1821014825":{"id":"n1821014825","loc":[-85.5352755,42.0205136]},"n1821014826":{"id":"n1821014826","loc":[-85.5502744,42.0133398]},"n1821014828":{"id":"n1821014828","loc":[-85.5701295,42.0088256]},"n1821014830":{"id":"n1821014830","loc":[-85.5888929,41.9953099]},"n1821014832":{"id":"n1821014832","loc":[-85.5880077,41.9901547]},"n1821014833":{"id":"n1821014833","loc":[-85.5451192,42.0157072]},"n1821014834":{"id":"n1821014834","loc":[-85.6096478,41.9711932]},"n1821014835":{"id":"n1821014835","loc":[-85.5806424,42.0026532]},"n1821014836":{"id":"n1821014836","loc":[-85.5911674,41.9868732]},"n1821014838":{"id":"n1821014838","loc":[-85.5930302,41.9836571]},"n1821014839":{"id":"n1821014839","loc":[-85.588925,41.9938148]},"n1821014840":{"id":"n1821014840","loc":[-85.6111874,41.9705311]},"n1821014841":{"id":"n1821014841","loc":[-85.5680843,42.0075842]},"n1821014842":{"id":"n1821014842","loc":[-85.6012793,41.9775062]},"n1821014843":{"id":"n1821014843","loc":[-85.5855562,41.9989777]},"n1821014844":{"id":"n1821014844","loc":[-85.5506137,42.0131662]},"n1821014845":{"id":"n1821014845","loc":[-85.5270049,42.025457]},"n1821014846":{"id":"n1821014846","loc":[-85.5257054,42.025244]},"n1821014847":{"id":"n1821014847","loc":[-85.6011184,41.9771832]},"n1821014848":{"id":"n1821014848","loc":[-85.515534,42.0389234]},"n1821014850":{"id":"n1821014850","loc":[-85.5847032,42.0010347]},"n1821014853":{"id":"n1821014853","loc":[-85.5361499,42.019063]},"n1821014854":{"id":"n1821014854","loc":[-85.5439176,42.0165721]},"n1821014855":{"id":"n1821014855","loc":[-85.5838825,42.0017284]},"n1821014857":{"id":"n1821014857","loc":[-85.5542173,42.0122317]},"n1821014859":{"id":"n1821014859","loc":[-85.5708201,42.0089195]},"n1821014860":{"id":"n1821014860","loc":[-85.5844833,41.9954415]},"n1821014862":{"id":"n1821014862","loc":[-85.5223204,42.0295396]},"n1821014863":{"id":"n1821014863","loc":[-85.5777898,42.0035918]},"n1821014864":{"id":"n1821014864","loc":[-85.591044,41.9898078]},"n1821014865":{"id":"n1821014865","loc":[-85.5973204,41.980182]},"n1821014866":{"id":"n1821014866","loc":[-85.5699578,42.0085825]},"n1821014867":{"id":"n1821014867","loc":[-85.5210598,42.0305278]},"n1821014868":{"id":"n1821014868","loc":[-85.5929108,41.9819008]},"n1821014869":{"id":"n1821014869","loc":[-85.5279799,42.0242995]},"n1821014870":{"id":"n1821014870","loc":[-85.5196114,42.0320539]},"n1821014871":{"id":"n1821014871","loc":[-85.5785449,42.0040883]},"n1821014872":{"id":"n1821014872","loc":[-85.588292,41.9895766]},"n1821014873":{"id":"n1821014873","loc":[-85.5160172,42.0331775]},"n1821014874":{"id":"n1821014874","loc":[-85.5688849,42.0077016]},"n1821014876":{"id":"n1821014876","loc":[-85.5857976,41.9996036]},"n1821014879":{"id":"n1821014879","loc":[-85.5990906,41.9780765]},"n1821014881":{"id":"n1821014881","loc":[-85.5483647,42.0144279]},"n1821014883":{"id":"n1821014883","loc":[-85.5691209,42.0077972]},"n1821014885":{"id":"n1821014885","loc":[-85.6076844,41.9721103]},"n1821014886":{"id":"n1821014886","loc":[-85.6015489,41.9766147]},"n1821014887":{"id":"n1821014887","loc":[-85.574822,42.0052802]},"n1821014888":{"id":"n1821014888","loc":[-85.5880024,41.9899593]},"n1821014890":{"id":"n1821014890","loc":[-85.5909421,41.9893772]},"n1821014892":{"id":"n1821014892","loc":[-85.5497326,42.0138141]},"n1821014893":{"id":"n1821014893","loc":[-85.5167106,42.0357811]},"n1821014895":{"id":"n1821014895","loc":[-85.5844404,41.9952501]},"n1821014896":{"id":"n1821014896","loc":[-85.5362465,42.0192662]},"n1821014898":{"id":"n1821014898","loc":[-85.5906095,41.9889147]},"n1821014899":{"id":"n1821014899","loc":[-85.5590667,42.0089354]},"n1821014900":{"id":"n1821014900","loc":[-85.5921598,41.9844209]},"n1821014902":{"id":"n1821014902","loc":[-85.5778971,42.0039266]},"n1821014903":{"id":"n1821014903","loc":[-85.603012,41.9761981]},"n1821014904":{"id":"n1821014904","loc":[-85.6108977,41.9706787]},"n1821014905":{"id":"n1821014905","loc":[-85.5685738,42.0076139]},"n1821014906":{"id":"n1821014906","loc":[-85.5392787,42.0186304]},"n1821014907":{"id":"n1821014907","loc":[-85.5227885,42.0274972]},"n1821014908":{"id":"n1821014908","loc":[-85.5857547,41.9961431]},"n1821014910":{"id":"n1821014910","loc":[-85.5610354,42.0072812]},"n1821014911":{"id":"n1821014911","loc":[-85.5209632,42.0308705]},"n1821014912":{"id":"n1821014912","loc":[-85.5709757,42.0087959]},"n1821014913":{"id":"n1821014913","loc":[-85.59231,41.9839344]},"n1821014914":{"id":"n1821014914","loc":[-85.5375245,42.0185865]},"n1821014916":{"id":"n1821014916","loc":[-85.5901548,41.9839841]},"n1821014917":{"id":"n1821014917","loc":[-85.5611213,42.0086405]},"n1821014918":{"id":"n1821014918","loc":[-85.5360426,42.0198122]},"n1821014919":{"id":"n1821014919","loc":[-85.5862817,41.9948691]},"n1821014921":{"id":"n1821014921","loc":[-85.5469807,42.0144438]},"n1821014922":{"id":"n1821014922","loc":[-85.5761309,42.0053838]},"n1821014924":{"id":"n1821014924","loc":[-85.516264,42.0332971]},"n1821014925":{"id":"n1821014925","loc":[-85.5277224,42.0246661]},"n1821014926":{"id":"n1821014926","loc":[-85.5980016,41.9798231]},"n1821014928":{"id":"n1821014928","loc":[-85.5924548,41.9806965]},"n1821014930":{"id":"n1821014930","loc":[-85.5899121,41.985023]},"n1821014931":{"id":"n1821014931","loc":[-85.5706015,42.0089492]},"n1821014932":{"id":"n1821014932","loc":[-85.515926,42.033046]},"n1821014933":{"id":"n1821014933","loc":[-85.5982377,41.9796796]},"n1821014936":{"id":"n1821014936","loc":[-85.5475721,42.0145253]},"n1821014938":{"id":"n1821014938","loc":[-85.5895701,41.9902323]},"n1821014939":{"id":"n1821014939","loc":[-85.6030495,41.9759947]},"n1821014942":{"id":"n1821014942","loc":[-85.6094721,41.9724989]},"n1821014944":{"id":"n1821014944","loc":[-85.5921973,41.9811112]},"n1821014945":{"id":"n1821014945","loc":[-85.5223526,42.0291332]},"n1821014946":{"id":"n1821014946","loc":[-85.5965103,41.9808998]},"n1821014948":{"id":"n1821014948","loc":[-85.517766,42.0349227]},"n1821014950":{"id":"n1821014950","loc":[-85.5889894,41.990996]},"n1821014951":{"id":"n1821014951","loc":[-85.5601932,42.0092902]},"n1821014954":{"id":"n1821014954","loc":[-85.6028135,41.9764055]},"n1821014955":{"id":"n1821014955","loc":[-85.5520621,42.0130666]},"n1821014956":{"id":"n1821014956","loc":[-85.593002,41.9839344]},"n1821014957":{"id":"n1821014957","loc":[-85.515926,42.0369666]},"n1821014960":{"id":"n1821014960","loc":[-85.5761255,42.003877]},"n1821014961":{"id":"n1821014961","loc":[-85.5716355,42.007911]},"n1821014962":{"id":"n1821014962","loc":[-85.5575378,42.0109045]},"n1821014963":{"id":"n1821014963","loc":[-85.5735667,42.0068188]},"n1821014964":{"id":"n1821014964","loc":[-85.5915214,41.9865861]},"n1821014965":{"id":"n1821014965","loc":[-85.5866344,41.9923157]},"n1821014967":{"id":"n1821014967","loc":[-85.5283138,42.0242256]},"n1821014968":{"id":"n1821014968","loc":[-85.5177875,42.0355801]},"n1821014969":{"id":"n1821014969","loc":[-85.548071,42.0144934]},"n1821014972":{"id":"n1821014972","loc":[-85.5611159,42.0088557]},"n1821014973":{"id":"n1821014973","loc":[-85.541686,42.0188757]},"n1821014974":{"id":"n1821014974","loc":[-85.5917628,41.9862631]},"n1821014975":{"id":"n1821014975","loc":[-85.5854864,41.9959478]},"n1821014977":{"id":"n1821014977","loc":[-85.609102,41.9722317]},"n1821014980":{"id":"n1821014980","loc":[-85.5761202,42.0042438]},"n1821014982":{"id":"n1821014982","loc":[-85.5465944,42.0143601]},"n1821014983":{"id":"n1821014983","loc":[-85.5173261,42.0342732]},"n1821014984":{"id":"n1821014984","loc":[-85.5897297,41.9888509]},"n1821014985":{"id":"n1821014985","loc":[-85.5856688,41.999181]},"n1821014986":{"id":"n1821014986","loc":[-85.5344011,42.0217251]},"n1821014987":{"id":"n1821014987","loc":[-85.601467,41.9768203]},"n1821014988":{"id":"n1821014988","loc":[-85.5457254,42.0165123]},"n1821014989":{"id":"n1821014989","loc":[-85.6023482,41.9784332]},"n1821014991":{"id":"n1821014991","loc":[-85.5361606,42.01823]},"n1821014992":{"id":"n1821014992","loc":[-85.5178465,42.0351139]},"n1821014995":{"id":"n1821014995","loc":[-85.5634293,42.0078092]},"n1821014996":{"id":"n1821014996","loc":[-85.573497,42.0072015]},"n1821014997":{"id":"n1821014997","loc":[-85.5976328,41.9799725]},"n1821014998":{"id":"n1821014998","loc":[-85.5210651,42.0303166]},"n1821015003":{"id":"n1821015003","loc":[-85.5222131,42.0288064]},"n1821015004":{"id":"n1821015004","loc":[-85.5897941,41.984405]},"n1821015005":{"id":"n1821015005","loc":[-85.5975725,41.9776099]},"n1821015006":{"id":"n1821015006","loc":[-85.5765708,42.0034903]},"n1821015007":{"id":"n1821015007","loc":[-85.5250187,42.026559]},"n1821015009":{"id":"n1821015009","loc":[-85.5426998,42.0166279]},"n1821015010":{"id":"n1821015010","loc":[-85.5957606,41.9806584]},"n1821015011":{"id":"n1821015011","loc":[-85.5262753,42.0252497]},"n1821015012":{"id":"n1821015012","loc":[-85.5266455,42.0253374]},"n1821015014":{"id":"n1821015014","loc":[-85.5515632,42.0130187]},"n1821015015":{"id":"n1821015015","loc":[-85.6024058,41.9765212]},"n1821015017":{"id":"n1821015017","loc":[-85.5175032,42.0357156]},"n1821015018":{"id":"n1821015018","loc":[-85.5302718,42.0236039]},"n1821015019":{"id":"n1821015019","loc":[-85.6024005,41.9782759]},"n1821015020":{"id":"n1821015020","loc":[-85.5907758,41.9890821]},"n1821015021":{"id":"n1821015021","loc":[-85.6019445,41.9777215]},"n1821015022":{"id":"n1821015022","loc":[-85.5942854,41.9800881]},"n1821015024":{"id":"n1821015024","loc":[-85.5325826,42.0222711]},"n1821015029":{"id":"n1821015029","loc":[-85.555093,42.0105316]},"n1821015033":{"id":"n1821015033","loc":[-85.5249704,42.0270372]},"n1821015034":{"id":"n1821015034","loc":[-85.5243965,42.0272205]},"n1821015038":{"id":"n1821015038","loc":[-85.5413426,42.0190749]},"n1821015039":{"id":"n1821015039","loc":[-85.5920431,41.9848175]},"n1821015041":{"id":"n1821015041","loc":[-85.5577685,42.0106015]},"n1821015042":{"id":"n1821015042","loc":[-85.5453606,42.0158866]},"n1821015045":{"id":"n1821015045","loc":[-85.5333228,42.0217889]},"n1821015046":{"id":"n1821015046","loc":[-85.5426891,42.0175924]},"n1821015048":{"id":"n1821015048","loc":[-85.5886836,41.9936474]},"n1821015050":{"id":"n1821015050","loc":[-85.6001152,41.9786467]},"n1821015051":{"id":"n1821015051","loc":[-85.6094064,41.9723655]},"n1821015053":{"id":"n1821015053","loc":[-85.605721,41.9749738]},"n1821015055":{"id":"n1821015055","loc":[-85.6106791,41.9705048]},"n1821015057":{"id":"n1821015057","loc":[-85.5210437,42.0307071]},"n1821015059":{"id":"n1821015059","loc":[-85.5995694,41.9786725]},"n1821015060":{"id":"n1821015060","loc":[-85.5371638,42.0182938]},"n1821015062":{"id":"n1821015062","loc":[-85.6111766,41.9704593]},"n1821015065":{"id":"n1821015065","loc":[-85.577704,42.0034921]},"n1821015067":{"id":"n1821015067","loc":[-85.5570067,42.0093699]},"n1821015068":{"id":"n1821015068","loc":[-85.5920364,41.9845525]},"n1821015069":{"id":"n1821015069","loc":[-85.5252065,42.0253954]},"n1821015072":{"id":"n1821015072","loc":[-85.5664159,42.0088517]},"n1821015073":{"id":"n1821015073","loc":[-85.5880399,41.991905]},"n1821015075":{"id":"n1821015075","loc":[-85.6099871,41.9727861]},"n1821015076":{"id":"n1821015076","loc":[-85.5319603,42.0231478]},"n1821015078":{"id":"n1821015078","loc":[-85.6036088,41.9751112]},"n1821015080":{"id":"n1821015080","loc":[-85.5983128,41.9789179]},"n1821015082":{"id":"n1821015082","loc":[-85.5614069,42.0071395]},"n1821015083":{"id":"n1821015083","loc":[-85.60968,41.9709738]},"n1821015086":{"id":"n1821015086","loc":[-85.5914195,41.9837351]},"n1821015087":{"id":"n1821015087","loc":[-85.5895473,41.9948036]},"n1821015090":{"id":"n1821015090","loc":[-85.5929913,41.9851905]},"n1821015093":{"id":"n1821015093","loc":[-85.5907396,41.9838485]},"n1821015095":{"id":"n1821015095","loc":[-85.5893864,41.9880176]},"n1821015096":{"id":"n1821015096","loc":[-85.5788024,42.0039807]},"n1821015097":{"id":"n1821015097","loc":[-85.5630592,42.0078411]},"n1821015098":{"id":"n1821015098","loc":[-85.5350609,42.0211274]},"n1821015099":{"id":"n1821015099","loc":[-85.5967195,41.9808679]},"n1821015100":{"id":"n1821015100","loc":[-85.5666734,42.0088119]},"n1821015101":{"id":"n1821015101","loc":[-85.564694,42.0077675]},"n1821015103":{"id":"n1821015103","loc":[-85.6066544,41.9726527]},"n1821015104":{"id":"n1821015104","loc":[-85.6011827,41.9769838]},"n1821015105":{"id":"n1821015105","loc":[-85.5972131,41.9776697]},"n1821015106":{"id":"n1821015106","loc":[-85.5880828,41.9903341]},"n1821015107":{"id":"n1821015107","loc":[-85.5510268,42.0130626]},"n1821015108":{"id":"n1821015108","loc":[-85.6102164,41.970543]},"n1821015109":{"id":"n1821015109","loc":[-85.5905344,41.9853899]},"n1821015111":{"id":"n1821015111","loc":[-85.5888821,41.9913429]},"n1821015112":{"id":"n1821015112","loc":[-85.606295,41.9741921]},"n1821015114":{"id":"n1821015114","loc":[-85.5969556,41.9807443]},"n1821015115":{"id":"n1821015115","loc":[-85.5882223,41.9934081]},"n1821015116":{"id":"n1821015116","loc":[-85.6104471,41.9724971]},"n1821015118":{"id":"n1821015118","loc":[-85.5406091,42.0192162]},"n1821015120":{"id":"n1821015120","loc":[-85.589955,41.9888429]},"n1821015121":{"id":"n1821015121","loc":[-85.5598821,42.0092304]},"n1821015122":{"id":"n1821015122","loc":[-85.545598,42.0144097]},"n1821015123":{"id":"n1821015123","loc":[-85.5649528,42.0079965]},"n1821015125":{"id":"n1821015125","loc":[-85.5883993,41.9917814]},"n1821015126":{"id":"n1821015126","loc":[-85.5295785,42.0239967]},"n1821015129":{"id":"n1821015129","loc":[-85.5648723,42.0078809]},"n1821015132":{"id":"n1821015132","loc":[-85.564989,42.0081103]},"n1821015133":{"id":"n1821015133","loc":[-85.5946127,41.9800841]},"n1821015134":{"id":"n1821015134","loc":[-85.583448,42.0019078]},"n1821015135":{"id":"n1821015135","loc":[-85.5905934,41.9871842]},"n1821015137":{"id":"n1821015137","loc":[-85.610608,41.9704752]},"n1821015138":{"id":"n1821015138","loc":[-85.5752257,42.0052939]},"n1821015139":{"id":"n1821015139","loc":[-85.5893864,41.9943491]},"n1821015140":{"id":"n1821015140","loc":[-85.5426247,42.0169866]},"n1821015141":{"id":"n1821015141","loc":[-85.562001,42.0074526]},"n1821015142":{"id":"n1821015142","loc":[-85.5212046,42.0301094]},"n1821015143":{"id":"n1821015143","loc":[-85.602214,41.9784531]},"n1821015144":{"id":"n1821015144","loc":[-85.5858687,41.9948293]},"n1821015145":{"id":"n1821015145","loc":[-85.5608477,42.0074805]},"n1821015146":{"id":"n1821015146","loc":[-85.5651607,42.0083614]},"n1821015147":{"id":"n1821015147","loc":[-85.5288288,42.0242495]},"n1821015149":{"id":"n1821015149","loc":[-85.5450334,42.0146989]},"n1821015151":{"id":"n1821015151","loc":[-85.5578275,42.0092304]},"n1821015154":{"id":"n1821015154","loc":[-85.6056634,41.9724511]},"n1821015155":{"id":"n1821015155","loc":[-85.5902179,41.9852742]},"n1821015156":{"id":"n1821015156","loc":[-85.5156256,42.0387157]},"n1821015157":{"id":"n1821015157","loc":[-85.5734433,42.0059459]},"n1821015158":{"id":"n1821015158","loc":[-85.6050773,41.9731273]},"n1821015160":{"id":"n1821015160","loc":[-85.5223419,42.0275233]},"n1821015163":{"id":"n1821015163","loc":[-85.6053562,41.972525]},"n1821015164":{"id":"n1821015164","loc":[-85.5850412,41.9946082]},"n1821015165":{"id":"n1821015165","loc":[-85.5359031,42.0186326]},"n1821015166":{"id":"n1821015166","loc":[-85.5608745,42.0077635]},"n1821015169":{"id":"n1821015169","loc":[-85.572876,42.0073189]},"n1821015171":{"id":"n1821015171","loc":[-85.5875424,41.9919188]},"n1821015172":{"id":"n1821015172","loc":[-85.5240116,42.0272581]},"n1821015173":{"id":"n1821015173","loc":[-85.5318369,42.0236818]},"n1821015174":{"id":"n1821015174","loc":[-85.566888,42.0086923]},"n1821015175":{"id":"n1821015175","loc":[-85.5931522,41.9850669]},"n1821015176":{"id":"n1821015176","loc":[-85.5604842,42.0093199]},"n1821015177":{"id":"n1821015177","loc":[-85.5868168,41.9927543]},"n1821015178":{"id":"n1821015178","loc":[-85.6052275,41.9732549]},"n1821015179":{"id":"n1821015179","loc":[-85.5910118,41.9900431]},"n1821015182":{"id":"n1821015182","loc":[-85.5610032,42.0082897]},"n1821015183":{"id":"n1821015183","loc":[-85.5425443,42.0179431]},"n1821015184":{"id":"n1821015184","loc":[-85.5843277,42.0014055]},"n1821015186":{"id":"n1821015186","loc":[-85.5733307,42.0063564]},"n1821015188":{"id":"n1821015188","loc":[-85.5277385,42.0248694]},"n1821015189":{"id":"n1821015189","loc":[-85.5558427,42.0108168]},"n1821015190":{"id":"n1821015190","loc":[-85.5650587,42.0082618]},"n1821015191":{"id":"n1821015191","loc":[-85.5660351,42.0088278]},"n1821015192":{"id":"n1821015192","loc":[-85.5849768,41.9980049]},"n1821015194":{"id":"n1821015194","loc":[-85.5359139,42.0188199]},"n1821015195":{"id":"n1821015195","loc":[-85.593238,41.9849194]},"n1821015197":{"id":"n1821015197","loc":[-85.5850841,41.9983239]},"n1821015199":{"id":"n1821015199","loc":[-85.5983396,41.9794283]},"n1821015204":{"id":"n1821015204","loc":[-85.5452801,42.0145355]},"n1821015205":{"id":"n1821015205","loc":[-85.5340685,42.0218407]},"n1821015207":{"id":"n1821015207","loc":[-85.5773272,42.0034186]},"n1821015209":{"id":"n1821015209","loc":[-85.5535212,42.0132419]},"n1821015211":{"id":"n1821015211","loc":[-85.6107703,41.9706045]},"n1821015212":{"id":"n1821015212","loc":[-85.6030066,41.9758193]},"n1821015213":{"id":"n1821015213","loc":[-85.5359943,42.0184213]},"n1821015214":{"id":"n1821015214","loc":[-85.5922993,41.9813305]},"n1821015215":{"id":"n1821015215","loc":[-85.5672689,42.0080465]},"n1821015217":{"id":"n1821015217","loc":[-85.5160494,42.0365682]},"n1821015218":{"id":"n1821015218","loc":[-85.5401142,42.0190351]},"n1821015219":{"id":"n1821015219","loc":[-85.5607632,42.0092282]},"n1821015220":{"id":"n1821015220","loc":[-85.5866197,41.9947894]},"n1821015221":{"id":"n1821015221","loc":[-85.6017889,41.9765132]},"n1821015222":{"id":"n1821015222","loc":[-85.5595978,42.009059]},"n1821015226":{"id":"n1821015226","loc":[-85.5871494,41.9929018]},"n1821015227":{"id":"n1821015227","loc":[-85.5857708,41.9998866]},"n1821015228":{"id":"n1821015228","loc":[-85.5317135,42.0238094]},"n1821015231":{"id":"n1821015231","loc":[-85.5733521,42.0061372]},"n1821015233":{"id":"n1821015233","loc":[-85.5855991,42.0001936]},"n1821015234":{"id":"n1821015234","loc":[-85.5213924,42.029962]},"n1821015235":{"id":"n1821015235","loc":[-85.6052221,41.9726567]},"n1821015236":{"id":"n1821015236","loc":[-85.5763723,42.0035422]},"n1821015237":{"id":"n1821015237","loc":[-85.5858512,41.9966215]},"n1821015238":{"id":"n1821015238","loc":[-85.567061,42.008439]},"n1821015239":{"id":"n1821015239","loc":[-85.5250563,42.0269057]},"n1821015240":{"id":"n1821015240","loc":[-85.5347551,42.0214263]},"n1821015241":{"id":"n1821015241","loc":[-85.6098463,41.9707066]},"n1821015242":{"id":"n1821015242","loc":[-85.5676927,42.0076519]},"n1821015243":{"id":"n1821015243","loc":[-85.516775,42.0322669]},"n1821015244":{"id":"n1821015244","loc":[-85.5762275,42.0036538]},"n1821015245":{"id":"n1821015245","loc":[-85.5583639,42.0090949]},"n1821015246":{"id":"n1821015246","loc":[-85.5554041,42.0106432]},"n1821015247":{"id":"n1821015247","loc":[-85.5973364,41.9776099]},"n1821015248":{"id":"n1821015248","loc":[-85.6098945,41.9717513]},"n1821015249":{"id":"n1821015249","loc":[-85.6045315,41.9751511]},"n1821015250":{"id":"n1821015250","loc":[-85.5579938,42.0092264]},"n1821015253":{"id":"n1821015253","loc":[-85.6058873,41.9724652]},"n1821015254":{"id":"n1821015254","loc":[-85.5869456,41.9947517]},"n1821015255":{"id":"n1821015255","loc":[-85.5936565,41.9823713]},"n1821015256":{"id":"n1821015256","loc":[-85.5218269,42.0278102]},"n1821015258":{"id":"n1821015258","loc":[-85.5887802,41.9905534]},"n1821015259":{"id":"n1821015259","loc":[-85.5901924,41.9904515]},"n1821015263":{"id":"n1821015263","loc":[-85.5249222,42.0255787]},"n1821015265":{"id":"n1821015265","loc":[-85.5175206,42.0321672]},"n1821015266":{"id":"n1821015266","loc":[-85.5275722,42.0254034]},"n1821015267":{"id":"n1821015267","loc":[-85.6016226,41.9765451]},"n1821015269":{"id":"n1821015269","loc":[-85.5569316,42.011032]},"n1821015271":{"id":"n1821015271","loc":[-85.6010714,41.9785209]},"n1821015272":{"id":"n1821015272","loc":[-85.6050666,41.9729917]},"n1821015273":{"id":"n1821015273","loc":[-85.5891235,41.99529]},"n1821015274":{"id":"n1821015274","loc":[-85.515454,42.0376439]},"n1821015276":{"id":"n1821015276","loc":[-85.5776021,42.0034443]},"n1821015277":{"id":"n1821015277","loc":[-85.6041707,41.9751453]},"n1821015278":{"id":"n1821015278","loc":[-85.5444701,42.0167435]},"n1821015280":{"id":"n1821015280","loc":[-85.5923274,41.9852202]},"n1821015283":{"id":"n1821015283","loc":[-85.5893649,41.9900271]},"n1821015284":{"id":"n1821015284","loc":[-85.5933453,41.9804412]},"n1821015285":{"id":"n1821015285","loc":[-85.5247237,42.026017]},"n1821015286":{"id":"n1821015286","loc":[-85.5286182,42.0242477]},"n1821015287":{"id":"n1821015287","loc":[-85.5904003,41.9888549]},"n1821015288":{"id":"n1821015288","loc":[-85.6062146,41.9739369]},"n1821015290":{"id":"n1821015290","loc":[-85.5762596,42.0052602]},"n1821015292":{"id":"n1821015292","loc":[-85.5849715,41.9975465]},"n1821015293":{"id":"n1821015293","loc":[-85.585229,42.0006241]},"n1821015294":{"id":"n1821015294","loc":[-85.5926922,41.9805946]},"n1821015295":{"id":"n1821015295","loc":[-85.5703387,42.0089133]},"n1821015299":{"id":"n1821015299","loc":[-85.5789955,42.0038611]},"n1821015301":{"id":"n1821015301","loc":[-85.6072888,41.9721918]},"n1821015302":{"id":"n1821015302","loc":[-85.5356349,42.0200992]},"n1821015304":{"id":"n1821015304","loc":[-85.5891772,41.994066]},"n1821015306":{"id":"n1821015306","loc":[-85.606295,41.9744952]},"n1821015307":{"id":"n1821015307","loc":[-85.538871,42.0186583]},"n1821015308":{"id":"n1821015308","loc":[-85.587997,41.994971]},"n1821015311":{"id":"n1821015311","loc":[-85.606869,41.9725809]},"n1821015312":{"id":"n1821015312","loc":[-85.5171974,42.0339943]},"n1821015314":{"id":"n1821015314","loc":[-85.5327435,42.0220479]},"n1821015315":{"id":"n1821015315","loc":[-85.5383439,42.0187282]},"n1821015316":{"id":"n1821015316","loc":[-85.5248095,42.0263119]},"n1821015318":{"id":"n1821015318","loc":[-85.5732502,42.0073051]},"n1821015319":{"id":"n1821015319","loc":[-85.5924226,41.9852663]},"n1821015321":{"id":"n1821015321","loc":[-85.5179001,42.0353052]},"n1821015322":{"id":"n1821015322","loc":[-85.5456771,42.0162413]},"n1821015323":{"id":"n1821015323","loc":[-85.5936618,41.9829096]},"n1821015325":{"id":"n1821015325","loc":[-85.5656931,42.0086582]},"n1821015326":{"id":"n1821015326","loc":[-85.5448456,42.0150975]},"n1821015327":{"id":"n1821015327","loc":[-85.5220039,42.027615]},"n1821015329":{"id":"n1821015329","loc":[-85.517884,42.0354885]},"n1821015330":{"id":"n1821015330","loc":[-85.5576666,42.0101671]},"n1821015332":{"id":"n1821015332","loc":[-85.5368754,42.0181402]},"n1821015333":{"id":"n1821015333","loc":[-85.5367078,42.0181145]},"n1821015334":{"id":"n1821015334","loc":[-85.5903909,41.9904316]},"n1821015335":{"id":"n1821015335","loc":[-85.5430767,42.0163587]},"n1821015336":{"id":"n1821015336","loc":[-85.5277492,42.0252878]},"n1821015337":{"id":"n1821015337","loc":[-85.5312146,42.0236898]},"n1821015338":{"id":"n1821015338","loc":[-85.5886568,41.991614]},"n1821015339":{"id":"n1821015339","loc":[-85.5782498,42.0040883]},"n1821015341":{"id":"n1821015341","loc":[-85.562233,42.0076457]},"n1821015342":{"id":"n1821015342","loc":[-85.588626,41.9952479]},"n1821015343":{"id":"n1821015343","loc":[-85.5762865,42.005033]},"n1821015344":{"id":"n1821015344","loc":[-85.5850841,41.9971478]},"n1821015346":{"id":"n1821015346","loc":[-85.5643144,42.0076936]},"n1821015347":{"id":"n1821015347","loc":[-85.5164893,42.0359467]},"n1821015348":{"id":"n1821015348","loc":[-85.5906846,41.9903541]},"n1821015349":{"id":"n1821015349","loc":[-85.557688,42.0107769]},"n1821015350":{"id":"n1821015350","loc":[-85.5363698,42.0181424]},"n1821015351":{"id":"n1821015351","loc":[-85.5939636,41.9801918]},"n1821015352":{"id":"n1821015352","loc":[-85.5524041,42.0131644]},"n1821015354":{"id":"n1821015354","loc":[-85.5308606,42.0236221]},"n1821015355":{"id":"n1821015355","loc":[-85.5877449,41.9932367]},"n1821015356":{"id":"n1821015356","loc":[-85.519885,42.0318586]},"n1821015357":{"id":"n1821015357","loc":[-85.5454035,42.0168431]},"n1821015358":{"id":"n1821015358","loc":[-85.5970629,41.9781881]},"n1821015359":{"id":"n1821015359","loc":[-85.5932541,41.9844767]},"n1821015360":{"id":"n1821015360","loc":[-85.5970736,41.9778252]},"n1821015361":{"id":"n1821015361","loc":[-85.537031,42.0181601]},"n1821015362":{"id":"n1821015362","loc":[-85.5548355,42.0105156]},"n1821015363":{"id":"n1821015363","loc":[-85.5168648,42.0336158]},"n1821015365":{"id":"n1821015365","loc":[-85.5870435,41.9919507]},"n1821015366":{"id":"n1821015366","loc":[-85.5719681,42.0075443]},"n1821015367":{"id":"n1821015367","loc":[-85.5969985,41.9780446]},"n1821015368":{"id":"n1821015368","loc":[-85.5926761,41.98528]},"n1821015369":{"id":"n1821015369","loc":[-85.5224009,42.0293444]},"n1821015371":{"id":"n1821015371","loc":[-85.518737,42.0322651]},"n1821015372":{"id":"n1821015372","loc":[-85.6064573,41.9726465]},"n1821015373":{"id":"n1821015373","loc":[-85.5201103,42.0313088]},"n1821015375":{"id":"n1821015375","loc":[-85.5378182,42.0186844]},"n1821015376":{"id":"n1821015376","loc":[-85.6109741,41.9706882]},"n1821015377":{"id":"n1821015377","loc":[-85.5993333,41.9785488]},"n1821015378":{"id":"n1821015378","loc":[-85.5889787,41.9907368]},"n1821015380":{"id":"n1821015380","loc":[-85.6060161,41.9737375]},"n1821015381":{"id":"n1821015381","loc":[-85.5743016,42.0053679]},"n1821015382":{"id":"n1821015382","loc":[-85.6014724,41.9776099]},"n1821015383":{"id":"n1821015383","loc":[-85.5574426,42.0091644]},"n1821015385":{"id":"n1821015385","loc":[-85.5208613,42.0309302]},"n1821015386":{"id":"n1821015386","loc":[-85.5919023,41.9837789]},"n1821015387":{"id":"n1821015387","loc":[-85.5455484,42.0160221]},"n1821015392":{"id":"n1821015392","loc":[-85.5801757,42.0028964]},"n1821015395":{"id":"n1821015395","loc":[-85.5493785,42.0139974]},"n1821015396":{"id":"n1821015396","loc":[-85.5449475,42.015488]},"n1821015398":{"id":"n1821015398","loc":[-85.611123,41.9706627]},"n1821015400":{"id":"n1821015400","loc":[-85.5935706,41.9822477]},"n1821015401":{"id":"n1821015401","loc":[-85.5724254,42.0073508]},"n1821015403":{"id":"n1821015403","loc":[-85.5486812,42.0143442]},"n1821015404":{"id":"n1821015404","loc":[-85.5161835,42.0327711]},"n1821015406":{"id":"n1821015406","loc":[-85.5921705,41.9851107]},"n1821015407":{"id":"n1821015407","loc":[-85.531912,42.0234069]},"n1821015410":{"id":"n1821015410","loc":[-85.5292566,42.024176]},"n1821015411":{"id":"n1821015411","loc":[-85.5845316,41.9948315]},"n1821015413":{"id":"n1821015413","loc":[-85.5217947,42.0280413]},"n1821015414":{"id":"n1821015414","loc":[-85.5527367,42.013272]},"n1821015415":{"id":"n1821015415","loc":[-85.5191179,42.0321973]},"n1821015416":{"id":"n1821015416","loc":[-85.5540241,42.0128655]},"n1821015418":{"id":"n1821015418","loc":[-85.5272892,42.0254849]},"n1821015419":{"id":"n1821015419","loc":[-85.5449744,42.016867]},"n1821015420":{"id":"n1821015420","loc":[-85.5852665,41.9986787]},"n1821015421":{"id":"n1821015421","loc":[-85.6102701,41.972186]},"n1821015423":{"id":"n1821015423","loc":[-85.6026365,41.9764972]},"n1821015427":{"id":"n1821015427","loc":[-85.5898692,41.9841498]},"n1821015429":{"id":"n1821015429","loc":[-85.5422546,42.0183855]},"n1821015430":{"id":"n1821015430","loc":[-85.5866505,41.9925549]},"n1821015431":{"id":"n1821015431","loc":[-85.5234376,42.0273577]},"n1821015432":{"id":"n1821015432","loc":[-85.6096746,41.9727284]},"n1821015433":{"id":"n1821015433","loc":[-85.5824891,42.0021567]},"n1821015434":{"id":"n1821015434","loc":[-85.5923905,41.9841139]},"n1821015435":{"id":"n1821015435","loc":[-85.5874565,41.9948014]},"n1821015437":{"id":"n1821015437","loc":[-85.6055279,41.9734423]},"n1821015438":{"id":"n1821015438","loc":[-85.5299379,42.0237376]},"n1821015439":{"id":"n1821015439","loc":[-85.5155022,42.0383651]},"n1821015442":{"id":"n1821015442","loc":[-85.527422,42.0254711]},"n1821015443":{"id":"n1821015443","loc":[-85.5920699,41.9849291]},"n1821015444":{"id":"n1821015444","loc":[-85.5639711,42.0077494]},"n1821015445":{"id":"n1821015445","loc":[-85.5162586,42.0361777]},"n1821015446":{"id":"n1821015446","loc":[-85.5220039,42.029695]},"n1821015448":{"id":"n1821015448","loc":[-85.5176641,42.0356956]},"n1821015449":{"id":"n1821015449","loc":[-85.5930556,41.9841577]},"n1821015451":{"id":"n1821015451","loc":[-85.5320783,42.0228848]},"n1821015452":{"id":"n1821015452","loc":[-85.5170096,42.0357235]},"n1821015453":{"id":"n1821015453","loc":[-85.5571355,42.009613]},"n1821015454":{"id":"n1821015454","loc":[-85.5609979,42.009059]},"n1821015455":{"id":"n1821015455","loc":[-85.6097336,41.9708342]},"n1821015456":{"id":"n1821015456","loc":[-85.5884476,41.9904218]},"w170843846":{"id":"w170843846","tags":{"waterway":"river"},"nodes":["n1819790555","n1819790762","n1819790547","n1819790618","n1819790898","n1819790796","n1819790534","n1819790543","n1819790541","n1819790687","n1819790877","n1819790811","n1819790670"]},"w209083541":{"id":"w209083541","tags":{"name":"Portage River","waterway":"river"},"nodes":["n1821014848","n1821015156","n1821015439","n1821014763","n1821014824","n1821015274","n1821014764","n1821014791","n1821014957","n1821015217","n1821015445","n1821015347","n1821014893","n1821015452","n1821015017","n1821015448","n1821014968","n1821015329","n1821015321","n1821014992","n1821014948","n1821014757","n1821014983","n1821015312","n1821015363","n1821014924","n1821014873","n1821014932","n1821014668","n1821015404","n1821014716","n1821015243","n1821015265","n1821014710","n1821015371","n1821015415","n1821014870","n1821015356","n1821015373","n1821014681","n1821014714","n1821015385","n1821014911","n1821015057","n1821014867","n1821014998","n1821015142","n1821015234","n1821015446","n1821014862","n1821015369","n1821014945","n1821015003","n1821014667","n1821015413","n1821015256","n1821015327","n1821015160","n1821014907","n1821015431","n1821015172","n1821015034","n1821014741","n1821015033","n1821015239","n1821015007","n1821015316","n1821015285","n1821014633","n1821015263","n1821015069","n1821014846","n1821014779","n1821015011","n1821015012","n1821014845","n1821015418","n1821015442","n1821015266","n1821015336","n1821014755","n1821015188","n1821014925","n1821014816","n1821014869","n1821014967","n1821015286","n1821015147","n1821015410","n1821015126","n1821015438","n1821015018","n1821015354","n1821015337","n1821014766","n1821014740","n1821015228","n1821015173","n1821015407","n1821015076","n1821015451","n1821015024","n1821015314","n1821014784","n1821015045","n1821014735","n1821015205","n1821014986","n1821015240","n1821015098","n1821014825","n1821015302","n1821014918","n1821014718","n1821014896","n1821014853","n1821015194","n1821015165","n1821015213","n1821014991","n1821015350","n1821015333","n1821015332","n1821015361","n1821015060","n1821014914","n1821015375","n1821015315","n1821015307","n1821014906","n1821014751","n1821014666","n1821015218","n1821014817","n1821015118","n1821014674","n1821015038","n1821014973","n1821015429","n1821015183","n1821015046","n1821014803","n1821015140","n1821015009","n1821014749","n1821015335","n1821014711","n1821014854","n1821015278","n1821015419","n1821014648","n1821015357","n1821014637","n1821014988","n1821015322","n1821015387","n1821015042","n1821014833","n1821015396","n1821015326","n1821014691","n1821015149","n1821015204","n1821015122","n1821014782","n1821014982","n1821014921","n1821014936","n1821014969","n1821014881","n1821015403","n1821014805","n1821015395","n1821014892","n1821014826","n1821014844","n1821015107","n1821015014","n1821014955","n1821015352","n1821015414","n1821014746","n1821015209","n1821014770","n1821015416","n1821014661","n1821014857","n1821014814","n1821014754","n1821014721","n1821014727","n1821015362","n1821015029","n1821015246","n1821015189","n1821014627","n1821015269","n1821014808","n1821014962","n1821015349","n1821015041","n1821014722","n1821015330","n1821015453","n1821015067","n1821014643","n1821014802","n1821015383","n1821015151","n1821015250","n1821015245","n1821014772","n1821014899","n1821015222","n1821015121","n1821014951","n1821015176","n1821015219","n1821015454","n1821014972","n1821014917","n1821015182","n1821015166","n1821015145","n1821014910","n1821015082","n1821014678","n1821014806","n1821015141","n1821015341","n1821014788","n1821015097","n1821014995","n1821015444","n1821015346","n1821015101","n1821015129","n1821015123","n1821015132","n1821015190","n1821015146","n1821015325","n1821015191","n1821015072","n1821015100","n1821015174","n1821015238","n1821015215","n1821014700","n1821015242","n1821014841","n1821014905","n1821014874","n1821014883","n1821014729","n1821014866","n1821014828","n1821015295","n1821014931","n1821014859","n1821014912","n1821014783","n1821014752","n1821014961","n1821015366","n1821015401","n1821015169","n1821015318","n1821014996","n1821014747","n1821014963","n1821014670","n1821015186","n1821015231","n1821015157","n1821014812","n1821015381","n1821014887","n1821015138","n1821014704","n1821014787","n1821014922","n1821015290","n1821015343","n1821014651","n1821014980","n1821014960","n1821015244","n1821015236","n1821015006","n1821014694","n1821014759","n1821015207","n1821015276","n1821015065","n1821014863","n1821014660","n1821014902","n1821014645","n1821015339","n1821014871","n1821015096","n1821015299","n1821014798","n1821014638","n1821015392","n1821014835","n1821014762","n1821014642","n1821015433","n1821014786","n1821015134","n1821014855","n1821015184","n1821014850","n1821015293","n1821015233","n1821015227","n1821014876","n1821014985","n1821014843","n1821015420","n1821015197","n1821015192","n1821015292","n1821015344","n1821014742","n1821014726","n1821015237","n1821014796","n1821014908","n1821014975","n1821014769","n1821014688","n1821014860","n1821014895","n1821014676","n1821015411","n1821014736","n1821015164","n1821014647","n1821015144","n1821014919","n1821015220","n1821015254","n1821015435","n1821015308","n1821015342","n1821014830","n1821015273","n1821014658","n1821014781","n1821015087","n1821015139","n1821015304","n1821014839","n1821015048","n1821015115","n1821015355","n1821015226","n1821015177","n1821015430","n1821014965","n1821014725","n1821015365","n1821015171","n1821015073","n1821015125","n1821015338","n1821015111","n1821014950","n1821015378","n1821015258","n1821015456","n1821015106","n1821014832","n1821014888","n1821014795","n1821014872","n1821014810","n1821014705","n1821014804","n1821014820","n1821015283","n1821014938","n1821014689","n1821015259","n1821015334","n1821015348","n1821014635","n1821015179","n1821014864","n1821014890","n1821015020","n1821014898","n1821015287","n1821015120","n1821014984","n1821014743","n1821014790","n1821014765","n1821014777","n1821015095","n1821014653","n1821015135","n1821014836","n1821014964","n1821014974","n1821014636","n1821014682","n1821014663","n1821014665","n1821015109","n1821015155","n1821014930","n1821014669","n1821015004","n1821015427","n1821014916","n1821015093","n1821015086","n1821015386","n1821014799","n1821014913","n1821015434","n1821014728","n1821014900","n1821015068","n1821015039","n1821015443","n1821015406","n1821015280","n1821015319","n1821015368","n1821014774","n1821015090","n1821015175","n1821015195","n1821014687","n1821015359","n1821015449","n1821014956","n1821014838","n1821014768","n1821014698","n1821015323","n1821014756","n1821015255","n1821015400","n1821014717","n1821014868","n1821014778","n1821015214","n1821014944","n1821014697","n1821014671","n1821014928","n1821015294","n1821014822","n1821015284","n1821015351","n1821015022","n1821015133","n1821014644","n1821015010","n1821014625","n1821014657","n1821014946","n1821015099","n1821015114","n1821014629","n1821014865","n1821014997","n1821014926","n1821014933","n1821015199","n1821014819","n1821015080","n1821014692","n1821014677","n1821015358","n1821015367","n1821015360","n1821015105","n1821015247","n1821015005","n1821014809","n1821014794","n1821014761","n1821014879","n1821014801","n1821015377","n1821015059","n1821014730","n1821015050","n1821015271","n1821015143","n1821014989","n1821015019","n1821014672","n1821014649","n1821014684","n1821014703","n1821015021","n1821015382","n1821014842","n1821014720","n1821014847","n1821015104","n1821014987","n1821014886","n1821015267","n1821015221","n1821015015","n1821015423","n1821014954","n1821014903","n1821014939","n1821015212","n1821014789","n1821014712","n1821014708","n1821015078","n1821015277","n1821015249","n1821014646","n1821014793","n1821015053","n1821014707","n1821015306","n1821015112","n1821015288","n1821015380","n1821015437","n1821015178","n1821015158","n1821015272","n1821015235","n1821015163","n1821015154","n1821015253","n1821014632","n1821015372","n1821015103","n1821015311","n1821015301","n1821014885","n1821014811","n1821014977","n1821015051","n1821014942","n1821014745","n1821015432","n1821015075","n1821014664","n1821014695","n1821015116","n1821014639","n1821015421","n1821015248","n1821014758","n1821014834","n1821015083","n1821015455","n1821015241","n1821015108","n1821014713","n1821015137","n1821015055","n1821015211","n1821014904","n1821015376","n1821015398","n1821014771","n1821014840","n1821015062","n1819790554","n1819790560","n1819790767","n1819790696","n1819790706","n1819790606","n1819790607","n1819790544","n1819790779","n1819790760","n1819790926","n1819790927","n1819790647","n1819790657","n1819790649","n1819790679","n1819790915","n1819790739","n1819790549","n1819790671","n1819790686","n1819790798","n1819790791","n1819790563","n1819790720","n1819790704","n1819790795","n1819790836","n1819790622","n1819790615","n1819790654","n1819790931","n1819790595","n1819790753","n1819790612","n1819790623","n1819790564","n1819790552","n1819790645","n1819790625","n1819790605","n1819790668","n1819790731","n1819790718","n1819790781","n1819790665","n1819790659","n1819790726","n1819790642","n1819790854","n1819790697","n1819790867","n1819790833","n1819790555","n1819790774","n1819790881","n1819790530","n1819790909","n1819790891","n1819790590","n1819790738","n1819790609","n1819790528","n1819790674","n1819790583","n1819790559","n1819790863","n1819790912","n1819790685","n1819790913"]},"n185955128":{"id":"n185955128","loc":[-85.6189367,41.9519432]},"n185948818":{"id":"n185948818","loc":[-85.616755,41.952231]},"n185978819":{"id":"n185978819","loc":[-85.616773,41.954737]},"n185978821":{"id":"n185978821","loc":[-85.616699,41.954742]},"n2138420714":{"id":"n2138420714","loc":[-85.6176304,41.9515154]},"n2138420715":{"id":"n2138420715","loc":[-85.6177355,41.9515717]},"n2138420716":{"id":"n2138420716","loc":[-85.6192901,41.951573]},"n2138420718":{"id":"n2138420718","loc":[-85.6171481,41.9513579]},"n2138420719":{"id":"n2138420719","loc":[-85.6165981,41.9519199]},"n2138420720":{"id":"n2138420720","loc":[-85.6165719,41.9519922]},"n2138420721":{"id":"n2138420721","loc":[-85.6165832,41.9520757]},"n2138420722":{"id":"n2138420722","loc":[-85.6166355,41.9521453]},"n2138420723":{"id":"n2138420723","loc":[-85.6169161,41.9522788]},"n2138420724":{"id":"n2138420724","loc":[-85.6170882,41.9522538]},"n2138420725":{"id":"n2138420725","loc":[-85.6189204,41.9514674]},"n2138420726":{"id":"n2138420726","loc":[-85.6180346,41.9514735]},"n2138420727":{"id":"n2138420727","loc":[-85.6180362,41.9515719]},"n2138420728":{"id":"n2138420728","loc":[-85.6189204,41.9515727]},"n2138420744":{"id":"n2138420744","loc":[-85.618919,41.9519571]},"n2138420745":{"id":"n2138420745","loc":[-85.6194575,41.9522374]},"n2138420746":{"id":"n2138420746","loc":[-85.6181777,41.9536179]},"n2138420747":{"id":"n2138420747","loc":[-85.6176582,41.9533658]},"n2138420748":{"id":"n2138420748","loc":[-85.6179871,41.9530242]},"n2138420749":{"id":"n2138420749","loc":[-85.618429,41.9532476]},"n2138420750":{"id":"n2138420750","loc":[-85.6185538,41.9531194]},"n2138420751":{"id":"n2138420751","loc":[-85.6180765,41.9528677]},"n2138420752":{"id":"n2138420752","loc":[-85.6180394,41.9528855]},"n2138420753":{"id":"n2138420753","loc":[-85.6193752,41.9521695]},"n2138420754":{"id":"n2138420754","loc":[-85.6181374,41.9535376]},"n2138420755":{"id":"n2138420755","loc":[-85.6179898,41.9535545]},"n2138420756":{"id":"n2138420756","loc":[-85.6177286,41.9534228]},"n2138420757":{"id":"n2138420757","loc":[-85.6181011,41.9530292]},"n2138420759":{"id":"n2138420759","loc":[-85.6185158,41.9531194]},"n2138420760":{"id":"n2138420760","loc":[-85.6191318,41.9520425]},"n2138420761":{"id":"n2138420761","loc":[-85.6182348,41.9529815]},"n2138420762":{"id":"n2138420762","loc":[-85.6184853,41.9524248]},"n2138420763":{"id":"n2138420763","loc":[-85.6186764,41.9525193]},"n2138420764":{"id":"n2138420764","loc":[-85.6189421,41.9526483]},"n2138420765":{"id":"n2138420765","loc":[-85.6182875,41.9531222]},"n2138420766":{"id":"n2138420766","loc":[-85.6179141,41.9535163]},"n2138420767":{"id":"n2138420767","loc":[-85.6178363,41.9535735]},"n185948824":{"id":"n185948824","loc":[-85.6165667,41.9529715]},"n2138420758":{"id":"n2138420758","loc":[-85.6184408,41.953201]},"n2138422349":{"id":"n2138422349","loc":[-85.6175136,41.9533346]},"n2138422350":{"id":"n2138422350","loc":[-85.6171867,41.9531679]},"n2138422351":{"id":"n2138422351","loc":[-85.61722,41.9531305]},"n2138422352":{"id":"n2138422352","loc":[-85.6171889,41.9531158]},"n2138422353":{"id":"n2138422353","loc":[-85.6171733,41.9531284]},"n2138422354":{"id":"n2138422354","loc":[-85.616765,41.9529207]},"n2138422355":{"id":"n2138422355","loc":[-85.6167565,41.9529355]},"n2138422356":{"id":"n2138422356","loc":[-85.6164772,41.9527911]},"n2138422357":{"id":"n2138422357","loc":[-85.6168227,41.9524261]},"n2138422358":{"id":"n2138422358","loc":[-85.6171913,41.9526158]},"n2138422359":{"id":"n2138422359","loc":[-85.6172403,41.9525589]},"n2138422360":{"id":"n2138422360","loc":[-85.6172097,41.952542]},"n2138422361":{"id":"n2138422361","loc":[-85.6173948,41.9523512]},"n2138422362":{"id":"n2138422362","loc":[-85.6174256,41.9523678]},"n2138422363":{"id":"n2138422363","loc":[-85.6174831,41.9523086]},"n2138422364":{"id":"n2138422364","loc":[-85.6173316,41.9522289]},"n2138422365":{"id":"n2138422365","loc":[-85.6174507,41.9521024]},"n2138422366":{"id":"n2138422366","loc":[-85.6174773,41.9521155]},"n2138422367":{"id":"n2138422367","loc":[-85.6176577,41.9519232]},"n2138422368":{"id":"n2138422368","loc":[-85.6176336,41.9519105]},"n2138422369":{"id":"n2138422369","loc":[-85.617747,41.9517861]},"n2138422370":{"id":"n2138422370","loc":[-85.6182675,41.9520559]},"n2138422371":{"id":"n2138422371","loc":[-85.6182105,41.9521219]},"n2138422372":{"id":"n2138422372","loc":[-85.6183863,41.9522203]},"n2138422373":{"id":"n2138422373","loc":[-85.6180984,41.9525266]},"n2138422374":{"id":"n2138422374","loc":[-85.6179159,41.9524295]},"n2138422375":{"id":"n2138422375","loc":[-85.617854,41.9524979]},"n2138422376":{"id":"n2138422376","loc":[-85.6177686,41.9524531]},"n2138422377":{"id":"n2138422377","loc":[-85.6174716,41.9527765]},"n2138422378":{"id":"n2138422378","loc":[-85.6178545,41.9529756]},"n2138425424":{"id":"n2138425424","loc":[-85.6171736,41.9536385]},"n2138425425":{"id":"n2138425425","loc":[-85.6180159,41.9535782]},"n2138425426":{"id":"n2138425426","loc":[-85.6181068,41.9536282]},"n2138425427":{"id":"n2138425427","loc":[-85.6180673,41.9542678]},"n2138425428":{"id":"n2138425428","loc":[-85.6178636,41.9542634]},"n2138425429":{"id":"n2138425429","loc":[-85.6176204,41.9542046]},"n2138425430":{"id":"n2138425430","loc":[-85.6174366,41.9541031]},"n2138425431":{"id":"n2138425431","loc":[-85.6172942,41.9539781]},"n2138425432":{"id":"n2138425432","loc":[-85.6172171,41.9538399]},"n2138425433":{"id":"n2138425433","loc":[-85.6168138,41.9543266]},"n2138425434":{"id":"n2138425434","loc":[-85.6167779,41.9538098]},"n2138425435":{"id":"n2138425435","loc":[-85.6165849,41.9537073]},"n2138425441":{"id":"n2138425441","loc":[-85.616458,41.9543184]},"n2138425442":{"id":"n2138425442","loc":[-85.6166428,41.954345]},"n2138425445":{"id":"n2138425445","loc":[-85.6181332,41.9514117]},"n2138425446":{"id":"n2138425446","loc":[-85.6183263,41.9514111]},"n2138425447":{"id":"n2138425447","loc":[-85.6185033,41.9514102]},"n2138425449":{"id":"n2138425449","loc":[-85.6186809,41.9514093]},"n2138425451":{"id":"n2138425451","loc":[-85.6188681,41.9514082]},"n2138436008":{"id":"n2138436008","loc":[-85.6170474,41.9513604]},"n2138436009":{"id":"n2138436009","loc":[-85.6164937,41.9519586]},"n2138436010":{"id":"n2138436010","loc":[-85.616497,41.9520725]},"n2138436011":{"id":"n2138436011","loc":[-85.6165654,41.9521645]},"n2138436012":{"id":"n2138436012","loc":[-85.6166631,41.9522178]},"n2138436013":{"id":"n2138436013","loc":[-85.6167327,41.9522554]},"n2138436014":{"id":"n2138436014","loc":[-85.6172383,41.9525125]},"n2138439319":{"id":"n2138439319","loc":[-85.6170432,41.9524057]},"n2138439320":{"id":"n2138439320","loc":[-85.617691,41.9517107]},"n2138439321":{"id":"n2138439321","loc":[-85.6177727,41.9516794]},"n2138439322":{"id":"n2138439322","loc":[-85.619085,41.9516811]},"n2138439323":{"id":"n2138439323","loc":[-85.6179432,41.952895]},"n2138439324":{"id":"n2138439324","loc":[-85.6180389,41.9529384]},"n2138439325":{"id":"n2138439325","loc":[-85.6176303,41.9533604]},"n2138439326":{"id":"n2138439326","loc":[-85.6175538,41.9534396]},"n2138439327":{"id":"n2138439327","loc":[-85.6173806,41.9523658]},"n2138439328":{"id":"n2138439328","loc":[-85.6171841,41.9522542]},"n2138439329":{"id":"n2138439329","loc":[-85.6172077,41.9524958]},"n2138439330":{"id":"n2138439330","loc":[-85.6171235,41.9525809]},"n2138439331":{"id":"n2138439331","loc":[-85.6180938,41.9527349]},"n2138439332":{"id":"n2138439332","loc":[-85.6177023,41.9525253]},"n2138439333":{"id":"n2138439333","loc":[-85.6175543,41.9526865]},"n2138439334":{"id":"n2138439334","loc":[-85.6179589,41.9528783]},"n185948820":{"id":"n185948820","loc":[-85.6163249,41.952701]},"n185948822":{"id":"n185948822","loc":[-85.6163757,41.952855]},"n185955123":{"id":"n185955123","loc":[-85.6198103,41.9510408]},"n185958839":{"id":"n185958839","loc":[-85.611651,41.954761]},"n185965033":{"id":"n185965033","loc":[-85.614195,41.954754]},"n185976502":{"id":"n185976502","loc":[-85.617375,41.947559]},"n185976504":{"id":"n185976504","loc":[-85.6174164,41.9510804]},"n185978828":{"id":"n185978828","loc":[-85.613542,41.954756]},"n185978830":{"id":"n185978830","loc":[-85.610373,41.954774]},"n2138420713":{"id":"n2138420713","loc":[-85.6174641,41.9506942]},"n2138420717":{"id":"n2138420717","loc":[-85.6173027,41.9512895]},"n2138420768":{"id":"n2138420768","loc":[-85.61745,41.9501974]},"n2138420773":{"id":"n2138420773","loc":[-85.6174135,41.9489136]},"n2138425436":{"id":"n2138425436","loc":[-85.6159148,41.9538036]},"n2138425437":{"id":"n2138425437","loc":[-85.6159534,41.9539677]},"n2138425438":{"id":"n2138425438","loc":[-85.6160306,41.9540846]},"n2138425439":{"id":"n2138425439","loc":[-85.6161354,41.954181]},"n2138425440":{"id":"n2138425440","loc":[-85.6162733,41.954263]},"n2138425443":{"id":"n2138425443","loc":[-85.6183273,41.9510826]},"n2138425444":{"id":"n2138425444","loc":[-85.6181354,41.9510835]},"n2138425448":{"id":"n2138425448","loc":[-85.6185033,41.9510816]},"n2138425450":{"id":"n2138425450","loc":[-85.6186816,41.9510808]},"n2138425452":{"id":"n2138425452","loc":[-85.6188641,41.9510818]},"n2138435984":{"id":"n2138435984","loc":[-85.6167607,41.9501009]},"n2138436000":{"id":"n2138436000","loc":[-85.6173169,41.947558]},"n2138436001":{"id":"n2138436001","loc":[-85.6173362,41.948883]},"n2138436002":{"id":"n2138436002","loc":[-85.6167791,41.9492952]},"n2138436003":{"id":"n2138436003","loc":[-85.6167543,41.949349]},"n2138436004":{"id":"n2138436004","loc":[-85.6167648,41.9509125]},"n2138436005":{"id":"n2138436005","loc":[-85.6168832,41.9510412]},"n2138436006":{"id":"n2138436006","loc":[-85.6170045,41.9511417]},"n2138436007":{"id":"n2138436007","loc":[-85.6170624,41.9512483]},"n2138436017":{"id":"n2138436017","loc":[-85.6168094,41.9492729]},"n2138436021":{"id":"n2138436021","loc":[-85.6167553,41.9494886]},"n2138436023":{"id":"n2138436023","loc":[-85.6167585,41.9499707]},"n2138436025":{"id":"n2138436025","loc":[-85.6167567,41.9497018]},"w203838284":{"id":"w203838284","tags":{"area":"yes","leisure":"pitch","sport":"baseball"},"nodes":["n2138425424","n2138425425","n2138425426","n2138425427","n2138425428","n2138425429","n2138425430","n2138425431","n2138425432","n2138425424"]},"w203837928":{"id":"w203837928","tags":{"highway":"service"},"nodes":["n2138420717","n2138420718","n2138420719","n2138420720","n2138420721","n2138420722","n185948818","n2138420723","n2138420724","n2138420715"]},"w203839364":{"id":"w203839364","tags":{"highway":"footway"},"nodes":["n2138439331","n2138439332"]},"w203837932":{"id":"w203837932","tags":{"amenity":"parking","area":"yes"},"nodes":["n2138420744","n2138420745","n2138420746","n2138420747","n2138420748","n2138420749","n2138420750","n2138420751","n2138420744"]},"w203839362":{"id":"w203839362","tags":{"highway":"footway"},"nodes":["n2138439327","n2138439328"]},"w203839363":{"id":"w203839363","tags":{"highway":"footway"},"nodes":["n2138439329","n2138439330"]},"w203837933":{"id":"w203837933","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n185955128","n2138420760","n2138420753","n2138420764","n2138420759","n2138420758","n2138420754","n2138420755","n2138420766","n2138420756"]},"w203837936":{"id":"w203837936","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2138420765","n2138420766"]},"w17966364":{"id":"w17966364","tags":{"access":"private","highway":"service","name":"Collins Dr"},"nodes":["n185961362","n185976502","n2138420773","n2138420768","n2138420713","n185976504","n2138420717","n2138420714","n2138420715","n2138420727","n2138420728","n2138420716"]},"w203838040":{"id":"w203838040","tags":{"amenity":"school","area":"yes","building":"yes","name":"Three Rivers Middle School"},"nodes":["n2138422349","n2138422350","n2138422351","n2138422352","n2138422353","n2138422354","n2138422355","n2138422356","n2138422357","n2138439330","n2138422358","n2138422359","n2138422360","n2138436014","n2138439327","n2138422361","n2138422362","n2138422363","n2138422364","n2138422365","n2138422366","n2138422367","n2138422368","n2138422369","n2138422370","n2138422371","n2138422372","n2138422373","n2138422374","n2138422375","n2138422376","n2138439332","n2138439333","n2138422377","n2138422378","n2138422349"]},"w17964049":{"id":"w17964049","tags":{"highway":"service"},"nodes":["n185955120","n185955123","n2138420716","n185955128","n2138420762","n2138420752","n2138420761","n2138420759"]},"w41074899":{"id":"w41074899","tags":{"highway":"secondary","name":"E Hoffman St","ref":"M 60"},"nodes":["n185978817","n185978819","n185978821","n185965033","n185978828","n185958839","n185978830"]},"w203839365":{"id":"w203839365","tags":{"highway":"footway"},"nodes":["n2138439333","n2138439334"]},"w203837935":{"id":"w203837935","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2138420762","n2138420763","n2138420764"]},"w203838287":{"id":"w203838287","tags":{"area":"yes","leisure":"pitch","sport":"tennis"},"nodes":["n2138425446","n2138425447","n2138425448","n2138425443","n2138425446"]},"w203837934":{"id":"w203837934","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2138420760","n2138420763","n2138420761"]},"w203838289":{"id":"w203838289","tags":{"area":"yes","leisure":"pitch","sport":"tennis"},"nodes":["n2138425449","n2138425451","n2138425452","n2138425450","n2138425449"]},"w17963047":{"id":"w17963047","tags":{"highway":"service"},"nodes":["n185948818","n2138436013","n185948820","n185948822","n185948824","n2138439326","n2138420767","n2138420766"]},"w203839091":{"id":"w203839091","tags":{"highway":"footway"},"nodes":["n185976502","n2138436000","n2138436001","n2138436017","n2138436002","n2138436003","n2138436021","n2138436025","n2138436023","n2138435984","n2138436004","n2138436005","n2138436006","n2138436007","n2138436008","n2138436009","n2138436010","n2138436011","n2138436012","n2138436013","n2138439319","n2138439329","n2138436014"]},"w204830797":{"id":"w204830797","tags":{"highway":"service","service":"parking_aisle"},"nodes":["n2138420756","n2138420757","n2138420765","n2138420758"]},"w203838288":{"id":"w203838288","tags":{"area":"yes","leisure":"pitch","sport":"tennis"},"nodes":["n2138425447","n2138425449","n2138425450","n2138425448","n2138425447"]},"w203838285":{"id":"w203838285","tags":{"area":"yes","leisure":"pitch","sport":"baseball"},"nodes":["n2138425433","n2138425434","n2138425435","n2138425436","n2138425437","n2138425438","n2138425439","n2138425440","n2138425441","n2138425442","n2138425433"]},"w203838286":{"id":"w203838286","tags":{"area":"yes","leisure":"pitch","sport":"tennis"},"nodes":["n2138425443","n2138425444","n2138425445","n2138425446","n2138425443"]},"w203837929":{"id":"w203837929","tags":{"amenity":"parking","area":"yes"},"nodes":["n2138420725","n2138420726","n2138420727","n2138420728","n2138420725"]},"w203839361":{"id":"w203839361","tags":{"highway":"footway"},"nodes":["n2138439319","n2138439328","n2138439320","n2138439321","n2138439322","n2138439331","n2138439334","n2138439323","n2138439324","n2138439325","n2138439326"]},"n394381698":{"id":"n394381698","loc":[-85.614471,41.954755]},"n394381699":{"id":"n394381699","loc":[-85.6152,41.954744]},"n394381700":{"id":"n394381700","loc":[-85.615201,41.954081]},"n394381701":{"id":"n394381701","loc":[-85.614426,41.954042]},"n394381702":{"id":"n394381702","loc":[-85.616319,41.954749]},"n394381704":{"id":"n394381704","loc":[-85.616152,41.954752]},"n394381706":{"id":"n394381706","loc":[-85.615201,41.95483]},"n394490775":{"id":"n394490775","loc":[-85.613971,41.954839]},"n394490782":{"id":"n394490782","loc":[-85.614372,41.954841]},"n185958835":{"id":"n185958835","loc":[-85.611615,41.953704]},"n185958837":{"id":"n185958837","loc":[-85.611636,41.953938]},"n185958842":{"id":"n185958842","loc":[-85.611187,41.951686]},"n185958844":{"id":"n185958844","loc":[-85.611087,41.951741]},"n185958845":{"id":"n185958845","loc":[-85.611034,41.951852]},"n185958847":{"id":"n185958847","loc":[-85.611016,41.95196]},"n185958849":{"id":"n185958849","loc":[-85.610989,41.95328]},"n185958851":{"id":"n185958851","loc":[-85.611021,41.953484]},"n185958852":{"id":"n185958852","loc":[-85.611091,41.953603]},"n185958853":{"id":"n185958853","loc":[-85.6112,41.953661]},"n185958855":{"id":"n185958855","loc":[-85.611364,41.953686]},"n185965031":{"id":"n185965031","loc":[-85.614204,41.953696]},"n185965032":{"id":"n185965032","loc":[-85.6142,41.953978]},"n185965062":{"id":"n185965062","loc":[-85.614617,41.951639]},"n185965064":{"id":"n185965064","loc":[-85.61463,41.951852]},"n185965066":{"id":"n185965066","loc":[-85.614642,41.953436]},"n185965068":{"id":"n185965068","loc":[-85.6146,41.953551]},"n185965071":{"id":"n185965071","loc":[-85.614487,41.95363]},"n185965073":{"id":"n185965073","loc":[-85.614354,41.953672]},"n185966288":{"id":"n185966288","loc":[-85.61179,41.953695]},"n185966290":{"id":"n185966290","loc":[-85.612232,41.953685]},"n185966293":{"id":"n185966293","loc":[-85.613438,41.953677]},"n185966349":{"id":"n185966349","loc":[-85.611323,41.951653]},"n185966351":{"id":"n185966351","loc":[-85.611892,41.951642]},"n185966352":{"id":"n185966352","loc":[-85.612216,41.951641]},"n185966353":{"id":"n185966353","loc":[-85.613111,41.951639]},"n185966354":{"id":"n185966354","loc":[-85.613396,41.95164]},"n185966355":{"id":"n185966355","loc":[-85.614221,41.95164]},"n185973839":{"id":"n185973839","loc":[-85.61341,41.951919]},"n185973840":{"id":"n185973840","loc":[-85.613438,41.953308]},"n185980222":{"id":"n185980222","loc":[-85.613781,41.955164]},"n185980223":{"id":"n185980223","loc":[-85.613815,41.955237]},"n185980225":{"id":"n185980225","loc":[-85.613837,41.955316]},"n185990345":{"id":"n185990345","loc":[-85.612211,41.951977]},"n185955743":{"id":"n185955743","loc":[-85.613873,41.95635]},"n185980227":{"id":"n185980227","loc":[-85.613851,41.955415]},"n185980229":{"id":"n185980229","loc":[-85.613918,41.957134]},"n394381703":{"id":"n394381703","loc":[-85.616287,41.955674]},"n394381705":{"id":"n394381705","loc":[-85.615164,41.955676]},"n394490777":{"id":"n394490777","loc":[-85.613973,41.955979]},"n394490780":{"id":"n394490780","loc":[-85.614364,41.955987]},"w17965307":{"id":"w17965307","tags":{"highway":"residential","name":"Bates Ave"},"nodes":["n185958842","n185966349","n185966351","n185966352","n185966353","n185966354","n185966355","n185965062"]},"w17967957":{"id":"w17967957","tags":{"highway":"residential","name":"Krum Ave"},"nodes":["n185966352","n185990345","n185966290"]},"w17964508":{"id":"w17964508","tags":{"highway":"residential","name":"Blossom Dr"},"nodes":["n185958842","n185958844","n185958845","n185958847","n185958849","n185958851","n185958852","n185958853","n185958855","n185958835"]},"w17964507":{"id":"w17964507","tags":{"highway":"residential","name":"Blossom Dr"},"nodes":["n185958835","n185958837","n185958839"]},"w34367080":{"id":"w34367080","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394381699","n394381706","n394381705","n394381703","n394381702","n394381704","n394381699"]},"w17965302":{"id":"w17965302","tags":{"highway":"residential","name":"Clausen Ave"},"nodes":["n185958835","n185966288","n185966290","n185966293","n185965031"]},"w17965156":{"id":"w17965156","tags":{"highway":"residential","name":"Orchard Dr"},"nodes":["n185965062","n185965064","n185965066","n185965068","n185965071","n185965073","n185965031"]},"w34369812":{"id":"w34369812","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394490775","n394490777","n394490780","n394490782","n394490775"]},"w17965151":{"id":"w17965151","tags":{"highway":"residential","name":"Orchard Dr"},"nodes":["n185965031","n185965032","n185965033"]},"w17966756":{"id":"w17966756","tags":{"access":"private","highway":"service","name":"Lockport Dr"},"nodes":["n185978828","n185980222","n185980223","n185980225","n185980227","n185955743","n185980229"]},"w17966056":{"id":"w17966056","tags":{"highway":"residential","name":"Angell Ave"},"nodes":["n185966354","n185973839","n185973840","n185966293"]},"w34367079":{"id":"w34367079","tags":{"admin_level":"8","boundary":"administrative"},"nodes":["n394381700","n394381701","n394381698","n394381699","n394381700"]},"n185955744":{"id":"n185955744","loc":[-85.611753,41.956208]},"n185988932":{"id":"n185988932","loc":[-85.6159,41.956336]},"n185988934":{"id":"n185988934","loc":[-85.6159158,41.9590646]},"n185988935":{"id":"n185988935","loc":[-85.6157358,41.959364],"tags":{"highway":"turning_circle"}},"n2138447007":{"id":"n2138447007","loc":[-85.6130784,41.9590689]},"n2138447008":{"id":"n2138447008","loc":[-85.6133328,41.9593805]},"n2138447003":{"id":"n2138447003","loc":[-85.610238,41.9547745]},"n2138447004":{"id":"n2138447004","loc":[-85.6102652,41.9566041]},"n2138447005":{"id":"n2138447005","loc":[-85.610325,41.9568823]},"n2138447006":{"id":"n2138447006","loc":[-85.6105644,41.9571383]},"n2138447009":{"id":"n2138447009","loc":[-85.6135946,41.959948]},"n2138447010":{"id":"n2138447010","loc":[-85.6136071,41.9629372]},"n2138447011":{"id":"n2138447011","loc":[-85.6134392,41.9633182]},"n2138447012":{"id":"n2138447012","loc":[-85.6130151,41.9636073]},"n2138447013":{"id":"n2138447013","loc":[-85.6122729,41.9637125]},"n2138447014":{"id":"n2138447014","loc":[-85.6056682,41.963752]},"w17964174":{"id":"w17964174","tags":{"access":"private","highway":"service"},"nodes":["n185955743","n185955744"]},"w17967743":{"id":"w17967743","tags":{"access":"private","highway":"service","name":"Manistee River Rd"},"nodes":["n185971574","n185988932","n185971407","n185981301","n185967987","n185988934","n185988935"]},"w203839666":{"id":"w203839666","tags":{"highway":"residential","name":"Hov Aire Drive"},"nodes":["n2138447003","n2138447004","n2138447005","n2138447006","n2138447007","n2138447008","n2138447009","n2138447010","n2138447011","n2138447012","n2138447013","n2138447014"]}}} +{ + "dataIntroGraph": { + "n185954700": { + "id": "n185954700", + "loc": [-85.642244, 41.939081] + }, + "n185964961": { + "id": "n185964961", + "loc": [-85.6406588, 41.942601] + }, + "n185964962": { + "id": "n185964962", + "loc": [-85.6394548, 41.94261] + }, + "n185970607": { + "id": "n185970607", + "loc": [-85.641094, 41.94006] + }, + "n185970614": { + "id": "n185970614", + "loc": [-85.641825, 41.941316] + }, + "n185970616": { + "id": "n185970616", + "loc": [-85.641838, 41.941556] + }, + "n185973650": { + "id": "n185973650", + "loc": [-85.639918, 41.940064] + }, + "n185973660": { + "id": "n185973660", + "loc": [-85.640645, 41.941339] + }, + "n185973659": { + "id": "n185973659", + "loc": [-85.6406115, 41.9400658] + }, + "n185974479": { + "id": "n185974479", + "loc": [-85.639402, 41.941344] + }, + "n185974481": { + "id": "n185974481", + "loc": [-85.643071, 41.941288] + }, + "n185976259": { + "id": "n185976259", + "loc": [-85.642213, 41.940043] + }, + "n185976261": { + "id": "n185976261", + "loc": [-85.643056, 41.94001] + }, + "n185964959": { + "id": "n185964959", + "loc": [-85.6431031, 41.9425754] + }, + "n185964960": { + "id": "n185964960", + "loc": [-85.6418749, 41.9425864] + }, + "n185981481": { + "id": "n185981481", + "loc": [-85.6386827, 41.9400828] + }, + "n185981482": { + "id": "n185981482", + "loc": [-85.6393664, 41.9400854] + }, + "n2138493844": { + "id": "n2138493844", + "loc": [-85.6427969, 41.940522] + }, + "n2138493845": { + "id": "n2138493845", + "loc": [-85.6425891, 41.9405228] + }, + "n2138493846": { + "id": "n2138493846", + "loc": [-85.6425868, 41.9402875] + }, + "n2138493847": { + "id": "n2138493847", + "loc": [-85.6427969, 41.9402858] + }, + "n2138493848": { + "id": "n2138493848", + "loc": [-85.6425708, 41.9405234] + }, + "n2138493849": { + "id": "n2138493849", + "loc": [-85.642568, 41.9402855] + }, + "n2138493850": { + "id": "n2138493850", + "loc": [-85.6423157, 41.9402886] + }, + "n2138493851": { + "id": "n2138493851", + "loc": [-85.6423212, 41.9404362] + }, + "n2138493852": { + "id": "n2138493852", + "loc": [-85.6422923, 41.9404578] + }, + "n2138493853": { + "id": "n2138493853", + "loc": [-85.6422868, 41.9404834] + }, + "n2138493854": { + "id": "n2138493854", + "loc": [-85.6423226, 41.9405091] + }, + "n2138493855": { + "id": "n2138493855", + "loc": [-85.6423847, 41.9405111] + }, + "n2138493856": { + "id": "n2138493856", + "loc": [-85.6424081, 41.9405265] + }, + "n2140155811": { + "id": "n2140155811", + "loc": [-85.6419547, 41.9410956] + }, + "n2140155814": { + "id": "n2140155814", + "loc": [-85.6427577, 41.9410884] + }, + "n2140155816": { + "id": "n2140155816", + "loc": [-85.6427545, 41.9410052] + }, + "n2140155818": { + "id": "n2140155818", + "loc": [-85.6428057, 41.9410028] + }, + "n2140155821": { + "id": "n2140155821", + "loc": [-85.6427993, 41.9407339] + }, + "n2140155823": { + "id": "n2140155823", + "loc": [-85.6427385, 41.9407339] + }, + "n2140155825": { + "id": "n2140155825", + "loc": [-85.6427417, 41.9406435] + }, + "n2140155827": { + "id": "n2140155827", + "loc": [-85.6419515, 41.9406482] + }, + "n2140155828": { + "id": "n2140155828", + "loc": [-85.6429368, 41.9412407] + }, + "n2140155829": { + "id": "n2140155829", + "loc": [-85.6417756, 41.9412526] + }, + "n2140155830": { + "id": "n2140155830", + "loc": [-85.641766, 41.9405983] + }, + "n2140155831": { + "id": "n2140155831", + "loc": [-85.6419803, 41.9405983] + }, + "n2140155832": { + "id": "n2140155832", + "loc": [-85.6419611, 41.9401366] + }, + "n2140155833": { + "id": "n2140155833", + "loc": [-85.6429336, 41.94012] + }, + "n2140155834": { + "id": "n2140155834", + "loc": [-85.6430697, 41.9411732] + }, + "n2140155835": { + "id": "n2140155835", + "loc": [-85.6428411, 41.9409974] + }, + "n2140155837": { + "id": "n2140155837", + "loc": [-85.6428388, 41.9407211] + }, + "n2140155839": { + "id": "n2140155839", + "loc": [-85.6430624, 41.9405521] + }, + "n2140155840": { + "id": "n2140155840", + "loc": [-85.6427323, 41.9412396] + }, + "n2140155842": { + "id": "n2140155842", + "loc": [-85.6418147, 41.9412457] + }, + "n2140155844": { + "id": "n2140155844", + "loc": [-85.641813, 41.9411319] + }, + "n2140155845": { + "id": "n2140155845", + "loc": [-85.6418394, 41.9411111] + }, + "n2140155847": { + "id": "n2140155847", + "loc": [-85.6418838, 41.9410977] + }, + "n2140155849": { + "id": "n2140155849", + "loc": [-85.6427324, 41.9410921] + }, + "n2140155851": { + "id": "n2140155851", + "loc": [-85.6427798, 41.9412945] + }, + "n2140155852": { + "id": "n2140155852", + "loc": [-85.6427701, 41.9411777] + }, + "n2140155854": { + "id": "n2140155854", + "loc": [-85.6427323, 41.9411572] + }, + "n2140155856": { + "id": "n2140155856", + "loc": [-85.6418478, 41.9411666] + }, + "n2165942818": { + "id": "n2165942818", + "loc": [-85.6437533, 41.9415029] + }, + "n2165942819": { + "id": "n2165942819", + "loc": [-85.6437623, 41.9421195] + }, + "n2168510551": { + "id": "n2168510551", + "loc": [-85.6423795, 41.9422615] + }, + "n2168510552": { + "id": "n2168510552", + "loc": [-85.6423744, 41.9419439] + }, + "n2168510553": { + "id": "n2168510553", + "loc": [-85.642518, 41.9419427] + }, + "n2168510554": { + "id": "n2168510554", + "loc": [-85.6425186, 41.9419801] + }, + "n2168510555": { + "id": "n2168510555", + "loc": [-85.6428314, 41.9419773] + }, + "n2168510556": { + "id": "n2168510556", + "loc": [-85.6428368, 41.9423116] + }, + "n2168510557": { + "id": "n2168510557", + "loc": [-85.6424947, 41.9423146] + }, + "n2168510558": { + "id": "n2168510558", + "loc": [-85.6424938, 41.9422605] + }, + "n2189046007": { + "id": "n2189046007", + "loc": [-85.6410866, 41.9424327] + }, + "n2189046009": { + "id": "n2189046009", + "loc": [-85.6410805, 41.9420061] + }, + "n2189046011": { + "id": "n2189046011", + "loc": [-85.6412443, 41.9420048] + }, + "n2189046012": { + "id": "n2189046012", + "loc": [-85.6412505, 41.9424314] + }, + "n2189046014": { + "id": "n2189046014", + "loc": [-85.6413311, 41.942968] + }, + "n2189046016": { + "id": "n2189046016", + "loc": [-85.6413281, 41.942713] + }, + "n2189046018": { + "id": "n2189046018", + "loc": [-85.641521, 41.9427117] + }, + "n2189046021": { + "id": "n2189046021", + "loc": [-85.6415234, 41.9429236] + }, + "n2189046022": { + "id": "n2189046022", + "loc": [-85.6415045, 41.9429238] + }, + "n2189046025": { + "id": "n2189046025", + "loc": [-85.641505, 41.9429668] + }, + "n2189046053": { + "id": "n2189046053", + "loc": [-85.6385988, 41.942412] + }, + "n2189046054": { + "id": "n2189046054", + "loc": [-85.6385985, 41.9423311] + }, + "n2189046055": { + "id": "n2189046055", + "loc": [-85.6387617, 41.9423308] + }, + "n2189046056": { + "id": "n2189046056", + "loc": [-85.6387616, 41.9423026] + }, + "n2189046058": { + "id": "n2189046058", + "loc": [-85.6388215, 41.9423025] + }, + "n2189046059": { + "id": "n2189046059", + "loc": [-85.6388219, 41.9424115] + }, + "n2189046060": { + "id": "n2189046060", + "loc": [-85.6391096, 41.9424486] + }, + "n2189046061": { + "id": "n2189046061", + "loc": [-85.6391105, 41.9423673] + }, + "n2189046063": { + "id": "n2189046063", + "loc": [-85.6392911, 41.9423684] + }, + "n2189046065": { + "id": "n2189046065", + "loc": [-85.6392903, 41.9424497] + }, + "n2189046067": { + "id": "n2189046067", + "loc": [-85.6397927, 41.9423876] + }, + "n2189046069": { + "id": "n2189046069", + "loc": [-85.6397897, 41.9422981] + }, + "n2189046070": { + "id": "n2189046070", + "loc": [-85.6399702, 41.9422947] + }, + "n2189046072": { + "id": "n2189046072", + "loc": [-85.6399732, 41.9423843] + }, + "n2189046074": { + "id": "n2189046074", + "loc": [-85.6396331, 41.9430227] + }, + "n2189046075": { + "id": "n2189046075", + "loc": [-85.6398673, 41.9430189] + }, + "n2189046077": { + "id": "n2189046077", + "loc": [-85.6398656, 41.9429637] + }, + "n2189046079": { + "id": "n2189046079", + "loc": [-85.6398885, 41.9429633] + }, + "n2189046082": { + "id": "n2189046082", + "loc": [-85.6398832, 41.942779] + }, + "n2189046083": { + "id": "n2189046083", + "loc": [-85.6398513, 41.9427796] + }, + "n2189046085": { + "id": "n2189046085", + "loc": [-85.6398502, 41.9427401] + }, + "n2189046087": { + "id": "n2189046087", + "loc": [-85.6397889, 41.9427411] + }, + "n2189046089": { + "id": "n2189046089", + "loc": [-85.6397892, 41.942753] + }, + "n2189046090": { + "id": "n2189046090", + "loc": [-85.6396983, 41.9427544] + }, + "n2189046092": { + "id": "n2189046092", + "loc": [-85.6396993, 41.9427882] + }, + "n2189046094": { + "id": "n2189046094", + "loc": [-85.6396746, 41.9427886] + }, + "n2189046096": { + "id": "n2189046096", + "loc": [-85.6396758, 41.9428296] + }, + "n2189046097": { + "id": "n2189046097", + "loc": [-85.6397007, 41.9428292] + }, + "n2189046099": { + "id": "n2189046099", + "loc": [-85.6397018, 41.9428686] + }, + "n2189046103": { + "id": "n2189046103", + "loc": [-85.6396289, 41.9428697] + }, + "n2189046112": { + "id": "n2189046112", + "loc": [-85.6435683, 41.9429457] + }, + "n2189046113": { + "id": "n2189046113", + "loc": [-85.643568, 41.9427766] + }, + "n2189046115": { + "id": "n2189046115", + "loc": [-85.6434011, 41.9427767] + }, + "n2189046116": { + "id": "n2189046116", + "loc": [-85.6434012, 41.9428631] + }, + "n2189046117": { + "id": "n2189046117", + "loc": [-85.643448, 41.9428631] + }, + "n2189046118": { + "id": "n2189046118", + "loc": [-85.6434481, 41.9429457] + }, + "n2189046119": { + "id": "n2189046119", + "loc": [-85.6428363, 41.9429809] + }, + "n2189046120": { + "id": "n2189046120", + "loc": [-85.6429171, 41.9429791] + }, + "n2189046121": { + "id": "n2189046121", + "loc": [-85.642914, 41.9429041] + }, + "n2189046122": { + "id": "n2189046122", + "loc": [-85.6429385, 41.9429035] + }, + "n2189046123": { + "id": "n2189046123", + "loc": [-85.6429348, 41.9428126] + }, + "n2189046124": { + "id": "n2189046124", + "loc": [-85.6427746, 41.9428163] + }, + "n2189046125": { + "id": "n2189046125", + "loc": [-85.6427783, 41.942906] + }, + "n2189046126": { + "id": "n2189046126", + "loc": [-85.6428332, 41.9429047] + }, + "n2189046127": { + "id": "n2189046127", + "loc": [-85.6423018, 41.9428859] + }, + "n2189046128": { + "id": "n2189046128", + "loc": [-85.6422987, 41.9427208] + }, + "n2189046130": { + "id": "n2189046130", + "loc": [-85.6424218, 41.9427195] + }, + "n2189046131": { + "id": "n2189046131", + "loc": [-85.6424246, 41.9428684] + }, + "n2189046132": { + "id": "n2189046132", + "loc": [-85.6423845, 41.9428689] + }, + "n2189046133": { + "id": "n2189046133", + "loc": [-85.6423848, 41.942885] + }, + "n2189046134": { + "id": "n2189046134", + "loc": [-85.641533, 41.9429392] + }, + "n2189046135": { + "id": "n2189046135", + "loc": [-85.6416096, 41.9428768] + }, + "n2189046137": { + "id": "n2189046137", + "loc": [-85.6416763, 41.9429221] + }, + "n2189046138": { + "id": "n2189046138", + "loc": [-85.6415997, 41.9429845] + }, + "n2189046139": { + "id": "n2189046139", + "loc": [-85.6420598, 41.9428016] + }, + "n2189046140": { + "id": "n2189046140", + "loc": [-85.6420593, 41.9427415] + }, + "n2189046141": { + "id": "n2189046141", + "loc": [-85.6421957, 41.9427409] + }, + "n2189046142": { + "id": "n2189046142", + "loc": [-85.6421963, 41.9428182] + }, + "n2189046143": { + "id": "n2189046143", + "loc": [-85.6421281, 41.9428185] + }, + "n2189046144": { + "id": "n2189046144", + "loc": [-85.6421279, 41.9428013] + }, + "n2189046145": { + "id": "n2189046145", + "loc": [-85.6409429, 41.9429345] + }, + "n2189046146": { + "id": "n2189046146", + "loc": [-85.6410354, 41.9429334] + }, + "n2189046147": { + "id": "n2189046147", + "loc": [-85.6410325, 41.9427972] + }, + "n2189046148": { + "id": "n2189046148", + "loc": [-85.640997, 41.9427976] + }, + "n2189046149": { + "id": "n2189046149", + "loc": [-85.6409963, 41.9427643] + }, + "n2189046150": { + "id": "n2189046150", + "loc": [-85.6408605, 41.9427659] + }, + "n2189046152": { + "id": "n2189046152", + "loc": [-85.6408623, 41.9428482] + }, + "n2189046153": { + "id": "n2189046153", + "loc": [-85.640941, 41.9428473] + }, + "n2189152992": { + "id": "n2189152992", + "loc": [-85.6437661, 41.9422257] + }, + "n2189152993": { + "id": "n2189152993", + "loc": [-85.643768, 41.9424067] + }, + "n2189152994": { + "id": "n2189152994", + "loc": [-85.6432176, 41.9417705] + }, + "n2189152995": { + "id": "n2189152995", + "loc": [-85.6432097, 41.941327] + }, + "n2189152996": { + "id": "n2189152996", + "loc": [-85.6436493, 41.9413226] + }, + "n2189152997": { + "id": "n2189152997", + "loc": [-85.6436563, 41.9417164] + }, + "n2189152998": { + "id": "n2189152998", + "loc": [-85.6435796, 41.9417171] + }, + "n2189152999": { + "id": "n2189152999", + "loc": [-85.6435805, 41.9417669] + }, + "n2189153000": { + "id": "n2189153000", + "loc": [-85.6438202, 41.9414953] + }, + "n2189153001": { + "id": "n2189153001", + "loc": [-85.6438173, 41.9413175] + }, + "n2189153004": { + "id": "n2189153004", + "loc": [-85.6432535, 41.9418466] + }, + "n2189153005": { + "id": "n2189153005", + "loc": [-85.6433935, 41.9418599] + }, + "n2189153006": { + "id": "n2189153006", + "loc": [-85.6434831, 41.9418986] + }, + "n2189153007": { + "id": "n2189153007", + "loc": [-85.6435678, 41.9419774] + }, + "n2189153008": { + "id": "n2189153008", + "loc": [-85.6435987, 41.9420282] + }, + "n2189153009": { + "id": "n2189153009", + "loc": [-85.643438, 41.9419573] + }, + "n2189153010": { + "id": "n2189153010", + "loc": [-85.6435284, 41.9424676] + }, + "n2189153011": { + "id": "n2189153011", + "loc": [-85.6436207, 41.9423631] + }, + "n2189153012": { + "id": "n2189153012", + "loc": [-85.6434957, 41.9422973] + }, + "n2189153013": { + "id": "n2189153013", + "loc": [-85.6434457, 41.9422458] + }, + "n2189153014": { + "id": "n2189153014", + "loc": [-85.6433976, 41.9421772] + }, + "n2189153015": { + "id": "n2189153015", + "loc": [-85.6433861, 41.9420785] + }, + "n2189153016": { + "id": "n2189153016", + "loc": [-85.6433765, 41.9420313] + }, + "n2189153017": { + "id": "n2189153017", + "loc": [-85.6432207, 41.9420284] + }, + "n2189153018": { + "id": "n2189153018", + "loc": [-85.6432245, 41.9422759] + }, + "n2189153019": { + "id": "n2189153019", + "loc": [-85.6432649, 41.9423474] + }, + "n2189153020": { + "id": "n2189153020", + "loc": [-85.6433226, 41.9424132] + }, + "n2189153021": { + "id": "n2189153021", + "loc": [-85.6434111, 41.9424704] + }, + "n2189153022": { + "id": "n2189153022", + "loc": [-85.6434591, 41.9424347] + }, + "n2189153025": { + "id": "n2189153025", + "loc": [-85.6437669, 41.9423073] + }, + "n2189153026": { + "id": "n2189153026", + "loc": [-85.6436611, 41.942293] + }, + "n2189153027": { + "id": "n2189153027", + "loc": [-85.6435784, 41.9422473] + }, + "n2189153028": { + "id": "n2189153028", + "loc": [-85.6435245, 41.9421443] + }, + "n2189153029": { + "id": "n2189153029", + "loc": [-85.6435149, 41.9420613] + }, + "n2189153030": { + "id": "n2189153030", + "loc": [-85.6433528, 41.9419269] + }, + "n2189153031": { + "id": "n2189153031", + "loc": [-85.6432535, 41.9419191] + }, + "n2189153032": { + "id": "n2189153032", + "loc": [-85.6430868, 41.9419198] + }, + "n2189153033": { + "id": "n2189153033", + "loc": [-85.6434894, 41.9420033] + }, + "n2189153034": { + "id": "n2189153034", + "loc": [-85.6432974, 41.9419225] + }, + "n2189153035": { + "id": "n2189153035", + "loc": [-85.6433055, 41.9421632] + }, + "n2189153036": { + "id": "n2189153036", + "loc": [-85.6433538, 41.9422849] + }, + "n2189153037": { + "id": "n2189153037", + "loc": [-85.6434718, 41.9423887] + }, + "n2189153038": { + "id": "n2189153038", + "loc": [-85.6436134, 41.9422667] + }, + "n2189153040": { + "id": "n2189153040", + "loc": [-85.6438759, 41.9414017] + }, + "n2189153041": { + "id": "n2189153041", + "loc": [-85.6438181, 41.9413687] + }, + "n2189153042": { + "id": "n2189153042", + "loc": [-85.6436821, 41.9413044] + }, + "n2189153043": { + "id": "n2189153043", + "loc": [-85.6435899, 41.9412862] + }, + "n2189153044": { + "id": "n2189153044", + "loc": [-85.6433169, 41.9417268] + }, + "n2189153045": { + "id": "n2189153045", + "loc": [-85.643301, 41.9412859] + }, + "n2189153046": { + "id": "n2189153046", + "loc": [-85.6435531, 41.9416981] + }, + "n2189153047": { + "id": "n2189153047", + "loc": [-85.6435427, 41.9412863] + }, + "n185948706": { + "id": "n185948706", + "loc": [-85.6369439, 41.940122] + }, + "n185949348": { + "id": "n185949348", + "loc": [-85.640039, 41.931135] + }, + "n185949870": { + "id": "n185949870", + "loc": [-85.643195, 41.949261] + }, + "n185954680": { + "id": "n185954680", + "loc": [-85.6337802, 41.9401143] + }, + "n185954784": { + "id": "n185954784", + "loc": [-85.6487485, 41.942527] + }, + "n185958670": { + "id": "n185958670", + "loc": [-85.637255, 41.940104] + }, + "n185958672": { + "id": "n185958672", + "loc": [-85.636996, 41.941355] + }, + "n185960207": { + "id": "n185960207", + "loc": [-85.634992, 41.940118] + }, + "n185963163": { + "id": "n185963163", + "loc": [-85.638831, 41.93398] + }, + "n185963165": { + "id": "n185963165", + "loc": [-85.640073, 41.933968] + }, + "n185963167": { + "id": "n185963167", + "loc": [-85.641225, 41.933972] + }, + "n185963168": { + "id": "n185963168", + "loc": [-85.642386, 41.933952] + }, + "n185964695": { + "id": "n185964695", + "loc": [-85.6443608, 41.9425645] + }, + "n185964697": { + "id": "n185964697", + "loc": [-85.644384, 41.939941] + }, + "n185964963": { + "id": "n185964963", + "loc": [-85.6382347, 41.9426146] + }, + "n185964965": { + "id": "n185964965", + "loc": [-85.637022, 41.942622] + }, + "n185964967": { + "id": "n185964967", + "loc": [-85.6363706, 41.9426606] + }, + "n185964968": { + "id": "n185964968", + "loc": [-85.6357988, 41.9427748] + }, + "n185964969": { + "id": "n185964969", + "loc": [-85.6355409, 41.9428465] + }, + "n185964970": { + "id": "n185964970", + "loc": [-85.6348729, 41.9430443] + }, + "n185966958": { + "id": "n185966958", + "loc": [-85.641946, 41.946413] + }, + "n185966960": { + "id": "n185966960", + "loc": [-85.643148, 41.946389] + }, + "n185967774": { + "id": "n185967774", + "loc": [-85.641889, 41.943852] + }, + "n185967775": { + "id": "n185967775", + "loc": [-85.641922, 41.945121] + }, + "n185967776": { + "id": "n185967776", + "loc": [-85.641927, 41.947544] + }, + "n185967777": { + "id": "n185967777", + "loc": [-85.641982, 41.947622] + }, + "n185969289": { + "id": "n185969289", + "loc": [-85.63928, 41.929221] + }, + "n185969704": { + "id": "n185969704", + "loc": [-85.6388186, 41.9350099] + }, + "n185969706": { + "id": "n185969706", + "loc": [-85.6400709, 41.9349957] + }, + "n185969708": { + "id": "n185969708", + "loc": [-85.6412214, 41.9349827] + }, + "n185969710": { + "id": "n185969710", + "loc": [-85.6423509, 41.934974] + }, + "n185970602": { + "id": "n185970602", + "loc": [-85.641293, 41.931817] + }, + "n185970604": { + "id": "n185970604", + "loc": [-85.641258, 41.932705] + }, + "n185970605": { + "id": "n185970605", + "loc": [-85.641148, 41.936984] + }, + "n185970606": { + "id": "n185970606", + "loc": [-85.641112, 41.938169] + }, + "n185970906": { + "id": "n185970906", + "loc": [-85.639454, 41.943871] + }, + "n185970908": { + "id": "n185970908", + "loc": [-85.6394635, 41.9450504] + }, + "n185970909": { + "id": "n185970909", + "loc": [-85.6394914, 41.9451911] + }, + "n185971368": { + "id": "n185971368", + "loc": [-85.635769, 41.940122] + }, + "n185971978": { + "id": "n185971978", + "loc": [-85.640003, 41.936988] + }, + "n185971980": { + "id": "n185971980", + "loc": [-85.642299, 41.936988] + }, + "n185973633": { + "id": "n185973633", + "loc": [-85.639023, 41.92861] + }, + "n185973635": { + "id": "n185973635", + "loc": [-85.639153, 41.928969] + }, + "n185973637": { + "id": "n185973637", + "loc": [-85.639213, 41.929088] + }, + "n185973639": { + "id": "n185973639", + "loc": [-85.63935, 41.929396] + }, + "n185973641": { + "id": "n185973641", + "loc": [-85.640143, 41.931462] + }, + "n185973644": { + "id": "n185973644", + "loc": [-85.64019, 41.931788] + }, + "n185973646": { + "id": "n185973646", + "loc": [-85.6401365, 41.9327199] + }, + "n185973648": { + "id": "n185973648", + "loc": [-85.639983, 41.938174] + }, + "n185974477": { + "id": "n185974477", + "loc": [-85.638206, 41.941331] + }, + "n185975928": { + "id": "n185975928", + "loc": [-85.640683, 41.94513] + }, + "n185975930": { + "id": "n185975930", + "loc": [-85.643102, 41.945103] + }, + "n185976255": { + "id": "n185976255", + "loc": [-85.642424, 41.931817] + }, + "n185976257": { + "id": "n185976257", + "loc": [-85.64242, 41.932699] + }, + "n185976258": { + "id": "n185976258", + "loc": [-85.6422621, 41.9381489] + }, + "n185977452": { + "id": "n185977452", + "loc": [-85.6457497, 41.9398834] + }, + "n185978772": { + "id": "n185978772", + "loc": [-85.646656, 41.939869] + }, + "n185981472": { + "id": "n185981472", + "loc": [-85.6388962, 41.9321266] + }, + "n185981474": { + "id": "n185981474", + "loc": [-85.6388769, 41.9327334] + }, + "n185981476": { + "id": "n185981476", + "loc": [-85.638829, 41.934116] + }, + "n185981478": { + "id": "n185981478", + "loc": [-85.63876, 41.937002] + }, + "n185981480": { + "id": "n185981480", + "loc": [-85.638682, 41.93819] + }, + "n185981999": { + "id": "n185981999", + "loc": [-85.638194, 41.9400866] + }, + "n185982001": { + "id": "n185982001", + "loc": [-85.646302, 41.93988] + }, + "n185982877": { + "id": "n185982877", + "loc": [-85.640676, 41.943867] + }, + "n185982879": { + "id": "n185982879", + "loc": [-85.640734, 41.945887] + }, + "n185985823": { + "id": "n185985823", + "loc": [-85.643106, 41.943841] + }, + "n185985824": { + "id": "n185985824", + "loc": [-85.643145, 41.947641] + }, + "n185985825": { + "id": "n185985825", + "loc": [-85.643219, 41.950829] + }, + "n1475301385": { + "id": "n1475301385", + "loc": [-85.6360612, 41.9427042] + }, + "n1475301397": { + "id": "n1475301397", + "loc": [-85.6366651, 41.9426328] + }, + "n2139795811": { + "id": "n2139795811", + "loc": [-85.6469154, 41.9425427] + }, + "n2139795830": { + "id": "n2139795830", + "loc": [-85.6443194, 41.9399444] + }, + "n2139795834": { + "id": "n2139795834", + "loc": [-85.6453506, 41.9399002] + }, + "n2139795837": { + "id": "n2139795837", + "loc": [-85.645806, 41.9398831] + }, + "n2139858932": { + "id": "n2139858932", + "loc": [-85.6351721, 41.9429557] + }, + "n2140019000": { + "id": "n2140019000", + "loc": [-85.6359935, 41.9427224] + }, + "n2165942817": { + "id": "n2165942817", + "loc": [-85.6442017, 41.9414993] + }, + "n2165942820": { + "id": "n2165942820", + "loc": [-85.6442107, 41.9421159] + }, + "n2189152990": { + "id": "n2189152990", + "loc": [-85.6442328, 41.942404] + }, + "n2189152991": { + "id": "n2189152991", + "loc": [-85.6442309, 41.9422229] + }, + "n2189153002": { + "id": "n2189153002", + "loc": [-85.6441329, 41.9413147] + }, + "n2189153003": { + "id": "n2189153003", + "loc": [-85.6441357, 41.9414925] + }, + "n2189153023": { + "id": "n2189153023", + "loc": [-85.6443453, 41.9423074] + }, + "n2189153024": { + "id": "n2189153024", + "loc": [-85.6442318, 41.9423045] + }, + "n2189153039": { + "id": "n2189153039", + "loc": [-85.6441343, 41.9414025] + }, + "w208643102": { + "id": "w208643102", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153034", "n2189153035", "n2189153036", "n2189153037", "n2189153038"] + }, + "w17966942": { + "id": "w17966942", + "tags": { + "highway": "residential", + "name": "Millard Street" + }, + "nodes": [ + "n185954680", + "n185960207", + "n185971368", + "n185948706", + "n185958670", + "n185981999", + "n185981481", + "n185981482", + "n185973650", + "n185973659", + "n185970607", + "n185976259", + "n185976261", + "n2139795830", + "n185964697", + "n2139795834", + "n185977452", + "n2139795837", + "n185982001", + "n185978772" + ] + }, + "w208643105": { + "id": "w208643105", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153046", "n2189153047"] + }, + "w208631637": { + "id": "w208631637", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046014", "n2189046016", "n2189046018", "n2189046021", "n2189046022", "n2189046025", "n2189046014"] + }, + "w208643096": { + "id": "w208643096", + "tags": { + "amenity": "parking", + "area": "yes", + "fee": "no" + }, + "nodes": ["n2189152990", "n2189153024", "n2189152991", "n2189152992", "n2189153025", "n2189152993", "n2189152990"] + }, + "w208631656": { + "id": "w208631656", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046134", "n2189046135", "n2189046137", "n2189046138", "n2189046134"] + }, + "w204003417": { + "id": "w204003417", + "tags": { + "area": "yes", + "building": "school" + }, + "nodes": [ + "n2140155811", + "n2140155814", + "n2140155816", + "n2140155818", + "n2140155821", + "n2140155823", + "n2140155825", + "n2140155827", + "n2140155811" + ] + }, + "w208631654": { + "id": "w208631654", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046127", "n2189046128", "n2189046130", "n2189046131", "n2189046132", "n2189046133", "n2189046127"] + }, + "w17966327": { + "id": "w17966327", + "tags": { + "highway": "residential", + "name": "South Douglas Avenue" + }, + "nodes": ["n185976261", "n2140155839", "n2140155834", "n185974481", "n2189153032", "n185964959"] + }, + "w41785752": { + "id": "w41785752", + "tags": { + "highway": "primary", + "name": "West Michigan Avenue", + "old_ref": "US 131", + "ref": "US 131 Business;M 60", + "access": "yes" + }, + "nodes": [ + "n185954784", + "n2139795811", + "n185964695", + "n185964959", + "n185964960", + "n185964961", + "n185964962", + "n185964963", + "n185964965", + "n1475301397", + "n185964967", + "n1475301385", + "n2140019000", + "n185964968", + "n185964969", + "n2139858932", + "n185964970" + ] + }, + "w203841842": { + "id": "w203841842", + "tags": { + "area": "yes", + "leisure": "playground" + }, + "nodes": [ + "n2138493848", + "n2138493849", + "n2138493850", + "n2138493851", + "n2138493852", + "n2138493853", + "n2138493854", + "n2138493855", + "n2138493856", + "n2138493848" + ] + }, + "w208643103": { + "id": "w208643103", + "tags": { + "highway": "service" + }, + "nodes": ["n2189153039", "n2189153040", "n2189153041", "n2189153042", "n2189153043", "n2189153047", "n2189153045", "n185974481"] + }, + "w208643098": { + "id": "w208643098", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2189153000", "n2189153041", "n2189153001", "n2189153002", "n2189153039", "n2189153003", "n2189153000"] + }, + "w208631646": { + "id": "w208631646", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046067", "n2189046069", "n2189046070", "n2189046072", "n2189046067"] + }, + "w208631653": { + "id": "w208631653", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189046119", + "n2189046120", + "n2189046121", + "n2189046122", + "n2189046123", + "n2189046124", + "n2189046125", + "n2189046126", + "n2189046119" + ] + }, + "w17966041": { + "id": "w17966041", + "tags": { + "highway": "residential", + "name": "South Lincoln Avenue" + }, + "nodes": ["n185973659", "n185973660", "n185964961"] + }, + "w208631645": { + "id": "w208631645", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046060", "n2189046061", "n2189046063", "n2189046065", "n2189046060"] + }, + "w206803397": { + "id": "w206803397", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168510551", + "n2168510552", + "n2168510553", + "n2168510554", + "n2168510555", + "n2168510556", + "n2168510557", + "n2168510558", + "n2168510551" + ] + }, + "w17965792": { + "id": "w17965792", + "tags": { + "highway": "residential", + "name": "North Hook Avenue" + }, + "nodes": ["n185964962", "n185970906", "n185970908", "n185970909"] + }, + "w208631651": { + "id": "w208631651", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046112", "n2189046113", "n2189046115", "n2189046116", "n2189046117", "n2189046118", "n2189046112"] + }, + "w208631643": { + "id": "w208631643", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046053", "n2189046054", "n2189046055", "n2189046056", "n2189046058", "n2189046059", "n2189046053"] + }, + "w17966878": { + "id": "w17966878", + "tags": { + "highway": "residential", + "name": "South Hook Avenue" + }, + "nodes": ["n185981472", "n185981474", "n185963163", "n185981476", "n185969704", "n185981478", "n185981480", "n185981481"] + }, + "w17966102": { + "id": "w17966102", + "tags": { + "highway": "residential", + "name": "South Street" + }, + "nodes": ["n185958672", "n185974477", "n185974479", "n185973660", "n185970614"] + }, + "w208631660": { + "id": "w208631660", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189046145", + "n2189046146", + "n2189046147", + "n2189046148", + "n2189046149", + "n2189046150", + "n2189046152", + "n2189046153", + "n2189046145" + ] + }, + "w208643101": { + "id": "w208643101", + "tags": { + "highway": "service" + }, + "nodes": [ + "n2189153023", + "n2189153024", + "n2189153025", + "n2189153026", + "n2189153038", + "n2189153027", + "n2189153028", + "n2189153029", + "n2189153033", + "n2189153009", + "n2189153030", + "n2189153034", + "n2189153031", + "n2189153032" + ] + }, + "w204000205": { + "id": "w204000205", + "tags": { + "highway": "residential", + "name": "South Street", + "oneway": "yes" + }, + "nodes": ["n185974481", "n2140155851", "n185970614"] + }, + "w203841841": { + "id": "w203841841", + "tags": { + "area": "yes", + "leisure": "pitch", + "pitch": "basketball" + }, + "nodes": ["n2138493844", "n2138493845", "n2138493846", "n2138493847", "n2138493844"] + }, + "w17965444": { + "id": "w17965444", + "tags": { + "highway": "residential", + "name": "North Grant Avenue" + }, + "nodes": ["n185964960", "n185967774", "n185967775", "n185966958", "n185967776", "n185967777"] + }, + "w208631648": { + "id": "w208631648", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189046074", + "n2189046075", + "n2189046077", + "n2189046079", + "n2189046082", + "n2189046083", + "n2189046085", + "n2189046087", + "n2189046089", + "n2189046090", + "n2189046092", + "n2189046094", + "n2189046096", + "n2189046097", + "n2189046099", + "n2189046103", + "n2189046074" + ] + }, + "w208643100": { + "id": "w208643100", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2189153010", + "n2189153011", + "n2189153012", + "n2189153013", + "n2189153014", + "n2189153015", + "n2189153016", + "n2189153017", + "n2189153018", + "n2189153019", + "n2189153020", + "n2189153021", + "n2189153022", + "n2189153010" + ] + }, + "w17965749": { + "id": "w17965749", + "tags": { + "highway": "residential", + "name": "South Grant Avenue" + }, + "nodes": ["n185970614", "n185970616", "n185964960"] + }, + "w206574482": { + "id": "w206574482", + "tags": { + "amenity": "library", + "area": "yes", + "building": "yes", + "name": "Three Rivers Public Library" + }, + "nodes": ["n2165942817", "n2165942818", "n2165942819", "n2165942820", "n2165942817"] + }, + "w208643097": { + "id": "w208643097", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2189152994", "n2189152995", "n2189152996", "n2189152997", "n2189152998", "n2189152999", "n2189152994"] + }, + "w17966879": { + "id": "w17966879", + "tags": { + "highway": "residential", + "name": "South Hook Avenue" + }, + "nodes": ["n185981482", "n185974479", "n185964962"] + }, + "w17966325": { + "id": "w17966325", + "tags": { + "highway": "residential", + "name": "South Douglas Avenue" + }, + "nodes": ["n185976255", "n185976257", "n185963168", "n185969710", "n185971980", "n185976258", "n185954700", "n185976259"] + }, + "w17967390": { + "id": "w17967390", + "tags": { + "highway": "residential", + "name": "North Douglas Avenue" + }, + "nodes": ["n185964959", "n185985823", "n185975930", "n185966960", "n185985824", "n185949870", "n185985825"] + }, + "w208631635": { + "id": "w208631635", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046007", "n2189046009", "n2189046011", "n2189046012", "n2189046007"] + }, + "w208643099": { + "id": "w208643099", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2189153031", + "n2189153004", + "n2189153005", + "n2189153006", + "n2189153007", + "n2189153008", + "n2189153029", + "n2189153033", + "n2189153009", + "n2189153030", + "n2189153031" + ] + }, + "w208631658": { + "id": "w208631658", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189046139", "n2189046140", "n2189046141", "n2189046142", "n2189046143", "n2189046144", "n2189046139"] + }, + "w208643104": { + "id": "w208643104", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153044", "n2189153045"] + }, + "w17966039": { + "id": "w17966039", + "tags": { + "highway": "residential", + "name": "South Lincoln Avenue" + }, + "nodes": [ + "n185973633", + "n185973635", + "n185973637", + "n185969289", + "n185973639", + "n185949348", + "n185973641", + "n185973644", + "n185973646", + "n185963165", + "n185969706", + "n185971978", + "n185973648", + "n185973650" + ] + }, + "w204003420": { + "id": "w204003420", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2140155840", "n2140155842", "n2140155844", "n2140155845", "n2140155847", "n2140155849", "n2140155854", "n2140155840"] + }, + "w204003419": { + "id": "w204003419", + "tags": { + "highway": "service" + }, + "nodes": ["n2140155834", "n2140155835", "n2140155837", "n2140155839"] + }, + "w204003418": { + "id": "w204003418", + "tags": { + "amenity": "school", + "area": "yes", + "name": "Andrews Elementary School" + }, + "nodes": ["n2140155828", "n2140155829", "n2140155830", "n2140155831", "n2140155832", "n2140155833", "n2140155828"] + }, + "w17965747": { + "id": "w17965747", + "tags": { + "highway": "residential", + "name": "South Grant Avenue" + }, + "nodes": ["n185970602", "n185970604", "n185963167", "n185969708", "n185970605", "n185970606", "n185970607"] + }, + "w17967073": { + "id": "w17967073", + "tags": { + "highway": "residential", + "name": "North Lincoln Avenue" + }, + "nodes": ["n185964961", "n185982877", "n185975928", "n185982879"] + }, + "w204003421": { + "id": "w204003421", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2140155851", "n2140155852", "n2140155854", "n2140155856"] + }, + "r1943857": { + "id": "r1943857", + "tags": { + "modifier": "Business", + "name": "US 131 Business (Three Rivers, MI)", + "network": "US:US", + "ref": "131", + "route": "road", + "type": "route" + }, + "members": [ + { + "id": "w17966509", + "type": "way", + "role": "forward" + }, + { + "id": "w143497377", + "type": "way", + "role": "" + }, + { + "id": "w134150811", + "type": "way", + "role": "" + }, + { + "id": "w134150800", + "type": "way", + "role": "" + }, + { + "id": "w134150789", + "type": "way", + "role": "" + }, + { + "id": "w134150795", + "type": "way", + "role": "" + }, + { + "id": "w41785752", + "type": "way", + "role": "" + }, + { + "id": "w17965146", + "type": "way", + "role": "forward" + }, + { + "id": "w17964031", + "type": "way", + "role": "forward" + } + ] + }, + "r270277": { + "id": "r270277", + "tags": { + "network": "US:MI", + "ref": "60", + "route": "road", + "state_id": "MI", + "type": "route", + "url": "http://en.wikipedia.org/wiki/M-60_%28Michigan_highway%29" + }, + "members": [ + { + "id": "w17751087", + "type": "way", + "role": "east" + }, + { + "id": "w117148312", + "type": "way", + "role": "east" + }, + { + "id": "w40942155", + "type": "way", + "role": "west" + }, + { + "id": "w17751017", + "type": "way", + "role": "" + }, + { + "id": "w17751083", + "type": "way", + "role": "" + }, + { + "id": "w17747780", + "type": "way", + "role": "" + }, + { + "id": "w41068082", + "type": "way", + "role": "" + }, + { + "id": "w197025212", + "type": "way", + "role": "" + }, + { + "id": "w17743874", + "type": "way", + "role": "" + }, + { + "id": "w17751044", + "type": "way", + "role": "" + }, + { + "id": "w17752167", + "type": "way", + "role": "" + }, + { + "id": "w17751089", + "type": "way", + "role": "" + }, + { + "id": "w17743879", + "type": "way", + "role": "" + }, + { + "id": "w17751064", + "type": "way", + "role": "" + }, + { + "id": "w197057073", + "type": "way", + "role": "" + }, + { + "id": "w167699963", + "type": "way", + "role": "" + }, + { + "id": "w167699972", + "type": "way", + "role": "" + }, + { + "id": "w17967584", + "type": "way", + "role": "" + }, + { + "id": "w167699964", + "type": "way", + "role": "" + }, + { + "id": "w17967582", + "type": "way", + "role": "west" + }, + { + "id": "w41260270", + "type": "way", + "role": "west" + }, + { + "id": "w17965146", + "type": "way", + "role": "west" + }, + { + "id": "w41785752", + "type": "way", + "role": "" + }, + { + "id": "w134150795", + "type": "way", + "role": "" + }, + { + "id": "w134150789", + "type": "way", + "role": "" + }, + { + "id": "w134150800", + "type": "way", + "role": "" + }, + { + "id": "w134150811", + "type": "way", + "role": "" + }, + { + "id": "w134150836", + "type": "way", + "role": "" + }, + { + "id": "w134150802", + "type": "way", + "role": "" + }, + { + "id": "w41074896", + "type": "way", + "role": "" + }, + { + "id": "w17966773", + "type": "way", + "role": "" + }, + { + "id": "w17967415", + "type": "way", + "role": "" + }, + { + "id": "w41074899", + "type": "way", + "role": "" + }, + { + "id": "w17967581", + "type": "way", + "role": "" + }, + { + "id": "w41074902", + "type": "way", + "role": "" + }, + { + "id": "w41074906", + "type": "way", + "role": "" + }, + { + "id": "w209707997", + "type": "way", + "role": "" + }, + { + "id": "w209707998", + "type": "way", + "role": "" + }, + { + "id": "w17964798", + "type": "way", + "role": "" + }, + { + "id": "w17966034", + "type": "way", + "role": "" + }, + { + "id": "w17967593", + "type": "way", + "role": "" + }, + { + "id": "w41074888", + "type": "way", + "role": "" + }, + { + "id": "w17733772", + "type": "way", + "role": "" + }, + { + "id": "w41074813", + "type": "way", + "role": "" + }, + { + "id": "w17742213", + "type": "way", + "role": "" + }, + { + "id": "w17746863", + "type": "way", + "role": "" + }, + { + "id": "w17745772", + "type": "way", + "role": "" + }, + { + "id": "w17742222", + "type": "way", + "role": "" + }, + { + "id": "w17745922", + "type": "way", + "role": "" + }, + { + "id": "w17742198", + "type": "way", + "role": "" + }, + { + "id": "w17747675", + "type": "way", + "role": "" + }, + { + "id": "w17739927", + "type": "way", + "role": "" + }, + { + "id": "w17745708", + "type": "way", + "role": "" + }, + { + "id": "w41006323", + "type": "way", + "role": "" + }, + { + "id": "w17744233", + "type": "way", + "role": "" + }, + { + "id": "w17739436", + "type": "way", + "role": "" + }, + { + "id": "w17742201", + "type": "way", + "role": "" + }, + { + "id": "w151418616", + "type": "way", + "role": "" + }, + { + "id": "w17750062", + "type": "way", + "role": "" + }, + { + "id": "w17742227", + "type": "way", + "role": "east" + }, + { + "id": "w41006348", + "type": "way", + "role": "east" + }, + { + "id": "w41260984", + "type": "way", + "role": "" + }, + { + "id": "w17832427", + "type": "way", + "role": "" + }, + { + "id": "w17838408", + "type": "way", + "role": "" + }, + { + "id": "w17835846", + "type": "way", + "role": "" + }, + { + "id": "w17832923", + "type": "way", + "role": "" + }, + { + "id": "w17839388", + "type": "way", + "role": "" + }, + { + "id": "w17838390", + "type": "way", + "role": "" + }, + { + "id": "w17831272", + "type": "way", + "role": "" + }, + { + "id": "w17828581", + "type": "way", + "role": "" + }, + { + "id": "w38240686", + "type": "way", + "role": "" + }, + { + "id": "w17838405", + "type": "way", + "role": "east" + }, + { + "id": "w123323711", + "type": "way", + "role": "east" + }, + { + "id": "w17830167", + "type": "way", + "role": "east" + }, + { + "id": "w99011909", + "type": "way", + "role": "east" + }, + { + "id": "w41911361", + "type": "way", + "role": "east" + }, + { + "id": "w41911355", + "type": "way", + "role": "east" + }, + { + "id": "w41911356", + "type": "way", + "role": "east" + }, + { + "id": "w117148326", + "type": "way", + "role": "west" + }, + { + "id": "w41911352", + "type": "way", + "role": "west" + }, + { + "id": "w41911353", + "type": "way", + "role": "west" + }, + { + "id": "w41911354", + "type": "way", + "role": "west" + }, + { + "id": "w41911360", + "type": "way", + "role": "west" + }, + { + "id": "w38240676", + "type": "way", + "role": "west" + }, + { + "id": "w123323710", + "type": "way", + "role": "west" + }, + { + "id": "w41260271", + "type": "way", + "role": "east" + }, + { + "id": "w41260273", + "type": "way", + "role": "east" + }, + { + "id": "w17964031", + "type": "way", + "role": "east" + }, + { + "id": "w41006344", + "type": "way", + "role": "west" + }, + { + "id": "w41006351", + "type": "way", + "role": "west" + } + ] + }, + "n367813436": { + "id": "n367813436", + "loc": [-85.63605205663384, 41.94305506683346], + "tags": { + "amenity": "fire_station", + "name": "Three Rivers Fire Department" + } + }, + "n185948708": { + "id": "n185948708", + "loc": [-85.6369828, 41.9408789] + }, + "n185948710": { + "id": "n185948710", + "loc": [-85.6370184, 41.9411346] + }, + "n185954691": { + "id": "n185954691", + "loc": [-85.634476, 41.941475] + }, + "n185954692": { + "id": "n185954692", + "loc": [-85.635008, 41.941846] + }, + "n185954693": { + "id": "n185954693", + "loc": [-85.635362, 41.941962] + }, + "n185954695": { + "id": "n185954695", + "loc": [-85.63578, 41.941978] + }, + "n185972903": { + "id": "n185972903", + "loc": [-85.63295, 41.9430062] + }, + "n185964971": { + "id": "n185964971", + "loc": [-85.6346811, 41.9431023] + }, + "n1819805854": { + "id": "n1819805854", + "loc": [-85.6331275, 41.9404837] + }, + "n1819805918": { + "id": "n1819805918", + "loc": [-85.6331168, 41.942798] + }, + "n1819805762": { + "id": "n1819805762", + "loc": [-85.6333034, 41.9424123] + }, + "n1819805907": { + "id": "n1819805907", + "loc": [-85.6334819, 41.9419121] + }, + "n1819805915": { + "id": "n1819805915", + "loc": [-85.6334554, 41.9413588] + }, + "n1819848888": { + "id": "n1819848888", + "loc": [-85.6331625, 41.942679] + }, + "n1819848930": { + "id": "n1819848930", + "loc": [-85.6338684, 41.9431252] + }, + "n1819858505": { + "id": "n1819858505", + "loc": [-85.6346782, 41.9429092] + }, + "n1819858507": { + "id": "n1819858507", + "loc": [-85.6339003, 41.9414534] + }, + "n1819858508": { + "id": "n1819858508", + "loc": [-85.6345709, 41.9427742] + }, + "n1819858509": { + "id": "n1819858509", + "loc": [-85.63419, 41.9417322] + }, + "n1819858511": { + "id": "n1819858511", + "loc": [-85.6340666, 41.9415652] + }, + "n1819858512": { + "id": "n1819858512", + "loc": [-85.6343295, 41.9423027] + }, + "n1819858514": { + "id": "n1819858514", + "loc": [-85.6343241, 41.942207] + }, + "n1819858521": { + "id": "n1819858521", + "loc": [-85.633391, 41.941231] + }, + "n1819858528": { + "id": "n1819858528", + "loc": [-85.6343027, 41.9419716] + }, + "n185954683": { + "id": "n185954683", + "loc": [-85.6335412, 41.940147] + }, + "n185954685": { + "id": "n185954685", + "loc": [-85.6334296, 41.9403023] + }, + "n185954687": { + "id": "n185954687", + "loc": [-85.6333988, 41.9404704] + }, + "n185954689": { + "id": "n185954689", + "loc": [-85.6335511, 41.9410225] + }, + "n185954690": { + "id": "n185954690", + "loc": [-85.6336721, 41.9411669] + }, + "n1820938802": { + "id": "n1820938802", + "loc": [-85.6330671, 41.941845] + }, + "n1821006702": { + "id": "n1821006702", + "loc": [-85.6344047, 41.9395496] + }, + "n2130304133": { + "id": "n2130304133", + "loc": [-85.6349025, 41.9427659] + }, + "n2130304136": { + "id": "n2130304136", + "loc": [-85.6346027, 41.9422017] + }, + "n2130304138": { + "id": "n2130304138", + "loc": [-85.6348577, 41.9421517] + }, + "n2130304140": { + "id": "n2130304140", + "loc": [-85.6348419, 41.9422694] + }, + "n2130304142": { + "id": "n2130304142", + "loc": [-85.6349071, 41.9423135] + }, + "n2130304144": { + "id": "n2130304144", + "loc": [-85.6350495, 41.9423312] + }, + "n2130304146": { + "id": "n2130304146", + "loc": [-85.6351009, 41.9422812] + }, + "n2130304147": { + "id": "n2130304147", + "loc": [-85.6351227, 41.9421532] + }, + "n2130304148": { + "id": "n2130304148", + "loc": [-85.635526, 41.9421547] + }, + "n2130304149": { + "id": "n2130304149", + "loc": [-85.6355339, 41.9425768] + }, + "n2130304150": { + "id": "n2130304150", + "loc": [-85.6351582, 41.9426562] + }, + "n2130304151": { + "id": "n2130304151", + "loc": [-85.6351207, 41.9427032] + }, + "n2138493807": { + "id": "n2138493807", + "loc": [-85.6350923, 41.9415216] + }, + "n2138493808": { + "id": "n2138493808", + "loc": [-85.6353603, 41.9411061] + }, + "n2138493809": { + "id": "n2138493809", + "loc": [-85.6354421, 41.9410942] + }, + "n2138493810": { + "id": "n2138493810", + "loc": [-85.6355079, 41.9411044] + }, + "n2138493811": { + "id": "n2138493811", + "loc": [-85.6355693, 41.9411246] + }, + "n2138493812": { + "id": "n2138493812", + "loc": [-85.6355829, 41.9411061] + }, + "n2138493813": { + "id": "n2138493813", + "loc": [-85.6355624, 41.9409777] + }, + "n2138493814": { + "id": "n2138493814", + "loc": [-85.6355011, 41.9409152] + }, + "n2138493815": { + "id": "n2138493815", + "loc": [-85.635383, 41.9409219] + }, + "n2138493816": { + "id": "n2138493816", + "loc": [-85.635299, 41.9409658] + }, + "n2138493817": { + "id": "n2138493817", + "loc": [-85.6351695, 41.941204] + }, + "n2138493818": { + "id": "n2138493818", + "loc": [-85.6348879, 41.9415166] + }, + "n2138493819": { + "id": "n2138493819", + "loc": [-85.634897, 41.9415757] + }, + "n2138493820": { + "id": "n2138493820", + "loc": [-85.6349606, 41.9416399] + }, + "n2138493821": { + "id": "n2138493821", + "loc": [-85.6350219, 41.9416669] + }, + "n2138493822": { + "id": "n2138493822", + "loc": [-85.6351241, 41.9416314] + }, + "n2138493823": { + "id": "n2138493823", + "loc": [-85.6350855, 41.9415622] + }, + "n2138493824": { + "id": "n2138493824", + "loc": [-85.6350401, 41.9413603] + }, + "n2138493825": { + "id": "n2138493825", + "loc": [-85.6352206, 41.9410765] + }, + "n2138493826": { + "id": "n2138493826", + "loc": [-85.6343865, 41.9415594] + }, + "n2138493827": { + "id": "n2138493827", + "loc": [-85.6343506, 41.9415873] + }, + "n2138493828": { + "id": "n2138493828", + "loc": [-85.6344158, 41.9417557] + }, + "n2138493829": { + "id": "n2138493829", + "loc": [-85.6344614, 41.9417968] + }, + "n2138493830": { + "id": "n2138493830", + "loc": [-85.6345005, 41.9418186] + }, + "n2138493831": { + "id": "n2138493831", + "loc": [-85.6345965, 41.9418162] + }, + "n2138493832": { + "id": "n2138493832", + "loc": [-85.6347317, 41.9417242] + }, + "n2138493833": { + "id": "n2138493833", + "loc": [-85.6346722, 41.941775] + }, + "n2139858909": { + "id": "n2139858909", + "loc": [-85.633403, 41.9391006] + }, + "n2139858910": { + "id": "n2139858910", + "loc": [-85.6332973, 41.9393967] + }, + "n2139858911": { + "id": "n2139858911", + "loc": [-85.633205, 41.9396742] + }, + "n2139858912": { + "id": "n2139858912", + "loc": [-85.6332203, 41.9397772] + }, + "n2139858913": { + "id": "n2139858913", + "loc": [-85.6333453, 41.939936] + }, + "n2139858914": { + "id": "n2139858914", + "loc": [-85.6333761, 41.9400018] + }, + "n2139858915": { + "id": "n2139858915", + "loc": [-85.63328, 41.9402249] + }, + "n2139858916": { + "id": "n2139858916", + "loc": [-85.6332357, 41.9403523] + }, + "n2139858917": { + "id": "n2139858917", + "loc": [-85.6332838, 41.9405831] + }, + "n2139858918": { + "id": "n2139858918", + "loc": [-85.6333643, 41.9408744] + }, + "n2139858919": { + "id": "n2139858919", + "loc": [-85.6334394, 41.9410519] + }, + "n2139858920": { + "id": "n2139858920", + "loc": [-85.6335815, 41.9411717] + }, + "n2139858921": { + "id": "n2139858921", + "loc": [-85.6337478, 41.9412734] + }, + "n2139858922": { + "id": "n2139858922", + "loc": [-85.6343174, 41.9415268] + }, + "n2139858923": { + "id": "n2139858923", + "loc": [-85.6343886, 41.9417397] + }, + "n2139858924": { + "id": "n2139858924", + "loc": [-85.6344407, 41.9418015] + }, + "n2139858925": { + "id": "n2139858925", + "loc": [-85.6345139, 41.9418366] + }, + "n2139858926": { + "id": "n2139858926", + "loc": [-85.6344846, 41.942005] + }, + "n2139858927": { + "id": "n2139858927", + "loc": [-85.6345775, 41.9422218] + }, + "n2139858928": { + "id": "n2139858928", + "loc": [-85.6348771, 41.9427814] + }, + "n2139858929": { + "id": "n2139858929", + "loc": [-85.6349487, 41.9427995] + }, + "n2139858930": { + "id": "n2139858930", + "loc": [-85.6350415, 41.9427874] + }, + "n2139858931": { + "id": "n2139858931", + "loc": [-85.6351246, 41.9428589] + }, + "n2139858978": { + "id": "n2139858978", + "loc": [-85.6349658, 41.9431481] + }, + "n2139858979": { + "id": "n2139858979", + "loc": [-85.6350081, 41.9431287] + }, + "n2139858980": { + "id": "n2139858980", + "loc": [-85.6349967, 41.9430997] + }, + "n2139858981": { + "id": "n2139858981", + "loc": [-85.6352158, 41.9430352] + }, + "n2139858982": { + "id": "n2139858982", + "loc": [-85.6348174, 41.94267] + }, + "n2139858983": { + "id": "n2139858983", + "loc": [-85.6346142, 41.9425989] + }, + "n2139858984": { + "id": "n2139858984", + "loc": [-85.6344938, 41.9423809] + }, + "n2139858985": { + "id": "n2139858985", + "loc": [-85.6344856, 41.9422997] + }, + "n2139870380": { + "id": "n2139870380", + "loc": [-85.6346707, 41.9417955] + }, + "n2139870381": { + "id": "n2139870381", + "loc": [-85.6345949, 41.9418311] + }, + "n2139870382": { + "id": "n2139870382", + "loc": [-85.6343322, 41.9418659] + }, + "n2139870383": { + "id": "n2139870383", + "loc": [-85.6342072, 41.941885] + }, + "n2139870384": { + "id": "n2139870384", + "loc": [-85.6341325, 41.9418919] + }, + "n2139870385": { + "id": "n2139870385", + "loc": [-85.6341314, 41.9422028] + }, + "n2139870386": { + "id": "n2139870386", + "loc": [-85.6340472, 41.9423271] + }, + "n2139870387": { + "id": "n2139870387", + "loc": [-85.6342185, 41.9427933] + }, + "n2139870388": { + "id": "n2139870388", + "loc": [-85.6340605, 41.9423924] + }, + "n2139870389": { + "id": "n2139870389", + "loc": [-85.6339889, 41.9424069] + }, + "n2139870390": { + "id": "n2139870390", + "loc": [-85.633971, 41.942356] + }, + "n2139870391": { + "id": "n2139870391", + "loc": [-85.63361, 41.9424235] + }, + "n2139870392": { + "id": "n2139870392", + "loc": [-85.6337137, 41.9426819] + }, + "n2139870393": { + "id": "n2139870393", + "loc": [-85.6336977, 41.9428632] + }, + "n2139870394": { + "id": "n2139870394", + "loc": [-85.6338823, 41.9428647] + }, + "n2139870395": { + "id": "n2139870395", + "loc": [-85.6339412, 41.9430069] + }, + "n2139870396": { + "id": "n2139870396", + "loc": [-85.6338873, 41.9430353] + }, + "n2139870397": { + "id": "n2139870397", + "loc": [-85.6337676, 41.942815] + }, + "n2139870398": { + "id": "n2139870398", + "loc": [-85.6336822, 41.9423505] + }, + "n2139870399": { + "id": "n2139870399", + "loc": [-85.634037, 41.9422725] + }, + "n2139870400": { + "id": "n2139870400", + "loc": [-85.6340294, 41.9422518] + }, + "n2139870401": { + "id": "n2139870401", + "loc": [-85.6336726, 41.9423312] + }, + "n2139870402": { + "id": "n2139870402", + "loc": [-85.6342188, 41.9425715] + }, + "n2139870403": { + "id": "n2139870403", + "loc": [-85.6342524, 41.942565] + }, + "n2139870404": { + "id": "n2139870404", + "loc": [-85.6341438, 41.942299] + }, + "n2139870405": { + "id": "n2139870405", + "loc": [-85.6341149, 41.9423061] + }, + "n2139870407": { + "id": "n2139870407", + "loc": [-85.6340846, 41.9431458] + }, + "n2139870408": { + "id": "n2139870408", + "loc": [-85.6339436, 41.9429032] + }, + "n2139870409": { + "id": "n2139870409", + "loc": [-85.6343143, 41.9428207] + }, + "n2139870410": { + "id": "n2139870410", + "loc": [-85.6343507, 41.94277] + }, + "n2139870411": { + "id": "n2139870411", + "loc": [-85.6341527, 41.942254] + }, + "n2139870412": { + "id": "n2139870412", + "loc": [-85.6340925, 41.9422199] + }, + "n2139870413": { + "id": "n2139870413", + "loc": [-85.6335435, 41.9423433] + }, + "n2139870414": { + "id": "n2139870414", + "loc": [-85.6335023, 41.9423975] + }, + "n2139870415": { + "id": "n2139870415", + "loc": [-85.6335086, 41.9424552] + }, + "n2139870416": { + "id": "n2139870416", + "loc": [-85.6336296, 41.942665] + }, + "n2139870417": { + "id": "n2139870417", + "loc": [-85.6341396, 41.9428596] + }, + "n2139870418": { + "id": "n2139870418", + "loc": [-85.6339701, 41.9424487] + }, + "n2139870419": { + "id": "n2139870419", + "loc": [-85.6335514, 41.9425294] + }, + "n2139870420": { + "id": "n2139870420", + "loc": [-85.6337406, 41.9424929] + }, + "n2139870421": { + "id": "n2139870421", + "loc": [-85.6338939, 41.9428687] + }, + "n2139870422": { + "id": "n2139870422", + "loc": [-85.6341323, 41.9419538] + }, + "n2139870423": { + "id": "n2139870423", + "loc": [-85.6340321, 41.9420376] + }, + "n2139870424": { + "id": "n2139870424", + "loc": [-85.6337648, 41.942238] + }, + "n2139870425": { + "id": "n2139870425", + "loc": [-85.6337604, 41.9422685] + }, + "n2139870426": { + "id": "n2139870426", + "loc": [-85.6337682, 41.9422928] + }, + "n2139870427": { + "id": "n2139870427", + "loc": [-85.6338086, 41.9423862] + }, + "n2139870428": { + "id": "n2139870428", + "loc": [-85.6349465, 41.9416631] + }, + "n2139870429": { + "id": "n2139870429", + "loc": [-85.6351097, 41.9416973] + }, + "n2139870430": { + "id": "n2139870430", + "loc": [-85.6353371, 41.9416798] + }, + "n2139870431": { + "id": "n2139870431", + "loc": [-85.6349627, 41.9422506] + }, + "n2139870432": { + "id": "n2139870432", + "loc": [-85.634979, 41.9421815] + }, + "n2139870433": { + "id": "n2139870433", + "loc": [-85.634885, 41.9421679] + }, + "n2139870434": { + "id": "n2139870434", + "loc": [-85.6348689, 41.9422377] + }, + "n2139870435": { + "id": "n2139870435", + "loc": [-85.6349779, 41.9419486] + }, + "n2139870436": { + "id": "n2139870436", + "loc": [-85.6349505, 41.9418933] + }, + "n2139870437": { + "id": "n2139870437", + "loc": [-85.6347327, 41.9419505] + }, + "n2139870438": { + "id": "n2139870438", + "loc": [-85.6347614, 41.9420087] + }, + "n2139870439": { + "id": "n2139870439", + "loc": [-85.6351889, 41.9416912] + }, + "n2139870440": { + "id": "n2139870440", + "loc": [-85.6351092, 41.9418426] + }, + "n2139870441": { + "id": "n2139870441", + "loc": [-85.635086, 41.9419659] + }, + "n2139870442": { + "id": "n2139870442", + "loc": [-85.6350584, 41.9421466] + }, + "n2139870443": { + "id": "n2139870443", + "loc": [-85.6350993, 41.9421606] + }, + "n2139870444": { + "id": "n2139870444", + "loc": [-85.6350993, 41.9422132] + }, + "n2139870445": { + "id": "n2139870445", + "loc": [-85.6350794, 41.9422855] + }, + "n2139870446": { + "id": "n2139870446", + "loc": [-85.6350474, 41.9423159] + }, + "n2139870447": { + "id": "n2139870447", + "loc": [-85.6349251, 41.9422998] + }, + "n2139870448": { + "id": "n2139870448", + "loc": [-85.634911, 41.9422755] + }, + "n2139870449": { + "id": "n2139870449", + "loc": [-85.6349157, 41.9422553] + }, + "n2139870450": { + "id": "n2139870450", + "loc": [-85.6347213, 41.9419324] + }, + "n2139870451": { + "id": "n2139870451", + "loc": [-85.6349535, 41.9418771] + }, + "n2139870452": { + "id": "n2139870452", + "loc": [-85.6350135, 41.9419421] + }, + "n2139870453": { + "id": "n2139870453", + "loc": [-85.6348584, 41.9418997] + }, + "n2139870454": { + "id": "n2139870454", + "loc": [-85.6348113, 41.9418101] + }, + "n2139870455": { + "id": "n2139870455", + "loc": [-85.6347306, 41.9417449] + }, + "n2139870456": { + "id": "n2139870456", + "loc": [-85.6349123, 41.941776] + }, + "n2139870457": { + "id": "n2139870457", + "loc": [-85.6349423, 41.9421448] + }, + "n2139870458": { + "id": "n2139870458", + "loc": [-85.6349436, 41.9420652] + }, + "n2139870459": { + "id": "n2139870459", + "loc": [-85.6349136, 41.9419963] + }, + "n2139870460": { + "id": "n2139870460", + "loc": [-85.6349814, 41.9419789] + }, + "n2139989328": { + "id": "n2139989328", + "loc": [-85.6334188, 41.9421725] + }, + "n2139989330": { + "id": "n2139989330", + "loc": [-85.6335087, 41.9416308] + }, + "n2139989335": { + "id": "n2139989335", + "loc": [-85.6336856, 41.9429371] + }, + "n2139989337": { + "id": "n2139989337", + "loc": [-85.6333713, 41.9427217] + }, + "n2139989339": { + "id": "n2139989339", + "loc": [-85.6332912, 41.9425383] + }, + "n2139989341": { + "id": "n2139989341", + "loc": [-85.6339369, 41.9409198] + }, + "n2139989344": { + "id": "n2139989344", + "loc": [-85.634097, 41.9409469] + }, + "n2139989346": { + "id": "n2139989346", + "loc": [-85.634137, 41.9412852] + }, + "n2139989348": { + "id": "n2139989348", + "loc": [-85.6344536, 41.9414151] + }, + "n2139989350": { + "id": "n2139989350", + "loc": [-85.6350794, 41.9412392] + }, + "n2139989351": { + "id": "n2139989351", + "loc": [-85.6352541, 41.9409387] + }, + "n2139989353": { + "id": "n2139989353", + "loc": [-85.6357198, 41.9408007] + }, + "n2139989355": { + "id": "n2139989355", + "loc": [-85.6357235, 41.9427088] + }, + "n2139989357": { + "id": "n2139989357", + "loc": [-85.6337119, 41.9421256] + }, + "n2139989359": { + "id": "n2139989359", + "loc": [-85.6336913, 41.9420655] + }, + "n2139989360": { + "id": "n2139989360", + "loc": [-85.633582, 41.9420867] + }, + "n2139989362": { + "id": "n2139989362", + "loc": [-85.6336058, 41.9421491] + }, + "n2139989364": { + "id": "n2139989364", + "loc": [-85.6339685, 41.9410995] + }, + "n2139989366": { + "id": "n2139989366", + "loc": [-85.6339067, 41.9411383] + }, + "n2139989368": { + "id": "n2139989368", + "loc": [-85.6339685, 41.9411972] + }, + "n2139989370": { + "id": "n2139989370", + "loc": [-85.6340398, 41.9411619] + }, + "n2139870379": { + "id": "n2139870379", + "loc": [-85.6348391, 41.9416651] + }, + "n2140006363": { + "id": "n2140006363", + "loc": [-85.6353144, 41.9430345] + }, + "n2140006364": { + "id": "n2140006364", + "loc": [-85.6349191, 41.9431422] + }, + "n2140018997": { + "id": "n2140018997", + "loc": [-85.63645945147184, 41.942986488012565], + "tags": { + "amenity": "townhall", + "name": "Three Rivers City Hall" + } + }, + "n2140018998": { + "id": "n2140018998", + "loc": [-85.6370319, 41.9427919] + }, + "n2140018999": { + "id": "n2140018999", + "loc": [-85.6360687, 41.9427808] + }, + "n2199856288": { + "id": "n2199856288", + "loc": [-85.6344968, 41.9407307] + }, + "n2199856289": { + "id": "n2199856289", + "loc": [-85.634492, 41.9406036] + }, + "n2199856290": { + "id": "n2199856290", + "loc": [-85.634891, 41.9406001] + }, + "n2199856291": { + "id": "n2199856291", + "loc": [-85.6348894, 41.9405288] + }, + "n2199856292": { + "id": "n2199856292", + "loc": [-85.6349166, 41.94053] + }, + "n2199856293": { + "id": "n2199856293", + "loc": [-85.6349166, 41.9404956] + }, + "n2199856294": { + "id": "n2199856294", + "loc": [-85.6350219, 41.9404956] + }, + "n2199856295": { + "id": "n2199856295", + "loc": [-85.6350251, 41.94053] + }, + "n2199856296": { + "id": "n2199856296", + "loc": [-85.6350538, 41.9405288] + }, + "n2199856297": { + "id": "n2199856297", + "loc": [-85.6350602, 41.94079] + }, + "n2199856298": { + "id": "n2199856298", + "loc": [-85.6351703, 41.9407912] + }, + "n2199856299": { + "id": "n2199856299", + "loc": [-85.6351688, 41.9409171] + }, + "n2199856300": { + "id": "n2199856300", + "loc": [-85.6347889, 41.9409135] + }, + "n2199856301": { + "id": "n2199856301", + "loc": [-85.6347921, 41.94079] + }, + "n2199856302": { + "id": "n2199856302", + "loc": [-85.6348942, 41.9407888] + }, + "n2199856303": { + "id": "n2199856303", + "loc": [-85.6348926, 41.9407283] + }, + "n185951869": { + "id": "n185951869", + "loc": [-85.6387639, 41.957288] + }, + "n185958643": { + "id": "n185958643", + "loc": [-85.636746, 41.929221] + }, + "n185958645": { + "id": "n185958645", + "loc": [-85.636791, 41.929363] + }, + "n185958647": { + "id": "n185958647", + "loc": [-85.6375975, 41.9314987] + }, + "n185958649": { + "id": "n185958649", + "loc": [-85.637669, 41.931667] + }, + "n185958651": { + "id": "n185958651", + "loc": [-85.637728, 41.931901] + }, + "n185958653": { + "id": "n185958653", + "loc": [-85.637724, 41.932187] + }, + "n185958656": { + "id": "n185958656", + "loc": [-85.637732, 41.932761] + }, + "n185958658": { + "id": "n185958658", + "loc": [-85.637688, 41.93398] + }, + "n185958660": { + "id": "n185958660", + "loc": [-85.637685, 41.934223] + }, + "n185958662": { + "id": "n185958662", + "loc": [-85.6376468, 41.9350232] + }, + "n185958664": { + "id": "n185958664", + "loc": [-85.637564, 41.937028] + }, + "n185958666": { + "id": "n185958666", + "loc": [-85.637458, 41.938197] + }, + "n185958668": { + "id": "n185958668", + "loc": [-85.637424, 41.938692] + }, + "n185964972": { + "id": "n185964972", + "loc": [-85.6341901, 41.9432732] + }, + "n185971361": { + "id": "n185971361", + "loc": [-85.635762, 41.938208] + }, + "n185971364": { + "id": "n185971364", + "loc": [-85.635732, 41.9384] + }, + "n185971366": { + "id": "n185971366", + "loc": [-85.635736, 41.938697] + }, + "n185972775": { + "id": "n185972775", + "loc": [-85.635638, 42.070357] + }, + "n185972777": { + "id": "n185972777", + "loc": [-85.635724, 42.069929] + }, + "n185972779": { + "id": "n185972779", + "loc": [-85.635804, 42.069248] + }, + "n185972781": { + "id": "n185972781", + "loc": [-85.635869, 42.068361] + }, + "n185972783": { + "id": "n185972783", + "loc": [-85.635883, 42.067582] + }, + "n185972785": { + "id": "n185972785", + "loc": [-85.635875, 42.067114] + }, + "n185972787": { + "id": "n185972787", + "loc": [-85.635778, 42.065359] + }, + "n185972788": { + "id": "n185972788", + "loc": [-85.635728, 42.063416] + }, + "n185972789": { + "id": "n185972789", + "loc": [-85.635665, 42.062491] + }, + "n185972790": { + "id": "n185972790", + "loc": [-85.635617, 42.061928] + }, + "n185972791": { + "id": "n185972791", + "loc": [-85.635614, 42.061898] + }, + "n185972793": { + "id": "n185972793", + "loc": [-85.635379, 42.060288] + }, + "n185972795": { + "id": "n185972795", + "loc": [-85.635092, 42.05799] + }, + "n185972797": { + "id": "n185972797", + "loc": [-85.634843, 42.055781] + }, + "n185972798": { + "id": "n185972798", + "loc": [-85.634817, 42.055549] + }, + "n185972800": { + "id": "n185972800", + "loc": [-85.634708, 42.053942] + }, + "n185972802": { + "id": "n185972802", + "loc": [-85.634447, 42.051809] + }, + "n185972805": { + "id": "n185972805", + "loc": [-85.634241, 42.04946] + }, + "n185972807": { + "id": "n185972807", + "loc": [-85.633787, 42.045926] + }, + "n185972809": { + "id": "n185972809", + "loc": [-85.633811, 42.045645] + }, + "n185972811": { + "id": "n185972811", + "loc": [-85.63373, 42.043626] + }, + "n185972813": { + "id": "n185972813", + "loc": [-85.633698, 42.042184] + }, + "n185972814": { + "id": "n185972814", + "loc": [-85.63369, 42.04181] + }, + "n185972815": { + "id": "n185972815", + "loc": [-85.633681, 42.040714] + }, + "n185972816": { + "id": "n185972816", + "loc": [-85.633571, 42.036322] + }, + "n185972817": { + "id": "n185972817", + "loc": [-85.633537, 42.034044] + }, + "n185972819": { + "id": "n185972819", + "loc": [-85.633481, 42.030785] + }, + "n185972821": { + "id": "n185972821", + "loc": [-85.633452, 42.027538] + }, + "n185972824": { + "id": "n185972824", + "loc": [-85.633438, 42.027427] + }, + "n185972826": { + "id": "n185972826", + "loc": [-85.633342, 42.022656] + }, + "n185972830": { + "id": "n185972830", + "loc": [-85.63327, 42.020724] + }, + "n185972832": { + "id": "n185972832", + "loc": [-85.633198, 42.019106] + }, + "n185972834": { + "id": "n185972834", + "loc": [-85.633249, 42.018363] + }, + "n185972835": { + "id": "n185972835", + "loc": [-85.633139, 42.012944] + }, + "n185972836": { + "id": "n185972836", + "loc": [-85.63309, 42.008284] + }, + "n185972839": { + "id": "n185972839", + "loc": [-85.63298, 42.00005] + }, + "n185972845": { + "id": "n185972845", + "loc": [-85.6325369, 41.9764959] + }, + "n185972847": { + "id": "n185972847", + "loc": [-85.6327549, 41.9750005] + }, + "n185972849": { + "id": "n185972849", + "loc": [-85.6329374, 41.9742527] + }, + "n185972851": { + "id": "n185972851", + "loc": [-85.6331387, 41.9736039] + }, + "n185972862": { + "id": "n185972862", + "loc": [-85.6383589, 41.9585023] + }, + "n185972868": { + "id": "n185972868", + "loc": [-85.6393633, 41.9551716] + }, + "n185972878": { + "id": "n185972878", + "loc": [-85.639377, 41.95335] + }, + "n185972882": { + "id": "n185972882", + "loc": [-85.6389179, 41.9516944] + }, + "n185972885": { + "id": "n185972885", + "loc": [-85.6387444, 41.9512105] + }, + "n185972891": { + "id": "n185972891", + "loc": [-85.636421, 41.946392] + }, + "n185972895": { + "id": "n185972895", + "loc": [-85.635965, 41.945809] + }, + "n185972897": { + "id": "n185972897", + "loc": [-85.635683, 41.945449] + }, + "n185972899": { + "id": "n185972899", + "loc": [-85.635281, 41.9450252] + }, + "n185972905": { + "id": "n185972905", + "loc": [-85.6324428, 41.9425743] + }, + "n185985217": { + "id": "n185985217", + "loc": [-85.638243, 41.943674] + }, + "n185985219": { + "id": "n185985219", + "loc": [-85.638228, 41.943747] + }, + "n185985221": { + "id": "n185985221", + "loc": [-85.638163, 41.943797] + }, + "n185985222": { + "id": "n185985222", + "loc": [-85.638089, 41.943832] + }, + "n185985223": { + "id": "n185985223", + "loc": [-85.637969, 41.943841] + }, + "n185985225": { + "id": "n185985225", + "loc": [-85.637841, 41.943833] + }, + "n185985227": { + "id": "n185985227", + "loc": [-85.637601, 41.943789] + }, + "n185985229": { + "id": "n185985229", + "loc": [-85.637449, 41.943754] + }, + "n185985231": { + "id": "n185985231", + "loc": [-85.637342, 41.943734] + }, + "n185985233": { + "id": "n185985233", + "loc": [-85.637218, 41.943703] + }, + "n185985235": { + "id": "n185985235", + "loc": [-85.637151, 41.943663] + }, + "n185985238": { + "id": "n185985238", + "loc": [-85.637118, 41.943615] + }, + "n185985240": { + "id": "n185985240", + "loc": [-85.637073, 41.943494] + }, + "n185990434": { + "id": "n185990434", + "loc": [-85.6329028, 41.9984292], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284023": { + "id": "n1475284023", + "loc": [-85.6336163, 41.9435806], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293222": { + "id": "n1475293222", + "loc": [-85.6394045, 41.953658], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293226": { + "id": "n1475293226", + "loc": [-85.6364975, 41.9638663], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293234": { + "id": "n1475293234", + "loc": [-85.6390449, 41.9565145] + }, + "n1475293240": { + "id": "n1475293240", + "loc": [-85.636943, 41.9473114] + }, + "n1475293252": { + "id": "n1475293252", + "loc": [-85.6392115, 41.9559003] + }, + "n1475293254": { + "id": "n1475293254", + "loc": [-85.6348931, 41.9685127], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293260": { + "id": "n1475293260", + "loc": [-85.6375999, 41.9485401] + }, + "n1475293261": { + "id": "n1475293261", + "loc": [-85.6391256, 41.9523817], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293264": { + "id": "n1475293264", + "loc": [-85.6394155, 41.9546493], + "tags": { + "railway": "level_crossing" + } + }, + "n1819805614": { + "id": "n1819805614", + "loc": [-85.6345652, 41.9363097] + }, + "n1819805618": { + "id": "n1819805618", + "loc": [-85.6295334, 41.9426862] + }, + "n1819805622": { + "id": "n1819805622", + "loc": [-85.6308208, 41.9430773] + }, + "n1819805626": { + "id": "n1819805626", + "loc": [-85.6274734, 41.9406592] + }, + "n1819805629": { + "id": "n1819805629", + "loc": [-85.6296943, 41.9430533] + }, + "n1819805632": { + "id": "n1819805632", + "loc": [-85.6340931, 41.9354477] + }, + "n1819805636": { + "id": "n1819805636", + "loc": [-85.6304131, 41.9436598] + }, + "n1819805639": { + "id": "n1819805639", + "loc": [-85.6304882, 41.9426623] + }, + "n1819805641": { + "id": "n1819805641", + "loc": [-85.6336103, 41.9367487] + }, + "n1819805643": { + "id": "n1819805643", + "loc": [-85.6300376, 41.9418084] + }, + "n1819805645": { + "id": "n1819805645", + "loc": [-85.6365286, 41.9336679] + }, + "n1819805647": { + "id": "n1819805647", + "loc": [-85.632016, 41.9429221] + }, + "n1819805666": { + "id": "n1819805666", + "loc": [-85.6314753, 41.9442663] + }, + "n1819805669": { + "id": "n1819805669", + "loc": [-85.6268619, 41.9402203] + }, + "n1819805673": { + "id": "n1819805673", + "loc": [-85.6296728, 41.9412099] + }, + "n1819805676": { + "id": "n1819805676", + "loc": [-85.6354557, 41.932766] + }, + "n1819805680": { + "id": "n1819805680", + "loc": [-85.632752, 41.9431012] + }, + "n1819805683": { + "id": "n1819805683", + "loc": [-85.631147, 41.9432014] + }, + "n1819805687": { + "id": "n1819805687", + "loc": [-85.635284, 41.9343942] + }, + "n1819805690": { + "id": "n1819805690", + "loc": [-85.6249736, 41.9405794] + }, + "n1819805694": { + "id": "n1819805694", + "loc": [-85.6294153, 41.9417925] + }, + "n1819805698": { + "id": "n1819805698", + "loc": [-85.6323486, 41.9426986] + }, + "n1819805702": { + "id": "n1819805702", + "loc": [-85.6340287, 41.9373871] + }, + "n1819805707": { + "id": "n1819805707", + "loc": [-85.6353698, 41.9316326] + }, + "n1819805711": { + "id": "n1819805711", + "loc": [-85.6284176, 41.940356] + }, + "n1819805715": { + "id": "n1819805715", + "loc": [-85.6291471, 41.9412897] + }, + "n1819805718": { + "id": "n1819805718", + "loc": [-85.6311105, 41.943979] + }, + "n1819805722": { + "id": "n1819805722", + "loc": [-85.6320868, 41.9400128] + }, + "n1819805724": { + "id": "n1819805724", + "loc": [-85.635166, 41.9324627] + }, + "n1819805727": { + "id": "n1819805727", + "loc": [-85.6344686, 41.9350567] + }, + "n1819805728": { + "id": "n1819805728", + "loc": [-85.6357132, 41.9332369] + }, + "n1819805731": { + "id": "n1819805731", + "loc": [-85.629984, 41.9434444] + }, + "n1819805760": { + "id": "n1819805760", + "loc": [-85.6330996, 41.9378784] + }, + "n1819805766": { + "id": "n1819805766", + "loc": [-85.625274, 41.9411141] + }, + "n1819805770": { + "id": "n1819805770", + "loc": [-85.6326321, 41.9412173] + }, + "n1819805774": { + "id": "n1819805774", + "loc": [-85.6347047, 41.9312096] + }, + "n1819805777": { + "id": "n1819805777", + "loc": [-85.6363569, 41.9339552] + }, + "n1819805780": { + "id": "n1819805780", + "loc": [-85.6327392, 41.941926] + }, + "n1819805783": { + "id": "n1819805783", + "loc": [-85.6357239, 41.9338435] + }, + "n1819805786": { + "id": "n1819805786", + "loc": [-85.6356595, 41.9346576] + }, + "n1819805789": { + "id": "n1819805789", + "loc": [-85.6316469, 41.9436598] + }, + "n1819805792": { + "id": "n1819805792", + "loc": [-85.6350587, 41.9354557] + }, + "n1819805795": { + "id": "n1819805795", + "loc": [-85.6360028, 41.9322791] + }, + "n1819805798": { + "id": "n1819805798", + "loc": [-85.63125, 41.9443062] + }, + "n1819805802": { + "id": "n1819805802", + "loc": [-85.6263362, 41.9408109] + }, + "n1819805805": { + "id": "n1819805805", + "loc": [-85.6315075, 41.9438753] + }, + "n1819805808": { + "id": "n1819805808", + "loc": [-85.6340008, 41.9316051] + }, + "n1819805810": { + "id": "n1819805810", + "loc": [-85.6345545, 41.9320557] + }, + "n1819805812": { + "id": "n1819805812", + "loc": [-85.6250809, 41.9408587] + }, + "n1819805814": { + "id": "n1819805814", + "loc": [-85.6257783, 41.9400926] + }, + "n1819805834": { + "id": "n1819805834", + "loc": [-85.6326408, 41.9424363] + }, + "n1819805838": { + "id": "n1819805838", + "loc": [-85.6365607, 41.9334365] + }, + "n1819805842": { + "id": "n1819805842", + "loc": [-85.6288253, 41.9410343] + }, + "n1819805846": { + "id": "n1819805846", + "loc": [-85.6279133, 41.9402921] + }, + "n1819805849": { + "id": "n1819805849", + "loc": [-85.6289433, 41.9405156] + }, + "n1819805852": { + "id": "n1819805852", + "loc": [-85.6313787, 41.9439152] + }, + "n1819805858": { + "id": "n1819805858", + "loc": [-85.6300805, 41.9420398] + }, + "n1819805861": { + "id": "n1819805861", + "loc": [-85.6321941, 41.9396297] + }, + "n1819805864": { + "id": "n1819805864", + "loc": [-85.6329129, 41.9393903] + }, + "n1819805868": { + "id": "n1819805868", + "loc": [-85.632001, 41.9434922] + }, + "n1819805870": { + "id": "n1819805870", + "loc": [-85.6314903, 41.9431535] + }, + "n1819805873": { + "id": "n1819805873", + "loc": [-85.6251667, 41.9401166] + }, + "n1819805876": { + "id": "n1819805876", + "loc": [-85.63287, 41.939941] + }, + "n1819805878": { + "id": "n1819805878", + "loc": [-85.6307886, 41.9437317] + }, + "n1819805880": { + "id": "n1819805880", + "loc": [-85.6321727, 41.940348] + }, + "n1819805883": { + "id": "n1819805883", + "loc": [-85.6265872, 41.940113] + }, + "n1819805885": { + "id": "n1819805885", + "loc": [-85.6268404, 41.9406672] + }, + "n1819805887": { + "id": "n1819805887", + "loc": [-85.6325267, 41.9389035] + }, + "n1819805889": { + "id": "n1819805889", + "loc": [-85.6364964, 41.933189] + }, + "n1819805911": { + "id": "n1819805911", + "loc": [-85.6248663, 41.9401804] + }, + "n1819805922": { + "id": "n1819805922", + "loc": [-85.633267, 41.9387199] + }, + "n1819805925": { + "id": "n1819805925", + "loc": [-85.6293402, 41.9408428] + }, + "n1819848849": { + "id": "n1819848849", + "loc": [-85.6464957, 41.9695178] + }, + "n1819848850": { + "id": "n1819848850", + "loc": [-85.6497642, 41.9611355] + }, + "n1819848851": { + "id": "n1819848851", + "loc": [-85.6480943, 41.9624818] + }, + "n1819848854": { + "id": "n1819848854", + "loc": [-85.6500362, 41.9657367] + }, + "n1819848855": { + "id": "n1819848855", + "loc": [-85.6493673, 41.9783496] + }, + "n1819848856": { + "id": "n1819848856", + "loc": [-85.6457409, 41.9548007] + }, + "n1819848857": { + "id": "n1819848857", + "loc": [-85.651313, 41.9760426] + }, + "n1819848858": { + "id": "n1819848858", + "loc": [-85.6495819, 41.9784772] + }, + "n1819848859": { + "id": "n1819848859", + "loc": [-85.6495105, 41.9833722] + }, + "n1819848860": { + "id": "n1819848860", + "loc": [-85.6405053, 41.9492792] + }, + "n1819848863": { + "id": "n1819848863", + "loc": [-85.6502293, 41.9786826] + }, + "n1819848865": { + "id": "n1819848865", + "loc": [-85.6406877, 41.9495106] + }, + "n1819848870": { + "id": "n1819848870", + "loc": [-85.6493136, 41.9704611] + }, + "n1819848871": { + "id": "n1819848871", + "loc": [-85.6372249, 41.9441284] + }, + "n1819848873": { + "id": "n1819848873", + "loc": [-85.6512379, 41.9659441] + }, + "n1819848875": { + "id": "n1819848875", + "loc": [-85.6508087, 41.9650187] + }, + "n1819848877": { + "id": "n1819848877", + "loc": [-85.6487166, 41.9605352] + }, + "n1819848878": { + "id": "n1819848878", + "loc": [-85.6506478, 41.9760665] + }, + "n1819848879": { + "id": "n1819848879", + "loc": [-85.651431, 41.9758512] + }, + "n1819848886": { + "id": "n1819848886", + "loc": [-85.6477617, 41.9563945] + }, + "n1819848889": { + "id": "n1819848889", + "loc": [-85.6497895, 41.9832286] + }, + "n1819848892": { + "id": "n1819848892", + "loc": [-85.6504868, 41.9791931] + }, + "n1819848893": { + "id": "n1819848893", + "loc": [-85.6498002, 41.9615085] + }, + "n1819848894": { + "id": "n1819848894", + "loc": [-85.6404302, 41.9502846] + }, + "n1819848901": { + "id": "n1819848901", + "loc": [-85.6354412, 41.9439886] + }, + "n1819848903": { + "id": "n1819848903", + "loc": [-85.6472145, 41.9698528] + }, + "n1819848904": { + "id": "n1819848904", + "loc": [-85.6401979, 41.9486233] + }, + "n1819848905": { + "id": "n1819848905", + "loc": [-85.6475042, 41.963503] + }, + "n1819848909": { + "id": "n1819848909", + "loc": [-85.6343405, 41.94358] + }, + "n1819848914": { + "id": "n1819848914", + "loc": [-85.6503474, 41.9737773] + }, + "n1819848915": { + "id": "n1819848915", + "loc": [-85.6389533, 41.9470992] + }, + "n1819848916": { + "id": "n1819848916", + "loc": [-85.6483625, 41.9577907] + }, + "n1819848917": { + "id": "n1819848917", + "loc": [-85.6484768, 41.9617419] + }, + "n1819848918": { + "id": "n1819848918", + "loc": [-85.644078, 41.9545693] + }, + "n1819848919": { + "id": "n1819848919", + "loc": [-85.6437169, 41.9543041] + }, + "n1819848920": { + "id": "n1819848920", + "loc": [-85.6478331, 41.9627949] + }, + "n1819848922": { + "id": "n1819848922", + "loc": [-85.6499144, 41.9785889] + }, + "n1819848924": { + "id": "n1819848924", + "loc": [-85.647633, 41.9720066] + }, + "n1819848926": { + "id": "n1819848926", + "loc": [-85.6487987, 41.978868] + }, + "n1819848927": { + "id": "n1819848927", + "loc": [-85.6495105, 41.9730355] + }, + "n1819848928": { + "id": "n1819848928", + "loc": [-85.648223, 41.9829654] + }, + "n1819848929": { + "id": "n1819848929", + "loc": [-85.6514846, 41.9659122] + }, + "n1819848931": { + "id": "n1819848931", + "loc": [-85.6498753, 41.9731871] + }, + "n1819848932": { + "id": "n1819848932", + "loc": [-85.640906, 41.9508575] + }, + "n1819848933": { + "id": "n1819848933", + "loc": [-85.649775, 41.9799767] + }, + "n1819848934": { + "id": "n1819848934", + "loc": [-85.6507014, 41.9739927] + }, + "n1819848937": { + "id": "n1819848937", + "loc": [-85.6479763, 41.9840899] + }, + "n1819848938": { + "id": "n1819848938", + "loc": [-85.6501113, 41.9600884] + }, + "n1819848939": { + "id": "n1819848939", + "loc": [-85.6389962, 41.9478253] + }, + "n1819848941": { + "id": "n1819848941", + "loc": [-85.637469, 41.9445791] + }, + "n1819848942": { + "id": "n1819848942", + "loc": [-85.6494569, 41.9601682] + }, + "n1819848943": { + "id": "n1819848943", + "loc": [-85.6368803, 41.9439351] + }, + "n1819848945": { + "id": "n1819848945", + "loc": [-85.6474398, 41.9724213] + }, + "n1819848946": { + "id": "n1819848946", + "loc": [-85.6382629, 41.9463666] + }, + "n1819848948": { + "id": "n1819848948", + "loc": [-85.6489633, 41.9830771] + }, + "n1819848952": { + "id": "n1819848952", + "loc": [-85.6488882, 41.9600326] + }, + "n1819848953": { + "id": "n1819848953", + "loc": [-85.6488094, 41.9774324] + }, + "n1819848954": { + "id": "n1819848954", + "loc": [-85.6491135, 41.9600485] + }, + "n1819848955": { + "id": "n1819848955", + "loc": [-85.6501435, 41.9734583] + }, + "n1819848956": { + "id": "n1819848956", + "loc": [-85.6495534, 41.960958] + }, + "n1819848958": { + "id": "n1819848958", + "loc": [-85.6474683, 41.9561491] + }, + "n1819848959": { + "id": "n1819848959", + "loc": [-85.6401083, 41.9485451] + }, + "n1819848960": { + "id": "n1819848960", + "loc": [-85.6481764, 41.9678686] + }, + "n1819848961": { + "id": "n1819848961", + "loc": [-85.6484017, 41.967382] + }, + "n1819848962": { + "id": "n1819848962", + "loc": [-85.6501328, 41.959897] + }, + "n1819848964": { + "id": "n1819848964", + "loc": [-85.6403695, 41.9504586] + }, + "n1819848966": { + "id": "n1819848966", + "loc": [-85.6398975, 41.9491499] + }, + "n1819848967": { + "id": "n1819848967", + "loc": [-85.6412455, 41.9510187] + }, + "n1819848968": { + "id": "n1819848968", + "loc": [-85.6482622, 41.9619493] + }, + "n1819848969": { + "id": "n1819848969", + "loc": [-85.6405841, 41.9501474] + }, + "n1819848970": { + "id": "n1819848970", + "loc": [-85.6478583, 41.9703394] + }, + "n1819848971": { + "id": "n1819848971", + "loc": [-85.6493388, 41.9832845] + }, + "n1819848972": { + "id": "n1819848972", + "loc": [-85.6485664, 41.9829415] + }, + "n1819848974": { + "id": "n1819848974", + "loc": [-85.6491457, 41.9779887] + }, + "n1819848975": { + "id": "n1819848975", + "loc": [-85.6468889, 41.9697033] + }, + "n1819848976": { + "id": "n1819848976", + "loc": [-85.6452726, 41.9546072] + }, + "n1819848977": { + "id": "n1819848977", + "loc": [-85.6448435, 41.9546072] + }, + "n1819848979": { + "id": "n1819848979", + "loc": [-85.6485342, 41.9763138] + }, + "n1819848980": { + "id": "n1819848980", + "loc": [-85.6495282, 41.9664087] + }, + "n1819848986": { + "id": "n1819848986", + "loc": [-85.6486307, 41.9603278] + }, + "n1819848987": { + "id": "n1819848987", + "loc": [-85.6492278, 41.9791871] + }, + "n1819848990": { + "id": "n1819848990", + "loc": [-85.6501934, 41.9800724] + }, + "n1819848992": { + "id": "n1819848992", + "loc": [-85.6482445, 41.9819685] + }, + "n1819848993": { + "id": "n1819848993", + "loc": [-85.6481871, 41.9704451] + }, + "n1819848994": { + "id": "n1819848994", + "loc": [-85.6371364, 41.9457602] + }, + "n1819848996": { + "id": "n1819848996", + "loc": [-85.6500362, 41.9801023] + }, + "n1819849000": { + "id": "n1819849000", + "loc": [-85.639007, 41.9485914] + }, + "n1819849001": { + "id": "n1819849001", + "loc": [-85.6488882, 41.9669253] + }, + "n1819849002": { + "id": "n1819849002", + "loc": [-85.6484698, 41.9565062] + }, + "n1819849004": { + "id": "n1819849004", + "loc": [-85.6510769, 41.9761064] + }, + "n1819849005": { + "id": "n1819849005", + "loc": [-85.6503581, 41.9799029] + }, + "n1819849006": { + "id": "n1819849006", + "loc": [-85.6489381, 41.9703893] + }, + "n1819849008": { + "id": "n1819849008", + "loc": [-85.6497457, 41.9833588] + }, + "n1819849011": { + "id": "n1819849011", + "loc": [-85.6497358, 41.9717593] + }, + "n1819849012": { + "id": "n1819849012", + "loc": [-85.6494676, 41.9796796] + }, + "n1819849019": { + "id": "n1819849019", + "loc": [-85.6486093, 41.9771034] + }, + "n1819849021": { + "id": "n1819849021", + "loc": [-85.6504546, 41.9796556] + }, + "n1819849022": { + "id": "n1819849022", + "loc": [-85.6371294, 41.9454154] + }, + "n1819849023": { + "id": "n1819849023", + "loc": [-85.6503436, 41.9759249] + }, + "n1819849025": { + "id": "n1819849025", + "loc": [-85.6462382, 41.9693822] + }, + "n1819849026": { + "id": "n1819849026", + "loc": [-85.6497573, 41.983093] + }, + "n1819849028": { + "id": "n1819849028", + "loc": [-85.6497465, 41.9602799] + }, + "n1819849029": { + "id": "n1819849029", + "loc": [-85.6374728, 41.9460698] + }, + "n1819849030": { + "id": "n1819849030", + "loc": [-85.6486592, 41.9566039] + }, + "n1819849031": { + "id": "n1819849031", + "loc": [-85.6515989, 41.9654993] + }, + "n1819849032": { + "id": "n1819849032", + "loc": [-85.6387028, 41.9482658] + }, + "n1819849033": { + "id": "n1819849033", + "loc": [-85.6464742, 41.9688398] + }, + "n1819849034": { + "id": "n1819849034", + "loc": [-85.6495212, 41.9589236] + }, + "n1819849035": { + "id": "n1819849035", + "loc": [-85.6490599, 41.9790096] + }, + "n1819849036": { + "id": "n1819849036", + "loc": [-85.6489918, 41.9800724] + }, + "n1819849038": { + "id": "n1819849038", + "loc": [-85.6499182, 41.9659042] + }, + "n1819849040": { + "id": "n1819849040", + "loc": [-85.639758, 41.9490143] + }, + "n1819849041": { + "id": "n1819849041", + "loc": [-85.6514846, 41.9755241] + }, + "n1819849042": { + "id": "n1819849042", + "loc": [-85.6436633, 41.9540647] + }, + "n1819849045": { + "id": "n1819849045", + "loc": [-85.6475541, 41.9726387] + }, + "n1819849046": { + "id": "n1819849046", + "loc": [-85.6488308, 41.9718331] + }, + "n1819849047": { + "id": "n1819849047", + "loc": [-85.6377694, 41.9460953] + }, + "n1819849048": { + "id": "n1819849048", + "loc": [-85.6490706, 41.9804452] + }, + "n1819849049": { + "id": "n1819849049", + "loc": [-85.6485449, 41.9766248] + }, + "n1819849051": { + "id": "n1819849051", + "loc": [-85.6483625, 41.9790256] + }, + "n1819849052": { + "id": "n1819849052", + "loc": [-85.6490706, 41.9585167] + }, + "n1819849053": { + "id": "n1819849053", + "loc": [-85.6425008, 41.9522874] + }, + "n1819849054": { + "id": "n1819849054", + "loc": [-85.6475793, 41.9632158] + }, + "n1819849055": { + "id": "n1819849055", + "loc": [-85.6408631, 41.9499399] + }, + "n1819849056": { + "id": "n1819849056", + "loc": [-85.6483373, 41.9814681] + }, + "n1819849057": { + "id": "n1819849057", + "loc": [-85.6313548, 41.9442876] + }, + "n1819849058": { + "id": "n1819849058", + "loc": [-85.6432663, 41.9529796] + }, + "n1819849059": { + "id": "n1819849059", + "loc": [-85.6487128, 41.9582873] + }, + "n1819849060": { + "id": "n1819849060", + "loc": [-85.6482338, 41.9817612] + }, + "n1819849062": { + "id": "n1819849062", + "loc": [-85.6485664, 41.9788661] + }, + "n1819849063": { + "id": "n1819849063", + "loc": [-85.6373081, 41.9448824] + }, + "n1819849064": { + "id": "n1819849064", + "loc": [-85.6472215, 41.9557582] + }, + "n1819849065": { + "id": "n1819849065", + "loc": [-85.6348984, 41.9440414] + }, + "n1819849066": { + "id": "n1819849066", + "loc": [-85.6501972, 41.9647315] + }, + "n1819849067": { + "id": "n1819849067", + "loc": [-85.6489741, 41.9808281] + }, + "n1819849068": { + "id": "n1819849068", + "loc": [-85.6420111, 41.9515034] + }, + "n1819849069": { + "id": "n1819849069", + "loc": [-85.6397972, 41.9488882] + }, + "n1819849070": { + "id": "n1819849070", + "loc": [-85.6499718, 41.9593465] + }, + "n1819849071": { + "id": "n1819849071", + "loc": [-85.6486844, 41.9811311] + }, + "n1819849072": { + "id": "n1819849072", + "loc": [-85.6390392, 41.9474663] + }, + "n1819849074": { + "id": "n1819849074", + "loc": [-85.6495642, 41.9616362] + }, + "n1819849075": { + "id": "n1819849075", + "loc": [-85.6483518, 41.9791931] + }, + "n1819849076": { + "id": "n1819849076", + "loc": [-85.6478974, 41.9833104] + }, + "n1819849077": { + "id": "n1819849077", + "loc": [-85.640155, 41.948719] + }, + "n1819849078": { + "id": "n1819849078", + "loc": [-85.6399366, 41.9487845] + }, + "n1819849079": { + "id": "n1819849079", + "loc": [-85.6492959, 41.9825348] + }, + "n1819849080": { + "id": "n1819849080", + "loc": [-85.6505083, 41.9648352] + }, + "n1819849081": { + "id": "n1819849081", + "loc": [-85.6492959, 41.9645241] + }, + "n1819849082": { + "id": "n1819849082", + "loc": [-85.6402049, 41.9491835] + }, + "n1819849083": { + "id": "n1819849083", + "loc": [-85.6495175, 41.9826963] + }, + "n1819849084": { + "id": "n1819849084", + "loc": [-85.6480836, 41.9728361] + }, + "n1819849085": { + "id": "n1819849085", + "loc": [-85.6374349, 41.9443425] + }, + "n1819849086": { + "id": "n1819849086", + "loc": [-85.6478331, 41.9681238] + }, + "n1819849089": { + "id": "n1819849089", + "loc": [-85.639368, 41.9486169] + }, + "n1819849092": { + "id": "n1819849092", + "loc": [-85.6503581, 41.9788022] + }, + "n1819849093": { + "id": "n1819849093", + "loc": [-85.64862, 41.9568014] + }, + "n1819849094": { + "id": "n1819849094", + "loc": [-85.6496999, 41.9828877] + }, + "n1819849095": { + "id": "n1819849095", + "loc": [-85.647472, 41.972198] + }, + "n1819849096": { + "id": "n1819849096", + "loc": [-85.6485771, 41.9644523] + }, + "n1819849097": { + "id": "n1819849097", + "loc": [-85.6388353, 41.9480488] + }, + "n1819849099": { + "id": "n1819849099", + "loc": [-85.6472752, 41.9683312] + }, + "n1819849104": { + "id": "n1819849104", + "loc": [-85.6479548, 41.9836035] + }, + "n1819849105": { + "id": "n1819849105", + "loc": [-85.6462489, 41.9691668] + }, + "n1819849107": { + "id": "n1819849107", + "loc": [-85.6511912, 41.9746328] + }, + "n1819849108": { + "id": "n1819849108", + "loc": [-85.6498646, 41.9714881] + }, + "n1819849111": { + "id": "n1819849111", + "loc": [-85.6488239, 41.961684] + }, + "n1819849112": { + "id": "n1819849112", + "loc": [-85.6469356, 41.9553812] + }, + "n1819849114": { + "id": "n1819849114", + "loc": [-85.6479548, 41.9640853] + }, + "n1819849119": { + "id": "n1819849119", + "loc": [-85.6491565, 41.961692] + }, + "n1819849121": { + "id": "n1819849121", + "loc": [-85.651667, 41.9656728] + }, + "n1819849124": { + "id": "n1819849124", + "loc": [-85.6388423, 41.9484414] + }, + "n1819849126": { + "id": "n1819849126", + "loc": [-85.6371686, 41.9450978] + }, + "n1819849127": { + "id": "n1819849127", + "loc": [-85.6502615, 41.9656728] + }, + "n1819849129": { + "id": "n1819849129", + "loc": [-85.6498501, 41.9613031] + }, + "n1819849131": { + "id": "n1819849131", + "loc": [-85.6513881, 41.9653298] + }, + "n1819849133": { + "id": "n1819849133", + "loc": [-85.639883, 41.9485291] + }, + "n1819849139": { + "id": "n1819849139", + "loc": [-85.6508693, 41.9658264] + }, + "n1819849140": { + "id": "n1819849140", + "loc": [-85.6486806, 41.9761642] + }, + "n1819849141": { + "id": "n1819849141", + "loc": [-85.6483159, 41.9717613] + }, + "n1819849144": { + "id": "n1819849144", + "loc": [-85.6443714, 41.9546232] + }, + "n1819849146": { + "id": "n1819849146", + "loc": [-85.641775, 41.9513359] + }, + "n1819849147": { + "id": "n1819849147", + "loc": [-85.6495604, 41.9757335] + }, + "n1819849148": { + "id": "n1819849148", + "loc": [-85.6465671, 41.9551678] + }, + "n1819849150": { + "id": "n1819849150", + "loc": [-85.6485127, 41.9794084] + }, + "n1819849151": { + "id": "n1819849151", + "loc": [-85.6499144, 41.9757096] + }, + "n1819849152": { + "id": "n1819849152", + "loc": [-85.6433736, 41.9531072] + }, + "n1819849154": { + "id": "n1819849154", + "loc": [-85.6489741, 41.9607426] + }, + "n1819849155": { + "id": "n1819849155", + "loc": [-85.640627, 41.9507697] + }, + "n1819849156": { + "id": "n1819849156", + "loc": [-85.6509659, 41.9743058] + }, + "n1819849157": { + "id": "n1819849157", + "loc": [-85.6486844, 41.9704431] + }, + "n1819849158": { + "id": "n1819849158", + "loc": [-85.6498538, 41.9711132] + }, + "n1819849159": { + "id": "n1819849159", + "loc": [-85.6358937, 41.943719] + }, + "n1819849160": { + "id": "n1819849160", + "loc": [-85.6497358, 41.9707702] + }, + "n1819849161": { + "id": "n1819849161", + "loc": [-85.6480476, 41.9564842] + }, + "n1819849162": { + "id": "n1819849162", + "loc": [-85.6482982, 41.9574556] + }, + "n1819849163": { + "id": "n1819849163", + "loc": [-85.6501757, 41.9757794] + }, + "n1819849164": { + "id": "n1819849164", + "loc": [-85.6372973, 41.9459916] + }, + "n1819849165": { + "id": "n1819849165", + "loc": [-85.6513773, 41.9750775] + }, + "n1819849166": { + "id": "n1819849166", + "loc": [-85.6436418, 41.9537455] + }, + "n1819849167": { + "id": "n1819849167", + "loc": [-85.6483625, 41.9571524] + }, + "n1819849169": { + "id": "n1819849169", + "loc": [-85.647751, 41.9727962] + }, + "n1819849170": { + "id": "n1819849170", + "loc": [-85.6504546, 41.9656808] + }, + "n1819849171": { + "id": "n1819849171", + "loc": [-85.6479977, 41.971839] + }, + "n1819849172": { + "id": "n1819849172", + "loc": [-85.6482767, 41.9642449] + }, + "n1819849174": { + "id": "n1819849174", + "loc": [-85.6414317, 41.9512086] + }, + "n1819849176": { + "id": "n1819849176", + "loc": [-85.6469034, 41.9685287] + }, + "n1819849179": { + "id": "n1819849179", + "loc": [-85.6408631, 41.9497564] + }, + "n1819849182": { + "id": "n1819849182", + "loc": [-85.6476721, 41.96384] + }, + "n1819849183": { + "id": "n1819849183", + "loc": [-85.6479725, 41.983111] + }, + "n1819849184": { + "id": "n1819849184", + "loc": [-85.640788, 41.9500516] + }, + "n1819849185": { + "id": "n1819849185", + "loc": [-85.6427798, 41.9528778] + }, + "n1819849186": { + "id": "n1819849186", + "loc": [-85.6435308, 41.9534124] + }, + "n1819849187": { + "id": "n1819849187", + "loc": [-85.6483733, 41.9821998] + }, + "n1819849189": { + "id": "n1819849189", + "loc": [-85.6351752, 41.9440796] + }, + "n1819849191": { + "id": "n1819849191", + "loc": [-85.6487021, 41.9601463] + }, + "n1819849192": { + "id": "n1819849192", + "loc": [-85.6363811, 41.9437605] + }, + "n1819849193": { + "id": "n1819849193", + "loc": [-85.6490883, 41.9759728] + }, + "n1819849194": { + "id": "n1819849194", + "loc": [-85.6423292, 41.9520081] + }, + "n1819849195": { + "id": "n1819849195", + "loc": [-85.6500003, 41.960242] + }, + "n1819849196": { + "id": "n1819849196", + "loc": [-85.6385778, 41.9466443] + }, + "n1819849197": { + "id": "n1819849197", + "loc": [-85.6494032, 41.9718789] + }, + "n1819849198": { + "id": "n1819849198", + "loc": [-85.6404339, 41.9506501] + }, + "n1819849199": { + "id": "n1819849199", + "loc": [-85.6426226, 41.9527083] + }, + "n1819849200": { + "id": "n1819849200", + "loc": [-85.6439101, 41.9545035] + }, + "n1819849201": { + "id": "n1819849201", + "loc": [-85.6516563, 41.9657845] + }, + "n1819849202": { + "id": "n1819849202", + "loc": [-85.6473395, 41.9699585] + }, + "n1819858501": { + "id": "n1819858501", + "loc": [-85.6361263, 41.9437126] + }, + "n1819858503": { + "id": "n1819858503", + "loc": [-85.6350068, 41.944034] + }, + "n1819858513": { + "id": "n1819858513", + "loc": [-85.6371402, 41.9453282] + }, + "n1819858518": { + "id": "n1819858518", + "loc": [-85.6348713, 41.9432923] + }, + "n1819858523": { + "id": "n1819858523", + "loc": [-85.6357047, 41.943799] + }, + "n1819858526": { + "id": "n1819858526", + "loc": [-85.6349947, 41.9435756] + }, + "n1819858531": { + "id": "n1819858531", + "loc": [-85.6350376, 41.943827] + }, + "n1820937508": { + "id": "n1820937508", + "loc": [-85.1026013, 42.0881722] + }, + "n1820937509": { + "id": "n1820937509", + "loc": [-85.0558088, 42.102493] + }, + "n1820937511": { + "id": "n1820937511", + "loc": [-85.3030116, 41.9724451] + }, + "n1820937513": { + "id": "n1820937513", + "loc": [-85.0353221, 42.1027398] + }, + "n1820937514": { + "id": "n1820937514", + "loc": [-85.0835468, 42.1015469] + }, + "n1820937515": { + "id": "n1820937515", + "loc": [-85.2421298, 42.0106305] + }, + "n1820937517": { + "id": "n1820937517", + "loc": [-85.0090632, 42.0910452] + }, + "n1820937518": { + "id": "n1820937518", + "loc": [-85.086626, 42.0948838] + }, + "n1820937520": { + "id": "n1820937520", + "loc": [-85.2552039, 42.0015448] + }, + "n1820937521": { + "id": "n1820937521", + "loc": [-85.3739614, 41.9969917] + }, + "n1820937522": { + "id": "n1820937522", + "loc": [-85.4831166, 41.993898] + }, + "n1820937523": { + "id": "n1820937523", + "loc": [-85.0341084, 42.0977657] + }, + "n1820937524": { + "id": "n1820937524", + "loc": [-85.3272802, 41.9710333] + }, + "n1820937525": { + "id": "n1820937525", + "loc": [-85.2125568, 42.0414521] + }, + "n1820937526": { + "id": "n1820937526", + "loc": [-85.3798022, 41.9992458] + }, + "n1820937527": { + "id": "n1820937527", + "loc": [-85.2652021, 41.999768] + }, + "n1820937528": { + "id": "n1820937528", + "loc": [-85.3852739, 42.0004896] + }, + "n1820937529": { + "id": "n1820937529", + "loc": [-85.3911919, 42.0030513] + }, + "n1820937530": { + "id": "n1820937530", + "loc": [-85.5440349, 41.9717109] + }, + "n1820937531": { + "id": "n1820937531", + "loc": [-85.2790155, 41.9911764] + }, + "n1820937532": { + "id": "n1820937532", + "loc": [-85.4723277, 41.9950518] + }, + "n1820937533": { + "id": "n1820937533", + "loc": [-85.5690546, 41.9653931] + }, + "n1820937535": { + "id": "n1820937535", + "loc": [-85.5674882, 41.9649623] + }, + "n1820937536": { + "id": "n1820937536", + "loc": [-85.6362815, 41.9189165] + }, + "n1820937537": { + "id": "n1820937537", + "loc": [-85.5659003, 41.963638] + }, + "n1820937539": { + "id": "n1820937539", + "loc": [-85.6391353, 41.9122262] + }, + "n1820937540": { + "id": "n1820937540", + "loc": [-85.4834385, 41.9894803] + }, + "n1820937541": { + "id": "n1820937541", + "loc": [-85.6399078, 41.9160744] + }, + "n1820937542": { + "id": "n1820937542", + "loc": [-85.632874, 41.941031] + }, + "n1820937543": { + "id": "n1820937543", + "loc": [-85.1307591, 42.0726961] + }, + "n1820937544": { + "id": "n1820937544", + "loc": [-85.6444397, 41.9128378] + }, + "n1820937545": { + "id": "n1820937545", + "loc": [-85.6197204, 41.9420365] + }, + "n1820937546": { + "id": "n1820937546", + "loc": [-85.1164857, 42.0864631] + }, + "n1820937547": { + "id": "n1820937547", + "loc": [-85.6476111, 41.9142222] + }, + "n1820937548": { + "id": "n1820937548", + "loc": [-85.2915747, 41.9774223] + }, + "n1820937549": { + "id": "n1820937549", + "loc": [-85.6430192, 41.9102461] + }, + "n1820937550": { + "id": "n1820937550", + "loc": [-85.1597495, 42.0639017] + }, + "n1820937551": { + "id": "n1820937551", + "loc": [-85.5504079, 41.9701793] + }, + "n1820937553": { + "id": "n1820937553", + "loc": [-85.2781317, 41.9948951] + }, + "n1820937555": { + "id": "n1820937555", + "loc": [-85.3724594, 41.997518] + }, + "n1820937556": { + "id": "n1820937556", + "loc": [-85.5629434, 41.9665155] + }, + "n1820937557": { + "id": "n1820937557", + "loc": [-85.3791971, 41.9990808] + }, + "n1820937558": { + "id": "n1820937558", + "loc": [-85.001891, 42.0878843] + }, + "n1820937560": { + "id": "n1820937560", + "loc": [-85.3140838, 41.9709056] + }, + "n1820937561": { + "id": "n1820937561", + "loc": [-85.2468032, 42.0146987] + }, + "n1820937563": { + "id": "n1820937563", + "loc": [-85.0877378, 42.097255] + }, + "n1820937564": { + "id": "n1820937564", + "loc": [-85.2442498, 42.0150654] + }, + "n1820937566": { + "id": "n1820937566", + "loc": [-85.3108973, 41.9701478] + }, + "n1820937568": { + "id": "n1820937568", + "loc": [-85.0344584, 42.1016572] + }, + "n1820937569": { + "id": "n1820937569", + "loc": [-85.2331025, 42.0297387] + }, + "n1820937570": { + "id": "n1820937570", + "loc": [-85.5058446, 41.9746996] + }, + "n1820937571": { + "id": "n1820937571", + "loc": [-85.5622739, 41.9676427] + }, + "n1820937572": { + "id": "n1820937572", + "loc": [-85.2792687, 41.9890337] + }, + "n1820937574": { + "id": "n1820937574", + "loc": [-84.9909302, 42.08695] + }, + "n1820937575": { + "id": "n1820937575", + "loc": [-85.6218233, 41.9418609] + }, + "n1820937576": { + "id": "n1820937576", + "loc": [-85.3577437, 41.9931062] + }, + "n1820937577": { + "id": "n1820937577", + "loc": [-85.639028, 41.9165853] + }, + "n1820937578": { + "id": "n1820937578", + "loc": [-84.9956576, 42.0865348] + }, + "n1820937579": { + "id": "n1820937579", + "loc": [-85.4828376, 41.990198] + }, + "n1820937580": { + "id": "n1820937580", + "loc": [-85.3244478, 41.9720543] + }, + "n1820937582": { + "id": "n1820937582", + "loc": [-85.0517479, 42.1035159] + }, + "n1820937583": { + "id": "n1820937583", + "loc": [-85.225646, 42.0338025] + }, + "n1820937584": { + "id": "n1820937584", + "loc": [-84.9941019, 42.0862163] + }, + "n1820937586": { + "id": "n1820937586", + "loc": [-85.1051762, 42.0879452] + }, + "n1820937587": { + "id": "n1820937587", + "loc": [-85.1245203, 42.0753162] + }, + "n1820937588": { + "id": "n1820937588", + "loc": [-85.3250808, 41.9719506] + }, + "n1820937589": { + "id": "n1820937589", + "loc": [-85.2720109, 41.997933] + }, + "n1820937590": { + "id": "n1820937590", + "loc": [-85.2556653, 42.0027248] + }, + "n1820937591": { + "id": "n1820937591", + "loc": [-85.0872483, 42.0943544] + }, + "n1820937592": { + "id": "n1820937592", + "loc": [-85.2778353, 41.9955023] + }, + "n1820937593": { + "id": "n1820937593", + "loc": [-85.2984733, 41.9735538] + }, + "n1820937594": { + "id": "n1820937594", + "loc": [-85.101578, 42.0889552] + }, + "n1820937595": { + "id": "n1820937595", + "loc": [-85.3888745, 42.0016959] + }, + "n1820937596": { + "id": "n1820937596", + "loc": [-84.9903508, 42.0870654] + }, + "n1820937597": { + "id": "n1820937597", + "loc": [-85.6405558, 41.9146261] + }, + "n1820937598": { + "id": "n1820937598", + "loc": [-85.6460704, 41.9141311] + }, + "n1820937599": { + "id": "n1820937599", + "loc": [-85.0377468, 42.1037428] + }, + "n1820937600": { + "id": "n1820937600", + "loc": [-85.2298345, 42.0312899] + }, + "n1820937601": { + "id": "n1820937601", + "loc": [-85.1080958, 42.0861964] + }, + "n1820937602": { + "id": "n1820937602", + "loc": [-85.6325307, 41.9402329] + }, + "n1820937603": { + "id": "n1820937603", + "loc": [-85.1165984, 42.0832184] + }, + "n1820937604": { + "id": "n1820937604", + "loc": [-85.6354446, 41.9190602] + }, + "n1820937605": { + "id": "n1820937605", + "loc": [-85.1114592, 42.0862959] + }, + "n1820937606": { + "id": "n1820937606", + "loc": [-85.0858763, 42.1001646] + }, + "n1820937607": { + "id": "n1820937607", + "loc": [-85.0472083, 42.1015151] + }, + "n1820937608": { + "id": "n1820937608", + "loc": [-85.0802477, 42.1027609] + }, + "n1820937610": { + "id": "n1820937610", + "loc": [-85.0924585, 42.0928564] + }, + "n1820937611": { + "id": "n1820937611", + "loc": [-85.0329617, 42.09827] + }, + "n1820937612": { + "id": "n1820937612", + "loc": [-85.2814617, 41.993465] + }, + "n1820937613": { + "id": "n1820937613", + "loc": [-85.3097708, 41.9700282] + }, + "n1820937614": { + "id": "n1820937614", + "loc": [-85.2809427, 41.993695] + }, + "n1820937615": { + "id": "n1820937615", + "loc": [-85.0583233, 42.1026494] + }, + "n1820937617": { + "id": "n1820937617", + "loc": [-85.2801592, 41.9840021] + }, + "n1820937619": { + "id": "n1820937619", + "loc": [-85.1064154, 42.0863449] + }, + "n1820937620": { + "id": "n1820937620", + "loc": [-85.0423173, 42.1014662] + }, + "n1820937621": { + "id": "n1820937621", + "loc": [-85.2168913, 42.0398107] + }, + "n1820937622": { + "id": "n1820937622", + "loc": [-85.2798481, 41.9833401] + }, + "n1820937623": { + "id": "n1820937623", + "loc": [-85.0575468, 42.1028672] + }, + "n1820937625": { + "id": "n1820937625", + "loc": [-85.0130369, 42.0893067] + }, + "n1820937626": { + "id": "n1820937626", + "loc": [-85.0346985, 42.1018256] + }, + "n1820937627": { + "id": "n1820937627", + "loc": [-85.2231569, 42.0372768] + }, + "n1820937628": { + "id": "n1820937628", + "loc": [-85.2956195, 41.9732268] + }, + "n1820937629": { + "id": "n1820937629", + "loc": [-85.1052312, 42.086893] + }, + "n1820937630": { + "id": "n1820937630", + "loc": [-85.4813356, 41.9958436] + }, + "n1820937631": { + "id": "n1820937631", + "loc": [-85.0961599, 42.0914672] + }, + "n1820937632": { + "id": "n1820937632", + "loc": [-85.308419, 41.9704749] + }, + "n1820937633": { + "id": "n1820937633", + "loc": [-85.295952, 41.9715119] + }, + "n1820937634": { + "id": "n1820937634", + "loc": [-85.3310933, 41.9703923] + }, + "n1820937635": { + "id": "n1820937635", + "loc": [-85.2940745, 41.9739686] + }, + "n1820937636": { + "id": "n1820937636", + "loc": [-85.3803343, 42.000484] + }, + "n1820937637": { + "id": "n1820937637", + "loc": [-85.1174231, 42.0845533] + }, + "n1820937638": { + "id": "n1820937638", + "loc": [-85.0095836, 42.089839] + }, + "n1820937639": { + "id": "n1820937639", + "loc": [-85.3179354, 41.9705866] + }, + "n1820937640": { + "id": "n1820937640", + "loc": [-85.257708, 42.0001189] + }, + "n1820937641": { + "id": "n1820937641", + "loc": [-85.2563522, 42.0002771] + }, + "n1820937642": { + "id": "n1820937642", + "loc": [-85.3181929, 41.970419] + }, + "n1820937643": { + "id": "n1820937643", + "loc": [-85.2911884, 41.9757154] + }, + "n1820937644": { + "id": "n1820937644", + "loc": [-85.2714423, 41.9975862] + }, + "n1820937645": { + "id": "n1820937645", + "loc": [-85.0193669, 42.089888] + }, + "n1820937646": { + "id": "n1820937646", + "loc": [-85.3889818, 42.0039921] + }, + "n1820937647": { + "id": "n1820937647", + "loc": [-85.3408093, 41.9853965] + }, + "n1820937648": { + "id": "n1820937648", + "loc": [-85.1258091, 42.0748332] + }, + "n1820937649": { + "id": "n1820937649", + "loc": [-85.5722561, 41.962782] + }, + "n1820937650": { + "id": "n1820937650", + "loc": [-85.3266902, 41.9721819] + }, + "n1820937651": { + "id": "n1820937651", + "loc": [-85.1473255, 42.065192] + }, + "n1820937652": { + "id": "n1820937652", + "loc": [-85.1462526, 42.0655106] + }, + "n1820937653": { + "id": "n1820937653", + "loc": [-85.4641051, 42.0013929] + }, + "n1820937654": { + "id": "n1820937654", + "loc": [-85.5620379, 41.9700677] + }, + "n1820937655": { + "id": "n1820937655", + "loc": [-85.3226025, 41.971121] + }, + "n1820937656": { + "id": "n1820937656", + "loc": [-85.0200965, 42.0899516] + }, + "n1820937657": { + "id": "n1820937657", + "loc": [-85.0624714, 42.1044711] + }, + "n1820937658": { + "id": "n1820937658", + "loc": [-85.5649562, 41.9637178] + }, + "n1820937659": { + "id": "n1820937659", + "loc": [-85.2360315, 42.0253315] + }, + "n1820937660": { + "id": "n1820937660", + "loc": [-85.3881449, 41.9994475] + }, + "n1820937661": { + "id": "n1820937661", + "loc": [-85.5032911, 41.976263] + }, + "n1820937662": { + "id": "n1820937662", + "loc": [-85.481297, 41.9871414] + }, + "n1820937663": { + "id": "n1820937663", + "loc": [-85.1167056, 42.0841898] + }, + "n1820937664": { + "id": "n1820937664", + "loc": [-85.2891714, 41.9787223] + }, + "n1820937665": { + "id": "n1820937665", + "loc": [-85.4393429, 42.0058736] + }, + "n1820937666": { + "id": "n1820937666", + "loc": [-85.0077007, 42.0895762] + }, + "n1820937667": { + "id": "n1820937667", + "loc": [-85.2736202, 41.9979171] + }, + "n1820937668": { + "id": "n1820937668", + "loc": [-84.9935332, 42.0859296] + }, + "n1820937669": { + "id": "n1820937669", + "loc": [-85.0622769, 42.1046713] + }, + "n1820937670": { + "id": "n1820937670", + "loc": [-85.2309031, 42.0311249] + }, + "n1820937671": { + "id": "n1820937671", + "loc": [-85.0343726, 42.10069] + }, + "n1820937672": { + "id": "n1820937672", + "loc": [-85.0596551, 42.1048612] + }, + "n1820937673": { + "id": "n1820937673", + "loc": [-85.1338597, 42.0707449] + }, + "n1820937674": { + "id": "n1820937674", + "loc": [-85.3117663, 41.9689194] + }, + "n1820937675": { + "id": "n1820937675", + "loc": [-85.0705649, 42.1057499] + }, + "n1820937676": { + "id": "n1820937676", + "loc": [-85.2441425, 42.0180944] + }, + "n1820937677": { + "id": "n1820937677", + "loc": [-85.1171174, 42.0862692] + }, + "n1820937678": { + "id": "n1820937678", + "loc": [-85.0346824, 42.1005519] + }, + "n1820937680": { + "id": "n1820937680", + "loc": [-85.2389927, 42.0229245] + }, + "n1820937681": { + "id": "n1820937681", + "loc": [-85.0834892, 42.1018642] + }, + "n1820937682": { + "id": "n1820937682", + "loc": [-85.0619443, 42.1049459] + }, + "n1820937683": { + "id": "n1820937683", + "loc": [-85.2845366, 41.9811868] + }, + "n1820937684": { + "id": "n1820937684", + "loc": [-85.210411, 42.0394123] + }, + "n1820937685": { + "id": "n1820937685", + "loc": [-85.4377383, 42.0055942] + }, + "n1820937686": { + "id": "n1820937686", + "loc": [-85.2882058, 41.9789138] + }, + "n1820937687": { + "id": "n1820937687", + "loc": [-85.2741191, 41.9955808] + }, + "n1820937688": { + "id": "n1820937688", + "loc": [-85.3442211, 41.9903575] + }, + "n1820937689": { + "id": "n1820937689", + "loc": [-85.2641413, 41.9995237] + }, + "n1820937690": { + "id": "n1820937690", + "loc": [-85.2804489, 41.9829174] + }, + "n1820937691": { + "id": "n1820937691", + "loc": [-85.5593342, 41.9729074] + }, + "n1820937692": { + "id": "n1820937692", + "loc": [-85.3590912, 41.9932601] + }, + "n1820937694": { + "id": "n1820937694", + "loc": [-85.4826445, 41.9957479] + }, + "n1820937695": { + "id": "n1820937695", + "loc": [-85.4539127, 42.0063041] + }, + "n1820937696": { + "id": "n1820937696", + "loc": [-85.2456767, 42.0153683] + }, + "n1820937697": { + "id": "n1820937697", + "loc": [-85.5794015, 41.9489631] + }, + "n1820937698": { + "id": "n1820937698", + "loc": [-85.4108686, 42.0078507] + }, + "n1820937699": { + "id": "n1820937699", + "loc": [-85.0616386, 42.1051529] + }, + "n1820937700": { + "id": "n1820937700", + "loc": [-85.4977979, 41.978241] + }, + "n1820937701": { + "id": "n1820937701", + "loc": [-85.2488417, 42.0086319] + }, + "n1820937702": { + "id": "n1820937702", + "loc": [-85.5588836, 41.9728116] + }, + "n1820937703": { + "id": "n1820937703", + "loc": [-85.4557366, 42.0051241] + }, + "n1820937705": { + "id": "n1820937705", + "loc": [-85.0723151, 42.1056094] + }, + "n1820937706": { + "id": "n1820937706", + "loc": [-85.0057909, 42.0887323] + }, + "n1820937707": { + "id": "n1820937707", + "loc": [-85.0756786, 42.105677] + }, + "n1820937708": { + "id": "n1820937708", + "loc": [-85.0901504, 42.0940001] + }, + "n1820937709": { + "id": "n1820937709", + "loc": [-85.0979999, 42.0910213] + }, + "n1820937710": { + "id": "n1820937710", + "loc": [-85.2376301, 42.0239686] + }, + "n1820937711": { + "id": "n1820937711", + "loc": [-85.2780671, 41.9902299] + }, + "n1820937712": { + "id": "n1820937712", + "loc": [-85.251481, 42.0113188] + }, + "n1820937713": { + "id": "n1820937713", + "loc": [-85.3114767, 41.9690311] + }, + "n1820937714": { + "id": "n1820937714", + "loc": [-85.2649621, 41.9975662] + }, + "n1820937715": { + "id": "n1820937715", + "loc": [-85.283807, 41.9813383] + }, + "n1820937716": { + "id": "n1820937716", + "loc": [-85.5515451, 41.9703867] + }, + "n1820937717": { + "id": "n1820937717", + "loc": [-85.1176605, 42.0850896] + }, + "n1820937718": { + "id": "n1820937718", + "loc": [-85.1069317, 42.0862441] + }, + "n1820937719": { + "id": "n1820937719", + "loc": [-85.2739314, 41.9976938] + }, + "n1820937720": { + "id": "n1820937720", + "loc": [-85.5550212, 41.9702112] + }, + "n1820937721": { + "id": "n1820937721", + "loc": [-85.3076679, 41.9719904] + }, + "n1820937722": { + "id": "n1820937722", + "loc": [-85.592319, 41.9440316] + }, + "n1820937723": { + "id": "n1820937723", + "loc": [-85.3139979, 41.9704031] + }, + "n1820937724": { + "id": "n1820937724", + "loc": [-85.0421134, 42.1013149] + }, + "n1820937725": { + "id": "n1820937725", + "loc": [-85.2508373, 42.0102741] + }, + "n1820937726": { + "id": "n1820937726", + "loc": [-85.0830922, 42.1038821] + }, + "n1820937727": { + "id": "n1820937727", + "loc": [-85.6342473, 41.9360031] + }, + "n1820937730": { + "id": "n1820937730", + "loc": [-85.0500192, 42.1024942] + }, + "n1820937731": { + "id": "n1820937731", + "loc": [-85.3498644, 41.9926221] + }, + "n1820937732": { + "id": "n1820937732", + "loc": [-85.0234117, 42.0918903] + }, + "n1820937733": { + "id": "n1820937733", + "loc": [-85.0464425, 42.1009408] + }, + "n1820937734": { + "id": "n1820937734", + "loc": [-85.033938, 42.099886] + }, + "n1820937736": { + "id": "n1820937736", + "loc": [-85.0152752, 42.0886009] + }, + "n1820937737": { + "id": "n1820937737", + "loc": [-85.0441894, 42.1012671] + }, + "n1820937738": { + "id": "n1820937738", + "loc": [-85.4668731, 41.9979804] + }, + "n1820937739": { + "id": "n1820937739", + "loc": [-85.4407377, 42.006033] + }, + "n1820937740": { + "id": "n1820937740", + "loc": [-85.2262253, 42.0344878] + }, + "n1820937741": { + "id": "n1820937741", + "loc": [-85.2550001, 42.0033706] + }, + "n1820937742": { + "id": "n1820937742", + "loc": [-85.3071422, 41.9722617] + }, + "n1820937743": { + "id": "n1820937743", + "loc": [-85.6147852, 41.942228] + }, + "n1820937744": { + "id": "n1820937744", + "loc": [-85.0183853, 42.0901825] + }, + "n1820937745": { + "id": "n1820937745", + "loc": [-85.6323161, 41.9228489] + }, + "n1820937746": { + "id": "n1820937746", + "loc": [-85.0095568, 42.0901376] + }, + "n1820937747": { + "id": "n1820937747", + "loc": [-85.2524037, 42.0113826] + }, + "n1820937748": { + "id": "n1820937748", + "loc": [-85.3186864, 41.9708578] + }, + "n1820937749": { + "id": "n1820937749", + "loc": [-85.2805669, 41.9870883] + }, + "n1820937750": { + "id": "n1820937750", + "loc": [-85.0585768, 42.1038144] + }, + "n1820937751": { + "id": "n1820937751", + "loc": [-85.2970786, 41.9715358] + }, + "n1820937752": { + "id": "n1820937752", + "loc": [-85.1315758, 42.0723445] + }, + "n1820937753": { + "id": "n1820937753", + "loc": [-85.2448291, 42.0175444] + }, + "n1820937754": { + "id": "n1820937754", + "loc": [-85.2446468, 42.0174248] + }, + "n1820937755": { + "id": "n1820937755", + "loc": [-85.229165, 42.032129] + }, + "n1820937756": { + "id": "n1820937756", + "loc": [-85.5612654, 41.9724926] + }, + "n1820937757": { + "id": "n1820937757", + "loc": [-85.2331776, 42.030854] + }, + "n1820937758": { + "id": "n1820937758", + "loc": [-85.2271909, 42.0334519] + }, + "n1820937759": { + "id": "n1820937759", + "loc": [-85.1032396, 42.0879214] + }, + "n1820937760": { + "id": "n1820937760", + "loc": [-85.0638447, 42.1044154] + }, + "n1820937761": { + "id": "n1820937761", + "loc": [-85.1260706, 42.0745556] + }, + "n1820937762": { + "id": "n1820937762", + "loc": [-85.3454485, 41.99132] + }, + "n1820937763": { + "id": "n1820937763", + "loc": [-85.2639321, 41.9980088] + }, + "n1820937764": { + "id": "n1820937764", + "loc": [-85.0837681, 42.1013746] + }, + "n1820937765": { + "id": "n1820937765", + "loc": [-85.2808137, 41.9869368] + }, + "n1820937766": { + "id": "n1820937766", + "loc": [-85.6338997, 41.9309373] + }, + "n1820937767": { + "id": "n1820937767", + "loc": [-85.2267403, 42.0332766] + }, + "n1820937768": { + "id": "n1820937768", + "loc": [-85.0605831, 42.1052074] + }, + "n1820937769": { + "id": "n1820937769", + "loc": [-85.0259021, 42.0930037] + }, + "n1820937770": { + "id": "n1820937770", + "loc": [-85.232963, 42.0313162] + }, + "n1820937771": { + "id": "n1820937771", + "loc": [-85.2404947, 42.0125381] + }, + "n1820937772": { + "id": "n1820937772", + "loc": [-85.0910892, 42.0935742] + }, + "n1820937773": { + "id": "n1820937773", + "loc": [-85.2554829, 42.0019435] + }, + "n1820937774": { + "id": "n1820937774", + "loc": [-85.2799339, 41.9867773] + }, + "n1820937775": { + "id": "n1820937775", + "loc": [-85.1075432, 42.0852767] + }, + "n1820937776": { + "id": "n1820937776", + "loc": [-85.1176927, 42.0854001] + }, + "n1820937777": { + "id": "n1820937777", + "loc": [-85.1067064, 42.0863357] + }, + "n1820937778": { + "id": "n1820937778", + "loc": [-85.2517492, 42.0106333] + }, + "n1820937779": { + "id": "n1820937779", + "loc": [-85.0987174, 42.0909031] + }, + "n1820937780": { + "id": "n1820937780", + "loc": [-85.1160083, 42.0863994] + }, + "n1820937781": { + "id": "n1820937781", + "loc": [-85.1268645, 42.0739703] + }, + "n1820937782": { + "id": "n1820937782", + "loc": [-85.0454702, 42.1002852] + }, + "n1820937783": { + "id": "n1820937783", + "loc": [-85.1334145, 42.0705418] + }, + "n1820937784": { + "id": "n1820937784", + "loc": [-85.5866542, 41.947431] + }, + "n1820937786": { + "id": "n1820937786", + "loc": [-85.2359886, 42.0250366] + }, + "n1820937787": { + "id": "n1820937787", + "loc": [-85.3138048, 41.9698527] + }, + "n1820937788": { + "id": "n1820937788", + "loc": [-85.1274291, 42.0733081] + }, + "n1820937790": { + "id": "n1820937790", + "loc": [-85.6292905, 41.9411267] + }, + "n1820937791": { + "id": "n1820937791", + "loc": [-85.5958809, 41.9417333] + }, + "n1820937792": { + "id": "n1820937792", + "loc": [-85.1271019, 42.0737581] + }, + "n1820937793": { + "id": "n1820937793", + "loc": [-85.2312679, 42.0314437] + }, + "n1820937794": { + "id": "n1820937794", + "loc": [-85.1081387, 42.0863516] + }, + "n1820937795": { + "id": "n1820937795", + "loc": [-85.2424473, 42.0212109] + }, + "n1820937796": { + "id": "n1820937796", + "loc": [-85.2710654, 41.9975236] + }, + "n1820937797": { + "id": "n1820937797", + "loc": [-85.4798408, 41.9863223] + }, + "n1820937798": { + "id": "n1820937798", + "loc": [-85.035939, 42.104296] + }, + "n1820937799": { + "id": "n1820937799", + "loc": [-85.2178139, 42.0395398] + }, + "n1820937800": { + "id": "n1820937800", + "loc": [-85.0630709, 42.1042614] + }, + "n1820937801": { + "id": "n1820937801", + "loc": [-85.0440124, 42.1014861] + }, + "n1820937802": { + "id": "n1820937802", + "loc": [-85.1321874, 42.0720458] + }, + "n1820937804": { + "id": "n1820937804", + "loc": [-85.079427, 42.1029121] + }, + "n1820937805": { + "id": "n1820937805", + "loc": [-85.2962632, 41.9738968] + }, + "n1820937806": { + "id": "n1820937806", + "loc": [-85.6334748, 41.9274627] + }, + "n1820937807": { + "id": "n1820937807", + "loc": [-85.1057341, 42.0872804] + }, + "n1820937808": { + "id": "n1820937808", + "loc": [-85.4960169, 41.9778263] + }, + "n1820937809": { + "id": "n1820937809", + "loc": [-85.2821226, 41.9910273] + }, + "n1820937810": { + "id": "n1820937810", + "loc": [-85.0013868, 42.0885054] + }, + "n1820937811": { + "id": "n1820937811", + "loc": [-85.2952547, 41.9729795] + }, + "n1820937812": { + "id": "n1820937812", + "loc": [-85.1298375, 42.0667842] + }, + "n1820937813": { + "id": "n1820937813", + "loc": [-85.1339201, 42.0710025] + }, + "n1820937814": { + "id": "n1820937814", + "loc": [-85.0374356, 42.103691] + }, + "n1820937815": { + "id": "n1820937815", + "loc": [-85.0061115, 42.0880607] + }, + "n1820937817": { + "id": "n1820937817", + "loc": [-85.2398402, 42.0226934] + }, + "n1820937818": { + "id": "n1820937818", + "loc": [-85.123501, 42.076236] + }, + "n1820937819": { + "id": "n1820937819", + "loc": [-85.1209489, 42.0791294] + }, + "n1820937820": { + "id": "n1820937820", + "loc": [-85.0818624, 42.1025778] + }, + "n1820937821": { + "id": "n1820937821", + "loc": [-85.4428835, 42.0054749] + }, + "n1820937822": { + "id": "n1820937822", + "loc": [-85.4710359, 41.9961147] + }, + "n1820937823": { + "id": "n1820937823", + "loc": [-85.4253354, 42.006198] + }, + "n1820937824": { + "id": "n1820937824", + "loc": [-85.5486483, 41.9709451] + }, + "n1820937825": { + "id": "n1820937825", + "loc": [-85.2303238, 42.0310452] + }, + "n1820937826": { + "id": "n1820937826", + "loc": [-85.6450405, 41.9136361] + }, + "n1820937828": { + "id": "n1820937828", + "loc": [-85.2606853, 41.9964073] + }, + "n1820937830": { + "id": "n1820937830", + "loc": [-85.097383, 42.0911447] + }, + "n1820937831": { + "id": "n1820937831", + "loc": [-85.0498207, 42.102136] + }, + "n1820937832": { + "id": "n1820937832", + "loc": [-85.1232435, 42.0763793] + }, + "n1820937833": { + "id": "n1820937833", + "loc": [-85.394093, 42.0055921] + }, + "n1820937834": { + "id": "n1820937834", + "loc": [-85.3566665, 41.9928295] + }, + "n1820937835": { + "id": "n1820937835", + "loc": [-85.3543276, 41.9920002] + }, + "n1820937837": { + "id": "n1820937837", + "loc": [-85.084668, 42.1034932] + }, + "n1820937838": { + "id": "n1820937838", + "loc": [-85.4400296, 42.0060649] + }, + "n1820937839": { + "id": "n1820937839", + "loc": [-85.2362246, 42.025714] + }, + "n1820937840": { + "id": "n1820937840", + "loc": [-85.0409225, 42.1012791] + }, + "n1820937841": { + "id": "n1820937841", + "loc": [-85.2442283, 42.019832] + }, + "n1820937842": { + "id": "n1820937842", + "loc": [-85.1123001, 42.084824] + }, + "n1820937843": { + "id": "n1820937843", + "loc": [-85.1603074, 42.0638061] + }, + "n1820937844": { + "id": "n1820937844", + "loc": [-85.1359744, 42.0650646] + }, + "n1820937845": { + "id": "n1820937845", + "loc": [-85.1757569, 42.053849] + }, + "n1820937846": { + "id": "n1820937846", + "loc": [-85.5200925, 41.9716686] + }, + "n1820937848": { + "id": "n1820937848", + "loc": [-85.5525322, 41.9701315] + }, + "n1820937849": { + "id": "n1820937849", + "loc": [-85.0406489, 42.10149] + }, + "n1820937850": { + "id": "n1820937850", + "loc": [-85.0142547, 42.088825] + }, + "n1820937851": { + "id": "n1820937851", + "loc": [-85.343749, 41.9881884] + }, + "n1820937852": { + "id": "n1820937852", + "loc": [-85.074996, 42.1060205] + }, + "n1820937853": { + "id": "n1820937853", + "loc": [-85.2436275, 42.0136864] + }, + "n1820937854": { + "id": "n1820937854", + "loc": [-85.2641453, 41.9980897] + }, + "n1820937856": { + "id": "n1820937856", + "loc": [-85.2802343, 41.9870086] + }, + "n1820937857": { + "id": "n1820937857", + "loc": [-85.0099256, 42.0909946] + }, + "n1820937858": { + "id": "n1820937858", + "loc": [-85.493957, 41.9786079] + }, + "n1820937859": { + "id": "n1820937859", + "loc": [-85.0739405, 42.1059795] + }, + "n1820937860": { + "id": "n1820937860", + "loc": [-85.2331605, 42.0301423] + }, + "n1820937862": { + "id": "n1820937862", + "loc": [-85.2035231, 42.0438425] + }, + "n1820937863": { + "id": "n1820937863", + "loc": [-85.0884928, 42.0986971] + }, + "n1820937864": { + "id": "n1820937864", + "loc": [-85.131597, 42.0690142] + }, + "n1820937865": { + "id": "n1820937865", + "loc": [-85.3937454, 42.0052677] + }, + "n1820937866": { + "id": "n1820937866", + "loc": [-85.2212729, 42.0378561] + }, + "n1820937867": { + "id": "n1820937867", + "loc": [-85.0886068, 42.0982421] + }, + "n1820937868": { + "id": "n1820937868", + "loc": [-85.0875004, 42.0968064] + }, + "n1820937869": { + "id": "n1820937869", + "loc": [-85.0771323, 42.1042642] + }, + "n1820937870": { + "id": "n1820937870", + "loc": [-85.0164554, 42.0894887] + }, + "n1820937871": { + "id": "n1820937871", + "loc": [-85.6069102, 41.9415577] + }, + "n1820937872": { + "id": "n1820937872", + "loc": [-85.3273875, 41.9704908] + }, + "n1820937873": { + "id": "n1820937873", + "loc": [-85.3890891, 41.9997983] + }, + "n1820937875": { + "id": "n1820937875", + "loc": [-85.5091276, 41.9723705] + }, + "n1820937876": { + "id": "n1820937876", + "loc": [-85.0770626, 42.1047696] + }, + "n1820937877": { + "id": "n1820937877", + "loc": [-85.612575, 41.9419567] + }, + "n1820937878": { + "id": "n1820937878", + "loc": [-85.3868146, 42.0036094] + }, + "n1820937879": { + "id": "n1820937879", + "loc": [-85.2722738, 41.9981204] + }, + "n1820937880": { + "id": "n1820937880", + "loc": [-85.3064878, 41.9723733] + }, + "n1820937882": { + "id": "n1820937882", + "loc": [-85.1270845, 42.0727678] + }, + "n1820937884": { + "id": "n1820937884", + "loc": [-85.3316512, 41.97923] + }, + "n1820937885": { + "id": "n1820937885", + "loc": [-85.3932519, 42.0042472] + }, + "n1820937886": { + "id": "n1820937886", + "loc": [-85.2457411, 42.0175444] + }, + "n1820937887": { + "id": "n1820937887", + "loc": [-85.1397509, 42.0648415] + }, + "n1820937891": { + "id": "n1820937891", + "loc": [-85.3196735, 41.9719665] + }, + "n1820937892": { + "id": "n1820937892", + "loc": [-85.3372473, 41.9845033] + }, + "n1820937894": { + "id": "n1820937894", + "loc": [-85.3254778, 41.9719745] + }, + "n1820937897": { + "id": "n1820937897", + "loc": [-85.3185148, 41.9691268] + }, + "n1820937899": { + "id": "n1820937899", + "loc": [-85.5419106, 41.9714556] + }, + "n1820937901": { + "id": "n1820937901", + "loc": [-85.3293509, 41.9748368] + }, + "n1820937903": { + "id": "n1820937903", + "loc": [-85.0798078, 42.1028365] + }, + "n1820937905": { + "id": "n1820937905", + "loc": [-85.3954191, 42.0056025] + }, + "n1820937909": { + "id": "n1820937909", + "loc": [-85.3417534, 41.9857155] + }, + "n1820937913": { + "id": "n1820937913", + "loc": [-84.9927822, 42.0857107] + }, + "n1820937915": { + "id": "n1820937915", + "loc": [-85.5444212, 41.9712801] + }, + "n1820937917": { + "id": "n1820937917", + "loc": [-85.259088, 41.9981682] + }, + "n1820937921": { + "id": "n1820937921", + "loc": [-85.2784576, 41.9876358] + }, + "n1820937922": { + "id": "n1820937922", + "loc": [-84.9971918, 42.087753] + }, + "n1820937924": { + "id": "n1820937924", + "loc": [-85.5310688, 41.966899] + }, + "n1820937928": { + "id": "n1820937928", + "loc": [-85.3766436, 41.9979326] + }, + "n1820937930": { + "id": "n1820937930", + "loc": [-85.5494852, 41.9704346] + }, + "n1820937933": { + "id": "n1820937933", + "loc": [-85.5548281, 41.9695412] + }, + "n1820937935": { + "id": "n1820937935", + "loc": [-85.0768588, 42.105088] + }, + "n1820937937": { + "id": "n1820937937", + "loc": [-85.2646885, 41.9978054] + }, + "n1820937939": { + "id": "n1820937939", + "loc": [-85.2441532, 42.0176082] + }, + "n1820937941": { + "id": "n1820937941", + "loc": [-85.105553, 42.0877928] + }, + "n1820937943": { + "id": "n1820937943", + "loc": [-85.0879457, 42.0958909] + }, + "n1820937944": { + "id": "n1820937944", + "loc": [-85.3187015, 41.9704402] + }, + "n1820937945": { + "id": "n1820937945", + "loc": [-85.5624456, 41.970626] + }, + "n1820937946": { + "id": "n1820937946", + "loc": [-85.0580176, 42.1028644] + }, + "n1820937948": { + "id": "n1820937948", + "loc": [-85.3016061, 41.9726286] + }, + "n1820937949": { + "id": "n1820937949", + "loc": [-85.4310388, 42.0069418] + }, + "n1820937950": { + "id": "n1820937950", + "loc": [-85.2945144, 41.9740723] + }, + "n1820937951": { + "id": "n1820937951", + "loc": [-85.1170222, 42.082657] + }, + "n1820937952": { + "id": "n1820937952", + "loc": [-85.0864503, 42.0947632] + }, + "n1820937953": { + "id": "n1820937953", + "loc": [-85.4285926, 42.0059533] + }, + "n1820937970": { + "id": "n1820937970", + "loc": [-85.3629965, 41.9938023] + }, + "n1820937972": { + "id": "n1820937972", + "loc": [-85.2438099, 42.0199755] + }, + "n1820937974": { + "id": "n1820937974", + "loc": [-85.1327654, 42.0699285] + }, + "n1820937977": { + "id": "n1820937977", + "loc": [-85.1515956, 42.0611935] + }, + "n1820937978": { + "id": "n1820937978", + "loc": [-85.0107369, 42.0896638] + }, + "n1820937979": { + "id": "n1820937979", + "loc": [-85.1152626, 42.0862083] + }, + "n1820937980": { + "id": "n1820937980", + "loc": [-85.4531831, 42.0062881] + }, + "n1820937981": { + "id": "n1820937981", + "loc": [-85.0341473, 42.0985924] + }, + "n1820937982": { + "id": "n1820937982", + "loc": [-85.0877485, 42.0960171] + }, + "n1820937983": { + "id": "n1820937983", + "loc": [-85.2756373, 41.9951742] + }, + "n1820937984": { + "id": "n1820937984", + "loc": [-85.2965421, 41.9714401] + }, + "n1820937985": { + "id": "n1820937985", + "loc": [-85.2409775, 42.0226934] + }, + "n1820937986": { + "id": "n1820937986", + "loc": [-85.0170723, 42.0900579] + }, + "n1820937987": { + "id": "n1820937987", + "loc": [-85.1034663, 42.0880555] + }, + "n1820937988": { + "id": "n1820937988", + "loc": [-85.0585071, 42.1031577] + }, + "n1820937990": { + "id": "n1820937990", + "loc": [-85.0819174, 42.1032373] + }, + "n1820937992": { + "id": "n1820937992", + "loc": [-85.0546608, 42.1030542] + }, + "n1820937993": { + "id": "n1820937993", + "loc": [-85.0100811, 42.0906125] + }, + "n1820937995": { + "id": "n1820937995", + "loc": [-85.6304278, 41.9432655] + }, + "n1820937997": { + "id": "n1820937997", + "loc": [-85.0255628, 42.092778] + }, + "n1820938011": { + "id": "n1820938011", + "loc": [-85.2316756, 42.0317146] + }, + "n1820938012": { + "id": "n1820938012", + "loc": [-85.4067917, 42.008042] + }, + "n1820938013": { + "id": "n1820938013", + "loc": [-85.390398, 42.0028759] + }, + "n1820938014": { + "id": "n1820938014", + "loc": [-85.0161604, 42.0886527] + }, + "n1820938015": { + "id": "n1820938015", + "loc": [-85.125337, 42.0744589] + }, + "n1820938016": { + "id": "n1820938016", + "loc": [-85.2151317, 42.0404801] + }, + "n1820938017": { + "id": "n1820938017", + "loc": [-85.3165085, 41.9706025] + }, + "n1820938018": { + "id": "n1820938018", + "loc": [-85.5641193, 41.9640688] + }, + "n1820938019": { + "id": "n1820938019", + "loc": [-85.147583, 42.0642203] + }, + "n1820938022": { + "id": "n1820938022", + "loc": [-85.2803781, 41.9947886] + }, + "n1820938024": { + "id": "n1820938024", + "loc": [-85.2692469, 41.9982053] + }, + "n1820938026": { + "id": "n1820938026", + "loc": [-85.4321975, 42.0067505] + }, + "n1820938028": { + "id": "n1820938028", + "loc": [-85.572535, 41.9633405] + }, + "n1820938030": { + "id": "n1820938030", + "loc": [-85.3237505, 41.9716475] + }, + "n1820938032": { + "id": "n1820938032", + "loc": [-85.6487698, 41.9141583] + }, + "n1820938033": { + "id": "n1820938033", + "loc": [-85.0526371, 42.1038315] + }, + "n1820938034": { + "id": "n1820938034", + "loc": [-85.088069, 42.0978731] + }, + "n1820938035": { + "id": "n1820938035", + "loc": [-85.2516312, 42.0102267] + }, + "n1820938039": { + "id": "n1820938039", + "loc": [-85.2731374, 41.9982958] + }, + "n1820938040": { + "id": "n1820938040", + "loc": [-85.5453224, 41.9713439] + }, + "n1820938041": { + "id": "n1820938041", + "loc": [-85.4480548, 42.0049647] + }, + "n1820938043": { + "id": "n1820938043", + "loc": [-85.2504081, 42.010322] + }, + "n1820938045": { + "id": "n1820938045", + "loc": [-85.2663447, 41.99919] + }, + "n1820938046": { + "id": "n1820938046", + "loc": [-85.0507287, 42.102907] + }, + "n1820938047": { + "id": "n1820938047", + "loc": [-85.0408246, 42.1024743] + }, + "n1820938048": { + "id": "n1820938048", + "loc": [-85.2796335, 41.9866099] + }, + "n1820938050": { + "id": "n1820938050", + "loc": [-85.452475, 42.0061127] + }, + "n1820938051": { + "id": "n1820938051", + "loc": [-85.2410569, 42.0128147] + }, + "n1820938052": { + "id": "n1820938052", + "loc": [-85.0413302, 42.1011477] + }, + "n1820938053": { + "id": "n1820938053", + "loc": [-85.6327409, 41.9197627] + }, + "n1820938056": { + "id": "n1820938056", + "loc": [-85.1072039, 42.0857994] + }, + "n1820938057": { + "id": "n1820938057", + "loc": [-85.2001114, 42.0448145] + }, + "n1820938058": { + "id": "n1820938058", + "loc": [-85.2655347, 41.9978186] + }, + "n1820938059": { + "id": "n1820938059", + "loc": [-85.2330918, 42.0304874] + }, + "n1820938060": { + "id": "n1820938060", + "loc": [-85.2601113, 41.9966545] + }, + "n1820938061": { + "id": "n1820938061", + "loc": [-85.5397863, 41.9708494] + }, + "n1820938062": { + "id": "n1820938062", + "loc": [-85.2702085, 41.9977217] + }, + "n1820938063": { + "id": "n1820938063", + "loc": [-85.2219982, 42.03699] + }, + "n1820938064": { + "id": "n1820938064", + "loc": [-85.0668957, 42.105121] + }, + "n1820938065": { + "id": "n1820938065", + "loc": [-85.2328665, 42.0270769] + }, + "n1820938066": { + "id": "n1820938066", + "loc": [-85.3189654, 41.9694778] + }, + "n1820938067": { + "id": "n1820938067", + "loc": [-85.3814115, 42.0022915] + }, + "n1820938068": { + "id": "n1820938068", + "loc": [-85.2759108, 41.9956008] + }, + "n1820938069": { + "id": "n1820938069", + "loc": [-85.0391938, 42.1034853] + }, + "n1820938070": { + "id": "n1820938070", + "loc": [-85.2850623, 41.9810353] + }, + "n1820938071": { + "id": "n1820938071", + "loc": [-85.538074, 41.970855] + }, + "n1820938073": { + "id": "n1820938073", + "loc": [-85.1319661, 42.0670932] + }, + "n1820938074": { + "id": "n1820938074", + "loc": [-85.2816763, 41.9913678] + }, + "n1820938075": { + "id": "n1820938075", + "loc": [-85.3182144, 41.9700282] + }, + "n1820938076": { + "id": "n1820938076", + "loc": [-85.5909028, 41.9458989] + }, + "n1820938077": { + "id": "n1820938077", + "loc": [-85.4057617, 42.0074361] + }, + "n1820938078": { + "id": "n1820938078", + "loc": [-85.2620438, 41.9967729] + }, + "n1820938079": { + "id": "n1820938079", + "loc": [-85.1122143, 42.0851107] + }, + "n1820938080": { + "id": "n1820938080", + "loc": [-85.2443785, 42.0174567] + }, + "n1820938081": { + "id": "n1820938081", + "loc": [-85.0319733, 42.0953853] + }, + "n1820938082": { + "id": "n1820938082", + "loc": [-85.0878276, 42.09443] + }, + "n1820938083": { + "id": "n1820938083", + "loc": [-85.0271789, 42.0935809] + }, + "n1820938084": { + "id": "n1820938084", + "loc": [-85.0326399, 42.0974222] + }, + "n1820938085": { + "id": "n1820938085", + "loc": [-85.3989167, 42.0065592] + }, + "n1820938086": { + "id": "n1820938086", + "loc": [-85.3263361, 41.9721261] + }, + "n1820938087": { + "id": "n1820938087", + "loc": [-85.2547855, 42.0037134] + }, + "n1820938088": { + "id": "n1820938088", + "loc": [-85.4373259, 42.005746] + }, + "n1820938089": { + "id": "n1820938089", + "loc": [-85.3094275, 41.9699245] + }, + "n1820938090": { + "id": "n1820938090", + "loc": [-85.2783246, 41.9872793] + }, + "n1820938092": { + "id": "n1820938092", + "loc": [-85.0815633, 42.1025169] + }, + "n1820938093": { + "id": "n1820938093", + "loc": [-85.1788511, 42.0522134] + }, + "n1820938095": { + "id": "n1820938095", + "loc": [-85.2830345, 41.9816733] + }, + "n1820938096": { + "id": "n1820938096", + "loc": [-85.0744984, 42.1059835] + }, + "n1820938097": { + "id": "n1820938097", + "loc": [-85.2788396, 41.9879333] + }, + "n1820938098": { + "id": "n1820938098", + "loc": [-85.3640093, 41.9946531] + }, + "n1820938099": { + "id": "n1820938099", + "loc": [-85.291167, 41.9787463] + }, + "n1820938100": { + "id": "n1820938100", + "loc": [-85.0772436, 42.1038156] + }, + "n1820938101": { + "id": "n1820938101", + "loc": [-85.00563, 42.0887482] + }, + "n1820938102": { + "id": "n1820938102", + "loc": [-85.0326881, 42.0961245] + }, + "n1820938104": { + "id": "n1820938104", + "loc": [-85.0530448, 42.1038634] + }, + "n1820938105": { + "id": "n1820938105", + "loc": [-85.2625266, 41.9970639] + }, + "n1820938106": { + "id": "n1820938106", + "loc": [-85.2827556, 41.9823512] + }, + "n1820938107": { + "id": "n1820938107", + "loc": [-85.2784319, 41.9910752] + }, + "n1820938108": { + "id": "n1820938108", + "loc": [-85.0882099, 42.094393] + }, + "n1820938109": { + "id": "n1820938109", + "loc": [-85.5718484, 41.9645371] + }, + "n1820938110": { + "id": "n1820938110", + "loc": [-85.2559764, 42.0099317] + }, + "n1820938111": { + "id": "n1820938111", + "loc": [-85.2969284, 41.973179] + }, + "n1820938113": { + "id": "n1820938113", + "loc": [-85.3875055, 42.0019726] + }, + "n1820938114": { + "id": "n1820938114", + "loc": [-85.4250779, 42.0068199] + }, + "n1820938115": { + "id": "n1820938115", + "loc": [-85.0645367, 42.104889] + }, + "n1820938116": { + "id": "n1820938116", + "loc": [-85.1636762, 42.0623724] + }, + "n1820938117": { + "id": "n1820938117", + "loc": [-85.0757322, 42.1055935] + }, + "n1820938118": { + "id": "n1820938118", + "loc": [-85.3695197, 41.9981559] + }, + "n1820938120": { + "id": "n1820938120", + "loc": [-85.1297516, 42.0671027] + }, + "n1820938121": { + "id": "n1820938121", + "loc": [-85.1057448, 42.0875551] + }, + "n1820938122": { + "id": "n1820938122", + "loc": [-85.2805175, 41.9943182] + }, + "n1820938123": { + "id": "n1820938123", + "loc": [-85.2545173, 42.0040722] + }, + "n1820938124": { + "id": "n1820938124", + "loc": [-84.9966607, 42.0871319] + }, + "n1820938125": { + "id": "n1820938125", + "loc": [-85.0099899, 42.0904612] + }, + "n1820938126": { + "id": "n1820938126", + "loc": [-85.2489919, 42.0091102] + }, + "n1820938127": { + "id": "n1820938127", + "loc": [-85.0342706, 42.0979476] + }, + "n1820938128": { + "id": "n1820938128", + "loc": [-85.1080891, 42.0855884] + }, + "n1820938129": { + "id": "n1820938129", + "loc": [-85.0128183, 42.0905356] + }, + "n1820938130": { + "id": "n1820938130", + "loc": [-85.631608, 41.9434251] + }, + "n1820938131": { + "id": "n1820938131", + "loc": [-85.2551975, 42.0008524] + }, + "n1820938132": { + "id": "n1820938132", + "loc": [-85.6421823, 41.9096233] + }, + "n1820938133": { + "id": "n1820938133", + "loc": [-85.0125059, 42.0906284] + }, + "n1820938134": { + "id": "n1820938134", + "loc": [-85.5499358, 41.9701793] + }, + "n1820938135": { + "id": "n1820938135", + "loc": [-85.5472107, 41.9712323] + }, + "n1820938136": { + "id": "n1820938136", + "loc": [-85.2760758, 41.9958691] + }, + "n1820938137": { + "id": "n1820938137", + "loc": [-85.276678, 41.9960433] + }, + "n1820938138": { + "id": "n1820938138", + "loc": [-85.0570319, 42.1024731] + }, + "n1820938140": { + "id": "n1820938140", + "loc": [-85.2394325, 42.0227492] + }, + "n1820938142": { + "id": "n1820938142", + "loc": [-85.5666341, 41.9638829] + }, + "n1820938144": { + "id": "n1820938144", + "loc": [-85.258101, 41.9996353] + }, + "n1820938147": { + "id": "n1820938147", + "loc": [-85.2129645, 42.0413565] + }, + "n1820938149": { + "id": "n1820938149", + "loc": [-84.9962369, 42.0868373] + }, + "n1820938151": { + "id": "n1820938151", + "loc": [-85.2570386, 42.0084968] + }, + "n1820938153": { + "id": "n1820938153", + "loc": [-85.3971142, 42.0050285] + }, + "n1820938155": { + "id": "n1820938155", + "loc": [-85.1072093, 42.0855566] + }, + "n1820938157": { + "id": "n1820938157", + "loc": [-85.2840323, 41.9920959] + }, + "n1820938159": { + "id": "n1820938159", + "loc": [-85.1187924, 42.0816458] + }, + "n1820938161": { + "id": "n1820938161", + "loc": [-85.2681324, 41.9985788] + }, + "n1820938163": { + "id": "n1820938163", + "loc": [-85.0887034, 42.0984969] + }, + "n1820938165": { + "id": "n1820938165", + "loc": [-85.4133405, 42.0073141] + }, + "n1820938166": { + "id": "n1820938166", + "loc": [-85.0097445, 42.0902888] + }, + "n1820938167": { + "id": "n1820938167", + "loc": [-85.0828133, 42.1037388] + }, + "n1820938168": { + "id": "n1820938168", + "loc": [-85.0549599, 42.1030833] + }, + "n1820938169": { + "id": "n1820938169", + "loc": [-85.4571528, 42.0010421] + }, + "n1820938178": { + "id": "n1820938178", + "loc": [-85.2706644, 41.9975941] + }, + "n1820938180": { + "id": "n1820938180", + "loc": [-85.2258606, 42.0335794] + }, + "n1820938182": { + "id": "n1820938182", + "loc": [-85.2832276, 41.9814659] + }, + "n1820938184": { + "id": "n1820938184", + "loc": [-85.1082299, 42.0860928] + }, + "n1820938185": { + "id": "n1820938185", + "loc": [-85.3839392, 42.0022381] + }, + "n1820938186": { + "id": "n1820938186", + "loc": [-85.2772131, 41.995905] + }, + "n1820938187": { + "id": "n1820938187", + "loc": [-85.1044895, 42.0879214] + }, + "n1820938188": { + "id": "n1820938188", + "loc": [-85.2135267, 42.0407087] + }, + "n1820938189": { + "id": "n1820938189", + "loc": [-85.2543993, 42.0044628] + }, + "n1820938190": { + "id": "n1820938190", + "loc": [-85.1501793, 42.0617351] + }, + "n1820938191": { + "id": "n1820938191", + "loc": [-85.3350587, 41.9820469] + }, + "n1820938192": { + "id": "n1820938192", + "loc": [-85.1350731, 42.0655735] + }, + "n1820938193": { + "id": "n1820938193", + "loc": [-85.0404008, 42.1028843] + }, + "n1820938194": { + "id": "n1820938194", + "loc": [-85.6323161, 41.943042] + }, + "n1820938195": { + "id": "n1820938195", + "loc": [-85.1259593, 42.0742837] + }, + "n1820938196": { + "id": "n1820938196", + "loc": [-85.4562988, 42.0033758] + }, + "n1820938197": { + "id": "n1820938197", + "loc": [-85.256824, 42.0056826] + }, + "n1820938198": { + "id": "n1820938198", + "loc": [-85.2742103, 41.9963862] + }, + "n1820938199": { + "id": "n1820938199", + "loc": [-85.0380888, 42.1037877] + }, + "n1820938200": { + "id": "n1820938200", + "loc": [-85.47404, 41.9944721] + }, + "n1820938201": { + "id": "n1820938201", + "loc": [-85.103021, 42.087948] + }, + "n1820938202": { + "id": "n1820938202", + "loc": [-85.4030151, 42.0065113] + }, + "n1820938203": { + "id": "n1820938203", + "loc": [-85.2113981, 42.040735] + }, + "n1820938204": { + "id": "n1820938204", + "loc": [-85.2603433, 41.9965137] + }, + "n1820938206": { + "id": "n1820938206", + "loc": [-85.1669378, 42.0607634] + }, + "n1820938207": { + "id": "n1820938207", + "loc": [-85.0642027, 42.1046076] + }, + "n1820938208": { + "id": "n1820938208", + "loc": [-85.2812428, 41.9915696] + }, + "n1820938209": { + "id": "n1820938209", + "loc": [-85.0839559, 42.1038343] + }, + "n1820938210": { + "id": "n1820938210", + "loc": [-85.1239946, 42.0769368] + }, + "n1820938211": { + "id": "n1820938211", + "loc": [-85.2311177, 42.0283042] + }, + "n1820938212": { + "id": "n1820938212", + "loc": [-85.2791614, 41.9882682] + }, + "n1820938213": { + "id": "n1820938213", + "loc": [-85.2674941, 41.9987582] + }, + "n1820938214": { + "id": "n1820938214", + "loc": [-85.352787, 41.9919579] + }, + "n1820938215": { + "id": "n1820938215", + "loc": [-85.0874146, 42.0952182] + }, + "n1820938216": { + "id": "n1820938216", + "loc": [-85.0069711, 42.0877092] + }, + "n1820938217": { + "id": "n1820938217", + "loc": [-85.2059049, 42.0404004] + }, + "n1820938218": { + "id": "n1820938218", + "loc": [-85.2403552, 42.0227332] + }, + "n1820938219": { + "id": "n1820938219", + "loc": [-85.2492923, 42.0098915] + }, + "n1820938220": { + "id": "n1820938220", + "loc": [-85.269778, 41.9979541] + }, + "n1820938221": { + "id": "n1820938221", + "loc": [-85.2097673, 42.0389024] + }, + "n1820938222": { + "id": "n1820938222", + "loc": [-85.0845942, 42.1032015] + }, + "n1820938223": { + "id": "n1820938223", + "loc": [-84.993206, 42.0858142] + }, + "n1820938224": { + "id": "n1820938224", + "loc": [-85.2108187, 42.0402729] + }, + "n1820938225": { + "id": "n1820938225", + "loc": [-84.9893959, 42.0873043] + }, + "n1820938226": { + "id": "n1820938226", + "loc": [-85.2952332, 41.9719984] + }, + "n1820938227": { + "id": "n1820938227", + "loc": [-85.4100961, 42.0081536] + }, + "n1820938228": { + "id": "n1820938228", + "loc": [-85.3299088, 41.9785696] + }, + "n1820938229": { + "id": "n1820938229", + "loc": [-85.2258176, 42.0340097] + }, + "n1820938230": { + "id": "n1820938230", + "loc": [-85.3146739, 41.9711449] + }, + "n1820938231": { + "id": "n1820938231", + "loc": [-85.5447645, 41.9712801] + }, + "n1820938232": { + "id": "n1820938232", + "loc": [-85.5510087, 41.9705941] + }, + "n1820938233": { + "id": "n1820938233", + "loc": [-85.5122389, 41.9703445] + }, + "n1820938234": { + "id": "n1820938234", + "loc": [-85.2792687, 41.9865381] + }, + "n1820938235": { + "id": "n1820938235", + "loc": [-85.1475229, 42.0630151] + }, + "n1820938237": { + "id": "n1820938237", + "loc": [-85.0332889, 42.0996034] + }, + "n1820938238": { + "id": "n1820938238", + "loc": [-85.2588882, 41.9986877] + }, + "n1820938239": { + "id": "n1820938239", + "loc": [-85.0656458, 42.1050892] + }, + "n1820938240": { + "id": "n1820938240", + "loc": [-84.9913915, 42.086098] + }, + "n1820938241": { + "id": "n1820938241", + "loc": [-85.4752416, 41.9944402] + }, + "n1820938242": { + "id": "n1820938242", + "loc": [-85.1214304, 42.0791147] + }, + "n1820938243": { + "id": "n1820938243", + "loc": [-85.0075183, 42.0886925] + }, + "n1820938244": { + "id": "n1820938244", + "loc": [-85.1052888, 42.0872087] + }, + "n1820938245": { + "id": "n1820938245", + "loc": [-85.3104252, 41.9703393] + }, + "n1820938246": { + "id": "n1820938246", + "loc": [-85.232109, 42.0318158] + }, + "n1820938247": { + "id": "n1820938247", + "loc": [-85.0756075, 42.1059528] + }, + "n1820938248": { + "id": "n1820938248", + "loc": [-85.0075612, 42.0890866] + }, + "n1820938249": { + "id": "n1820938249", + "loc": [-85.1013312, 42.0897474] + }, + "n1820938250": { + "id": "n1820938250", + "loc": [-85.1168076, 42.0828919] + }, + "n1820938251": { + "id": "n1820938251", + "loc": [-85.2951367, 41.9723334] + }, + "n1820938252": { + "id": "n1820938252", + "loc": [-85.0879363, 42.0976053] + }, + "n1820938253": { + "id": "n1820938253", + "loc": [-85.0354763, 42.1021838] + }, + "n1820938254": { + "id": "n1820938254", + "loc": [-85.2379627, 42.0236339] + }, + "n1820938255": { + "id": "n1820938255", + "loc": [-85.1308245, 42.0685364] + }, + "n1820938256": { + "id": "n1820938256", + "loc": [-85.0914446, 42.0934774] + }, + "n1820938257": { + "id": "n1820938257", + "loc": [-85.2436812, 42.014069] + }, + "n1820938258": { + "id": "n1820938258", + "loc": [-85.0682529, 42.1056106] + }, + "n1820938259": { + "id": "n1820938259", + "loc": [-85.290652, 41.9766805] + }, + "n1820938260": { + "id": "n1820938260", + "loc": [-85.0133494, 42.0897434] + }, + "n1820938261": { + "id": "n1820938261", + "loc": [-85.2753047, 41.9949429] + }, + "n1820938262": { + "id": "n1820938262", + "loc": [-85.0314691, 42.0950788] + }, + "n1820938263": { + "id": "n1820938263", + "loc": [-85.3444786, 41.9908359] + }, + "n1820938264": { + "id": "n1820938264", + "loc": [-85.0443115, 42.1009061] + }, + "n1820938265": { + "id": "n1820938265", + "loc": [-85.0634853, 42.1043159] + }, + "n1820938267": { + "id": "n1820938267", + "loc": [-85.3978223, 42.0053952] + }, + "n1820938268": { + "id": "n1820938268", + "loc": [-85.0228659, 42.0911885] + }, + "n1820938269": { + "id": "n1820938269", + "loc": [-85.0220237, 42.0906272] + }, + "n1820938270": { + "id": "n1820938270", + "loc": [-85.1061525, 42.0863369] + }, + "n1820938271": { + "id": "n1820938271", + "loc": [-85.2382309, 42.0233708] + }, + "n1820938272": { + "id": "n1820938272", + "loc": [-85.310672, 41.9702755] + }, + "n1820938273": { + "id": "n1820938273", + "loc": [-85.1448192, 42.0652613] + }, + "n1820938274": { + "id": "n1820938274", + "loc": [-85.6036057, 41.9403766] + }, + "n1820938275": { + "id": "n1820938275", + "loc": [-85.0778941, 42.1032413] + }, + "n1820938276": { + "id": "n1820938276", + "loc": [-85.1279374, 42.0723974] + }, + "n1820938277": { + "id": "n1820938277", + "loc": [-85.2806635, 41.9847836] + }, + "n1820938278": { + "id": "n1820938278", + "loc": [-85.2653201, 41.9976352] + }, + "n1820938279": { + "id": "n1820938279", + "loc": [-85.0351665, 42.1001805] + }, + "n1820938280": { + "id": "n1820938280", + "loc": [-85.0718269, 42.1056253] + }, + "n1820938281": { + "id": "n1820938281", + "loc": [-85.2574248, 42.0075322] + }, + "n1820938282": { + "id": "n1820938282", + "loc": [-85.126666, 42.0740778] + }, + "n1820938283": { + "id": "n1820938283", + "loc": [-85.077705, 42.1034733] + }, + "n1820938284": { + "id": "n1820938284", + "loc": [-85.3535552, 41.9919045] + }, + "n1820938286": { + "id": "n1820938286", + "loc": [-85.2810711, 41.9866657] + }, + "n1820938287": { + "id": "n1820938287", + "loc": [-85.4567494, 42.0019885] + }, + "n1820938288": { + "id": "n1820938288", + "loc": [-85.2642419, 41.9992936] + }, + "n1820938289": { + "id": "n1820938289", + "loc": [-85.2643344, 41.9980925] + }, + "n1820938290": { + "id": "n1820938290", + "loc": [-85.3270335, 41.9776125] + }, + "n1820938291": { + "id": "n1820938291", + "loc": [-85.1200584, 42.0795077] + }, + "n1820938292": { + "id": "n1820938292", + "loc": [-85.2290792, 42.0340256] + }, + "n1820938293": { + "id": "n1820938293", + "loc": [-85.6015887, 41.9401372] + }, + "n1820938294": { + "id": "n1820938294", + "loc": [-85.5370869, 41.970488] + }, + "n1820938295": { + "id": "n1820938295", + "loc": [-85.3108866, 41.9698048] + }, + "n1820938297": { + "id": "n1820938297", + "loc": [-85.1556511, 42.0628184] + }, + "n1820938298": { + "id": "n1820938298", + "loc": [-85.0027922, 42.0875221] + }, + "n1820938300": { + "id": "n1820938300", + "loc": [-85.3873338, 42.0040614] + }, + "n1820938301": { + "id": "n1820938301", + "loc": [-85.0350753, 42.1004034] + }, + "n1820938302": { + "id": "n1820938302", + "loc": [-85.6239476, 41.9411906] + }, + "n1820938304": { + "id": "n1820938304", + "loc": [-85.0118246, 42.0897964] + }, + "n1820938306": { + "id": "n1820938306", + "loc": [-85.4796877, 41.995275] + }, + "n1820938307": { + "id": "n1820938307", + "loc": [-85.5388636, 41.9707856] + }, + "n1820938309": { + "id": "n1820938309", + "loc": [-85.2971902, 41.9727773] + }, + "n1820938310": { + "id": "n1820938310", + "loc": [-85.5426831, 41.9715513] + }, + "n1820938311": { + "id": "n1820938311", + "loc": [-85.2798373, 41.9836671] + }, + "n1820938312": { + "id": "n1820938312", + "loc": [-85.2432198, 42.0104017] + }, + "n1820938313": { + "id": "n1820938313", + "loc": [-85.2650412, 41.9987554] + }, + "n1820938317": { + "id": "n1820938317", + "loc": [-85.0015423, 42.0882386] + }, + "n1820938318": { + "id": "n1820938318", + "loc": [-85.1409783, 42.064879] + }, + "n1820938319": { + "id": "n1820938319", + "loc": [-85.1691908, 42.058995] + }, + "n1820938320": { + "id": "n1820938320", + "loc": [-85.1059165, 42.0864882] + }, + "n1820938321": { + "id": "n1820938321", + "loc": [-85.3664941, 41.9965771] + }, + "n1820938323": { + "id": "n1820938323", + "loc": [-85.3143198, 41.9710971] + }, + "n1820938324": { + "id": "n1820938324", + "loc": [-85.0016067, 42.0880675] + }, + "n1820938325": { + "id": "n1820938325", + "loc": [-85.0148139, 42.0887164] + }, + "n1820938326": { + "id": "n1820938326", + "loc": [-85.0324682, 42.0959056] + }, + "n1820938327": { + "id": "n1820938327", + "loc": [-85.0898661, 42.0939921] + }, + "n1820938328": { + "id": "n1820938328", + "loc": [-85.2556427, 42.0004936] + }, + "n1820938329": { + "id": "n1820938329", + "loc": [-85.6287112, 41.9407437] + }, + "n1820938330": { + "id": "n1820938330", + "loc": [-84.9913392, 42.0866701] + }, + "n1820938331": { + "id": "n1820938331", + "loc": [-85.2685777, 41.9984632] + }, + "n1820938332": { + "id": "n1820938332", + "loc": [-85.0078884, 42.0901614] + }, + "n1820938333": { + "id": "n1820938333", + "loc": [-84.999642, 42.0878616] + }, + "n1820938334": { + "id": "n1820938334", + "loc": [-85.0188909, 42.0899186] + }, + "n1820938335": { + "id": "n1820938335", + "loc": [-85.2830238, 41.9819843] + }, + "n1820938336": { + "id": "n1820938336", + "loc": [-85.2491421, 42.0096204] + }, + "n1820938337": { + "id": "n1820938337", + "loc": [-85.0585701, 42.1034295] + }, + "n1820938338": { + "id": "n1820938338", + "loc": [-85.0651965, 42.1051636] + }, + "n1820938339": { + "id": "n1820938339", + "loc": [-85.0583944, 42.104292] + }, + "n1820938340": { + "id": "n1820938340", + "loc": [-85.119876, 42.0801567] + }, + "n1820938341": { + "id": "n1820938341", + "loc": [-85.0943937, 42.0931323] + }, + "n1820938342": { + "id": "n1820938342", + "loc": [-85.1504583, 42.0613209] + }, + "n1820938343": { + "id": "n1820938343", + "loc": [-85.0425426, 42.1019836] + }, + "n1820938345": { + "id": "n1820938345", + "loc": [-84.9991391, 42.0878206] + }, + "n1820938346": { + "id": "n1820938346", + "loc": [-85.2563841, 42.0094614] + }, + "n1820938347": { + "id": "n1820938347", + "loc": [-85.0515387, 42.103297] + }, + "n1820938348": { + "id": "n1820938348", + "loc": [-85.0857261, 42.1003636] + }, + "n1820938349": { + "id": "n1820938349", + "loc": [-85.078971, 42.1029241] + }, + "n1820938350": { + "id": "n1820938350", + "loc": [-85.5699558, 41.958931] + }, + "n1820938351": { + "id": "n1820938351", + "loc": [-85.3181285, 41.9696533] + }, + "n1820938352": { + "id": "n1820938352", + "loc": [-85.5998506, 41.9402329] + }, + "n1820938353": { + "id": "n1820938353", + "loc": [-85.2567277, 42.000317] + }, + "n1820938354": { + "id": "n1820938354", + "loc": [-85.3082795, 41.9708338] + }, + "n1820938355": { + "id": "n1820938355", + "loc": [-85.3127856, 41.9692784] + }, + "n1820938356": { + "id": "n1820938356", + "loc": [-85.0340775, 42.1010721] + }, + "n1820938357": { + "id": "n1820938357", + "loc": [-85.3158111, 41.9706583] + }, + "n1820938359": { + "id": "n1820938359", + "loc": [-85.2312035, 42.0280412] + }, + "n1820938360": { + "id": "n1820938360", + "loc": [-85.2448613, 42.018477] + }, + "n1820938361": { + "id": "n1820938361", + "loc": [-85.29077, 41.9759068] + }, + "n1820938364": { + "id": "n1820938364", + "loc": [-85.3677387, 41.9976615] + }, + "n1820938365": { + "id": "n1820938365", + "loc": [-85.0785204, 42.1030355] + }, + "n1820938366": { + "id": "n1820938366", + "loc": [-85.2262039, 42.0333722] + }, + "n1820938367": { + "id": "n1820938367", + "loc": [-85.1226011, 42.0780902] + }, + "n1820938368": { + "id": "n1820938368", + "loc": [-85.3229673, 41.971129] + }, + "n1820938369": { + "id": "n1820938369", + "loc": [-85.385334, 42.0000056] + }, + "n1820938370": { + "id": "n1820938370", + "loc": [-85.000098, 42.0879094] + }, + "n1820938372": { + "id": "n1820938372", + "loc": [-85.3852481, 42.0025091] + }, + "n1820938373": { + "id": "n1820938373", + "loc": [-85.3770513, 41.9982515] + }, + "n1820938374": { + "id": "n1820938374", + "loc": [-85.6278314, 41.9405362] + }, + "n1820938375": { + "id": "n1820938375", + "loc": [-85.6355133, 41.9344068] + }, + "n1820938376": { + "id": "n1820938376", + "loc": [-85.635642, 41.9324753] + }, + "n1820938377": { + "id": "n1820938377", + "loc": [-85.3154463, 41.970778] + }, + "n1820938378": { + "id": "n1820938378", + "loc": [-85.0920334, 42.093411] + }, + "n1820938379": { + "id": "n1820938379", + "loc": [-85.3269155, 41.9722297] + }, + "n1820938381": { + "id": "n1820938381", + "loc": [-85.1134334, 42.0849184] + }, + "n1820938382": { + "id": "n1820938382", + "loc": [-85.005968, 42.088585] + }, + "n1820938384": { + "id": "n1820938384", + "loc": [-85.1245203, 42.0757183] + }, + "n1820938385": { + "id": "n1820938385", + "loc": [-85.020704, 42.0905396] + }, + "n1820938386": { + "id": "n1820938386", + "loc": [-85.119585, 42.0808984] + }, + "n1820938387": { + "id": "n1820938387", + "loc": [-85.0072447, 42.0880117] + }, + "n1820938388": { + "id": "n1820938388", + "loc": [-85.2742908, 41.9960273] + }, + "n1820938389": { + "id": "n1820938389", + "loc": [-85.3275807, 41.9696852] + }, + "n1820938390": { + "id": "n1820938390", + "loc": [-85.2385635, 42.0231556] + }, + "n1820938392": { + "id": "n1820938392", + "loc": [-85.0202856, 42.0900778] + }, + "n1820938393": { + "id": "n1820938393", + "loc": [-85.2067847, 42.0395398] + }, + "n1820938394": { + "id": "n1820938394", + "loc": [-85.5183544, 41.9713495] + }, + "n1820938396": { + "id": "n1820938396", + "loc": [-85.5073037, 41.9736787] + }, + "n1820938397": { + "id": "n1820938397", + "loc": [-85.2519638, 42.0114225] + }, + "n1820938398": { + "id": "n1820938398", + "loc": [-85.287487, 41.9793285] + }, + "n1820938399": { + "id": "n1820938399", + "loc": [-85.2298088, 42.0336431] + }, + "n1820938400": { + "id": "n1820938400", + "loc": [-85.229444, 42.0339141] + }, + "n1820938401": { + "id": "n1820938401", + "loc": [-85.2421791, 42.0220239] + }, + "n1820938402": { + "id": "n1820938402", + "loc": [-85.2976687, 41.9737612] + }, + "n1820938403": { + "id": "n1820938403", + "loc": [-85.3622069, 41.993473] + }, + "n1820938404": { + "id": "n1820938404", + "loc": [-85.2465458, 42.014906] + }, + "n1820938405": { + "id": "n1820938405", + "loc": [-85.5724663, 41.9639412] + }, + "n1820938406": { + "id": "n1820938406", + "loc": [-85.3708501, 41.9982037] + }, + "n1820938408": { + "id": "n1820938408", + "loc": [-85.2564592, 42.0055311] + }, + "n1820938409": { + "id": "n1820938409", + "loc": [-85.1192846, 42.0810856] + }, + "n1820938410": { + "id": "n1820938410", + "loc": [-85.5623812, 41.971663] + }, + "n1820938411": { + "id": "n1820938411", + "loc": [-85.3221948, 41.9719665] + }, + "n1820938412": { + "id": "n1820938412", + "loc": [-85.5168738, 41.9710305] + }, + "n1820938413": { + "id": "n1820938413", + "loc": [-85.4546852, 42.0061127] + }, + "n1820938414": { + "id": "n1820938414", + "loc": [-85.5896153, 41.9463617] + }, + "n1820938415": { + "id": "n1820938415", + "loc": [-85.2978189, 41.9722138] + }, + "n1820938416": { + "id": "n1820938416", + "loc": [-85.1021681, 42.0883581] + }, + "n1820938417": { + "id": "n1820938417", + "loc": [-85.2797193, 41.9912984] + }, + "n1820938419": { + "id": "n1820938419", + "loc": [-85.2362461, 42.0248533] + }, + "n1820938420": { + "id": "n1820938420", + "loc": [-85.4833639, 41.9846252] + }, + "n1820938422": { + "id": "n1820938422", + "loc": [-85.3281064, 41.9689433] + }, + "n1820938424": { + "id": "n1820938424", + "loc": [-85.2416963, 42.0130088] + }, + "n1820938425": { + "id": "n1820938425", + "loc": [-85.5718655, 41.9564577] + }, + "n1820938426": { + "id": "n1820938426", + "loc": [-85.0512812, 42.1030701] + }, + "n1820938427": { + "id": "n1820938427", + "loc": [-85.1273527, 42.0723616] + }, + "n1820938428": { + "id": "n1820938428", + "loc": [-85.0215033, 42.0904083] + }, + "n1820938429": { + "id": "n1820938429", + "loc": [-85.6169953, 41.942228] + }, + "n1820938430": { + "id": "n1820938430", + "loc": [-85.2829165, 41.9907243] + }, + "n1820938431": { + "id": "n1820938431", + "loc": [-85.2240796, 42.0374203] + }, + "n1820938432": { + "id": "n1820938432", + "loc": [-85.0167598, 42.0898442] + }, + "n1820938433": { + "id": "n1820938433", + "loc": [-85.2132649, 42.0411334] + }, + "n1820938434": { + "id": "n1820938434", + "loc": [-85.2293839, 42.031513] + }, + "n1820938435": { + "id": "n1820938435", + "loc": [-85.1203374, 42.0792608] + }, + "n1820938436": { + "id": "n1820938436", + "loc": [-85.109571, 42.086268] + }, + "n1820938437": { + "id": "n1820938437", + "loc": [-85.1079026, 42.0853842] + }, + "n1820938438": { + "id": "n1820938438", + "loc": [-85.109237, 42.0862413] + }, + "n1820938439": { + "id": "n1820938439", + "loc": [-85.2259936, 42.0350831] + }, + "n1820938440": { + "id": "n1820938440", + "loc": [-85.3669705, 41.99679] + }, + "n1820938441": { + "id": "n1820938441", + "loc": [-85.2418143, 42.0223507] + }, + "n1820938442": { + "id": "n1820938442", + "loc": [-85.3101248, 41.9702515] + }, + "n1820938443": { + "id": "n1820938443", + "loc": [-85.069315, 42.1059688] + }, + "n1820938444": { + "id": "n1820938444", + "loc": [-85.205862, 42.0410378] + }, + "n1820938445": { + "id": "n1820938445", + "loc": [-85.0388076, 42.1036604] + }, + "n1820938446": { + "id": "n1820938446", + "loc": [-85.2225389, 42.0370115] + }, + "n1820938447": { + "id": "n1820938447", + "loc": [-85.3241474, 41.9719346] + }, + "n1820938448": { + "id": "n1820938448", + "loc": [-85.3125496, 41.9690789] + }, + "n1820938449": { + "id": "n1820938449", + "loc": [-85.1146497, 42.0857039] + }, + "n1820938450": { + "id": "n1820938450", + "loc": [-85.1333944, 42.0714963] + }, + "n1820938451": { + "id": "n1820938451", + "loc": [-85.5619306, 41.9720937] + }, + "n1820938452": { + "id": "n1820938452", + "loc": [-85.2553651, 42.0006479] + }, + "n1820938453": { + "id": "n1820938453", + "loc": [-85.3151137, 41.9710093] + }, + "n1820938454": { + "id": "n1820938454", + "loc": [-85.2592315, 41.9977947] + }, + "n1820938455": { + "id": "n1820938455", + "loc": [-85.2655723, 41.9995966] + }, + "n1820938456": { + "id": "n1820938456", + "loc": [-85.4820652, 41.9959233] + }, + "n1820938459": { + "id": "n1820938459", + "loc": [-85.450737, 42.0055068] + }, + "n1820938460": { + "id": "n1820938460", + "loc": [-85.2428658, 42.0205573] + }, + "n1820938461": { + "id": "n1820938461", + "loc": [-85.0835576, 42.1021559] + }, + "n1820938462": { + "id": "n1820938462", + "loc": [-85.244636, 42.0194733] + }, + "n1820938463": { + "id": "n1820938463", + "loc": [-85.5702562, 41.9581332] + }, + "n1820938465": { + "id": "n1820938465", + "loc": [-85.5680031, 41.9659515] + }, + "n1820938467": { + "id": "n1820938467", + "loc": [-85.2798752, 41.9948353] + }, + "n1820938468": { + "id": "n1820938468", + "loc": [-85.0477407, 42.1015537] + }, + "n1820938469": { + "id": "n1820938469", + "loc": [-85.6403842, 41.913732] + }, + "n1820938470": { + "id": "n1820938470", + "loc": [-85.0396029, 42.103289] + }, + "n1820938471": { + "id": "n1820938471", + "loc": [-85.2824702, 41.9907777] + }, + "n1820938472": { + "id": "n1820938472", + "loc": [-85.2969284, 41.9735538] + }, + "n1820938474": { + "id": "n1820938474", + "loc": [-85.401041, 42.0070853] + }, + "n1820938475": { + "id": "n1820938475", + "loc": [-85.4116625, 42.0073883] + }, + "n1820938476": { + "id": "n1820938476", + "loc": [-85.0437764, 42.1016214] + }, + "n1820938477": { + "id": "n1820938477", + "loc": [-85.3643269, 41.9958436] + }, + "n1820938478": { + "id": "n1820938478", + "loc": [-85.3895182, 42.0009465] + }, + "n1820938479": { + "id": "n1820938479", + "loc": [-85.636157, 41.9333373] + }, + "n1820938480": { + "id": "n1820938480", + "loc": [-85.2811355, 41.9858044] + }, + "n1820938481": { + "id": "n1820938481", + "loc": [-85.0239052, 42.092153] + }, + "n1820938482": { + "id": "n1820938482", + "loc": [-85.2558798, 42.0053557] + }, + "n1820938483": { + "id": "n1820938483", + "loc": [-85.2544422, 42.0047339] + }, + "n1820938484": { + "id": "n1820938484", + "loc": [-85.4864683, 41.9843183] + }, + "n1820938485": { + "id": "n1820938485", + "loc": [-85.2554185, 42.0031075] + }, + "n1820938486": { + "id": "n1820938486", + "loc": [-85.3082795, 41.9712486] + }, + "n1820938487": { + "id": "n1820938487", + "loc": [-85.2433378, 42.0133436] + }, + "n1820938488": { + "id": "n1820938488", + "loc": [-85.0216696, 42.0904162] + }, + "n1820938489": { + "id": "n1820938489", + "loc": [-85.2546138, 42.0050289] + }, + "n1820938490": { + "id": "n1820938490", + "loc": [-85.2717521, 41.9977349] + }, + "n1820938491": { + "id": "n1820938491", + "loc": [-85.0100489, 42.0908195] + }, + "n1820938492": { + "id": "n1820938492", + "loc": [-85.207879, 42.0392211] + }, + "n1820938493": { + "id": "n1820938493", + "loc": [-85.0007363, 42.0882836] + }, + "n1820938494": { + "id": "n1820938494", + "loc": [-85.5775303, 41.9504097] + }, + "n1820938495": { + "id": "n1820938495", + "loc": [-85.1131584, 42.0847683] + }, + "n1820938496": { + "id": "n1820938496", + "loc": [-85.0887825, 42.0941633] + }, + "n1820938497": { + "id": "n1820938497", + "loc": [-85.1185926, 42.0818938] + }, + "n1820938498": { + "id": "n1820938498", + "loc": [-85.2748487, 41.9948712] + }, + "n1820938499": { + "id": "n1820938499", + "loc": [-85.2566952, 42.0090788] + }, + "n1820938500": { + "id": "n1820938500", + "loc": [-85.0774757, 42.1036234] + }, + "n1820938501": { + "id": "n1820938501", + "loc": [-85.4190869, 42.008903] + }, + "n1820938502": { + "id": "n1820938502", + "loc": [-85.1140395, 42.0850577] + }, + "n1820938503": { + "id": "n1820938503", + "loc": [-85.1136104, 42.0848627] + }, + "n1820938504": { + "id": "n1820938504", + "loc": [-85.5828089, 41.9480638] + }, + "n1820938505": { + "id": "n1820938505", + "loc": [-85.625514, 41.9405202] + }, + "n1820938506": { + "id": "n1820938506", + "loc": [-85.2063384, 42.0398322] + }, + "n1820938507": { + "id": "n1820938507", + "loc": [-85.3395476, 41.9851636] + }, + "n1820938508": { + "id": "n1820938508", + "loc": [-85.0328853, 42.0963606] + }, + "n1820938510": { + "id": "n1820938510", + "loc": [-85.1170369, 42.0843702] + }, + "n1820938511": { + "id": "n1820938511", + "loc": [-85.2784748, 41.9868487] + }, + "n1820938512": { + "id": "n1820938512", + "loc": [-85.6310501, 41.9435528] + }, + "n1820938514": { + "id": "n1820938514", + "loc": [-85.0334284, 42.0981028] + }, + "n1820938515": { + "id": "n1820938515", + "loc": [-84.9912091, 42.0868226] + }, + "n1820938516": { + "id": "n1820938516", + "loc": [-85.2806141, 41.9940351] + }, + "n1820938517": { + "id": "n1820938517", + "loc": [-85.1233025, 42.0776734] + }, + "n1820938518": { + "id": "n1820938518", + "loc": [-85.2047891, 42.0429023] + }, + "n1820938519": { + "id": "n1820938519", + "loc": [-85.1475443, 42.0648312] + }, + "n1820938520": { + "id": "n1820938520", + "loc": [-85.2644685, 41.9990891] + }, + "n1820938521": { + "id": "n1820938521", + "loc": [-85.1056281, 42.0872553] + }, + "n1820938522": { + "id": "n1820938522", + "loc": [-85.4813184, 41.9930105] + }, + "n1820938523": { + "id": "n1820938523", + "loc": [-85.321551, 41.9722936] + }, + "n1820938524": { + "id": "n1820938524", + "loc": [-85.1564664, 42.0631211] + }, + "n1820938525": { + "id": "n1820938525", + "loc": [-85.4149885, 42.0079144] + }, + "n1820938527": { + "id": "n1820938527", + "loc": [-85.2861888, 41.9803653] + }, + "n1820938528": { + "id": "n1820938528", + "loc": [-85.1301379, 42.0682178] + }, + "n1820938529": { + "id": "n1820938529", + "loc": [-85.4156537, 42.0084247] + }, + "n1820938530": { + "id": "n1820938530", + "loc": [-85.245151, 42.0176082] + }, + "n1820938531": { + "id": "n1820938531", + "loc": [-85.457818, 42.0001651] + }, + "n1820938532": { + "id": "n1820938532", + "loc": [-85.310951, 41.9694538] + }, + "n1820938533": { + "id": "n1820938533", + "loc": [-85.1509089, 42.0611298] + }, + "n1820938534": { + "id": "n1820938534", + "loc": [-85.1108249, 42.086321] + }, + "n1820938535": { + "id": "n1820938535", + "loc": [-85.1260344, 42.0740687] + }, + "n1820938536": { + "id": "n1820938536", + "loc": [-85.4561228, 42.0042791] + }, + "n1820938537": { + "id": "n1820938537", + "loc": [-85.2805082, 41.9945761] + }, + "n1820938538": { + "id": "n1820938538", + "loc": [-85.273352, 41.9981921] + }, + "n1820938539": { + "id": "n1820938539", + "loc": [-85.1084216, 42.0864364] + }, + "n1820938540": { + "id": "n1820938540", + "loc": [-85.5009737, 41.9773637] + }, + "n1820938541": { + "id": "n1820938541", + "loc": [-85.3960843, 42.0051879] + }, + "n1820938542": { + "id": "n1820938542", + "loc": [-85.3425088, 41.9865034] + }, + "n1820938545": { + "id": "n1820938545", + "loc": [-84.9937907, 42.0860849] + }, + "n1820938546": { + "id": "n1820938546", + "loc": [-85.1084176, 42.086065] + }, + "n1820938547": { + "id": "n1820938547", + "loc": [-85.3492851, 41.9924786] + }, + "n1820938548": { + "id": "n1820938548", + "loc": [-85.2512235, 42.0101147] + }, + "n1820938549": { + "id": "n1820938549", + "loc": [-85.3717298, 41.9979326] + }, + "n1820938551": { + "id": "n1820938551", + "loc": [-85.2573712, 42.0064081] + }, + "n1820938552": { + "id": "n1820938552", + "loc": [-85.2514596, 42.010139] + }, + "n1820938553": { + "id": "n1820938553", + "loc": [-85.416512, 42.0088073] + }, + "n1820938554": { + "id": "n1820938554", + "loc": [-85.4365964, 42.0061606] + }, + "n1820938555": { + "id": "n1820938555", + "loc": [-85.4552431, 42.0057301] + }, + "n1820938556": { + "id": "n1820938556", + "loc": [-85.2916283, 41.9778769] + }, + "n1820938557": { + "id": "n1820938557", + "loc": [-85.100709, 42.0902968] + }, + "n1820938558": { + "id": "n1820938558", + "loc": [-85.4703064, 41.9965771] + }, + "n1820938559": { + "id": "n1820938559", + "loc": [-85.3134722, 41.9696134] + }, + "n1820938560": { + "id": "n1820938560", + "loc": [-85.4834213, 41.9885768] + }, + "n1820938561": { + "id": "n1820938561", + "loc": [-85.2740641, 41.9975236] + }, + "n1820938562": { + "id": "n1820938562", + "loc": [-85.148334, 42.0623405] + }, + "n1820938563": { + "id": "n1820938563", + "loc": [-85.2358598, 42.0263675] + }, + "n1820938565": { + "id": "n1820938565", + "loc": [-85.2902979, 41.9790892] + }, + "n1820938566": { + "id": "n1820938566", + "loc": [-85.2528865, 42.0112869] + }, + "n1820938567": { + "id": "n1820938567", + "loc": [-85.2595319, 41.9973003] + }, + "n1820938568": { + "id": "n1820938568", + "loc": [-85.071151, 42.105689] + }, + "n1820938570": { + "id": "n1820938570", + "loc": [-85.299278, 41.9732188] + }, + "n1820938571": { + "id": "n1820938571", + "loc": [-85.0354669, 42.1024771] + }, + "n1820938583": { + "id": "n1820938583", + "loc": [-85.3313937, 41.972562] + }, + "n1820938585": { + "id": "n1820938585", + "loc": [-85.0756933, 42.1058334] + }, + "n1820938587": { + "id": "n1820938587", + "loc": [-85.3130324, 41.9694219] + }, + "n1820938590": { + "id": "n1820938590", + "loc": [-85.0934227, 42.0931681] + }, + "n1820938592": { + "id": "n1820938592", + "loc": [-85.3517956, 41.9922553] + }, + "n1820938593": { + "id": "n1820938593", + "loc": [-85.4023971, 42.0065169] + }, + "n1820938594": { + "id": "n1820938594", + "loc": [-85.3506798, 41.9925583] + }, + "n1820938595": { + "id": "n1820938595", + "loc": [-85.3673524, 41.9971193] + }, + "n1820938596": { + "id": "n1820938596", + "loc": [-85.1073608, 42.0853523] + }, + "n1820938597": { + "id": "n1820938597", + "loc": [-85.2976579, 41.972477] + }, + "n1820938598": { + "id": "n1820938598", + "loc": [-85.5616517, 41.9694295] + }, + "n1820938599": { + "id": "n1820938599", + "loc": [-85.3552074, 41.9921915] + }, + "n1820938600": { + "id": "n1820938600", + "loc": [-85.4665126, 41.9999953] + }, + "n1820938601": { + "id": "n1820938601", + "loc": [-85.2740695, 41.9966226] + }, + "n1820938602": { + "id": "n1820938602", + "loc": [-85.279376, 41.9886669] + }, + "n1820938603": { + "id": "n1820938603", + "loc": [-85.0771109, 42.1040413] + }, + "n1820938604": { + "id": "n1820938604", + "loc": [-85.2636049, 41.9977895] + }, + "n1820938605": { + "id": "n1820938605", + "loc": [-85.3762145, 41.9976456] + }, + "n1820938606": { + "id": "n1820938606", + "loc": [-85.2321369, 42.0289577] + }, + "n1820938620": { + "id": "n1820938620", + "loc": [-85.4947724, 41.9776189] + }, + "n1820938622": { + "id": "n1820938622", + "loc": [-85.1547069, 42.0622768] + }, + "n1820938624": { + "id": "n1820938624", + "loc": [-85.0005056, 42.0880249] + }, + "n1820938626": { + "id": "n1820938626", + "loc": [-85.0735596, 42.1059357] + }, + "n1820938628": { + "id": "n1820938628", + "loc": [-85.4665298, 41.99932] + }, + "n1820938629": { + "id": "n1820938629", + "loc": [-85.434515, 42.0065273] + }, + "n1820938630": { + "id": "n1820938630", + "loc": [-85.117462, 42.0823823] + }, + "n1820938631": { + "id": "n1820938631", + "loc": [-85.0131777, 42.0890707] + }, + "n1820938632": { + "id": "n1820938632", + "loc": [-85.0875326, 42.0961934] + }, + "n1820938634": { + "id": "n1820938634", + "loc": [-85.6433839, 41.9112042] + }, + "n1820938635": { + "id": "n1820938635", + "loc": [-85.1366181, 42.064969] + }, + "n1820938636": { + "id": "n1820938636", + "loc": [-85.073109, 42.1057925] + }, + "n1820938638": { + "id": "n1820938638", + "loc": [-85.161406, 42.0632541] + }, + "n1820938640": { + "id": "n1820938640", + "loc": [-85.6343932, 41.9188845] + }, + "n1820938642": { + "id": "n1820938642", + "loc": [-85.2500004, 42.010306] + }, + "n1820938644": { + "id": "n1820938644", + "loc": [-85.291918, 41.9753166] + }, + "n1820938663": { + "id": "n1820938663", + "loc": [-85.2841611, 41.9916812] + }, + "n1820938664": { + "id": "n1820938664", + "loc": [-85.1052955, 42.0868134] + }, + "n1820938665": { + "id": "n1820938665", + "loc": [-85.4606118, 42.0005534] + }, + "n1820938666": { + "id": "n1820938666", + "loc": [-85.5672736, 41.9642922] + }, + "n1820938667": { + "id": "n1820938667", + "loc": [-85.6348481, 41.9316932] + }, + "n1820938668": { + "id": "n1820938668", + "loc": [-85.0224904, 42.0909576] + }, + "n1820938669": { + "id": "n1820938669", + "loc": [-85.0133856, 42.0899755] + }, + "n1820938670": { + "id": "n1820938670", + "loc": [-85.344779, 41.991139] + }, + "n1820938671": { + "id": "n1820938671", + "loc": [-85.632874, 41.9425313] + }, + "n1820938673": { + "id": "n1820938673", + "loc": [-85.4941501, 41.9779698] + }, + "n1820938675": { + "id": "n1820938675", + "loc": [-85.0862559, 42.0997519] + }, + "n1820938676": { + "id": "n1820938676", + "loc": [-85.0097874, 42.0898032] + }, + "n1820938678": { + "id": "n1820938678", + "loc": [-84.9913553, 42.0863675] + }, + "n1820938680": { + "id": "n1820938680", + "loc": [-85.0533666, 42.1038315] + }, + "n1820938682": { + "id": "n1820938682", + "loc": [-85.2950294, 41.9743914] + }, + "n1820938684": { + "id": "n1820938684", + "loc": [-85.2517385, 42.0104499] + }, + "n1820938686": { + "id": "n1820938686", + "loc": [-85.0247971, 42.0922514] + }, + "n1820938688": { + "id": "n1820938688", + "loc": [-85.0807037, 42.1026017] + }, + "n1820938690": { + "id": "n1820938690", + "loc": [-85.52462, 41.9722748] + }, + "n1820938694": { + "id": "n1820938694", + "loc": [-85.2586535, 41.9988818] + }, + "n1820938695": { + "id": "n1820938695", + "loc": [-85.0931612, 42.092948] + }, + "n1820938697": { + "id": "n1820938697", + "loc": [-85.2470822, 42.016564] + }, + "n1820938698": { + "id": "n1820938698", + "loc": [-85.4143018, 42.0075158] + }, + "n1820938699": { + "id": "n1820938699", + "loc": [-85.0771484, 42.104487] + }, + "n1820938700": { + "id": "n1820938700", + "loc": [-85.0291208, 42.0942775] + }, + "n1820938701": { + "id": "n1820938701", + "loc": [-85.6367964, 41.9185971] + }, + "n1820938702": { + "id": "n1820938702", + "loc": [-85.085419, 42.1010693] + }, + "n1820938703": { + "id": "n1820938703", + "loc": [-85.0583877, 42.1040584] + }, + "n1820938705": { + "id": "n1820938705", + "loc": [-85.2573379, 42.0003182] + }, + "n1820938706": { + "id": "n1820938706", + "loc": [-85.2655937, 41.9981575] + }, + "n1820938707": { + "id": "n1820938707", + "loc": [-85.023181, 42.0915758] + }, + "n1820938708": { + "id": "n1820938708", + "loc": [-85.2318687, 42.0274674] + }, + "n1820938709": { + "id": "n1820938709", + "loc": [-85.1056389, 42.0866184] + }, + "n1820938710": { + "id": "n1820938710", + "loc": [-85.5276265, 41.9700978] + }, + "n1820938711": { + "id": "n1820938711", + "loc": [-85.0864128, 42.0945761] + }, + "n1820938712": { + "id": "n1820938712", + "loc": [-84.9897071, 42.0871888] + }, + "n1820938714": { + "id": "n1820938714", + "loc": [-85.1328845, 42.0665611] + }, + "n1820938715": { + "id": "n1820938715", + "loc": [-85.0336537, 42.0991377] + }, + "n1820938716": { + "id": "n1820938716", + "loc": [-85.087597, 42.0986692] + }, + "n1820938717": { + "id": "n1820938717", + "loc": [-85.1241394, 42.0761882] + }, + "n1820938718": { + "id": "n1820938718", + "loc": [-85.1176002, 42.0847723] + }, + "n1820938719": { + "id": "n1820938719", + "loc": [-85.2423615, 42.0216572] + }, + "n1820938721": { + "id": "n1820938721", + "loc": [-85.2196378, 42.0387908] + }, + "n1820938722": { + "id": "n1820938722", + "loc": [-85.0164272, 42.0890082] + }, + "n1820938723": { + "id": "n1820938723", + "loc": [-85.5917182, 41.9451807] + }, + "n1820938724": { + "id": "n1820938724", + "loc": [-85.2458806, 42.0086638] + }, + "n1820938725": { + "id": "n1820938725", + "loc": [-85.1264474, 42.0740527] + }, + "n1820938726": { + "id": "n1820938726", + "loc": [-85.1961631, 42.04738] + }, + "n1820938727": { + "id": "n1820938727", + "loc": [-85.2784643, 41.9943648] + }, + "n1820938728": { + "id": "n1820938728", + "loc": [-85.2905554, 41.9763216] + }, + "n1820938729": { + "id": "n1820938729", + "loc": [-85.2913386, 41.9771511] + }, + "n1820938730": { + "id": "n1820938730", + "loc": [-85.0112519, 42.0895683] + }, + "n1820938732": { + "id": "n1820938732", + "loc": [-85.4290261, 42.0064531] + }, + "n1820938733": { + "id": "n1820938733", + "loc": [-85.3867073, 42.0031629] + }, + "n1820938734": { + "id": "n1820938734", + "loc": [-85.4943647, 41.9836005] + }, + "n1820938735": { + "id": "n1820938735", + "loc": [-85.4900303, 41.9860728] + }, + "n1820938736": { + "id": "n1820938736", + "loc": [-85.0866153, 42.0944539] + }, + "n1820938737": { + "id": "n1820938737", + "loc": [-85.0869532, 42.0990911] + }, + "n1820938738": { + "id": "n1820938738", + "loc": [-85.6321659, 41.9208851] + }, + "n1820938739": { + "id": "n1820938739", + "loc": [-85.5930485, 41.9433453] + }, + "n1820938740": { + "id": "n1820938740", + "loc": [-85.0406851, 42.102733] + }, + "n1820938741": { + "id": "n1820938741", + "loc": [-85.1051131, 42.0869846] + }, + "n1820938742": { + "id": "n1820938742", + "loc": [-85.1377554, 42.0648893] + }, + "n1820938743": { + "id": "n1820938743", + "loc": [-85.2795694, 41.994604] + }, + "n1820938745": { + "id": "n1820938745", + "loc": [-85.4948153, 41.9826594] + }, + "n1820938746": { + "id": "n1820938746", + "loc": [-85.4488916, 42.0050923] + }, + "n1820938747": { + "id": "n1820938747", + "loc": [-85.1052526, 42.0866144] + }, + "n1820938748": { + "id": "n1820938748", + "loc": [-85.1468749, 42.0653991] + }, + "n1820938749": { + "id": "n1820938749", + "loc": [-85.0856886, 42.1006104] + }, + "n1820938750": { + "id": "n1820938750", + "loc": [-85.2144022, 42.0404004] + }, + "n1820938751": { + "id": "n1820938751", + "loc": [-85.277771, 41.9907458] + }, + "n1820938752": { + "id": "n1820938752", + "loc": [-85.1474542, 42.0636149] + }, + "n1820938753": { + "id": "n1820938753", + "loc": [-85.0820515, 42.1028075] + }, + "n1820938754": { + "id": "n1820938754", + "loc": [-85.1122948, 42.08525] + }, + "n1820938756": { + "id": "n1820938756", + "loc": [-85.0173352, 42.0901933] + }, + "n1820938757": { + "id": "n1820938757", + "loc": [-85.2259721, 42.0354018] + }, + "n1820938758": { + "id": "n1820938758", + "loc": [-85.0872389, 42.0987795] + }, + "n1820938759": { + "id": "n1820938759", + "loc": [-85.2291436, 42.031874] + }, + "n1820938760": { + "id": "n1820938760", + "loc": [-85.3802485, 42.0016002] + }, + "n1820938761": { + "id": "n1820938761", + "loc": [-85.3945822, 42.0057938] + }, + "n1820938762": { + "id": "n1820938762", + "loc": [-85.5273237, 41.9713017] + }, + "n1820938763": { + "id": "n1820938763", + "loc": [-85.2868862, 41.9798629] + }, + "n1820938764": { + "id": "n1820938764", + "loc": [-85.2516677, 42.0107899] + }, + "n1820938766": { + "id": "n1820938766", + "loc": [-85.3183002, 41.9693103] + }, + "n1820938768": { + "id": "n1820938768", + "loc": [-85.2159042, 42.0401932] + }, + "n1820938770": { + "id": "n1820938770", + "loc": [-85.0094481, 42.0911141] + }, + "n1820938771": { + "id": "n1820938771", + "loc": [-85.0244538, 42.0922155] + }, + "n1820938772": { + "id": "n1820938772", + "loc": [-85.231697, 42.028862] + }, + "n1820938773": { + "id": "n1820938773", + "loc": [-85.2102394, 42.0390617] + }, + "n1820938774": { + "id": "n1820938774", + "loc": [-85.2463419, 42.0151212] + }, + "n1820938775": { + "id": "n1820938775", + "loc": [-85.0726195, 42.1056424] + }, + "n1820938776": { + "id": "n1820938776", + "loc": [-85.0060431, 42.0883262] + }, + "n1820938778": { + "id": "n1820938778", + "loc": [-85.425889, 42.0056982] + }, + "n1820938779": { + "id": "n1820938779", + "loc": [-85.1183042, 42.0820638] + }, + "n1820938780": { + "id": "n1820938780", + "loc": [-85.441596, 42.0058257] + }, + "n1820938781": { + "id": "n1820938781", + "loc": [-85.1124879, 42.0847086] + }, + "n1820938782": { + "id": "n1820938782", + "loc": [-85.2452733, 42.0153894] + }, + "n1820938783": { + "id": "n1820938783", + "loc": [-85.2741191, 41.9969244] + }, + "n1820938784": { + "id": "n1820938784", + "loc": [-85.2829487, 41.9822236] + }, + "n1820938785": { + "id": "n1820938785", + "loc": [-85.3202743, 41.972142] + }, + "n1820938786": { + "id": "n1820938786", + "loc": [-85.2345402, 42.0266465] + }, + "n1820938787": { + "id": "n1820938787", + "loc": [-85.3037626, 41.9724611] + }, + "n1820938789": { + "id": "n1820938789", + "loc": [-85.2474792, 42.0161973] + }, + "n1820938790": { + "id": "n1820938790", + "loc": [-85.2951045, 41.9727323] + }, + "n1820938791": { + "id": "n1820938791", + "loc": [-85.322345, 41.9712726] + }, + "n1820938792": { + "id": "n1820938792", + "loc": [-85.2402372, 42.0110394] + }, + "n1820938793": { + "id": "n1820938793", + "loc": [-85.5135693, 41.9698659] + }, + "n1820938794": { + "id": "n1820938794", + "loc": [-85.4695339, 41.9967366] + }, + "n1820938796": { + "id": "n1820938796", + "loc": [-85.0418492, 42.1011131] + }, + "n1820938797": { + "id": "n1820938797", + "loc": [-85.3334107, 41.9806337] + }, + "n1820938798": { + "id": "n1820938798", + "loc": [-85.5625314, 41.9711685] + }, + "n1820938799": { + "id": "n1820938799", + "loc": [-85.3755707, 41.9973585] + }, + "n1820938800": { + "id": "n1820938800", + "loc": [-85.5227532, 41.9722429] + }, + "n1820938801": { + "id": "n1820938801", + "loc": [-85.4267687, 42.0052836] + }, + "n1820938803": { + "id": "n1820938803", + "loc": [-85.0284704, 42.0940837] + }, + "n1820938804": { + "id": "n1820938804", + "loc": [-85.015585, 42.0885305] + }, + "n1820938805": { + "id": "n1820938805", + "loc": [-85.0765905, 42.1053865] + }, + "n1820938806": { + "id": "n1820938806", + "loc": [-85.2614953, 41.9964551] + }, + "n1820938808": { + "id": "n1820938808", + "loc": [-85.0307355, 42.0947313] + }, + "n1820938810": { + "id": "n1820938810", + "loc": [-85.3894753, 42.0003565] + }, + "n1820938812": { + "id": "n1820938812", + "loc": [-85.0868848, 42.095006] + }, + "n1820938813": { + "id": "n1820938813", + "loc": [-85.3854198, 42.0009465] + }, + "n1820938814": { + "id": "n1820938814", + "loc": [-85.2659692, 41.9993534] + }, + "n1820938815": { + "id": "n1820938815", + "loc": [-85.1234259, 42.0765266] + }, + "n1820938816": { + "id": "n1820938816", + "loc": [-85.1426906, 42.0648893] + }, + "n1820938818": { + "id": "n1820938818", + "loc": [-85.1014533, 42.0893067] + }, + "n1820938819": { + "id": "n1820938819", + "loc": [-85.0883064, 42.098067] + }, + "n1820938820": { + "id": "n1820938820", + "loc": [-85.0503156, 42.102704] + }, + "n1820938821": { + "id": "n1820938821", + "loc": [-85.1179649, 42.0821884] + }, + "n1820938822": { + "id": "n1820938822", + "loc": [-85.3484697, 41.9921596] + }, + "n1820938823": { + "id": "n1820938823", + "loc": [-85.3732962, 41.9970874] + }, + "n1820938824": { + "id": "n1820938824", + "loc": [-85.2784104, 41.9898312] + }, + "n1820938825": { + "id": "n1820938825", + "loc": [-85.4441709, 42.0052198] + }, + "n1820938826": { + "id": "n1820938826", + "loc": [-85.3925438, 42.0038326] + }, + "n1820938829": { + "id": "n1820938829", + "loc": [-85.5717582, 41.9621861] + }, + "n1820938830": { + "id": "n1820938830", + "loc": [-85.0866314, 42.0995051] + }, + "n1820938831": { + "id": "n1820938831", + "loc": [-85.576672, 41.9522769] + }, + "n1820938832": { + "id": "n1820938832", + "loc": [-85.1587238, 42.0636205] + }, + "n1820938833": { + "id": "n1820938833", + "loc": [-85.3804245, 41.9999155] + }, + "n1820938834": { + "id": "n1820938834", + "loc": [-85.280083, 41.9948843] + }, + "n1820938836": { + "id": "n1820938836", + "loc": [-85.561892, 41.9686693] + }, + "n1820938837": { + "id": "n1820938837", + "loc": [-85.0158975, 42.0885253] + }, + "n1820938838": { + "id": "n1820938838", + "loc": [-85.4248204, 42.007633] + }, + "n1820938839": { + "id": "n1820938839", + "loc": [-85.0352738, 42.1039657] + }, + "n1820938840": { + "id": "n1820938840", + "loc": [-85.211956, 42.0411812] + }, + "n1820938841": { + "id": "n1820938841", + "loc": [-85.4816575, 41.9908997] + }, + "n1820938842": { + "id": "n1820938842", + "loc": [-85.3807635, 42.0020308] + }, + "n1820938843": { + "id": "n1820938843", + "loc": [-85.0100865, 42.0898521] + }, + "n1820938844": { + "id": "n1820938844", + "loc": [-85.0103936, 42.0897434] + }, + "n1820938848": { + "id": "n1820938848", + "loc": [-85.2430052, 42.0131363] + }, + "n1820938849": { + "id": "n1820938849", + "loc": [-85.112559, 42.0853723] + }, + "n1820938851": { + "id": "n1820938851", + "loc": [-85.3641553, 41.9952535] + }, + "n1820938852": { + "id": "n1820938852", + "loc": [-85.2087373, 42.0390777] + }, + "n1820938853": { + "id": "n1820938853", + "loc": [-85.2473933, 42.0148263] + }, + "n1820938854": { + "id": "n1820938854", + "loc": [-85.0213464, 42.090509] + }, + "n1820938855": { + "id": "n1820938855", + "loc": [-85.0673208, 42.1052353] + }, + "n1820938856": { + "id": "n1820938856", + "loc": [-85.1003053, 42.0905528] + }, + "n1820938857": { + "id": "n1820938857", + "loc": [-85.2617367, 41.9965389] + }, + "n1820938858": { + "id": "n1820938858", + "loc": [-85.280363, 41.9916015] + }, + "n1820938859": { + "id": "n1820938859", + "loc": [-85.0038866, 42.0873469] + }, + "n1820938860": { + "id": "n1820938860", + "loc": [-85.2476401, 42.0151451] + }, + "n1820938861": { + "id": "n1820938861", + "loc": [-85.193717, 42.0499294] + }, + "n1820938862": { + "id": "n1820938862", + "loc": [-85.3478689, 41.9917609] + }, + "n1820938863": { + "id": "n1820938863", + "loc": [-85.5638017, 41.9648881] + }, + "n1820938864": { + "id": "n1820938864", + "loc": [-85.4356308, 42.0064476] + }, + "n1820938865": { + "id": "n1820938865", + "loc": [-85.0561722, 42.1023509] + }, + "n1820938867": { + "id": "n1820938867", + "loc": [-85.2256031, 42.0356034] + }, + "n1820938868": { + "id": "n1820938868", + "loc": [-85.6102576, 41.9420844] + }, + "n1820938869": { + "id": "n1820938869", + "loc": [-85.2285213, 42.0339938] + }, + "n1820938870": { + "id": "n1820938870", + "loc": [-85.0326238, 42.0978003] + }, + "n1820938871": { + "id": "n1820938871", + "loc": [-85.0131389, 42.0903736] + }, + "n1820938872": { + "id": "n1820938872", + "loc": [-85.2550859, 42.0012259] + }, + "n1820938873": { + "id": "n1820938873", + "loc": [-85.1130029, 42.0846966] + }, + "n1820938874": { + "id": "n1820938874", + "loc": [-85.1579041, 42.06336] + }, + "n1820938875": { + "id": "n1820938875", + "loc": [-85.0430522, 42.1020234] + }, + "n1820938876": { + "id": "n1820938876", + "loc": [-85.2786679, 41.9865935] + }, + "n1820938877": { + "id": "n1820938877", + "loc": [-85.1221666, 42.0788706] + }, + "n1820938878": { + "id": "n1820938878", + "loc": [-85.2554614, 42.0103303] + }, + "n1820938879": { + "id": "n1820938879", + "loc": [-85.2349801, 42.0265748] + }, + "n1820938880": { + "id": "n1820938880", + "loc": [-85.0997434, 42.0907864] + }, + "n1820938881": { + "id": "n1820938881", + "loc": [-85.0045464, 42.0878167] + }, + "n1820938882": { + "id": "n1820938882", + "loc": [-85.2728048, 41.9982519] + }, + "n1820938883": { + "id": "n1820938883", + "loc": [-85.3111333, 41.9691587] + }, + "n1820938884": { + "id": "n1820938884", + "loc": [-85.3219802, 41.9721899] + }, + "n1820938885": { + "id": "n1820938885", + "loc": [-85.3091378, 41.9699325] + }, + "n1820938887": { + "id": "n1820938887", + "loc": [-85.4242367, 42.0085203] + }, + "n1820938888": { + "id": "n1820938888", + "loc": [-84.9968377, 42.0874504] + }, + "n1820938890": { + "id": "n1820938890", + "loc": [-85.5443139, 41.9714078] + }, + "n1820938891": { + "id": "n1820938891", + "loc": [-85.6404013, 41.9154676] + }, + "n1820938892": { + "id": "n1820938892", + "loc": [-85.3644986, 41.9962582] + }, + "n1820938893": { + "id": "n1820938893", + "loc": [-85.0496772, 42.1018323] + }, + "n1820938894": { + "id": "n1820938894", + "loc": [-85.297261, 41.9737373] + }, + "n1820938895": { + "id": "n1820938895", + "loc": [-85.0327096, 42.098071] + }, + "n1820938896": { + "id": "n1820938896", + "loc": [-85.3856773, 41.9996867] + }, + "n1820938897": { + "id": "n1820938897", + "loc": [-85.0493862, 42.1015509] + }, + "n1820938898": { + "id": "n1820938898", + "loc": [-84.9969879, 42.0876614] + }, + "n1820938899": { + "id": "n1820938899", + "loc": [-85.0848625, 42.1013587] + }, + "n1820938900": { + "id": "n1820938900", + "loc": [-85.5853195, 41.9479201] + }, + "n1820938901": { + "id": "n1820938901", + "loc": [-85.6329169, 41.9387964] + }, + "n1820938902": { + "id": "n1820938902", + "loc": [-85.0843046, 42.1029468] + }, + "n1820938903": { + "id": "n1820938903", + "loc": [-85.1228747, 42.0778474] + }, + "n1820938904": { + "id": "n1820938904", + "loc": [-85.4855456, 41.984095] + }, + "n1820938905": { + "id": "n1820938905", + "loc": [-85.0573269, 42.1026801] + }, + "n1820938906": { + "id": "n1820938906", + "loc": [-85.2425868, 42.0131523] + }, + "n1820938907": { + "id": "n1820938907", + "loc": [-85.1149622, 42.0860053] + }, + "n1820938908": { + "id": "n1820938908", + "loc": [-85.4833097, 41.9951578] + }, + "n1820938909": { + "id": "n1820938909", + "loc": [-85.075979, 42.1056372] + }, + "n1820938910": { + "id": "n1820938910", + "loc": [-85.0338509, 42.0977139] + }, + "n1820938911": { + "id": "n1820938911", + "loc": [-85.6384272, 41.9115715] + }, + "n1820938912": { + "id": "n1820938912", + "loc": [-85.0458363, 42.1004074] + }, + "n1820938913": { + "id": "n1820938913", + "loc": [-85.0592138, 42.1048305] + }, + "n1820938914": { + "id": "n1820938914", + "loc": [-85.2807493, 41.9916653] + }, + "n1820938915": { + "id": "n1820938915", + "loc": [-85.1103274, 42.0864193] + }, + "n1820938916": { + "id": "n1820938916", + "loc": [-85.6267156, 41.9404404] + }, + "n1820938918": { + "id": "n1820938918", + "loc": [-85.0331374, 42.0982911] + }, + "n1820938919": { + "id": "n1820938919", + "loc": [-85.5637331, 41.965409] + }, + "n1820938920": { + "id": "n1820938920", + "loc": [-85.5457515, 41.9714237] + }, + "n1820938922": { + "id": "n1820938922", + "loc": [-85.082073, 42.1030104] + }, + "n1820938923": { + "id": "n1820938923", + "loc": [-85.0780765, 42.103102] + }, + "n1820938924": { + "id": "n1820938924", + "loc": [-85.4208035, 42.0089508] + }, + "n1820938925": { + "id": "n1820938925", + "loc": [-85.3469934, 41.9914795] + }, + "n1820938926": { + "id": "n1820938926", + "loc": [-85.0322, 42.095619] + }, + "n1820938927": { + "id": "n1820938927", + "loc": [-85.4784431, 41.9949401] + }, + "n1820938928": { + "id": "n1820938928", + "loc": [-85.1303095, 42.0667523] + }, + "n1820938929": { + "id": "n1820938929", + "loc": [-85.2463784, 42.0084781] + }, + "n1820938930": { + "id": "n1820938930", + "loc": [-85.6299986, 41.9427707] + }, + "n1820938931": { + "id": "n1820938931", + "loc": [-85.6325907, 41.9238499] + }, + "n1820938932": { + "id": "n1820938932", + "loc": [-85.4808464, 41.9914476] + }, + "n1820938934": { + "id": "n1820938934", + "loc": [-85.2411599, 42.0105292] + }, + "n1820938935": { + "id": "n1820938935", + "loc": [-85.0163213, 42.0892379] + }, + "n1820938936": { + "id": "n1820938936", + "loc": [-85.3290934, 41.9682322] + }, + "n1820938937": { + "id": "n1820938937", + "loc": [-85.4925623, 41.9853231] + }, + "n1820938938": { + "id": "n1820938938", + "loc": [-85.0338294, 42.09892] + }, + "n1820938940": { + "id": "n1820938940", + "loc": [-85.4174561, 42.008903] + }, + "n1820938941": { + "id": "n1820938941", + "loc": [-85.1165595, 42.0838845] + }, + "n1820938942": { + "id": "n1820938942", + "loc": [-85.2954585, 41.9717192] + }, + "n1820938943": { + "id": "n1820938943", + "loc": [-85.6330199, 41.9257338] + }, + "n1820938944": { + "id": "n1820938944", + "loc": [-85.2294654, 42.0324478] + }, + "n1820938945": { + "id": "n1820938945", + "loc": [-85.5601282, 41.9728914] + }, + "n1820938946": { + "id": "n1820938946", + "loc": [-85.1176324, 42.08568] + }, + "n1820938947": { + "id": "n1820938947", + "loc": [-85.0210245, 42.0906005] + }, + "n1820938948": { + "id": "n1820938948", + "loc": [-85.0251887, 42.09253] + }, + "n1820938949": { + "id": "n1820938949", + "loc": [-85.0895832, 42.0939551] + }, + "n1820938950": { + "id": "n1820938950", + "loc": [-84.9915109, 42.085842] + }, + "n1820938951": { + "id": "n1820938951", + "loc": [-85.2187366, 42.0393486] + }, + "n1820938952": { + "id": "n1820938952", + "loc": [-85.006605, 42.087579] + }, + "n1820938953": { + "id": "n1820938953", + "loc": [-85.046641, 42.1012393] + }, + "n1820938954": { + "id": "n1820938954", + "loc": [-85.052102, 42.103695] + }, + "n1820938955": { + "id": "n1820938955", + "loc": [-85.283925, 41.9912825] + }, + "n1820938956": { + "id": "n1820938956", + "loc": [-85.2326626, 42.0316349] + }, + "n1820938957": { + "id": "n1820938957", + "loc": [-85.1174298, 42.0859694] + }, + "n1820938958": { + "id": "n1820938958", + "loc": [-85.3802056, 41.9994794] + }, + "n1820938959": { + "id": "n1820938959", + "loc": [-85.4586334, 41.9999737] + }, + "n1820938960": { + "id": "n1820938960", + "loc": [-85.4302234, 42.0069418] + }, + "n1820938961": { + "id": "n1820938961", + "loc": [-85.092201, 42.0930674] + }, + "n1820938962": { + "id": "n1820938962", + "loc": [-85.3684511, 41.9979382] + }, + "n1820938963": { + "id": "n1820938963", + "loc": [-85.4618735, 42.0011856] + }, + "n1820938964": { + "id": "n1820938964", + "loc": [-85.4828205, 41.9877793] + }, + "n1820938965": { + "id": "n1820938965", + "loc": [-85.0837789, 42.1025726] + }, + "n1820938966": { + "id": "n1820938966", + "loc": [-85.0176195, 42.090253] + }, + "n1820938967": { + "id": "n1820938967", + "loc": [-85.3801627, 42.001074] + }, + "n1820938968": { + "id": "n1820938968", + "loc": [-85.4767007, 41.994488] + }, + "n1820938969": { + "id": "n1820938969", + "loc": [-85.274268, 41.9957495] + }, + "n1820938970": { + "id": "n1820938970", + "loc": [-85.2977438, 41.9719506] + }, + "n1820938971": { + "id": "n1820938971", + "loc": [-85.2425546, 42.0208682] + }, + "n1820938972": { + "id": "n1820938972", + "loc": [-85.2557082, 42.002382] + }, + "n1820938973": { + "id": "n1820938973", + "loc": [-85.3187937, 41.9691986] + }, + "n1820938975": { + "id": "n1820938975", + "loc": [-85.2448077, 42.0153045] + }, + "n1820938977": { + "id": "n1820938977", + "loc": [-85.0343015, 42.0997718] + }, + "n1820938978": { + "id": "n1820938978", + "loc": [-85.2449364, 42.01874] + }, + "n1820938979": { + "id": "n1820938979", + "loc": [-85.2598391, 41.9969602] + }, + "n1820938980": { + "id": "n1820938980", + "loc": [-85.4294724, 42.0067665] + }, + "n1820938981": { + "id": "n1820938981", + "loc": [-85.428082, 42.0055124] + }, + "n1820938983": { + "id": "n1820938983", + "loc": [-85.5436315, 41.9717484] + }, + "n1820938985": { + "id": "n1820938985", + "loc": [-85.5978336, 41.9407437] + }, + "n1820938986": { + "id": "n1820938986", + "loc": [-85.491661, 41.9860249] + }, + "n1820938987": { + "id": "n1820938987", + "loc": [-85.4942789, 41.9801392] + }, + "n1820938988": { + "id": "n1820938988", + "loc": [-85.0416306, 42.1010841] + }, + "n1820938989": { + "id": "n1820938989", + "loc": [-85.2653644, 41.9984433] + }, + "n1820938990": { + "id": "n1820938990", + "loc": [-85.1028266, 42.0881124] + }, + "n1820938991": { + "id": "n1820938991", + "loc": [-85.0163146, 42.0887932] + }, + "n1820938992": { + "id": "n1820938992", + "loc": [-85.5282209, 41.9678112] + }, + "n1820938993": { + "id": "n1820938993", + "loc": [-85.5442752, 41.9715888] + }, + "n1820938994": { + "id": "n1820938994", + "loc": [-85.5634327, 41.9658558] + }, + "n1820938995": { + "id": "n1820938995", + "loc": [-85.0384227, 42.1037627] + }, + "n1820938996": { + "id": "n1820938996", + "loc": [-85.1144258, 42.0854439] + }, + "n1820938997": { + "id": "n1820938997", + "loc": [-85.1870651, 42.0506305] + }, + "n1820938998": { + "id": "n1820938998", + "loc": [-85.1256159, 42.0747376] + }, + "n1820938999": { + "id": "n1820938999", + "loc": [-85.3272695, 41.9715836] + }, + "n1820939000": { + "id": "n1820939000", + "loc": [-85.0543067, 42.103098] + }, + "n1820939001": { + "id": "n1820939001", + "loc": [-85.4678173, 41.9973585] + }, + "n1820939003": { + "id": "n1820939003", + "loc": [-85.0266626, 42.0933154] + }, + "n1820939004": { + "id": "n1820939004", + "loc": [-85.0353046, 42.1019728] + }, + "n1820939005": { + "id": "n1820939005", + "loc": [-85.1237961, 42.0762798] + }, + "n1820939006": { + "id": "n1820939006", + "loc": [-85.2812214, 41.9826702] + }, + "n1820939007": { + "id": "n1820939007", + "loc": [-85.2927763, 41.9747343] + }, + "n1820939008": { + "id": "n1820939008", + "loc": [-85.3270979, 41.9720862] + }, + "n1820939009": { + "id": "n1820939009", + "loc": [-85.488657, 41.9856581] + }, + "n1820939010": { + "id": "n1820939010", + "loc": [-85.3087301, 41.9701399] + }, + "n1820939011": { + "id": "n1820939011", + "loc": [-85.0276939, 42.093768] + }, + "n1820939012": { + "id": "n1820939012", + "loc": [-85.2956516, 41.9748779] + }, + "n1820939013": { + "id": "n1820939013", + "loc": [-85.1298579, 42.0726443] + }, + "n1820939014": { + "id": "n1820939014", + "loc": [-85.105144, 42.0870893] + }, + "n1820939015": { + "id": "n1820939015", + "loc": [-85.0677486, 42.1053917] + }, + "n1820939016": { + "id": "n1820939016", + "loc": [-85.0333681, 42.0993459] + }, + "n1820939017": { + "id": "n1820939017", + "loc": [-85.6384272, 41.910805] + }, + "n1820939018": { + "id": "n1820939018", + "loc": [-85.399496, 42.006894] + }, + "n1820939019": { + "id": "n1820939019", + "loc": [-85.2648427, 41.9998318] + }, + "n1820939020": { + "id": "n1820939020", + "loc": [-85.1237424, 42.0766779] + }, + "n1820939021": { + "id": "n1820939021", + "loc": [-85.2515025, 42.0109442] + }, + "n1820939022": { + "id": "n1820939022", + "loc": [-85.5566306, 41.9718385] + }, + "n1820939023": { + "id": "n1820939023", + "loc": [-85.090644, 42.0938369] + }, + "n1820939024": { + "id": "n1820939024", + "loc": [-85.1245525, 42.074914] + }, + "n1820939025": { + "id": "n1820939025", + "loc": [-85.1099934, 42.0863926] + }, + "n1820939026": { + "id": "n1820939026", + "loc": [-85.1251653, 42.0744589] + }, + "n1820939027": { + "id": "n1820939027", + "loc": [-85.401792, 42.0068143] + }, + "n1820939028": { + "id": "n1820939028", + "loc": [-85.0094763, 42.0899584] + }, + "n1820939029": { + "id": "n1820939029", + "loc": [-85.1330779, 42.0705605] + }, + "n1820939030": { + "id": "n1820939030", + "loc": [-85.4935064, 41.984398] + }, + "n1820939031": { + "id": "n1820939031", + "loc": [-85.5713334, 41.9613939] + }, + "n1820939032": { + "id": "n1820939032", + "loc": [-85.0873945, 42.0964669] + }, + "n1820939033": { + "id": "n1820939033", + "loc": [-85.0886497, 42.0986481] + }, + "n1820939034": { + "id": "n1820939034", + "loc": [-85.3276343, 41.9758897] + }, + "n1820939035": { + "id": "n1820939035", + "loc": [-85.1304386, 42.0727387] + }, + "n1820939036": { + "id": "n1820939036", + "loc": [-85.2551932, 42.0052999] + }, + "n1820939037": { + "id": "n1820939037", + "loc": [-85.2206936, 42.0384458] + }, + "n1820939038": { + "id": "n1820939038", + "loc": [-85.2313645, 42.0286389] + }, + "n1820939039": { + "id": "n1820939039", + "loc": [-85.0754586, 42.1059835] + }, + "n1820939040": { + "id": "n1820939040", + "loc": [-85.0663324, 42.1050812] + }, + "n1820939041": { + "id": "n1820939041", + "loc": [-85.2406234, 42.0106887] + }, + "n1820939042": { + "id": "n1820939042", + "loc": [-85.0685962, 42.1058175] + }, + "n1820939043": { + "id": "n1820939043", + "loc": [-85.0689462, 42.1059437] + }, + "n1820939044": { + "id": "n1820939044", + "loc": [-85.0586144, 42.1046144] + }, + "n1820939045": { + "id": "n1820939045", + "loc": [-85.3650565, 41.9965452] + }, + "n1820939047": { + "id": "n1820939047", + "loc": [-85.5752558, 41.9536014] + }, + "n1820939048": { + "id": "n1820939048", + "loc": [-85.5110159, 41.9710624] + }, + "n1820939050": { + "id": "n1820939050", + "loc": [-85.2832641, 41.9926477] + }, + "n1820939051": { + "id": "n1820939051", + "loc": [-85.0078402, 42.0898947] + }, + "n1820939052": { + "id": "n1820939052", + "loc": [-85.3882737, 42.0017916] + }, + "n1820939053": { + "id": "n1820939053", + "loc": [-85.1718945, 42.0564937] + }, + "n1820939054": { + "id": "n1820939054", + "loc": [-85.0947048, 42.0929293] + }, + "n1820939055": { + "id": "n1820939055", + "loc": [-85.4456944, 42.0051082] + }, + "n1820939056": { + "id": "n1820939056", + "loc": [-85.3139872, 41.9706903] + }, + "n1820939057": { + "id": "n1820939057", + "loc": [-85.3893895, 42.0034021] + }, + "n1820939058": { + "id": "n1820939058", + "loc": [-85.2425332, 42.0106089] + }, + "n1820939059": { + "id": "n1820939059", + "loc": [-85.6085624, 41.9420844] + }, + "n1820939060": { + "id": "n1820939060", + "loc": [-85.210411, 42.0397789] + }, + "n1820939061": { + "id": "n1820939061", + "loc": [-85.2762542, 41.9960473] + }, + "n1820939062": { + "id": "n1820939062", + "loc": [-85.4686584, 41.9969973] + }, + "n1820939063": { + "id": "n1820939063", + "loc": [-85.3860421, 42.0018394] + }, + "n1820939064": { + "id": "n1820939064", + "loc": [-85.5636944, 41.9644414] + }, + "n1820939065": { + "id": "n1820939065", + "loc": [-85.3267331, 41.9766554] + }, + "n1820939066": { + "id": "n1820939066", + "loc": [-85.0868996, 42.0943822] + }, + "n1820939067": { + "id": "n1820939067", + "loc": [-85.104861, 42.0880038] + }, + "n1820939068": { + "id": "n1820939068", + "loc": [-85.5537123, 41.9695093] + }, + "n1820939069": { + "id": "n1820939069", + "loc": [-85.6325092, 41.9396743] + }, + "n1820939070": { + "id": "n1820939070", + "loc": [-85.3869648, 42.0024454] + }, + "n1820939071": { + "id": "n1820939071", + "loc": [-85.2775349, 41.9957335] + }, + "n1820939072": { + "id": "n1820939072", + "loc": [-85.2055616, 42.0421533] + }, + "n1820939073": { + "id": "n1820939073", + "loc": [-85.4731431, 41.9946531] + }, + "n1820939074": { + "id": "n1820939074", + "loc": [-85.0399609, 42.1030833] + }, + "n1820939075": { + "id": "n1820939075", + "loc": [-85.3055758, 41.9725169] + }, + "n1820939076": { + "id": "n1820939076", + "loc": [-85.4834599, 41.994488] + }, + "n1820939077": { + "id": "n1820939077", + "loc": [-85.3819866, 42.0023018] + }, + "n1820939078": { + "id": "n1820939078", + "loc": [-85.1218756, 42.0789992] + }, + "n1820939079": { + "id": "n1820939079", + "loc": [-85.2793159, 41.9944458] + }, + "n1820939080": { + "id": "n1820939080", + "loc": [-85.2495498, 42.0101466] + }, + "n1820939081": { + "id": "n1820939081", + "loc": [-85.0035969, 42.0872434] + }, + "n1820939082": { + "id": "n1820939082", + "loc": [-85.1054243, 42.0865626] + }, + "n1820939083": { + "id": "n1820939083", + "loc": [-85.0917665, 42.0934774] + }, + "n1820939084": { + "id": "n1820939084", + "loc": [-85.3442211, 41.988938] + }, + "n1820939086": { + "id": "n1820939086", + "loc": [-85.273989, 41.9953588] + }, + "n1820939087": { + "id": "n1820939087", + "loc": [-85.1142541, 42.0852488] + }, + "n1820939089": { + "id": "n1820939089", + "loc": [-85.1526684, 42.0615758] + }, + "n1820939090": { + "id": "n1820939090", + "loc": [-85.2538843, 42.0110159] + }, + "n1820939091": { + "id": "n1820939091", + "loc": [-85.28341, 41.9909635] + }, + "n1820939092": { + "id": "n1820939092", + "loc": [-85.3963178, 42.0050217] + }, + "n1820939093": { + "id": "n1820939093", + "loc": [-85.0851682, 42.1012472] + }, + "n1820939095": { + "id": "n1820939095", + "loc": [-85.2811784, 41.986243] + }, + "n1820939096": { + "id": "n1820939096", + "loc": [-85.4274125, 42.0052995] + }, + "n1820939097": { + "id": "n1820939097", + "loc": [-85.0871262, 42.0951652] + }, + "n1820939099": { + "id": "n1820939099", + "loc": [-85.1314253, 42.0671665] + }, + "n1820939100": { + "id": "n1820939100", + "loc": [-85.2778997, 41.991001] + }, + "n1820939101": { + "id": "n1820939101", + "loc": [-85.112107, 42.0862812] + }, + "n1820939102": { + "id": "n1820939102", + "loc": [-85.299911, 41.9729955] + }, + "n1820939103": { + "id": "n1820939103", + "loc": [-85.639822, 41.9094796] + }, + "n1820939104": { + "id": "n1820939104", + "loc": [-85.122294, 42.0785334] + }, + "n1820939105": { + "id": "n1820939105", + "loc": [-85.2476294, 42.015719] + }, + "n1820939106": { + "id": "n1820939106", + "loc": [-85.4946007, 41.9814631] + }, + "n1820939107": { + "id": "n1820939107", + "loc": [-85.0879524, 42.0986919] + }, + "n1820939108": { + "id": "n1820939108", + "loc": [-85.0342814, 42.098274] + }, + "n1820939109": { + "id": "n1820939109", + "loc": [-85.2450695, 42.0095463] + }, + "n1820939110": { + "id": "n1820939110", + "loc": [-85.3847546, 42.0024135] + }, + "n1820939111": { + "id": "n1820939111", + "loc": [-85.2961344, 41.9742558] + }, + "n1820939112": { + "id": "n1820939112", + "loc": [-85.27899, 41.994317] + }, + "n1820939114": { + "id": "n1820939114", + "loc": [-85.1017644, 42.0886618] + }, + "n1820939115": { + "id": "n1820939115", + "loc": [-85.076215, 42.1056333] + }, + "n1820939116": { + "id": "n1820939116", + "loc": [-85.1198009, 42.0805349] + }, + "n1820939117": { + "id": "n1820939117", + "loc": [-85.11988, 42.0798513] + }, + "n1820939118": { + "id": "n1820939118", + "loc": [-85.147819, 42.0625476] + }, + "n1820939119": { + "id": "n1820939119", + "loc": [-85.0585969, 42.1029042] + }, + "n1820939120": { + "id": "n1820939120", + "loc": [-85.1248596, 42.0745744] + }, + "n1820939121": { + "id": "n1820939121", + "loc": [-85.3023786, 41.9725249] + }, + "n1820939123": { + "id": "n1820939123", + "loc": [-85.0119332, 42.0900699] + }, + "n1820939124": { + "id": "n1820939124", + "loc": [-85.2466852, 42.0170343] + }, + "n1820939125": { + "id": "n1820939125", + "loc": [-85.0033019, 42.0872792] + }, + "n1820939126": { + "id": "n1820939126", + "loc": [-85.0042084, 42.0875778] + }, + "n1820939128": { + "id": "n1820939128", + "loc": [-85.0052961, 42.0885424] + }, + "n1820939130": { + "id": "n1820939130", + "loc": [-85.0647942, 42.10508] + }, + "n1820939131": { + "id": "n1820939131", + "loc": [-85.2824123, 41.9825107] + }, + "n1820939132": { + "id": "n1820939132", + "loc": [-85.3210039, 41.9723255] + }, + "n1820939133": { + "id": "n1820939133", + "loc": [-85.0491033, 42.1014184] + }, + "n1820939134": { + "id": "n1820939134", + "loc": [-85.1127776, 42.0855168] + }, + "n1820939135": { + "id": "n1820939135", + "loc": [-85.1243768, 42.0759322] + }, + "n1820939137": { + "id": "n1820939137", + "loc": [-85.125974, 42.0747547] + }, + "n1820939138": { + "id": "n1820939138", + "loc": [-85.1071248, 42.0859973] + }, + "n1820939139": { + "id": "n1820939139", + "loc": [-85.5326175, 41.9674833] + }, + "n1820939140": { + "id": "n1820939140", + "loc": [-85.1338715, 42.0660833] + }, + "n1820939142": { + "id": "n1820939142", + "loc": [-85.649671, 41.9135675] + }, + "n1820939144": { + "id": "n1820939144", + "loc": [-85.0236545, 42.0920444] + }, + "n1820939145": { + "id": "n1820939145", + "loc": [-85.1084391, 42.0859376] + }, + "n1820939146": { + "id": "n1820939146", + "loc": [-85.1539988, 42.0618626] + }, + "n1820939147": { + "id": "n1820939147", + "loc": [-85.2354521, 42.026511] + }, + "n1820939148": { + "id": "n1820939148", + "loc": [-85.2362246, 42.0260408] + }, + "n1820939149": { + "id": "n1820939149", + "loc": [-85.2401342, 42.0115233] + }, + "n1820939150": { + "id": "n1820939150", + "loc": [-85.295319, 41.9747423] + }, + "n1820939151": { + "id": "n1820939151", + "loc": [-85.1164696, 42.0835409] + }, + "n1820939152": { + "id": "n1820939152", + "loc": [-85.3232891, 41.9712885] + }, + "n1820939153": { + "id": "n1820939153", + "loc": [-85.2574463, 42.0068944] + }, + "n1820939155": { + "id": "n1820939155", + "loc": [-85.5704064, 41.9598246] + }, + "n1820939156": { + "id": "n1820939156", + "loc": [-85.0349077, 42.0998116] + }, + "n1820939157": { + "id": "n1820939157", + "loc": [-85.0949529, 42.0925619] + }, + "n1820939159": { + "id": "n1820939159", + "loc": [-85.0179829, 42.0902343] + }, + "n1820939160": { + "id": "n1820939160", + "loc": [-85.0405832, 42.1016942] + }, + "n1820939161": { + "id": "n1820939161", + "loc": [-85.2534015, 42.0111833] + }, + "n1820939162": { + "id": "n1820939162", + "loc": [-85.0839881, 42.102708] + }, + "n1820939163": { + "id": "n1820939163", + "loc": [-85.0341996, 42.1008385] + }, + "n1820939164": { + "id": "n1820939164", + "loc": [-85.1037761, 42.0879731] + }, + "n1820939173": { + "id": "n1820939173", + "loc": [-85.0460616, 42.1005786] + }, + "n1820939177": { + "id": "n1820939177", + "loc": [-85.0061651, 42.0878059] + }, + "n1820939181": { + "id": "n1820939181", + "loc": [-85.1456775, 42.0654684] + }, + "n1820939183": { + "id": "n1820939183", + "loc": [-85.1325508, 42.0718439] + }, + "n1820939185": { + "id": "n1820939185", + "loc": [-85.2485842, 42.008329] + }, + "n1820939187": { + "id": "n1820939187", + "loc": [-85.2744128, 41.9949322] + }, + "n1820939189": { + "id": "n1820939189", + "loc": [-85.2579025, 41.9999542] + }, + "n1820939191": { + "id": "n1820939191", + "loc": [-85.3358998, 41.9828987] + }, + "n1820939193": { + "id": "n1820939193", + "loc": [-85.3192658, 41.9716714] + }, + "n1820939194": { + "id": "n1820939194", + "loc": [-85.6400795, 41.9130725] + }, + "n1820939195": { + "id": "n1820939195", + "loc": [-85.3278489, 41.9780591] + }, + "n1820939196": { + "id": "n1820939196", + "loc": [-85.2800197, 41.983061] + }, + "n1820939197": { + "id": "n1820939197", + "loc": [-85.3278167, 41.9692943] + }, + "n1820939198": { + "id": "n1820939198", + "loc": [-85.3366894, 41.9838653] + }, + "n1820939199": { + "id": "n1820939199", + "loc": [-85.0328383, 42.0969923] + }, + "n1820939201": { + "id": "n1820939201", + "loc": [-85.3259284, 41.9720383] + }, + "n1820939217": { + "id": "n1820939217", + "loc": [-85.1840181, 42.0503277] + }, + "n1820939220": { + "id": "n1820939220", + "loc": [-85.422563, 42.0089986] + }, + "n1820939222": { + "id": "n1820939222", + "loc": [-85.555386, 41.9707856] + }, + "n1820939224": { + "id": "n1820939224", + "loc": [-85.3830809, 42.002254] + }, + "n1820939226": { + "id": "n1820939226", + "loc": [-84.9917938, 42.0857517] + }, + "n1820939227": { + "id": "n1820939227", + "loc": [-85.2936775, 41.9740484] + }, + "n1820939228": { + "id": "n1820939228", + "loc": [-85.2632133, 41.9975024] + }, + "n1820939229": { + "id": "n1820939229", + "loc": [-85.2809424, 41.9853259] + }, + "n1820939230": { + "id": "n1820939230", + "loc": [-85.242104, 42.0131204] + }, + "n1820939232": { + "id": "n1820939232", + "loc": [-85.2610246, 41.9963901] + }, + "n1820939233": { + "id": "n1820939233", + "loc": [-85.2335531, 42.0268378] + }, + "n1820939234": { + "id": "n1820939234", + "loc": [-85.3188839, 41.9713575] + }, + "n1820939235": { + "id": "n1820939235", + "loc": [-85.2413637, 42.0225658] + }, + "n1820939237": { + "id": "n1820939237", + "loc": [-85.0010796, 42.0887215] + }, + "n1820939239": { + "id": "n1820939239", + "loc": [-85.2241697, 42.0362624] + }, + "n1820939243": { + "id": "n1820939243", + "loc": [-85.0368456, 42.1040134] + }, + "n1820939244": { + "id": "n1820939244", + "loc": [-85.1327986, 42.069524] + }, + "n1820939260": { + "id": "n1820939260", + "loc": [-85.5408163, 41.9711206] + }, + "n1820939261": { + "id": "n1820939261", + "loc": [-85.2959199, 41.9746546] + }, + "n1820939262": { + "id": "n1820939262", + "loc": [-85.3298659, 41.9683598] + }, + "n1820939263": { + "id": "n1820939263", + "loc": [-85.2240581, 42.0358425] + }, + "n1820939264": { + "id": "n1820939264", + "loc": [-85.2438206, 42.0101944] + }, + "n1820939265": { + "id": "n1820939265", + "loc": [-85.3984489, 42.0059589] + }, + "n1820939266": { + "id": "n1820939266", + "loc": [-85.2330811, 42.0294279] + }, + "n1820939268": { + "id": "n1820939268", + "loc": [-85.1126877, 42.0857704] + }, + "n1820939271": { + "id": "n1820939271", + "loc": [-85.254925, 42.0106253] + }, + "n1820939273": { + "id": "n1820939273", + "loc": [-85.4328046, 42.0064662] + }, + "n1820939277": { + "id": "n1820939277", + "loc": [-85.289622, 41.9789616] + }, + "n1820939279": { + "id": "n1820939279", + "loc": [-85.4574532, 42.0004043] + }, + "n1820939281": { + "id": "n1820939281", + "loc": [-85.4803486, 41.9867211] + }, + "n1820939283": { + "id": "n1820939283", + "loc": [-85.157475, 42.0631848] + }, + "n1820939285": { + "id": "n1820939285", + "loc": [-85.2571458, 42.0059935] + }, + "n1820939287": { + "id": "n1820939287", + "loc": [-85.2818544, 41.9825984] + }, + "n1820939289": { + "id": "n1820939289", + "loc": [-85.2298302, 42.0328781] + }, + "n1820939291": { + "id": "n1820939291", + "loc": [-85.4819523, 41.984821] + }, + "n1820939301": { + "id": "n1820939301", + "loc": [-85.3139765, 41.9701159] + }, + "n1820939304": { + "id": "n1820939304", + "loc": [-85.0424447, 42.101742] + }, + "n1820939306": { + "id": "n1820939306", + "loc": [-85.6360283, 41.9338482] + }, + "n1820939310": { + "id": "n1820939310", + "loc": [-85.3463025, 41.9913622] + }, + "n1820939312": { + "id": "n1820939312", + "loc": [-85.4664869, 41.9988097] + }, + "n1820939314": { + "id": "n1820939314", + "loc": [-85.149364, 42.0622449] + }, + "n1820939316": { + "id": "n1820939316", + "loc": [-85.2460415, 42.0153125] + }, + "n1820939318": { + "id": "n1820939318", + "loc": [-85.4806103, 41.9924523] + }, + "n1820939320": { + "id": "n1820939320", + "loc": [-85.2449042, 42.0190987] + }, + "n1820939322": { + "id": "n1820939322", + "loc": [-85.5280165, 41.9689263] + }, + "n1820939324": { + "id": "n1820939324", + "loc": [-85.0051204, 42.0882625] + }, + "n1820939326": { + "id": "n1820939326", + "loc": [-85.1240925, 42.0771546] + }, + "n1820939329": { + "id": "n1820939329", + "loc": [-85.2261653, 42.0342225] + }, + "n1820939331": { + "id": "n1820939331", + "loc": [-85.5259933, 41.972211] + }, + "n1820939333": { + "id": "n1820939333", + "loc": [-85.0074754, 42.0883183] + }, + "n1820939335": { + "id": "n1820939335", + "loc": [-85.0764014, 42.1055549] + }, + "n1820939336": { + "id": "n1820939336", + "loc": [-85.2908773, 41.9769597] + }, + "n1820939337": { + "id": "n1820939337", + "loc": [-85.4095382, 42.0083449] + }, + "n1820939346": { + "id": "n1820939346", + "loc": [-85.2514166, 42.0111753] + }, + "n1820939348": { + "id": "n1820939348", + "loc": [-85.0030377, 42.0873799] + }, + "n1820939350": { + "id": "n1820939350", + "loc": [-85.3659362, 41.9964974] + }, + "n1820939352": { + "id": "n1820939352", + "loc": [-85.226058, 42.0348281] + }, + "n1820939355": { + "id": "n1820939355", + "loc": [-85.1902408, 42.0507101] + }, + "n1820939357": { + "id": "n1820939357", + "loc": [-85.2781854, 41.9946001] + }, + "n1820939359": { + "id": "n1820939359", + "loc": [-85.2139988, 42.0405175] + }, + "n1820939361": { + "id": "n1820939361", + "loc": [-85.0086609, 42.0908262] + }, + "n1820939363": { + "id": "n1820939363", + "loc": [-85.0627128, 42.1043398] + }, + "n1820939365": { + "id": "n1820939365", + "loc": [-85.1311346, 42.072501] + }, + "n1820939369": { + "id": "n1820939369", + "loc": [-85.248198, 42.0082652] + }, + "n1820939370": { + "id": "n1820939370", + "loc": [-84.99792, 42.087794] + }, + "n1820939371": { + "id": "n1820939371", + "loc": [-85.2786775, 41.9942783] + }, + "n1820939372": { + "id": "n1820939372", + "loc": [-85.0342103, 42.1013957] + }, + "n1820939373": { + "id": "n1820939373", + "loc": [-85.2022357, 42.0444799] + }, + "n1820939374": { + "id": "n1820939374", + "loc": [-85.2279205, 42.0337388] + }, + "n1820939375": { + "id": "n1820939375", + "loc": [-85.1337699, 42.0712614] + }, + "n1820939376": { + "id": "n1820939376", + "loc": [-85.317517, 41.9707062] + }, + "n1820939377": { + "id": "n1820939377", + "loc": [-85.1326326, 42.070218] + }, + "n1820939394": { + "id": "n1820939394", + "loc": [-85.0197746, 42.0899118] + }, + "n1820939397": { + "id": "n1820939397", + "loc": [-85.2590076, 41.9984632] + }, + "n1820939399": { + "id": "n1820939399", + "loc": [-85.2469964, 42.0083449] + }, + "n1820939400": { + "id": "n1820939400", + "loc": [-85.2470929, 42.0146668] + }, + "n1820939401": { + "id": "n1820939401", + "loc": [-84.9984095, 42.0878087] + }, + "n1820939402": { + "id": "n1820939402", + "loc": [-85.2372653, 42.0243273] + }, + "n1820939403": { + "id": "n1820939403", + "loc": [-85.2454986, 42.0091955] + }, + "n1820939404": { + "id": "n1820939404", + "loc": [-85.0539205, 42.1035995] + }, + "n1820939405": { + "id": "n1820939405", + "loc": [-85.550601, 41.9706101] + }, + "n1820939406": { + "id": "n1820939406", + "loc": [-85.0351343, 42.0999656] + }, + "n1820939407": { + "id": "n1820939407", + "loc": [-85.0082908, 42.0905755] + }, + "n1820939408": { + "id": "n1820939408", + "loc": [-85.0132904, 42.0902251] + }, + "n1820939410": { + "id": "n1820939410", + "loc": [-85.0892546, 42.094012] + }, + "n1820939412": { + "id": "n1820939412", + "loc": [-85.0350793, 42.1030315] + }, + "n1820939416": { + "id": "n1820939416", + "loc": [-85.0012406, 42.0886777] + }, + "n1820939418": { + "id": "n1820939418", + "loc": [-85.0577453, 42.1029229] + }, + "n1820939420": { + "id": "n1820939420", + "loc": [-85.1230786, 42.0776722] + }, + "n1820939422": { + "id": "n1820939422", + "loc": [-85.571136, 41.9649304] + }, + "n1820939436": { + "id": "n1820939436", + "loc": [-85.1137968, 42.0848997] + }, + "n1820939437": { + "id": "n1820939437", + "loc": [-85.3559584, 41.9925105] + }, + "n1820939438": { + "id": "n1820939438", + "loc": [-85.0080172, 42.0903565] + }, + "n1820939439": { + "id": "n1820939439", + "loc": [-85.0048897, 42.0880913] + }, + "n1820939441": { + "id": "n1820939441", + "loc": [-85.0406959, 42.1018574] + }, + "n1820939443": { + "id": "n1820939443", + "loc": [-85.3897328, 42.0029078] + }, + "n1820939445": { + "id": "n1820939445", + "loc": [-85.122349, 42.0782814] + }, + "n1820939448": { + "id": "n1820939448", + "loc": [-85.4872193, 41.985036] + }, + "n1820939450": { + "id": "n1820939450", + "loc": [-85.0120459, 42.0904919] + }, + "n1820939452": { + "id": "n1820939452", + "loc": [-85.6320543, 41.921982] + }, + "n1820939456": { + "id": "n1820939456", + "loc": [-85.0844749, 42.1036843] + }, + "n1820939458": { + "id": "n1820939458", + "loc": [-85.0968037, 42.091296] + }, + "n1820939463": { + "id": "n1820939463", + "loc": [-85.5339747, 41.9681841] + }, + "n1820939465": { + "id": "n1820939465", + "loc": [-85.4125423, 42.0072129] + }, + "n1820939467": { + "id": "n1820939467", + "loc": [-85.6335563, 41.9303626] + }, + "n1820939469": { + "id": "n1820939469", + "loc": [-85.2821014, 41.9932126] + }, + "n1820939471": { + "id": "n1820939471", + "loc": [-85.374691, 41.9969917] + }, + "n1820939485": { + "id": "n1820939485", + "loc": [-85.4471321, 42.0049806] + }, + "n1820939487": { + "id": "n1820939487", + "loc": [-85.3752532, 41.9972206] + }, + "n1820939489": { + "id": "n1820939489", + "loc": [-85.4517283, 42.005927] + }, + "n1820939492": { + "id": "n1820939492", + "loc": [-85.4662552, 42.0005693] + }, + "n1820939494": { + "id": "n1820939494", + "loc": [-85.0120083, 42.0902928] + }, + "n1820939496": { + "id": "n1820939496", + "loc": [-85.044463, 42.1004631] + }, + "n1820939498": { + "id": "n1820939498", + "loc": [-85.418293, 42.0089667] + }, + "n1820939500": { + "id": "n1820939500", + "loc": [-85.0554762, 42.1027358] + }, + "n1820939504": { + "id": "n1820939504", + "loc": [-85.1246289, 42.0746858] + }, + "n1820939507": { + "id": "n1820939507", + "loc": [-85.0408139, 42.1021838] + }, + "n1820939508": { + "id": "n1820939508", + "loc": [-85.1236204, 42.0775169] + }, + "n1820939509": { + "id": "n1820939509", + "loc": [-85.0350109, 42.1037428] + }, + "n1820939510": { + "id": "n1820939510", + "loc": [-85.0551583, 42.1029878] + }, + "n1820939511": { + "id": "n1820939511", + "loc": [-85.0956771, 42.0916662] + }, + "n1820939512": { + "id": "n1820939512", + "loc": [-85.2323408, 42.0273638] + }, + "n1820939513": { + "id": "n1820939513", + "loc": [-85.1232771, 42.0762388] + }, + "n1820939531": { + "id": "n1820939531", + "loc": [-85.264608, 41.9997828] + }, + "n1820939533": { + "id": "n1820939533", + "loc": [-85.4198808, 42.0087914] + }, + "n1820939535": { + "id": "n1820939535", + "loc": [-85.3080864, 41.9715677] + }, + "n1820939536": { + "id": "n1820939536", + "loc": [-85.1189426, 42.0812596] + }, + "n1820939537": { + "id": "n1820939537", + "loc": [-85.2642741, 41.9996764] + }, + "n1820939538": { + "id": "n1820939538", + "loc": [-85.2572531, 42.0079627] + }, + "n1820939539": { + "id": "n1820939539", + "loc": [-85.2907807, 41.9790174] + }, + "n1820939540": { + "id": "n1820939540", + "loc": [-85.3171415, 41.9707301] + }, + "n1820939541": { + "id": "n1820939541", + "loc": [-85.08777, 42.0953841] + }, + "n1820939542": { + "id": "n1820939542", + "loc": [-85.1239262, 42.0773218] + }, + "n1820939543": { + "id": "n1820939543", + "loc": [-84.9973956, 42.0877968] + }, + "n1820939544": { + "id": "n1820939544", + "loc": [-85.011606, 42.0896161] + }, + "n1820939545": { + "id": "n1820939545", + "loc": [-85.4077358, 42.0082971] + }, + "n1820939546": { + "id": "n1820939546", + "loc": [-85.3614945, 41.9933717] + }, + "n1820939547": { + "id": "n1820939547", + "loc": [-85.3189118, 41.9697649] + }, + "n1820939550": { + "id": "n1820939550", + "loc": [-85.1262691, 42.0740221] + }, + "n1820939551": { + "id": "n1820939551", + "loc": [-85.3863639, 41.9994635] + }, + "n1820939552": { + "id": "n1820939552", + "loc": [-85.2836034, 41.9923953] + }, + "n1820939554": { + "id": "n1820939554", + "loc": [-85.3222377, 41.9715916] + }, + "n1820939555": { + "id": "n1820939555", + "loc": [-85.0122658, 42.0906312] + }, + "n1820939556": { + "id": "n1820939556", + "loc": [-85.0022652, 42.0877581] + }, + "n1820939557": { + "id": "n1820939557", + "loc": [-85.1011314, 42.0899954] + }, + "n1820939559": { + "id": "n1820939559", + "loc": [-85.0008181, 42.0885293] + }, + "n1820939561": { + "id": "n1820939561", + "loc": [-85.3637046, 41.9942488] + }, + "n1820939562": { + "id": "n1820939562", + "loc": [-85.4500117, 42.0052892] + }, + "n1820939563": { + "id": "n1820939563", + "loc": [-85.0537636, 42.1036365] + }, + "n1820939565": { + "id": "n1820939565", + "loc": [-85.2367503, 42.0246939] + }, + "n1820939566": { + "id": "n1820939566", + "loc": [-85.0448479, 42.1002653] + }, + "n1820939567": { + "id": "n1820939567", + "loc": [-85.6337065, 41.9295006] + }, + "n1820939568": { + "id": "n1820939568", + "loc": [-85.0879792, 42.095623] + }, + "n1820939569": { + "id": "n1820939569", + "loc": [-85.6347623, 41.9352369] + }, + "n1820939570": { + "id": "n1820939570", + "loc": [-85.1497931, 42.0620378] + }, + "n1820939571": { + "id": "n1820939571", + "loc": [-85.5676169, 41.9656324] + }, + "n1820939572": { + "id": "n1820939572", + "loc": [-85.638041, 41.9166971] + }, + "n1820939573": { + "id": "n1820939573", + "loc": [-85.4993429, 41.9781293] + }, + "n1820939574": { + "id": "n1820939574", + "loc": [-85.5352831, 41.9692127] + }, + "n1820939575": { + "id": "n1820939575", + "loc": [-84.9924429, 42.0857118] + }, + "n1820939577": { + "id": "n1820939577", + "loc": [-85.0581101, 42.1026721] + }, + "n1820939578": { + "id": "n1820939578", + "loc": [-85.641088, 41.9094477] + }, + "n1820939579": { + "id": "n1820939579", + "loc": [-85.2548821, 42.0052282] + }, + "n1820939580": { + "id": "n1820939580", + "loc": [-85.1124463, 42.0859734] + }, + "n1820939581": { + "id": "n1820939581", + "loc": [-85.1083479, 42.0857624] + }, + "n1820939583": { + "id": "n1820939583", + "loc": [-85.1387424, 42.0648893] + }, + "n1820939584": { + "id": "n1820939584", + "loc": [-85.5152645, 41.9700892] + }, + "n1820939585": { + "id": "n1820939585", + "loc": [-85.5463738, 41.9713439] + }, + "n1820939586": { + "id": "n1820939586", + "loc": [-85.360207, 41.9933717] + }, + "n1820939587": { + "id": "n1820939587", + "loc": [-85.2402372, 42.0120917] + }, + "n1820939588": { + "id": "n1820939588", + "loc": [-85.3936381, 42.0047255] + }, + "n1820939589": { + "id": "n1820939589", + "loc": [-85.3310246, 41.973784] + }, + "n1820939590": { + "id": "n1820939590", + "loc": [-85.0329403, 42.096642] + }, + "n1820939591": { + "id": "n1820939591", + "loc": [-85.0097271, 42.0910981] + }, + "n1820939593": { + "id": "n1820939593", + "loc": [-85.0446562, 42.1003437] + }, + "n1820939595": { + "id": "n1820939595", + "loc": [-85.0856671, 42.1008452] + }, + "n1820939596": { + "id": "n1820939596", + "loc": [-85.4087228, 42.0083449] + }, + "n1820939597": { + "id": "n1820939597", + "loc": [-85.0609519, 42.1052564] + }, + "n1820939598": { + "id": "n1820939598", + "loc": [-85.3432126, 41.9874548] + }, + "n1820939599": { + "id": "n1820939599", + "loc": [-85.4041738, 42.0067027] + }, + "n1820939600": { + "id": "n1820939600", + "loc": [-85.0825437, 42.1035768] + }, + "n1820939601": { + "id": "n1820939601", + "loc": [-85.048422, 42.101498] + }, + "n1820939602": { + "id": "n1820939602", + "loc": [-85.0336256, 42.0999031] + }, + "n1820939603": { + "id": "n1820939603", + "loc": [-85.046818, 42.1014104] + }, + "n1820939605": { + "id": "n1820939605", + "loc": [-85.2856524, 41.98078] + }, + "n1820939607": { + "id": "n1820939607", + "loc": [-85.1118173, 42.0864245] + }, + "n1820939609": { + "id": "n1820939609", + "loc": [-85.0443397, 42.1006263] + }, + "n1820939610": { + "id": "n1820939610", + "loc": [-85.0336698, 42.0978361] + }, + "n1820939611": { + "id": "n1820939611", + "loc": [-85.4630322, 42.0014248] + }, + "n1820939612": { + "id": "n1820939612", + "loc": [-85.0613127, 42.1052353] + }, + "n1820939613": { + "id": "n1820939613", + "loc": [-85.0137571, 42.0887801] + }, + "n1820939614": { + "id": "n1820939614", + "loc": [-85.272487, 41.9982013] + }, + "n1820939616": { + "id": "n1820939616", + "loc": [-85.4665727, 41.9983791] + }, + "n1820939617": { + "id": "n1820939617", + "loc": [-85.1288078, 42.0725476] + }, + "n1820939618": { + "id": "n1820939618", + "loc": [-85.4653282, 42.00109] + }, + "n1820939619": { + "id": "n1820939619", + "loc": [-85.2314717, 42.0276746] + }, + "n1820939620": { + "id": "n1820939620", + "loc": [-85.255982, 42.0003569] + }, + "n1820939621": { + "id": "n1820939621", + "loc": [-85.2886779, 41.9787223] + }, + "n1820939622": { + "id": "n1820939622", + "loc": [-85.22438, 42.0367509] + }, + "n1820939623": { + "id": "n1820939623", + "loc": [-85.0334713, 42.0998382] + }, + "n1820939624": { + "id": "n1820939624", + "loc": [-85.2236504, 42.037484] + }, + "n1820939625": { + "id": "n1820939625", + "loc": [-85.636908, 41.9175162] + }, + "n1820939627": { + "id": "n1820939627", + "loc": [-85.2669187, 41.9989707] + }, + "n1820939628": { + "id": "n1820939628", + "loc": [-85.3247268, 41.9720702] + }, + "n1820939629": { + "id": "n1820939629", + "loc": [-85.3785104, 41.9987299] + }, + "n1820939630": { + "id": "n1820939630", + "loc": [-85.5267658, 41.9720515] + }, + "n1820939631": { + "id": "n1820939631", + "loc": [-85.2445116, 42.0098811] + }, + "n1820939632": { + "id": "n1820939632", + "loc": [-85.1271448, 42.0725077] + }, + "n1820939633": { + "id": "n1820939633", + "loc": [-85.0345751, 42.099724] + }, + "n1820939634": { + "id": "n1820939634", + "loc": [-85.4217476, 42.0089986] + }, + "n1820939635": { + "id": "n1820939635", + "loc": [-85.3121848, 41.9689433] + }, + "n1820939636": { + "id": "n1820939636", + "loc": [-85.2826419, 41.9929985] + }, + "n1820939637": { + "id": "n1820939637", + "loc": [-85.3160257, 41.9706344] + }, + "n1820939638": { + "id": "n1820939638", + "loc": [-85.5684967, 41.9657919] + }, + "n1820939640": { + "id": "n1820939640", + "loc": [-85.225131, 42.0356194] + }, + "n1820939642": { + "id": "n1820939642", + "loc": [-85.1324124, 42.0693328] + }, + "n1820939644": { + "id": "n1820939644", + "loc": [-84.9994073, 42.0878843] + }, + "n1820939645": { + "id": "n1820939645", + "loc": [-85.1087596, 42.0863329] + }, + "n1820939646": { + "id": "n1820939646", + "loc": [-85.2915532, 41.9782996] + }, + "n1820939647": { + "id": "n1820939647", + "loc": [-84.9988708, 42.0877808] + }, + "n1820939648": { + "id": "n1820939648", + "loc": [-85.2243628, 42.0356728] + }, + "n1820939649": { + "id": "n1820939649", + "loc": [-85.0427397, 42.1020524] + }, + "n1820939650": { + "id": "n1820939650", + "loc": [-85.6388392, 41.9100752] + }, + "n1820939651": { + "id": "n1820939651", + "loc": [-85.0133709, 42.0888557] + }, + "n1820939652": { + "id": "n1820939652", + "loc": [-85.318798, 41.9701211] + }, + "n1820939653": { + "id": "n1820939653", + "loc": [-85.6335778, 41.9190602] + }, + "n1820939654": { + "id": "n1820939654", + "loc": [-85.6338396, 41.9370247] + }, + "n1820939655": { + "id": "n1820939655", + "loc": [-85.0939069, 42.0931988] + }, + "n1820939656": { + "id": "n1820939656", + "loc": [-85.5702347, 41.9651378] + }, + "n1820939657": { + "id": "n1820939657", + "loc": [-85.4235286, 42.0088392] + }, + "n1820939658": { + "id": "n1820939658", + "loc": [-85.2740856, 41.9972206] + }, + "n1820939659": { + "id": "n1820939659", + "loc": [-85.4824299, 41.9934195] + }, + "n1820939660": { + "id": "n1820939660", + "loc": [-85.3857846, 42.0014408] + }, + "n1820939661": { + "id": "n1820939661", + "loc": [-85.0451658, 42.10028] + }, + "n1820939662": { + "id": "n1820939662", + "loc": [-85.3893036, 42.001377] + }, + "n1820939664": { + "id": "n1820939664", + "loc": [-85.2455845, 42.0088607] + }, + "n1820939665": { + "id": "n1820939665", + "loc": [-85.2741071, 41.9951116] + }, + "n1820939666": { + "id": "n1820939666", + "loc": [-85.1298375, 42.0677718] + }, + "n1820939667": { + "id": "n1820939667", + "loc": [-85.5491848, 41.9707377] + }, + "n1820939669": { + "id": "n1820939669", + "loc": [-85.2780298, 41.995238] + }, + "n1820939670": { + "id": "n1820939670", + "loc": [-85.1330068, 42.0716926] + }, + "n1820939671": { + "id": "n1820939671", + "loc": [-85.0811342, 42.1025129] + }, + "n1820939672": { + "id": "n1820939672", + "loc": [-85.2325124, 42.0290135] + }, + "n1820939673": { + "id": "n1820939673", + "loc": [-85.2975077, 41.9716953] + }, + "n1820939674": { + "id": "n1820939674", + "loc": [-85.0951729, 42.0922394] + }, + "n1820939676": { + "id": "n1820939676", + "loc": [-85.0363252, 42.1043119] + }, + "n1820939677": { + "id": "n1820939677", + "loc": [-85.2960057, 41.97349] + }, + "n1820939678": { + "id": "n1820939678", + "loc": [-85.3701849, 41.9982515] + }, + "n1820939679": { + "id": "n1820939679", + "loc": [-85.3381486, 41.9848861] + }, + "n1820939680": { + "id": "n1820939680", + "loc": [-85.2058448, 42.0417286] + }, + "n1820939682": { + "id": "n1820939682", + "loc": [-85.0819335, 42.1034443] + }, + "n1820939683": { + "id": "n1820939683", + "loc": [-85.3872223, 41.9993359] + }, + "n1820939684": { + "id": "n1820939684", + "loc": [-85.095366, 42.091909] + }, + "n1820939685": { + "id": "n1820939685", + "loc": [-85.2327914, 42.0291888] + }, + "n1820939686": { + "id": "n1820939686", + "loc": [-85.0433459, 42.1018773] + }, + "n1820939687": { + "id": "n1820939687", + "loc": [-85.0585339, 42.1027318] + }, + "n1820939688": { + "id": "n1820939688", + "loc": [-85.0062885, 42.0876347] + }, + "n1820939689": { + "id": "n1820939689", + "loc": [-85.246299, 42.017377] + }, + "n1820939690": { + "id": "n1820939690", + "loc": [-85.2932376, 41.9742877] + }, + "n1820939691": { + "id": "n1820939691", + "loc": [-85.2962846, 41.9736815] + }, + "n1820939692": { + "id": "n1820939692", + "loc": [-85.6052365, 41.9409193] + }, + "n1820939693": { + "id": "n1820939693", + "loc": [-85.2570536, 42.0003341] + }, + "n1820939694": { + "id": "n1820939694", + "loc": [-85.0488458, 42.1014064] + }, + "n1820939695": { + "id": "n1820939695", + "loc": [-85.4050321, 42.0069578] + }, + "n1820939696": { + "id": "n1820939696", + "loc": [-85.4847517, 41.9845894] + }, + "n1820939697": { + "id": "n1820939697", + "loc": [-85.0844655, 42.1013826] + }, + "n1820939698": { + "id": "n1820939698", + "loc": [-85.1437206, 42.0650008] + }, + "n1820939699": { + "id": "n1820939699", + "loc": [-85.1168183, 42.0864034] + }, + "n1820939700": { + "id": "n1820939700", + "loc": [-85.5479831, 41.9711366] + }, + "n1820939701": { + "id": "n1820939701", + "loc": [-85.0349948, 42.1034124] + }, + "n1820939702": { + "id": "n1820939702", + "loc": [-85.0835589, 42.1038821] + }, + "n1820939703": { + "id": "n1820939703", + "loc": [-85.0203875, 42.0902649] + }, + "n1820939704": { + "id": "n1820939704", + "loc": [-85.0371191, 42.1038184] + }, + "n1820939705": { + "id": "n1820939705", + "loc": [-85.1273312, 42.0735681] + }, + "n1820939707": { + "id": "n1820939707", + "loc": [-85.1272239, 42.0730226] + }, + "n1820939710": { + "id": "n1820939710", + "loc": [-85.0349881, 42.1019012] + }, + "n1820939712": { + "id": "n1820939712", + "loc": [-85.2440459, 42.0178313] + }, + "n1820939713": { + "id": "n1820939713", + "loc": [-85.2444751, 42.0182618] + }, + "n1820939714": { + "id": "n1820939714", + "loc": [-85.0539996, 42.1032863] + }, + "n1820939715": { + "id": "n1820939715", + "loc": [-85.2215905, 42.0373246] + }, + "n1820939716": { + "id": "n1820939716", + "loc": [-85.0649712, 42.1051994] + }, + "n1820939717": { + "id": "n1820939717", + "loc": [-85.0927146, 42.0927581] + }, + "n1820939718": { + "id": "n1820939718", + "loc": [-85.3884668, 42.0042312] + }, + "n1820939719": { + "id": "n1820939719", + "loc": [-85.0840672, 42.1013241] + }, + "n1820939720": { + "id": "n1820939720", + "loc": [-85.304739, 41.9725408] + }, + "n1820939721": { + "id": "n1820939721", + "loc": [-85.2243585, 42.0371334] + }, + "n1820939722": { + "id": "n1820939722", + "loc": [-85.0599823, 42.1049686] + }, + "n1820939723": { + "id": "n1820939723", + "loc": [-85.0298825, 42.0944288] + }, + "n1820939724": { + "id": "n1820939724", + "loc": [-85.0366095, 42.1042443] + }, + "n1820939725": { + "id": "n1820939725", + "loc": [-85.0698783, 42.1058135] + }, + "n1820939726": { + "id": "n1820939726", + "loc": [-85.1054551, 42.0873361] + }, + "n1820939727": { + "id": "n1820939727", + "loc": [-84.9952324, 42.0864285] + }, + "n1820939728": { + "id": "n1820939728", + "loc": [-85.3442211, 41.9897993] + }, + "n1820939729": { + "id": "n1820939729", + "loc": [-85.4386134, 42.0056822] + }, + "n1820939730": { + "id": "n1820939730", + "loc": [-85.2438528, 42.0146589] + }, + "n1820939731": { + "id": "n1820939731", + "loc": [-85.0355581, 42.1041846] + }, + "n1820939732": { + "id": "n1820939732", + "loc": [-85.557682, 41.9724447] + }, + "n1820939734": { + "id": "n1820939734", + "loc": [-85.2299418, 42.033314] + }, + "n1820939735": { + "id": "n1820939735", + "loc": [-85.6297412, 41.9419088] + }, + "n1820939736": { + "id": "n1820939736", + "loc": [-85.2645101, 41.9980259] + }, + "n1820939738": { + "id": "n1820939738", + "loc": [-85.082195, 42.1035649] + }, + "n1820939739": { + "id": "n1820939739", + "loc": [-85.234272, 42.0267102] + }, + "n1820939740": { + "id": "n1820939740", + "loc": [-85.0130758, 42.0895006] + }, + "n1820939741": { + "id": "n1820939741", + "loc": [-85.4594702, 42.0000375] + }, + "n1820939742": { + "id": "n1820939742", + "loc": [-84.9946745, 42.0863687] + }, + "n1820939743": { + "id": "n1820939743", + "loc": [-85.6438775, 41.9120186] + }, + "n1820939744": { + "id": "n1820939744", + "loc": [-85.6372685, 41.9168089] + }, + "n1820939745": { + "id": "n1820939745", + "loc": [-85.2789468, 41.9893208] + }, + "n1820939747": { + "id": "n1820939747", + "loc": [-85.3775019, 41.998427] + }, + "n1820939749": { + "id": "n1820939749", + "loc": [-85.0993571, 42.0909178] + }, + "n1820939750": { + "id": "n1820939750", + "loc": [-85.1308503, 42.0669339] + }, + "n1820939751": { + "id": "n1820939751", + "loc": [-85.4802566, 41.9856659] + }, + "n1820939752": { + "id": "n1820939752", + "loc": [-85.2543563, 42.0108804] + }, + "n1820939753": { + "id": "n1820939753", + "loc": [-85.1041033, 42.0878815] + }, + "n1820939755": { + "id": "n1820939755", + "loc": [-85.4000969, 42.0071651] + }, + "n1820939757": { + "id": "n1820939757", + "loc": [-85.3858275, 42.0022381] + }, + "n1820939758": { + "id": "n1820939758", + "loc": [-85.3653998, 41.996609] + }, + "n1820939759": { + "id": "n1820939759", + "loc": [-85.2432949, 42.0202305] + }, + "n1820939760": { + "id": "n1820939760", + "loc": [-85.3878874, 42.0042472] + }, + "n1820939761": { + "id": "n1820939761", + "loc": [-85.2516741, 42.0114145] + }, + "n1820939762": { + "id": "n1820939762", + "loc": [-85.2788825, 41.9865142] + }, + "n1820939763": { + "id": "n1820939763", + "loc": [-85.0009147, 42.0886686] + }, + "n1820939764": { + "id": "n1820939764", + "loc": [-85.3918142, 42.003434] + }, + "n1820939765": { + "id": "n1820939765", + "loc": [-85.5532832, 41.9696848] + }, + "n1820939766": { + "id": "n1820939766", + "loc": [-85.5545063, 41.969254] + }, + "n1820939768": { + "id": "n1820939768", + "loc": [-85.1327989, 42.0704769] + }, + "n1820939770": { + "id": "n1820939770", + "loc": [-85.0588558, 42.1047696] + }, + "n1820939772": { + "id": "n1820939772", + "loc": [-85.555798, 41.9713017] + }, + "n1820939773": { + "id": "n1820939773", + "loc": [-85.0565853, 42.1023589] + }, + "n1820939774": { + "id": "n1820939774", + "loc": [-85.2582941, 41.9992765] + }, + "n1820939775": { + "id": "n1820939775", + "loc": [-85.3007264, 41.9727642] + }, + "n1820939776": { + "id": "n1820939776", + "loc": [-85.2477045, 42.0082652] + }, + "n1820939777": { + "id": "n1820939777", + "loc": [-85.2415247, 42.0104973] + }, + "n1821006698": { + "id": "n1821006698", + "loc": [-85.6345227, 41.9382009] + }, + "n1821006700": { + "id": "n1821006700", + "loc": [-85.6344894, 41.938975] + }, + "n1821006704": { + "id": "n1821006704", + "loc": [-85.6351181, 41.9370157] + }, + "n1821006706": { + "id": "n1821006706", + "loc": [-85.6357554, 41.9361657] + }, + "n1821006708": { + "id": "n1821006708", + "loc": [-85.6351235, 41.9368481] + }, + "n1821006710": { + "id": "n1821006710", + "loc": [-85.6352844, 41.9364211] + }, + "n1821006712": { + "id": "n1821006712", + "loc": [-85.6351503, 41.937307] + }, + "n1821006716": { + "id": "n1821006716", + "loc": [-85.6350366, 41.9379774] + }, + "n1821006725": { + "id": "n1821006725", + "loc": [-85.6352147, 41.9375903] + }, + "n1821137607": { + "id": "n1821137607", + "loc": [-85.5297057, 41.9669915] + }, + "n1821137608": { + "id": "n1821137608", + "loc": [-85.5288598, 41.9673094] + }, + "n1821139530": { + "id": "n1821139530", + "loc": [-85.4832228, 41.9881686] + }, + "n1821139531": { + "id": "n1821139531", + "loc": [-85.4812101, 41.9851258] + }, + "n1821139532": { + "id": "n1821139532", + "loc": [-85.4799127, 41.9860244] + }, + "n1821139533": { + "id": "n1821139533", + "loc": [-85.4800313, 41.9865555] + }, + "n1841425201": { + "id": "n1841425201", + "loc": [-85.4334577, 42.0063713] + }, + "n1841425222": { + "id": "n1841425222", + "loc": [-85.4382449, 42.0055785] + }, + "n1914861007": { + "id": "n1914861007", + "loc": [-85.394959, 42.0057472] + }, + "n1914861057": { + "id": "n1914861057", + "loc": [-85.3967185, 42.0049695] + }, + "n1914861112": { + "id": "n1914861112", + "loc": [-85.394179, 42.0056906] + }, + "n1914861306": { + "id": "n1914861306", + "loc": [-85.3900226, 42.0028488] + }, + "n2114807565": { + "id": "n2114807565", + "loc": [-85.6385979, 41.9577824] + }, + "n2114807568": { + "id": "n2114807568", + "loc": [-85.6325097, 41.9775713] + }, + "n2114807572": { + "id": "n2114807572", + "loc": [-85.6328996, 41.9980965] + }, + "n2114807578": { + "id": "n2114807578", + "loc": [-85.6344818, 41.9696956] + }, + "n2114807583": { + "id": "n2114807583", + "loc": [-85.6326289, 41.9757853] + }, + "n2114807593": { + "id": "n2114807593", + "loc": [-85.6360828, 41.9650674] + }, + "n2130304159": { + "id": "n2130304159", + "loc": [-85.6352537, 41.9450015], + "tags": { + "railway": "level_crossing" + } + }, + "n2139795852": { + "id": "n2139795852", + "loc": [-85.6374708, 41.9311633] + }, + "n2139858882": { + "id": "n2139858882", + "loc": [-85.635178, 41.9356158] + }, + "n2139858883": { + "id": "n2139858883", + "loc": [-85.63533, 41.9355886] + }, + "n2139858884": { + "id": "n2139858884", + "loc": [-85.6353819, 41.93556] + }, + "n2139858885": { + "id": "n2139858885", + "loc": [-85.6353665, 41.9355157] + }, + "n2139858886": { + "id": "n2139858886", + "loc": [-85.6353165, 41.9354971] + }, + "n2139858887": { + "id": "n2139858887", + "loc": [-85.6352454, 41.9355328] + }, + "n2139858888": { + "id": "n2139858888", + "loc": [-85.6350184, 41.9357846] + }, + "n2139858889": { + "id": "n2139858889", + "loc": [-85.634978, 41.9359448] + }, + "n2139858890": { + "id": "n2139858890", + "loc": [-85.6347723, 41.9361523] + }, + "n2139858891": { + "id": "n2139858891", + "loc": [-85.6347165, 41.9362667] + }, + "n2139858892": { + "id": "n2139858892", + "loc": [-85.6346992, 41.9364312] + }, + "n2139858893": { + "id": "n2139858893", + "loc": [-85.634603, 41.9366329] + }, + "n2139858894": { + "id": "n2139858894", + "loc": [-85.6345973, 41.9367488] + }, + "n2139858895": { + "id": "n2139858895", + "loc": [-85.6345127, 41.9369734] + }, + "n2139858896": { + "id": "n2139858896", + "loc": [-85.634478, 41.9371923] + }, + "n2139858897": { + "id": "n2139858897", + "loc": [-85.6344838, 41.9373768] + }, + "n2139858898": { + "id": "n2139858898", + "loc": [-85.6346242, 41.9375299] + }, + "n2139858899": { + "id": "n2139858899", + "loc": [-85.6347723, 41.9376357] + }, + "n2139858900": { + "id": "n2139858900", + "loc": [-85.6347607, 41.9377788] + }, + "n2139858901": { + "id": "n2139858901", + "loc": [-85.6346204, 41.9379533] + }, + "n2139858902": { + "id": "n2139858902", + "loc": [-85.6344184, 41.9380105] + }, + "n2139858903": { + "id": "n2139858903", + "loc": [-85.6341627, 41.9380406] + }, + "n2139858904": { + "id": "n2139858904", + "loc": [-85.634005, 41.9381679] + }, + "n2139858905": { + "id": "n2139858905", + "loc": [-85.63393, 41.9383353] + }, + "n2139858906": { + "id": "n2139858906", + "loc": [-85.6338588, 41.9384597] + }, + "n2139858907": { + "id": "n2139858907", + "loc": [-85.6336627, 41.9387759] + }, + "n2139858908": { + "id": "n2139858908", + "loc": [-85.6335127, 41.9389361] + }, + "n2139858933": { + "id": "n2139858933", + "loc": [-85.6353118, 41.9432646] + }, + "n2139858934": { + "id": "n2139858934", + "loc": [-85.6353952, 41.9433002] + }, + "n2139858935": { + "id": "n2139858935", + "loc": [-85.6356496, 41.9433255] + }, + "n2139858936": { + "id": "n2139858936", + "loc": [-85.6363128, 41.9433373] + }, + "n2139858937": { + "id": "n2139858937", + "loc": [-85.6365467, 41.9433779] + }, + "n2139858938": { + "id": "n2139858938", + "loc": [-85.6368692, 41.9435265] + }, + "n2139858939": { + "id": "n2139858939", + "loc": [-85.6370986, 41.9437039] + }, + "n2139858940": { + "id": "n2139858940", + "loc": [-85.6372371, 41.9437732] + }, + "n2139858941": { + "id": "n2139858941", + "loc": [-85.6374756, 41.9438171] + }, + "n2139858942": { + "id": "n2139858942", + "loc": [-85.6376164, 41.9439286] + }, + "n2139858943": { + "id": "n2139858943", + "loc": [-85.6377504, 41.944138] + }, + "n2139858944": { + "id": "n2139858944", + "loc": [-85.6384204, 41.9443137] + }, + "n2139858945": { + "id": "n2139858945", + "loc": [-85.6385726, 41.9444506] + }, + "n2139858946": { + "id": "n2139858946", + "loc": [-85.638702, 41.9445739] + }, + "n2139858947": { + "id": "n2139858947", + "loc": [-85.6387179, 41.9446516] + }, + "n2139858948": { + "id": "n2139858948", + "loc": [-85.6387088, 41.9447985] + }, + "n2139858949": { + "id": "n2139858949", + "loc": [-85.6387656, 41.9449877] + }, + "n2139858950": { + "id": "n2139858950", + "loc": [-85.638777, 41.9451448] + }, + "n2139858951": { + "id": "n2139858951", + "loc": [-85.6387088, 41.9452631] + }, + "n2139858964": { + "id": "n2139858964", + "loc": [-85.6383346, 41.9442912] + }, + "n2139858966": { + "id": "n2139858966", + "loc": [-85.6384724, 41.9443605] + }, + "n2139858967": { + "id": "n2139858967", + "loc": [-85.6354078, 41.9434285] + }, + "n2139858968": { + "id": "n2139858968", + "loc": [-85.635271, 41.943654] + }, + "n2139858969": { + "id": "n2139858969", + "loc": [-85.6352657, 41.9437437] + }, + "n2139858970": { + "id": "n2139858970", + "loc": [-85.635271, 41.9438195] + }, + "n2139858971": { + "id": "n2139858971", + "loc": [-85.6351563, 41.9438906] + }, + "n2139858972": { + "id": "n2139858972", + "loc": [-85.6351384, 41.9438882] + }, + "n2139858973": { + "id": "n2139858973", + "loc": [-85.6351514, 41.9438034] + }, + "n2139858974": { + "id": "n2139858974", + "loc": [-85.6351237, 41.9436641] + }, + "n2139858975": { + "id": "n2139858975", + "loc": [-85.6351498, 41.9436108] + }, + "n2139858976": { + "id": "n2139858976", + "loc": [-85.6351058, 41.9435345] + }, + "n2139858977": { + "id": "n2139858977", + "loc": [-85.6349641, 41.9432051] + }, + "n2139858986": { + "id": "n2139858986", + "loc": [-85.6341205, 41.9380746] + }, + "n2139858990": { + "id": "n2139858990", + "loc": [-85.6345671, 41.9381816] + }, + "n2139858995": { + "id": "n2139858995", + "loc": [-85.6339783, 41.9382273] + }, + "n2139859003": { + "id": "n2139859003", + "loc": [-85.6340477, 41.9373489] + }, + "n2139859004": { + "id": "n2139859004", + "loc": [-85.6339784, 41.9374752] + }, + "n2139870406": { + "id": "n2139870406", + "loc": [-85.6342265, 41.9432605] + }, + "n2139877106": { + "id": "n2139877106", + "loc": [-85.6346323, 41.9438746] + }, + "n2139982399": { + "id": "n2139982399", + "loc": [-85.6324055, 41.9408537] + }, + "n2139982400": { + "id": "n2139982400", + "loc": [-85.632488, 41.941063], + "tags": { + "leisure": "slipway" + } + }, + "n2139982401": { + "id": "n2139982401", + "loc": [-85.6327261, 41.9415366] + }, + "n2139982402": { + "id": "n2139982402", + "loc": [-85.6326391, 41.9413598] + }, + "n2139982403": { + "id": "n2139982403", + "loc": [-85.6327041, 41.9414391] + }, + "n2139982405": { + "id": "n2139982405", + "loc": [-85.6322891, 41.9406009] + }, + "n2139982406": { + "id": "n2139982406", + "loc": [-85.6325412, 41.9425257] + }, + "n2139989333": { + "id": "n2139989333", + "loc": [-85.6340584, 41.9431731] + }, + "n2140006331": { + "id": "n2140006331", + "loc": [-85.6361751, 41.9459744] + }, + "n2140006334": { + "id": "n2140006334", + "loc": [-85.636528, 41.9459751] + }, + "n2140006336": { + "id": "n2140006336", + "loc": [-85.6370918, 41.9458926] + }, + "n2140006338": { + "id": "n2140006338", + "loc": [-85.6378806, 41.9456474] + }, + "n2140006340": { + "id": "n2140006340", + "loc": [-85.6385831, 41.9454343] + }, + "n2140006342": { + "id": "n2140006342", + "loc": [-85.639341, 41.945157] + }, + "n2140006344": { + "id": "n2140006344", + "loc": [-85.6393497, 41.9450232] + }, + "n2140006346": { + "id": "n2140006346", + "loc": [-85.6388245, 41.9450145] + }, + "n2140006348": { + "id": "n2140006348", + "loc": [-85.6388167, 41.9441739] + }, + "n2140006351": { + "id": "n2140006351", + "loc": [-85.6382915, 41.9441797] + }, + "n2140006353": { + "id": "n2140006353", + "loc": [-85.63828, 41.9438109] + }, + "n2140006355": { + "id": "n2140006355", + "loc": [-85.6381949, 41.9436009] + }, + "n2140006357": { + "id": "n2140006357", + "loc": [-85.6371904, 41.9435918] + }, + "n2140006359": { + "id": "n2140006359", + "loc": [-85.6366966, 41.9432727] + }, + "n2140006361": { + "id": "n2140006361", + "loc": [-85.6353755, 41.9432744] + }, + "n2140006365": { + "id": "n2140006365", + "loc": [-85.6350906, 41.9435472] + }, + "n2140006366": { + "id": "n2140006366", + "loc": [-85.6343461, 41.9441573] + }, + "n2140006395": { + "id": "n2140006395", + "loc": [-85.6351171, 41.9437175] + }, + "n2140006397": { + "id": "n2140006397", + "loc": [-85.635352, 41.9450206] + }, + "n2140006399": { + "id": "n2140006399", + "loc": [-85.6358194, 41.9454937] + }, + "n2140006401": { + "id": "n2140006401", + "loc": [-85.6348693, 41.9445739] + }, + "n2140006431": { + "id": "n2140006431", + "loc": [-85.6376737, 41.9438023] + }, + "n2140006437": { + "id": "n2140006437", + "loc": [-85.6382631, 41.9442724] + }, + "n2189123379": { + "id": "n2189123379", + "loc": [-85.6342671, 41.9352665] + }, + "w203974076": { + "id": "w203974076", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139870442", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n2139870452"] + }, + "w170989131": { + "id": "w170989131", + "tags": { + "name": "St Joseph River", + "waterway": "river" + }, + "nodes": [ + "n1820938225", + "n1820938712", + "n1820937596", + "n1820937574", + "n1820938515", + "n1820938330", + "n1820938678", + "n1820938240", + "n1820938950", + "n1820939226", + "n1820939575", + "n1820937913", + "n1820938223", + "n1820937668", + "n1820938545", + "n1820937584", + "n1820939742", + "n1820939727", + "n1820937578", + "n1820938149", + "n1820938124", + "n1820938888", + "n1820938898", + "n1820937922", + "n1820939543", + "n1820939370", + "n1820939401", + "n1820939647", + "n1820938345", + "n1820939644", + "n1820938333", + "n1820938370", + "n1820938624", + "n1820938493", + "n1820939559", + "n1820939763", + "n1820939237", + "n1820939416", + "n1820937810", + "n1820938317", + "n1820938324", + "n1820937558", + "n1820939556", + "n1820938298", + "n1820939348", + "n1820939125", + "n1820939081", + "n1820938859", + "n1820939126", + "n1820938881", + "n1820939439", + "n1820939324", + "n1820939128", + "n1820938101", + "n1820937706", + "n1820938382", + "n1820938776", + "n1820937815", + "n1820939177", + "n1820939688", + "n1820938952", + "n1820938216", + "n1820938387", + "n1820939333", + "n1820938243", + "n1820938248", + "n1820937666", + "n1820939051", + "n1820938332", + "n1820939438", + "n1820939407", + "n1820939361", + "n1820937517", + "n1820938770", + "n1820939591", + "n1820937857", + "n1820938491", + "n1820937993", + "n1820938125", + "n1820938166", + "n1820937746", + "n1820939028", + "n1820937638", + "n1820938676", + "n1820938843", + "n1820938844", + "n1820937978", + "n1820938730", + "n1820939544", + "n1820938304", + "n1820939123", + "n1820939494", + "n1820939450", + "n1820939555", + "n1820938133", + "n1820938129", + "n1820938871", + "n1820939408", + "n1820938669", + "n1820938260", + "n1820939740", + "n1820937625", + "n1820938631", + "n1820939651", + "n1820939613", + "n1820937850", + "n1820938325", + "n1820937736", + "n1820938804", + "n1820938837", + "n1820938014", + "n1820938991", + "n1820938722", + "n1820938935", + "n1820937870", + "n1820938432", + "n1820937986", + "n1820938756", + "n1820938966", + "n1820939159", + "n1820937744", + "n1820938334", + "n1820937645", + "n1820939394", + "n1820937656", + "n1820938392", + "n1820939703", + "n1820938385", + "n1820938947", + "n1820938854", + "n1820938428", + "n1820938488", + "n1820938269", + "n1820938668", + "n1820938268", + "n1820938707", + "n1820937732", + "n1820939144", + "n1820938481", + "n1820938771", + "n1820938686", + "n1820938948", + "n1820937997", + "n1820937769", + "n1820939003", + "n1820938083", + "n1820939011", + "n1820938803", + "n1820938700", + "n1820939723", + "n1820938808", + "n1820938262", + "n1820938081", + "n1820938926", + "n1820938326", + "n1820938102", + "n1820938508", + "n1820939590", + "n1820939199", + "n1820938084", + "n1820938870", + "n1820938895", + "n1820937611", + "n1820938918", + "n1820938514", + "n1820939610", + "n1820938910", + "n1820937523", + "n1820938127", + "n1820939108", + "n1820937981", + "n1820938938", + "n1820938715", + "n1820939016", + "n1820938237", + "n1820939623", + "n1820939602", + "n1820937734", + "n1820938977", + "n1820939633", + "n1820939156", + "n1820939406", + "n1820938279", + "n1820938301", + "n1820937678", + "n1820937671", + "n1820939163", + "n1820938356", + "n1820939372", + "n1820937568", + "n1820937626", + "n1820939710", + "n1820939004", + "n1820938253", + "n1820938571", + "n1820937513", + "n1820939412", + "n1820939701", + "n1820939509", + "n1820938839", + "n1820939731", + "n1820937798", + "n1820939676", + "n1820939724", + "n1820939243", + "n1820939704", + "n1820937814", + "n1820937599", + "n1820938199", + "n1820938995", + "n1820938445", + "n1820938069", + "n1820938470", + "n1820939074", + "n1820938193", + "n1820938740", + "n1820938047", + "n1820939507", + "n1820939441", + "n1820939160", + "n1820937849", + "n1820937840", + "n1820938052", + "n1820938988", + "n1820938796", + "n1820937724", + "n1820937620", + "n1820939304", + "n1820938343", + "n1820939649", + "n1820938875", + "n1820939686", + "n1820938476", + "n1820937801", + "n1820937737", + "n1820938264", + "n1820939609", + "n1820939496", + "n1820939593", + "n1820939566", + "n1820939661", + "n1820937782", + "n1820938912", + "n1820939173", + "n1820937733", + "n1820938953", + "n1820939603", + "n1820937607", + "n1820938468", + "n1820939601", + "n1820939694", + "n1820939133", + "n1820938897", + "n1820938893", + "n1820937831", + "n1820937730", + "n1820938820", + "n1820938046", + "n1820938426", + "n1820938347", + "n1820937582", + "n1820938954", + "n1820938033", + "n1820938104", + "n1820938680", + "n1820939563", + "n1820939404", + "n1820939714", + "n1820939000", + "n1820937992", + "n1820938168", + "n1820939510", + "n1820939500", + "n1820937509", + "n1820938865", + "n1820939773", + "n1820938138", + "n1820938905", + "n1820937623", + "n1820939418", + "n1820937946", + "n1820939577", + "n1820937615", + "n1820939687", + "n1820939119", + "n1820937988", + "n1820938337", + "n1820937750", + "n1820938703", + "n1820938339", + "n1820939044", + "n1820939770", + "n1820938913", + "n1820937672", + "n1820939722", + "n1820937768", + "n1820939597", + "n1820939612", + "n1820937699", + "n1820937682", + "n1820937669", + "n1820937657", + "n1820939363", + "n1820937800", + "n1820938265", + "n1820937760", + "n1820938207", + "n1820938115", + "n1820939130", + "n1820939716", + "n1820938338", + "n1820938239", + "n1820939040", + "n1820938064", + "n1820938855", + "n1820939015", + "n1820938258", + "n1820939042", + "n1820939043", + "n1820938443", + "n1820939725", + "n1820937675", + "n1820938568", + "n1820938280", + "n1820937705", + "n1820938775", + "n1820938636", + "n1820938626", + "n1820937859", + "n1820938096", + "n1820937852", + "n1820939039", + "n1820938247", + "n1820938585", + "n1820937707", + "n1820938117", + "n1820938909", + "n1820939115", + "n1820939335", + "n1820938805", + "n1820937935", + "n1820937876", + "n1820938699", + "n1820937869", + "n1820938603", + "n1820938100", + "n1820938500", + "n1820938283", + "n1820938275", + "n1820938923", + "n1820938365", + "n1820938349", + "n1820937804", + "n1820937903", + "n1820937608", + "n1820938688", + "n1820939671", + "n1820938092", + "n1820937820", + "n1820938753", + "n1820938922", + "n1820937990", + "n1820939682", + "n1820939738", + "n1820939600", + "n1820938167", + "n1820937726", + "n1820939702", + "n1820938209", + "n1820939456", + "n1820937837", + "n1820938222", + "n1820938902", + "n1820939162", + "n1820938965", + "n1820938461", + "n1820937681", + "n1820937514", + "n1820937764", + "n1820939719", + "n1820939697", + "n1820938899", + "n1820939093", + "n1820938702", + "n1820939595", + "n1820938749", + "n1820938348", + "n1820937606", + "n1820938675", + "n1820938830", + "n1820938737", + "n1820938758", + "n1820938716", + "n1820939107", + "n1820937863", + "n1820939033", + "n1820938163", + "n1820937867", + "n1820938819", + "n1820938034", + "n1820938252", + "n1820937563", + "n1820937868", + "n1820939032", + "n1820938632", + "n1820937982", + "n1820937943", + "n1820939568", + "n1820939541", + "n1820938215", + "n1820939097", + "n1820938812", + "n1820937518", + "n1820937952", + "n1820938711", + "n1820938736", + "n1820939066", + "n1820937591", + "n1820938082", + "n1820938108", + "n1820938496", + "n1820939410", + "n1820938949", + "n1820938327", + "n1820937708", + "n1820939023", + "n1820937772", + "n1820938256", + "n1820939083", + "n1820938378", + "n1820938961", + "n1820937610", + "n1820939717", + "n1820938695", + "n1820938590", + "n1820939655", + "n1820938341", + "n1820939054", + "n1820939157", + "n1820939674", + "n1820939684", + "n1820939511", + "n1820937631", + "n1820939458", + "n1820937830", + "n1820937709", + "n1820937779", + "n1820939749", + "n1820938880", + "n1820938856", + "n1820938557", + "n1820939557", + "n1820938249", + "n1820938818", + "n1820937594", + "n1820939114", + "n1820938416", + "n1820937508", + "n1820938990", + "n1820938201", + "n1820937759", + "n1820937987", + "n1820939164", + "n1820939753", + "n1820938187", + "n1820939067", + "n1820937586", + "n1820937941", + "n1820938121", + "n1820937807", + "n1820938521", + "n1820939726", + "n1820938244", + "n1820939014", + "n1820938741", + "n1820937629", + "n1820938664", + "n1820938747", + "n1820939082", + "n1820938709", + "n1820938320", + "n1820938270", + "n1820937619", + "n1820937777", + "n1820937718", + "n1820939138", + "n1820938056", + "n1820938155", + "n1820938596", + "n1820937775", + "n1820938437", + "n1820938128", + "n1820939581", + "n1820939145", + "n1820938546", + "n1820938184", + "n1820937601", + "n1820937794", + "n1820938539", + "n1820939645", + "n1820938438", + "n1820938436", + "n1820939025", + "n1820938915", + "n1820938534", + "n1820937605", + "n1820939607", + "n1820939101", + "n1820939580", + "n1820939268", + "n1820939134", + "n1820938849", + "n1820938754", + "n1820938079", + "n1820937842", + "n1820938781", + "n1820938873", + "n1820938495", + "n1820938381", + "n1820938503", + "n1820939436", + "n1820938502", + "n1820939087", + "n1820938996", + "n1820938449", + "n1820938907", + "n1820937979", + "n1820937780", + "n1820937546", + "n1820939699", + "n1820937677", + "n1820938957", + "n1820938946", + "n1820937776", + "n1820937717", + "n1820938718", + "n1820937637", + "n1820938510", + "n1820937663", + "n1820938941", + "n1820939151", + "n1820937603", + "n1820938250", + "n1820937951", + "n1820938630", + "n1820938821", + "n1820938779", + "n1820938497", + "n1820938159", + "n1820939536", + "n1820938409", + "n1820938386", + "n1820939116", + "n1820938340", + "n1820939117", + "n1820938291", + "n1820938435", + "n1820937819", + "n1820938242", + "n1820939078", + "n1820938877", + "n1820939104", + "n1820939445", + "n1820938367", + "n1820938903", + "n1820939420", + "n1820938517", + "n1820939508", + "n1820939542", + "n1820939326", + "n1820938210", + "n1820939020", + "n1820938815", + "n1820937832", + "n1820939513", + "n1820937818", + "n1820939005", + "n1820938717", + "n1820939135", + "n1820938384", + "n1820937587", + "n1820939024", + "n1820939504", + "n1820939120", + "n1820939026", + "n1820938015", + "n1820938998", + "n1820937648", + "n1820939137", + "n1820937761", + "n1820938195", + "n1820938535", + "n1820939550", + "n1820938725", + "n1820938282", + "n1820937781", + "n1820937792", + "n1820939705", + "n1820937788", + "n1820939707", + "n1820937882", + "n1820939632", + "n1820938427", + "n1820938276", + "n1820939617", + "n1820939013", + "n1820939035", + "n1820937543", + "n1820939365", + "n1820937752", + "n1820937802", + "n1820939183", + "n1820939670", + "n1820938450", + "n1820939375", + "n1820937813", + "n1820937673", + "n1820937783", + "n1820939029", + "n1820939768", + "n1820939377", + "n1820937974", + "n1820939244", + "n1820939642", + "n1820937864", + "n1820938255", + "n1820938528", + "n1820939666", + "n1820938120", + "n1820937812", + "n1820938928", + "n1820939750", + "n1820939099", + "n1820938073", + "n1820938714", + "n1820939140", + "n1820938192", + "n1820937844", + "n1820938635", + "n1820938742", + "n1820939583", + "n1820937887", + "n1820938318", + "n1820938816", + "n1820939698", + "n1820938273", + "n1820939181", + "n1820937652", + "n1820938748", + "n1820937651", + "n1820938519", + "n1820938019", + "n1820938752", + "n1820938235", + "n1820939118", + "n1820938562", + "n1820939314", + "n1820939570", + "n1820938190", + "n1820938342", + "n1820938533", + "n1820937977", + "n1820939089", + "n1820939146", + "n1820938622", + "n1820938297", + "n1820938524", + "n1820939283", + "n1820938874", + "n1820938832", + "n1820937550", + "n1820937843", + "n1820938638", + "n1820938116", + "n1820938206", + "n1820938319", + "n1820939053", + "n1820937845", + "n1820938093", + "n1820939217", + "n1820938997", + "n1820939355", + "n1820938861", + "n1820938726", + "n1820938057", + "n1820939373", + "n1820937862", + "n1820938518", + "n1820939072", + "n1820939680", + "n1820938444", + "n1820938217", + "n1820938506", + "n1820938393", + "n1820938492", + "n1820938852", + "n1820938221", + "n1820938773", + "n1820937684", + "n1820939060", + "n1820938224", + "n1820938203", + "n1820938840", + "n1820937525", + "n1820938147", + "n1820938433", + "n1820938188", + "n1820939359", + "n1820938750", + "n1820938016", + "n1820938768", + "n1820937621", + "n1820937799", + "n1820938951", + "n1820938721", + "n1820939037", + "n1820937866", + "n1820939715", + "n1820938063", + "n1820938446", + "n1820937627", + "n1820939624", + "n1820938431", + "n1820939721", + "n1820939622", + "n1820939239", + "n1820939263", + "n1820939648", + "n1820939640", + "n1820938867", + "n1820938757", + "n1820938439", + "n1820939352", + "n1820937740", + "n1820939329", + "n1820938229", + "n1820937583", + "n1820938180", + "n1820938366", + "n1820937767", + "n1820937758", + "n1820939374", + "n1820938869", + "n1820938292", + "n1820938400", + "n1820938399", + "n1820939734", + "n1820939289", + "n1820938944", + "n1820937755", + "n1820938759", + "n1820938434", + "n1820937600", + "n1820937825", + "n1820937670", + "n1820937793", + "n1820938011", + "n1820938246", + "n1820938956", + "n1820937770", + "n1820937757", + "n1820938059", + "n1820937860", + "n1820937569", + "n1820939266", + "n1820939685", + "n1820939672", + "n1820938606", + "n1820938772", + "n1820939038", + "n1820938211", + "n1820938359", + "n1820939619", + "n1820938708", + "n1820939512", + "n1820938065", + "n1820939233", + "n1820939739", + "n1820938786", + "n1820938879", + "n1820939147", + "n1820938563", + "n1820939148", + "n1820937839", + "n1820937659", + "n1820937786", + "n1820938419", + "n1820939565", + "n1820939402", + "n1820937710", + "n1820938254", + "n1820938271", + "n1820938390", + "n1820937680", + "n1820938140", + "n1820937817", + "n1820938218", + "n1820937985", + "n1820939235", + "n1820938441", + "n1820938401", + "n1820938719", + "n1820937795", + "n1820938971", + "n1820938460", + "n1820939759", + "n1820937972", + "n1820937841", + "n1820938462", + "n1820939320", + "n1820938978", + "n1820938360", + "n1820939713", + "n1820937676", + "n1820939712", + "n1820937939", + "n1820938080", + "n1820937754", + "n1820937753", + "n1820938530", + "n1820937886", + "n1820939689", + "n1820939124", + "n1820938697", + "n1820938789", + "n1820939105", + "n1820938860", + "n1820938853", + "n1820939400", + "n1820937561", + "n1820938404", + "n1820938774", + "n1820939316", + "n1820937696", + "n1820938782", + "n1820938975", + "n1820937564", + "n1820939730", + "n1820938257", + "n1820937853", + "n1820938487", + "n1820938848", + "n1820938906", + "n1820939230", + "n1820938424", + "n1820938051", + "n1820937771", + "n1820939587", + "n1820939149", + "n1820938792", + "n1820939041", + "n1820938934", + "n1820939777", + "n1820937515", + "n1820939058", + "n1820938312", + "n1820939264", + "n1820939631", + "n1820939109", + "n1820939403", + "n1820939664", + "n1820938724", + "n1820938929", + "n1820939399", + "n1820939776", + "n1820939369", + "n1820939185", + "n1820937701", + "n1820938126", + "n1820938336", + "n1820938219", + "n1820939080", + "n1820938642", + "n1820938043", + "n1820937725", + "n1820938548", + "n1820938552", + "n1820938035", + "n1820938684", + "n1820937778", + "n1820938764", + "n1820939021", + "n1820939346", + "n1820937712", + "n1820939761", + "n1820938397", + "n1820937747", + "n1820938566", + "n1820939161", + "n1820939090", + "n1820939752", + "n1820939271", + "n1820938878", + "n1820938110", + "n1820938346", + "n1820938499", + "n1820938151", + "n1820939538", + "n1820938281", + "n1820939153", + "n1820938551", + "n1820939285", + "n1820938197", + "n1820938408", + "n1820938482", + "n1820939036", + "n1820939579", + "n1820938489", + "n1820938483", + "n1820938189", + "n1820938123", + "n1820938087", + "n1820937741", + "n1820938485", + "n1820937590", + "n1820938972", + "n1820937773", + "n1820937520", + "n1820938872", + "n1820938131", + "n1820938452", + "n1820938328", + "n1820939620", + "n1820937641", + "n1820938353", + "n1820939693", + "n1820938705", + "n1820937640", + "n1820939189", + "n1820938144", + "n1820939774", + "n1820938694", + "n1820938238", + "n1820939397", + "n1820937917", + "n1820938454", + "n1820938567", + "n1820938979", + "n1820938060", + "n1820938204", + "n1820937828", + "n1820939232", + "n1820938806", + "n1820938857", + "n1820938078", + "n1820938105", + "n1820939228", + "n1820938604", + "n1820937763", + "n1820937854", + "n1820938289", + "n1820939736", + "n1820937937", + "n1820937714", + "n1820938278", + "n1820938058", + "n1820938706", + "n1820938989", + "n1820938313", + "n1820938520", + "n1820938288", + "n1820937689", + "n1820939537", + "n1820939531", + "n1820939019", + "n1820937527", + "n1820938455", + "n1820938814", + "n1820938045", + "n1820939627", + "n1820938213", + "n1820938161", + "n1820938331", + "n1820938024", + "n1820938220", + "n1820938062", + "n1820938178", + "n1820937796", + "n1820937644", + "n1820938490", + "n1820937589", + "n1820937879", + "n1820939614", + "n1820938882", + "n1820938039", + "n1820938538", + "n1820937667", + "n1820937719", + "n1820938561", + "n1820939658", + "n1820938783", + "n1820938601", + "n1820938198", + "n1820938388", + "n1820938969", + "n1820937687", + "n1820939086", + "n1820939665", + "n1820939187", + "n1820938498", + "n1820938261", + "n1820937983", + "n1820938068", + "n1820938136", + "n1820939061", + "n1820938137", + "n1820938186", + "n1820939071", + "n1820937592", + "n1820939669", + "n1820937553", + "n1820939357", + "n1820938727", + "n1820939371", + "n1820939112", + "n1820939079", + "n1820938743", + "n1820938467", + "n1820938834", + "n1820938022", + "n1820938537", + "n1820938122", + "n1820938516", + "n1820937614", + "n1820937612", + "n1820939469", + "n1820939636", + "n1820939050", + "n1820939552", + "n1820938157", + "n1820938663", + "n1820938955", + "n1820939091", + "n1820938430", + "n1820938471", + "n1820937809", + "n1820938074", + "n1820938208", + "n1820938914", + "n1820938858", + "n1820938417", + "n1820937531", + "n1820938107", + "n1820939100", + "n1820938751", + "n1820937711", + "n1820938824", + "n1820939745", + "n1820937572", + "n1820938602", + "n1820938212", + "n1820938097", + "n1820937921", + "n1820938090", + "n1820938511", + "n1820938876", + "n1820939762", + "n1820938234", + "n1820938048", + "n1820937774", + "n1820937856", + "n1820937749", + "n1820937765", + "n1820938286", + "n1820939095", + "n1820938480", + "n1820939229", + "n1820938277", + "n1820937617", + "n1820938311", + "n1820937622", + "n1820939196", + "n1820937690", + "n1820939006", + "n1820939287", + "n1820939131", + "n1820938106", + "n1820938784", + "n1820938335", + "n1820938095", + "n1820938182", + "n1820937715", + "n1820937683", + "n1820938070", + "n1820939605", + "n1820938527", + "n1820938763", + "n1820938398", + "n1820937686", + "n1820939621", + "n1820937664", + "n1820939277", + "n1820938565", + "n1820939539", + "n1820938099", + "n1820939646", + "n1820938556", + "n1820937548", + "n1820938729", + "n1820939336", + "n1820938259", + "n1820938728", + "n1820938361", + "n1820937643", + "n1820938644", + "n1820939007", + "n1820939690", + "n1820939227", + "n1820937635", + "n1820937950", + "n1820938682", + "n1820939150", + "n1820939012", + "n1820939261", + "n1820939111", + "n1820937805", + "n1820939691", + "n1820939677", + "n1820937628", + "n1820937811", + "n1820938790", + "n1820938251", + "n1820938226", + "n1820938942", + "n1820937633", + "n1820937984", + "n1820937751", + "n1820939673", + "n1820938970", + "n1820938415", + "n1820938597", + "n1820938309", + "n1820938111", + "n1820938472", + "n1820938894", + "n1820938402", + "n1820937593", + "n1820938570", + "n1820939102", + "n1820939775", + "n1820937948", + "n1820939121", + "n1820937511", + "n1820938787", + "n1820939720", + "n1820939075", + "n1820937880", + "n1820937742", + "n1820937721", + "n1820939535", + "n1820938486", + "n1820938354", + "n1820937632", + "n1820939010", + "n1820938885", + "n1820938089", + "n1820937613", + "n1820938442", + "n1820938245", + "n1820938272", + "n1820937566", + "n1820938295", + "n1820938532", + "n1820938883", + "n1820937713", + "n1820937674", + "n1820939635", + "n1820938448", + "n1820938355", + "n1820938587", + "n1820938559", + "n1820937787", + "n1820939301", + "n1820937723", + "n1820939056", + "n1820937560", + "n1820938323", + "n1820938230", + "n1820938453", + "n1820938377", + "n1820938357", + "n1820939637", + "n1820938017", + "n1820939540", + "n1820939376", + "n1820937639", + "n1820937642", + "n1820938075", + "n1820938351", + "n1820938766", + "n1820937897", + "n1820938973", + "n1820938066", + "n1820939547", + "n1820939652", + "n1820937944", + "n1820937748", + "n1820939234", + "n1820939193", + "n1820937891", + "n1820938785", + "n1820939132", + "n1820938523", + "n1820938884", + "n1820938411", + "n1820939554", + "n1820938791", + "n1820937655", + "n1820938368", + "n1820939152", + "n1820938030", + "n1820938447", + "n1820937580", + "n1820939628", + "n1820937588", + "n1820937894", + "n1820939201", + "n1820938086", + "n1820937650", + "n1820938379", + "n1820939008", + "n1820938999", + "n1820937524", + "n1820937872", + "n1820938389", + "n1820939197", + "n1820938422", + "n1820938936", + "n1820939262", + "n1820937634", + "n1820938583", + "n1820939589", + "n1820937901", + "n1820939034", + "n1820939065", + "n1820938290", + "n1820939195", + "n1820938228", + "n1820937884", + "n1820938797", + "n1820938191", + "n1820939191", + "n1820939198", + "n1820937892", + "n1820939679", + "n1820938507", + "n1820937647", + "n1820937909", + "n1820938542", + "n1820939598", + "n1820937851", + "n1820939084", + "n1820939728", + "n1820937688", + "n1820938263", + "n1820938670", + "n1820937762", + "n1820939310", + "n1820938925", + "n1820938862", + "n1820938822", + "n1820938547", + "n1820937731", + "n1820938594", + "n1820938592", + "n1820938214", + "n1820938284", + "n1820937835", + "n1820938599", + "n1820939437", + "n1820937834", + "n1820937576", + "n1820937692", + "n1820939586", + "n1820939546", + "n1820938403", + "n1820937970", + "n1820939561", + "n1820938098", + "n1820938851", + "n1820938477", + "n1820938892", + "n1820939045", + "n1820939758", + "n1820939350", + "n1820938321", + "n1820938440", + "n1820938595", + "n1820938364", + "n1820938962", + "n1820938118", + "n1820939678", + "n1820938406", + "n1820938549", + "n1820937555", + "n1820938823", + "n1820937521", + "n1820939471", + "n1820939487", + "n1820938799", + "n1820938605", + "n1820937928", + "n1820938373", + "n1820939747", + "n1820939629", + "n1820937557", + "n1820937526", + "n1820938958", + "n1820938833", + "n1820937636", + "n1820938967", + "n1820938760", + "n1820938842", + "n1820938067", + "n1820939077", + "n1820939224", + "n1820938185", + "n1820939110", + "n1820938372", + "n1820939757", + "n1820939063", + "n1820939660", + "n1820938813", + "n1820937528", + "n1820938369", + "n1820938896", + "n1820939551", + "n1820939683", + "n1820937660", + "n1820937873", + "n1820938810", + "n1820938478", + "n1820939662", + "n1820937595", + "n1820939052", + "n1820938113", + "n1820939070", + "n1820938733", + "n1820937878", + "n1820938300", + "n1820939760", + "n1820939718", + "n1820937646", + "n1820939057", + "n1820939443", + "n1914861306", + "n1820938013", + "n1820937529", + "n1820939764", + "n1820938826", + "n1820937885", + "n1820939588", + "n1820937865", + "n1820937833", + "n1914861112", + "n1820938761", + "n1914861007", + "n1820937905", + "n1820938541", + "n1820939092", + "n1914861057", + "n1820938153", + "n1820938267", + "n1820939265", + "n1820938085", + "n1820939018", + "n1820939755", + "n1820938474", + "n1820939027", + "n1820938593", + "n1820938202", + "n1820939599", + "n1820939695", + "n1820938077", + "n1820938012", + "n1820939545", + "n1820939596", + "n1820939337", + "n1820938227", + "n1820937698", + "n1820938475", + "n1820939465", + "n1820938165", + "n1820938698", + "n1820938525", + "n1820938529", + "n1820938553", + "n1820938940", + "n1820939498", + "n1820938501", + "n1820939533", + "n1820938924", + "n1820939634", + "n1820939220", + "n1820939657", + "n1820938887", + "n1820938838", + "n1820938114", + "n1820937823", + "n1820938778", + "n1820938801", + "n1820939096", + "n1820938981", + "n1820937953", + "n1820938732", + "n1820938980", + "n1820938960", + "n1820937949", + "n1820938026", + "n1820939273", + "n1841425201", + "n1820938629", + "n1820938864", + "n1820938554", + "n1820938088", + "n1820937685", + "n1841425222", + "n1820939729", + "n1820937665", + "n1820937838", + "n1820937739", + "n1820938780", + "n1820937821", + "n1820938825", + "n1820939055", + "n1820939485", + "n1820938041", + "n1820938746", + "n1820939562", + "n1820938459", + "n1820939489", + "n1820938050", + "n1820937980", + "n1820937695", + "n1820938413", + "n1820938555", + "n1820937703", + "n1820938536", + "n1820938196", + "n1820938287", + "n1820938169", + "n1820939279", + "n1820938531", + "n1820938959", + "n1820939741", + "n1820938665", + "n1820938963", + "n1820939611", + "n1820937653", + "n1820939618", + "n1820939492", + "n1820938600", + "n1820938628", + "n1820939312", + "n1820939616", + "n1820937738", + "n1820939001", + "n1820939062", + "n1820938794", + "n1820938558", + "n1820937822", + "n1820937532", + "n1820939073", + "n1820938200", + "n1820938241", + "n1820938968", + "n1820938927", + "n1820938306", + "n1820937630", + "n1820938456", + "n1820937694", + "n1820938908", + "n1820939076", + "n1820937522", + "n1820939659", + "n1820938522", + "n1820939318", + "n1820938932", + "n1820938841", + "n1820937579", + "n1820937540", + "n1820938560", + "n1821139530", + "n1820938964", + "n1820937662", + "n1820939281", + "n1821139533", + "n1820937797", + "n1821139532", + "n1820939751", + "n1821139531", + "n1820939291", + "n1820938420", + "n1820939696", + "n1820938904", + "n1820938484", + "n1820939448", + "n1820939009", + "n1820938735", + "n1820938986", + "n1820938937", + "n1820939030", + "n1820938734", + "n1820938745", + "n1820939106", + "n1820938987", + "n1820937858", + "n1820938673", + "n1820938620", + "n1820937808", + "n1820937700", + "n1820939573", + "n1820938540", + "n1820937661", + "n1820937570", + "n1820938396", + "n1820937875", + "n1820939048", + "n1820938233", + "n1820938793", + "n1820939584", + "n1820938412", + "n1820938394", + "n1820937846", + "n1820938800", + "n1820938690", + "n1820939331", + "n1820939630", + "n1820938762", + "n1820938710", + "n1820939322", + "n1820938992", + "n1821137608", + "n1821137607", + "n1820937924", + "n1820939139", + "n1820939463", + "n1820939574", + "n1820938294", + "n1820938071", + "n1820938307", + "n1820938061", + "n1820939260", + "n1820937899", + "n1820938310", + "n1820938983", + "n1820937530", + "n1820938993", + "n1820938890", + "n1820937915", + "n1820938231", + "n1820938040", + "n1820938920", + "n1820939585", + "n1820938135", + "n1820939700", + "n1820937824", + "n1820939667", + "n1820937930", + "n1820938134", + "n1820937551", + "n1820939405", + "n1820938232", + "n1820937716", + "n1820937848", + "n1820939765", + "n1820939068", + "n1820939766", + "n1820937933", + "n1820937720", + "n1820939222", + "n1820939772", + "n1820939022", + "n1820939732", + "n1820937702", + "n1820937691", + "n1820938945", + "n1820937756", + "n1820938451", + "n1820938410", + "n1820938798", + "n1820937945", + "n1820937654", + "n1820938598", + "n1820938836", + "n1820937571", + "n1820937556", + "n1820938994", + "n1820938919", + "n1820938863", + "n1820939064", + "n1820938018", + "n1820937658", + "n1820937537", + "n1820938142", + "n1820938666", + "n1820937535", + "n1820939571", + "n1820938465", + "n1820939638", + "n1820937533", + "n1820939656", + "n1820939422", + "n1820938109", + "n1820938405", + "n1820938028", + "n1820937649", + "n1820938829", + "n1820939031", + "n1820939155", + "n1820938350", + "n1820938463", + "n1820938425", + "n1820939047", + "n1820938831", + "n1820938494", + "n1820937697", + "n1820938504", + "n1820938900", + "n1820937784", + "n1820938414", + "n1820938076", + "n1820938723", + "n1820937722", + "n1820938739", + "n1820937791", + "n1820938985", + "n1820938352", + "n1820938293", + "n1820938274", + "n1820939692", + "n1820937871", + "n1820939059", + "n1820938868", + "n1820937877", + "n1820937743", + "n1820938429", + "n1820937545", + "n1820937575", + "n1820938302", + "n1820938505", + "n1820938916", + "n1820938374", + "n1820938329", + "n1820937790", + "n1820939735", + "n1820938930", + "n1820937995", + "n1820938512", + "n1820938130", + "n1820938194", + "n1820938671", + "n1820938802", + "n1820937542", + "n1820937602", + "n1820939069", + "n1820938901", + "n1820939654", + "n1820937727", + "n1820939569", + "n1820938375", + "n1820939306", + "n1820938479", + "n1820938376", + "n1820938667", + "n1820937766", + "n1820939467", + "n1820939567", + "n1820937806", + "n1820938943", + "n1820938931", + "n1820937745", + "n1820939452", + "n1820938738", + "n1820938053", + "n1820939653", + "n1820938640", + "n1820937604", + "n1820937536", + "n1820938701", + "n1820939625", + "n1820939744", + "n1820939572", + "n1820937577", + "n1820937541", + "n1820938891", + "n1820937597", + "n1820938469", + "n1820939194", + "n1820937539", + "n1820938911", + "n1820939017", + "n1820939650", + "n1820939103", + "n1820939578", + "n1820938132", + "n1820937549", + "n1820938634", + "n1820939743", + "n1820937544", + "n1820937826", + "n1820937598", + "n1820937547", + "n1820938032", + "n1820939142" + ] + }, + "w17963021": { + "id": "w17963021", + "tags": { + "highway": "residential" + }, + "nodes": ["n185948706", "n185948708", "n185948710"] + }, + "w203974069": { + "id": "w203974069", + "tags": { + "amenity": "shelter", + "area": "yes", + "building": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2139870431", "n2139870432", "n2139870433", "n2139870434", "n2139870431"] + }, + "w209816575": { + "id": "w209816575", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199856288", + "n2199856289", + "n2199856290", + "n2199856291", + "n2199856292", + "n2199856293", + "n2199856294", + "n2199856295", + "n2199856296", + "n2199856297", + "n2199856298", + "n2199856299", + "n2199856300", + "n2199856301", + "n2199856302", + "n2199856303", + "n2199856288" + ] + }, + "w203841838": { + "id": "w203841838", + "tags": { + "area": "yes", + "natural": "water" + }, + "nodes": [ + "n2138493826", + "n2138493827", + "n2138493828", + "n2138493829", + "n2138493830", + "n2138493831", + "n2138493833", + "n2138493832", + "n2138493826" + ] + }, + "w203972937": { + "id": "w203972937", + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "asphalt", + "width": "3" + }, + "nodes": [ + "n2139858882", + "n2139858883", + "n2139858884", + "n2139858885", + "n2139858886", + "n2139858887", + "n2139858882", + "n2139858888", + "n2139858889", + "n2139858890", + "n2139858891", + "n2139858892", + "n2139858893", + "n2139858894", + "n2139858895", + "n2139858896", + "n2139858897", + "n2139858898", + "n2139858899", + "n2139858900", + "n2139858901", + "n2139858902", + "n2139858903", + "n2139858986", + "n2139858904", + "n2139858995", + "n2139858905", + "n2139858906", + "n2139858907", + "n2139858908", + "n2139858909", + "n2139858910", + "n2139858911", + "n2139858912", + "n2139858913", + "n2139858914", + "n2139858915", + "n2139858916", + "n2139858917", + "n2139858918", + "n2139858919", + "n2139858920", + "n2139858921", + "n2139858922", + "n2139858923", + "n2139858924", + "n2139858925", + "n2139858926", + "n2139858927", + "n2139858982", + "n2139858928", + "n2139858929", + "n2139858930", + "n2139858931", + "n2139858932", + "n2139858981", + "n2139858933", + "n2139858934", + "n2139858935", + "n2139858936", + "n2139858937", + "n2139858938", + "n2139858939", + "n2139858940", + "n2139858941", + "n2139858942", + "n2139858943", + "n2140006437", + "n2139858964", + "n2139858944", + "n2139858966", + "n2139858945", + "n2139858946", + "n2139858947", + "n2139858948", + "n2139858949", + "n2139858950", + "n2139858951" + ] + }, + "w17964015": { + "id": "w17964015", + "tags": { + "highway": "residential" + }, + "nodes": [ + "n185954680", + "n185954683", + "n185954685", + "n185954687", + "n185954689", + "n185954690", + "n185954691", + "n2139870379", + "n2139870456", + "n185954692", + "n185954693", + "n185954695" + ] + }, + "w17967315": { + "id": "w17967315", + "tags": { + "highway": "residential", + "name": "South Andrews Street" + }, + "nodes": ["n185981999", "n185974477", "n185964963"] + }, + "w203974071": { + "id": "w203974071", + "tags": { + "highway": "footway" + }, + "nodes": [ + "n2139870439", + "n2139870440", + "n2139870441", + "n2139870442", + "n2139870443", + "n2139870444", + "n2139870445", + "n2139870446", + "n2139870447", + "n2139870448", + "n2139870449" + ] + }, + "w170848824": { + "id": "w170848824", + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "nodes": [ + "n1819858503", + "n1819858531", + "n1819858526", + "n1819858518", + "n1819858505", + "n1819858508", + "n1819858512", + "n1819858514", + "n1819858528", + "n1819858509", + "n1819858511", + "n1819858507", + "n1819858521" + ] + }, + "w203986458": { + "id": "w203986458", + "tags": { + "amenity": "shelter", + "area": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2139989357", "n2139989359", "n2139989360", "n2139989362", "n2139989357"] + }, + "w170844917": { + "id": "w170844917", + "tags": { + "waterway": "riverbank" + }, + "nodes": [ + "n1819805911", + "n1819805690", + "n1819805812", + "n1819805766", + "n1819805802", + "n1819805885", + "n1819805626", + "n1819805842", + "n1819805715", + "n1819805694", + "n1819805618", + "n1819805629", + "n1819805731", + "n1819805636", + "n1819805878", + "n1819805718", + "n1819805798", + "n1819849057", + "n1819805666", + "n1819805852", + "n1819805805", + "n1819805789", + "n1819805868", + "n1819805680", + "n1819805918", + "n1819848888", + "n1819805762", + "n2139989328", + "n1819805907", + "n2139989330", + "n1819805915", + "n1819858521", + "n1819805854", + "n1819805876", + "n1819805864", + "n1819805922", + "n2139859004", + "n1819805702", + "n2139859003", + "n1819805614", + "n1819805792", + "n1819805786", + "n1819805777", + "n1819805645", + "n1819805838", + "n1819805889", + "n1819805795", + "n1819805707", + "n1819805774", + "n1819805808", + "n1819805810", + "n1819805724", + "n1819805676", + "n1819805728", + "n1819805783", + "n1819805687", + "n1819805727", + "n2189123379", + "n1819805632", + "n1819805641", + "n1819805760", + "n1819805887", + "n1819805861", + "n1819805722", + "n1819805880", + "n2139982405", + "n2139982399", + "n2139982400", + "n1819805770", + "n2139982402", + "n2139982403", + "n2139982401", + "n1819805780", + "n1819805834", + "n2139982406", + "n1819805698", + "n1819805647", + "n1819805870", + "n1819805683", + "n1819805622", + "n1819805639", + "n1819805858", + "n1819805643", + "n1819805673", + "n1819805925", + "n1819805849", + "n1819805711", + "n1819805846", + "n1819805669", + "n1819805883", + "n1819805814", + "n1819805873", + "n1819805911" + ] + }, + "w17967326": { + "id": "w17967326", + "tags": { + "highway": "residential", + "name": "North Constantine Street" + }, + "nodes": [ + "n185985217", + "n185985219", + "n185985221", + "n185985222", + "n185985223", + "n185985225", + "n2140006431", + "n185985227", + "n185985229", + "n185985231", + "n185985233", + "n185985235", + "n185985238", + "n185985240", + "n2140018998", + "n185964965" + ] + }, + "w134150789": { + "id": "w134150789", + "tags": { + "highway": "primary", + "name": "West Michigan Avenue", + "old_ref": "US 131", + "ref": "US 131 Business;M 60" + }, + "nodes": ["n185964971", "n2139870406", "n185964972"] + }, + "w17966400": { + "id": "w17966400", + "tags": { + "highway": "tertiary", + "name": "South Constantine Street" + }, + "nodes": ["n185958672", "n185964965"] + }, + "w203974066": { + "id": "w203974066", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139870417", "n2139870418", "n2139870420", "n2139870419"] + }, + "w17965998": { + "id": "w17965998", + "tags": { + "name": "Conrail Railroad", + "railway": "rail" + }, + "nodes": [ + "n185972775", + "n185972777", + "n185972779", + "n185972781", + "n185972783", + "n185972785", + "n185972787", + "n185972788", + "n185972789", + "n185972790", + "n185972791", + "n185972793", + "n185972795", + "n185972797", + "n185972798", + "n185972800", + "n185972802", + "n185972805", + "n185972807", + "n185972809", + "n185972811", + "n185972813", + "n185972814", + "n185972815", + "n185972816", + "n185972817", + "n185972819", + "n185972821", + "n185972824", + "n185972826", + "n185972830", + "n185972832", + "n185972834", + "n185972835", + "n185972836", + "n185972839", + "n185990434", + "n2114807572", + "n2114807568", + "n185972845", + "n2114807583", + "n185972847", + "n185972849", + "n185972851", + "n2114807578", + "n1475293254", + "n2114807593", + "n1475293226", + "n185972862", + "n2114807565", + "n185951869", + "n1475293234", + "n1475293252", + "n185972868", + "n1475293264", + "n1475293222", + "n185972878", + "n1475293261", + "n185972882", + "n185972885", + "n1475293260", + "n1475293240", + "n185972891", + "n185972895", + "n185972897", + "n185972899", + "n2130304159", + "n1475284023", + "n185972903" + ] + }, + "w134150795": { + "id": "w134150795", + "tags": { + "bridge": "yes", + "highway": "primary", + "name": "West Michigan Avenue", + "old_ref": "US 131", + "ref": "US 131 Business;M 60" + }, + "nodes": ["n185964970", "n185964971"] + }, + "w203974067": { + "id": "w203974067", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139870420", "n2139870421"] + }, + "w170995908": { + "id": "w170995908", + "tags": { + "highway": "residential", + "name": "Thomas Street" + }, + "nodes": [ + "n1821006702", + "n1821006700", + "n1821006698", + "n2139858990", + "n1821006716", + "n1821006725", + "n1821006712", + "n1821006704", + "n1821006708", + "n1821006710", + "n1821006706" + ] + }, + "w17965834": { + "id": "w17965834", + "tags": { + "highway": "residential", + "name": "Spring Street" + }, + "nodes": ["n185971361", "n185971364", "n185971366", "n185971368", "n185954695", "n185964968"] + }, + "w203974070": { + "id": "w203974070", + "tags": { + "amenity": "shelter", + "area": "yes", + "building": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2139870435", "n2139870436", "n2139870437", "n2139870438", "n2139870435"] + }, + "w203989879": { + "id": "w203989879", + "tags": { + "highway": "service" + }, + "nodes": ["n2140018998", "n2140018999", "n2140019000"] + }, + "w203974062": { + "id": "w203974062", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2139870387", + "n2139870388", + "n2139870389", + "n2139870390", + "n2139870391", + "n2139870392", + "n2139870397", + "n2139870393", + "n2139870396", + "n2139870395", + "n2139870394", + "n2139870387" + ] + }, + "w203974061": { + "id": "w203974061", + "tags": { + "bridge": "yes", + "highway": "footway" + }, + "nodes": ["n2139870382", "n2139870383"] + }, + "w203049587": { + "id": "w203049587", + "tags": { + "area": "yes", + "name": "Scidmore Park Petting Zoo", + "tourism": "zoo", + "zoo": "petting_zoo" + }, + "nodes": [ + "n2130304133", + "n2130304136", + "n2130304138", + "n2130304140", + "n2130304142", + "n2130304144", + "n2130304146", + "n2130304147", + "n2130304148", + "n2130304149", + "n2130304150", + "n2130304151", + "n2130304133" + ] + }, + "w203972941": { + "id": "w203972941", + "tags": { + "highway": "path" + }, + "nodes": ["n2139858982", "n2139858983", "n2139858984", "n2139858985", "n2139858927"] + }, + "w203974065": { + "id": "w203974065", + "tags": { + "highway": "service" + }, + "nodes": [ + "n2139870406", + "n2139870407", + "n2139870408", + "n2139870417", + "n2139870409", + "n2139870410", + "n2139870411", + "n2139870412", + "n2139870426", + "n2139870413", + "n2139870414", + "n2139870415", + "n2139870419", + "n2139870416", + "n2139870421", + "n2139870408" + ] + }, + "w203972940": { + "id": "w203972940", + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": [ + "n2139858934", + "n2139858967", + "n2139858968", + "n2139858969", + "n2139858970", + "n2139858971", + "n2139858972", + "n2139858973", + "n2139858974", + "n2139858975", + "n2139858976", + "n2139858977", + "n2139858978", + "n2139858979", + "n2139858980", + "n2139858981" + ] + }, + "w203974072": { + "id": "w203974072", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139858925", "n2139870450", "n2139870453", "n2139870451", "n2139870452", "n2139870441"] + }, + "w203974074": { + "id": "w203974074", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139870454", "n2139870456", "n2139870429"] + }, + "w203974060": { + "id": "w203974060", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139870383", "n2139870384", "n2139870422", "n2139870385", "n2139870386", "n2139870388"] + }, + "w203841837": { + "id": "w203841837", + "tags": { + "area": "yes", + "natural": "water" + }, + "nodes": [ + "n2138493807", + "n2138493808", + "n2138493809", + "n2138493810", + "n2138493811", + "n2138493812", + "n2138493813", + "n2138493814", + "n2138493815", + "n2138493816", + "n2138493825", + "n2138493817", + "n2138493824", + "n2138493818", + "n2138493819", + "n2138493820", + "n2138493821", + "n2138493822", + "n2138493823", + "n2138493807" + ] + }, + "w134150845": { + "id": "w134150845", + "tags": { + "bridge": "yes", + "name": "Conrail Railroad", + "railway": "rail" + }, + "nodes": ["n185972903", "n185972905"] + }, + "w203974059": { + "id": "w203974059", + "tags": { + "highway": "footway" + }, + "nodes": [ + "n2139870430", + "n2139870439", + "n2139870429", + "n2139870428", + "n2139870379", + "n2139870455", + "n2139870380", + "n2139870381", + "n2139858925", + "n2139870382" + ] + }, + "w203986457": { + "id": "w203986457", + "tags": { + "area": "yes", + "leisure": "park", + "name": "Scidmore Park" + }, + "nodes": [ + "n2139989333", + "n2139989335", + "n2139989337", + "n2139989339", + "n1819805762", + "n2139989328", + "n1819805907", + "n2139989330", + "n1819805915", + "n2139989341", + "n2139989344", + "n2139989346", + "n2139989348", + "n2139989350", + "n2139989351", + "n2139989353", + "n2139989355", + "n2139989333" + ] + }, + "w170848331": { + "id": "w170848331", + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "nodes": [ + "n1819848937", + "n1819849104", + "n1819849076", + "n1819849183", + "n1819848928", + "n1819848972", + "n1819848948", + "n1819848971", + "n1819848859", + "n1819849008", + "n1819848889", + "n1819849026", + "n1819849094", + "n1819849083", + "n1819849079", + "n1819849187", + "n1819848992", + "n1819849060", + "n1819849056", + "n1819849071", + "n1819849067", + "n1819849048", + "n1819849036", + "n1819849150", + "n1819849075", + "n1819849051", + "n1819849062", + "n1819848926", + "n1819849035", + "n1819848987", + "n1819849012", + "n1819848933", + "n1819848996", + "n1819848990", + "n1819849005", + "n1819849021", + "n1819848892", + "n1819849092", + "n1819848863", + "n1819848922", + "n1819848858", + "n1819848855", + "n1819848974", + "n1819848953", + "n1819849019", + "n1819849049", + "n1819848979", + "n1819849140", + "n1819849193", + "n1819849147", + "n1819849151", + "n1819849163", + "n1819849023", + "n1819848878", + "n1819849004", + "n1819848857", + "n1819848879", + "n1819849041", + "n1819849165", + "n1819849107", + "n1819849156", + "n1819848934", + "n1819848914", + "n1819848955", + "n1819848931", + "n1819848927", + "n1819849084", + "n1819849169", + "n1819849045", + "n1819848945", + "n1819849095", + "n1819848924", + "n1819849171", + "n1819849141", + "n1819849046", + "n1819849197", + "n1819849011", + "n1819849108", + "n1819849158", + "n1819849160", + "n1819848870", + "n1819849006", + "n1819849157", + "n1819848993", + "n1819848970", + "n1819849202", + "n1819848903", + "n1819848975", + "n1819848849", + "n1819849025", + "n1819849105", + "n1819849033", + "n1819849176", + "n1819849099", + "n1819849086", + "n1819848960", + "n1819848961", + "n1819849001", + "n1819848980", + "n1819849038", + "n1819848854", + "n1819849127", + "n1819849170", + "n1819849139", + "n1819848873", + "n1819848929", + "n1819849201", + "n1819849121", + "n1819849031", + "n1819849131", + "n1819848875", + "n1819849080", + "n1819849066", + "n1819849081", + "n1819849096", + "n1819849172", + "n1819849114", + "n1819849182", + "n1819848905", + "n1819849054", + "n1819848920", + "n1819848851", + "n1819848968", + "n1819848917", + "n1819849111", + "n1819849119", + "n1819849074", + "n1819848893", + "n1819849129", + "n1819848850", + "n1819848956", + "n1819849154", + "n1819848877", + "n1819848986", + "n1819849191", + "n1819848952", + "n1819848954", + "n1819848942", + "n1819849028", + "n1819849195", + "n1819848938", + "n1819848962", + "n1819849070", + "n1819849034", + "n1819849052", + "n1819849059", + "n1819848916", + "n1819849162", + "n1819849167", + "n1819849093", + "n1819849030", + "n1819849002", + "n1819849161", + "n1819848886", + "n1819848958", + "n1819849064", + "n1819849112", + "n1819849148", + "n1819848856", + "n1819848976", + "n1819848977", + "n1819849144", + "n1819848918", + "n1819849200", + "n1819848919", + "n1819849042", + "n1819849166", + "n1819849186", + "n1819849152", + "n1819849058", + "n1819849185", + "n1819849199", + "n1819849053", + "n1819849194", + "n1819849068", + "n1819849146", + "n1819849174", + "n1819848967", + "n1819848932", + "n1819849155", + "n1819849198", + "n1819848964", + "n1819848894", + "n1819848969", + "n1819849184", + "n1819849055", + "n1819849179", + "n1819848865", + "n1819848860", + "n1819849082", + "n1819848966", + "n1819849040", + "n1819849069", + "n1819849078", + "n1819849077", + "n1819848904", + "n1819848959", + "n1819849133", + "n1819849089", + "n1819849000", + "n1819849124", + "n1819849032", + "n1819849097", + "n1819848939", + "n1819849072", + "n1819848915", + "n1819849196", + "n1819848946", + "n1819849047", + "n1819849029", + "n1819849164", + "n1819848994", + "n1819849022", + "n1819858513", + "n1819849126", + "n1819849063", + "n1819848941", + "n1819849085", + "n1819848871", + "n1819848943", + "n1819849192", + "n1819858501", + "n1819849159", + "n1819858523", + "n1819848901", + "n1819849189", + "n1819858503", + "n1819849065", + "n2139877106", + "n1819848909", + "n1819848930", + "n1819848888" + ] + }, + "w17967397": { + "id": "w17967397", + "tags": { + "highway": "residential", + "name": "North Andrews Street" + }, + "nodes": ["n185964963", "n185985217"] + }, + "w17964497": { + "id": "w17964497", + "tags": { + "highway": "tertiary", + "name": "Constantine Street" + }, + "nodes": [ + "n185958643", + "n185958645", + "n2139795852", + "n185958647", + "n185958649", + "n185958651", + "n185958653", + "n185958656", + "n185958658", + "n185958660", + "n185958662", + "n185958664", + "n185958666", + "n185958668", + "n185958670", + "n185948710", + "n185958672" + ] + }, + "w203974068": { + "id": "w203974068", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139870422", "n2139870423", "n2139870424", "n2139870425", "n2139870426", "n2139870427"] + }, + "w203974063": { + "id": "w203974063", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139870398", "n2139870399", "n2139870400", "n2139870401", "n2139870398"] + }, + "w203986459": { + "id": "w203986459", + "tags": { + "amenity": "shelter", + "area": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2139989364", "n2139989366", "n2139989368", "n2139989370", "n2139989364"] + }, + "w203988286": { + "id": "w203988286", + "tags": { + "area": "yes", + "leisure": "park", + "name": "Memory Isle Park" + }, + "nodes": [ + "n2140006331", + "n2140006334", + "n2140006336", + "n2140006338", + "n2140006340", + "n2140006342", + "n2140006344", + "n2140006346", + "n2140006348", + "n2140006351", + "n2140006353", + "n2140006355", + "n2140006357", + "n2140006359", + "n2140006361", + "n2140006363", + "n2140006364", + "n2140006365", + "n2140006395", + "n2140006366", + "n2140006401", + "n2140006397", + "n2140006399", + "n2140006331" + ] + }, + "w203974073": { + "id": "w203974073", + "tags": { + "highway": "footway" + }, + "nodes": ["n2139870453", "n2139870454", "n2139870455"] + }, + "w203974064": { + "id": "w203974064", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139870402", "n2139870403", "n2139870404", "n2139870405", "n2139870402"] + }, + "n185966959": { + "id": "n185966959", + "loc": [-85.642185, 41.946411] + }, + "n1475283980": { + "id": "n1475283980", + "loc": [-85.6398249, 41.9451425] + }, + "n1475284013": { + "id": "n1475284013", + "loc": [-85.6396448, 41.9451666] + }, + "n1475284042": { + "id": "n1475284042", + "loc": [-85.6386382, 41.9454789] + }, + "n185975925": { + "id": "n185975925", + "loc": [-85.6393332, 41.9452388] + }, + "n185975919": { + "id": "n185975919", + "loc": [-85.6391279, 41.9453044] + }, + "n185975917": { + "id": "n185975917", + "loc": [-85.6389034, 41.9453872] + }, + "n2140006369": { + "id": "n2140006369", + "loc": [-85.6386163, 41.9451631] + }, + "n2140006370": { + "id": "n2140006370", + "loc": [-85.6385144, 41.9449357] + }, + "n2140006417": { + "id": "n2140006417", + "loc": [-85.6385785, 41.9450299] + }, + "n2140006419": { + "id": "n2140006419", + "loc": [-85.6385781, 41.9452152] + }, + "n2189123361": { + "id": "n2189123361", + "loc": [-85.6404948, 41.947015] + }, + "n2189123363": { + "id": "n2189123363", + "loc": [-85.6395765, 41.946495] + }, + "n2189123365": { + "id": "n2189123365", + "loc": [-85.6389347, 41.9460875] + }, + "n185966962": { + "id": "n185966962", + "loc": [-85.644417, 41.946364] + }, + "n185975911": { + "id": "n185975911", + "loc": [-85.637532, 41.9458276] + }, + "n185975913": { + "id": "n185975913", + "loc": [-85.6376323, 41.9457936] + }, + "n185975915": { + "id": "n185975915", + "loc": [-85.6383596, 41.9455425] + }, + "n185975932": { + "id": "n185975932", + "loc": [-85.644403, 41.945088] + }, + "n185975934": { + "id": "n185975934", + "loc": [-85.645486, 41.945084] + }, + "n185979974": { + "id": "n185979974", + "loc": [-85.644381, 41.943831] + }, + "n2139795809": { + "id": "n2139795809", + "loc": [-85.6464756, 41.9450813] + }, + "n2139795810": { + "id": "n2139795810", + "loc": [-85.6466646, 41.945174] + }, + "n2139858952": { + "id": "n2139858952", + "loc": [-85.6383567, 41.9454039] + }, + "n2139858953": { + "id": "n2139858953", + "loc": [-85.6380506, 41.9455301] + }, + "n2139858954": { + "id": "n2139858954", + "loc": [-85.6377321, 41.9455546] + }, + "n2139858955": { + "id": "n2139858955", + "loc": [-85.6376571, 41.9455245] + }, + "n2139858956": { + "id": "n2139858956", + "loc": [-85.6375859, 41.9454544] + }, + "n2139858957": { + "id": "n2139858957", + "loc": [-85.6376686, 41.9453185] + }, + "n2139858958": { + "id": "n2139858958", + "loc": [-85.6378936, 41.9451712] + }, + "n2139858959": { + "id": "n2139858959", + "loc": [-85.6379225, 41.9450825] + }, + "n2139858960": { + "id": "n2139858960", + "loc": [-85.6379302, 41.9447564] + }, + "n2139858961": { + "id": "n2139858961", + "loc": [-85.6379763, 41.9446963] + }, + "n2139858962": { + "id": "n2139858962", + "loc": [-85.6380436, 41.9446706] + }, + "n2139858963": { + "id": "n2139858963", + "loc": [-85.6381286, 41.9445969] + }, + "n2139858965": { + "id": "n2139858965", + "loc": [-85.6382523, 41.9444134] + }, + "n2140006367": { + "id": "n2140006367", + "loc": [-85.6380923, 41.9454418] + }, + "n2140006368": { + "id": "n2140006368", + "loc": [-85.6384089, 41.9453146] + }, + "n2140006372": { + "id": "n2140006372", + "loc": [-85.6383252, 41.9447706] + }, + "n2140006374": { + "id": "n2140006374", + "loc": [-85.6381033, 41.9447436] + }, + "n2140006376": { + "id": "n2140006376", + "loc": [-85.6379759, 41.9447815] + }, + "n2140006378": { + "id": "n2140006378", + "loc": [-85.6379832, 41.9448654] + }, + "n2140006380": { + "id": "n2140006380", + "loc": [-85.6380632, 41.9450738] + }, + "n2140006382": { + "id": "n2140006382", + "loc": [-85.6380414, 41.9452064] + }, + "n2140006389": { + "id": "n2140006389", + "loc": [-85.6379068, 41.9453092] + }, + "n2140006391": { + "id": "n2140006391", + "loc": [-85.637925, 41.9453904] + }, + "n2140006393": { + "id": "n2140006393", + "loc": [-85.6379977, 41.94545] + }, + "n2189123275": { + "id": "n2189123275", + "loc": [-85.6371346, 41.9462544] + }, + "n2189123278": { + "id": "n2189123278", + "loc": [-85.6368371, 41.9466153] + }, + "n2189123280": { + "id": "n2189123280", + "loc": [-85.6379537, 41.9489088] + }, + "n2189123282": { + "id": "n2189123282", + "loc": [-85.6383816, 41.9497858] + }, + "n2189123285": { + "id": "n2189123285", + "loc": [-85.6393673, 41.9512417] + }, + "n2189123287": { + "id": "n2189123287", + "loc": [-85.640554, 41.9517766] + }, + "n2189123289": { + "id": "n2189123289", + "loc": [-85.6411, 41.9522344] + }, + "n2189123291": { + "id": "n2189123291", + "loc": [-85.6417418, 41.9526574] + }, + "n2189123293": { + "id": "n2189123293", + "loc": [-85.642321, 41.9529407] + }, + "n2189123295": { + "id": "n2189123295", + "loc": [-85.6427697, 41.9532278] + }, + "n2189123297": { + "id": "n2189123297", + "loc": [-85.6433332, 41.9538254] + }, + "n2189123300": { + "id": "n2189123300", + "loc": [-85.6435785, 41.9543648] + }, + "n2189123301": { + "id": "n2189123301", + "loc": [-85.6444394, 41.9541048] + }, + "n2189123303": { + "id": "n2189123303", + "loc": [-85.6450603, 41.954] + }, + "n2189123312": { + "id": "n2189123312", + "loc": [-85.6454829, 41.9539108] + }, + "n2189123314": { + "id": "n2189123314", + "loc": [-85.6460464, 41.9538526] + }, + "n2189123315": { + "id": "n2189123315", + "loc": [-85.6463178, 41.9537167] + }, + "n2189123316": { + "id": "n2189123316", + "loc": [-85.646276, 41.9534141] + }, + "n2189123317": { + "id": "n2189123317", + "loc": [-85.6459995, 41.9531541] + }, + "n2189123318": { + "id": "n2189123318", + "loc": [-85.645222, 41.9531929] + }, + "n2189123319": { + "id": "n2189123319", + "loc": [-85.6447316, 41.9531813] + }, + "n2189123320": { + "id": "n2189123320", + "loc": [-85.6440637, 41.9532977] + }, + "n2189123321": { + "id": "n2189123321", + "loc": [-85.6438185, 41.9531774] + }, + "n2189123322": { + "id": "n2189123322", + "loc": [-85.6440011, 41.9528398] + }, + "n2189123323": { + "id": "n2189123323", + "loc": [-85.6442672, 41.9525914] + }, + "n2189123324": { + "id": "n2189123324", + "loc": [-85.6442881, 41.9523276] + }, + "n2189123326": { + "id": "n2189123326", + "loc": [-85.644262, 41.952153] + }, + "n2189123328": { + "id": "n2189123328", + "loc": [-85.6441681, 41.9520404] + }, + "n2189123330": { + "id": "n2189123330", + "loc": [-85.6442098, 41.9517494] + }, + "n2189123333": { + "id": "n2189123333", + "loc": [-85.6438498, 41.9515864] + }, + "n2189123336": { + "id": "n2189123336", + "loc": [-85.6435889, 41.9513225] + }, + "n2189123339": { + "id": "n2189123339", + "loc": [-85.6425349, 41.9510315] + }, + "n2189123342": { + "id": "n2189123342", + "loc": [-85.6422688, 41.9508802] + }, + "n2189123345": { + "id": "n2189123345", + "loc": [-85.6418775, 41.9508142] + }, + "n2189123348": { + "id": "n2189123348", + "loc": [-85.6415488, 41.9508064] + }, + "n2189123351": { + "id": "n2189123351", + "loc": [-85.6411027, 41.9505488] + }, + "n2189123353": { + "id": "n2189123353", + "loc": [-85.6410374, 41.9498208] + }, + "n2189123355": { + "id": "n2189123355", + "loc": [-85.6410061, 41.9494327] + }, + "n2189123357": { + "id": "n2189123357", + "loc": [-85.6411522, 41.9482569] + }, + "n2189123359": { + "id": "n2189123359", + "loc": [-85.6410548, 41.9473036] + }, + "n2189123368": { + "id": "n2189123368", + "loc": [-85.6380216, 41.9458974] + }, + "n2189123370": { + "id": "n2189123370", + "loc": [-85.6386721, 41.9507782] + }, + "w17968193": { + "id": "w17968193", + "tags": { + "highway": "residential", + "name": "French Street" + }, + "nodes": ["n185970906", "n185982877", "n185967774", "n185985823", "n185979974"] + }, + "w203972939": { + "id": "w203972939", + "tags": { + "highway": "path" + }, + "nodes": ["n2139858965", "n2139858966"] + }, + "w203988289": { + "id": "w203988289", + "tags": { + "area": "yes", + "natural": "water" + }, + "nodes": [ + "n2140006367", + "n2140006368", + "n2140006419", + "n2140006369", + "n2140006417", + "n2140006370", + "n2140006372", + "n2140006374", + "n2140006376", + "n2140006378", + "n2140006380", + "n2140006382", + "n2140006389", + "n2140006391", + "n2140006393", + "n2140006367" + ] + }, + "w208640157": { + "id": "w208640157", + "tags": { + "area": "yes", + "natural": "wetland" + }, + "nodes": [ + "n1819849029", + "n2189123275", + "n2189123278", + "n2189123280", + "n2189123282", + "n2189123370", + "n2189123285", + "n2189123287", + "n2189123289", + "n2189123291", + "n2189123293", + "n2189123295", + "n2189123297", + "n2189123300", + "n2189123301", + "n2189123303", + "n2189123312", + "n2189123314", + "n2189123315", + "n2189123316", + "n2189123317", + "n2189123318", + "n2189123319", + "n2189123320", + "n2189123321", + "n2189123322", + "n2189123323", + "n2189123324", + "n2189123326", + "n2189123328", + "n2189123330", + "n2189123333", + "n2189123336", + "n2189123339", + "n2189123342", + "n2189123345", + "n2189123348", + "n2189123351", + "n2189123353", + "n2189123355", + "n2189123357", + "n2189123359", + "n2189123361", + "n2189123363", + "n2189123365", + "n2189123368", + "n1819849029" + ] + }, + "w17966281": { + "id": "w17966281", + "tags": { + "highway": "residential", + "name": "Pealer Street" + }, + "nodes": [ + "n185975911", + "n185975913", + "n185975915", + "n1475284042", + "n185975917", + "n185975919", + "n185975925", + "n185970909", + "n1475284013", + "n1475283980", + "n185975928", + "n185967775", + "n185975930", + "n185975932", + "n185975934", + "n2139795809", + "n2139795810" + ] + }, + "w17965353": { + "id": "w17965353", + "tags": { + "highway": "residential", + "name": "Yauney Street" + }, + "nodes": ["n185966958", "n185966959", "n185966960", "n185966962"] + }, + "w203972938": { + "id": "w203972938", + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": [ + "n2139858964", + "n2139858965", + "n2139858963", + "n2139858962", + "n2139858961", + "n2139858960", + "n2139858959", + "n2139858958", + "n2139858957", + "n2139858956", + "n2139858955", + "n2139858954", + "n2139858953", + "n2139858952", + "n2139858951" + ] + }, + "n354002665": { + "id": "n354002665", + "loc": [-85.6366599, 41.9444923], + "tags": { + "name": "Memory Isle", + "place": "island" + } + }, + "n354031301": { + "id": "n354031301", + "loc": [-85.635, 41.9463889], + "tags": { + "amenity": "post_office", + "name": "Three Rivers Post Office" + } + }, + "n185963454": { + "id": "n185963454", + "loc": [-85.633686, 41.946072] + }, + "n185963455": { + "id": "n185963455", + "loc": [-85.633815, 41.946131] + }, + "n185963456": { + "id": "n185963456", + "loc": [-85.633951, 41.946174] + }, + "n185978375": { + "id": "n185978375", + "loc": [-85.634385, 41.94559] + }, + "n185978377": { + "id": "n185978377", + "loc": [-85.634544, 41.945725] + }, + "n185978379": { + "id": "n185978379", + "loc": [-85.634573, 41.945764] + }, + "n185978381": { + "id": "n185978381", + "loc": [-85.634616, 41.945849] + }, + "n185978383": { + "id": "n185978383", + "loc": [-85.634629, 41.945893] + }, + "n185984011": { + "id": "n185984011", + "loc": [-85.636058, 41.946201] + }, + "n185984013": { + "id": "n185984013", + "loc": [-85.636112, 41.946366] + }, + "n185984015": { + "id": "n185984015", + "loc": [-85.636143, 41.946551] + }, + "n185988237": { + "id": "n185988237", + "loc": [-85.6354162, 41.946044] + }, + "n185988969": { + "id": "n185988969", + "loc": [-85.635374, 41.945325] + }, + "n185988971": { + "id": "n185988971", + "loc": [-85.635643, 41.945585] + }, + "n185988972": { + "id": "n185988972", + "loc": [-85.635853, 41.94586] + }, + "n1475283992": { + "id": "n1475283992", + "loc": [-85.6372968, 41.9459007] + }, + "n1475284011": { + "id": "n1475284011", + "loc": [-85.6359415, 41.9459797] + }, + "n1475284019": { + "id": "n1475284019", + "loc": [-85.6364433, 41.9460423] + }, + "n185984009": { + "id": "n185984009", + "loc": [-85.6360524, 41.9460485] + }, + "n185988239": { + "id": "n185988239", + "loc": [-85.6358187, 41.9460423] + }, + "n185988243": { + "id": "n185988243", + "loc": [-85.6366156, 41.9460282] + }, + "n185988244": { + "id": "n185988244", + "loc": [-85.6368316, 41.9460046] + }, + "n185988245": { + "id": "n185988245", + "loc": [-85.6370133, 41.9459704] + }, + "n185988241": { + "id": "n185988241", + "loc": [-85.636291, 41.9460461] + }, + "n185964976": { + "id": "n185964976", + "loc": [-85.633923, 41.9434157] + }, + "n185964980": { + "id": "n185964980", + "loc": [-85.6333656, 41.9437293] + }, + "n185978388": { + "id": "n185978388", + "loc": [-85.6346449, 41.9460571] + }, + "n1819858504": { + "id": "n1819858504", + "loc": [-85.6365343, 41.9447926] + }, + "n1819858506": { + "id": "n1819858506", + "loc": [-85.6370546, 41.9451882] + }, + "n1819858516": { + "id": "n1819858516", + "loc": [-85.6358369, 41.9444654] + }, + "n1819858519": { + "id": "n1819858519", + "loc": [-85.6361534, 41.9446176] + }, + "n1819858525": { + "id": "n1819858525", + "loc": [-85.6368025, 41.9449442] + }, + "n1819858527": { + "id": "n1819858527", + "loc": [-85.6334199, 41.9457495] + }, + "n185963452": { + "id": "n185963452", + "loc": [-85.633564, 41.9458519] + }, + "n185963453": { + "id": "n185963453", + "loc": [-85.6336152, 41.9459804] + }, + "n185963451": { + "id": "n185963451", + "loc": [-85.6332888, 41.9456871] + }, + "n2130304152": { + "id": "n2130304152", + "loc": [-85.6359466, 41.9454599] + }, + "n2130304153": { + "id": "n2130304153", + "loc": [-85.6362773, 41.9452683] + }, + "n2130304154": { + "id": "n2130304154", + "loc": [-85.6352028, 41.9442868] + }, + "n2130304155": { + "id": "n2130304155", + "loc": [-85.6348756, 41.9444769] + }, + "n2130304156": { + "id": "n2130304156", + "loc": [-85.6349723, 41.9444207] + }, + "n2130304157": { + "id": "n2130304157", + "loc": [-85.6338698, 41.9434443] + }, + "n2130304158": { + "id": "n2130304158", + "loc": [-85.635094, 41.9451026] + }, + "n2130304160": { + "id": "n2130304160", + "loc": [-85.6353716, 41.9449322] + }, + "n2130304162": { + "id": "n2130304162", + "loc": [-85.6365942, 41.9459352] + }, + "n2130304163": { + "id": "n2130304163", + "loc": [-85.6369006, 41.9457469] + }, + "n2130304164": { + "id": "n2130304164", + "loc": [-85.6363292, 41.9452278] + }, + "n2130304165": { + "id": "n2130304165", + "loc": [-85.6360248, 41.9454175] + }, + "n2139824683": { + "id": "n2139824683", + "loc": [-85.6339825, 41.9446441] + }, + "n2139824689": { + "id": "n2139824689", + "loc": [-85.6340437, 41.9446925] + }, + "n2139824702": { + "id": "n2139824702", + "loc": [-85.6340961, 41.9447551] + }, + "n2139824705": { + "id": "n2139824705", + "loc": [-85.6337467, 41.944809] + }, + "n2139824707": { + "id": "n2139824707", + "loc": [-85.6341598, 41.9448129] + }, + "n2139824710": { + "id": "n2139824710", + "loc": [-85.6342771, 41.9448223] + }, + "n2139824712": { + "id": "n2139824712", + "loc": [-85.6346058, 41.944841] + }, + "n2139824713": { + "id": "n2139824713", + "loc": [-85.633808, 41.9448574] + }, + "n2139824714": { + "id": "n2139824714", + "loc": [-85.6340889, 41.9448589] + }, + "n2139824716": { + "id": "n2139824716", + "loc": [-85.6343335, 41.944871] + }, + "n2139824717": { + "id": "n2139824717", + "loc": [-85.6343341, 41.9448717] + }, + "n2139824720": { + "id": "n2139824720", + "loc": [-85.6338757, 41.9449069] + }, + "n2139824721": { + "id": "n2139824721", + "loc": [-85.6341445, 41.9449071] + }, + "n2139824724": { + "id": "n2139824724", + "loc": [-85.6334787, 41.9449262] + }, + "n2139824726": { + "id": "n2139824726", + "loc": [-85.6347119, 41.9449332] + }, + "n2139824727": { + "id": "n2139824727", + "loc": [-85.6347175, 41.9449418] + }, + "n2139824728": { + "id": "n2139824728", + "loc": [-85.6344284, 41.9449538] + }, + "n2139824729": { + "id": "n2139824729", + "loc": [-85.6339339, 41.9449573] + }, + "n2139824730": { + "id": "n2139824730", + "loc": [-85.6339179, 41.9449682] + }, + "n2139824732": { + "id": "n2139824732", + "loc": [-85.6335472, 41.9449895] + }, + "n2139824733": { + "id": "n2139824733", + "loc": [-85.6339736, 41.9450164] + }, + "n2139824735": { + "id": "n2139824735", + "loc": [-85.6336034, 41.9450415] + }, + "n2139824736": { + "id": "n2139824736", + "loc": [-85.6348317, 41.945043] + }, + "n2139824737": { + "id": "n2139824737", + "loc": [-85.63403, 41.9450651] + }, + "n2139824738": { + "id": "n2139824738", + "loc": [-85.6336611, 41.9450949] + }, + "n2139824740": { + "id": "n2139824740", + "loc": [-85.6336582, 41.9450966] + }, + "n2139824744": { + "id": "n2139824744", + "loc": [-85.6331702, 41.9451107] + }, + "n2139824745": { + "id": "n2139824745", + "loc": [-85.6333388, 41.9451142] + }, + "n2139824746": { + "id": "n2139824746", + "loc": [-85.6337131, 41.9451341] + }, + "n2139824747": { + "id": "n2139824747", + "loc": [-85.6337021, 41.9451372] + }, + "n2139824748": { + "id": "n2139824748", + "loc": [-85.6341244, 41.9451472] + }, + "n2139824749": { + "id": "n2139824749", + "loc": [-85.6333952, 41.945166] + }, + "n2139824750": { + "id": "n2139824750", + "loc": [-85.633395, 41.9451661] + }, + "n2139824751": { + "id": "n2139824751", + "loc": [-85.6346258, 41.9451725] + }, + "n2139824752": { + "id": "n2139824752", + "loc": [-85.6332387, 41.9451741] + }, + "n2139824753": { + "id": "n2139824753", + "loc": [-85.6346901, 41.9451853] + }, + "n2139824754": { + "id": "n2139824754", + "loc": [-85.6346611, 41.9452035] + }, + "n2139824755": { + "id": "n2139824755", + "loc": [-85.6346574, 41.9452059] + }, + "n2139824756": { + "id": "n2139824756", + "loc": [-85.6345611, 41.9452133] + }, + "n2139824757": { + "id": "n2139824757", + "loc": [-85.633453, 41.9452194] + }, + "n2139824758": { + "id": "n2139824758", + "loc": [-85.6335508, 41.9452283] + }, + "n2139824759": { + "id": "n2139824759", + "loc": [-85.6347424, 41.9452312] + }, + "n2139824760": { + "id": "n2139824760", + "loc": [-85.6342305, 41.9452395] + }, + "n2139824761": { + "id": "n2139824761", + "loc": [-85.6342319, 41.9452449] + }, + "n2139824762": { + "id": "n2139824762", + "loc": [-85.6334969, 41.94526] + }, + "n2139824763": { + "id": "n2139824763", + "loc": [-85.63468, 41.9452706] + }, + "n2139824764": { + "id": "n2139824764", + "loc": [-85.6346772, 41.9452724] + }, + "n2139824765": { + "id": "n2139824765", + "loc": [-85.6338611, 41.9452763] + }, + "n2139824766": { + "id": "n2139824766", + "loc": [-85.6347811, 41.9452939] + }, + "n2139824767": { + "id": "n2139824767", + "loc": [-85.6347375, 41.9453211] + }, + "n2139824768": { + "id": "n2139824768", + "loc": [-85.6339171, 41.9453301] + }, + "n2139824769": { + "id": "n2139824769", + "loc": [-85.6348307, 41.9453377] + }, + "n2139824770": { + "id": "n2139824770", + "loc": [-85.6347067, 41.9453405] + }, + "n2139824771": { + "id": "n2139824771", + "loc": [-85.6343461, 41.9453461] + }, + "n2139824772": { + "id": "n2139824772", + "loc": [-85.6343481, 41.9453475] + }, + "n2139824773": { + "id": "n2139824773", + "loc": [-85.634805, 41.9453538] + }, + "n2139824774": { + "id": "n2139824774", + "loc": [-85.6336997, 41.9453692] + }, + "n2139824775": { + "id": "n2139824775", + "loc": [-85.6339709, 41.9453818] + }, + "n2139824776": { + "id": "n2139824776", + "loc": [-85.6336229, 41.9454134] + }, + "n2139824777": { + "id": "n2139824777", + "loc": [-85.6349022, 41.9454141] + }, + "n2139824778": { + "id": "n2139824778", + "loc": [-85.6348854, 41.9454246] + }, + "n2139824779": { + "id": "n2139824779", + "loc": [-85.6340286, 41.9454373] + }, + "n2139824780": { + "id": "n2139824780", + "loc": [-85.6336963, 41.9454572] + }, + "n2139824781": { + "id": "n2139824781", + "loc": [-85.6336789, 41.9454672] + }, + "n2139824782": { + "id": "n2139824782", + "loc": [-85.6344933, 41.945475] + }, + "n2139824783": { + "id": "n2139824783", + "loc": [-85.6340854, 41.9454918] + }, + "n2139824784": { + "id": "n2139824784", + "loc": [-85.6350036, 41.9455034] + }, + "n2139824785": { + "id": "n2139824785", + "loc": [-85.6337501, 41.9455089] + }, + "n2139824786": { + "id": "n2139824786", + "loc": [-85.6337497, 41.9455091] + }, + "n2139824787": { + "id": "n2139824787", + "loc": [-85.6345425, 41.9455186] + }, + "n2139824788": { + "id": "n2139824788", + "loc": [-85.6341459, 41.9455372] + }, + "n2139824789": { + "id": "n2139824789", + "loc": [-85.6341376, 41.945542] + }, + "n2139824790": { + "id": "n2139824790", + "loc": [-85.6338394, 41.9455462] + }, + "n2139824791": { + "id": "n2139824791", + "loc": [-85.6349171, 41.9455588] + }, + "n2139824792": { + "id": "n2139824792", + "loc": [-85.6338074, 41.9455646] + }, + "n2139824793": { + "id": "n2139824793", + "loc": [-85.6346229, 41.9455894] + }, + "n2139824794": { + "id": "n2139824794", + "loc": [-85.6338983, 41.9455995] + }, + "n2139824795": { + "id": "n2139824795", + "loc": [-85.6338962, 41.9456007] + }, + "n2139824796": { + "id": "n2139824796", + "loc": [-85.6342475, 41.9456348] + }, + "n2139824797": { + "id": "n2139824797", + "loc": [-85.6339505, 41.9456497] + }, + "n2139824798": { + "id": "n2139824798", + "loc": [-85.6347243, 41.9456788] + }, + "n2139824799": { + "id": "n2139824799", + "loc": [-85.635057, 41.9456831] + }, + "n2139824800": { + "id": "n2139824800", + "loc": [-85.635287, 41.9457056] + }, + "n2139824801": { + "id": "n2139824801", + "loc": [-85.6350753, 41.9457068] + }, + "n2139824802": { + "id": "n2139824802", + "loc": [-85.6347753, 41.9457252] + }, + "n2139824803": { + "id": "n2139824803", + "loc": [-85.6340521, 41.9457473] + }, + "n2139824804": { + "id": "n2139824804", + "loc": [-85.6352875, 41.9457611] + }, + "n2139824805": { + "id": "n2139824805", + "loc": [-85.6352941, 41.9457611] + }, + "n2139824806": { + "id": "n2139824806", + "loc": [-85.6350758, 41.9457623] + }, + "n2139824807": { + "id": "n2139824807", + "loc": [-85.6348194, 41.9457638] + }, + "n2139824808": { + "id": "n2139824808", + "loc": [-85.635296, 41.9459428] + }, + "n2139824809": { + "id": "n2139824809", + "loc": [-85.6348212, 41.9459455] + }, + "n2139832635": { + "id": "n2139832635", + "loc": [-85.6354612, 41.9448791] + }, + "n2139832636": { + "id": "n2139832636", + "loc": [-85.6360241, 41.9453844] + }, + "n2139832637": { + "id": "n2139832637", + "loc": [-85.6361452, 41.9453121] + }, + "n2139832639": { + "id": "n2139832639", + "loc": [-85.6355997, 41.944797] + }, + "n2139832641": { + "id": "n2139832641", + "loc": [-85.6351346, 41.9443541] + }, + "n2139832647": { + "id": "n2139832647", + "loc": [-85.6329883, 41.9453692] + }, + "n2139832653": { + "id": "n2139832653", + "loc": [-85.6333643, 41.9456293] + }, + "n2139832663": { + "id": "n2139832663", + "loc": [-85.6335394, 41.9455339] + }, + "n2139832665": { + "id": "n2139832665", + "loc": [-85.6332375, 41.9452476] + }, + "n2139832667": { + "id": "n2139832667", + "loc": [-85.6331664, 41.9452161] + }, + "n2139832669": { + "id": "n2139832669", + "loc": [-85.6331144, 41.9451875] + }, + "n2139832671": { + "id": "n2139832671", + "loc": [-85.6330779, 41.9451274] + }, + "n2139832673": { + "id": "n2139832673", + "loc": [-85.6330664, 41.9450802] + }, + "n2139832678": { + "id": "n2139832678", + "loc": [-85.6332218, 41.9453585] + }, + "n2139832686": { + "id": "n2139832686", + "loc": [-85.6334246, 41.945541] + }, + "n2139832691": { + "id": "n2139832691", + "loc": [-85.6329898, 41.9454997] + }, + "n2139832693": { + "id": "n2139832693", + "loc": [-85.6343554, 41.9443274] + }, + "n2139832694": { + "id": "n2139832694", + "loc": [-85.6336339, 41.9437089] + }, + "n2139832696": { + "id": "n2139832696", + "loc": [-85.633532, 41.9437708] + }, + "n2139832697": { + "id": "n2139832697", + "loc": [-85.6338316, 41.9440868] + }, + "n2139832698": { + "id": "n2139832698", + "loc": [-85.6342258, 41.9444141] + }, + "n2139832699": { + "id": "n2139832699", + "loc": [-85.6339164, 41.9442166] + }, + "n2139832700": { + "id": "n2139832700", + "loc": [-85.6341389, 41.944384] + }, + "n2139832701": { + "id": "n2139832701", + "loc": [-85.634235, 41.9443259] + }, + "n2139832702": { + "id": "n2139832702", + "loc": [-85.633613, 41.9437875] + }, + "n2139832703": { + "id": "n2139832703", + "loc": [-85.633915, 41.9436132] + }, + "n2139832704": { + "id": "n2139832704", + "loc": [-85.6340019, 41.9435613] + }, + "n2139832706": { + "id": "n2139832706", + "loc": [-85.6343197, 41.9438427] + }, + "n2139832708": { + "id": "n2139832708", + "loc": [-85.6342361, 41.9438936] + }, + "n2139832709": { + "id": "n2139832709", + "loc": [-85.6353839, 41.9460401] + }, + "n2139832710": { + "id": "n2139832710", + "loc": [-85.6354032, 41.9456763] + }, + "n2139832711": { + "id": "n2139832711", + "loc": [-85.6356839, 41.9459252] + }, + "n2139832712": { + "id": "n2139832712", + "loc": [-85.6356109, 41.945735] + }, + "n2139832713": { + "id": "n2139832713", + "loc": [-85.6353997, 41.9457421] + }, + "n2139832714": { + "id": "n2139832714", + "loc": [-85.6353895, 41.9459347] + }, + "n2139832715": { + "id": "n2139832715", + "loc": [-85.6334777, 41.9436628] + }, + "n2139832716": { + "id": "n2139832716", + "loc": [-85.6333137, 41.9435382] + }, + "n2139832717": { + "id": "n2139832717", + "loc": [-85.6330938, 41.9435406] + }, + "n2139832721": { + "id": "n2139832721", + "loc": [-85.6333023, 41.9434922] + }, + "n2139832722": { + "id": "n2139832722", + "loc": [-85.6330466, 41.943623] + }, + "n2139832723": { + "id": "n2139832723", + "loc": [-85.6332746, 41.9435624] + }, + "n2139832724": { + "id": "n2139832724", + "loc": [-85.6333511, 41.9435176] + }, + "n2139832725": { + "id": "n2139832725", + "loc": [-85.6332241, 41.9434001] + }, + "n2139832726": { + "id": "n2139832726", + "loc": [-85.6332355, 41.9433686] + }, + "n2139870373": { + "id": "n2139870373", + "loc": [-85.6351783, 41.9439117] + }, + "n2139870374": { + "id": "n2139870374", + "loc": [-85.6351431, 41.9439217] + }, + "n2139870375": { + "id": "n2139870375", + "loc": [-85.6348853, 41.9439117] + }, + "n2139870376": { + "id": "n2139870376", + "loc": [-85.6348317, 41.9439105] + }, + "n2139870377": { + "id": "n2139870377", + "loc": [-85.6346384, 41.944007] + }, + "n2139870378": { + "id": "n2139870378", + "loc": [-85.6345563, 41.9440523] + }, + "n2140006403": { + "id": "n2140006403", + "loc": [-85.6359942, 41.9450097] + }, + "n2140006405": { + "id": "n2140006405", + "loc": [-85.6363884, 41.9446079] + }, + "n2140006407": { + "id": "n2140006407", + "loc": [-85.6362148, 41.9447874] + }, + "n2140006409": { + "id": "n2140006409", + "loc": [-85.6379476, 41.9445869] + }, + "n2140006411": { + "id": "n2140006411", + "loc": [-85.6378485, 41.9445674] + }, + "n2140006413": { + "id": "n2140006413", + "loc": [-85.6378952, 41.9444547] + }, + "n2140006415": { + "id": "n2140006415", + "loc": [-85.6379962, 41.944477] + }, + "n2140006421": { + "id": "n2140006421", + "loc": [-85.6355248, 41.9433702] + }, + "n2140006423": { + "id": "n2140006423", + "loc": [-85.6378471, 41.9439233] + }, + "n2140006425": { + "id": "n2140006425", + "loc": [-85.6378913, 41.9441238] + }, + "n2140006426": { + "id": "n2140006426", + "loc": [-85.6381674, 41.9442289] + }, + "n2140006427": { + "id": "n2140006427", + "loc": [-85.6382359, 41.9440975] + }, + "n2140006428": { + "id": "n2140006428", + "loc": [-85.6382071, 41.9440252] + }, + "n2140006429": { + "id": "n2140006429", + "loc": [-85.6381409, 41.9439973] + }, + "n2140006430": { + "id": "n2140006430", + "loc": [-85.6380569, 41.9440153] + }, + "n2140006433": { + "id": "n2140006433", + "loc": [-85.6379071, 41.9442467] + }, + "n2140006435": { + "id": "n2140006435", + "loc": [-85.6381634, 41.9443125] + }, + "n2140006436": { + "id": "n2140006436", + "loc": [-85.6382407, 41.944301] + }, + "n2140006438": { + "id": "n2140006438", + "loc": [-85.6382761, 41.9442188] + }, + "n2140006439": { + "id": "n2140006439", + "loc": [-85.6382429, 41.9441761] + }, + "n2140006440": { + "id": "n2140006440", + "loc": [-85.6382016, 41.9441632] + }, + "n2140006441": { + "id": "n2140006441", + "loc": [-85.6378185, 41.9439835] + }, + "n2166205688": { + "id": "n2166205688", + "loc": [-85.6349963, 41.9444392] + }, + "n2168544780": { + "id": "n2168544780", + "loc": [-85.633944, 41.945807] + }, + "n2168544781": { + "id": "n2168544781", + "loc": [-85.6340783, 41.9458621] + }, + "n2168544782": { + "id": "n2168544782", + "loc": [-85.6338184, 41.9457548] + }, + "n2168544783": { + "id": "n2168544783", + "loc": [-85.6339925, 41.9459777] + }, + "n2168544784": { + "id": "n2168544784", + "loc": [-85.6337317, 41.9458698] + }, + "n2168544785": { + "id": "n2168544785", + "loc": [-85.6337297, 41.9460042] + }, + "n2168544786": { + "id": "n2168544786", + "loc": [-85.633919, 41.9460797] + }, + "n2168544787": { + "id": "n2168544787", + "loc": [-85.6338672, 41.9459263] + }, + "n2168544788": { + "id": "n2168544788", + "loc": [-85.6338246, 41.9459853] + }, + "n2168544789": { + "id": "n2168544789", + "loc": [-85.6337615, 41.9459601] + }, + "n2168544790": { + "id": "n2168544790", + "loc": [-85.6342079, 41.9460399] + }, + "n2168544791": { + "id": "n2168544791", + "loc": [-85.6343346, 41.9458503] + }, + "n2168544792": { + "id": "n2168544792", + "loc": [-85.6343759, 41.9458116] + }, + "n2168544793": { + "id": "n2168544793", + "loc": [-85.6344394, 41.9458109] + }, + "n2168544795": { + "id": "n2168544795", + "loc": [-85.6344827, 41.945851] + }, + "n2168544797": { + "id": "n2168544797", + "loc": [-85.6344807, 41.945969] + }, + "n2168544798": { + "id": "n2168544798", + "loc": [-85.6344404, 41.9459697] + }, + "n2168544799": { + "id": "n2168544799", + "loc": [-85.6344413, 41.9460333] + }, + "n2168544800": { + "id": "n2168544800", + "loc": [-85.6342173, 41.9460705] + }, + "n2168544801": { + "id": "n2168544801", + "loc": [-85.6342162, 41.9460392] + }, + "n2168544802": { + "id": "n2168544802", + "loc": [-85.6344251, 41.9460351] + }, + "n2168544805": { + "id": "n2168544805", + "loc": [-85.6344257, 41.9460507] + }, + "n2168544807": { + "id": "n2168544807", + "loc": [-85.6344721, 41.9460498] + }, + "n2168544809": { + "id": "n2168544809", + "loc": [-85.6344754, 41.9461427] + }, + "n2168544811": { + "id": "n2168544811", + "loc": [-85.6344311, 41.9461435] + }, + "n2168544813": { + "id": "n2168544813", + "loc": [-85.6344317, 41.9461592] + }, + "n2168544815": { + "id": "n2168544815", + "loc": [-85.6343708, 41.9461604] + }, + "n2168544817": { + "id": "n2168544817", + "loc": [-85.6343715, 41.9461786] + }, + "n2168544819": { + "id": "n2168544819", + "loc": [-85.6343229, 41.9461795] + }, + "n2168544821": { + "id": "n2168544821", + "loc": [-85.6343222, 41.9461606] + }, + "n2168544823": { + "id": "n2168544823", + "loc": [-85.6342476, 41.9461621] + }, + "n2168544825": { + "id": "n2168544825", + "loc": [-85.6342444, 41.94607] + }, + "n2168544827": { + "id": "n2168544827", + "loc": [-85.634138, 41.9461632] + }, + "n2168544829": { + "id": "n2168544829", + "loc": [-85.6342016, 41.9460703] + }, + "n2168544830": { + "id": "n2168544830", + "loc": [-85.6332929, 41.9463092] + }, + "n2168544831": { + "id": "n2168544831", + "loc": [-85.633122, 41.946239] + }, + "n2168544832": { + "id": "n2168544832", + "loc": [-85.6332954, 41.9460055] + }, + "n2168544833": { + "id": "n2168544833", + "loc": [-85.6333954, 41.9460466] + }, + "n2168544834": { + "id": "n2168544834", + "loc": [-85.6334044, 41.9460345] + }, + "n2168544835": { + "id": "n2168544835", + "loc": [-85.6334594, 41.9460571] + }, + "n2168544836": { + "id": "n2168544836", + "loc": [-85.6333871, 41.9461544] + }, + "n2168544837": { + "id": "n2168544837", + "loc": [-85.633403, 41.9461609] + }, + "n2168544838": { + "id": "n2168544838", + "loc": [-85.6341683, 41.9464167] + }, + "n2168544839": { + "id": "n2168544839", + "loc": [-85.6341711, 41.9463411] + }, + "n2168544840": { + "id": "n2168544840", + "loc": [-85.6344471, 41.9463469] + }, + "n2168544841": { + "id": "n2168544841", + "loc": [-85.6344441, 41.9464243] + }, + "n2168544842": { + "id": "n2168544842", + "loc": [-85.6343622, 41.9464226] + }, + "n2168544843": { + "id": "n2168544843", + "loc": [-85.6343593, 41.9464989] + }, + "n2168544844": { + "id": "n2168544844", + "loc": [-85.6342812, 41.9464973] + }, + "n2168544845": { + "id": "n2168544845", + "loc": [-85.634283, 41.9464504] + }, + "n2168544846": { + "id": "n2168544846", + "loc": [-85.6342609, 41.9464499] + }, + "n2168544847": { + "id": "n2168544847", + "loc": [-85.6342621, 41.9464187] + }, + "n2168544848": { + "id": "n2168544848", + "loc": [-85.6348414, 41.9463396] + }, + "n2168544849": { + "id": "n2168544849", + "loc": [-85.6348387, 41.9461872] + }, + "n2168544850": { + "id": "n2168544850", + "loc": [-85.6351186, 41.9461844] + }, + "n2168544851": { + "id": "n2168544851", + "loc": [-85.635119, 41.9462112] + }, + "n2168544852": { + "id": "n2168544852", + "loc": [-85.6351918, 41.9462104] + }, + "n2168544853": { + "id": "n2168544853", + "loc": [-85.6351944, 41.9463515] + }, + "n2168544854": { + "id": "n2168544854", + "loc": [-85.6351049, 41.9463524] + }, + "n2168544855": { + "id": "n2168544855", + "loc": [-85.6351046, 41.946337] + }, + "n2189153180": { + "id": "n2189153180", + "loc": [-85.6340369, 41.9469572] + }, + "n2189153181": { + "id": "n2189153181", + "loc": [-85.6342531, 41.946953] + }, + "n2189153183": { + "id": "n2189153183", + "loc": [-85.6348115, 41.9465468] + }, + "n2189153184": { + "id": "n2189153184", + "loc": [-85.6348105, 41.9464569] + }, + "n2189153185": { + "id": "n2189153185", + "loc": [-85.6351431, 41.9464549] + }, + "n2189153186": { + "id": "n2189153186", + "loc": [-85.6351441, 41.9465448] + }, + "n2189153187": { + "id": "n2189153187", + "loc": [-85.6350077, 41.9465456] + }, + "n2189153188": { + "id": "n2189153188", + "loc": [-85.635008, 41.9465721] + }, + "n2189153189": { + "id": "n2189153189", + "loc": [-85.6348965, 41.9465727] + }, + "n2189153190": { + "id": "n2189153190", + "loc": [-85.6348962, 41.9465463] + }, + "n2189153191": { + "id": "n2189153191", + "loc": [-85.6348963, 41.9471586] + }, + "n2189153192": { + "id": "n2189153192", + "loc": [-85.6348944, 41.947032] + }, + "n2189153193": { + "id": "n2189153193", + "loc": [-85.6350241, 41.947031] + }, + "n2189153194": { + "id": "n2189153194", + "loc": [-85.635026, 41.9471575] + }, + "n2189153195": { + "id": "n2189153195", + "loc": [-85.6352328, 41.9471053] + }, + "n2189153196": { + "id": "n2189153196", + "loc": [-85.6352359, 41.9469906] + }, + "n2189153197": { + "id": "n2189153197", + "loc": [-85.6353694, 41.9469925] + }, + "n2189153198": { + "id": "n2189153198", + "loc": [-85.6353664, 41.9471072] + }, + "n2189153199": { + "id": "n2189153199", + "loc": [-85.6348241, 41.9469287] + }, + "n2189153200": { + "id": "n2189153200", + "loc": [-85.6348248, 41.9468185] + }, + "n2189153201": { + "id": "n2189153201", + "loc": [-85.6351199, 41.9468195] + }, + "n2189153202": { + "id": "n2189153202", + "loc": [-85.6351192, 41.9469298] + }, + "n2189153203": { + "id": "n2189153203", + "loc": [-85.6347965, 41.9468057] + }, + "n2189153204": { + "id": "n2189153204", + "loc": [-85.634792, 41.9466044] + }, + "n2189153205": { + "id": "n2189153205", + "loc": [-85.6349483, 41.9466025] + }, + "n2189153206": { + "id": "n2189153206", + "loc": [-85.6349493, 41.9466448] + }, + "n2189153207": { + "id": "n2189153207", + "loc": [-85.6349753, 41.9466445] + }, + "n2189153208": { + "id": "n2189153208", + "loc": [-85.6349743, 41.9465995] + }, + "n2189153209": { + "id": "n2189153209", + "loc": [-85.6351173, 41.9465977] + }, + "n2189153210": { + "id": "n2189153210", + "loc": [-85.6351219, 41.9468015] + }, + "n2189153211": { + "id": "n2189153211", + "loc": [-85.6349806, 41.9468032] + }, + "n2189153212": { + "id": "n2189153212", + "loc": [-85.6349794, 41.9467519] + }, + "n2189153213": { + "id": "n2189153213", + "loc": [-85.6349521, 41.9467523] + }, + "n2189153214": { + "id": "n2189153214", + "loc": [-85.6349532, 41.9468037] + }, + "n2189153215": { + "id": "n2189153215", + "loc": [-85.6346302, 41.9468381] + }, + "n2189153216": { + "id": "n2189153216", + "loc": [-85.6343028, 41.9468449] + }, + "n2189153217": { + "id": "n2189153217", + "loc": [-85.6342006, 41.9468297] + }, + "n2189153218": { + "id": "n2189153218", + "loc": [-85.6336698, 41.9465918] + }, + "n2189153219": { + "id": "n2189153219", + "loc": [-85.6344663, 41.9466639] + }, + "n2189153220": { + "id": "n2189153220", + "loc": [-85.6344639, 41.9466015] + }, + "n2189153221": { + "id": "n2189153221", + "loc": [-85.6342283, 41.9466065] + }, + "n2189153222": { + "id": "n2189153222", + "loc": [-85.6342303, 41.9466587] + }, + "n2189153223": { + "id": "n2189153223", + "loc": [-85.6342843, 41.9466575] + }, + "n2189153224": { + "id": "n2189153224", + "loc": [-85.6342851, 41.9466794] + }, + "n2189153225": { + "id": "n2189153225", + "loc": [-85.6343475, 41.9466781] + }, + "n2189153226": { + "id": "n2189153226", + "loc": [-85.634347, 41.9466664] + }, + "n2189153227": { + "id": "n2189153227", + "loc": [-85.6354428, 41.9470148] + }, + "n2189153228": { + "id": "n2189153228", + "loc": [-85.6354432, 41.9468005] + }, + "n2189153229": { + "id": "n2189153229", + "loc": [-85.6360277, 41.9468011] + }, + "n2189153230": { + "id": "n2189153230", + "loc": [-85.6360273, 41.9470154] + }, + "n2189153231": { + "id": "n2189153231", + "loc": [-85.6354565, 41.9465823] + }, + "n2189153232": { + "id": "n2189153232", + "loc": [-85.6354496, 41.946218] + }, + "n2189153233": { + "id": "n2189153233", + "loc": [-85.6356355, 41.9465788] + }, + "n2189153234": { + "id": "n2189153234", + "loc": [-85.6357155, 41.9468008] + }, + "n2189153235": { + "id": "n2189153235", + "loc": [-85.6359539, 41.9467969] + }, + "n2189153236": { + "id": "n2189153236", + "loc": [-85.6359561, 41.9463036] + }, + "n2189153237": { + "id": "n2189153237", + "loc": [-85.6360129, 41.9464793] + }, + "n2189153238": { + "id": "n2189153238", + "loc": [-85.6360152, 41.9463898] + }, + "n2189153239": { + "id": "n2189153239", + "loc": [-85.6359607, 41.9464928] + }, + "n2189153240": { + "id": "n2189153240", + "loc": [-85.6356903, 41.9462227] + }, + "n2189153242": { + "id": "n2189153242", + "loc": [-85.6354163, 41.946142] + }, + "n2189153243": { + "id": "n2189153243", + "loc": [-85.6357546, 41.9462214] + }, + "n2189153244": { + "id": "n2189153244", + "loc": [-85.6357937, 41.9462542] + }, + "n2189153245": { + "id": "n2189153245", + "loc": [-85.6358723, 41.9467048] + }, + "n2189153246": { + "id": "n2189153246", + "loc": [-85.6361494, 41.946757] + }, + "n2189153247": { + "id": "n2189153247", + "loc": [-85.6354173, 41.9469082] + }, + "n2189153248": { + "id": "n2189153248", + "loc": [-85.635443, 41.9469079] + }, + "n2189153249": { + "id": "n2189153249", + "loc": [-85.6360275, 41.9469093] + }, + "n2189153250": { + "id": "n2189153250", + "loc": [-85.6361542, 41.946915] + }, + "n2189153251": { + "id": "n2189153251", + "loc": [-85.6358654, 41.9464843] + }, + "n2189153252": { + "id": "n2189153252", + "loc": [-85.6359549, 41.9467499] + }, + "n2189153253": { + "id": "n2189153253", + "loc": [-85.6357172, 41.9466335] + }, + "n2189153254": { + "id": "n2189153254", + "loc": [-85.6355644, 41.9461768] + }, + "n2189153255": { + "id": "n2189153255", + "loc": [-85.6355655, 41.946528] + }, + "n2189153256": { + "id": "n2189153256", + "loc": [-85.6357055, 41.9465971] + }, + "n2189153257": { + "id": "n2189153257", + "loc": [-85.635869, 41.9465971] + }, + "n2189153259": { + "id": "n2189153259", + "loc": [-85.6354561, 41.9470278] + }, + "n2189153260": { + "id": "n2189153260", + "loc": [-85.6357961, 41.9470233] + }, + "n2189153261": { + "id": "n2189153261", + "loc": [-85.6357977, 41.9470907] + }, + "n2189153262": { + "id": "n2189153262", + "loc": [-85.6357297, 41.9470916] + }, + "n2189153263": { + "id": "n2189153263", + "loc": [-85.635733, 41.947233] + }, + "n2189153264": { + "id": "n2189153264", + "loc": [-85.6362674, 41.9468637] + }, + "n2189153265": { + "id": "n2189153265", + "loc": [-85.6362646, 41.9467047] + }, + "n2189153266": { + "id": "n2189153266", + "loc": [-85.6363267, 41.9467047] + }, + "n2189153267": { + "id": "n2189153267", + "loc": [-85.6362633, 41.9465848] + }, + "n2189153268": { + "id": "n2189153268", + "loc": [-85.6363805, 41.9465468] + }, + "n2189153269": { + "id": "n2189153269", + "loc": [-85.6364604, 41.9466842] + }, + "n2189153270": { + "id": "n2189153270", + "loc": [-85.6364604, 41.9468647] + }, + "n2199109756": { + "id": "n2199109756", + "loc": [-85.6337134, 41.9471841] + }, + "n2199109757": { + "id": "n2199109757", + "loc": [-85.6336514, 41.94716] + }, + "n2199109758": { + "id": "n2199109758", + "loc": [-85.6337043, 41.9470847] + }, + "n2199109759": { + "id": "n2199109759", + "loc": [-85.6335997, 41.9470441] + }, + "n2199109760": { + "id": "n2199109760", + "loc": [-85.6335064, 41.9471771] + }, + "n185960195": { + "id": "n185960195", + "loc": [-85.6295992, 41.9524346] + }, + "n185960796": { + "id": "n185960796", + "loc": [-85.634723, 41.953681] + }, + "n185961396": { + "id": "n185961396", + "loc": [-85.634767, 41.959009] + }, + "n185962625": { + "id": "n185962625", + "loc": [-85.635175, 41.97201] + }, + "n185964982": { + "id": "n185964982", + "loc": [-85.632799, 41.9440543] + }, + "n185965289": { + "id": "n185965289", + "loc": [-85.634621, 41.947323] + }, + "n185965291": { + "id": "n185965291", + "loc": [-85.636166, 41.947296] + }, + "n185965399": { + "id": "n185965399", + "loc": [-85.634776, 41.959834] + }, + "n185966937": { + "id": "n185966937", + "loc": [-85.633183, 41.947315] + }, + "n185966948": { + "id": "n185966948", + "loc": [-85.626406, 41.957188] + }, + "n185967422": { + "id": "n185967422", + "loc": [-85.6320229, 41.9490123] + }, + "n185967917": { + "id": "n185967917", + "loc": [-85.634763, 41.958292] + }, + "n185967918": { + "id": "n185967918", + "loc": [-85.636271, 41.958311] + }, + "n185968100": { + "id": "n185968100", + "loc": [-85.630835, 41.950656] + }, + "n185970515": { + "id": "n185970515", + "loc": [-85.634832, 41.963866] + }, + "n185971578": { + "id": "n185971578", + "loc": [-85.634641, 41.948627] + }, + "n185971580": { + "id": "n185971580", + "loc": [-85.6361818, 41.9486135] + }, + "n185971631": { + "id": "n185971631", + "loc": [-85.634729, 41.954667] + }, + "n185971632": { + "id": "n185971632", + "loc": [-85.636236, 41.954656] + }, + "n185972155": { + "id": "n185972155", + "loc": [-85.623333, 41.961987] + }, + "n185974583": { + "id": "n185974583", + "loc": [-85.634686, 41.951158] + }, + "n185974585": { + "id": "n185974585", + "loc": [-85.6362059, 41.9511457] + }, + "n185975064": { + "id": "n185975064", + "loc": [-85.636218, 41.953667] + }, + "n185975735": { + "id": "n185975735", + "loc": [-85.634923, 41.969269] + }, + "n185978390": { + "id": "n185978390", + "loc": [-85.634668, 41.949875] + }, + "n185978392": { + "id": "n185978392", + "loc": [-85.634686, 41.952415] + }, + "n185978394": { + "id": "n185978394", + "loc": [-85.634726, 41.955921] + }, + "n185978399": { + "id": "n185978399", + "loc": [-85.6347861, 41.9606613] + }, + "n185978402": { + "id": "n185978402", + "loc": [-85.634806, 41.961485] + }, + "n185978406": { + "id": "n185978406", + "loc": [-85.6348298, 41.964783] + }, + "n185978410": { + "id": "n185978410", + "loc": [-85.6348766, 41.9677088] + }, + "n185978414": { + "id": "n185978414", + "loc": [-85.634938, 41.971566] + }, + "n185978415": { + "id": "n185978415", + "loc": [-85.634942, 41.971611] + }, + "n185978417": { + "id": "n185978417", + "loc": [-85.634952, 41.971655] + }, + "n185978419": { + "id": "n185978419", + "loc": [-85.634989, 41.971741] + }, + "n185978420": { + "id": "n185978420", + "loc": [-85.635063, 41.971864] + }, + "n185978787": { + "id": "n185978787", + "loc": [-85.627936, 41.954693] + }, + "n185978790": { + "id": "n185978790", + "loc": [-85.626832, 41.954677] + }, + "n185978967": { + "id": "n185978967", + "loc": [-85.632278, 41.948613] + }, + "n185980735": { + "id": "n185980735", + "loc": [-85.628639, 41.953725] + }, + "n185982163": { + "id": "n185982163", + "loc": [-85.636233, 41.952398] + }, + "n185982193": { + "id": "n185982193", + "loc": [-85.6313855, 41.9499125] + }, + "n185982195": { + "id": "n185982195", + "loc": [-85.6304857, 41.9511945] + }, + "n185982196": { + "id": "n185982196", + "loc": [-85.626336, 41.957291] + }, + "n185982197": { + "id": "n185982197", + "loc": [-85.625578, 41.958664] + }, + "n185982198": { + "id": "n185982198", + "loc": [-85.624619, 41.960145] + }, + "n185982200": { + "id": "n185982200", + "loc": [-85.624494, 41.960338] + }, + "n185984017": { + "id": "n185984017", + "loc": [-85.636163, 41.947382] + }, + "n185984020": { + "id": "n185984020", + "loc": [-85.636188, 41.9498803] + }, + "n185984022": { + "id": "n185984022", + "loc": [-85.636276, 41.955919] + }, + "n185984024": { + "id": "n185984024", + "loc": [-85.636279, 41.956901] + }, + "n185988036": { + "id": "n185988036", + "loc": [-85.631422, 41.948294] + }, + "n185988867": { + "id": "n185988867", + "loc": [-85.63102, 41.948805] + }, + "n185988869": { + "id": "n185988869", + "loc": [-85.630773, 41.949209] + }, + "n185988871": { + "id": "n185988871", + "loc": [-85.63005, 41.95016] + }, + "n185988872": { + "id": "n185988872", + "loc": [-85.629423, 41.951016] + }, + "n185988873": { + "id": "n185988873", + "loc": [-85.629252, 41.951256] + }, + "n185988875": { + "id": "n185988875", + "loc": [-85.629126, 41.951489] + }, + "n185988877": { + "id": "n185988877", + "loc": [-85.628991, 41.951704] + }, + "n185988878": { + "id": "n185988878", + "loc": [-85.628689, 41.952112] + }, + "n185988879": { + "id": "n185988879", + "loc": [-85.628313, 41.952666] + }, + "n185988880": { + "id": "n185988880", + "loc": [-85.627687, 41.953529] + }, + "n185988882": { + "id": "n185988882", + "loc": [-85.627394, 41.953947] + }, + "n185988884": { + "id": "n185988884", + "loc": [-85.627287, 41.954128] + }, + "n1819858502": { + "id": "n1819858502", + "loc": [-85.6328435, 41.9455473] + }, + "n1819858510": { + "id": "n1819858510", + "loc": [-85.6324841, 41.9453438] + }, + "n1819858515": { + "id": "n1819858515", + "loc": [-85.6318511, 41.9446409] + }, + "n1819858520": { + "id": "n1819858520", + "loc": [-85.6326558, 41.9454708] + }, + "n1819858522": { + "id": "n1819858522", + "loc": [-85.6319048, 41.9447407] + }, + "n1819858524": { + "id": "n1819858524", + "loc": [-85.6317718, 41.9443666] + }, + "n1819858530": { + "id": "n1819858530", + "loc": [-85.632055, 41.9449128] + }, + "n2139795768": { + "id": "n2139795768", + "loc": [-85.6243023, 41.9606102] + }, + "n2139832645": { + "id": "n2139832645", + "loc": [-85.6324455, 41.9448607] + }, + "n2139832649": { + "id": "n2139832649", + "loc": [-85.6328043, 41.9454773] + }, + "n2139832651": { + "id": "n2139832651", + "loc": [-85.6322547, 41.9449621] + }, + "n2139832675": { + "id": "n2139832675", + "loc": [-85.6327356, 41.944757] + }, + "n2139832677": { + "id": "n2139832677", + "loc": [-85.6325433, 41.9448599] + }, + "n2139832680": { + "id": "n2139832680", + "loc": [-85.6328885, 41.9455614] + }, + "n2139832682": { + "id": "n2139832682", + "loc": [-85.6320913, 41.9449492] + }, + "n2139832684": { + "id": "n2139832684", + "loc": [-85.6325366, 41.9447133] + }, + "n2139832688": { + "id": "n2139832688", + "loc": [-85.6322786, 41.94485] + }, + "n2139832718": { + "id": "n2139832718", + "loc": [-85.6327486, 41.9432475] + }, + "n2139832719": { + "id": "n2139832719", + "loc": [-85.6327926, 41.9431773] + }, + "n2139832720": { + "id": "n2139832720", + "loc": [-85.6329033, 41.943153] + }, + "n2139832727": { + "id": "n2139832727", + "loc": [-85.6328975, 41.9430783] + }, + "n2139844839": { + "id": "n2139844839", + "loc": [-85.6326261, 41.9432308] + }, + "n2189015992": { + "id": "n2189015992", + "loc": [-85.6347706, 41.9593383] + }, + "n2189153179": { + "id": "n2189153179", + "loc": [-85.6340476, 41.9472565] + }, + "n2189153182": { + "id": "n2189153182", + "loc": [-85.6342638, 41.9472522] + }, + "n2189153241": { + "id": "n2189153241", + "loc": [-85.6354184, 41.9473091] + }, + "n2189153258": { + "id": "n2189153258", + "loc": [-85.6354611, 41.9472366] + }, + "n2189153277": { + "id": "n2189153277", + "loc": [-85.6328948, 41.9462374] + }, + "n2199109755": { + "id": "n2199109755", + "loc": [-85.6336729, 41.9472417] + }, + "w203970139": { + "id": "w203970139", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824793", "n2139824787", "n2139824773", "n2139824778", "n2139824793"] + }, + "w203970098": { + "id": "w203970098", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824748", "n2139824712", "n2139824726", "n2139824760", "n2139824748"] + }, + "w208643132": { + "id": "w208643132", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153195", "n2189153196", "n2189153197", "n2189153198", "n2189153195"] + }, + "w203970094": { + "id": "w203970094", + "tags": { + "building": "yes" + }, + "nodes": [ + "n2139824755", + "n2139824753", + "n2139824759", + "n2139824764", + "n2139824763", + "n2139824767", + "n2139824770", + "n2139824782", + "n2139824772", + "n2139824756", + "n2139824751", + "n2139824754", + "n2139824755" + ] + }, + "w208643138": { + "id": "w208643138", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2189153231", + "n2189153232", + "n2189153240", + "n2189153244", + "n2189153236", + "n2189153238", + "n2189153237", + "n2189153239", + "n2189153252", + "n2189153235", + "n2189153234", + "n2189153253", + "n2189153233", + "n2189153231" + ] + }, + "w203970125": { + "id": "w203970125", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824735", "n2139824738", "n2139824757", "n2139824749", "n2139824735"] + }, + "w170848823": { + "id": "w170848823", + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "nodes": ["n1819849189", "n1819858516", "n1819858519", "n1819858504", "n1819858525", "n1819858506", "n1819858513"] + }, + "w203970898": { + "id": "w203970898", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139832645", "n2139832647", "n2139832649", "n2139832651", "n2139832645"] + }, + "w203970134": { + "id": "w203970134", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824796", "n2139824803", "n2139824797", "n2139824788", "n2139824796"] + }, + "w203970104": { + "id": "w203970104", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824733", "n2139824730", "n2139824714", "n2139824721", "n2139824733"] + }, + "w206805245": { + "id": "w206805245", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544780", "n2168544781", "n2139824796", "n2139824803", "n2168544780"] + }, + "w206805252": { + "id": "w206805252", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544838", + "n2168544839", + "n2168544840", + "n2168544841", + "n2168544842", + "n2168544843", + "n2168544844", + "n2168544845", + "n2168544846", + "n2168544847", + "n2168544838" + ] + }, + "w203970099": { + "id": "w203970099", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824783", "n2139824795", "n2139824790", "n2139824779", "n2139824783"] + }, + "w17967730": { + "id": "w17967730", + "tags": { + "highway": "residential", + "name": "Water Street" + }, + "nodes": [ + "n185963451", + "n2189153277", + "n185988036", + "n185988867", + "n185988869", + "n185988871", + "n185988872", + "n185988873", + "n185988875", + "n185988877", + "n185988878", + "n185988879", + "n185988880", + "n185988882", + "n185988884", + "n185978790" + ] + }, + "w208643133": { + "id": "w208643133", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153199", "n2189153200", "n2189153201", "n2189153202", "n2189153199"] + }, + "w203970127": { + "id": "w203970127", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824794", "n2139824783", "n2139824789", "n2139824797", "n2139824794"] + }, + "w208643139": { + "id": "w208643139", + "tags": { + "highway": "service" + }, + "nodes": ["n185988237", "n2189153242", "n2189153247", "n2189153241"] + }, + "w203988297": { + "id": "w203988297", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2140006423", + "n2140006441", + "n2140006425", + "n2140006426", + "n2140006440", + "n2140006427", + "n2140006428", + "n2140006429", + "n2140006430", + "n2140006423" + ] + }, + "w206805250": { + "id": "w206805250", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544827", "n2168544823", "n2168544825", "n2168544800", "n2168544829", "n2168544827"] + }, + "w208643140": { + "id": "w208643140", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": [ + "n2189153242", + "n2189153254", + "n2189153243", + "n2189153244", + "n2189153251", + "n2189153257", + "n2189153245", + "n2189153252", + "n2189153246" + ] + }, + "w203974055": { + "id": "w203974055", + "tags": { + "bridge": "yes", + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": ["n2139870376", "n2139870377"] + }, + "w206805247": { + "id": "w206805247", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544785", "n2168544786", "n2168544783", "n2168544787", "n2168544788", "n2168544789", "n2168544785"] + }, + "w17964996": { + "id": "w17964996", + "tags": { + "highway": "residential", + "name": "Foster Street" + }, + "nodes": [ + "n1819858524", + "n1819858515", + "n1819858522", + "n1819858530", + "n2139832682", + "n1819858510", + "n1819858520", + "n1819858502", + "n2139832680", + "n185963451", + "n1819858527", + "n185963452", + "n185963453", + "n185963454", + "n185963455", + "n185963456" + ] + }, + "w208643144": { + "id": "w208643144", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153264", "n2189153265", "n2189153266", "n2189153267", "n2189153268", "n2189153269", "n2189153270", "n2189153264"] + }, + "w203970914": { + "id": "w203970914", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139832722", "n2139832723", "n2139832724", "n2139832725", "n2139832726", "n2139832727", "n2139844839", "n2139832722"] + }, + "w208643143": { + "id": "w208643143", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153258", "n2189153259", "n2189153260", "n2189153261", "n2189153262", "n2189153263", "n2189153258"] + }, + "w203049590": { + "id": "w203049590", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2130304152", "n2130304153", "n2140006403", "n2130304154", "n2130304156", "n2130304155", "n2130304160", "n2130304152"] + }, + "w203974054": { + "id": "w203974054", + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": ["n2139858971", "n2139870373", "n2139870374"] + }, + "w203049595": { + "id": "w203049595", + "tags": { + "highway": "service" + }, + "nodes": ["n2130304158", "n2130304159", "n2130304160", "n2139832635", "n2139832639"] + }, + "w203970913": { + "id": "w203970913", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139832715", "n2139832716", "n2139832717", "n2139832718", "n2139832719", "n2139832720", "n2139832721", "n2139832716"] + }, + "w208643134": { + "id": "w208643134", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189153203", + "n2189153204", + "n2189153205", + "n2189153206", + "n2189153207", + "n2189153208", + "n2189153209", + "n2189153210", + "n2189153211", + "n2189153212", + "n2189153213", + "n2189153214", + "n2189153203" + ] + }, + "w134150808": { + "id": "w134150808", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "Moore Street" + }, + "nodes": ["n185988239", "n185984009", "n185988241", "n1475284019"] + }, + "w203970115": { + "id": "w203970115", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824761", "n2139824727", "n2139824736", "n2139824771", "n2139824761"] + }, + "w208643130": { + "id": "w208643130", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189153183", + "n2189153184", + "n2189153185", + "n2189153186", + "n2189153187", + "n2189153188", + "n2189153189", + "n2189153190", + "n2189153183" + ] + }, + "w206805246": { + "id": "w206805246", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544782", "n2168544780", "n2168544781", "n2168544783", "n2168544787", "n2168544784", "n2168544782"] + }, + "w203970138": { + "id": "w203970138", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824729", "n2139824720", "n2139824702", "n2139824707", "n2139824729"] + }, + "w203970133": { + "id": "w203970133", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824748", "n2139824737", "n2139824717", "n2139824728", "n2139824748"] + }, + "w203970907": { + "id": "w203970907", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139832700", "n2139832701", "n2139832702"] + }, + "w203974056": { + "id": "w203974056", + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": ["n2139870377", "n2139870378"] + }, + "w203970897": { + "id": "w203970897", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2130304156", "n2166205688", "n2139832635", "n2139832636", "n2139832637", "n2139832639", "n2139832641", "n2166205688"] + }, + "w203974057": { + "id": "w203974057", + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": ["n2139870375", "n2139870376"] + }, + "w203049594": { + "id": "w203049594", + "tags": { + "highway": "service" + }, + "nodes": ["n2130304156", "n2139870378", "n2139832706", "n2139832704", "n2130304157"] + }, + "w203970122": { + "id": "w203970122", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824757", "n2139824740", "n2139824747", "n2139824762", "n2139824757"] + }, + "w208643136": { + "id": "w208643136", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189153219", + "n2189153220", + "n2189153221", + "n2189153222", + "n2189153223", + "n2189153224", + "n2189153225", + "n2189153226", + "n2189153219" + ] + }, + "w203970128": { + "id": "w203970128", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824732", "n2139824752", "n2139824744", "n2139824724", "n2139824732"] + }, + "w203970097": { + "id": "w203970097", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824737", "n2139824733", "n2139824710", "n2139824716", "n2139824737"] + }, + "w203970137": { + "id": "w203970137", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824765", "n2139824774", "n2139824758", "n2139824746", "n2139824765"] + }, + "w134150840": { + "id": "w134150840", + "tags": { + "highway": "residential", + "name": "Moore Street" + }, + "nodes": ["n1475284019", "n185988243", "n185988244", "n185988245"] + }, + "w17967628": { + "id": "w17967628", + "tags": { + "highway": "residential", + "name": "Moore Street" + }, + "nodes": ["n185978388", "n2139832709", "n185988237", "n185988239"] + }, + "w203988292": { + "id": "w203988292", + "tags": { + "bridge": "yes", + "highway": "footway" + }, + "nodes": ["n2140006407", "n2140006405"] + }, + "w203970118": { + "id": "w203970118", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824775", "n2139824785", "n2139824780", "n2139824768", "n2139824775"] + }, + "w203970121": { + "id": "w203970121", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824768", "n2139824781", "n2139824776", "n2139824765", "n2139824768"] + }, + "w17967752": { + "id": "w17967752", + "tags": { + "highway": "residential", + "name": "Railroad Drive" + }, + "nodes": ["n185964980", "n2139832699", "n2139832700", "n2130304158", "n185988969", "n185988971", "n185988972", "n1475284011"] + }, + "w203970136": { + "id": "w203970136", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824798", "n2139824793", "n2139824777", "n2139824784", "n2139824798"] + }, + "w203970142": { + "id": "w203970142", + "tags": { + "building": "yes" + }, + "nodes": [ + "n2139824808", + "n2139824809", + "n2139824807", + "n2139824806", + "n2139824801", + "n2139824800", + "n2139824804", + "n2139824805", + "n2139824808" + ] + }, + "w208643137": { + "id": "w208643137", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2189153227", + "n2189153248", + "n2189153228", + "n2189153234", + "n2189153235", + "n2189153229", + "n2189153249", + "n2189153230", + "n2189153227" + ] + }, + "w208643129": { + "id": "w208643129", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153179", "n2189153180", "n2189153181", "n2189153182", "n2189153179"] + }, + "w203970909": { + "id": "w203970909", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139832703", "n2139832704", "n2139832706", "n2139832708", "n2139832703"] + }, + "w203970905": { + "id": "w203970905", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139832688", "n2139832691"] + }, + "w203988298": { + "id": "w203988298", + "tags": { + "highway": "service" + }, + "nodes": ["n2140006431", "n2140006433", "n2140006435", "n2140006436", "n2140006437", "n2140006438", "n2140006439", "n2140006440"] + }, + "w203970106": { + "id": "w203970106", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824798", "n2139824791", "n2139824799", "n2139824802", "n2139824798"] + }, + "w203970129": { + "id": "w203970129", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824787", "n2139824782", "n2139824766", "n2139824769", "n2139824787"] + }, + "w208643131": { + "id": "w208643131", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189153191", "n2189153192", "n2189153193", "n2189153194", "n2189153191"] + }, + "w206805249": { + "id": "w206805249", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544800", + "n2168544801", + "n2168544802", + "n2168544805", + "n2168544807", + "n2168544809", + "n2168544811", + "n2168544813", + "n2168544815", + "n2168544817", + "n2168544819", + "n2168544821", + "n2168544823", + "n2168544825", + "n2168544800" + ] + }, + "w134150800": { + "id": "w134150800", + "tags": { + "bridge": "yes", + "highway": "primary", + "name": "West Michigan Avenue", + "old_ref": "US 131", + "ref": "US 131 Business;M 60" + }, + "nodes": ["n185964972", "n185964976"] + }, + "w17966984": { + "id": "w17966984", + "tags": { + "highway": "residential", + "name": "Portage Avenue" + }, + "nodes": [ + "n185978375", + "n185963456", + "n2189153218", + "n185966937", + "n185978967", + "n185967422", + "n185982193", + "n185968100", + "n185982195", + "n185960195", + "n185980735", + "n185978787", + "n185966948", + "n185982196", + "n185982197", + "n185982198", + "n185982200", + "n2139795768", + "n185972155" + ] + }, + "w203988294": { + "id": "w203988294", + "tags": { + "amenity": "shelter", + "area": "yes", + "building": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2140006409", "n2140006411", "n2140006413", "n2140006415", "n2140006409"] + }, + "w203970912": { + "id": "w203970912", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139832711", "n2139832712", "n2139832713", "n2139832714", "n2139832711"] + }, + "w203970119": { + "id": "w203970119", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824713", "n2139824705", "n2139824683", "n2139824689", "n2139824713"] + }, + "w203970114": { + "id": "w203970114", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824735", "n2139824750", "n2139824745", "n2139824732", "n2139824735"] + }, + "w208643142": { + "id": "w208643142", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153254", "n2189153255", "n2189153256", "n2189153257"] + }, + "w206805253": { + "id": "w206805253", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544848", + "n2168544849", + "n2168544850", + "n2168544851", + "n2168544852", + "n2168544853", + "n2168544854", + "n2168544855", + "n2168544848" + ] + }, + "w143497377": { + "id": "w143497377", + "tags": { + "highway": "primary", + "name": "North Main Street", + "old_ref": "US 131", + "ref": "US 131 Business" + }, + "nodes": [ + "n185962625", + "n185978420", + "n185978419", + "n185978417", + "n185978415", + "n185978414", + "n185975735", + "n1475293254", + "n185978410", + "n185978406", + "n185970515", + "n185978402", + "n185978399", + "n185965399", + "n2189015992", + "n185961396", + "n185967917", + "n185978394", + "n185971631", + "n185960796", + "n185978392", + "n185974583", + "n185978390", + "n185971578", + "n185965289", + "n2189153215", + "n185978388", + "n185978383", + "n185978381", + "n185978379", + "n185978377", + "n185978375", + "n185964982" + ] + }, + "w134150811": { + "id": "w134150811", + "tags": { + "highway": "primary", + "name": "West Michigan Avenue", + "old_ref": "US 131", + "ref": "US 131 Business;M 60" + }, + "nodes": ["n185964976", "n2130304157", "n1475284023", "n2139832715", "n185964980", "n185964982"] + }, + "w208643135": { + "id": "w208643135", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153215", "n2189153216", "n2189153217", "n2189153218"] + }, + "w17967183": { + "id": "w17967183", + "tags": { + "highway": "residential", + "name": "West Street" + }, + "nodes": [ + "n1475284011", + "n185984011", + "n185984013", + "n185984015", + "n2189153246", + "n2189153250", + "n185965291", + "n185984017", + "n185971580", + "n185984020", + "n185974585", + "n185982163", + "n185975064", + "n185971632", + "n185984022", + "n185984024", + "n185967918" + ] + }, + "w134150778": { + "id": "w134150778", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "Moore Street" + }, + "nodes": ["n185988245", "n1475283992", "n185975911"] + }, + "w206805248": { + "id": "w206805248", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544790", + "n2168544791", + "n2168544792", + "n2168544793", + "n2168544795", + "n2168544797", + "n2168544798", + "n2168544799", + "n2168544802", + "n2168544801", + "n2168544790" + ] + }, + "w203974058": { + "id": "w203974058", + "tags": { + "bridge": "yes", + "highway": "path", + "name": "Riverwalk Trail" + }, + "nodes": ["n2139870374", "n2139870375"] + }, + "w203970902": { + "id": "w203970902", + "tags": { + "highway": "service" + }, + "nodes": ["n2139832678", "n2139832691", "n2139832680"] + }, + "w203988296": { + "id": "w203988296", + "tags": { + "highway": "path" + }, + "nodes": ["n2139858967", "n2140006421", "n2139858935"] + }, + "w206805251": { + "id": "w206805251", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544830", + "n2168544831", + "n2168544832", + "n2168544833", + "n2168544834", + "n2168544835", + "n2168544836", + "n2168544837", + "n2168544830" + ] + }, + "w203970906": { + "id": "w203970906", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2139832693", "n2139832694", "n2139832696", "n2139832697", "n2139832698", "n2139832693"] + }, + "w203049598": { + "id": "w203049598", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "tennis" + }, + "nodes": ["n2130304162", "n2130304163", "n2130304164", "n2130304165", "n2130304162"] + }, + "w203970911": { + "id": "w203970911", + "tags": { + "highway": "service" + }, + "nodes": ["n2139832709", "n2139832714", "n2139832713", "n2139832710", "n185988971"] + }, + "w203970105": { + "id": "w203970105", + "tags": { + "building": "yes" + }, + "nodes": ["n2139824779", "n2139824792", "n2139824786", "n2139824775", "n2139824779"] + }, + "w203988290": { + "id": "w203988290", + "tags": { + "highway": "footway" + }, + "nodes": ["n2140006403", "n2140006407"] + }, + "w203970900": { + "id": "w203970900", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2139832653", + "n2139832663", + "n2139832665", + "n2139832667", + "n2139832669", + "n2139832671", + "n2139832673", + "n2139832675", + "n2139832677", + "n2139832653" + ] + }, + "w209717048": { + "id": "w209717048", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109755", "n2199109756", "n2199109757", "n2199109758", "n2199109759", "n2199109760", "n2199109755"] + }, + "w208643141": { + "id": "w208643141", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153247", "n2189153248", "n2189153249", "n2189153250"] + }, + "w203970903": { + "id": "w203970903", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2139832682", "n2139832688", "n2139832684", "n2139832678", "n2139832686"] + }, + "n354002527": { + "id": "n354002527", + "loc": [-85.6236039, 41.9458813], + "tags": { + "amenity": "school", + "name": "Barrows School" + } + }, + "n185963396": { + "id": "n185963396", + "loc": [-85.627401, 41.943496] + }, + "n185963397": { + "id": "n185963397", + "loc": [-85.627403, 41.943625] + }, + "n185965101": { + "id": "n185965101", + "loc": [-85.626409, 41.943215] + }, + "n185971474": { + "id": "n185971474", + "loc": [-85.624884, 41.943508] + }, + "n185971475": { + "id": "n185971475", + "loc": [-85.625191, 41.943509] + }, + "n185971482": { + "id": "n185971482", + "loc": [-85.624882, 41.94382] + }, + "n185983135": { + "id": "n185983135", + "loc": [-85.624893, 41.945616] + }, + "n185983137": { + "id": "n185983137", + "loc": [-85.624912, 41.946524] + }, + "n185988027": { + "id": "n185988027", + "loc": [-85.622721, 41.946535] + }, + "n185963398": { + "id": "n185963398", + "loc": [-85.6273993, 41.9446899] + }, + "n185983238": { + "id": "n185983238", + "loc": [-85.6227157, 41.9456321] + }, + "n185980374": { + "id": "n185980374", + "loc": [-85.6248856, 41.9447242] + }, + "n185980373": { + "id": "n185980373", + "loc": [-85.6226744, 41.9447371] + }, + "n2196831342": { + "id": "n2196831342", + "loc": [-85.6250924, 41.945063] + }, + "n2196831343": { + "id": "n2196831343", + "loc": [-85.6252335, 41.9450636] + }, + "n2196831344": { + "id": "n2196831344", + "loc": [-85.6252286, 41.9448707] + }, + "n2196831345": { + "id": "n2196831345", + "loc": [-85.6250661, 41.9448707] + }, + "n2196831346": { + "id": "n2196831346", + "loc": [-85.6250243, 41.9449012] + }, + "n2196831347": { + "id": "n2196831347", + "loc": [-85.6250251, 41.9449244] + }, + "n2196831348": { + "id": "n2196831348", + "loc": [-85.6250867, 41.9449257] + }, + "n2196831349": { + "id": "n2196831349", + "loc": [-85.625349, 41.9445058] + }, + "n2196831350": { + "id": "n2196831350", + "loc": [-85.6253471, 41.9443882] + }, + "n2196831351": { + "id": "n2196831351", + "loc": [-85.6251516, 41.94439] + }, + "n2196831352": { + "id": "n2196831352", + "loc": [-85.6251522, 41.9444308] + }, + "n2196831353": { + "id": "n2196831353", + "loc": [-85.6251344, 41.9444309] + }, + "n2196831354": { + "id": "n2196831354", + "loc": [-85.6251356, 41.9445077] + }, + "n2196831355": { + "id": "n2196831355", + "loc": [-85.6232357, 41.9463406] + }, + "n2196831356": { + "id": "n2196831356", + "loc": [-85.6232409, 41.9460668] + }, + "n2196831357": { + "id": "n2196831357", + "loc": [-85.6232072, 41.9460665] + }, + "n2196831358": { + "id": "n2196831358", + "loc": [-85.6232117, 41.9458272] + }, + "n2196831359": { + "id": "n2196831359", + "loc": [-85.6229808, 41.9458248] + }, + "n2196831360": { + "id": "n2196831360", + "loc": [-85.6229763, 41.9460627] + }, + "n2196831361": { + "id": "n2196831361", + "loc": [-85.623006, 41.946063] + }, + "n2196831362": { + "id": "n2196831362", + "loc": [-85.6230023, 41.9462557] + }, + "n2196831363": { + "id": "n2196831363", + "loc": [-85.6230755, 41.9462565] + }, + "n2196831364": { + "id": "n2196831364", + "loc": [-85.6230739, 41.9463389] + }, + "n185947349": { + "id": "n185947349", + "loc": [-85.618327, 41.945607] + }, + "n185947359": { + "id": "n185947359", + "loc": [-85.615453, 41.945597] + }, + "n185947378": { + "id": "n185947378", + "loc": [-85.617231, 41.945603] + }, + "n185947474": { + "id": "n185947474", + "loc": [-85.616136, 41.945602] + }, + "n185948972": { + "id": "n185948972", + "loc": [-85.615273, 41.945637] + }, + "n185955019": { + "id": "n185955019", + "loc": [-85.620172, 41.945627] + }, + "n185960682": { + "id": "n185960682", + "loc": [-85.622759, 41.951845] + }, + "n185961369": { + "id": "n185961369", + "loc": [-85.622758, 41.947444] + }, + "n185961371": { + "id": "n185961371", + "loc": [-85.624908, 41.947416] + }, + "n185963392": { + "id": "n185963392", + "loc": [-85.6270462, 41.9409953] + }, + "n185963393": { + "id": "n185963393", + "loc": [-85.627295, 41.941304] + }, + "n185963394": { + "id": "n185963394", + "loc": [-85.627352, 41.94148] + }, + "n185963395": { + "id": "n185963395", + "loc": [-85.62737, 41.942261] + }, + "n185965099": { + "id": "n185965099", + "loc": [-85.6264, 41.942263] + }, + "n185965108": { + "id": "n185965108", + "loc": [-85.622769, 41.949224] + }, + "n185965110": { + "id": "n185965110", + "loc": [-85.624937, 41.949237] + }, + "n185966295": { + "id": "n185966295", + "loc": [-85.6299942, 41.9446689] + }, + "n185966342": { + "id": "n185966342", + "loc": [-85.624873, 41.942022] + }, + "n185970222": { + "id": "n185970222", + "loc": [-85.622761, 41.948357] + }, + "n185970224": { + "id": "n185970224", + "loc": [-85.624924, 41.9483338] + }, + "n185971477": { + "id": "n185971477", + "loc": [-85.620051, 41.94383] + }, + "n185971478": { + "id": "n185971478", + "loc": [-85.621219, 41.943801] + }, + "n185971481": { + "id": "n185971481", + "loc": [-85.621812, 41.943807] + }, + "n185973866": { + "id": "n185973866", + "loc": [-85.627629, 41.946498] + }, + "n185974699": { + "id": "n185974699", + "loc": [-85.6227688, 41.950119] + }, + "n185978800": { + "id": "n185978800", + "loc": [-85.623953, 41.954684] + }, + "n185980372": { + "id": "n185980372", + "loc": [-85.621459, 41.944756] + }, + "n185980378": { + "id": "n185980378", + "loc": [-85.6286375, 41.9446764] + }, + "n185980380": { + "id": "n185980380", + "loc": [-85.630139, 41.944661] + }, + "n185980382": { + "id": "n185980382", + "loc": [-85.630298, 41.944635] + }, + "n185980384": { + "id": "n185980384", + "loc": [-85.630759, 41.94454] + }, + "n185980386": { + "id": "n185980386", + "loc": [-85.6312369, 41.9444548] + }, + "n185983133": { + "id": "n185983133", + "loc": [-85.6248672, 41.9415903] + }, + "n185983139": { + "id": "n185983139", + "loc": [-85.624951, 41.950239] + }, + "n185983140": { + "id": "n185983140", + "loc": [-85.624934, 41.950681] + }, + "n185983141": { + "id": "n185983141", + "loc": [-85.624813, 41.950983] + }, + "n185983143": { + "id": "n185983143", + "loc": [-85.6246225, 41.951591] + }, + "n185983144": { + "id": "n185983144", + "loc": [-85.623908, 41.9539165] + }, + "n185983145": { + "id": "n185983145", + "loc": [-85.6238903, 41.9540956] + }, + "n185983146": { + "id": "n185983146", + "loc": [-85.623898, 41.95431] + }, + "n185983236": { + "id": "n185983236", + "loc": [-85.628481, 41.945611] + }, + "n185985914": { + "id": "n185985914", + "loc": [-85.620072, 41.946538] + }, + "n185986812": { + "id": "n185986812", + "loc": [-85.6227785, 41.9510005] + }, + "n185988028": { + "id": "n185988028", + "loc": [-85.6281401, 41.9469632] + }, + "n185988030": { + "id": "n185988030", + "loc": [-85.6282451, 41.9470314] + }, + "n185988032": { + "id": "n185988032", + "loc": [-85.6283312, 41.9470656] + }, + "w17964989": { + "id": "w17964989", + "tags": { + "highway": "residential", + "name": "Middle Street" + }, + "nodes": ["n185963392", "n185963393", "n185963394", "n185963395", "n185963396", "n185963397", "n185963398"] + }, + "w17965158": { + "id": "w17965158", + "tags": { + "access": "private", + "highway": "service", + "name": "Battle Street" + }, + "nodes": ["n185965099", "n185965101"] + }, + "w41074896": { + "id": "w41074896", + "tags": { + "highway": "secondary", + "name": "East Michigan Avenue", + "name_1": "State Highway 60", + "ref": "M 60" + }, + "nodes": [ + "n185980372", + "n185980373", + "n185980374", + "n185963398", + "n185980378", + "n185966295", + "n185980380", + "n185980382", + "n185980384", + "n185980386" + ] + }, + "w17965846": { + "id": "w17965846", + "tags": { + "highway": "residential", + "name": "2nd Avenue" + }, + "nodes": ["n185971477", "n185971478", "n185971481", "n185971482"] + }, + "w209470306": { + "id": "w209470306", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2196831349", "n2196831350", "n2196831351", "n2196831352", "n2196831353", "n2196831354", "n2196831349"] + }, + "w17965845": { + "id": "w17965845", + "tags": { + "highway": "residential", + "name": "2nd Avenue" + }, + "nodes": ["n185971474", "n185971475", "n185963396"] + }, + "w209470307": { + "id": "w209470307", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2196831355", + "n2196831356", + "n2196831357", + "n2196831358", + "n2196831359", + "n2196831360", + "n2196831361", + "n2196831362", + "n2196831363", + "n2196831364", + "n2196831355" + ] + }, + "w17968192": { + "id": "w17968192", + "tags": { + "highway": "residential", + "name": "Washington Street" + }, + "nodes": [ + "n185980373", + "n185983238", + "n185988027", + "n185961369", + "n185970222", + "n185965108", + "n185974699", + "n185986812", + "n185960682" + ] + }, + "w17967603": { + "id": "w17967603", + "tags": { + "highway": "residential", + "name": "5th Avenue" + }, + "nodes": ["n185985914", "n185988027", "n185983137", "n185973866", "n185988028", "n185988030", "n185988032"] + }, + "w209470305": { + "id": "w209470305", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2196831342", "n2196831343", "n2196831344", "n2196831345", "n2196831346", "n2196831347", "n2196831348", "n2196831342"] + }, + "w17967092": { + "id": "w17967092", + "tags": { + "highway": "residential", + "name": "Wood Street" + }, + "nodes": [ + "n185983133", + "n185966342", + "n185971474", + "n185971482", + "n185980374", + "n185983135", + "n185983137", + "n185961371", + "n185970224", + "n185965110", + "n185983139", + "n185983140", + "n185983141", + "n185983143", + "n185983144", + "n185983145", + "n185983146", + "n185978800" + ] + }, + "w17967107": { + "id": "w17967107", + "tags": { + "highway": "residential", + "name": "4th Avenue" + }, + "nodes": [ + "n185983236", + "n185983135", + "n185983238", + "n185955019", + "n185947349", + "n185947378", + "n185947474", + "n185947359", + "n185948972" + ] + }, + "n354030330": { + "id": "n354030330", + "loc": [-85.6297222, 41.9444444], + "tags": { + "leisure": "park", + "name": "Scouter Park" + } + }, + "n185966296": { + "id": "n185966296", + "loc": [-85.629998, 41.944078] + }, + "n185966298": { + "id": "n185966298", + "loc": [-85.629972, 41.943927] + }, + "n185966300": { + "id": "n185966300", + "loc": [-85.629948, 41.943783] + }, + "n185980391": { + "id": "n185980391", + "loc": [-85.6322992, 41.9442766] + }, + "n185980393": { + "id": "n185980393", + "loc": [-85.6324925, 41.9442136] + }, + "n185980389": { + "id": "n185980389", + "loc": [-85.6320272, 41.9443281] + }, + "n185980388": { + "id": "n185980388", + "loc": [-85.6315778, 41.9443959] + }, + "n354031320": { + "id": "n354031320", + "loc": [-85.6280556, 41.9447222], + "tags": { + "amenity": "place_of_worship", + "name": "Riverside Church", + "religion": "christian" + } + }, + "n185987309": { + "id": "n185987309", + "loc": [-85.6286497, 41.9453531] + }, + "n185987311": { + "id": "n185987311", + "loc": [-85.6285942, 41.9454805] + }, + "n185988034": { + "id": "n185988034", + "loc": [-85.6285815, 41.9471692] + }, + "n185988896": { + "id": "n185988896", + "loc": [-85.6318433, 41.9437929] + }, + "n185977764": { + "id": "n185977764", + "loc": [-85.6322988, 41.943472] + }, + "n1819848852": { + "id": "n1819848852", + "loc": [-85.6315188, 41.9448808] + }, + "n1819848912": { + "id": "n1819848912", + "loc": [-85.6284289, 41.9472189] + }, + "n1819848925": { + "id": "n1819848925", + "loc": [-85.6314501, 41.9451617] + }, + "n1819848949": { + "id": "n1819848949", + "loc": [-85.6309394, 41.9455192] + }, + "n1819848951": { + "id": "n1819848951", + "loc": [-85.6290297, 41.9457187] + }, + "n1819848963": { + "id": "n1819848963", + "loc": [-85.630521, 41.9455591] + }, + "n1819848981": { + "id": "n1819848981", + "loc": [-85.6292936, 41.9455846] + }, + "n1819848989": { + "id": "n1819848989", + "loc": [-85.6298451, 41.9455431] + }, + "n1819848998": { + "id": "n1819848998", + "loc": [-85.6314973, 41.9446254] + }, + "n1819849018": { + "id": "n1819849018", + "loc": [-85.6302807, 41.9455527] + }, + "n1819849043": { + "id": "n1819849043", + "loc": [-85.6285533, 41.9469731] + }, + "n1819849087": { + "id": "n1819849087", + "loc": [-85.6314501, 41.9453532] + }, + "n1819849090": { + "id": "n1819849090", + "loc": [-85.628843, 41.9461033] + }, + "n1819849109": { + "id": "n1819849109", + "loc": [-85.6311926, 41.9454729] + }, + "n1819849116": { + "id": "n1819849116", + "loc": [-85.6288967, 41.9459437] + }, + "n1819849177": { + "id": "n1819849177", + "loc": [-85.6287894, 41.9464544] + }, + "n1819858529": { + "id": "n1819858529", + "loc": [-85.6325485, 41.9445625] + }, + "n2189112797": { + "id": "n2189112797", + "loc": [-85.6275271, 41.944555] + }, + "n2189112798": { + "id": "n2189112798", + "loc": [-85.6275196, 41.9437258] + }, + "n2189112799": { + "id": "n2189112799", + "loc": [-85.6278937, 41.943723] + }, + "n2189112800": { + "id": "n2189112800", + "loc": [-85.6278969, 41.9439191] + }, + "n2189112801": { + "id": "n2189112801", + "loc": [-85.6279907, 41.9439345] + }, + "n2189112802": { + "id": "n2189112802", + "loc": [-85.6280817, 41.9439663] + }, + "n2189112803": { + "id": "n2189112803", + "loc": [-85.6281768, 41.9440145] + }, + "n2189112804": { + "id": "n2189112804", + "loc": [-85.6281933, 41.9440483] + }, + "n2189112805": { + "id": "n2189112805", + "loc": [-85.6281671, 41.9440535] + }, + "n2189112806": { + "id": "n2189112806", + "loc": [-85.6281933, 41.9440935] + }, + "n2189112807": { + "id": "n2189112807", + "loc": [-85.6282126, 41.9441437] + }, + "n2189112808": { + "id": "n2189112808", + "loc": [-85.628214, 41.9441991] + }, + "n2189112809": { + "id": "n2189112809", + "loc": [-85.6283298, 41.944196] + }, + "n2189112810": { + "id": "n2189112810", + "loc": [-85.6283285, 41.9442616] + }, + "n2189112811": { + "id": "n2189112811", + "loc": [-85.6281727, 41.9442616] + }, + "n2189112812": { + "id": "n2189112812", + "loc": [-85.6281713, 41.9442934] + }, + "n2189112813": { + "id": "n2189112813", + "loc": [-85.6280386, 41.9442963] + }, + "n2189112814": { + "id": "n2189112814", + "loc": [-85.6280405, 41.9443292] + }, + "n2189112815": { + "id": "n2189112815", + "loc": [-85.627829, 41.9443349] + }, + "n2189112816": { + "id": "n2189112816", + "loc": [-85.6278347, 41.9445495] + }, + "n2189153271": { + "id": "n2189153271", + "loc": [-85.6321053, 41.9460342] + }, + "n2189153272": { + "id": "n2189153272", + "loc": [-85.632278, 41.9457841] + }, + "n2189153273": { + "id": "n2189153273", + "loc": [-85.632823, 41.9459936] + }, + "n2189153274": { + "id": "n2189153274", + "loc": [-85.6326845, 41.9461963] + }, + "n2189153275": { + "id": "n2189153275", + "loc": [-85.6325664, 41.9461507] + }, + "n2189153276": { + "id": "n2189153276", + "loc": [-85.6325323, 41.946198] + }, + "n2189153278": { + "id": "n2189153278", + "loc": [-85.6321916, 41.9459733] + }, + "n2189153279": { + "id": "n2189153279", + "loc": [-85.6322598, 41.9458703] + }, + "n2189153280": { + "id": "n2189153280", + "loc": [-85.6327208, 41.9460358] + }, + "n2189153281": { + "id": "n2189153281", + "loc": [-85.6326413, 41.9461422] + }, + "n185959079": { + "id": "n185959079", + "loc": [-85.6293702, 41.9474668] + }, + "n185966301": { + "id": "n185966301", + "loc": [-85.629692, 41.943136] + }, + "n185966304": { + "id": "n185966304", + "loc": [-85.629565, 41.942916] + }, + "n185966308": { + "id": "n185966308", + "loc": [-85.629501, 41.942751] + }, + "n185966315": { + "id": "n185966315", + "loc": [-85.629472, 41.942578] + }, + "n185966319": { + "id": "n185966319", + "loc": [-85.629444, 41.942414] + }, + "n185966321": { + "id": "n185966321", + "loc": [-85.629391, 41.94205] + }, + "n185966323": { + "id": "n185966323", + "loc": [-85.629369, 41.941858] + }, + "n185966327": { + "id": "n185966327", + "loc": [-85.629297, 41.941604] + }, + "n185966331": { + "id": "n185966331", + "loc": [-85.629233, 41.941549] + }, + "n185966336": { + "id": "n185966336", + "loc": [-85.628504, 41.941364] + }, + "n185966338": { + "id": "n185966338", + "loc": [-85.628275, 41.941303] + }, + "n185966340": { + "id": "n185966340", + "loc": [-85.6269038, 41.9410983] + }, + "n185973867": { + "id": "n185973867", + "loc": [-85.626843, 41.947333] + }, + "n185977762": { + "id": "n185977762", + "loc": [-85.6318441, 41.9429453] + }, + "n1819848853": { + "id": "n1819848853", + "loc": [-85.625854, 41.9492218] + }, + "n1819848861": { + "id": "n1819848861", + "loc": [-85.6251459, 41.9552376] + }, + "n1819848874": { + "id": "n1819848874", + "loc": [-85.6267445, 41.9482961] + }, + "n1819848882": { + "id": "n1819848882", + "loc": [-85.6257209, 41.9552396] + }, + "n1819848883": { + "id": "n1819848883", + "loc": [-85.624706, 41.9523173] + }, + "n1819848907": { + "id": "n1819848907", + "loc": [-85.62609, 41.9561471] + }, + "n1819848908": { + "id": "n1819848908", + "loc": [-85.6244013, 41.9549284] + }, + "n1819848911": { + "id": "n1819848911", + "loc": [-85.6265578, 41.9553672] + }, + "n1819848923": { + "id": "n1819848923", + "loc": [-85.6246802, 41.9550959] + }, + "n1819848936": { + "id": "n1819848936", + "loc": [-85.6241588, 41.9539291] + }, + "n1819848940": { + "id": "n1819848940", + "loc": [-85.62506, 41.9511129] + }, + "n1819848944": { + "id": "n1819848944", + "loc": [-85.624942, 41.9515912] + }, + "n1819848950": { + "id": "n1819848950", + "loc": [-85.6273989, 41.9475461] + }, + "n1819848957": { + "id": "n1819848957", + "loc": [-85.627695, 41.947404] + }, + "n1819849009": { + "id": "n1819849009", + "loc": [-85.6259248, 41.94896] + }, + "n1819849037": { + "id": "n1819849037", + "loc": [-85.6257252, 41.9502112] + }, + "n1819849061": { + "id": "n1819849061", + "loc": [-85.6270084, 41.9479626] + }, + "n1819849073": { + "id": "n1819849073", + "loc": [-85.6243734, 41.9534583] + }, + "n1819849091": { + "id": "n1819849091", + "loc": [-85.6241373, 41.9543918] + }, + "n1819849130": { + "id": "n1819849130", + "loc": [-85.6282572, 41.9473067] + }, + "n1819849143": { + "id": "n1819849143", + "loc": [-85.625281, 41.9506596] + }, + "n1819849153": { + "id": "n1819849153", + "loc": [-85.6258647, 41.9498043] + }, + "n1819849168": { + "id": "n1819849168", + "loc": [-85.6265084, 41.9559317] + }, + "n1819849173": { + "id": "n1819849173", + "loc": [-85.6263325, 41.9552156] + }, + "n1819849175": { + "id": "n1819849175", + "loc": [-85.6266372, 41.9556764] + }, + "n1819849178": { + "id": "n1819849178", + "loc": [-85.6242232, 41.9545993] + }, + "n1819849181": { + "id": "n1819849181", + "loc": [-85.6262187, 41.9486712] + }, + "n1819849188": { + "id": "n1819849188", + "loc": [-85.6245558, 41.9530434] + }, + "n1819849190": { + "id": "n1819849190", + "loc": [-85.6255982, 41.9563017] + }, + "n2168544738": { + "id": "n2168544738", + "loc": [-85.6245707, 41.9529711] + }, + "w208643145": { + "id": "w208643145", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2189153271", "n2189153272", "n2189153273", "n2189153274", "n2189153275", "n2189153276", "n2189153271"] + }, + "w17967561": { + "id": "w17967561", + "tags": { + "highway": "residential", + "name": "Garden Street" + }, + "nodes": ["n185980378", "n185987309", "n185987311", "n185983236", "n185973866"] + }, + "w134150802": { + "id": "w134150802", + "tags": { + "bridge": "yes", + "highway": "secondary", + "name": "East Michigan Avenue", + "name_1": "State Highway 60", + "ref": "M 60" + }, + "nodes": ["n185980386", "n185980388"] + }, + "w208639462": { + "id": "w208639462", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189112797", + "n2189112798", + "n2189112799", + "n2189112800", + "n2189112801", + "n2189112802", + "n2189112803", + "n2189112804", + "n2189112805", + "n2189112806", + "n2189112807", + "n2189112808", + "n2189112809", + "n2189112810", + "n2189112811", + "n2189112812", + "n2189112813", + "n2189112814", + "n2189112815", + "n2189112816", + "n2189112797" + ] + }, + "w134150830": { + "id": "w134150830", + "tags": { + "bridge": "yes", + "highway": "secondary", + "name": "South Main Street", + "old_ref": "US 131", + "ref": "M 86" + }, + "nodes": ["n185977762", "n185977764"] + }, + "w134150801": { + "id": "w134150801", + "tags": { + "highway": "secondary", + "name": "South Main Street", + "old_ref": "US 131", + "ref": "M 86" + }, + "nodes": ["n185977764", "n185964982"] + }, + "w208643146": { + "id": "w208643146", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2189153277", "n2189153281", "n2189153278", "n2189153279", "n2189153280", "n2189153281"] + }, + "w17966061": { + "id": "w17966061", + "tags": { + "highway": "residential", + "name": "John Glenn Court" + }, + "nodes": ["n185973866", "n185973867"] + }, + "w134150772": { + "id": "w134150772", + "tags": { + "highway": "residential", + "name": "5th Avenue" + }, + "nodes": ["n185988034", "n185959079", "n185988036", "n185978967"] + }, + "w134150836": { + "id": "w134150836", + "tags": { + "highway": "secondary", + "name": "East Michigan Avenue", + "name_1": "State Highway 60", + "ref": "M 60" + }, + "nodes": ["n185980388", "n1819858524", "n185980389", "n185980391", "n185980393", "n185964982"] + }, + "w17967734": { + "id": "w17967734", + "tags": { + "highway": "residential", + "name": "Water Street" + }, + "nodes": ["n185988896", "n185980391", "n1819858529"] + }, + "w17965305": { + "id": "w17965305", + "tags": { + "highway": "residential", + "name": "River Drive" + }, + "nodes": [ + "n185966295", + "n185966296", + "n185966298", + "n185966300", + "n185966301", + "n185966304", + "n185966308", + "n185966315", + "n185966319", + "n185966321", + "n185966323", + "n185966327", + "n185966331", + "n185966336", + "n185966338", + "n185963392", + "n185966340", + "n185966342" + ] + }, + "w134150826": { + "id": "w134150826", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "5th Avenue" + }, + "nodes": ["n185988032", "n185988034"] + }, + "w170848330": { + "id": "w170848330", + "tags": { + "name": "Portage River", + "waterway": "river" + }, + "nodes": [ + "n1819849190", + "n1819848907", + "n1819849168", + "n1819849175", + "n1819848911", + "n1819849173", + "n1819848882", + "n1819848861", + "n1819848923", + "n1819848908", + "n1819849178", + "n1819849091", + "n1819848936", + "n1819849073", + "n1819849188", + "n2168544738", + "n1819848883", + "n1819848944", + "n1819848940", + "n1819849143", + "n1819849037", + "n1819849153", + "n1819848853", + "n1819849009", + "n1819849181", + "n1819848874", + "n1819849061", + "n1819848950", + "n1819848957", + "n1819849130", + "n1819848912", + "n1819849043", + "n1819849177", + "n1819849090", + "n1819849116", + "n1819848951", + "n1819848981", + "n1819848989", + "n1819849018", + "n1819848963", + "n1819848949", + "n1819849109", + "n1819849087", + "n1819848925", + "n1819848852", + "n1819848998", + "n1819849057" + ] + }, + "r270264": { + "id": "r270264", + "tags": { + "network": "US:MI", + "ref": "86", + "route": "road", + "state_id": "MI", + "type": "route", + "url": "http://en.wikipedia.org/wiki/M-86_%28Michigan_highway%29" + }, + "members": [ + { + "id": "w17737723", + "type": "way", + "role": "" + }, + { + "id": "w17735949", + "type": "way", + "role": "" + }, + { + "id": "w17740404", + "type": "way", + "role": "" + }, + { + "id": "w17966273", + "type": "way", + "role": "" + }, + { + "id": "w17964745", + "type": "way", + "role": "" + }, + { + "id": "w151538068", + "type": "way", + "role": "" + }, + { + "id": "w151538067", + "type": "way", + "role": "" + }, + { + "id": "w17964960", + "type": "way", + "role": "" + }, + { + "id": "w17966099", + "type": "way", + "role": "" + }, + { + "id": "w17968009", + "type": "way", + "role": "" + }, + { + "id": "w41259499", + "type": "way", + "role": "" + }, + { + "id": "w151540401", + "type": "way", + "role": "" + }, + { + "id": "w151540418", + "type": "way", + "role": "" + }, + { + "id": "w17967997", + "type": "way", + "role": "" + }, + { + "id": "w17966029", + "type": "way", + "role": "" + }, + { + "id": "w17964801", + "type": "way", + "role": "" + }, + { + "id": "w41259496", + "type": "way", + "role": "" + }, + { + "id": "w151540399", + "type": "way", + "role": "" + }, + { + "id": "w17968004", + "type": "way", + "role": "" + }, + { + "id": "w17966462", + "type": "way", + "role": "" + }, + { + "id": "w134150830", + "type": "way", + "role": "" + }, + { + "id": "w134150801", + "type": "way", + "role": "" + }, + { + "id": "w17732295", + "type": "way", + "role": "" + } + ] + }, + "n185980093": { + "id": "n185980093", + "loc": [-85.6271414, 41.9407274] + }, + "n185964330": { + "id": "n185964330", + "loc": [-85.6235688, 41.9399111] + }, + "n185964328": { + "id": "n185964328", + "loc": [-85.6235609, 41.9391301] + }, + "n185958034": { + "id": "n185958034", + "loc": [-85.627102, 41.939125] + }, + "n185964331": { + "id": "n185964331", + "loc": [-85.623571, 41.940124] + }, + "n185964329": { + "id": "n185964329", + "loc": [-85.623562, 41.9392411] + }, + "n185972756": { + "id": "n185972756", + "loc": [-85.623802, 41.939102] + }, + "n185972757": { + "id": "n185972757", + "loc": [-85.623584, 41.93913] + }, + "n185975325": { + "id": "n185975325", + "loc": [-85.624835, 41.939318] + }, + "n185975326": { + "id": "n185975326", + "loc": [-85.624811, 41.939435] + }, + "n185975327": { + "id": "n185975327", + "loc": [-85.624635, 41.939703] + }, + "n185975328": { + "id": "n185975328", + "loc": [-85.624366, 41.940055] + }, + "n185975330": { + "id": "n185975330", + "loc": [-85.624287, 41.940113] + }, + "n185975332": { + "id": "n185975332", + "loc": [-85.624215, 41.940134] + }, + "n185980088": { + "id": "n185980088", + "loc": [-85.627127, 41.940086] + }, + "n185988943": { + "id": "n185988943", + "loc": [-85.622643, 41.940128] + }, + "n185988961": { + "id": "n185988961", + "loc": [-85.627263, 41.940082] + }, + "n185990192": { + "id": "n185990192", + "loc": [-85.622933, 41.939224] + }, + "n185990194": { + "id": "n185990194", + "loc": [-85.621976, 41.939203] + }, + "n185991378": { + "id": "n185991378", + "loc": [-85.622643, 41.940635] + }, + "n1475283999": { + "id": "n1475283999", + "loc": [-85.6271165, 41.9408429] + }, + "n185980090": { + "id": "n185980090", + "loc": [-85.6271315, 41.9402001] + }, + "n185958036": { + "id": "n185958036", + "loc": [-85.6248366, 41.9391615] + }, + "n1819800188": { + "id": "n1819800188", + "loc": [-85.6246947, 41.9401644] + }, + "n1819800199": { + "id": "n1819800199", + "loc": [-85.6233686, 41.9430896] + }, + "n1819800204": { + "id": "n1819800204", + "loc": [-85.6223236, 41.9408587] + }, + "n1819800213": { + "id": "n1819800213", + "loc": [-85.6247526, 41.9414138] + }, + "n1819800216": { + "id": "n1819800216", + "loc": [-85.6230961, 41.9407151] + }, + "n1819800218": { + "id": "n1819800218", + "loc": [-85.621991, 41.9429336] + }, + "n1819800221": { + "id": "n1819800221", + "loc": [-85.6246088, 41.9424708] + }, + "n1819800227": { + "id": "n1819800227", + "loc": [-85.6241368, 41.9403081] + }, + "n1819800230": { + "id": "n1819800230", + "loc": [-85.6226776, 41.9431012] + }, + "n1819800231": { + "id": "n1819800231", + "loc": [-85.6243728, 41.9401644] + }, + "n1819800232": { + "id": "n1819800232", + "loc": [-85.6249629, 41.9408907] + }, + "n1819800248": { + "id": "n1819800248", + "loc": [-85.6238685, 41.9405555] + }, + "n1819800266": { + "id": "n1819800266", + "loc": [-85.6246882, 41.9418367] + }, + "n1819800271": { + "id": "n1819800271", + "loc": [-85.62492, 41.9413695] + }, + "n1819800294": { + "id": "n1819800294", + "loc": [-85.6243556, 41.9427465] + }, + "n1819800304": { + "id": "n1819800304", + "loc": [-85.6251453, 41.94117] + }, + "n1819800325": { + "id": "n1819800325", + "loc": [-85.6248234, 41.9405714] + }, + "n1819800362": { + "id": "n1819800362", + "loc": [-85.6239544, 41.9429416] + }, + "n1819800368": { + "id": "n1819800368", + "loc": [-85.6243406, 41.9402283] + }, + "n1819800375": { + "id": "n1819800375", + "loc": [-85.6226562, 41.940755] + }, + "n1819800377": { + "id": "n1819800377", + "loc": [-85.6232033, 41.9406512] + }, + "n185945133": { + "id": "n185945133", + "loc": [-85.623501, 41.933232] + }, + "n185945135": { + "id": "n185945135", + "loc": [-85.624776, 41.933205] + }, + "n185945395": { + "id": "n185945395", + "loc": [-85.624741, 41.93019] + }, + "n185952239": { + "id": "n185952239", + "loc": [-85.615166, 41.9382] + }, + "n185954490": { + "id": "n185954490", + "loc": [-85.624721, 41.929278] + }, + "n185957831": { + "id": "n185957831", + "loc": [-85.625041, 41.938662] + }, + "n185958030": { + "id": "n185958030", + "loc": [-85.629033, 41.93913] + }, + "n185958032": { + "id": "n185958032", + "loc": [-85.628429, 41.939143] + }, + "n185958498": { + "id": "n185958498", + "loc": [-85.621605, 41.940143] + }, + "n185961186": { + "id": "n185961186", + "loc": [-85.624792, 41.935214] + }, + "n185963099": { + "id": "n185963099", + "loc": [-85.6204461, 41.9401485] + }, + "n185963698": { + "id": "n185963698", + "loc": [-85.6297342, 41.9400783] + }, + "n185964320": { + "id": "n185964320", + "loc": [-85.623511, 41.934216] + }, + "n185964322": { + "id": "n185964322", + "loc": [-85.6235312, 41.9362084] + }, + "n185964324": { + "id": "n185964324", + "loc": [-85.6235488, 41.9371726] + }, + "n185964326": { + "id": "n185964326", + "loc": [-85.6235512, 41.9381718] + }, + "n185967077": { + "id": "n185967077", + "loc": [-85.617359, 41.940161] + }, + "n185967634": { + "id": "n185967634", + "loc": [-85.6248039, 41.9362012] + }, + "n185970833": { + "id": "n185970833", + "loc": [-85.6248019, 41.9381684] + }, + "n185972752": { + "id": "n185972752", + "loc": [-85.624582, 41.938848] + }, + "n185972754": { + "id": "n185972754", + "loc": [-85.6242, 41.939008] + }, + "n185973251": { + "id": "n185973251", + "loc": [-85.602727, 41.936012] + }, + "n185974509": { + "id": "n185974509", + "loc": [-85.62478, 41.93217] + }, + "n185975315": { + "id": "n185975315", + "loc": [-85.624703, 41.925597] + }, + "n185975316": { + "id": "n185975316", + "loc": [-85.624716, 41.927359] + }, + "n185975317": { + "id": "n185975317", + "loc": [-85.62475, 41.93119] + }, + "n185975318": { + "id": "n185975318", + "loc": [-85.624782, 41.934218] + }, + "n185975320": { + "id": "n185975320", + "loc": [-85.6247949, 41.9371708] + }, + "n185977754": { + "id": "n185977754", + "loc": [-85.6276, 41.937412] + }, + "n185980075": { + "id": "n185980075", + "loc": [-85.627451, 41.937549] + }, + "n185980077": { + "id": "n185980077", + "loc": [-85.627375, 41.937618] + }, + "n185980078": { + "id": "n185980078", + "loc": [-85.627278, 41.937728] + }, + "n185980079": { + "id": "n185980079", + "loc": [-85.627199, 41.937842] + }, + "n185980081": { + "id": "n185980081", + "loc": [-85.627141, 41.937981] + }, + "n185980083": { + "id": "n185980083", + "loc": [-85.627109, 41.938153] + }, + "n185980085": { + "id": "n185980085", + "loc": [-85.627101, 41.938699] + }, + "n185981173": { + "id": "n185981173", + "loc": [-85.61433, 41.940167] + }, + "n185987021": { + "id": "n185987021", + "loc": [-85.628311, 41.942261] + }, + "n185988963": { + "id": "n185988963", + "loc": [-85.628439, 41.940086] + }, + "n185990195": { + "id": "n185990195", + "loc": [-85.621225, 41.939143] + }, + "n185990196": { + "id": "n185990196", + "loc": [-85.620576, 41.939033] + }, + "n185990198": { + "id": "n185990198", + "loc": [-85.619081, 41.938804] + }, + "n185990200": { + "id": "n185990200", + "loc": [-85.617593, 41.938552] + }, + "n185990202": { + "id": "n185990202", + "loc": [-85.617372, 41.938535] + }, + "n185990204": { + "id": "n185990204", + "loc": [-85.616087, 41.93832] + }, + "n185990206": { + "id": "n185990206", + "loc": [-85.615754, 41.938289] + }, + "n185990209": { + "id": "n185990209", + "loc": [-85.615438, 41.938251] + }, + "n185990211": { + "id": "n185990211", + "loc": [-85.613469, 41.937867] + }, + "n185990212": { + "id": "n185990212", + "loc": [-85.610172, 41.937298] + }, + "n185990213": { + "id": "n185990213", + "loc": [-85.605537, 41.936497] + }, + "n185990214": { + "id": "n185990214", + "loc": [-85.604014, 41.936234] + }, + "n1819800180": { + "id": "n1819800180", + "loc": [-85.588775, 41.9455032] + }, + "n1819800181": { + "id": "n1819800181", + "loc": [-85.6074212, 41.9408827] + }, + "n1819800182": { + "id": "n1819800182", + "loc": [-85.6131397, 41.9427022] + }, + "n1819800183": { + "id": "n1819800183", + "loc": [-85.6171523, 41.9416807] + }, + "n1819800184": { + "id": "n1819800184", + "loc": [-85.602465, 41.9397415] + }, + "n1819800185": { + "id": "n1819800185", + "loc": [-85.6109296, 41.9410583] + }, + "n1819800186": { + "id": "n1819800186", + "loc": [-85.6165729, 41.9418004] + }, + "n1819800189": { + "id": "n1819800189", + "loc": [-85.5866293, 41.9458224] + }, + "n1819800191": { + "id": "n1819800191", + "loc": [-85.5853311, 41.9466603] + }, + "n1819800201": { + "id": "n1819800201", + "loc": [-85.6101142, 41.9433406] + }, + "n1819800202": { + "id": "n1819800202", + "loc": [-85.600963, 41.9428618] + }, + "n1819800206": { + "id": "n1819800206", + "loc": [-85.6154357, 41.9427501] + }, + "n1819800207": { + "id": "n1819800207", + "loc": [-85.6040309, 41.9414094] + }, + "n1819800209": { + "id": "n1819800209", + "loc": [-85.6113694, 41.943189] + }, + "n1819800211": { + "id": "n1819800211", + "loc": [-85.618032, 41.9416408] + }, + "n1819800214": { + "id": "n1819800214", + "loc": [-85.5959419, 41.9402602] + }, + "n1819800219": { + "id": "n1819800219", + "loc": [-85.5972117, 41.9420043] + }, + "n1819800223": { + "id": "n1819800223", + "loc": [-85.6117171, 41.9430019] + }, + "n1819800224": { + "id": "n1819800224", + "loc": [-85.5977873, 41.9395579] + }, + "n1819800226": { + "id": "n1819800226", + "loc": [-85.5917362, 41.9432209] + }, + "n1819800228": { + "id": "n1819800228", + "loc": [-85.6055759, 41.9419122] + }, + "n1819800229": { + "id": "n1819800229", + "loc": [-85.6203395, 41.9425595] + }, + "n1819800233": { + "id": "n1819800233", + "loc": [-85.6107579, 41.9433007] + }, + "n1819800234": { + "id": "n1819800234", + "loc": [-85.6039773, 41.9412498] + }, + "n1819800235": { + "id": "n1819800235", + "loc": [-85.6000977, 41.9412861] + }, + "n1819800236": { + "id": "n1819800236", + "loc": [-85.6026689, 41.9407231] + }, + "n1819800237": { + "id": "n1819800237", + "loc": [-85.615161, 41.9428662] + }, + "n1819800238": { + "id": "n1819800238", + "loc": [-85.5878953, 41.9454314] + }, + "n1819800239": { + "id": "n1819800239", + "loc": [-85.6035267, 41.941569] + }, + "n1819800240": { + "id": "n1819800240", + "loc": [-85.5929738, 41.9450208] + }, + "n1819800241": { + "id": "n1819800241", + "loc": [-85.6186329, 41.9416488] + }, + "n1819800242": { + "id": "n1819800242", + "loc": [-85.5881136, 41.9483963] + }, + "n1819800243": { + "id": "n1819800243", + "loc": [-85.5909208, 41.9466922] + }, + "n1819800244": { + "id": "n1819800244", + "loc": [-85.5997721, 41.9394941] + }, + "n1819800245": { + "id": "n1819800245", + "loc": [-85.6202064, 41.9425712] + }, + "n1819800246": { + "id": "n1819800246", + "loc": [-85.591071, 41.9448808] + }, + "n1819800247": { + "id": "n1819800247", + "loc": [-85.5866078, 41.9490622] + }, + "n1819800250": { + "id": "n1819800250", + "loc": [-85.602383, 41.9420841] + }, + "n1819800251": { + "id": "n1819800251", + "loc": [-85.5957418, 41.9426906] + }, + "n1819800255": { + "id": "n1819800255", + "loc": [-85.6157039, 41.9416727] + }, + "n1819800256": { + "id": "n1819800256", + "loc": [-85.6080328, 41.9410982] + }, + "n1819800258": { + "id": "n1819800258", + "loc": [-85.6192551, 41.9414892] + }, + "n1819800260": { + "id": "n1819800260", + "loc": [-85.6104253, 41.94117] + }, + "n1819800261": { + "id": "n1819800261", + "loc": [-85.6204503, 41.9425709] + }, + "n1819800263": { + "id": "n1819800263", + "loc": [-85.5872194, 41.9455431] + }, + "n1819800264": { + "id": "n1819800264", + "loc": [-85.616176, 41.9418244] + }, + "n1819800268": { + "id": "n1819800268", + "loc": [-85.6120883, 41.9426703] + }, + "n1819800269": { + "id": "n1819800269", + "loc": [-85.5894547, 41.9474946] + }, + "n1819800272": { + "id": "n1819800272", + "loc": [-85.6209181, 41.9425027] + }, + "n1819800274": { + "id": "n1819800274", + "loc": [-85.6122814, 41.9412817] + }, + "n1819800276": { + "id": "n1819800276", + "loc": [-85.5895153, 41.9452798] + }, + "n1819800277": { + "id": "n1819800277", + "loc": [-85.5884317, 41.9455272] + }, + "n1819800279": { + "id": "n1819800279", + "loc": [-85.5884103, 41.9480966] + }, + "n1819800287": { + "id": "n1819800287", + "loc": [-85.5904917, 41.9453915] + }, + "n1819800288": { + "id": "n1819800288", + "loc": [-85.6212292, 41.9412977] + }, + "n1819800289": { + "id": "n1819800289", + "loc": [-85.5954377, 41.9406832] + }, + "n1819800290": { + "id": "n1819800290", + "loc": [-85.593721, 41.9420957] + }, + "n1819800291": { + "id": "n1819800291", + "loc": [-85.6162832, 41.9427102] + }, + "n1819800292": { + "id": "n1819800292", + "loc": [-85.605018, 41.9401804] + }, + "n1819800293": { + "id": "n1819800293", + "loc": [-85.6086443, 41.941146] + }, + "n1819800296": { + "id": "n1819800296", + "loc": [-85.6204675, 41.9413775] + }, + "n1819800297": { + "id": "n1819800297", + "loc": [-85.612496, 41.9424947] + }, + "n1819800299": { + "id": "n1819800299", + "loc": [-85.6065629, 41.9423431] + }, + "n1819800301": { + "id": "n1819800301", + "loc": [-85.6036125, 41.9398452] + }, + "n1819800303": { + "id": "n1819800303", + "loc": [-85.6114767, 41.94117] + }, + "n1819800306": { + "id": "n1819800306", + "loc": [-85.592616, 41.9428139] + }, + "n1819800308": { + "id": "n1819800308", + "loc": [-85.6023041, 41.9419521] + }, + "n1819800310": { + "id": "n1819800310", + "loc": [-85.6218944, 41.9411061] + }, + "n1819800311": { + "id": "n1819800311", + "loc": [-85.6097816, 41.941162] + }, + "n1819800312": { + "id": "n1819800312", + "loc": [-85.5922549, 41.9457869] + }, + "n1819800313": { + "id": "n1819800313", + "loc": [-85.5986027, 41.9417206] + }, + "n1819800314": { + "id": "n1819800314", + "loc": [-85.5918687, 41.946138] + }, + "n1819800315": { + "id": "n1819800315", + "loc": [-85.5872875, 41.948883] + }, + "n1819800316": { + "id": "n1819800316", + "loc": [-85.594272, 41.9436642] + }, + "n1819800317": { + "id": "n1819800317", + "loc": [-85.6176351, 41.941577] + }, + "n1819800318": { + "id": "n1819800318", + "loc": [-85.6137834, 41.9430853] + }, + "n1819800319": { + "id": "n1819800319", + "loc": [-85.6195383, 41.942622], + "tags": { + "leisure": "slipway" + } + }, + "n1819800320": { + "id": "n1819800320", + "loc": [-85.5971006, 41.9398053] + }, + "n1819800321": { + "id": "n1819800321", + "loc": [-85.601714, 41.9406752] + }, + "n1819800322": { + "id": "n1819800322", + "loc": [-85.5908028, 41.9453117] + }, + "n1819800323": { + "id": "n1819800323", + "loc": [-85.6062732, 41.9404597] + }, + "n1819800324": { + "id": "n1819800324", + "loc": [-85.62124, 41.9425905] + }, + "n1819800327": { + "id": "n1819800327", + "loc": [-85.6008664, 41.942766] + }, + "n1819800328": { + "id": "n1819800328", + "loc": [-85.6179355, 41.9428538] + }, + "n1819800330": { + "id": "n1819800330", + "loc": [-85.6045566, 41.9415131] + }, + "n1819800331": { + "id": "n1819800331", + "loc": [-85.5944935, 41.9414653] + }, + "n1819800333": { + "id": "n1819800333", + "loc": [-85.6088911, 41.943181] + }, + "n1819800334": { + "id": "n1819800334", + "loc": [-85.5946367, 41.943369] + }, + "n1819800336": { + "id": "n1819800336", + "loc": [-85.6150494, 41.9429656] + }, + "n1819800343": { + "id": "n1819800343", + "loc": [-85.6096099, 41.9433326] + }, + "n1819800345": { + "id": "n1819800345", + "loc": [-85.5915216, 41.9435401] + }, + "n1819800347": { + "id": "n1819800347", + "loc": [-85.607786, 41.9428698] + }, + "n1819800349": { + "id": "n1819800349", + "loc": [-85.6187616, 41.9426623] + }, + "n1819800350": { + "id": "n1819800350", + "loc": [-85.6012527, 41.9426064] + }, + "n1819800352": { + "id": "n1819800352", + "loc": [-85.6214867, 41.9428379] + }, + "n1819800354": { + "id": "n1819800354", + "loc": [-85.61338, 41.94293] + }, + "n1819800355": { + "id": "n1819800355", + "loc": [-85.5923156, 41.9428139] + }, + "n1819800357": { + "id": "n1819800357", + "loc": [-85.5901591, 41.9453197] + }, + "n1819800359": { + "id": "n1819800359", + "loc": [-85.6033979, 41.9408827] + }, + "n1819800360": { + "id": "n1819800360", + "loc": [-85.6186543, 41.9414653] + }, + "n1819800363": { + "id": "n1819800363", + "loc": [-85.6128607, 41.9425665] + }, + "n1819800365": { + "id": "n1819800365", + "loc": [-85.614234, 41.9412977] + }, + "n1819800367": { + "id": "n1819800367", + "loc": [-85.6089662, 41.9410902] + }, + "n1819800369": { + "id": "n1819800369", + "loc": [-85.6197379, 41.9413695] + }, + "n1819800370": { + "id": "n1819800370", + "loc": [-85.6037348, 41.941733] + }, + "n1819800371": { + "id": "n1819800371", + "loc": [-85.5993467, 41.9415654] + }, + "n1819800372": { + "id": "n1819800372", + "loc": [-85.598077, 41.94196] + }, + "n1819800373": { + "id": "n1819800373", + "loc": [-85.5984203, 41.9394781] + }, + "n1819800374": { + "id": "n1819800374", + "loc": [-85.6013315, 41.9427066] + }, + "n1819800376": { + "id": "n1819800376", + "loc": [-85.5934673, 41.944167] + }, + "n1819800378": { + "id": "n1819800378", + "loc": [-85.6011062, 41.9407753] + }, + "n1819800379": { + "id": "n1819800379", + "loc": [-85.6150602, 41.9415131] + }, + "n1819800380": { + "id": "n1819800380", + "loc": [-85.6132148, 41.9412338] + }, + "n1819800381": { + "id": "n1819800381", + "loc": [-85.5889038, 41.9453835] + }, + "n2139966621": { + "id": "n2139966621", + "loc": [-85.6198719, 41.9426184] + }, + "n2139966622": { + "id": "n2139966622", + "loc": [-85.6197551, 41.9426123] + }, + "n2139966623": { + "id": "n2139966623", + "loc": [-85.6196467, 41.9426279] + }, + "n2139966624": { + "id": "n2139966624", + "loc": [-85.6191519, 41.9426221] + }, + "n2139966625": { + "id": "n2139966625", + "loc": [-85.6194153, 41.9426256] + }, + "n2139966626": { + "id": "n2139966626", + "loc": [-85.6200497, 41.9425812] + }, + "n2139966629": { + "id": "n2139966629", + "loc": [-85.6192123, 41.9426229] + }, + "n2203933101": { + "id": "n2203933101", + "loc": [-85.6030009, 41.9360592] + }, + "w17967539": { + "id": "w17967539", + "tags": { + "highway": "residential", + "name": "1st Avenue" + }, + "nodes": ["n185965099", "n185963395", "n185987021"] + }, + "w17967751": { + "id": "w17967751", + "tags": { + "highway": "residential", + "name": "River Street" + }, + "nodes": ["n185980088", "n185988961", "n185988963", "n185963698"] + }, + "w17965088": { + "id": "w17965088", + "tags": { + "highway": "residential", + "name": "9th Street" + }, + "nodes": [ + "n185945133", + "n185964320", + "n185964322", + "n185964324", + "n185964326", + "n185964328", + "n185964329", + "n185964330", + "n185964331" + ] + }, + "w17964467": { + "id": "w17964467", + "tags": { + "highway": "residential", + "name": "Mechanic Street" + }, + "nodes": ["n185958030", "n185958032", "n185958034", "n185958036"] + }, + "w134150842": { + "id": "w134150842", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "6th Street" + }, + "nodes": ["n185980090", "n185980093"] + }, + "w17966740": { + "id": "w17966740", + "tags": { + "highway": "residential", + "name": "6th Street" + }, + "nodes": [ + "n185977754", + "n185980075", + "n185980077", + "n185980078", + "n185980079", + "n185980081", + "n185980083", + "n185980085", + "n185958034", + "n185980088", + "n185980090" + ] + }, + "w170844765": { + "id": "w170844765", + "tags": { + "waterway": "dam" + }, + "nodes": ["n1819800304", "n1819800232", "n1819800325", "n1819800188"] + }, + "w17967745": { + "id": "w17967745", + "tags": { + "highway": "residential", + "name": "River Street" + }, + "nodes": ["n185981173", "n185967077", "n185963099", "n185958498", "n185988943", "n185964331", "n185975332"] + }, + "w17968113": { + "id": "w17968113", + "tags": { + "highway": "residential", + "name": "Green Street" + }, + "nodes": ["n185988943", "n185991378"] + }, + "w134150833": { + "id": "w134150833", + "tags": { + "highway": "residential", + "name": "6th Street" + }, + "nodes": ["n185980093", "n1475283999", "n185963392"] + }, + "w17967935": { + "id": "w17967935", + "tags": { + "name": "Michigan Central Railroad", + "railway": "abandoned" + }, + "nodes": [ + "n185972757", + "n185990192", + "n185990194", + "n185990195", + "n185990196", + "n185990198", + "n185990200", + "n185990202", + "n185990204", + "n185990206", + "n185990209", + "n185952239", + "n185990211", + "n185990212", + "n185990213", + "n185990214", + "n2203933101", + "n185973251" + ] + }, + "w17965993": { + "id": "w17965993", + "tags": { + "name": "Conrail Railroad", + "railway": "abandoned" + }, + "nodes": ["n185957831", "n185972752", "n185972754", "n185972756", "n185972757"] + }, + "w17966211": { + "id": "w17966211", + "tags": { + "highway": "residential", + "name": "8th Street" + }, + "nodes": [ + "n185975315", + "n185975316", + "n185954490", + "n185945395", + "n185975317", + "n185974509", + "n185945135", + "n185975318", + "n185961186", + "n185967634", + "n185975320", + "n185970833", + "n185958036", + "n185975325", + "n185975326", + "n185975327", + "n185975328", + "n185975330", + "n185975332" + ] + }, + "w170844766": { + "id": "w170844766", + "tags": { + "waterway": "riverbank" + }, + "nodes": [ + "n1819800229", + "n1819800245", + "n2139966626", + "n2139966621", + "n2139966622", + "n2139966623", + "n1819800319", + "n2139966625", + "n2139966629", + "n2139966624", + "n1819800349", + "n1819800328", + "n1819800291", + "n1819800206", + "n1819800237", + "n1819800336", + "n1819800318", + "n1819800354", + "n1819800182", + "n1819800363", + "n1819800297", + "n1819800268", + "n1819800223", + "n1819800209", + "n1819800233", + "n1819800201", + "n1819800343", + "n1819800333", + "n1819800347", + "n1819800299", + "n1819800228", + "n1819800330", + "n1819800370", + "n1819800250", + "n1819800374", + "n1819800202", + "n1819800327", + "n1819800350", + "n1819800308", + "n1819800239", + "n1819800207", + "n1819800234", + "n1819800359", + "n1819800236", + "n1819800321", + "n1819800378", + "n1819800235", + "n1819800371", + "n1819800313", + "n1819800372", + "n1819800219", + "n1819800251", + "n1819800334", + "n1819800316", + "n1819800376", + "n1819800240", + "n1819800312", + "n1819800314", + "n1819800243", + "n1819800269", + "n1819800279", + "n1819800242", + "n1819800315", + "n1819800247", + "n1819800191", + "n1819800189", + "n1819800263", + "n1819800238", + "n1819800277", + "n1819800180", + "n1819800381", + "n1819800276", + "n1819800357", + "n1819800287", + "n1819800322", + "n1819800246", + "n1819800345", + "n1819800226", + "n1819800355", + "n1819800306", + "n1819800290", + "n1819800331", + "n1819800289", + "n1819800214", + "n1819800320", + "n1819800224", + "n1819800373", + "n1819800244", + "n1819800184", + "n1819800301", + "n1819800292", + "n1819800323", + "n1819800181", + "n1819800256", + "n1819800293", + "n1819800367", + "n1819800311", + "n1819800260", + "n1819800185", + "n1819800303", + "n1819800274", + "n1819800380", + "n1819800365", + "n1819800379", + "n1819800255", + "n1819800264", + "n1819800186", + "n1819800183", + "n1819800317", + "n1819800211", + "n1819800241", + "n1819800360", + "n1819800258", + "n1819800369", + "n1819800296", + "n1819800288", + "n1819800310", + "n1819800204", + "n1819800375", + "n1819800216", + "n1819800377", + "n1819800248", + "n1819800227", + "n1819800368", + "n1819800231", + "n1819800188", + "n1819800325", + "n1819800232", + "n1819800304", + "n1819800271", + "n1819800213", + "n1819800266", + "n1819800221", + "n1819800294", + "n1819800362", + "n1819800199", + "n1819800230", + "n1819800218", + "n1819800352", + "n1819800324", + "n1819800272", + "n1819800261", + "n1819800229" + ] + }, + "n1875654132": { + "id": "n1875654132", + "loc": [-85.6297439, 41.939808] + }, + "n1475293263": { + "id": "n1475293263", + "loc": [-85.6296235, 41.939922] + }, + "n185947850": { + "id": "n185947850", + "loc": [-85.631594, 41.942613] + }, + "n185952745": { + "id": "n185952745", + "loc": [-85.630986, 41.941786] + }, + "n185972907": { + "id": "n185972907", + "loc": [-85.631797, 41.9420055] + }, + "n185972911": { + "id": "n185972911", + "loc": [-85.6309723, 41.9411623] + }, + "n185972915": { + "id": "n185972915", + "loc": [-85.6295971, 41.939267] + }, + "n1475293223": { + "id": "n1475293223", + "loc": [-85.6313962, 41.9416114], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293231": { + "id": "n1475293231", + "loc": [-85.6318779, 41.9415447] + }, + "n1475293241": { + "id": "n1475293241", + "loc": [-85.6304613, 41.9405499] + }, + "n1475293246": { + "id": "n1475293246", + "loc": [-85.6297512, 41.9395393], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293251": { + "id": "n1475293251", + "loc": [-85.6316633, 41.9415128] + }, + "n2139982404": { + "id": "n2139982404", + "loc": [-85.6313283, 41.9413748] + }, + "n2139982407": { + "id": "n2139982407", + "loc": [-85.6325545, 41.9417787] + }, + "n2139982408": { + "id": "n2139982408", + "loc": [-85.6324499, 41.9417693] + }, + "n2139982409": { + "id": "n2139982409", + "loc": [-85.6324753, 41.9416444] + }, + "n2139982410": { + "id": "n2139982410", + "loc": [-85.6325814, 41.9416538] + }, + "n2139982411": { + "id": "n2139982411", + "loc": [-85.6319572, 41.9413515] + }, + "n2139982412": { + "id": "n2139982412", + "loc": [-85.6322925, 41.941139] + }, + "n2139982413": { + "id": "n2139982413", + "loc": [-85.6323153, 41.941153] + }, + "n2139982414": { + "id": "n2139982414", + "loc": [-85.6323019, 41.9412617] + }, + "n2139982415": { + "id": "n2139982415", + "loc": [-85.6323703, 41.9412667] + }, + "n2139982416": { + "id": "n2139982416", + "loc": [-85.6323555, 41.941538] + }, + "n2139982417": { + "id": "n2139982417", + "loc": [-85.6321343, 41.9416777] + }, + "n2139982418": { + "id": "n2139982418", + "loc": [-85.6319425, 41.9416866] + }, + "n2139982419": { + "id": "n2139982419", + "loc": [-85.6320303, 41.9416941] + }, + "n2139982420": { + "id": "n2139982420", + "loc": [-85.6321665, 41.9415554] + }, + "n2139982421": { + "id": "n2139982421", + "loc": [-85.632412, 41.9414164] + }, + "n2139982422": { + "id": "n2139982422", + "loc": [-85.6324801, 41.9413421] + }, + "n2139982423": { + "id": "n2139982423", + "loc": [-85.6325023, 41.9412585] + }, + "n2139982424": { + "id": "n2139982424", + "loc": [-85.6324532, 41.9411607] + }, + "n2139982425": { + "id": "n2139982425", + "loc": [-85.6323502, 41.941103] + }, + "n2139982426": { + "id": "n2139982426", + "loc": [-85.6322362, 41.9411183] + }, + "n2139982427": { + "id": "n2139982427", + "loc": [-85.6318941, 41.9413551] + }, + "n2139982428": { + "id": "n2139982428", + "loc": [-85.6318592, 41.9414105] + }, + "n2139982429": { + "id": "n2139982429", + "loc": [-85.6320111, 41.9415866] + }, + "n2139982430": { + "id": "n2139982430", + "loc": [-85.632446, 41.9413792] + }, + "n2139982431": { + "id": "n2139982431", + "loc": [-85.6325112, 41.941416] + }, + "n2139982432": { + "id": "n2139982432", + "loc": [-85.6325449, 41.9416345] + }, + "n2139982433": { + "id": "n2139982433", + "loc": [-85.6326122, 41.94164] + }, + "n2139982434": { + "id": "n2139982434", + "loc": [-85.6325954, 41.9421966] + }, + "n2139982435": { + "id": "n2139982435", + "loc": [-85.6325655, 41.9422411] + }, + "n2139982436": { + "id": "n2139982436", + "loc": [-85.632515, 41.9422564] + }, + "n2139982437": { + "id": "n2139982437", + "loc": [-85.6324495, 41.94223] + }, + "n2139982438": { + "id": "n2139982438", + "loc": [-85.6324009, 41.9421743] + }, + "n2139982439": { + "id": "n2139982439", + "loc": [-85.6323915, 41.9421145] + }, + "n2139982440": { + "id": "n2139982440", + "loc": [-85.6320287, 41.9418585] + }, + "n2139982441": { + "id": "n2139982441", + "loc": [-85.6318285, 41.9416387] + }, + "n1475293258": { + "id": "n1475293258", + "loc": [-85.6318289, 41.9415077] + }, + "n2168544754": { + "id": "n2168544754", + "loc": [-85.6312814, 41.9431198] + }, + "n2168544755": { + "id": "n2168544755", + "loc": [-85.6314212, 41.9430646] + }, + "n2168544756": { + "id": "n2168544756", + "loc": [-85.6313387, 41.942949] + }, + "n2168544757": { + "id": "n2168544757", + "loc": [-85.6311989, 41.9430041] + }, + "n2168544758": { + "id": "n2168544758", + "loc": [-85.6311024, 41.9429313] + }, + "n2168544759": { + "id": "n2168544759", + "loc": [-85.6310087, 41.9428087] + }, + "n2168544760": { + "id": "n2168544760", + "loc": [-85.6313831, 41.9426504] + }, + "n2168544761": { + "id": "n2168544761", + "loc": [-85.6314768, 41.9427729] + }, + "n2168544762": { + "id": "n2168544762", + "loc": [-85.6306376, 41.942809] + }, + "n2168544763": { + "id": "n2168544763", + "loc": [-85.6307378, 41.9429427] + }, + "n2168544764": { + "id": "n2168544764", + "loc": [-85.630841, 41.9428998] + }, + "n2168544765": { + "id": "n2168544765", + "loc": [-85.6307408, 41.9427662] + }, + "n2168544766": { + "id": "n2168544766", + "loc": [-85.6305404, 41.9426029] + }, + "n2168544767": { + "id": "n2168544767", + "loc": [-85.6304976, 41.9426194] + }, + "n2168544768": { + "id": "n2168544768", + "loc": [-85.6305673, 41.9427184] + }, + "n2168544769": { + "id": "n2168544769", + "loc": [-85.6306164, 41.9426984] + }, + "n2168544770": { + "id": "n2168544770", + "loc": [-85.6306418, 41.9427302] + }, + "n2168544771": { + "id": "n2168544771", + "loc": [-85.6306861, 41.9427137] + }, + "n2168544772": { + "id": "n2168544772", + "loc": [-85.6307146, 41.9427537] + }, + "n2168544773": { + "id": "n2168544773", + "loc": [-85.6308999, 41.9426807] + }, + "n2168544774": { + "id": "n2168544774", + "loc": [-85.6308429, 41.9426053] + }, + "n2168544775": { + "id": "n2168544775", + "loc": [-85.6308999, 41.9425806] + }, + "n2168544776": { + "id": "n2168544776", + "loc": [-85.6308318, 41.9424875] + }, + "n2168544777": { + "id": "n2168544777", + "loc": [-85.6307732, 41.9425087] + }, + "n2168544778": { + "id": "n2168544778", + "loc": [-85.6307178, 41.9424357] + }, + "n2168544779": { + "id": "n2168544779", + "loc": [-85.630485, 41.942524] + }, + "n2189099387": { + "id": "n2189099387", + "loc": [-85.631203, 41.9393371] + }, + "n2189099404": { + "id": "n2189099404", + "loc": [-85.6301963, 41.9391363] + }, + "n2189099405": { + "id": "n2189099405", + "loc": [-85.6304447, 41.9391352] + }, + "n2189099406": { + "id": "n2189099406", + "loc": [-85.6304463, 41.9393391] + }, + "n2189099407": { + "id": "n2189099407", + "loc": [-85.6308435, 41.9393373] + }, + "n2189099408": { + "id": "n2189099408", + "loc": [-85.6308418, 41.9391251] + }, + "n2189099409": { + "id": "n2189099409", + "loc": [-85.6310929, 41.939124] + }, + "n2189099410": { + "id": "n2189099410", + "loc": [-85.6310946, 41.9393376] + }, + "n2189112720": { + "id": "n2189112720", + "loc": [-85.6314677, 41.9412327] + }, + "n2189112721": { + "id": "n2189112721", + "loc": [-85.6313337, 41.9411397] + }, + "n2189112722": { + "id": "n2189112722", + "loc": [-85.6320521, 41.9405678] + }, + "n2189112723": { + "id": "n2189112723", + "loc": [-85.6321899, 41.9406633] + }, + "n2189112724": { + "id": "n2189112724", + "loc": [-85.6313229, 41.9408344] + }, + "n2189112725": { + "id": "n2189112725", + "loc": [-85.6311223, 41.9410018] + }, + "n2189112726": { + "id": "n2189112726", + "loc": [-85.6313205, 41.9411333] + }, + "n2189112727": { + "id": "n2189112727", + "loc": [-85.6315211, 41.9409659] + }, + "n2189112728": { + "id": "n2189112728", + "loc": [-85.6311035, 41.9402529] + }, + "n2189112729": { + "id": "n2189112729", + "loc": [-85.631226, 41.9402107] + }, + "n2189112730": { + "id": "n2189112730", + "loc": [-85.6315966, 41.9408051] + }, + "n2189112731": { + "id": "n2189112731", + "loc": [-85.6314741, 41.9408473] + }, + "n2189112732": { + "id": "n2189112732", + "loc": [-85.6318114, 41.940534] + }, + "n2189112733": { + "id": "n2189112733", + "loc": [-85.631588, 41.94061] + }, + "n2189112734": { + "id": "n2189112734", + "loc": [-85.6314379, 41.940366] + }, + "n2189112735": { + "id": "n2189112735", + "loc": [-85.6316613, 41.94029] + }, + "n2189112736": { + "id": "n2189112736", + "loc": [-85.6306214, 41.9400415] + }, + "n2189112737": { + "id": "n2189112737", + "loc": [-85.6304362, 41.9397728] + }, + "n2189112738": { + "id": "n2189112738", + "loc": [-85.6305899, 41.9397142] + }, + "n2189112739": { + "id": "n2189112739", + "loc": [-85.6307751, 41.9399828] + }, + "n2189112740": { + "id": "n2189112740", + "loc": [-85.6304695, 41.9401673] + }, + "n2189112741": { + "id": "n2189112741", + "loc": [-85.6301298, 41.9396855] + }, + "n2189112742": { + "id": "n2189112742", + "loc": [-85.6303016, 41.9396184] + }, + "n2189112743": { + "id": "n2189112743", + "loc": [-85.6306413, 41.9401003] + }, + "n2189112744": { + "id": "n2189112744", + "loc": [-85.6309656, 41.9406189] + }, + "n2189112745": { + "id": "n2189112745", + "loc": [-85.6308738, 41.940493] + }, + "n2189112746": { + "id": "n2189112746", + "loc": [-85.6309333, 41.940469] + }, + "n2189112747": { + "id": "n2189112747", + "loc": [-85.6307634, 41.9402358] + }, + "n2189112748": { + "id": "n2189112748", + "loc": [-85.6308798, 41.9401889] + }, + "n2189112749": { + "id": "n2189112749", + "loc": [-85.6311416, 41.940548] + }, + "n2189112750": { + "id": "n2189112750", + "loc": [-85.6309577, 41.9408708] + }, + "n2189112751": { + "id": "n2189112751", + "loc": [-85.630874, 41.9407777] + }, + "n2189112752": { + "id": "n2189112752", + "loc": [-85.6310622, 41.9406841] + }, + "n2189112753": { + "id": "n2189112753", + "loc": [-85.6311459, 41.9407772] + }, + "n2189112754": { + "id": "n2189112754", + "loc": [-85.6320308, 41.9405747] + }, + "n2189112755": { + "id": "n2189112755", + "loc": [-85.6317769, 41.9401857] + }, + "n2189112756": { + "id": "n2189112756", + "loc": [-85.6313462, 41.9401785] + }, + "n2189112757": { + "id": "n2189112757", + "loc": [-85.6313423, 41.9401199] + }, + "n2189112758": { + "id": "n2189112758", + "loc": [-85.6318308, 41.9401184] + }, + "n2189112759": { + "id": "n2189112759", + "loc": [-85.6321154, 41.9405433] + }, + "n2189112760": { + "id": "n2189112760", + "loc": [-85.6310307, 41.941683] + }, + "n2189112761": { + "id": "n2189112761", + "loc": [-85.6309808, 41.9416078] + }, + "n2189112762": { + "id": "n2189112762", + "loc": [-85.6312094, 41.9415156] + }, + "n2189112763": { + "id": "n2189112763", + "loc": [-85.6312636, 41.9415865] + }, + "n2189112764": { + "id": "n2189112764", + "loc": [-85.6309384, 41.94155] + }, + "n2189112765": { + "id": "n2189112765", + "loc": [-85.631156, 41.9414619] + }, + "n2189112766": { + "id": "n2189112766", + "loc": [-85.6311968, 41.94152] + }, + "n2189112767": { + "id": "n2189112767", + "loc": [-85.6308946, 41.9414851] + }, + "n2189112768": { + "id": "n2189112768", + "loc": [-85.6308237, 41.9413888] + }, + "n2189112769": { + "id": "n2189112769", + "loc": [-85.6309858, 41.9413228] + }, + "n2189112770": { + "id": "n2189112770", + "loc": [-85.6310567, 41.9414192] + }, + "n2189112771": { + "id": "n2189112771", + "loc": [-85.6307774, 41.9413276] + }, + "n2189112772": { + "id": "n2189112772", + "loc": [-85.6309068, 41.9412735] + }, + "n2189112773": { + "id": "n2189112773", + "loc": [-85.6309531, 41.9413347] + }, + "n2189112774": { + "id": "n2189112774", + "loc": [-85.6307975, 41.9412466] + }, + "n2189112775": { + "id": "n2189112775", + "loc": [-85.6307006, 41.9411699] + }, + "n2189112776": { + "id": "n2189112776", + "loc": [-85.6308289, 41.941113] + }, + "n2189112777": { + "id": "n2189112777", + "loc": [-85.6308997, 41.9412012] + }, + "n2189112778": { + "id": "n2189112778", + "loc": [-85.630765, 41.9412062] + }, + "n2189112779": { + "id": "n2189112779", + "loc": [-85.630739, 41.9412177] + }, + "n2189112780": { + "id": "n2189112780", + "loc": [-85.6305822, 41.9410391] + }, + "n2189112781": { + "id": "n2189112781", + "loc": [-85.6304117, 41.9408177] + }, + "n2189112782": { + "id": "n2189112782", + "loc": [-85.6305086, 41.9407769] + }, + "n2189112783": { + "id": "n2189112783", + "loc": [-85.6306779, 41.9410044] + }, + "n2189112784": { + "id": "n2189112784", + "loc": [-85.6307734, 41.9421663] + }, + "n2189112785": { + "id": "n2189112785", + "loc": [-85.630708, 41.9420741] + }, + "n2189112786": { + "id": "n2189112786", + "loc": [-85.630863, 41.9420133] + }, + "n2189112787": { + "id": "n2189112787", + "loc": [-85.6309285, 41.9421055] + }, + "n2189112788": { + "id": "n2189112788", + "loc": [-85.6307014, 41.9420263] + }, + "n2189112789": { + "id": "n2189112789", + "loc": [-85.6306648, 41.941971] + }, + "n2189112790": { + "id": "n2189112790", + "loc": [-85.6307927, 41.9419178] + }, + "n2189112791": { + "id": "n2189112791", + "loc": [-85.6308366, 41.9419696] + }, + "n2189112792": { + "id": "n2189112792", + "loc": [-85.6307574, 41.9418708] + }, + "n2189112793": { + "id": "n2189112793", + "loc": [-85.6306288, 41.9419231] + }, + "n2189112794": { + "id": "n2189112794", + "loc": [-85.6306943, 41.9417835] + }, + "n2189112795": { + "id": "n2189112795", + "loc": [-85.6305344, 41.9418474] + }, + "n2189112796": { + "id": "n2189112796", + "loc": [-85.6305981, 41.9419355] + }, + "n2189123410": { + "id": "n2189123410", + "loc": [-85.6315476, 41.9393801] + }, + "n2189123412": { + "id": "n2189123412", + "loc": [-85.6315247, 41.9399188] + }, + "n2189123415": { + "id": "n2189123415", + "loc": [-85.6316484, 41.9400433] + }, + "n185945138": { + "id": "n185945138", + "loc": [-85.627073, 41.93319] + }, + "n185945142": { + "id": "n185945142", + "loc": [-85.6296891, 41.9331674] + }, + "n185945401": { + "id": "n185945401", + "loc": [-85.6269, 41.930199] + }, + "n185945405": { + "id": "n185945405", + "loc": [-85.6296598, 41.9301676] + }, + "n185956891": { + "id": "n185956891", + "loc": [-85.6251617, 41.9255049] + }, + "n185959979": { + "id": "n185959979", + "loc": [-85.626333, 41.928347] + }, + "n185959983": { + "id": "n185959983", + "loc": [-85.6296419, 41.9283288] + }, + "n185961192": { + "id": "n185961192", + "loc": [-85.627053, 41.9352031] + }, + "n185961200": { + "id": "n185961200", + "loc": [-85.6297088, 41.9351902] + }, + "n185963655": { + "id": "n185963655", + "loc": [-85.6296112, 41.9273948] + }, + "n185963665": { + "id": "n185963665", + "loc": [-85.626047, 41.92737] + }, + "n185963688": { + "id": "n185963688", + "loc": [-85.6296503, 41.9292199] + }, + "n185963689": { + "id": "n185963689", + "loc": [-85.6296694, 41.931157] + }, + "n185963690": { + "id": "n185963690", + "loc": [-85.6296791, 41.9321485] + }, + "n185963691": { + "id": "n185963691", + "loc": [-85.6296991, 41.9341973] + }, + "n185967638": { + "id": "n185967638", + "loc": [-85.627089, 41.9361884] + }, + "n185972917": { + "id": "n185972917", + "loc": [-85.6293759, 41.9388605] + }, + "n185972919": { + "id": "n185972919", + "loc": [-85.6290337, 41.9380234] + }, + "n185972921": { + "id": "n185972921", + "loc": [-85.628424, 41.936212] + }, + "n185972923": { + "id": "n185972923", + "loc": [-85.628367, 41.936029] + }, + "n185974511": { + "id": "n185974511", + "loc": [-85.627064, 41.932169] + }, + "n185977728": { + "id": "n185977728", + "loc": [-85.625605, 41.925842] + }, + "n185977729": { + "id": "n185977729", + "loc": [-85.625685, 41.926163] + }, + "n185977731": { + "id": "n185977731", + "loc": [-85.6257845, 41.9264872] + }, + "n185977733": { + "id": "n185977733", + "loc": [-85.62663, 41.929251] + }, + "n185977734": { + "id": "n185977734", + "loc": [-85.627008, 41.930642] + }, + "n185977736": { + "id": "n185977736", + "loc": [-85.627029, 41.930775] + }, + "n185977738": { + "id": "n185977738", + "loc": [-85.627041, 41.930946] + }, + "n185977739": { + "id": "n185977739", + "loc": [-85.6270379, 41.9311746] + }, + "n185977742": { + "id": "n185977742", + "loc": [-85.627055, 41.934206] + }, + "n185977744": { + "id": "n185977744", + "loc": [-85.627084, 41.936804] + }, + "n185977746": { + "id": "n185977746", + "loc": [-85.627104, 41.936914] + }, + "n185977748": { + "id": "n185977748", + "loc": [-85.627156, 41.937026] + }, + "n185977750": { + "id": "n185977750", + "loc": [-85.6272406, 41.9371672] + }, + "n185977752": { + "id": "n185977752", + "loc": [-85.627317, 41.93723] + }, + "n185977753": { + "id": "n185977753", + "loc": [-85.627422, 41.937312] + }, + "n185977755": { + "id": "n185977755", + "loc": [-85.627754, 41.937504] + }, + "n185977757": { + "id": "n185977757", + "loc": [-85.627883, 41.937623] + }, + "n185977761": { + "id": "n185977761", + "loc": [-85.627984, 41.93773] + }, + "n1475283996": { + "id": "n1475283996", + "loc": [-85.6270514, 41.9317122], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284004": { + "id": "n1475284004", + "loc": [-85.6278177, 41.9342117], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284014": { + "id": "n1475284014", + "loc": [-85.6251877, 41.9255913], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284017": { + "id": "n1475284017", + "loc": [-85.6274992, 41.9331816], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284021": { + "id": "n1475284021", + "loc": [-85.6297108, 41.9353939], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284027": { + "id": "n1475284027", + "loc": [-85.62811, 41.935198], + "tags": { + "railway": "level_crossing" + } + }, + "n1475284035": { + "id": "n1475284035", + "loc": [-85.626888, 41.9311757], + "tags": { + "railway": "level_crossing" + } + }, + "n1475293245": { + "id": "n1475293245", + "loc": [-85.6286047, 41.9367881] + }, + "n1875654302": { + "id": "n1875654302", + "loc": [-85.6296367, 41.927491] + }, + "n2189099388": { + "id": "n2189099388", + "loc": [-85.6312007, 41.9389988] + }, + "n2189099389": { + "id": "n2189099389", + "loc": [-85.6311003, 41.9389992] + }, + "n2189099390": { + "id": "n2189099390", + "loc": [-85.6310988, 41.9387847] + }, + "n2189099391": { + "id": "n2189099391", + "loc": [-85.6312165, 41.9387843] + }, + "n2189099392": { + "id": "n2189099392", + "loc": [-85.6312152, 41.9385857] + }, + "n2189099393": { + "id": "n2189099393", + "loc": [-85.6310877, 41.9385862] + }, + "n2189099394": { + "id": "n2189099394", + "loc": [-85.6310858, 41.9383161] + }, + "n2189099395": { + "id": "n2189099395", + "loc": [-85.6302002, 41.9383196] + }, + "n2189099396": { + "id": "n2189099396", + "loc": [-85.6302011, 41.9384472] + }, + "n2189099397": { + "id": "n2189099397", + "loc": [-85.6301018, 41.9384476] + }, + "n2189099398": { + "id": "n2189099398", + "loc": [-85.6301025, 41.9385419] + }, + "n2189099399": { + "id": "n2189099399", + "loc": [-85.6299275, 41.9385427] + }, + "n2189099400": { + "id": "n2189099400", + "loc": [-85.62993, 41.9388653] + }, + "n2189099401": { + "id": "n2189099401", + "loc": [-85.630107, 41.9388645] + }, + "n2189099402": { + "id": "n2189099402", + "loc": [-85.6301079, 41.9389908] + }, + "n2189099403": { + "id": "n2189099403", + "loc": [-85.6301951, 41.9389904] + }, + "n2189123382": { + "id": "n2189123382", + "loc": [-85.6336279, 41.9354365] + }, + "n2189123384": { + "id": "n2189123384", + "loc": [-85.6328492, 41.9355177] + }, + "n2189123387": { + "id": "n2189123387", + "loc": [-85.6323762, 41.9357396] + }, + "n2189123388": { + "id": "n2189123388", + "loc": [-85.6315174, 41.9358966] + }, + "n2189123389": { + "id": "n2189123389", + "loc": [-85.6304331, 41.936124] + }, + "n2189123390": { + "id": "n2189123390", + "loc": [-85.6302075, 41.9364271] + }, + "n2189123391": { + "id": "n2189123391", + "loc": [-85.6303458, 41.9367953] + }, + "n2189123392": { + "id": "n2189123392", + "loc": [-85.6299601, 41.9369739] + }, + "n2189123393": { + "id": "n2189123393", + "loc": [-85.6299164, 41.9374882] + }, + "n2189123394": { + "id": "n2189123394", + "loc": [-85.6299455, 41.9378022] + }, + "n2189123395": { + "id": "n2189123395", + "loc": [-85.6299771, 41.9379053] + }, + "n2189123396": { + "id": "n2189123396", + "loc": [-85.6301597, 41.9379091] + }, + "n2189123397": { + "id": "n2189123397", + "loc": [-85.6308042, 41.9377913] + }, + "n2189123398": { + "id": "n2189123398", + "loc": [-85.6316885, 41.9378082] + }, + "n2189123399": { + "id": "n2189123399", + "loc": [-85.6316848, 41.9380079] + }, + "n2189123400": { + "id": "n2189123400", + "loc": [-85.6318449, 41.9381161] + }, + "n2189123401": { + "id": "n2189123401", + "loc": [-85.6320705, 41.9381811] + }, + "n2189123402": { + "id": "n2189123402", + "loc": [-85.6321433, 41.9383706] + }, + "n2189123404": { + "id": "n2189123404", + "loc": [-85.632056, 41.9384355] + }, + "n2189123406": { + "id": "n2189123406", + "loc": [-85.6317867, 41.9384572] + }, + "n2189123409": { + "id": "n2189123409", + "loc": [-85.6316572, 41.9387281] + }, + "n2189123417": { + "id": "n2189123417", + "loc": [-85.6315946, 41.93775] + }, + "n2189123419": { + "id": "n2189123419", + "loc": [-85.6302641, 41.9378393] + }, + "w208640158": { + "id": "w208640158", + "tags": { + "area": "yes", + "natural": "wetland" + }, + "nodes": [ + "n2189123379", + "n2189123382", + "n2189123384", + "n2189123387", + "n2189123388", + "n2189123389", + "n2189123390", + "n2189123391", + "n2189123392", + "n2189123393", + "n2189123394", + "n2189123395", + "n2189123396", + "n2189123419", + "n2189123397", + "n2189123417", + "n2189123398", + "n2189123399", + "n2189123400", + "n2189123401", + "n2189123402", + "n2189123404", + "n2189123406", + "n2189123409", + "n2189123410", + "n2189123412", + "n2189123415", + "n1819805722", + "n1819805861", + "n1819805887", + "n1819805760", + "n1819805641", + "n1819805632", + "n2189123379" + ] + }, + "w134150787": { + "id": "w134150787", + "tags": { + "name": "Conrail Railroad", + "railway": "rail" + }, + "nodes": [ + "n185972905", + "n185972907", + "n1475293223", + "n185972911", + "n1475293241", + "n1475293246", + "n185972915", + "n185972917", + "n185972919", + "n1475293245", + "n185972921", + "n185972923", + "n1475284027", + "n1475284004", + "n1475284017", + "n1475283996", + "n1475284035", + "n1475284014", + "n185956891" + ] + }, + "w208639443": { + "id": "w208639443", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112720", "n2189112721", "n2189112722", "n2189112723", "n2189112720"] + }, + "w17966462": { + "id": "w17966462", + "tags": { + "highway": "secondary", + "name": "South Main Street", + "old_ref": "US 131", + "ref": "M 86" + }, + "nodes": [ + "n185977728", + "n185977729", + "n185977731", + "n185963665", + "n185959979", + "n185977733", + "n185945401", + "n185977734", + "n185977736", + "n185977738", + "n185977739", + "n1475283996", + "n185974511", + "n185945138", + "n185977742", + "n185961192", + "n185967638", + "n185977744", + "n185977746", + "n185977748", + "n185977750", + "n185977752", + "n185977753", + "n185977754", + "n185977755", + "n185977757", + "n185977761", + "n185958030", + "n1475293263", + "n185963698", + "n185952745", + "n185947850", + "n185977762" + ] + }, + "w203985741": { + "id": "w203985741", + "tags": { + "area": "yes", + "leisure": "park", + "name": "Conservation Park" + }, + "nodes": [ + "n2139982404", + "n2139982405", + "n2139982399", + "n2139982400", + "n1819805770", + "n2139982402", + "n2139982403", + "n2139982401", + "n1819805780", + "n1819805834", + "n2139982406", + "n2139982404" + ] + }, + "w17963676": { + "id": "w17963676", + "tags": { + "highway": "service" + }, + "nodes": [ + "n1475293258", + "n2139982428", + "n2139982427", + "n2139982426", + "n2139982425", + "n2139982424", + "n2139982423", + "n2139982422", + "n2139982430", + "n2139982421", + "n2139982420", + "n2139982429", + "n1475293231", + "n1475293258", + "n1475293251", + "n1475293223", + "n185952745" + ] + }, + "w203985745": { + "id": "w203985745", + "tags": { + "highway": "footway" + }, + "nodes": [ + "n2139982430", + "n2139982431", + "n2139982432", + "n2139982433", + "n2139982434", + "n2139982435", + "n2139982436", + "n2139982437", + "n2139982438", + "n2139982439", + "n2139982440", + "n2139982441", + "n1475293231" + ] + }, + "w208639451": { + "id": "w208639451", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112754", "n2189112755", "n2189112756", "n2189112757", "n2189112758", "n2189112759", "n2189112754"] + }, + "w208639452": { + "id": "w208639452", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112760", "n2189112761", "n2189112766", "n2189112762", "n2189112763", "n2189112760"] + }, + "w206805244": { + "id": "w206805244", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2168544766", + "n2168544767", + "n2168544768", + "n2168544769", + "n2168544770", + "n2168544771", + "n2168544772", + "n2168544773", + "n2168544774", + "n2168544775", + "n2168544776", + "n2168544777", + "n2168544778", + "n2168544779", + "n2168544766" + ] + }, + "w208639444": { + "id": "w208639444", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112724", "n2189112725", "n2189112726", "n2189112727", "n2189112724"] + }, + "w208639450": { + "id": "w208639450", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112750", "n2189112751", "n2189112752", "n2189112753", "n2189112750"] + }, + "w208639448": { + "id": "w208639448", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112740", "n2189112741", "n2189112742", "n2189112743", "n2189112740"] + }, + "w208637859": { + "id": "w208637859", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189099387", + "n2189099388", + "n2189099389", + "n2189099390", + "n2189099391", + "n2189099392", + "n2189099393", + "n2189099394", + "n2189099395", + "n2189099396", + "n2189099397", + "n2189099398", + "n2189099399", + "n2189099400", + "n2189099401", + "n2189099402", + "n2189099403", + "n2189099404", + "n2189099405", + "n2189099406", + "n2189099407", + "n2189099408", + "n2189099409", + "n2189099410", + "n2189099387" + ] + }, + "w208639453": { + "id": "w208639453", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112764", "n2189112765", "n2189112766", "n2189112761", "n2189112764"] + }, + "w208639456": { + "id": "w208639456", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112774", "n2189112778", "n2189112779", "n2189112775", "n2189112776", "n2189112777", "n2189112774"] + }, + "w208639445": { + "id": "w208639445", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112728", "n2189112729", "n2189112730", "n2189112731", "n2189112728"] + }, + "w17967776": { + "id": "w17967776", + "tags": { + "highway": "residential", + "name": "5th Street" + }, + "nodes": ["n185958032", "n185988963"] + }, + "w208639461": { + "id": "w208639461", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112792", "n2189112794", "n2189112795", "n2189112796", "n2189112793", "n2189112792"] + }, + "w206805241": { + "id": "w206805241", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544754", "n2168544755", "n2168544756", "n2168544757", "n2168544754"] + }, + "w208639449": { + "id": "w208639449", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112744", "n2189112745", "n2189112746", "n2189112747", "n2189112748", "n2189112749", "n2189112744"] + }, + "w208639455": { + "id": "w208639455", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112771", "n2189112772", "n2189112773", "n2189112768", "n2189112771"] + }, + "w208639457": { + "id": "w208639457", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112780", "n2189112781", "n2189112782", "n2189112783", "n2189112780"] + }, + "w208639446": { + "id": "w208639446", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112732", "n2189112733", "n2189112734", "n2189112735", "n2189112732"] + }, + "w208639454": { + "id": "w208639454", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112767", "n2189112768", "n2189112773", "n2189112769", "n2189112770", "n2189112767"] + }, + "w203985743": { + "id": "w203985743", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2139982411", + "n2139982412", + "n2139982413", + "n2139982414", + "n2139982415", + "n2139982416", + "n2139982417", + "n2139982419", + "n2139982418", + "n2139982411" + ] + }, + "w17965023": { + "id": "w17965023", + "tags": { + "highway": "residential", + "name": "4th Street" + }, + "nodes": [ + "n185963655", + "n1875654302", + "n185959983", + "n185963688", + "n185945405", + "n185963689", + "n185963690", + "n185945142", + "n185963691", + "n185961200", + "n1475284021", + "n1475293246", + "n1875654132", + "n1475293263" + ] + }, + "w206805242": { + "id": "w206805242", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544758", "n2168544759", "n2168544760", "n2168544761", "n2168544758"] + }, + "w208639460": { + "id": "w208639460", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112792", "n2189112793", "n2189112789", "n2189112790", "n2189112792"] + }, + "w208639447": { + "id": "w208639447", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112736", "n2189112737", "n2189112738", "n2189112739", "n2189112736"] + }, + "w208639458": { + "id": "w208639458", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112784", "n2189112785", "n2189112786", "n2189112787", "n2189112784"] + }, + "w203985744": { + "id": "w203985744", + "tags": { + "highway": "service" + }, + "nodes": ["n2139982425", "n2139982400"] + }, + "w208639459": { + "id": "w208639459", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189112788", "n2189112789", "n2189112790", "n2189112791", "n2189112788"] + }, + "w203985742": { + "id": "w203985742", + "tags": { + "amenity": "shelter", + "area": "yes", + "shelter_type": "picnic_shelter" + }, + "nodes": ["n2139982407", "n2139982408", "n2139982409", "n2139982410", "n2139982407"] + }, + "w206805243": { + "id": "w206805243", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2168544762", "n2168544763", "n2168544764", "n2168544765", "n2168544762"] + }, + "n185959081": { + "id": "n185959081", + "loc": [-85.628469, 41.948674] + }, + "n185967427": { + "id": "n185967427", + "loc": [-85.632054, 41.951174] + }, + "n185967424": { + "id": "n185967424", + "loc": [-85.6320391, 41.9499109] + }, + "n185968101": { + "id": "n185968101", + "loc": [-85.6308395, 41.9511969] + }, + "n185960792": { + "id": "n185960792", + "loc": [-85.632074, 41.953707] + }, + "n185961389": { + "id": "n185961389", + "loc": [-85.630935, 41.959037] + }, + "n185961391": { + "id": "n185961391", + "loc": [-85.632169, 41.959025] + }, + "n185965395": { + "id": "n185965395", + "loc": [-85.63216, 41.959859] + }, + "n185966953": { + "id": "n185966953", + "loc": [-85.630894, 41.957428] + }, + "n185966955": { + "id": "n185966955", + "loc": [-85.632122, 41.957427] + }, + "n185967430": { + "id": "n185967430", + "loc": [-85.632077, 41.952453] + }, + "n185967432": { + "id": "n185967432", + "loc": [-85.632095, 41.954685] + }, + "n185967434": { + "id": "n185967434", + "loc": [-85.632121, 41.955914] + }, + "n185967436": { + "id": "n185967436", + "loc": [-85.632128, 41.9583] + }, + "n185967438": { + "id": "n185967438", + "loc": [-85.632187, 41.960681] + }, + "n185967440": { + "id": "n185967440", + "loc": [-85.632182, 41.961493] + }, + "n185968102": { + "id": "n185968102", + "loc": [-85.630855, 41.952452] + }, + "n185968104": { + "id": "n185968104", + "loc": [-85.630887, 41.953714] + }, + "n185968106": { + "id": "n185968106", + "loc": [-85.630883, 41.954692] + }, + "n185968108": { + "id": "n185968108", + "loc": [-85.630904, 41.955913] + }, + "n185968110": { + "id": "n185968110", + "loc": [-85.630904, 41.958058] + }, + "n185968112": { + "id": "n185968112", + "loc": [-85.630952, 41.960667] + }, + "n185968114": { + "id": "n185968114", + "loc": [-85.630972, 41.961495] + }, + "n185968116": { + "id": "n185968116", + "loc": [-85.630962, 41.961967] + }, + "n185978969": { + "id": "n185978969", + "loc": [-85.633214, 41.948618] + }, + "n185985812": { + "id": "n185985812", + "loc": [-85.633274, 41.951159] + }, + "n185986155": { + "id": "n185986155", + "loc": [-85.633258, 41.949893] + }, + "n2208608826": { + "id": "n2208608826", + "loc": [-85.6339222, 41.9486225] + }, + "w17964531": { + "id": "w17964531", + "tags": { + "highway": "residential", + "name": "Willow Drive" + }, + "nodes": ["n185959079", "n185959081"] + }, + "w17967386": { + "id": "w17967386", + "tags": { + "highway": "residential", + "name": "East Armitage Street" + }, + "nodes": ["n185982195", "n185968101", "n185967427", "n185985812", "n185974583"] + }, + "w17965502": { + "id": "w17965502", + "tags": { + "highway": "residential", + "name": "Elm Street" + }, + "nodes": [ + "n185968100", + "n185968101", + "n185968102", + "n185968104", + "n185968106", + "n185968108", + "n185966953", + "n185968110", + "n185961389", + "n185968112", + "n185968114", + "n185968116" + ] + }, + "w17967844": { + "id": "w17967844", + "tags": { + "highway": "residential", + "name": "East Bennett Street" + }, + "nodes": ["n185982193", "n185967424", "n185986155", "n185978390"] + }, + "w17966581": { + "id": "w17966581", + "tags": { + "highway": "residential", + "name": "East Kelsey Street" + }, + "nodes": ["n185978967", "n185978969", "n2208608826", "n185971578"] + }, + "w17965402": { + "id": "w17965402", + "tags": { + "highway": "residential", + "name": "Walnut Street" + }, + "nodes": [ + "n185967422", + "n185967424", + "n185967427", + "n185967430", + "n185960792", + "n185967432", + "n185967434", + "n185966955", + "n185967436", + "n185961391", + "n185965395", + "n185967438", + "n185967440" + ] + }, + "n2199093506": { + "id": "n2199093506", + "loc": [-85.6251879, 41.9478322] + }, + "n2199093505": { + "id": "n2199093505", + "loc": [-85.6252076, 41.9477749] + }, + "n2199093504": { + "id": "n2199093504", + "loc": [-85.6252289, 41.9477602] + }, + "n2199093503": { + "id": "n2199093503", + "loc": [-85.625201, 41.9477492] + }, + "n2199093502": { + "id": "n2199093502", + "loc": [-85.6251682, 41.9477066] + }, + "n2199093501": { + "id": "n2199093501", + "loc": [-85.6251715, 41.947609] + }, + "n2199093500": { + "id": "n2199093500", + "loc": [-85.6252125, 41.9475639] + }, + "n2199093499": { + "id": "n2199093499", + "loc": [-85.6252896, 41.9475602] + }, + "n2199093498": { + "id": "n2199093498", + "loc": [-85.6253027, 41.9475334] + }, + "n2199093497": { + "id": "n2199093497", + "loc": [-85.6253437, 41.9474822] + }, + "n2199093496": { + "id": "n2199093496", + "loc": [-85.6254421, 41.9474675] + }, + "n2199093495": { + "id": "n2199093495", + "loc": [-85.6256503, 41.9474944] + }, + "n2199093494": { + "id": "n2199093494", + "loc": [-85.6257257, 41.9476127] + }, + "n2199093493": { + "id": "n2199093493", + "loc": [-85.6257028, 41.9477285] + }, + "n2199093492": { + "id": "n2199093492", + "loc": [-85.6255339, 41.9478102] + }, + "n2199093491": { + "id": "n2199093491", + "loc": [-85.6253912, 41.9478224] + }, + "n2199093490": { + "id": "n2199093490", + "loc": [-85.6253043, 41.947859] + }, + "n2199093489": { + "id": "n2199093489", + "loc": [-85.6252027, 41.9478846] + }, + "n2199093458": { + "id": "n2199093458", + "loc": [-85.6246876, 41.9486617] + }, + "n2199093457": { + "id": "n2199093457", + "loc": [-85.6243127, 41.9486583] + }, + "n2199093456": { + "id": "n2199093456", + "loc": [-85.624306, 41.9490569] + }, + "n2199093455": { + "id": "n2199093455", + "loc": [-85.624681, 41.9490603] + }, + "n2199093514": { + "id": "n2199093514", + "loc": [-85.6236228, 41.9496059] + }, + "n2199093513": { + "id": "n2199093513", + "loc": [-85.6236231, 41.9496997] + }, + "n2199093512": { + "id": "n2199093512", + "loc": [-85.623357, 41.9497002] + }, + "n2199093511": { + "id": "n2199093511", + "loc": [-85.6233567, 41.9496136] + }, + "n2199093508": { + "id": "n2199093508", + "loc": [-85.6239735, 41.9494287] + }, + "n2199093507": { + "id": "n2199093507", + "loc": [-85.6239741, 41.9496052] + }, + "n2199093488": { + "id": "n2199093488", + "loc": [-85.624497, 41.9512286] + }, + "n2199093487": { + "id": "n2199093487", + "loc": [-85.6244966, 41.9511259] + }, + "n2199093486": { + "id": "n2199093486", + "loc": [-85.6243151, 41.9511263] + }, + "n2199093485": { + "id": "n2199093485", + "loc": [-85.6243154, 41.951229] + }, + "n2199093484": { + "id": "n2199093484", + "loc": [-85.6241205, 41.9508665] + }, + "n2199093483": { + "id": "n2199093483", + "loc": [-85.624115, 41.9505249] + }, + "n2199093482": { + "id": "n2199093482", + "loc": [-85.6243149, 41.9505231] + }, + "n2199093481": { + "id": "n2199093481", + "loc": [-85.6243203, 41.9508648] + }, + "n2199093480": { + "id": "n2199093480", + "loc": [-85.624393, 41.9508668] + }, + "n2199093479": { + "id": "n2199093479", + "loc": [-85.6243904, 41.9505956] + }, + "n2199093478": { + "id": "n2199093478", + "loc": [-85.6246727, 41.950594] + }, + "n2199093477": { + "id": "n2199093477", + "loc": [-85.624675, 41.9508203] + }, + "n2199093476": { + "id": "n2199093476", + "loc": [-85.6245097, 41.9508212] + }, + "n2199093475": { + "id": "n2199093475", + "loc": [-85.6245101, 41.9508662] + }, + "n2199093474": { + "id": "n2199093474", + "loc": [-85.6241008, 41.9493459] + }, + "n2199093473": { + "id": "n2199093473", + "loc": [-85.6242442, 41.9493459] + }, + "n2199093472": { + "id": "n2199093472", + "loc": [-85.6242442, 41.9493681] + }, + "n2199093471": { + "id": "n2199093471", + "loc": [-85.6243397, 41.9493681] + }, + "n2199093470": { + "id": "n2199093470", + "loc": [-85.6243417, 41.9493511] + }, + "n2199093469": { + "id": "n2199093469", + "loc": [-85.6247251, 41.9493485] + }, + "n2199093468": { + "id": "n2199093468", + "loc": [-85.6247548, 41.9504949] + }, + "n2199093467": { + "id": "n2199093467", + "loc": [-85.6241214, 41.9505017] + }, + "n2199093466": { + "id": "n2199093466", + "loc": [-85.6254398, 41.950174] + }, + "n2199093465": { + "id": "n2199093465", + "loc": [-85.6254412, 41.9499872] + }, + "n2199093464": { + "id": "n2199093464", + "loc": [-85.6255363, 41.9499876] + }, + "n2199093463": { + "id": "n2199093463", + "loc": [-85.6255374, 41.9498439] + }, + "n2199093462": { + "id": "n2199093462", + "loc": [-85.6255638, 41.949844] + }, + "n2199093461": { + "id": "n2199093461", + "loc": [-85.6255652, 41.9496672] + }, + "n2199093460": { + "id": "n2199093460", + "loc": [-85.6251823, 41.9496656] + }, + "n2199093459": { + "id": "n2199093459", + "loc": [-85.6251785, 41.9501729] + }, + "n2199093510": { + "id": "n2199093510", + "loc": [-85.6229922, 41.9496143] + }, + "n2199093509": { + "id": "n2199093509", + "loc": [-85.6229915, 41.9494306] + }, + "n185948903": { + "id": "n185948903", + "loc": [-85.616514, 41.947449] + }, + "n185955120": { + "id": "n185955120", + "loc": [-85.620103, 41.951] + }, + "n185955143": { + "id": "n185955143", + "loc": [-85.619784, 41.94746] + }, + "n185960124": { + "id": "n185960124", + "loc": [-85.615238, 41.947468] + }, + "n185961362": { + "id": "n185961362", + "loc": [-85.617437, 41.947451] + }, + "n185961364": { + "id": "n185961364", + "loc": [-85.61861, 41.947456] + }, + "n185961367": { + "id": "n185961367", + "loc": [-85.620088, 41.947458] + }, + "n185965105": { + "id": "n185965105", + "loc": [-85.620087, 41.94924] + }, + "n185970220": { + "id": "n185970220", + "loc": [-85.62156, 41.948333] + }, + "n185974697": { + "id": "n185974697", + "loc": [-85.6201059, 41.950132] + }, + "n2138420778": { + "id": "n2138420778", + "loc": [-85.616948, 41.9474499] + }, + "w17967535": { + "id": "w17967535", + "tags": { + "highway": "residential", + "name": "10th Avenue" + }, + "nodes": ["n185955120", "n185986812", "n185983141"] + }, + "w209716130": { + "id": "w209716130", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199093485", "n2199093486", "n2199093487", "n2199093488", "n2199093485"] + }, + "w17964788": { + "id": "w17964788", + "tags": { + "highway": "residential", + "name": "6th Avenue" + }, + "nodes": [ + "n185960124", + "n185948903", + "n2138420778", + "n185961362", + "n185961364", + "n185955143", + "n185961367", + "n185961369", + "n185961371" + ] + }, + "w17965159": { + "id": "w17965159", + "tags": { + "highway": "residential", + "name": "8th Avenue" + }, + "nodes": ["n185965105", "n185965108", "n185965110"] + }, + "w209716125": { + "id": "w209716125", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199093459", + "n2199093460", + "n2199093461", + "n2199093462", + "n2199093463", + "n2199093464", + "n2199093465", + "n2199093466", + "n2199093459" + ] + }, + "w17965699": { + "id": "w17965699", + "tags": { + "highway": "residential", + "name": "7th Avenue" + }, + "nodes": ["n185970220", "n185970222", "n185970224"] + }, + "w209716132": { + "id": "w209716132", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199093507", + "n2199093508", + "n2199093509", + "n2199093510", + "n2199093511", + "n2199093512", + "n2199093513", + "n2199093514", + "n2199093507" + ] + }, + "w17966129": { + "id": "w17966129", + "tags": { + "highway": "residential", + "name": "9th Avenue" + }, + "nodes": ["n185974697", "n185974699"] + }, + "w209716127": { + "id": "w209716127", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199093475", "n2199093476", "n2199093477", "n2199093478", "n2199093479", "n2199093480", "n2199093475"] + }, + "w209716131": { + "id": "w209716131", + "tags": { + "area": "yes", + "natural": "water", + "water": "pond" + }, + "nodes": [ + "n2199093489", + "n2199093490", + "n2199093491", + "n2199093492", + "n2199093493", + "n2199093494", + "n2199093495", + "n2199093496", + "n2199093497", + "n2199093498", + "n2199093499", + "n2199093500", + "n2199093501", + "n2199093502", + "n2199093503", + "n2199093504", + "n2199093505", + "n2199093506", + "n2199093489" + ] + }, + "w209716126": { + "id": "w209716126", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199093467", + "n2199093468", + "n2199093469", + "n2199093470", + "n2199093471", + "n2199093472", + "n2199093473", + "n2199093474", + "n2199093467" + ] + }, + "w209716124": { + "id": "w209716124", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199093455", "n2199093456", "n2199093457", "n2199093458", "n2199093455"] + }, + "w209716128": { + "id": "w209716128", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199093481", "n2199093482", "n2199093483", "n2199093484", "n2199093481"] + }, + "n185949872": { + "id": "n185949872", + "loc": [-85.643009, 41.949264] + }, + "n185949875": { + "id": "n185949875", + "loc": [-85.642598, 41.94929] + }, + "n185949877": { + "id": "n185949877", + "loc": [-85.642127, 41.949382] + }, + "n185949881": { + "id": "n185949881", + "loc": [-85.64169, 41.949936] + }, + "n185988165": { + "id": "n185988165", + "loc": [-85.642167, 41.947657] + }, + "n185988167": { + "id": "n185988167", + "loc": [-85.642347, 41.947662] + }, + "n185988169": { + "id": "n185988169", + "loc": [-85.642621, 41.947659] + }, + "n185965019": { + "id": "n185965019", + "loc": [-85.6385084, 41.951127] + }, + "n1475293248": { + "id": "n1475293248", + "loc": [-85.6386095, 41.9512214] + }, + "n185962639": { + "id": "n185962639", + "loc": [-85.649669, 41.949161] + }, + "n185962810": { + "id": "n185962810", + "loc": [-85.649907, 41.949157] + }, + "n185964355": { + "id": "n185964355", + "loc": [-85.637412, 41.9511359] + }, + "n185965021": { + "id": "n185965021", + "loc": [-85.638661, 41.952386] + }, + "n185965023": { + "id": "n185965023", + "loc": [-85.638654, 41.953665] + }, + "n185965025": { + "id": "n185965025", + "loc": [-85.638694, 41.954649] + }, + "n185965027": { + "id": "n185965027", + "loc": [-85.638724, 41.955913] + }, + "n185971415": { + "id": "n185971415", + "loc": [-85.644466, 41.949246] + }, + "n185971417": { + "id": "n185971417", + "loc": [-85.647021, 41.949193] + }, + "n185971420": { + "id": "n185971420", + "loc": [-85.648476, 41.949169] + }, + "n185979975": { + "id": "n185979975", + "loc": [-85.644429, 41.947633] + }, + "n185988171": { + "id": "n185988171", + "loc": [-85.645377, 41.947622] + }, + "w17963211": { + "id": "w17963211", + "tags": { + "highway": "residential" + }, + "nodes": ["n185949870", "n185949872", "n185949875", "n185949877", "n185949881"] + }, + "w17965839": { + "id": "w17965839", + "tags": { + "highway": "residential", + "name": "Arnold Street" + }, + "nodes": ["n185949870", "n185971415", "n185971417", "n185971420", "n185962639", "n185962810"] + }, + "w17967618": { + "id": "w17967618", + "tags": { + "highway": "residential", + "name": "Pierson Street" + }, + "nodes": ["n185967777", "n185988165", "n185988167", "n185988169", "n185985824", "n185979975", "n185988171"] + }, + "w17965149": { + "id": "w17965149", + "tags": { + "highway": "residential", + "name": "Oak Street" + }, + "nodes": ["n185965019", "n1475293248", "n185965021", "n185965023", "n185965025", "n185965027"] + }, + "w17966118": { + "id": "w17966118", + "tags": { + "highway": "residential", + "name": "West Armitage Street" + }, + "nodes": ["n185974583", "n185974585", "n185964355", "n185965019"] + }, + "n2208608800": { + "id": "n2208608800", + "loc": [-85.6354294, 41.9486201] + }, + "n2199109806": { + "id": "n2199109806", + "loc": [-85.6350474, 41.9477884] + }, + "n2199109804": { + "id": "n2199109804", + "loc": [-85.6350476, 41.9477962] + }, + "n2199109802": { + "id": "n2199109802", + "loc": [-85.635002, 41.9477969] + }, + "n2199109799": { + "id": "n2199109799", + "loc": [-85.6350018, 41.9477883] + }, + "n2199109797": { + "id": "n2199109797", + "loc": [-85.6349141, 41.9477897] + }, + "n2199109795": { + "id": "n2199109795", + "loc": [-85.6349131, 41.9477535] + }, + "n2199109793": { + "id": "n2199109793", + "loc": [-85.6349395, 41.9477531] + }, + "n2199109791": { + "id": "n2199109791", + "loc": [-85.6349382, 41.9477077] + }, + "n2199109789": { + "id": "n2199109789", + "loc": [-85.6351236, 41.9477049] + }, + "n2199109787": { + "id": "n2199109787", + "loc": [-85.6351259, 41.9477872] + }, + "n2199109785": { + "id": "n2199109785", + "loc": [-85.634972, 41.9475992] + }, + "n2199109783": { + "id": "n2199109783", + "loc": [-85.6349206, 41.9475997] + }, + "n2199109770": { + "id": "n2199109770", + "loc": [-85.6348499, 41.9475461] + }, + "n2199109768": { + "id": "n2199109768", + "loc": [-85.6348499, 41.9475084] + }, + "n2199109765": { + "id": "n2199109765", + "loc": [-85.6349241, 41.9474569] + }, + "n2199109763": { + "id": "n2199109763", + "loc": [-85.634967, 41.9474564] + }, + "n2199109762": { + "id": "n2199109762", + "loc": [-85.6350405, 41.9475121] + }, + "n2199109761": { + "id": "n2199109761", + "loc": [-85.6350405, 41.9475419] + }, + "n2199109753": { + "id": "n2199109753", + "loc": [-85.6342443, 41.9478391] + }, + "n2199109751": { + "id": "n2199109751", + "loc": [-85.6342427, 41.9477927] + }, + "n2199109745": { + "id": "n2199109745", + "loc": [-85.6342439, 41.9476859] + }, + "n2199109743": { + "id": "n2199109743", + "loc": [-85.6342429, 41.9476575] + }, + "n2199109741": { + "id": "n2199109741", + "loc": [-85.6344615, 41.9476533] + }, + "n2199109739": { + "id": "n2199109739", + "loc": [-85.6344678, 41.9478348] + }, + "n2199109737": { + "id": "n2199109737", + "loc": [-85.634416, 41.9480059] + }, + "n2199109735": { + "id": "n2199109735", + "loc": [-85.6344145, 41.9478983] + }, + "n2199109733": { + "id": "n2199109733", + "loc": [-85.6342749, 41.9478993] + }, + "n2199109731": { + "id": "n2199109731", + "loc": [-85.6342753, 41.9479272] + }, + "n2199109729": { + "id": "n2199109729", + "loc": [-85.6342498, 41.9479274] + }, + "n2199109727": { + "id": "n2199109727", + "loc": [-85.6342505, 41.9479762] + }, + "n2199109725": { + "id": "n2199109725", + "loc": [-85.6342743, 41.947976] + }, + "n2199109723": { + "id": "n2199109723", + "loc": [-85.6342747, 41.948007] + }, + "n2199109721": { + "id": "n2199109721", + "loc": [-85.6343415, 41.9476355] + }, + "n2199109719": { + "id": "n2199109719", + "loc": [-85.6343391, 41.9474973] + }, + "n2199109717": { + "id": "n2199109717", + "loc": [-85.6343133, 41.9474798] + }, + "n2199109715": { + "id": "n2199109715", + "loc": [-85.6342874, 41.9474737] + }, + "n2199109709": { + "id": "n2199109709", + "loc": [-85.6349804, 41.94815] + }, + "n2199109707": { + "id": "n2199109707", + "loc": [-85.6348915, 41.9481505] + }, + "n2199109705": { + "id": "n2199109705", + "loc": [-85.6348917, 41.9481692] + }, + "n2199109702": { + "id": "n2199109702", + "loc": [-85.6348522, 41.9481694] + }, + "n2199109700": { + "id": "n2199109700", + "loc": [-85.6348532, 41.9482679] + }, + "n2199109698": { + "id": "n2199109698", + "loc": [-85.6348315, 41.948268] + }, + "n2199109696": { + "id": "n2199109696", + "loc": [-85.6348318, 41.9482955] + }, + "n2199109694": { + "id": "n2199109694", + "loc": [-85.6349653, 41.9482946] + }, + "n2199109692": { + "id": "n2199109692", + "loc": [-85.6349656, 41.9483211] + }, + "n2199109690": { + "id": "n2199109690", + "loc": [-85.634999, 41.9483209] + }, + "n2199109688": { + "id": "n2199109688", + "loc": [-85.6349987, 41.9482947] + }, + "n2199109686": { + "id": "n2199109686", + "loc": [-85.6351753, 41.9482935] + }, + "n2199109684": { + "id": "n2199109684", + "loc": [-85.6351749, 41.9482617] + }, + "n2199109682": { + "id": "n2199109682", + "loc": [-85.6351588, 41.9482618] + }, + "n2199109680": { + "id": "n2199109680", + "loc": [-85.6351575, 41.9481518] + }, + "n2199109678": { + "id": "n2199109678", + "loc": [-85.6350671, 41.9481524] + }, + "n2199109676": { + "id": "n2199109676", + "loc": [-85.6350649, 41.9479659] + }, + "n2199109674": { + "id": "n2199109674", + "loc": [-85.6349785, 41.9479665] + }, + "n2199109671": { + "id": "n2199109671", + "loc": [-85.6343069, 41.9483263] + }, + "n2199109669": { + "id": "n2199109669", + "loc": [-85.6343052, 41.9482981] + }, + "n2199109658": { + "id": "n2199109658", + "loc": [-85.6343314, 41.9480549] + }, + "n2199109656": { + "id": "n2199109656", + "loc": [-85.6343305, 41.9480461] + }, + "n2199109654": { + "id": "n2199109654", + "loc": [-85.634435, 41.9480468] + }, + "n2199109652": { + "id": "n2199109652", + "loc": [-85.6344342, 41.9483746] + }, + "n2199109650": { + "id": "n2199109650", + "loc": [-85.6344629, 41.9483727] + }, + "n2199109648": { + "id": "n2199109648", + "loc": [-85.6344637, 41.9484561] + }, + "n2199109645": { + "id": "n2199109645", + "loc": [-85.63443, 41.9484567] + }, + "n2199109642": { + "id": "n2199109642", + "loc": [-85.6344317, 41.948505] + }, + "n185964352": { + "id": "n185964352", + "loc": [-85.6373958, 41.9489943] + }, + "n185964351": { + "id": "n185964351", + "loc": [-85.637113, 41.9486] + }, + "n2208608825": { + "id": "n2208608825", + "loc": [-85.6354483, 41.9494241] + }, + "n2208608823": { + "id": "n2208608823", + "loc": [-85.6360418, 41.949416] + }, + "n2208608821": { + "id": "n2208608821", + "loc": [-85.6360458, 41.9495802] + }, + "n2208608811": { + "id": "n2208608811", + "loc": [-85.6357458, 41.9495843] + }, + "n2208608808": { + "id": "n2208608808", + "loc": [-85.6357508, 41.9497835] + }, + "n2208608806": { + "id": "n2208608806", + "loc": [-85.6354573, 41.9497875] + }, + "n2208608795": { + "id": "n2208608795", + "loc": [-85.6354595, 41.9498778] + }, + "n2199109638": { + "id": "n2199109638", + "loc": [-85.6349605, 41.949749] + }, + "n2199109636": { + "id": "n2199109636", + "loc": [-85.6349605, 41.9497639] + }, + "n2199109634": { + "id": "n2199109634", + "loc": [-85.6349061, 41.94971] + }, + "n2199109632": { + "id": "n2199109632", + "loc": [-85.6349048, 41.9496569] + }, + "n2199109630": { + "id": "n2199109630", + "loc": [-85.6348835, 41.9496571] + }, + "n2199109628": { + "id": "n2199109628", + "loc": [-85.6348829, 41.9497103] + }, + "n2199109626": { + "id": "n2199109626", + "loc": [-85.635227, 41.9497738] + }, + "n2199109624": { + "id": "n2199109624", + "loc": [-85.6352184, 41.9497787] + }, + "n2199109622": { + "id": "n2199109622", + "loc": [-85.6351181, 41.9497806] + }, + "n2199109620": { + "id": "n2199109620", + "loc": [-85.6351181, 41.9497456] + }, + "n2199109618": { + "id": "n2199109618", + "loc": [-85.6348842, 41.9497651] + }, + "n2199109616": { + "id": "n2199109616", + "loc": [-85.6348827, 41.9496238] + }, + "n2199109615": { + "id": "n2199109615", + "loc": [-85.6351268, 41.9496206] + }, + "n2199109614": { + "id": "n2199109614", + "loc": [-85.6351261, 41.9495891] + }, + "n2199109613": { + "id": "n2199109613", + "loc": [-85.6351957, 41.9495881] + }, + "n2199109612": { + "id": "n2199109612", + "loc": [-85.6351924, 41.9494515] + }, + "n2199109611": { + "id": "n2199109611", + "loc": [-85.6353997, 41.9494488] + }, + "n2199109610": { + "id": "n2199109610", + "loc": [-85.6354074, 41.9497715] + }, + "n2189015681": { + "id": "n2189015681", + "loc": [-85.6344229, 41.9509639] + }, + "n2189015677": { + "id": "n2189015677", + "loc": [-85.634424, 41.9507396] + }, + "n2138493843": { + "id": "n2138493843", + "loc": [-85.6343935, 41.9502836] + }, + "n2138493840": { + "id": "n2138493840", + "loc": [-85.634398, 41.9506264] + }, + "n354002838": { + "id": "n354002838", + "loc": [-85.6345197, 41.9510631] + }, + "n2114807590": { + "id": "n2114807590", + "loc": [-85.634511, 41.9499767] + }, + "n185964353": { + "id": "n185964353", + "loc": [-85.6374092, 41.9498755] + }, + "n1819849180": { + "id": "n1819849180", + "loc": [-85.6348236, 41.94996] + }, + "n1819849115": { + "id": "n1819849115", + "loc": [-85.6354372, 41.9499538] + }, + "n1819848921": { + "id": "n1819848921", + "loc": [-85.6348439, 41.951064] + }, + "n1819848885": { + "id": "n1819848885", + "loc": [-85.6354575, 41.9510578] + }, + "n185984281": { + "id": "n185984281", + "loc": [-85.638075, 41.949872] + }, + "n2208608827": { + "id": "n2208608827", + "loc": [-85.6339169, 41.9473191] + }, + "n2199109749": { + "id": "n2199109749", + "loc": [-85.6342082, 41.9477934] + }, + "n2199109747": { + "id": "n2199109747", + "loc": [-85.6342045, 41.9476867] + }, + "n2199109713": { + "id": "n2199109713", + "loc": [-85.6342404, 41.9474746] + }, + "n2199109711": { + "id": "n2199109711", + "loc": [-85.6342404, 41.9476355] + }, + "n2199109673": { + "id": "n2199109673", + "loc": [-85.6340886, 41.9483282] + }, + "n2199109667": { + "id": "n2199109667", + "loc": [-85.6342403, 41.9482988] + }, + "n2199109665": { + "id": "n2199109665", + "loc": [-85.6342386, 41.9482116] + }, + "n2199109662": { + "id": "n2199109662", + "loc": [-85.6340861, 41.9482135] + }, + "n2199109660": { + "id": "n2199109660", + "loc": [-85.6340802, 41.9480562] + }, + "n2199109640": { + "id": "n2199109640", + "loc": [-85.6340928, 41.9485063] + }, + "n354031366": { + "id": "n354031366", + "loc": [-85.6341667, 41.9477778], + "tags": { + "amenity": "place_of_worship", + "name": "Faith Tabernacle Church", + "religion": "christian" + } + }, + "n2189015686": { + "id": "n2189015686", + "loc": [-85.6337798, 41.95099] + }, + "n2189015684": { + "id": "n2189015684", + "loc": [-85.6337794, 41.9509674] + }, + "n2189015673": { + "id": "n2189015673", + "loc": [-85.6337501, 41.9507457] + }, + "n2189015669": { + "id": "n2189015669", + "loc": [-85.6337501, 41.9506974] + }, + "n2189015665": { + "id": "n2189015665", + "loc": [-85.6339034, 41.9506959] + }, + "n2189015662": { + "id": "n2189015662", + "loc": [-85.6339015, 41.950436] + }, + "n2189015658": { + "id": "n2189015658", + "loc": [-85.6334916, 41.9504376] + }, + "n2189015655": { + "id": "n2189015655", + "loc": [-85.6334939, 41.9507558] + }, + "n2189015650": { + "id": "n2189015650", + "loc": [-85.6334543, 41.950756] + }, + "n2189015649": { + "id": "n2189015649", + "loc": [-85.633456, 41.9509915] + }, + "n2138493842": { + "id": "n2138493842", + "loc": [-85.6339937, 41.9502836] + }, + "n2138493841": { + "id": "n2138493841", + "loc": [-85.6339983, 41.9506281] + }, + "n2114807579": { + "id": "n2114807579", + "loc": [-85.6333644, 41.9510682] + }, + "n2114807573": { + "id": "n2114807573", + "loc": [-85.6333557, 41.9499819] + }, + "n354031330": { + "id": "n354031330", + "loc": [-85.6341667, 41.9497222], + "tags": { + "amenity": "place_of_worship", + "name": "Trinity Episcopal Church", + "religion": "christian" + } + }, + "n185960794": { + "id": "n185960794", + "loc": [-85.633307, 41.9537] + }, + "n185964357": { + "id": "n185964357", + "loc": [-85.637432, 41.952399] + }, + "n185964358": { + "id": "n185964358", + "loc": [-85.637452, 41.953665] + }, + "n185964359": { + "id": "n185964359", + "loc": [-85.63746, 41.954658] + }, + "n185964360": { + "id": "n185964360", + "loc": [-85.637473, 41.95592] + }, + "n185964361": { + "id": "n185964361", + "loc": [-85.637468, 41.956906] + }, + "n185964362": { + "id": "n185964362", + "loc": [-85.637483, 41.958313] + }, + "n185966957": { + "id": "n185966957", + "loc": [-85.633361, 41.957422] + }, + "n185975351": { + "id": "n185975351", + "loc": [-85.63334, 41.9559] + }, + "n185978784": { + "id": "n185978784", + "loc": [-85.633311, 41.954679] + }, + "n185986157": { + "id": "n185986157", + "loc": [-85.633287, 41.952426] + }, + "n185986158": { + "id": "n185986158", + "loc": [-85.6333607, 41.9582301], + "tags": { + "highway": "turning_circle" + } + }, + "w17965182": { + "id": "w17965182", + "tags": { + "highway": "residential", + "name": "West Prutzman Street" + }, + "nodes": ["n185965289", "n2189153241", "n185965291"] + }, + "w208627205": { + "id": "w208627205", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189015649", + "n2189015650", + "n2189015655", + "n2189015658", + "n2189015662", + "n2189015665", + "n2189015669", + "n2189015673", + "n2189015677", + "n2189015681", + "n2189015684", + "n2189015686", + "n2189015649" + ] + }, + "w209717042": { + "id": "w209717042", + "tags": { + "amenity": "place_of_worship", + "area": "yes", + "building": "yes", + "denomination": "presbyterian", + "name": "First Presbyterian Church", + "religion": "christian" + }, + "nodes": [ + "n2199109610", + "n2199109611", + "n2199109612", + "n2199109613", + "n2199109614", + "n2199109615", + "n2199109616", + "n2199109630", + "n2199109632", + "n2199109634", + "n2199109628", + "n2199109618", + "n2199109636", + "n2199109638", + "n2199109620", + "n2199109622", + "n2199109624", + "n2199109626", + "n2199109610" + ] + }, + "w209717045": { + "id": "w209717045", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109711", "n2199109713", "n2199109715", "n2199109717", "n2199109719", "n2199109721", "n2199109711"] + }, + "w209717047": { + "id": "w209717047", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199109739", + "n2199109741", + "n2199109743", + "n2199109745", + "n2199109747", + "n2199109749", + "n2199109751", + "n2199109753", + "n2199109739" + ] + }, + "w209717044": { + "id": "w209717044", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199109674", + "n2199109676", + "n2199109678", + "n2199109680", + "n2199109682", + "n2199109684", + "n2199109686", + "n2199109688", + "n2199109690", + "n2199109692", + "n2199109694", + "n2199109696", + "n2199109698", + "n2199109700", + "n2199109702", + "n2199109705", + "n2199109707", + "n2199109709", + "n2199109674" + ] + }, + "w210822776": { + "id": "w210822776", + "tags": { + "highway": "service", + "service": "alley", + "surface": "unpaved" + }, + "nodes": ["n2208608795", "n2208608806", "n2208608825", "n2208608800", "n2189153241"] + }, + "w210822778": { + "id": "w210822778", + "tags": { + "highway": "service", + "service": "alley" + }, + "nodes": ["n2208608826", "n2208608827"] + }, + "w209717050": { + "id": "w209717050", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199109787", + "n2199109789", + "n2199109791", + "n2199109793", + "n2199109795", + "n2199109797", + "n2199109799", + "n2199109802", + "n2199109804", + "n2199109806", + "n2199109787" + ] + }, + "w17965097": { + "id": "w17965097", + "tags": { + "highway": "residential", + "name": "Maple Street" + }, + "nodes": [ + "n185964351", + "n185964352", + "n185964353", + "n185964355", + "n185964357", + "n185964358", + "n185964359", + "n185964360", + "n185964361", + "n185964362" + ] + }, + "w17965856": { + "id": "w17965856", + "tags": { + "highway": "residential", + "name": "West Kelsey Street" + }, + "nodes": ["n185971578", "n2208608800", "n185971580", "n185964351"] + }, + "w17967444": { + "id": "w17967444", + "tags": { + "highway": "residential", + "name": "East Street" + }, + "nodes": [ + "n185966937", + "n185978969", + "n185986155", + "n185985812", + "n185986157", + "n185960794", + "n185978784", + "n185975351", + "n185966957", + "n185986158" + ] + }, + "w17967764": { + "id": "w17967764", + "tags": { + "highway": "residential", + "name": "Rock River Avenue" + }, + "nodes": ["n185984017", "n185964351"] + }, + "w170848329": { + "id": "w170848329", + "tags": { + "leisure": "park", + "name": "LaFayette Park" + }, + "nodes": ["n1819849180", "n1819849115", "n1819848885", "n1819848921", "n1819849180"] + }, + "w17967208": { + "id": "w17967208", + "tags": { + "highway": "residential", + "name": "West Bennett Street" + }, + "nodes": ["n185978390", "n2208608795", "n185984020", "n185964353", "n185984281"] + }, + "w17965349": { + "id": "w17965349", + "tags": { + "highway": "residential", + "name": "East Prutzman Street" + }, + "nodes": ["n185966937", "n2208608827", "n185965289"] + }, + "w209717049": { + "id": "w209717049", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199109761", + "n2199109762", + "n2199109763", + "n2199109765", + "n2199109768", + "n2199109770", + "n2199109783", + "n2199109785", + "n2199109761" + ] + }, + "w203841840": { + "id": "w203841840", + "tags": { + "area": "yes", + "leisure": "playground" + }, + "nodes": ["n2138493840", "n2138493841", "n2138493842", "n2138493843", "n2138493840"] + }, + "w209717043": { + "id": "w209717043", + "tags": { + "amenity": "place_of_worship", + "area": "yes", + "building": "church", + "denomination": "methodist", + "name": "First United Methodist Church", + "religion": "christian" + }, + "nodes": [ + "n2199109640", + "n2199109642", + "n2199109645", + "n2199109648", + "n2199109650", + "n2199109652", + "n2199109654", + "n2199109656", + "n2199109658", + "n2199109660", + "n2199109662", + "n2199109665", + "n2199109667", + "n2199109669", + "n2199109671", + "n2199109673", + "n2199109640" + ] + }, + "w201484341": { + "id": "w201484341", + "tags": { + "amenity": "school", + "name": "Hoppin School" + }, + "nodes": ["n354002838", "n2114807579", "n2114807573", "n2114807590", "n354002838"] + }, + "w209717046": { + "id": "w209717046", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199109723", + "n2199109725", + "n2199109727", + "n2199109729", + "n2199109731", + "n2199109733", + "n2199109735", + "n2199109737", + "n2199109723" + ] + }, + "w210822777": { + "id": "w210822777", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2208608806", "n2208608808", "n2208608811", "n2208608821", "n2208608823", "n2208608825", "n2208608806"] + }, + "n185954965": { + "id": "n185954965", + "loc": [-85.6191189, 41.9441922] + }, + "n185954968": { + "id": "n185954968", + "loc": [-85.6194384, 41.9442405] + }, + "n185954970": { + "id": "n185954970", + "loc": [-85.6196543, 41.9443252] + }, + "n185954972": { + "id": "n185954972", + "loc": [-85.6197862, 41.9444539] + }, + "n354002931": { + "id": "n354002931", + "loc": [-85.6198991, 41.9455269] + }, + "n354030853": { + "id": "n354030853", + "loc": [-85.6219444, 41.9455556], + "tags": { + "amenity": "place_of_worship", + "name": "Grant Chapel", + "religion": "christian" + } + }, + "n367815963": { + "id": "n367815963", + "loc": [-85.6202778, 41.9461111], + "tags": { + "building": "yes", + "name": "George Washington Carver Community Center" + } + }, + "n185947331": { + "id": "n185947331", + "loc": [-85.618779, 41.943269] + }, + "n185947333": { + "id": "n185947333", + "loc": [-85.618795, 41.943511] + }, + "n185947336": { + "id": "n185947336", + "loc": [-85.618711, 41.94413] + }, + "n185947338": { + "id": "n185947338", + "loc": [-85.618704, 41.944189] + }, + "n185947339": { + "id": "n185947339", + "loc": [-85.618597, 41.944337] + }, + "n185947340": { + "id": "n185947340", + "loc": [-85.618485, 41.944528] + }, + "n185947343": { + "id": "n185947343", + "loc": [-85.618442, 41.944716] + }, + "n185947345": { + "id": "n185947345", + "loc": [-85.618457, 41.945107] + }, + "n185947347": { + "id": "n185947347", + "loc": [-85.618296, 41.945338] + }, + "n185947374": { + "id": "n185947374", + "loc": [-85.616748, 41.944453] + }, + "n185947375": { + "id": "n185947375", + "loc": [-85.616813, 41.944646] + }, + "n185947376": { + "id": "n185947376", + "loc": [-85.616859, 41.945196] + }, + "n185947377": { + "id": "n185947377", + "loc": [-85.616941, 41.945352] + }, + "n185947406": { + "id": "n185947406", + "loc": [-85.618184, 41.944227] + }, + "n185947409": { + "id": "n185947409", + "loc": [-85.617911, 41.943875] + }, + "n185947410": { + "id": "n185947410", + "loc": [-85.617579, 41.943682] + }, + "n185947411": { + "id": "n185947411", + "loc": [-85.61713, 41.943589] + }, + "n185947412": { + "id": "n185947412", + "loc": [-85.616549, 41.943559] + }, + "n185947414": { + "id": "n185947414", + "loc": [-85.616482, 41.943556] + }, + "n185947464": { + "id": "n185947464", + "loc": [-85.616526, 41.943788] + }, + "n185947466": { + "id": "n185947466", + "loc": [-85.616504, 41.944002] + }, + "n185948863": { + "id": "n185948863", + "loc": [-85.619017, 41.943391] + }, + "n185948865": { + "id": "n185948865", + "loc": [-85.619059, 41.943368] + }, + "n185955022": { + "id": "n185955022", + "loc": [-85.620088, 41.945571] + }, + "n185955025": { + "id": "n185955025", + "loc": [-85.620051, 41.945505] + }, + "n185955028": { + "id": "n185955028", + "loc": [-85.62001, 41.94541] + }, + "n185980371": { + "id": "n185980371", + "loc": [-85.620982, 41.944742] + }, + "n185980398": { + "id": "n185980398", + "loc": [-85.621305, 41.944782] + }, + "n185980401": { + "id": "n185980401", + "loc": [-85.621174, 41.944819] + }, + "n185980403": { + "id": "n185980403", + "loc": [-85.621029, 41.944871] + }, + "n185980405": { + "id": "n185980405", + "loc": [-85.620741, 41.945011] + }, + "n185980407": { + "id": "n185980407", + "loc": [-85.620616, 41.945085] + }, + "n185980409": { + "id": "n185980409", + "loc": [-85.620506, 41.945172] + }, + "n185980411": { + "id": "n185980411", + "loc": [-85.620394, 41.945273] + }, + "n185980413": { + "id": "n185980413", + "loc": [-85.620316, 41.94536] + }, + "n185980415": { + "id": "n185980415", + "loc": [-85.620257, 41.945452] + }, + "n185980417": { + "id": "n185980417", + "loc": [-85.620212, 41.945535] + }, + "n185985910": { + "id": "n185985910", + "loc": [-85.620101, 41.945811] + }, + "n185985912": { + "id": "n185985912", + "loc": [-85.620081, 41.945937] + }, + "n1475283972": { + "id": "n1475283972", + "loc": [-85.6198991, 41.9437179] + }, + "n1475283982": { + "id": "n1475283982", + "loc": [-85.6195022, 41.9433463] + }, + "n1475284007": { + "id": "n1475284007", + "loc": [-85.6193037, 41.9433383] + }, + "n1475284040": { + "id": "n1475284040", + "loc": [-85.6197329, 41.9434121] + }, + "n1475284044": { + "id": "n1475284044", + "loc": [-85.6198756, 41.9435363] + }, + "n1475284050": { + "id": "n1475284050", + "loc": [-85.6199689, 41.9432106] + }, + "n1475284053": { + "id": "n1475284053", + "loc": [-85.6198943, 41.9432921] + }, + "n185954974": { + "id": "n185954974", + "loc": [-85.6198296, 41.94473] + }, + "n185954977": { + "id": "n185954977", + "loc": [-85.6200474, 41.9447384] + }, + "n2196831365": { + "id": "n2196831365", + "loc": [-85.6202259, 41.9460883] + }, + "n2196831366": { + "id": "n2196831366", + "loc": [-85.6202245, 41.9458642] + }, + "n2196831367": { + "id": "n2196831367", + "loc": [-85.6205184, 41.9458631] + }, + "n2196831368": { + "id": "n2196831368", + "loc": [-85.6205189, 41.9459437] + }, + "n2196831369": { + "id": "n2196831369", + "loc": [-85.6203879, 41.9459441] + }, + "n2196831370": { + "id": "n2196831370", + "loc": [-85.6203888, 41.9460878] + }, + "n2196831371": { + "id": "n2196831371", + "loc": [-85.6184046, 41.9465663] + }, + "n2196831372": { + "id": "n2196831372", + "loc": [-85.6191563, 41.9465618] + }, + "n2196831373": { + "id": "n2196831373", + "loc": [-85.6191536, 41.946319] + }, + "n2196831374": { + "id": "n2196831374", + "loc": [-85.6187356, 41.9463216] + }, + "n2196831375": { + "id": "n2196831375", + "loc": [-85.6187334, 41.9461197] + }, + "n2196831376": { + "id": "n2196831376", + "loc": [-85.6193167, 41.9461162] + }, + "n2196831377": { + "id": "n2196831377", + "loc": [-85.6193156, 41.9460229] + }, + "n2196831378": { + "id": "n2196831378", + "loc": [-85.619622, 41.946021] + }, + "n2196831379": { + "id": "n2196831379", + "loc": [-85.6196237, 41.9461712] + }, + "n2196831380": { + "id": "n2196831380", + "loc": [-85.6197702, 41.9461703] + }, + "n2196831381": { + "id": "n2196831381", + "loc": [-85.6197685, 41.9460202] + }, + "n2196831382": { + "id": "n2196831382", + "loc": [-85.6197323, 41.9460204] + }, + "n2196831383": { + "id": "n2196831383", + "loc": [-85.6197305, 41.9458563] + }, + "n2196831384": { + "id": "n2196831384", + "loc": [-85.6196165, 41.945857] + }, + "n2196831385": { + "id": "n2196831385", + "loc": [-85.6196156, 41.9457764] + }, + "n2196831386": { + "id": "n2196831386", + "loc": [-85.6194472, 41.9457775] + }, + "n2196831387": { + "id": "n2196831387", + "loc": [-85.6194151, 41.9457777] + }, + "n2196831388": { + "id": "n2196831388", + "loc": [-85.6183779, 41.9457883] + }, + "n2196831389": { + "id": "n2196831389", + "loc": [-85.6183842, 41.9461317] + }, + "n2196831390": { + "id": "n2196831390", + "loc": [-85.6185026, 41.9461304] + }, + "n2196831391": { + "id": "n2196831391", + "loc": [-85.6185061, 41.9463194] + }, + "n2196831392": { + "id": "n2196831392", + "loc": [-85.6184001, 41.9463205] + }, + "n2196831393": { + "id": "n2196831393", + "loc": [-85.6182482, 41.9464163] + }, + "n2196831394": { + "id": "n2196831394", + "loc": [-85.6182467, 41.9463193] + }, + "n2196831395": { + "id": "n2196831395", + "loc": [-85.6180389, 41.946321] + }, + "n2196831397": { + "id": "n2196831397", + "loc": [-85.6180404, 41.946418] + }, + "n185947303": { + "id": "n185947303", + "loc": [-85.611074, 41.943389] + }, + "n185947304": { + "id": "n185947304", + "loc": [-85.611332, 41.943267] + }, + "n185947305": { + "id": "n185947305", + "loc": [-85.611635, 41.943218] + }, + "n185947306": { + "id": "n185947306", + "loc": [-85.612762, 41.943311] + }, + "n185947308": { + "id": "n185947308", + "loc": [-85.613027, 41.943327] + }, + "n185947310": { + "id": "n185947310", + "loc": [-85.615377, 41.942996] + }, + "n185947312": { + "id": "n185947312", + "loc": [-85.615701, 41.943007] + }, + "n185947314": { + "id": "n185947314", + "loc": [-85.61604, 41.943067] + }, + "n185947315": { + "id": "n185947315", + "loc": [-85.61626, 41.943083] + }, + "n185947316": { + "id": "n185947316", + "loc": [-85.616507, 41.943048] + }, + "n185947319": { + "id": "n185947319", + "loc": [-85.616702, 41.94299] + }, + "n185947321": { + "id": "n185947321", + "loc": [-85.617078, 41.942918] + }, + "n185947322": { + "id": "n185947322", + "loc": [-85.617366, 41.942973] + }, + "n185947323": { + "id": "n185947323", + "loc": [-85.617601, 41.943033] + }, + "n185947325": { + "id": "n185947325", + "loc": [-85.617799, 41.943027] + }, + "n185947327": { + "id": "n185947327", + "loc": [-85.618264, 41.942961] + }, + "n185947328": { + "id": "n185947328", + "loc": [-85.618508, 41.942972] + }, + "n185947329": { + "id": "n185947329", + "loc": [-85.618707, 41.943076] + }, + "n185947361": { + "id": "n185947361", + "loc": [-85.615356, 41.944922] + }, + "n185947363": { + "id": "n185947363", + "loc": [-85.61536, 41.944893] + }, + "n185947365": { + "id": "n185947365", + "loc": [-85.615406, 41.944547] + }, + "n185947367": { + "id": "n185947367", + "loc": [-85.61548, 41.944351] + }, + "n185947369": { + "id": "n185947369", + "loc": [-85.615805, 41.94419] + }, + "n185947371": { + "id": "n185947371", + "loc": [-85.616166, 41.944156] + }, + "n185947373": { + "id": "n185947373", + "loc": [-85.616411, 41.944197] + }, + "n185947416": { + "id": "n185947416", + "loc": [-85.616335, 41.94343] + }, + "n185947417": { + "id": "n185947417", + "loc": [-85.616069, 41.943293] + }, + "n185947419": { + "id": "n185947419", + "loc": [-85.615803, 41.943249] + }, + "n185947420": { + "id": "n185947420", + "loc": [-85.615524, 41.943342] + }, + "n185947421": { + "id": "n185947421", + "loc": [-85.615311, 41.94353] + }, + "n185947422": { + "id": "n185947422", + "loc": [-85.614338, 41.943558] + }, + "n185947423": { + "id": "n185947423", + "loc": [-85.61422, 41.94369] + }, + "n185947425": { + "id": "n185947425", + "loc": [-85.614221, 41.944224] + }, + "n185947427": { + "id": "n185947427", + "loc": [-85.614198, 41.944888] + }, + "n185947429": { + "id": "n185947429", + "loc": [-85.614221, 41.945439] + }, + "n185947468": { + "id": "n185947468", + "loc": [-85.615908, 41.944756] + }, + "n185947470": { + "id": "n185947470", + "loc": [-85.615871, 41.944888] + }, + "n185947472": { + "id": "n185947472", + "loc": [-85.615878, 41.94507] + }, + "n185955153": { + "id": "n185955153", + "loc": [-85.620087, 41.947701] + }, + "n185960690": { + "id": "n185960690", + "loc": [-85.620141, 41.951901] + }, + "n185978817": { + "id": "n185978817", + "loc": [-85.617193, 41.954706] + }, + "n185985916": { + "id": "n185985916", + "loc": [-85.620088, 41.94758] + }, + "n185985918": { + "id": "n185985918", + "loc": [-85.620133, 41.951538] + }, + "n185985919": { + "id": "n185985919", + "loc": [-85.62013, 41.952104] + }, + "n185985920": { + "id": "n185985920", + "loc": [-85.620104, 41.952305] + }, + "n185985921": { + "id": "n185985921", + "loc": [-85.620062, 41.952499] + }, + "n185985922": { + "id": "n185985922", + "loc": [-85.619993, 41.952702] + }, + "n185985925": { + "id": "n185985925", + "loc": [-85.619879, 41.952986] + }, + "n185985927": { + "id": "n185985927", + "loc": [-85.619689, 41.95329] + }, + "n185985928": { + "id": "n185985928", + "loc": [-85.619508, 41.953521] + }, + "n185985929": { + "id": "n185985929", + "loc": [-85.619286, 41.953728] + }, + "n185985930": { + "id": "n185985930", + "loc": [-85.618925, 41.954007] + }, + "n185985931": { + "id": "n185985931", + "loc": [-85.618638, 41.954189] + }, + "n185985932": { + "id": "n185985932", + "loc": [-85.61831, 41.954358] + }, + "n185985934": { + "id": "n185985934", + "loc": [-85.618015, 41.954485] + }, + "n185985936": { + "id": "n185985936", + "loc": [-85.617606, 41.954611] + }, + "n1475283975": { + "id": "n1475283975", + "loc": [-85.6150935, 41.9434118] + }, + "n1475283979": { + "id": "n1475283979", + "loc": [-85.6193367, 41.9430252] + }, + "n1475283989": { + "id": "n1475283989", + "loc": [-85.6104771, 41.9455269] + }, + "n1475283990": { + "id": "n1475283990", + "loc": [-85.6104771, 41.9437179] + }, + "n1475283994": { + "id": "n1475283994", + "loc": [-85.6198042, 41.9429763] + }, + "n1475283998": { + "id": "n1475283998", + "loc": [-85.6192101, 41.9426716] + }, + "n1475284000": { + "id": "n1475284000", + "loc": [-85.6198622, 41.942836] + }, + "n1475284002": { + "id": "n1475284002", + "loc": [-85.6163262, 41.9427688] + }, + "n1475284006": { + "id": "n1475284006", + "loc": [-85.6179527, 41.9429168] + }, + "n1475284029": { + "id": "n1475284029", + "loc": [-85.6197195, 41.9427278] + }, + "n1475284038": { + "id": "n1475284038", + "loc": [-85.6194405, 41.9427837] + }, + "n1475284052": { + "id": "n1475284052", + "loc": [-85.6153225, 41.942841] + }, + "n1475284055": { + "id": "n1475284055", + "loc": [-85.6129233, 41.9437179] + }, + "n2139966627": { + "id": "n2139966627", + "loc": [-85.61958, 41.9427558] + }, + "w17966773": { + "id": "w17966773", + "tags": { + "highway": "secondary", + "name": "East Michigan Avenue", + "ref": "M 60" + }, + "nodes": [ + "n185980372", + "n185980398", + "n185980401", + "n185980403", + "n185980405", + "n185980407", + "n185980409", + "n185980411", + "n185980413", + "n185980415", + "n185980417", + "n185955019" + ] + }, + "w17964043": { + "id": "w17964043", + "tags": { + "highway": "residential" + }, + "nodes": [ + "n185955019", + "n185955022", + "n185955025", + "n185955028", + "n185954977", + "n185971477", + "n1475284050", + "n1475284000", + "n1475284029", + "n2139966627", + "n1475284038" + ] + }, + "w17962834": { + "id": "w17962834", + "tags": { + "highway": "service" + }, + "nodes": [ + "n185947316", + "n185947414", + "n185947464", + "n185947466", + "n185947373", + "n185947468", + "n185947470", + "n185947472", + "n185947474" + ] + }, + "w209470310": { + "id": "w209470310", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2196831393", "n2196831394", "n2196831395", "n2196831397", "n2196831393"] + }, + "w17963058": { + "id": "w17963058", + "tags": { + "highway": "service" + }, + "nodes": ["n185947333", "n185948863", "n185948865", "n1475284007", "n1475283982", "n1475284040", "n1475284044"] + }, + "w17962823": { + "id": "w17962823", + "tags": { + "highway": "service" + }, + "nodes": [ + "n185947359", + "n185947361", + "n185947363", + "n185947365", + "n185947367", + "n185947369", + "n185947371", + "n185947373", + "n185947374", + "n185947375", + "n185947376", + "n185947377", + "n185947378" + ] + }, + "w17962821": { + "id": "w17962821", + "tags": { + "highway": "service" + }, + "nodes": [ + "n185947303", + "n185947304", + "n185947305", + "n185947306", + "n185947308", + "n185947310", + "n185947312", + "n185947314", + "n185947315", + "n185947316", + "n185947319", + "n185947321", + "n185947322", + "n185947323", + "n185947325", + "n185947327", + "n185947328", + "n185947329", + "n185947331", + "n185947333", + "n185947336", + "n185947338", + "n185947339", + "n185947340", + "n185947343", + "n185947345", + "n185947347", + "n185947349" + ] + }, + "w134150798": { + "id": "w134150798", + "tags": { + "amenity": "grave_yard", + "name": "Riverside Cemetery" + }, + "nodes": [ + "n354002931", + "n1475283972", + "n1475284053", + "n1475283994", + "n1475283979", + "n1475283998", + "n1475284006", + "n1475284002", + "n1475284052", + "n1475283975", + "n1475284055", + "n1475283990", + "n1475283989", + "n354002931" + ] + }, + "w17964040": { + "id": "w17964040", + "tags": { + "highway": "service" + }, + "nodes": ["n185947336", "n185954965", "n185954968", "n185954970", "n185954972", "n185954974", "n185954977"] + }, + "w209470308": { + "id": "w209470308", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2196831365", "n2196831366", "n2196831367", "n2196831368", "n2196831369", "n2196831370", "n2196831365"] + }, + "w17962828": { + "id": "w17962828", + "tags": { + "highway": "service" + }, + "nodes": [ + "n185947340", + "n185947406", + "n185947409", + "n185947410", + "n185947411", + "n185947412", + "n185947414", + "n185947416", + "n185947417", + "n185947419", + "n185947420", + "n185947421", + "n185947422", + "n185947423", + "n185947425", + "n185947427", + "n185947429" + ] + }, + "w209470309": { + "id": "w209470309", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2196831371", + "n2196831372", + "n2196831373", + "n2196831374", + "n2196831375", + "n2196831376", + "n2196831377", + "n2196831378", + "n2196831379", + "n2196831380", + "n2196831381", + "n2196831382", + "n2196831383", + "n2196831384", + "n2196831385", + "n2196831386", + "n2196831387", + "n2196831388", + "n2196831389", + "n2196831390", + "n2196831391", + "n2196831392", + "n2196831371" + ] + }, + "w17967415": { + "id": "w17967415", + "tags": { + "highway": "secondary", + "name": "Jefferson Street", + "name_1": "State Highway 60", + "ref": "M 60" + }, + "nodes": [ + "n185955019", + "n185985910", + "n185985912", + "n185985914", + "n185961367", + "n185985916", + "n185955153", + "n185965105", + "n185974697", + "n185955120", + "n185985918", + "n185960690", + "n185985919", + "n185985920", + "n185985921", + "n185985922", + "n185985925", + "n185985927", + "n185985928", + "n185985929", + "n185985930", + "n185985931", + "n185985932", + "n185985934", + "n185985936", + "n185978817" + ] + }, + "w17966772": { + "id": "w17966772", + "tags": { + "highway": "unclassified", + "name": "East Michigan Avenue", + "name_1": "State Highway 60" + }, + "nodes": ["n185954977", "n185980371", "n185980372"] + }, + "n185958500": { + "id": "n185958500", + "loc": [-85.621591, 41.941075] + }, + "n185963110": { + "id": "n185963110", + "loc": [-85.6204416, 41.9408882] + }, + "n2139966628": { + "id": "n2139966628", + "loc": [-85.6196431, 41.9426467], + "tags": { + "leisure": "fishing" + } + }, + "n2139966630": { + "id": "n2139966630", + "loc": [-85.6199354, 41.9429616] + }, + "n2199127051": { + "id": "n2199127051", + "loc": [-85.6170556, 41.939696] + }, + "n2199127052": { + "id": "n2199127052", + "loc": [-85.6170536, 41.9392909] + }, + "n2199127053": { + "id": "n2199127053", + "loc": [-85.6172067, 41.9392905] + }, + "n2199127054": { + "id": "n2199127054", + "loc": [-85.6172061, 41.9391853] + }, + "n2199127055": { + "id": "n2199127055", + "loc": [-85.6171481, 41.9391854] + }, + "n2199127060": { + "id": "n2199127060", + "loc": [-85.6167389, 41.9392896] + }, + "n2199127061": { + "id": "n2199127061", + "loc": [-85.6168728, 41.9392892] + }, + "n2199127062": { + "id": "n2199127062", + "loc": [-85.6168747, 41.9396965] + }, + "n2199127071": { + "id": "n2199127071", + "loc": [-85.620196, 41.9399446] + }, + "n2199127072": { + "id": "n2199127072", + "loc": [-85.620193, 41.9397316] + }, + "n2199127073": { + "id": "n2199127073", + "loc": [-85.6200381, 41.9397328] + }, + "n2199127074": { + "id": "n2199127074", + "loc": [-85.6200412, 41.9399458] + }, + "n2199127075": { + "id": "n2199127075", + "loc": [-85.6203606, 41.9399939] + }, + "n2199127076": { + "id": "n2199127076", + "loc": [-85.6205527, 41.9399922] + }, + "n2199127077": { + "id": "n2199127077", + "loc": [-85.6205482, 41.9397115] + }, + "n2199127078": { + "id": "n2199127078", + "loc": [-85.6204132, 41.9397124] + }, + "n2199127079": { + "id": "n2199127079", + "loc": [-85.6204144, 41.9396341] + }, + "n2199127080": { + "id": "n2199127080", + "loc": [-85.6205699, 41.9396324] + }, + "n2199127081": { + "id": "n2199127081", + "loc": [-85.6205722, 41.939498] + }, + "n2199127082": { + "id": "n2199127082", + "loc": [-85.6204064, 41.9394997] + }, + "n2199127083": { + "id": "n2199127083", + "loc": [-85.6204087, 41.939561] + }, + "n2199127084": { + "id": "n2199127084", + "loc": [-85.6203103, 41.9395618] + }, + "n2199127085": { + "id": "n2199127085", + "loc": [-85.620308, 41.9396069] + }, + "n2199127086": { + "id": "n2199127086", + "loc": [-85.6200347, 41.9396086] + }, + "n2199127087": { + "id": "n2199127087", + "loc": [-85.6200382, 41.9397141] + }, + "n2199127088": { + "id": "n2199127088", + "loc": [-85.6202257, 41.9397149] + }, + "n2199127089": { + "id": "n2199127089", + "loc": [-85.6202269, 41.9399182] + }, + "n2199127090": { + "id": "n2199127090", + "loc": [-85.6203595, 41.9399199] + }, + "n2199127091": { + "id": "n2199127091", + "loc": [-85.6212335, 41.939688] + }, + "n2199127092": { + "id": "n2199127092", + "loc": [-85.6212328, 41.939595] + }, + "n2199127093": { + "id": "n2199127093", + "loc": [-85.6208807, 41.9395966] + }, + "n2199127094": { + "id": "n2199127094", + "loc": [-85.6208815, 41.9396896] + }, + "n2199127095": { + "id": "n2199127095", + "loc": [-85.6208676, 41.9396872] + }, + "n2199127096": { + "id": "n2199127096", + "loc": [-85.6208583, 41.9393539] + }, + "n2199127097": { + "id": "n2199127097", + "loc": [-85.6207006, 41.9393563] + }, + "n2199127098": { + "id": "n2199127098", + "loc": [-85.6207099, 41.9396896] + }, + "n185967054": { + "id": "n185967054", + "loc": [-85.6173384, 41.9356126] + }, + "n185967063": { + "id": "n185967063", + "loc": [-85.617371, 41.936243] + }, + "n185967065": { + "id": "n185967065", + "loc": [-85.617337, 41.936299] + }, + "n185967068": { + "id": "n185967068", + "loc": [-85.617321, 41.936373] + }, + "n185967070": { + "id": "n185967070", + "loc": [-85.6173562, 41.9366969] + }, + "n185967074": { + "id": "n185967074", + "loc": [-85.6173635, 41.9377414] + }, + "n185967075": { + "id": "n185967075", + "loc": [-85.6173696, 41.9381886] + }, + "n185967076": { + "id": "n185967076", + "loc": [-85.617372, 41.938535] + }, + "n2199127056": { + "id": "n2199127056", + "loc": [-85.617147, 41.9389616] + }, + "n2199127057": { + "id": "n2199127057", + "loc": [-85.6172136, 41.9389614] + }, + "n2199127058": { + "id": "n2199127058", + "loc": [-85.6172123, 41.9386909] + }, + "n2199127059": { + "id": "n2199127059", + "loc": [-85.616736, 41.9386922] + }, + "n2203921041": { + "id": "n2203921041", + "loc": [-85.6173018, 41.9346369] + }, + "w203983952": { + "id": "w203983952", + "tags": { + "highway": "service" + }, + "nodes": ["n2139966627", "n1819800319"] + }, + "w209718301": { + "id": "w209718301", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199127051", + "n2199127052", + "n2199127053", + "n2199127054", + "n2199127055", + "n2199127056", + "n2199127057", + "n2199127058", + "n2199127059", + "n2199127060", + "n2199127061", + "n2199127062", + "n2199127051" + ] + }, + "w209718304": { + "id": "w209718304", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199127071", "n2199127072", "n2199127073", "n2199127074", "n2199127071"] + }, + "w17964961": { + "id": "w17964961", + "tags": { + "highway": "residential", + "name": "Whipple Street" + }, + "nodes": ["n185963099", "n185963110"] + }, + "w17964489": { + "id": "w17964489", + "tags": { + "highway": "residential", + "name": "Jackson Street" + }, + "nodes": ["n185958498", "n185958500"] + }, + "w203983953": { + "id": "w203983953", + "tags": { + "area": "yes", + "leisure": "park", + "name": "Marina Park" + }, + "nodes": [ + "n1475283994", + "n1475283979", + "n1475283998", + "n2139966629", + "n2139966625", + "n1819800319", + "n2139966623", + "n2139966622", + "n2139966621", + "n2139966630", + "n1475283994" + ] + }, + "w17965366": { + "id": "w17965366", + "tags": { + "highway": "residential", + "name": "14th Street" + }, + "nodes": [ + "n2203921041", + "n185967054", + "n185967063", + "n185967065", + "n185967068", + "n185967070", + "n185967074", + "n185967075", + "n185967076", + "n185967077" + ] + }, + "w209718306": { + "id": "w209718306", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199127091", "n2199127092", "n2199127093", "n2199127094", "n2199127091"] + }, + "w209718307": { + "id": "w209718307", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199127095", "n2199127096", "n2199127097", "n2199127098", "n2199127095"] + }, + "w209718305": { + "id": "w209718305", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2199127075", + "n2199127076", + "n2199127077", + "n2199127078", + "n2199127079", + "n2199127080", + "n2199127081", + "n2199127082", + "n2199127083", + "n2199127084", + "n2199127085", + "n2199127086", + "n2199127087", + "n2199127088", + "n2199127089", + "n2199127090", + "n2199127075" + ] + }, + "n185960199": { + "id": "n185960199", + "loc": [-85.62965, 41.95469] + }, + "n185980737": { + "id": "n185980737", + "loc": [-85.629083, 41.953725] + }, + "n2114807561": { + "id": "n2114807561", + "loc": [-85.6297681, 41.9524688] + }, + "n2114807597": { + "id": "n2114807597", + "loc": [-85.6296517, 41.952563] + }, + "n185960197": { + "id": "n185960197", + "loc": [-85.629676, 41.9537314] + }, + "n185978791": { + "id": "n185978791", + "loc": [-85.6244542, 41.9547066] + }, + "w17967573": { + "id": "w17967573", + "tags": { + "highway": "residential", + "name": "East Wheeler Street" + }, + "nodes": ["n185960195", "n2114807561", "n185968102", "n185967430", "n185986157", "n185978392"] + }, + "w17966553": { + "id": "w17966553", + "tags": { + "highway": "residential", + "name": "East Hoffman Street" + }, + "nodes": ["n185971631", "n185978784", "n185967432", "n185968106", "n185960199", "n185978787", "n185978790", "n185978791"] + }, + "w17966787": { + "id": "w17966787", + "tags": { + "highway": "residential", + "name": "East Cushman Street" + }, + "nodes": ["n185980735", "n185980737", "n185960197", "n185968104", "n185960792"] + }, + "w17964723": { + "id": "w17964723", + "tags": { + "highway": "residential", + "name": "Cushman Street" + }, + "nodes": ["n185960792", "n185960794", "n185960796"] + }, + "w17964654": { + "id": "w17964654", + "tags": { + "highway": "residential", + "name": "Pine Street" + }, + "nodes": ["n185960195", "n2114807597", "n185960197", "n185960199"] + }, + "n1819848862": { + "id": "n1819848862", + "loc": [-85.6346087, 41.9545845] + }, + "n1819848935": { + "id": "n1819848935", + "loc": [-85.6345948, 41.9537717] + }, + "n1819848973": { + "id": "n1819848973", + "loc": [-85.6334247, 41.9537827] + }, + "n1819848997": { + "id": "n1819848997", + "loc": [-85.6334386, 41.9545956] + }, + "n2189015861": { + "id": "n2189015861", + "loc": [-85.6375906, 41.954836] + }, + "n2189015865": { + "id": "n2189015865", + "loc": [-85.6383307, 41.9548291] + }, + "n2189015867": { + "id": "n2189015867", + "loc": [-85.6383337, 41.9550072] + }, + "n2189015868": { + "id": "n2189015868", + "loc": [-85.6380986, 41.9550094] + }, + "n2189015869": { + "id": "n2189015869", + "loc": [-85.6381005, 41.9551226] + }, + "n2199109808": { + "id": "n2199109808", + "loc": [-85.6372702, 41.9522894] + }, + "n2199109810": { + "id": "n2199109810", + "loc": [-85.6372677, 41.9521583] + }, + "n2199109812": { + "id": "n2199109812", + "loc": [-85.6369505, 41.9521617] + }, + "n2199109814": { + "id": "n2199109814", + "loc": [-85.636953, 41.9522927] + }, + "n185952156": { + "id": "n185952156", + "loc": [-85.640983, 41.9546557] + }, + "n185953423": { + "id": "n185953423", + "loc": [-85.641871, 41.954652] + }, + "n185971637": { + "id": "n185971637", + "loc": [-85.641583, 41.95465] + }, + "n185971639": { + "id": "n185971639", + "loc": [-85.6421344, 41.9546444] + }, + "n185971642": { + "id": "n185971642", + "loc": [-85.6428264, 41.9545612] + }, + "n185971648": { + "id": "n185971648", + "loc": [-85.6436023, 41.9544262] + }, + "n185975066": { + "id": "n185975066", + "loc": [-85.640532, 41.953638] + }, + "n185975067": { + "id": "n185975067", + "loc": [-85.64079, 41.953638] + }, + "n185982166": { + "id": "n185982166", + "loc": [-85.6399012, 41.9523817] + }, + "n2189015858": { + "id": "n2189015858", + "loc": [-85.6376104, 41.9560138] + }, + "n2189015870": { + "id": "n2189015870", + "loc": [-85.6386794, 41.9551172] + }, + "n2189015871": { + "id": "n2189015871", + "loc": [-85.6386817, 41.955256] + }, + "n2189015873": { + "id": "n2189015873", + "loc": [-85.6385437, 41.9552573] + }, + "n2189015876": { + "id": "n2189015876", + "loc": [-85.638555, 41.9559278] + }, + "n2189015879": { + "id": "n2189015879", + "loc": [-85.6384954, 41.9559283] + }, + "n2189015882": { + "id": "n2189015882", + "loc": [-85.6384965, 41.9559935] + }, + "n2189015885": { + "id": "n2189015885", + "loc": [-85.6383533, 41.9559949] + }, + "n2189015888": { + "id": "n2189015888", + "loc": [-85.638351, 41.9558607] + }, + "n2189015891": { + "id": "n2189015891", + "loc": [-85.6382178, 41.9558619] + }, + "n2189015894": { + "id": "n2189015894", + "loc": [-85.6382203, 41.956008] + }, + "w208627223": { + "id": "w208627223", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189015858", + "n2189015861", + "n2189015865", + "n2189015867", + "n2189015868", + "n2189015869", + "n2189015870", + "n2189015871", + "n2189015873", + "n2189015876", + "n2189015879", + "n2189015882", + "n2189015885", + "n2189015888", + "n2189015891", + "n2189015894", + "n2189015858" + ] + }, + "w170848328": { + "id": "w170848328", + "tags": { + "leisure": "park", + "name": "Bowman Park" + }, + "nodes": ["n1819848935", "n1819848973", "n1819848997", "n1819848862", "n1819848935"] + }, + "w17965866": { + "id": "w17965866", + "tags": { + "highway": "residential", + "name": "West Hoffman Street" + }, + "nodes": [ + "n185971631", + "n185971632", + "n185964359", + "n185965025", + "n1475293264", + "n185952156", + "n185971637", + "n185953423", + "n185971639", + "n185971642", + "n185971648" + ] + }, + "w209717051": { + "id": "w209717051", + "tags": { + "amenity": "place_of_worship", + "area": "yes", + "building": "yes", + "denomination": "baptist", + "name": "Calvary Missionary Baptist Church", + "religion": "christian" + }, + "nodes": ["n2199109808", "n2199109810", "n2199109812", "n2199109814", "n2199109808"] + }, + "w17966172": { + "id": "w17966172", + "tags": { + "highway": "residential", + "name": "West Cushman Street" + }, + "nodes": ["n185960796", "n185975064", "n185964358", "n185965023", "n1475293222", "n185975066", "n185975067"] + }, + "w17966975": { + "id": "w17966975", + "tags": { + "highway": "residential", + "name": "West Wheeler Street" + }, + "nodes": ["n185978392", "n185982163", "n185964357", "n185965021", "n1475293261", "n185982166"] + }, + "n185960684": { + "id": "n185960684", + "loc": [-85.622687, 41.951885] + }, + "n185960686": { + "id": "n185960686", + "loc": [-85.622492, 41.951901] + }, + "n185978795": { + "id": "n185978795", + "loc": [-85.6240991, 41.954708] + }, + "n185978803": { + "id": "n185978803", + "loc": [-85.623348, 41.954547] + }, + "n185978806": { + "id": "n185978806", + "loc": [-85.623123, 41.954502] + }, + "n185978808": { + "id": "n185978808", + "loc": [-85.622923, 41.954469] + }, + "n185978810": { + "id": "n185978810", + "loc": [-85.622787, 41.954457] + }, + "n185978811": { + "id": "n185978811", + "loc": [-85.622612, 41.954458] + }, + "n185978813": { + "id": "n185978813", + "loc": [-85.622368, 41.954472] + }, + "n1819790545": { + "id": "n1819790545", + "loc": [-85.6240295, 41.9548949] + }, + "n1819790621": { + "id": "n1819790621", + "loc": [-85.6235789, 41.954855] + }, + "n1819790664": { + "id": "n1819790664", + "loc": [-85.6238363, 41.9549507] + }, + "n1819790683": { + "id": "n1819790683", + "loc": [-85.6224727, 41.9545921] + }, + "n1819790730": { + "id": "n1819790730", + "loc": [-85.6227527, 41.9545795] + }, + "n1819790740": { + "id": "n1819790740", + "loc": [-85.6240402, 41.9550784] + }, + "n1819790831": { + "id": "n1819790831", + "loc": [-85.624126, 41.9549986] + }, + "n1819790861": { + "id": "n1819790861", + "loc": [-85.6231712, 41.9546872] + }, + "n1819790887": { + "id": "n1819790887", + "loc": [-85.6242762, 41.955206] + }, + "n2168544739": { + "id": "n2168544739", + "loc": [-85.6249102, 41.952801] + }, + "n2168544740": { + "id": "n2168544740", + "loc": [-85.6251859, 41.9527564] + }, + "n2168544741": { + "id": "n2168544741", + "loc": [-85.6255515, 41.9527921] + }, + "n2168544742": { + "id": "n2168544742", + "loc": [-85.626001, 41.9529481] + }, + "n2168544743": { + "id": "n2168544743", + "loc": [-85.6265284, 41.9529838] + }, + "n2168544744": { + "id": "n2168544744", + "loc": [-85.626942, 41.9528857] + }, + "n2168544745": { + "id": "n2168544745", + "loc": [-85.6270918, 41.9526851] + }, + "n2168544746": { + "id": "n2168544746", + "loc": [-85.6272117, 41.95244] + }, + "n2168544747": { + "id": "n2168544747", + "loc": [-85.6271578, 41.952226] + }, + "n2168544748": { + "id": "n2168544748", + "loc": [-85.6270019, 41.9519719] + }, + "n2168544749": { + "id": "n2168544749", + "loc": [-85.6268221, 41.9518382] + }, + "n2168544750": { + "id": "n2168544750", + "loc": [-85.6265284, 41.951807] + }, + "n2168544751": { + "id": "n2168544751", + "loc": [-85.6256534, 41.9518516] + }, + "n2168544752": { + "id": "n2168544752", + "loc": [-85.6253477, 41.9518338] + }, + "n2168544753": { + "id": "n2168544753", + "loc": [-85.6251139, 41.9517669] + }, + "n185955747": { + "id": "n185955747", + "loc": [-85.620674, 41.954709] + }, + "n185960688": { + "id": "n185960688", + "loc": [-85.621032, 41.951913] + }, + "n185972054": { + "id": "n185972054", + "loc": [-85.6186728, 41.9547335] + }, + "n185978814": { + "id": "n185978814", + "loc": [-85.6201708, 41.9547403] + }, + "n1819790532": { + "id": "n1819790532", + "loc": [-85.6244908, 41.9555731] + }, + "n1819790536": { + "id": "n1819790536", + "loc": [-85.6217925, 41.9583135] + }, + "n1819790538": { + "id": "n1819790538", + "loc": [-85.6233954, 41.9600014] + }, + "n1819790539": { + "id": "n1819790539", + "loc": [-85.6204611, 41.9562117] + }, + "n1819790546": { + "id": "n1819790546", + "loc": [-85.6210898, 41.9567657] + }, + "n1819790548": { + "id": "n1819790548", + "loc": [-85.6202465, 41.9562237] + }, + "n1819790550": { + "id": "n1819790550", + "loc": [-85.6250165, 41.9560677] + }, + "n1819790551": { + "id": "n1819790551", + "loc": [-85.6227946, 41.9597023] + }, + "n1819790553": { + "id": "n1819790553", + "loc": [-85.6215726, 41.9584571] + }, + "n1819790556": { + "id": "n1819790556", + "loc": [-85.6196306, 41.9573002] + }, + "n1819790557": { + "id": "n1819790557", + "loc": [-85.6209503, 41.9563109] + }, + "n1819790558": { + "id": "n1819790558", + "loc": [-85.6196939, 41.9574085] + }, + "n1819790561": { + "id": "n1819790561", + "loc": [-85.621079, 41.957751] + }, + "n1819790562": { + "id": "n1819790562", + "loc": [-85.6224255, 41.9611417] + }, + "n1819790565": { + "id": "n1819790565", + "loc": [-85.6232506, 41.9604841] + }, + "n1819790566": { + "id": "n1819790566", + "loc": [-85.6190835, 41.9562909] + }, + "n1819790567": { + "id": "n1819790567", + "loc": [-85.622227, 41.9593028] + }, + "n1819790569": { + "id": "n1819790569", + "loc": [-85.620976, 41.9591039] + }, + "n1819790571": { + "id": "n1819790571", + "loc": [-85.6212078, 41.9565303] + }, + "n1819790572": { + "id": "n1819790572", + "loc": [-85.6235306, 41.9595102] + }, + "n1819790581": { + "id": "n1819790581", + "loc": [-85.6235563, 41.9579351] + }, + "n1819790584": { + "id": "n1819790584", + "loc": [-85.6230371, 41.9574598] + }, + "n1819790586": { + "id": "n1819790586", + "loc": [-85.6211748, 41.9564272] + }, + "n1819790588": { + "id": "n1819790588", + "loc": [-85.6226508, 41.9601086] + }, + "n1819790591": { + "id": "n1819790591", + "loc": [-85.6218032, 41.9607468] + }, + "n1819790593": { + "id": "n1819790593", + "loc": [-85.6207915, 41.9618735] + }, + "n1819790596": { + "id": "n1819790596", + "loc": [-85.6252955, 41.9567858] + }, + "n1819790598": { + "id": "n1819790598", + "loc": [-85.6196618, 41.9568939] + }, + "n1819790600": { + "id": "n1819790600", + "loc": [-85.6224416, 41.9587084] + }, + "n1819790602": { + "id": "n1819790602", + "loc": [-85.6217442, 41.9558641] + }, + "n1819790603": { + "id": "n1819790603", + "loc": [-85.6213355, 41.9592116] + }, + "n1819790604": { + "id": "n1819790604", + "loc": [-85.622801, 41.9573042] + }, + "n1819790608": { + "id": "n1819790608", + "loc": [-85.6199729, 41.9574325] + }, + "n1819790610": { + "id": "n1819790610", + "loc": [-85.6195555, 41.9557165] + }, + "n1819790611": { + "id": "n1819790611", + "loc": [-85.622978, 41.9586007] + }, + "n1819790613": { + "id": "n1819790613", + "loc": [-85.6253963, 41.9562636] + }, + "n1819790614": { + "id": "n1819790614", + "loc": [-85.6235252, 41.9580342] + }, + "n1819790616": { + "id": "n1819790616", + "loc": [-85.6232988, 41.9596305] + }, + "n1819790617": { + "id": "n1819790617", + "loc": [-85.6226776, 41.9598732] + }, + "n1819790619": { + "id": "n1819790619", + "loc": [-85.625553, 41.9561794] + }, + "n1819790620": { + "id": "n1819790620", + "loc": [-85.6235574, 41.959231] + }, + "n1819790624": { + "id": "n1819790624", + "loc": [-85.6228429, 41.9573726] + }, + "n1819790626": { + "id": "n1819790626", + "loc": [-85.6193785, 41.9556766] + }, + "n1819790628": { + "id": "n1819790628", + "loc": [-85.620092, 41.9554253] + }, + "n1819790630": { + "id": "n1819790630", + "loc": [-85.6226658, 41.9604402] + }, + "n1819790638": { + "id": "n1819790638", + "loc": [-85.6219964, 41.9602561] + }, + "n1819790640": { + "id": "n1819790640", + "loc": [-85.6232731, 41.9599969] + }, + "n1819790643": { + "id": "n1819790643", + "loc": [-85.6247698, 41.9568895] + }, + "n1819790650": { + "id": "n1819790650", + "loc": [-85.6216412, 41.9550149] + }, + "n1819790652": { + "id": "n1819790652", + "loc": [-85.6224952, 41.9603918] + }, + "n1819790656": { + "id": "n1819790656", + "loc": [-85.61918, 41.9555649] + }, + "n1819790661": { + "id": "n1819790661", + "loc": [-85.6200169, 41.955505] + }, + "n1819790662": { + "id": "n1819790662", + "loc": [-85.6217389, 41.9563149] + }, + "n1819790666": { + "id": "n1819790666", + "loc": [-85.6229566, 41.9598373] + }, + "n1819790667": { + "id": "n1819790667", + "loc": [-85.6209117, 41.9609189] + }, + "n1819790669": { + "id": "n1819790669", + "loc": [-85.6252311, 41.9562353] + }, + "n1819790670": { + "id": "n1819790670", + "loc": [-85.6209758, 41.961868] + }, + "n1819790672": { + "id": "n1819790672", + "loc": [-85.6209557, 41.9589078] + }, + "n1819790673": { + "id": "n1819790673", + "loc": [-85.6190352, 41.9561393] + }, + "n1819790675": { + "id": "n1819790675", + "loc": [-85.6236432, 41.9586685] + }, + "n1819790676": { + "id": "n1819790676", + "loc": [-85.6194901, 41.9565389] + }, + "n1819790678": { + "id": "n1819790678", + "loc": [-85.6219266, 41.9582417] + }, + "n1819790680": { + "id": "n1819790680", + "loc": [-85.6208258, 41.9557211] + }, + "n1819790681": { + "id": "n1819790681", + "loc": [-85.6212024, 41.9613212] + }, + "n1819790682": { + "id": "n1819790682", + "loc": [-85.624877, 41.9559401] + }, + "n1819790684": { + "id": "n1819790684", + "loc": [-85.6206499, 41.9583693] + }, + "n1819790699": { + "id": "n1819790699", + "loc": [-85.6215243, 41.956279] + }, + "n1819790701": { + "id": "n1819790701", + "loc": [-85.6246625, 41.9559321] + }, + "n1819790703": { + "id": "n1819790703", + "loc": [-85.6230478, 41.9585089] + }, + "n1819790708": { + "id": "n1819790708", + "loc": [-85.6211102, 41.9575402] + }, + "n1819790710": { + "id": "n1819790710", + "loc": [-85.6215082, 41.9548468] + }, + "n1819790711": { + "id": "n1819790711", + "loc": [-85.6206552, 41.9586007] + }, + "n1819790713": { + "id": "n1819790713", + "loc": [-85.6215404, 41.9549705] + }, + "n1819790715": { + "id": "n1819790715", + "loc": [-85.6216906, 41.955521] + }, + "n1819790717": { + "id": "n1819790717", + "loc": [-85.6215404, 41.9547391] + }, + "n1819790722": { + "id": "n1819790722", + "loc": [-85.6219964, 41.9599131] + }, + "n1819790723": { + "id": "n1819790723", + "loc": [-85.622286, 41.9606989] + }, + "n1819790725": { + "id": "n1819790725", + "loc": [-85.6228439, 41.9572005] + }, + "n1819790727": { + "id": "n1819790727", + "loc": [-85.6202518, 41.9554458] + }, + "n1819790728": { + "id": "n1819790728", + "loc": [-85.623434, 41.9575276] + }, + "n1819790729": { + "id": "n1819790729", + "loc": [-85.6234287, 41.9568576] + }, + "n1819790732": { + "id": "n1819790732", + "loc": [-85.6229566, 41.9571369] + }, + "n1819790733": { + "id": "n1819790733", + "loc": [-85.6225543, 41.9590275] + }, + "n1819790734": { + "id": "n1819790734", + "loc": [-85.6232892, 41.9583135] + }, + "n1819790736": { + "id": "n1819790736", + "loc": [-85.622977, 41.9608551] + }, + "n1819790737": { + "id": "n1819790737", + "loc": [-85.624008, 41.9569533] + }, + "n1819790741": { + "id": "n1819790741", + "loc": [-85.6212775, 41.9608545] + }, + "n1819790742": { + "id": "n1819790742", + "loc": [-85.6231282, 41.9569932] + }, + "n1819790743": { + "id": "n1819790743", + "loc": [-85.6224523, 41.9591831] + }, + "n1819790744": { + "id": "n1819790744", + "loc": [-85.6210951, 41.9610819] + }, + "n1819790745": { + "id": "n1819790745", + "loc": [-85.6220114, 41.960544] + }, + "n1819790755": { + "id": "n1819790755", + "loc": [-85.6216369, 41.9553854] + }, + "n1819790757": { + "id": "n1819790757", + "loc": [-85.6209986, 41.9592709] + }, + "n1819790758": { + "id": "n1819790758", + "loc": [-85.6200437, 41.9563468] + }, + "n1819790764": { + "id": "n1819790764", + "loc": [-85.6219363, 41.9596823] + }, + "n1819790765": { + "id": "n1819790765", + "loc": [-85.6237612, 41.9568496] + }, + "n1819790769": { + "id": "n1819790769", + "loc": [-85.6212389, 41.9593433] + }, + "n1819790771": { + "id": "n1819790771", + "loc": [-85.6210726, 41.9560123] + }, + "n1819790772": { + "id": "n1819790772", + "loc": [-85.6212711, 41.9561838] + }, + "n1819790776": { + "id": "n1819790776", + "loc": [-85.6234437, 41.9577795] + }, + "n1819790777": { + "id": "n1819790777", + "loc": [-85.6212502, 41.9618599] + }, + "n1819790783": { + "id": "n1819790783", + "loc": [-85.6216895, 41.9610585] + }, + "n1819790784": { + "id": "n1819790784", + "loc": [-85.6200115, 41.9556367] + }, + "n1819790785": { + "id": "n1819790785", + "loc": [-85.6210576, 41.9573002] + }, + "n1819790786": { + "id": "n1819790786", + "loc": [-85.621138, 41.9576632] + }, + "n1819790788": { + "id": "n1819790788", + "loc": [-85.6207733, 41.9578946] + }, + "n1819790789": { + "id": "n1819790789", + "loc": [-85.6200705, 41.9571566] + }, + "n1819790790": { + "id": "n1819790790", + "loc": [-85.6245337, 41.9558443] + }, + "n1819790792": { + "id": "n1819790792", + "loc": [-85.621932, 41.9608066] + }, + "n1819790793": { + "id": "n1819790793", + "loc": [-85.6233578, 41.9581385] + }, + "n1819790794": { + "id": "n1819790794", + "loc": [-85.6204557, 41.9555136] + }, + "n1819790797": { + "id": "n1819790797", + "loc": [-85.6235038, 41.9576074] + }, + "n1819790800": { + "id": "n1819790800", + "loc": [-85.6214438, 41.9607508] + }, + "n1819790801": { + "id": "n1819790801", + "loc": [-85.623492, 41.9602129] + }, + "n1819790802": { + "id": "n1819790802", + "loc": [-85.6216691, 41.9546553] + }, + "n1819790803": { + "id": "n1819790803", + "loc": [-85.6231057, 41.9586851] + }, + "n1819790804": { + "id": "n1819790804", + "loc": [-85.6209224, 41.9578673] + }, + "n1819790813": { + "id": "n1819790813", + "loc": [-85.620092, 41.9572962] + }, + "n1819790814": { + "id": "n1819790814", + "loc": [-85.6216691, 41.9552218] + }, + "n1819790816": { + "id": "n1819790816", + "loc": [-85.6216144, 41.9609668] + }, + "n1819790818": { + "id": "n1819790818", + "loc": [-85.6216906, 41.9557324] + }, + "n1819790820": { + "id": "n1819790820", + "loc": [-85.6192069, 41.9564186] + }, + "n1819790823": { + "id": "n1819790823", + "loc": [-85.6211155, 41.9566027] + }, + "n1819790825": { + "id": "n1819790825", + "loc": [-85.6233106, 41.9569294] + }, + "n1819790839": { + "id": "n1819790839", + "loc": [-85.625671, 41.9564986] + }, + "n1819790842": { + "id": "n1819790842", + "loc": [-85.6235252, 41.9567379] + }, + "n1819790844": { + "id": "n1819790844", + "loc": [-85.6253813, 41.9566342] + }, + "n1819790847": { + "id": "n1819790847", + "loc": [-85.6200963, 41.9567702] + }, + "n1819790849": { + "id": "n1819790849", + "loc": [-85.6238031, 41.9587449] + }, + "n1819790851": { + "id": "n1819790851", + "loc": [-85.6234984, 41.9584571] + }, + "n1819790856": { + "id": "n1819790856", + "loc": [-85.6242226, 41.9570092] + }, + "n1819790865": { + "id": "n1819790865", + "loc": [-85.6200265, 41.9569458] + }, + "n1819790869": { + "id": "n1819790869", + "loc": [-85.6230049, 41.9601245] + }, + "n1819790871": { + "id": "n1819790871", + "loc": [-85.6190727, 41.9558322] + }, + "n1819790873": { + "id": "n1819790873", + "loc": [-85.6217442, 41.9550104] + }, + "n1819790875": { + "id": "n1819790875", + "loc": [-85.6208044, 41.9587808] + }, + "n1819790879": { + "id": "n1819790879", + "loc": [-85.6198444, 41.9574484] + }, + "n1819790883": { + "id": "n1819790883", + "loc": [-85.623713, 41.9588719] + }, + "n1819790885": { + "id": "n1819790885", + "loc": [-85.6223289, 41.9605075] + }, + "n1819790889": { + "id": "n1819790889", + "loc": [-85.6208044, 41.9562437] + }, + "n1819790893": { + "id": "n1819790893", + "loc": [-85.6218183, 41.9559684] + }, + "n1819790906": { + "id": "n1819790906", + "loc": [-85.6214052, 41.958697] + }, + "n1819790913": { + "id": "n1819790913", + "loc": [-85.6209981, 41.9609957] + }, + "n1819790917": { + "id": "n1819790917", + "loc": [-85.6216208, 41.9604436] + }, + "n1819790919": { + "id": "n1819790919", + "loc": [-85.6209406, 41.9616373] + }, + "n1819790920": { + "id": "n1819790920", + "loc": [-85.6221948, 41.9583334] + }, + "n1819790922": { + "id": "n1819790922", + "loc": [-85.6216681, 41.9615292] + }, + "n1819790924": { + "id": "n1819790924", + "loc": [-85.6210147, 41.9570489] + }, + "n1819790929": { + "id": "n1819790929", + "loc": [-85.6193678, 41.955521] + }, + "w17964707": { + "id": "w17964707", + "tags": { + "highway": "residential", + "name": "11th Avenue" + }, + "nodes": ["n185960682", "n185960684", "n185960686", "n185960688", "n185960690"] + }, + "w201484345": { + "id": "w201484345", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "East Hoffman Street" + }, + "nodes": ["n185978791", "n185978795"] + }, + "w201484348": { + "id": "w201484348", + "tags": { + "highway": "residential", + "name": "East Hoffman Street" + }, + "nodes": [ + "n185978795", + "n185978800", + "n185978803", + "n185978806", + "n185978808", + "n185978810", + "n185978811", + "n185978813", + "n185955747", + "n185978814", + "n185972054", + "n185978817" + ] + }, + "w170843845": { + "id": "w170843845", + "tags": { + "landuse": "reservoir", + "name": "Hoffman Pond", + "natural": "water" + }, + "nodes": [ + "n1819790732", + "n1819790742", + "n1819790825", + "n1819790729", + "n1819790842", + "n1819790765", + "n1819790737", + "n1819790856", + "n1819790643", + "n1819790596", + "n1819790844", + "n1819790839", + "n1819849190", + "n1819790619", + "n1819790613", + "n1819790669", + "n1819790550", + "n1819790682", + "n1819790701", + "n1819790790", + "n1819790532", + "n1819790887", + "n1819790740", + "n1819790831", + "n1819790545", + "n1819790664", + "n1819790621", + "n1819790861", + "n1819790730", + "n1819790683", + "n1819790802", + "n1819790717", + "n1819790710", + "n1819790713", + "n1819790650", + "n1819790873", + "n1819790814", + "n1819790755", + "n1819790715", + "n1819790818", + "n1819790602", + "n1819790893", + "n1819790662", + "n1819790699", + "n1819790772", + "n1819790771", + "n1819790680", + "n1819790794", + "n1819790727", + "n1819790628", + "n1819790661", + "n1819790784", + "n1819790610", + "n1819790626", + "n1819790929", + "n1819790656", + "n1819790871", + "n1819790673", + "n1819790566", + "n1819790820", + "n1819790676", + "n1819790598", + "n1819790556", + "n1819790558", + "n1819790879", + "n1819790608", + "n1819790813", + "n1819790789", + "n1819790865", + "n1819790847", + "n1819790758", + "n1819790548", + "n1819790539", + "n1819790889", + "n1819790557", + "n1819790586", + "n1819790571", + "n1819790823", + "n1819790546", + "n1819790924", + "n1819790785", + "n1819790708", + "n1819790786", + "n1819790561", + "n1819790804", + "n1819790788", + "n1819790684", + "n1819790711", + "n1819790875", + "n1819790672", + "n1819790569", + "n1819790757", + "n1819790769", + "n1819790603", + "n1819790906", + "n1819790553", + "n1819790536", + "n1819790678", + "n1819790920", + "n1819790600", + "n1819790733", + "n1819790743", + "n1819790567", + "n1819790764", + "n1819790722", + "n1819790638", + "n1819790917", + "n1819790800", + "n1819790741", + "n1819790667", + "n1819790913", + "n1819790744", + "n1819790816", + "n1819790591", + "n1819790745", + "n1819790885", + "n1819790652", + "n1819790588", + "n1819790617", + "n1819790551", + "n1819790666", + "n1819790869", + "n1819790630", + "n1819790723", + "n1819790792", + "n1819790783", + "n1819790681", + "n1819790919", + "n1819790593", + "n1819790670", + "n1819790777", + "n1819790922", + "n1819790562", + "n1819790736", + "n1819790565", + "n1819790801", + "n1819790538", + "n1819790640", + "n1819790616", + "n1819790572", + "n1819790620", + "n1819790883", + "n1819790849", + "n1819790675", + "n1819790851", + "n1819790803", + "n1819790611", + "n1819790703", + "n1819790734", + "n1819790793", + "n1819790614", + "n1819790581", + "n1819790776", + "n1819790797", + "n1819790728", + "n1819790584", + "n1819790624", + "n1819790604", + "n1819790725", + "n1819790732" + ] + }, + "w206805240": { + "id": "w206805240", + "tags": { + "waterway": "river" + }, + "nodes": [ + "n2168544738", + "n2168544739", + "n2168544740", + "n2168544741", + "n2168544742", + "n2168544743", + "n2168544744", + "n2168544745", + "n2168544746", + "n2168544747", + "n2168544748", + "n2168544749", + "n2168544750", + "n2168544751", + "n2168544752", + "n2168544753", + "n1819848944" + ] + }, + "n394490429": { + "id": "n394490429", + "loc": [-85.643883, 41.954365] + }, + "n185953421": { + "id": "n185953421", + "loc": [-85.641876, 41.954946] + }, + "n185953417": { + "id": "n185953417", + "loc": [-85.6418306, 41.9551597] + }, + "n185977233": { + "id": "n185977233", + "loc": [-85.642987, 41.95486] + }, + "n185977232": { + "id": "n185977232", + "loc": [-85.642894, 41.9547842] + }, + "n1475293244": { + "id": "n1475293244", + "loc": [-85.63974, 41.9521543] + }, + "n1819848890": { + "id": "n1819848890", + "loc": [-85.6410004, 41.9552822] + }, + "n1819848965": { + "id": "n1819848965", + "loc": [-85.6409795, 41.9553892] + }, + "n2189015846": { + "id": "n2189015846", + "loc": [-85.6420457, 41.9549528] + }, + "n2189015849": { + "id": "n2189015849", + "loc": [-85.6425867, 41.9551392] + }, + "n2189015852": { + "id": "n2189015852", + "loc": [-85.6426877, 41.9549771] + }, + "n2199109816": { + "id": "n2199109816", + "loc": [-85.6399215, 41.9540925] + }, + "n2199109818": { + "id": "n2199109818", + "loc": [-85.6399182, 41.9538236] + }, + "n2199109820": { + "id": "n2199109820", + "loc": [-85.6402201, 41.9538216] + }, + "n2199109822": { + "id": "n2199109822", + "loc": [-85.640222, 41.9539771] + }, + "n2199109825": { + "id": "n2199109825", + "loc": [-85.6402904, 41.9539766] + }, + "n2199109827": { + "id": "n2199109827", + "loc": [-85.6402918, 41.95409] + }, + "n2199109829": { + "id": "n2199109829", + "loc": [-85.6395845, 41.9544626] + }, + "n2199109831": { + "id": "n2199109831", + "loc": [-85.6395792, 41.9540671] + }, + "n2199109833": { + "id": "n2199109833", + "loc": [-85.6397173, 41.9540661] + }, + "n2199109835": { + "id": "n2199109835", + "loc": [-85.6397226, 41.9544616] + }, + "n2199109837": { + "id": "n2199109837", + "loc": [-85.6399641, 41.9545058] + }, + "n2199109839": { + "id": "n2199109839", + "loc": [-85.6399637, 41.9541859] + }, + "n2199109841": { + "id": "n2199109841", + "loc": [-85.6401098, 41.9541858] + }, + "n2199109843": { + "id": "n2199109843", + "loc": [-85.64011, 41.9543272] + }, + "n2199109845": { + "id": "n2199109845", + "loc": [-85.6400783, 41.9543273] + }, + "n2199109847": { + "id": "n2199109847", + "loc": [-85.6400785, 41.9545058] + }, + "n2199109853": { + "id": "n2199109853", + "loc": [-85.6396184, 41.9554049] + }, + "n2199109855": { + "id": "n2199109855", + "loc": [-85.6396825, 41.9553713] + }, + "n185949745": { + "id": "n185949745", + "loc": [-85.6442727, 41.9553112] + }, + "n185949748": { + "id": "n185949748", + "loc": [-85.6448804, 41.9555238] + }, + "n185949755": { + "id": "n185949755", + "loc": [-85.6420011, 41.9603536] + }, + "n185949763": { + "id": "n185949763", + "loc": [-85.6408843, 41.9555822] + }, + "n185949765": { + "id": "n185949765", + "loc": [-85.6414548, 41.9557751] + }, + "n185952158": { + "id": "n185952158", + "loc": [-85.640066, 41.956854] + }, + "n185952160": { + "id": "n185952160", + "loc": [-85.639848, 41.957229] + }, + "n185952161": { + "id": "n185952161", + "loc": [-85.6396089, 41.9576192] + }, + "n185952163": { + "id": "n185952163", + "loc": [-85.63892, 41.957957] + }, + "n185953413": { + "id": "n185953413", + "loc": [-85.64162, 41.955475] + }, + "n185971651": { + "id": "n185971651", + "loc": [-85.6440766, 41.9543462] + }, + "n185977234": { + "id": "n185977234", + "loc": [-85.645044, 41.955581] + }, + "n394490395": { + "id": "n394490395", + "loc": [-85.657336, 41.936762] + }, + "n394490396": { + "id": "n394490396", + "loc": [-85.653896, 41.936978] + }, + "n394490397": { + "id": "n394490397", + "loc": [-85.653732, 41.937386] + }, + "n394490398": { + "id": "n394490398", + "loc": [-85.65182, 41.937378] + }, + "n394490399": { + "id": "n394490399", + "loc": [-85.651843, 41.938445] + }, + "n394490400": { + "id": "n394490400", + "loc": [-85.652536, 41.938447] + }, + "n394490401": { + "id": "n394490401", + "loc": [-85.652533, 41.938901] + }, + "n394490402": { + "id": "n394490402", + "loc": [-85.652084, 41.9389] + }, + "n394490403": { + "id": "n394490403", + "loc": [-85.6521, 41.939627] + }, + "n394490404": { + "id": "n394490404", + "loc": [-85.652301, 41.939628] + }, + "n394490405": { + "id": "n394490405", + "loc": [-85.652302, 41.939755] + }, + "n394490406": { + "id": "n394490406", + "loc": [-85.652783, 41.939747] + }, + "n394490407": { + "id": "n394490407", + "loc": [-85.652835, 41.94112] + }, + "n394490408": { + "id": "n394490408", + "loc": [-85.651968, 41.941123] + }, + "n394490409": { + "id": "n394490409", + "loc": [-85.651983, 41.941969] + }, + "n394490410": { + "id": "n394490410", + "loc": [-85.652908, 41.941961] + }, + "n394490411": { + "id": "n394490411", + "loc": [-85.65292, 41.94278] + }, + "n394490412": { + "id": "n394490412", + "loc": [-85.651698, 41.942816] + }, + "n394490413": { + "id": "n394490413", + "loc": [-85.651509, 41.942823] + }, + "n394490414": { + "id": "n394490414", + "loc": [-85.651272, 41.942837] + }, + "n394490415": { + "id": "n394490415", + "loc": [-85.651272, 41.943325] + }, + "n394490416": { + "id": "n394490416", + "loc": [-85.65122, 41.944053] + }, + "n394490417": { + "id": "n394490417", + "loc": [-85.651193, 41.944449] + }, + "n394490418": { + "id": "n394490418", + "loc": [-85.651088, 41.944969] + }, + "n394490419": { + "id": "n394490419", + "loc": [-85.650949, 41.945554] + }, + "n394490420": { + "id": "n394490420", + "loc": [-85.650907, 41.945719] + }, + "n394490421": { + "id": "n394490421", + "loc": [-85.650808, 41.946016] + }, + "n394490422": { + "id": "n394490422", + "loc": [-85.650712, 41.946516] + }, + "n394490423": { + "id": "n394490423", + "loc": [-85.650493, 41.947166] + }, + "n394490424": { + "id": "n394490424", + "loc": [-85.650626, 41.947213] + }, + "n394490425": { + "id": "n394490425", + "loc": [-85.650201, 41.948109] + }, + "n394490426": { + "id": "n394490426", + "loc": [-85.649868, 41.948797] + }, + "n394490427": { + "id": "n394490427", + "loc": [-85.649669, 41.949161] + }, + "n394490428": { + "id": "n394490428", + "loc": [-85.64659, 41.954067] + }, + "n394490430": { + "id": "n394490430", + "loc": [-85.644034, 41.95444] + }, + "n394490431": { + "id": "n394490431", + "loc": [-85.644248, 41.954507] + }, + "n394490432": { + "id": "n394490432", + "loc": [-85.64491, 41.954481] + }, + "n394490433": { + "id": "n394490433", + "loc": [-85.645213, 41.954433] + }, + "n394490434": { + "id": "n394490434", + "loc": [-85.645426, 41.954477] + }, + "n394490435": { + "id": "n394490435", + "loc": [-85.6458, 41.954704] + }, + "n394490436": { + "id": "n394490436", + "loc": [-85.64605, 41.954804] + }, + "n394490437": { + "id": "n394490437", + "loc": [-85.646125, 41.954817] + }, + "n394490438": { + "id": "n394490438", + "loc": [-85.646002, 41.954997] + }, + "n394490439": { + "id": "n394490439", + "loc": [-85.645764, 41.955366] + }, + "n394490440": { + "id": "n394490440", + "loc": [-85.645525, 41.955734] + }, + "n394490441": { + "id": "n394490441", + "loc": [-85.64443, 41.957424] + }, + "n394490442": { + "id": "n394490442", + "loc": [-85.641712, 41.961723] + }, + "n394490443": { + "id": "n394490443", + "loc": [-85.640747, 41.963246] + }, + "n394490444": { + "id": "n394490444", + "loc": [-85.637803, 41.967894] + }, + "n394490445": { + "id": "n394490445", + "loc": [-85.637673, 41.967861] + }, + "n394490446": { + "id": "n394490446", + "loc": [-85.636637, 41.969275] + }, + "n394490447": { + "id": "n394490447", + "loc": [-85.634923, 41.969269] + }, + "n394490448": { + "id": "n394490448", + "loc": [-85.634893, 41.968537] + }, + "n394490449": { + "id": "n394490449", + "loc": [-85.634544, 41.96927] + }, + "n394490450": { + "id": "n394490450", + "loc": [-85.630835, 41.969274] + }, + "n394490451": { + "id": "n394490451", + "loc": [-85.630834, 41.968348] + }, + "n394490452": { + "id": "n394490452", + "loc": [-85.630857, 41.968179] + }, + "n394490453": { + "id": "n394490453", + "loc": [-85.630924, 41.968044] + }, + "n394490454": { + "id": "n394490454", + "loc": [-85.631004, 41.967925] + }, + "n394490455": { + "id": "n394490455", + "loc": [-85.631143, 41.967811] + }, + "n394490456": { + "id": "n394490456", + "loc": [-85.631311, 41.967736] + }, + "n394490457": { + "id": "n394490457", + "loc": [-85.631595, 41.967693] + }, + "n394490458": { + "id": "n394490458", + "loc": [-85.63325, 41.967702] + }, + "n394490459": { + "id": "n394490459", + "loc": [-85.633247, 41.967021] + }, + "n394490460": { + "id": "n394490460", + "loc": [-85.634858, 41.967021] + }, + "n394490461": { + "id": "n394490461", + "loc": [-85.634865, 41.967711] + }, + "n394490462": { + "id": "n394490462", + "loc": [-85.634884, 41.968231] + }, + "n394490463": { + "id": "n394490463", + "loc": [-85.636559, 41.963867] + }, + "n394490464": { + "id": "n394490464", + "loc": [-85.634832, 41.963866] + }, + "n394490465": { + "id": "n394490465", + "loc": [-85.63481, 41.961899] + }, + "n394490466": { + "id": "n394490466", + "loc": [-85.637219, 41.961842] + }, + "n394490467": { + "id": "n394490467", + "loc": [-85.637837, 41.960019] + }, + "n394490468": { + "id": "n394490468", + "loc": [-85.637459, 41.960022] + }, + "n394490469": { + "id": "n394490469", + "loc": [-85.635295, 41.959987] + }, + "n394490470": { + "id": "n394490470", + "loc": [-85.634783, 41.959979] + }, + "n394490471": { + "id": "n394490471", + "loc": [-85.634776, 41.959834] + }, + "n394490472": { + "id": "n394490472", + "loc": [-85.634767, 41.959009] + }, + "n394490473": { + "id": "n394490473", + "loc": [-85.634763, 41.958292] + }, + "n394490474": { + "id": "n394490474", + "loc": [-85.633346, 41.958287] + }, + "n394490475": { + "id": "n394490475", + "loc": [-85.632128, 41.9583] + }, + "n394490476": { + "id": "n394490476", + "loc": [-85.631414, 41.958318] + }, + "n394490477": { + "id": "n394490477", + "loc": [-85.63137, 41.959033] + }, + "n394490478": { + "id": "n394490478", + "loc": [-85.631325, 41.959753] + }, + "n394490479": { + "id": "n394490479", + "loc": [-85.631494, 41.95977] + }, + "n394490480": { + "id": "n394490480", + "loc": [-85.631456, 41.960673] + }, + "n394490481": { + "id": "n394490481", + "loc": [-85.631421, 41.961494] + }, + "n394490482": { + "id": "n394490482", + "loc": [-85.631404, 41.961887] + }, + "n394490483": { + "id": "n394490483", + "loc": [-85.631401, 41.961968] + }, + "n394490484": { + "id": "n394490484", + "loc": [-85.630962, 41.961967] + }, + "n394490485": { + "id": "n394490485", + "loc": [-85.6299, 41.961973] + }, + "n394490486": { + "id": "n394490486", + "loc": [-85.624929, 41.962002] + }, + "n394490487": { + "id": "n394490487", + "loc": [-85.623333, 41.961987] + }, + "n394490488": { + "id": "n394490488", + "loc": [-85.621894, 41.963956] + }, + "n394490489": { + "id": "n394490489", + "loc": [-85.62131, 41.963727] + }, + "n394490490": { + "id": "n394490490", + "loc": [-85.621216, 41.963868] + }, + "n394490491": { + "id": "n394490491", + "loc": [-85.620356, 41.965119] + }, + "n394490492": { + "id": "n394490492", + "loc": [-85.620848, 41.965341] + }, + "n394490493": { + "id": "n394490493", + "loc": [-85.620684, 41.965558] + }, + "n394490494": { + "id": "n394490494", + "loc": [-85.620621, 41.965658] + }, + "n394490495": { + "id": "n394490495", + "loc": [-85.618165, 41.965759] + }, + "n394490496": { + "id": "n394490496", + "loc": [-85.618071, 41.965759] + }, + "n394490497": { + "id": "n394490497", + "loc": [-85.617986, 41.965759] + }, + "n394490498": { + "id": "n394490498", + "loc": [-85.605673, 41.965764] + }, + "n394490499": { + "id": "n394490499", + "loc": [-85.605668, 41.963548] + }, + "n394490500": { + "id": "n394490500", + "loc": [-85.605664, 41.962094] + }, + "n394490501": { + "id": "n394490501", + "loc": [-85.595828, 41.962159] + }, + "n394490502": { + "id": "n394490502", + "loc": [-85.587869, 41.962169] + }, + "n394490503": { + "id": "n394490503", + "loc": [-85.586289, 41.962179] + }, + "n394490504": { + "id": "n394490504", + "loc": [-85.583774, 41.962178] + }, + "n394490505": { + "id": "n394490505", + "loc": [-85.583774, 41.961789] + }, + "n394490506": { + "id": "n394490506", + "loc": [-85.581303, 41.961783] + }, + "n394490507": { + "id": "n394490507", + "loc": [-85.581304, 41.961616] + }, + "n394490508": { + "id": "n394490508", + "loc": [-85.581292, 41.961616] + }, + "n394490509": { + "id": "n394490509", + "loc": [-85.581247, 41.959244] + }, + "n394490510": { + "id": "n394490510", + "loc": [-85.581245, 41.958394] + }, + "n394490511": { + "id": "n394490511", + "loc": [-85.581276, 41.958372] + }, + "n394490512": { + "id": "n394490512", + "loc": [-85.581302, 41.958353] + }, + "n394490513": { + "id": "n394490513", + "loc": [-85.581376, 41.9583] + }, + "n394490514": { + "id": "n394490514", + "loc": [-85.582256, 41.957663] + }, + "n394490515": { + "id": "n394490515", + "loc": [-85.585299, 41.955483] + }, + "n394490516": { + "id": "n394490516", + "loc": [-85.585588, 41.955331] + }, + "n394490517": { + "id": "n394490517", + "loc": [-85.586053, 41.955163] + }, + "n394490518": { + "id": "n394490518", + "loc": [-85.58632, 41.955076] + }, + "n394490519": { + "id": "n394490519", + "loc": [-85.586478, 41.955025] + }, + "n394490520": { + "id": "n394490520", + "loc": [-85.58692, 41.954947] + }, + "n394490521": { + "id": "n394490521", + "loc": [-85.587327, 41.954914] + }, + "n394490522": { + "id": "n394490522", + "loc": [-85.587345, 41.954913] + }, + "n394490523": { + "id": "n394490523", + "loc": [-85.587358, 41.954913] + }, + "n394490524": { + "id": "n394490524", + "loc": [-85.58963, 41.954877] + }, + "n394490525": { + "id": "n394490525", + "loc": [-85.591077, 41.954865] + }, + "n394490526": { + "id": "n394490526", + "loc": [-85.594824, 41.954843] + }, + "n394490527": { + "id": "n394490527", + "loc": [-85.594804, 41.95331] + }, + "n394490528": { + "id": "n394490528", + "loc": [-85.599336, 41.95331] + }, + "n394490529": { + "id": "n394490529", + "loc": [-85.599336, 41.954825] + }, + "n394490530": { + "id": "n394490530", + "loc": [-85.597828, 41.954839] + }, + "n394490531": { + "id": "n394490531", + "loc": [-85.597833, 41.95614] + }, + "n394490532": { + "id": "n394490532", + "loc": [-85.596586, 41.956151] + }, + "n394490533": { + "id": "n394490533", + "loc": [-85.596586, 41.956394] + }, + "n394490534": { + "id": "n394490534", + "loc": [-85.595933, 41.956394] + }, + "n394490535": { + "id": "n394490535", + "loc": [-85.595933, 41.958176] + }, + "n394490536": { + "id": "n394490536", + "loc": [-85.597635, 41.958179] + }, + "n394490537": { + "id": "n394490537", + "loc": [-85.597717, 41.958177] + }, + "n394490538": { + "id": "n394490538", + "loc": [-85.601671, 41.958194] + }, + "n394490539": { + "id": "n394490539", + "loc": [-85.605619, 41.958194] + }, + "n394490540": { + "id": "n394490540", + "loc": [-85.608054, 41.958187] + }, + "n394490542": { + "id": "n394490542", + "loc": [-85.6080762, 41.9547864] + }, + "n394490545": { + "id": "n394490545", + "loc": [-85.6104354, 41.9548263] + }, + "n394490546": { + "id": "n394490546", + "loc": [-85.610274, 41.951106] + }, + "n394490547": { + "id": "n394490547", + "loc": [-85.610278, 41.950829] + }, + "n394490548": { + "id": "n394490548", + "loc": [-85.610309, 41.948377] + }, + "n394490549": { + "id": "n394490549", + "loc": [-85.610314, 41.947986] + }, + "n394490550": { + "id": "n394490550", + "loc": [-85.610464, 41.947985] + }, + "n394490551": { + "id": "n394490551", + "loc": [-85.610447, 41.947468] + }, + "n394490552": { + "id": "n394490552", + "loc": [-85.612469, 41.947471] + }, + "n394490553": { + "id": "n394490553", + "loc": [-85.612494, 41.945576] + }, + "n394490554": { + "id": "n394490554", + "loc": [-85.610292, 41.94558] + }, + "n394490555": { + "id": "n394490555", + "loc": [-85.608412, 41.945625] + }, + "n394490556": { + "id": "n394490556", + "loc": [-85.608412, 41.943036] + }, + "n394490557": { + "id": "n394490557", + "loc": [-85.608702, 41.943087] + }, + "n394490558": { + "id": "n394490558", + "loc": [-85.609196, 41.943224] + }, + "n394490559": { + "id": "n394490559", + "loc": [-85.609571, 41.943263] + }, + "n394490560": { + "id": "n394490560", + "loc": [-85.610116, 41.943295] + }, + "n394490561": { + "id": "n394490561", + "loc": [-85.610273, 41.943275] + }, + "n394490562": { + "id": "n394490562", + "loc": [-85.611339, 41.943075] + }, + "n394490563": { + "id": "n394490563", + "loc": [-85.611575, 41.942997] + }, + "n394490564": { + "id": "n394490564", + "loc": [-85.611847, 41.942849] + }, + "n394490565": { + "id": "n394490565", + "loc": [-85.612164, 41.942568] + }, + "n394490566": { + "id": "n394490566", + "loc": [-85.612341, 41.942529] + }, + "n394490567": { + "id": "n394490567", + "loc": [-85.612562, 41.942524] + }, + "n394490568": { + "id": "n394490568", + "loc": [-85.612768, 41.942546] + }, + "n394490569": { + "id": "n394490569", + "loc": [-85.612938, 41.942633] + }, + "n394490570": { + "id": "n394490570", + "loc": [-85.6131, 41.942782] + }, + "n394490571": { + "id": "n394490571", + "loc": [-85.613299, 41.942919] + }, + "n394490572": { + "id": "n394490572", + "loc": [-85.613498, 41.942996] + }, + "n394490573": { + "id": "n394490573", + "loc": [-85.614698, 41.942842] + }, + "n394490574": { + "id": "n394490574", + "loc": [-85.615288, 41.942698] + }, + "n394490575": { + "id": "n394490575", + "loc": [-85.616054, 41.942693] + }, + "n394490576": { + "id": "n394490576", + "loc": [-85.61603, 41.942175] + }, + "n394490577": { + "id": "n394490577", + "loc": [-85.616004, 41.941741] + }, + "n394490578": { + "id": "n394490578", + "loc": [-85.615994, 41.940156] + }, + "n394490579": { + "id": "n394490579", + "loc": [-85.615144, 41.940159] + }, + "n394490580": { + "id": "n394490580", + "loc": [-85.614915, 41.940161] + }, + "n394490582": { + "id": "n394490582", + "loc": [-85.614875, 41.938532] + }, + "n394490583": { + "id": "n394490583", + "loc": [-85.616167, 41.938787] + }, + "n394490585": { + "id": "n394490585", + "loc": [-85.616176, 41.938589] + }, + "n394490586": { + "id": "n394490586", + "loc": [-85.614537, 41.938282] + }, + "n394490588": { + "id": "n394490588", + "loc": [-85.610141, 41.937459] + }, + "n394490589": { + "id": "n394490589", + "loc": [-85.610172, 41.937298] + }, + "n394490590": { + "id": "n394490590", + "loc": [-85.609918, 41.935495] + }, + "n394490592": { + "id": "n394490592", + "loc": [-85.610092, 41.935451] + }, + "n394490594": { + "id": "n394490594", + "loc": [-85.610681, 41.935247] + }, + "n394490595": { + "id": "n394490595", + "loc": [-85.611446, 41.934955] + }, + "n394490596": { + "id": "n394490596", + "loc": [-85.612057, 41.934696] + }, + "n394490598": { + "id": "n394490598", + "loc": [-85.613256, 41.934084] + }, + "n394490599": { + "id": "n394490599", + "loc": [-85.613948, 41.933682] + }, + "n394490601": { + "id": "n394490601", + "loc": [-85.61436, 41.933417] + }, + "n394490602": { + "id": "n394490602", + "loc": [-85.614638, 41.933212] + }, + "n394490604": { + "id": "n394490604", + "loc": [-85.615249, 41.9332] + }, + "n394490605": { + "id": "n394490605", + "loc": [-85.618218, 41.933223] + }, + "n394490607": { + "id": "n394490607", + "loc": [-85.618241, 41.933479] + }, + "n394490608": { + "id": "n394490608", + "loc": [-85.618257, 41.93365] + }, + "n394490609": { + "id": "n394490609", + "loc": [-85.618298, 41.935067] + }, + "n394490611": { + "id": "n394490611", + "loc": [-85.619791, 41.935067] + }, + "n394490612": { + "id": "n394490612", + "loc": [-85.619794, 41.933301] + }, + "n394490613": { + "id": "n394490613", + "loc": [-85.619795, 41.932692] + }, + "n394490614": { + "id": "n394490614", + "loc": [-85.619729, 41.929517] + }, + "n394490615": { + "id": "n394490615", + "loc": [-85.619801, 41.929305] + }, + "n394490616": { + "id": "n394490616", + "loc": [-85.619809, 41.927391] + }, + "n394490617": { + "id": "n394490617", + "loc": [-85.620883, 41.927378] + }, + "n394490618": { + "id": "n394490618", + "loc": [-85.620988, 41.927368] + }, + "n394490619": { + "id": "n394490619", + "loc": [-85.621076, 41.927368] + }, + "n394490620": { + "id": "n394490620", + "loc": [-85.621156, 41.927376] + }, + "n394490621": { + "id": "n394490621", + "loc": [-85.621685, 41.92737] + }, + "n394490622": { + "id": "n394490622", + "loc": [-85.624716, 41.927359] + }, + "n394490623": { + "id": "n394490623", + "loc": [-85.625308, 41.92737] + }, + "n394490624": { + "id": "n394490624", + "loc": [-85.625655, 41.927377] + }, + "n394490625": { + "id": "n394490625", + "loc": [-85.625093, 41.925591] + }, + "n394490626": { + "id": "n394490626", + "loc": [-85.625174, 41.92559] + }, + "n394490627": { + "id": "n394490627", + "loc": [-85.625249, 41.925597] + }, + "n394490628": { + "id": "n394490628", + "loc": [-85.625532, 41.925604] + }, + "n394490629": { + "id": "n394490629", + "loc": [-85.625761, 41.925597] + }, + "n394490630": { + "id": "n394490630", + "loc": [-85.625955, 41.926153] + }, + "n394490631": { + "id": "n394490631", + "loc": [-85.626209, 41.926155] + }, + "n394490632": { + "id": "n394490632", + "loc": [-85.627757, 41.926151] + }, + "n394490633": { + "id": "n394490633", + "loc": [-85.627825, 41.926298] + }, + "n394490634": { + "id": "n394490634", + "loc": [-85.627994, 41.926315] + }, + "n394490635": { + "id": "n394490635", + "loc": [-85.628049, 41.927196] + }, + "n394490636": { + "id": "n394490636", + "loc": [-85.62949, 41.927221] + }, + "n394490637": { + "id": "n394490637", + "loc": [-85.629602, 41.927277] + }, + "n394490638": { + "id": "n394490638", + "loc": [-85.6297102, 41.9273279] + }, + "n394490639": { + "id": "n394490639", + "loc": [-85.630958, 41.927398] + }, + "n394490699": { + "id": "n394490699", + "loc": [-85.632741, 41.927388] + }, + "n394490700": { + "id": "n394490700", + "loc": [-85.632997, 41.927391] + }, + "n394490701": { + "id": "n394490701", + "loc": [-85.633149, 41.927393] + }, + "n394490702": { + "id": "n394490702", + "loc": [-85.633334, 41.927393] + }, + "n394490703": { + "id": "n394490703", + "loc": [-85.633468, 41.927561] + }, + "n394490704": { + "id": "n394490704", + "loc": [-85.633563, 41.927755] + }, + "n394490705": { + "id": "n394490705", + "loc": [-85.633662, 41.928192] + }, + "n394490706": { + "id": "n394490706", + "loc": [-85.633679, 41.928807] + }, + "n394490707": { + "id": "n394490707", + "loc": [-85.633687, 41.929107] + }, + "n394490708": { + "id": "n394490708", + "loc": [-85.633927, 41.929109] + }, + "n394490709": { + "id": "n394490709", + "loc": [-85.634126, 41.929111] + }, + "n394490710": { + "id": "n394490710", + "loc": [-85.634207, 41.92911] + }, + "n394490711": { + "id": "n394490711", + "loc": [-85.634323, 41.929111] + }, + "n394490712": { + "id": "n394490712", + "loc": [-85.636712, 41.929128] + }, + "n394490713": { + "id": "n394490713", + "loc": [-85.63808, 41.9291] + }, + "n394490714": { + "id": "n394490714", + "loc": [-85.639213, 41.929088] + }, + "n394490715": { + "id": "n394490715", + "loc": [-85.639189, 41.92852] + }, + "n394490716": { + "id": "n394490716", + "loc": [-85.639204, 41.925488] + }, + "n394490717": { + "id": "n394490717", + "loc": [-85.644204, 41.925452] + }, + "n394490718": { + "id": "n394490718", + "loc": [-85.651425, 41.925406] + }, + "n394490719": { + "id": "n394490719", + "loc": [-85.651449, 41.926321] + }, + "n394490720": { + "id": "n394490720", + "loc": [-85.651451, 41.926969] + }, + "n394490721": { + "id": "n394490721", + "loc": [-85.651458, 41.928052] + }, + "n394490722": { + "id": "n394490722", + "loc": [-85.651446, 41.928892] + }, + "n394490723": { + "id": "n394490723", + "loc": [-85.651456, 41.929447] + }, + "n394490724": { + "id": "n394490724", + "loc": [-85.651707, 41.929454] + }, + "n394490725": { + "id": "n394490725", + "loc": [-85.652369, 41.929473] + }, + "n394490726": { + "id": "n394490726", + "loc": [-85.6525, 41.929452] + }, + "n394490727": { + "id": "n394490727", + "loc": [-85.654066, 41.92946] + }, + "n394490728": { + "id": "n394490728", + "loc": [-85.654816, 41.92946] + }, + "n394490729": { + "id": "n394490729", + "loc": [-85.654816, 41.930337] + }, + "n394490730": { + "id": "n394490730", + "loc": [-85.654587, 41.930337] + }, + "n394490731": { + "id": "n394490731", + "loc": [-85.654548, 41.931072] + }, + "n394490732": { + "id": "n394490732", + "loc": [-85.654538, 41.931701] + }, + "n394490733": { + "id": "n394490733", + "loc": [-85.654898, 41.931689] + }, + "n394490734": { + "id": "n394490734", + "loc": [-85.654898, 41.932505] + }, + "n394490735": { + "id": "n394490735", + "loc": [-85.654854, 41.932514] + }, + "n394490736": { + "id": "n394490736", + "loc": [-85.655497, 41.932499] + }, + "n394490737": { + "id": "n394490737", + "loc": [-85.656405, 41.932493] + }, + "n394490738": { + "id": "n394490738", + "loc": [-85.656422, 41.933416] + }, + "n394490739": { + "id": "n394490739", + "loc": [-85.657322, 41.933438] + }, + "n1475293233": { + "id": "n1475293233", + "loc": [-85.6385522, 41.9585167] + }, + "n1475293242": { + "id": "n1475293242", + "loc": [-85.64609, 41.9540815] + }, + "n1475293249": { + "id": "n1475293249", + "loc": [-85.6358079, 41.9692721] + }, + "n1475293256": { + "id": "n1475293256", + "loc": [-85.6387369, 41.9581583] + }, + "n1475293259": { + "id": "n1475293259", + "loc": [-85.6455882, 41.9541138] + }, + "n1475293266": { + "id": "n1475293266", + "loc": [-85.6451008, 41.9541821] + }, + "n1819800253": { + "id": "n1819800253", + "loc": [-85.6134286, 41.9429692] + }, + "n2114807558": { + "id": "n2114807558", + "loc": [-85.6365609, 41.963866], + "tags": { + "railway": "level_crossing" + } + }, + "n2189015728": { + "id": "n2189015728", + "loc": [-85.6383956, 41.9590576] + }, + "n2189015838": { + "id": "n2189015838", + "loc": [-85.6435144, 41.9563705] + }, + "n2189015842": { + "id": "n2189015842", + "loc": [-85.6415782, 41.9557035] + }, + "n2189015855": { + "id": "n2189015855", + "loc": [-85.6440829, 41.9554577] + }, + "n2199109849": { + "id": "n2199109849", + "loc": [-85.6393434, 41.9565591] + }, + "n2199109851": { + "id": "n2199109851", + "loc": [-85.6393208, 41.9565002] + }, + "n2199109857": { + "id": "n2199109857", + "loc": [-85.6401986, 41.955545] + }, + "n2199109859": { + "id": "n2199109859", + "loc": [-85.6402362, 41.955587] + }, + "n2199109861": { + "id": "n2199109861", + "loc": [-85.6395958, 41.9565675] + }, + "n2199109863": { + "id": "n2199109863", + "loc": [-85.639528, 41.9566011] + }, + "w209717053": { + "id": "w209717053", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109829", "n2199109831", "n2199109833", "n2199109835", "n2199109829"] + }, + "w17966415": { + "id": "w17966415", + "tags": { + "access": "private", + "highway": "service", + "name": "Manufacturing Way" + }, + "nodes": ["n185971642", "n185977232", "n185977233", "n185949745", "n185949748", "n185977234"] + }, + "w209717054": { + "id": "w209717054", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109837", "n2199109839", "n2199109841", "n2199109843", "n2199109845", "n2199109847", "n2199109837"] + }, + "w208627214": { + "id": "w208627214", + "tags": { + "highway": "service" + }, + "nodes": [ + "n185949755", + "n2189015728", + "n1475293233", + "n1475293256", + "n185952163", + "n185952161", + "n185952160", + "n185952158", + "n185949763", + "n1819848965", + "n1819848890", + "n185952156" + ] + }, + "w17963817": { + "id": "w17963817", + "tags": { + "access": "private", + "highway": "service" + }, + "nodes": ["n185949765", "n185953413", "n185953417", "n185953421", "n185953423"] + }, + "w34369809": { + "id": "w34369809", + "tags": { + "admin_level": "8", + "boundary": "administrative", + "landuse": "residential" + }, + "nodes": [ + "n394490395", + "n394490396", + "n394490397", + "n394490398", + "n394490399", + "n394490400", + "n394490401", + "n394490402", + "n394490403", + "n394490404", + "n394490405", + "n394490406", + "n394490407", + "n394490408", + "n394490409", + "n394490410", + "n394490411", + "n394490412", + "n394490413", + "n394490414", + "n394490415", + "n394490416", + "n394490417", + "n394490418", + "n394490419", + "n394490420", + "n394490421", + "n394490422", + "n394490423", + "n394490424", + "n394490425", + "n394490426", + "n394490427", + "n394490428", + "n1475293242", + "n1475293259", + "n1475293266", + "n394490429", + "n394490430", + "n394490431", + "n394490432", + "n394490433", + "n394490434", + "n394490435", + "n394490436", + "n394490437", + "n394490438", + "n394490439", + "n394490440", + "n394490441", + "n394490442", + "n394490443", + "n394490444", + "n394490445", + "n394490446", + "n1475293249", + "n394490447", + "n394490448", + "n394490449", + "n394490450", + "n394490451", + "n394490452", + "n394490453", + "n394490454", + "n394490455", + "n394490456", + "n394490457", + "n394490458", + "n394490459", + "n394490460", + "n394490461", + "n394490462", + "n2114807558", + "n394490463", + "n1475293226", + "n394490464", + "n394490465", + "n394490466", + "n394490467", + "n394490468", + "n394490469", + "n394490470", + "n394490471", + "n394490472", + "n394490473", + "n394490474", + "n394490475", + "n394490476", + "n394490477", + "n394490478", + "n394490479", + "n394490480", + "n394490481", + "n394490482", + "n394490483", + "n394490484", + "n394490485", + "n394490486", + "n394490487", + "n394490488", + "n394490489", + "n394490490", + "n394490491", + "n394490492", + "n394490493", + "n394490494", + "n394490495", + "n394490496", + "n394490497", + "n394490498", + "n394490499", + "n394490500", + "n394490501", + "n394490502", + "n394490503", + "n394490504", + "n394490505", + "n394490506", + "n394490507", + "n394490508", + "n394490509", + "n394490510", + "n394490511", + "n394490512", + "n394490513", + "n394490514", + "n394490515", + "n394490516", + "n394490517", + "n394490518", + "n394490519", + "n394490520", + "n394490521", + "n394490522", + "n394490523", + "n394490524", + "n394490525", + "n394490526", + "n394490527", + "n394490528", + "n394490529", + "n394490530", + "n394490531", + "n394490532", + "n394490533", + "n394490534", + "n394490535", + "n394490536", + "n394490537", + "n394490538", + "n394490539", + "n394490540", + "n394490542", + "n394490545", + "n394490546", + "n394490547", + "n394490548", + "n394490549", + "n394490550", + "n394490551", + "n394490552", + "n394490553", + "n394490554", + "n394490555", + "n394490556", + "n394490557", + "n394490558", + "n394490559", + "n394490560", + "n394490561", + "n394490562", + "n394490563", + "n394490564", + "n394490565", + "n394490566", + "n394490567", + "n394490568", + "n394490569", + "n394490570", + "n394490571", + "n1819800253", + "n394490572", + "n394490573", + "n394490574", + "n394490575", + "n394490576", + "n394490577", + "n394490578", + "n394490579", + "n394490580", + "n394490582", + "n394490583", + "n394490585", + "n394490586", + "n394490588", + "n394490589", + "n394490590", + "n394490592", + "n394490594", + "n394490595", + "n394490596", + "n394490598", + "n394490599", + "n394490601", + "n394490602", + "n394490604", + "n394490605", + "n394490607", + "n394490608", + "n394490609", + "n394490611", + "n394490612", + "n394490613", + "n394490614", + "n394490615", + "n394490616", + "n394490617", + "n394490618", + "n394490619", + "n394490620", + "n394490621", + "n394490622", + "n394490623", + "n394490624", + "n394490625", + "n394490626", + "n394490627", + "n394490628", + "n394490629", + "n394490630", + "n394490631", + "n394490632", + "n394490633", + "n394490634", + "n394490635", + "n394490636", + "n394490637", + "n394490638", + "n394490639", + "n394490699", + "n394490700", + "n394490701", + "n394490702", + "n394490703", + "n394490704", + "n394490705", + "n394490706", + "n394490707", + "n394490708", + "n394490709", + "n394490710", + "n394490711", + "n394490712", + "n394490713", + "n394490714", + "n394490715", + "n394490716", + "n394490717", + "n394490718", + "n394490719", + "n394490720", + "n394490721", + "n394490722", + "n394490723", + "n394490724", + "n394490725", + "n394490726", + "n394490727", + "n394490728", + "n394490729", + "n394490730", + "n394490731", + "n394490732", + "n394490733", + "n394490734", + "n394490735", + "n394490736", + "n394490737", + "n394490738", + "n394490739", + "n394490395" + ] + }, + "w208627221": { + "id": "w208627221", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2189015838", "n2189015842", "n2189015846", "n2189015849", "n2189015852", "n2189015855", "n2189015838"] + }, + "w209717052": { + "id": "w209717052", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109816", "n2199109818", "n2199109820", "n2199109822", "n2199109825", "n2199109827", "n2199109816"] + }, + "w134151784": { + "id": "w134151784", + "tags": { + "bridge": "yes", + "highway": "residential", + "name": "West Hoffman Street" + }, + "nodes": ["n185971648", "n185971651"] + }, + "w209717055": { + "id": "w209717055", + "tags": { + "area": "yes", + "landuse": "basin" + }, + "nodes": [ + "n2199109849", + "n2199109851", + "n2199109853", + "n2199109855", + "n2199109857", + "n2199109859", + "n2199109861", + "n2199109863", + "n2199109849" + ] + }, + "w17967763": { + "id": "w17967763", + "tags": { + "highway": "residential", + "name": "Rock River Avenue" + }, + "nodes": ["n1475293244", "n185982166", "n185975067", "n185971637"] + }, + "r134949": { + "id": "r134949", + "tags": { + "admin_level": "8", + "border_type": "city", + "boundary": "administrative", + "name": "Three Rivers", + "place": "city", + "type": "boundary" + }, + "members": [ + { + "id": "w34369809", + "type": "way", + "role": "outer" + }, + { + "id": "w34369821", + "type": "way", + "role": "outer" + }, + { + "id": "w34369822", + "type": "way", + "role": "outer" + }, + { + "id": "w34369823", + "type": "way", + "role": "outer" + }, + { + "id": "w34369824", + "type": "way", + "role": "outer" + }, + { + "id": "w34369825", + "type": "way", + "role": "outer" + }, + { + "id": "w34369826", + "type": "way", + "role": "outer" + }, + { + "id": "w34369810", + "type": "way", + "role": "inner" + }, + { + "id": "w34369811", + "type": "way", + "role": "inner" + }, + { + "id": "w34369812", + "type": "way", + "role": "inner" + }, + { + "id": "w34367079", + "type": "way", + "role": "inner" + }, + { + "id": "w34369814", + "type": "way", + "role": "inner" + }, + { + "id": "w34367080", + "type": "way", + "role": "inner" + }, + { + "id": "w34369815", + "type": "way", + "role": "inner" + }, + { + "id": "w34369820", + "type": "way", + "role": "inner" + } + ] + }, + "n1819848881": { + "id": "n1819848881", + "loc": [-85.638562, 41.9569965] + }, + "n1819848947": { + "id": "n1819848947", + "loc": [-85.6384348, 41.9576565] + }, + "n1819849044": { + "id": "n1819849044", + "loc": [-85.6385749, 41.9573345] + }, + "n2114807547": { + "id": "n2114807547", + "loc": [-85.6384626, 41.9583756] + }, + "n2114807564": { + "id": "n2114807564", + "loc": [-85.638535, 41.9581283] + }, + "n2189015691": { + "id": "n2189015691", + "loc": [-85.6435584, 41.9565243] + }, + "n2189015696": { + "id": "n2189015696", + "loc": [-85.6435805, 41.9566049] + }, + "n2189015722": { + "id": "n2189015722", + "loc": [-85.6435035, 41.9567438] + }, + "n2189015744": { + "id": "n2189015744", + "loc": [-85.6437991, 41.9569582] + }, + "n2189015747": { + "id": "n2189015747", + "loc": [-85.6433042, 41.9567742] + }, + "n2189015750": { + "id": "n2189015750", + "loc": [-85.6433827, 41.9566844] + }, + "n2189015753": { + "id": "n2189015753", + "loc": [-85.6430447, 41.9565588] + }, + "n2189015756": { + "id": "n2189015756", + "loc": [-85.6431111, 41.956451] + }, + "n2189015759": { + "id": "n2189015759", + "loc": [-85.6420247, 41.956083] + }, + "n2189015760": { + "id": "n2189015760", + "loc": [-85.6419945, 41.9561369] + }, + "n2189015764": { + "id": "n2189015764", + "loc": [-85.6413729, 41.9558945] + }, + "n2189015766": { + "id": "n2189015766", + "loc": [-85.6412884, 41.9560606] + }, + "n2189015770": { + "id": "n2189015770", + "loc": [-85.6411798, 41.9560112] + }, + "n2189015771": { + "id": "n2189015771", + "loc": [-85.6410651, 41.9562132] + }, + "n2189015774": { + "id": "n2189015774", + "loc": [-85.6409504, 41.9561728] + }, + "n2189015778": { + "id": "n2189015778", + "loc": [-85.6407996, 41.9564241] + }, + "n2189015781": { + "id": "n2189015781", + "loc": [-85.6406889, 41.9563892] + }, + "n2189015785": { + "id": "n2189015785", + "loc": [-85.6404857, 41.9567024] + }, + "n2189015789": { + "id": "n2189015789", + "loc": [-85.6406909, 41.9567877] + }, + "n2189015793": { + "id": "n2189015793", + "loc": [-85.6405642, 41.9570165] + }, + "n2189015796": { + "id": "n2189015796", + "loc": [-85.6415359, 41.9573711] + }, + "n2189015800": { + "id": "n2189015800", + "loc": [-85.6411738, 41.9579501] + }, + "n2189015804": { + "id": "n2189015804", + "loc": [-85.6411119, 41.957921] + }, + "n2189015808": { + "id": "n2189015808", + "loc": [-85.6403186, 41.9591751] + }, + "n2189015909": { + "id": "n2189015909", + "loc": [-85.6389293, 41.9564636] + }, + "n2189015926": { + "id": "n2189015926", + "loc": [-85.6385431, 41.9564617] + }, + "n2189015929": { + "id": "n2189015929", + "loc": [-85.6385457, 41.9561823] + }, + "n2189015932": { + "id": "n2189015932", + "loc": [-85.6389319, 41.9561843] + }, + "n2199109865": { + "id": "n2199109865", + "loc": [-85.6400768, 41.956776] + }, + "n2199109867": { + "id": "n2199109867", + "loc": [-85.639902, 41.9567153] + }, + "n2199109869": { + "id": "n2199109869", + "loc": [-85.640004, 41.956553] + }, + "n2199109871": { + "id": "n2199109871", + "loc": [-85.6401788, 41.9566137] + }, + "n2199109873": { + "id": "n2199109873", + "loc": [-85.6399316, 41.9564506], + "tags": { + "man_made": "water_tower" + } + }, + "n2199109876": { + "id": "n2199109876", + "loc": [-85.6397689, 41.9572354] + }, + "n2199109878": { + "id": "n2199109878", + "loc": [-85.6399229, 41.9569826] + }, + "n2199109880": { + "id": "n2199109880", + "loc": [-85.639706, 41.9569095] + }, + "n2199109882": { + "id": "n2199109882", + "loc": [-85.639552, 41.9571623] + }, + "n2199109884": { + "id": "n2199109884", + "loc": [-85.6391028, 41.9569517] + }, + "n2199109886": { + "id": "n2199109886", + "loc": [-85.6392876, 41.956646] + }, + "n2199109888": { + "id": "n2199109888", + "loc": [-85.639484, 41.9567117] + }, + "n2199109889": { + "id": "n2199109889", + "loc": [-85.6394322, 41.9567973] + }, + "n2199109890": { + "id": "n2199109890", + "loc": [-85.6393718, 41.9567771] + }, + "n2199109891": { + "id": "n2199109891", + "loc": [-85.6392387, 41.9569972] + }, + "n1819848900": { + "id": "n1819848900", + "loc": [-85.638281, 41.9576578] + }, + "n1819848978": { + "id": "n1819848978", + "loc": [-85.6377186, 41.9580867] + }, + "n1819849039": { + "id": "n1819849039", + "loc": [-85.6384217, 41.9573405] + }, + "n1819849050": { + "id": "n1819849050", + "loc": [-85.6377011, 41.9570042] + }, + "n1819849088": { + "id": "n1819849088", + "loc": [-85.6382879, 41.9580817] + }, + "n2114807549": { + "id": "n2114807549", + "loc": [-85.6362551, 41.96473] + }, + "n2114807587": { + "id": "n2114807587", + "loc": [-85.6368694, 41.9629829] + }, + "n2189015725": { + "id": "n2189015725", + "loc": [-85.644156, 41.9569753] + }, + "n2189015741": { + "id": "n2189015741", + "loc": [-85.6419825, 41.9597632] + }, + "w208627217": { + "id": "w208627217", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189015741", + "n2189015744", + "n2189015747", + "n2189015750", + "n2189015753", + "n2189015756", + "n2189015759", + "n2189015760", + "n2189015764", + "n2189015766", + "n2189015770", + "n2189015771", + "n2189015774", + "n2189015778", + "n2189015781", + "n2189015785", + "n2189015789", + "n2189015793", + "n2189015796", + "n2189015800", + "n2189015804", + "n2189015808", + "n2189015741" + ] + }, + "w208627212": { + "id": "w208627212", + "tags": { + "highway": "service" + }, + "nodes": ["n2189015691", "n2189015696", "n2189015722", "n2189015725"] + }, + "w209717057": { + "id": "w209717057", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109876", "n2199109878", "n2199109880", "n2199109882", "n2199109876"] + }, + "w209717056": { + "id": "w209717056", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109865", "n2199109867", "n2199109869", "n2199109871", "n2199109865"] + }, + "w208627231": { + "id": "w208627231", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015909", "n2189015926", "n2189015929", "n2189015932", "n2189015909"] + }, + "w170848326": { + "id": "w170848326", + "tags": { + "building": "yes" + }, + "nodes": [ + "n1819848881", + "n1819849050", + "n1819848978", + "n1819849088", + "n1819848900", + "n1819848947", + "n1819849039", + "n1819849044", + "n1819848881" + ] + }, + "w17963182": { + "id": "w17963182", + "tags": { + "highway": "service" + }, + "nodes": ["n185949763", "n185949765", "n2189015691", "n185949745"] + }, + "w201484340": { + "id": "w201484340", + "tags": { + "railway": "rail", + "service": "siding" + }, + "nodes": ["n2114807565", "n2114807564", "n2114807547", "n2114807587", "n2114807558", "n2114807549", "n2114807593"] + }, + "w209717058": { + "id": "w209717058", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109884", "n2199109886", "n2199109888", "n2199109889", "n2199109890", "n2199109891", "n2199109884"] + }, + "n185954650": { + "id": "n185954650", + "loc": [-85.627331, 41.957439] + }, + "n185966949": { + "id": "n185966949", + "loc": [-85.626868, 41.957314] + }, + "n185989335": { + "id": "n185989335", + "loc": [-85.62529, 41.958568] + }, + "n185989337": { + "id": "n185989337", + "loc": [-85.624962, 41.958453] + }, + "n185989339": { + "id": "n185989339", + "loc": [-85.624832, 41.958399] + }, + "n185989340": { + "id": "n185989340", + "loc": [-85.624707, 41.958325] + }, + "n185989342": { + "id": "n185989342", + "loc": [-85.624636, 41.958251] + }, + "n185989345": { + "id": "n185989345", + "loc": [-85.624578, 41.95818] + }, + "n185989347": { + "id": "n185989347", + "loc": [-85.624533, 41.958099] + }, + "n185989349": { + "id": "n185989349", + "loc": [-85.624507, 41.957985] + }, + "n185989351": { + "id": "n185989351", + "loc": [-85.624495, 41.957807] + }, + "n185989353": { + "id": "n185989353", + "loc": [-85.624514, 41.957663] + }, + "n185989354": { + "id": "n185989354", + "loc": [-85.624577, 41.957593] + }, + "n185989356": { + "id": "n185989356", + "loc": [-85.624685, 41.95754] + }, + "n185989357": { + "id": "n185989357", + "loc": [-85.624802, 41.957523] + }, + "n185989359": { + "id": "n185989359", + "loc": [-85.624996, 41.957524] + }, + "n185989361": { + "id": "n185989361", + "loc": [-85.625409, 41.957515] + }, + "n185989364": { + "id": "n185989364", + "loc": [-85.625634, 41.957496] + }, + "n185989367": { + "id": "n185989367", + "loc": [-85.625832, 41.957453] + }, + "n185989368": { + "id": "n185989368", + "loc": [-85.626044, 41.957394] + }, + "n354031352": { + "id": "n354031352", + "loc": [-85.6252778, 41.9586111], + "tags": { + "amenity": "place_of_worship", + "denomination": "baptist", + "name": "First Baptist Church", + "religion": "christian" + } + }, + "n2199109892": { + "id": "n2199109892", + "loc": [-85.6261578, 41.9589963] + }, + "n2199109893": { + "id": "n2199109893", + "loc": [-85.6263191, 41.9586865] + }, + "n2199109894": { + "id": "n2199109894", + "loc": [-85.6261186, 41.9586288] + }, + "n2199109895": { + "id": "n2199109895", + "loc": [-85.6260644, 41.9587329] + }, + "n2199109896": { + "id": "n2199109896", + "loc": [-85.6261547, 41.9587589] + }, + "n2199109898": { + "id": "n2199109898", + "loc": [-85.6260476, 41.9589646] + }, + "n185966951": { + "id": "n185966951", + "loc": [-85.628404, 41.957438] + }, + "w17965351": { + "id": "w17965351", + "tags": { + "highway": "residential", + "name": "Flower Street" + }, + "nodes": ["n185966948", "n185966949", "n185954650", "n185966951", "n185966953", "n185966955", "n185966957"] + }, + "w17967809": { + "id": "w17967809", + "tags": { + "highway": "residential", + "name": "Azaleamum Drive" + }, + "nodes": [ + "n185982197", + "n185989335", + "n185989337", + "n185989339", + "n185989340", + "n185989342", + "n185989345", + "n185989347", + "n185989349", + "n185989351", + "n185989353", + "n185989354", + "n185989356", + "n185989357", + "n185989359", + "n185989361", + "n185989364", + "n185989367", + "n185989368", + "n185982196" + ] + }, + "w209717059": { + "id": "w209717059", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2199109892", "n2199109893", "n2199109894", "n2199109895", "n2199109896", "n2199109898", "n2199109892"] + }, + "n185961390": { + "id": "n185961390", + "loc": [-85.63137, 41.959033] + }, + "n185961393": { + "id": "n185961393", + "loc": [-85.634315, 41.959017] + }, + "w17966214": { + "id": "w17966214", + "tags": { + "highway": "residential", + "name": "East Adams Street" + }, + "nodes": ["n185975351", "n185967434", "n185968108"] + }, + "w17964793": { + "id": "w17964793", + "tags": { + "highway": "residential", + "name": "Morris Avenue" + }, + "nodes": ["n185961389", "n185961390", "n185961391", "n185961393", "n185961396"] + }, + "n185952166": { + "id": "n185952166", + "loc": [-85.638174, 41.95831] + }, + "n2114807552": { + "id": "n2114807552", + "loc": [-85.6383526, 41.9593788] + }, + "n2114807591": { + "id": "n2114807591", + "loc": [-85.6383741, 41.9593968] + }, + "n2189015731": { + "id": "n2189015731", + "loc": [-85.6368404, 41.9592785] + }, + "n2189015734": { + "id": "n2189015734", + "loc": [-85.6368404, 41.9585918] + }, + "n2189015737": { + "id": "n2189015737", + "loc": [-85.6376009, 41.9585918] + }, + "n2189015738": { + "id": "n2189015738", + "loc": [-85.6376009, 41.9592785] + }, + "n2189015897": { + "id": "n2189015897", + "loc": [-85.6376839, 41.9566137] + }, + "n2189015900": { + "id": "n2189015900", + "loc": [-85.6376831, 41.9564865] + }, + "n2189015903": { + "id": "n2189015903", + "loc": [-85.6381161, 41.9564851] + }, + "n2189015906": { + "id": "n2189015906", + "loc": [-85.6381168, 41.9566122] + }, + "n2189015937": { + "id": "n2189015937", + "loc": [-85.6364789, 41.9590634] + }, + "n2189015940": { + "id": "n2189015940", + "loc": [-85.6361137, 41.9590672] + }, + "n2189015943": { + "id": "n2189015943", + "loc": [-85.6361169, 41.9594033] + }, + "n2189015945": { + "id": "n2189015945", + "loc": [-85.6363456, 41.9594021] + }, + "n2189015952": { + "id": "n2189015952", + "loc": [-85.636112, 41.958892] + }, + "n2189015955": { + "id": "n2189015955", + "loc": [-85.6364757, 41.9588894] + }, + "n2189015957": { + "id": "n2189015957", + "loc": [-85.6364729, 41.9586747] + }, + "n2189015958": { + "id": "n2189015958", + "loc": [-85.6361103, 41.9586765] + }, + "n2189015959": { + "id": "n2189015959", + "loc": [-85.6364719, 41.9585562] + }, + "n2189015960": { + "id": "n2189015960", + "loc": [-85.6361093, 41.958558] + }, + "n2189015961": { + "id": "n2189015961", + "loc": [-85.6355494, 41.9586403] + }, + "n2189015962": { + "id": "n2189015962", + "loc": [-85.635549, 41.9584711] + }, + "n2189015963": { + "id": "n2189015963", + "loc": [-85.6351831, 41.9584715] + }, + "n2189015964": { + "id": "n2189015964", + "loc": [-85.6351834, 41.9586408] + }, + "n2189015966": { + "id": "n2189015966", + "loc": [-85.6359579, 41.9586359] + }, + "n2189015968": { + "id": "n2189015968", + "loc": [-85.6359561, 41.9585465] + }, + "n2189015971": { + "id": "n2189015971", + "loc": [-85.6355476, 41.9585509] + }, + "n2189015974": { + "id": "n2189015974", + "loc": [-85.6359516, 41.9592934] + }, + "n2189015977": { + "id": "n2189015977", + "loc": [-85.635949, 41.9586697] + }, + "n2189015980": { + "id": "n2189015980", + "loc": [-85.6351329, 41.9586716] + }, + "n2189015983": { + "id": "n2189015983", + "loc": [-85.6351318, 41.9583949] + }, + "n2189015986": { + "id": "n2189015986", + "loc": [-85.6349148, 41.9583954] + }, + "n2189015989": { + "id": "n2189015989", + "loc": [-85.6349186, 41.9592958] + }, + "n2189015995": { + "id": "n2189015995", + "loc": [-85.6360173, 41.9593286] + }, + "n2189015998": { + "id": "n2189015998", + "loc": [-85.6360278, 41.9583079] + }, + "n2114807550": { + "id": "n2114807550", + "loc": [-85.6383392, 41.9595404] + }, + "n2114807551": { + "id": "n2114807551", + "loc": [-85.6375855, 41.9616107] + }, + "n2114807559": { + "id": "n2114807559", + "loc": [-85.6373978, 41.9621273] + }, + "n2114807562": { + "id": "n2114807562", + "loc": [-85.6373361, 41.9622609] + }, + "n2114807563": { + "id": "n2114807563", + "loc": [-85.6376472, 41.9613953] + }, + "n2114807574": { + "id": "n2114807574", + "loc": [-85.636974, 41.9627695] + }, + "n2114807589": { + "id": "n2114807589", + "loc": [-85.6383017, 41.9595005] + }, + "n2114807592": { + "id": "n2114807592", + "loc": [-85.6377169, 41.9613494] + }, + "n2114807595": { + "id": "n2114807595", + "loc": [-85.6371081, 41.962574] + }, + "n2189015934": { + "id": "n2189015934", + "loc": [-85.6364855, 41.9595098] + }, + "n2189015949": { + "id": "n2189015949", + "loc": [-85.6363466, 41.9595105] + }, + "w208627244": { + "id": "w208627244", + "tags": { + "highway": "service" + }, + "nodes": ["n2189015992", "n2189015995", "n2189015998"] + }, + "w208627240": { + "id": "w208627240", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015961", "n2189015971", "n2189015962", "n2189015963", "n2189015964", "n2189015961"] + }, + "w17967437": { + "id": "w17967437", + "tags": { + "highway": "residential", + "name": "Lyman Street" + }, + "nodes": ["n185964361", "n185984024"] + }, + "w208627237": { + "id": "w208627237", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015955", "n2189015957", "n2189015958", "n2189015952", "n2189015955"] + }, + "w17967465": { + "id": "w17967465", + "tags": { + "highway": "residential", + "name": "West Adams Street" + }, + "nodes": ["n185978394", "n185984022", "n185964360"] + }, + "w208627228": { + "id": "w208627228", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015897", "n2189015900", "n2189015903", "n2189015906", "n2189015897"] + }, + "w201484351": { + "id": "w201484351", + "tags": { + "railway": "rail", + "service": "siding" + }, + "nodes": [ + "n2114807587", + "n2114807574", + "n2114807595", + "n2114807562", + "n2114807559", + "n2114807551", + "n2114807563", + "n2114807589", + "n2114807552" + ] + }, + "w208627239": { + "id": "w208627239", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015957", "n2189015959", "n2189015960", "n2189015958", "n2189015957"] + }, + "w208627233": { + "id": "w208627233", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015934", "n2189015937", "n2189015940", "n2189015943", "n2189015945", "n2189015949", "n2189015934"] + }, + "w208627241": { + "id": "w208627241", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015961", "n2189015966", "n2189015968", "n2189015971", "n2189015961"] + }, + "w17967970": { + "id": "w17967970", + "tags": { + "highway": "residential", + "name": "Adams Street" + }, + "nodes": ["n185975351", "n185978394"] + }, + "w208627235": { + "id": "w208627235", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015940", "n2189015952", "n2189015955", "n2189015937", "n2189015940"] + }, + "w17965468": { + "id": "w17965468", + "tags": { + "highway": "residential", + "name": "Armstrong Blvd" + }, + "nodes": ["n185967917", "n2189015998", "n185967918", "n185964362", "n185952166"] + }, + "w201484346": { + "id": "w201484346", + "tags": { + "railway": "rail", + "service": "siding" + }, + "nodes": ["n2114807551", "n2114807592", "n2114807550", "n2114807591"] + }, + "w208627242": { + "id": "w208627242", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2189015974", "n2189015977", "n2189015980", "n2189015983", "n2189015986", "n2189015989", "n2189015974"] + }, + "w208627216": { + "id": "w208627216", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": ["n2189015731", "n2189015734", "n2189015737", "n2189015738", "n2189015731"] + }, + "n185984309": { + "id": "n185984309", + "loc": [-85.631421, 41.961494] + }, + "n185987987": { + "id": "n185987987", + "loc": [-85.631456, 41.960673] + }, + "n185965397": { + "id": "n185965397", + "loc": [-85.634603, 41.959838] + }, + "w17965196": { + "id": "w17965196", + "tags": { + "highway": "residential", + "name": "Burke Avenue" + }, + "nodes": ["n185965395", "n185965397", "n185965399"] + }, + "w17967215": { + "id": "w17967215", + "tags": { + "highway": "residential", + "name": "Kellogg Avenue" + }, + "nodes": ["n185968114", "n185984309", "n185967440", "n185978402"] + }, + "w17967597": { + "id": "w17967597", + "tags": { + "highway": "residential", + "name": "Barnard Avenue" + }, + "nodes": ["n185968112", "n185987987", "n185967438", "n185978399"] + }, + "n394490857": { + "id": "n394490857", + "loc": [-85.633952, 41.960664] + }, + "n394490858": { + "id": "n394490858", + "loc": [-85.633938, 41.960227] + }, + "n394490859": { + "id": "n394490859", + "loc": [-85.634794, 41.960212] + }, + "n394490860": { + "id": "n394490860", + "loc": [-85.634815, 41.960662] + }, + "n394490861": { + "id": "n394490861", + "loc": [-85.634103, 41.961268] + }, + "n394490862": { + "id": "n394490862", + "loc": [-85.634103, 41.961001] + }, + "n394490863": { + "id": "n394490863", + "loc": [-85.634504, 41.961003] + }, + "n394490864": { + "id": "n394490864", + "loc": [-85.634561, 41.961269] + }, + "n1057629869": { + "id": "n1057629869", + "loc": [-85.6382599, 41.9612134] + }, + "n1057629937": { + "id": "n1057629937", + "loc": [-85.6380035, 41.9616137] + }, + "n2189016014": { + "id": "n2189016014", + "loc": [-85.6360365, 41.9626496] + }, + "n2189016017": { + "id": "n2189016017", + "loc": [-85.6360374, 41.9623228] + }, + "n2189016020": { + "id": "n2189016020", + "loc": [-85.6367557, 41.9623239] + }, + "n2189016022": { + "id": "n2189016022", + "loc": [-85.6367566, 41.9619919] + }, + "n2189016025": { + "id": "n2189016025", + "loc": [-85.6351794, 41.9619893] + }, + "n2189016028": { + "id": "n2189016028", + "loc": [-85.6351788, 41.9622011] + }, + "n2189016031": { + "id": "n2189016031", + "loc": [-85.6350855, 41.9622009] + }, + "n2189016034": { + "id": "n2189016034", + "loc": [-85.6350845, 41.962527] + }, + "n2189016037": { + "id": "n2189016037", + "loc": [-85.6352732, 41.9625273] + }, + "n2189016039": { + "id": "n2189016039", + "loc": [-85.6352738, 41.9623178] + }, + "n2189016042": { + "id": "n2189016042", + "loc": [-85.6357712, 41.9623186] + }, + "n2189016044": { + "id": "n2189016044", + "loc": [-85.6357702, 41.9626492] + }, + "n1057629880": { + "id": "n1057629880", + "loc": [-85.638817, 41.9619017] + }, + "n1057629923": { + "id": "n1057629923", + "loc": [-85.6390733, 41.9615014] + }, + "w91092312": { + "id": "w91092312", + "tags": { + "power": "station" + }, + "nodes": ["n1057629923", "n1057629869", "n1057629937", "n1057629880", "n1057629923"] + }, + "w34369826": { + "id": "w34369826", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394490861", "n394490862", "n394490863", "n394490864", "n394490861"] + }, + "w34369825": { + "id": "w34369825", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394490857", "n394490858", "n394490859", "n394490860", "n394490857"] + }, + "w208627248": { + "id": "w208627248", + "tags": { + "area": "yes", + "building": "yes" + }, + "nodes": [ + "n2189016014", + "n2189016017", + "n2189016020", + "n2189016022", + "n2189016025", + "n2189016028", + "n2189016031", + "n2189016034", + "n2189016037", + "n2189016039", + "n2189016042", + "n2189016044", + "n2189016014" + ] + }, + "n394490766": { + "id": "n394490766", + "loc": [-85.616777, 41.955642] + }, + "n394490768": { + "id": "n394490768", + "loc": [-85.617239, 41.955644] + }, + "n394490792": { + "id": "n394490792", + "loc": [-85.619034, 41.95543] + }, + "n185972055": { + "id": "n185972055", + "loc": [-85.6185905, 41.9568211] + }, + "n185972057": { + "id": "n185972057", + "loc": [-85.6186688, 41.9570086] + }, + "n185972059": { + "id": "n185972059", + "loc": [-85.6186924, 41.9581453] + }, + "n185972060": { + "id": "n185972060", + "loc": [-85.6187082, 41.9588211], + "tags": { + "highway": "turning_circle" + } + }, + "n1819790724": { + "id": "n1819790724", + "loc": [-85.6182155, 41.9555703] + }, + "n1819790735": { + "id": "n1819790735", + "loc": [-85.6184059, 41.9566188] + }, + "n1819790799": { + "id": "n1819790799", + "loc": [-85.6182372, 41.9563771] + }, + "n1819790896": { + "id": "n1819790896", + "loc": [-85.6181431, 41.9557227] + }, + "n185971405": { + "id": "n185971405", + "loc": [-85.6186766, 41.9577468] + }, + "n185971565": { + "id": "n185971565", + "loc": [-85.6181613, 41.9560879] + }, + "n185967985": { + "id": "n185967985", + "loc": [-85.6186798, 41.9585791] + }, + "n185955753": { + "id": "n185955753", + "loc": [-85.620773, 41.9555854] + }, + "n185955755": { + "id": "n185955755", + "loc": [-85.6212652, 41.9559891] + }, + "n185955748": { + "id": "n185955748", + "loc": [-85.620722, 41.954858] + }, + "n185955751": { + "id": "n185955751", + "loc": [-85.6206912, 41.955367] + }, + "n185967987": { + "id": "n185967987", + "loc": [-85.6159351, 41.9585809] + }, + "n185971407": { + "id": "n185971407", + "loc": [-85.6159142, 41.9577578] + }, + "n185971570": { + "id": "n185971570", + "loc": [-85.6162248, 41.95603] + }, + "n185971572": { + "id": "n185971572", + "loc": [-85.6160402, 41.9560749] + }, + "n185971574": { + "id": "n185971574", + "loc": [-85.61593, 41.956201] + }, + "n185981301": { + "id": "n185981301", + "loc": [-85.6158973, 41.9581601] + }, + "n394490762": { + "id": "n394490762", + "loc": [-85.617193, 41.954706] + }, + "n394490764": { + "id": "n394490764", + "loc": [-85.616773, 41.954737] + }, + "n394490787": { + "id": "n394490787", + "loc": [-85.618972, 41.954737] + }, + "n394490790": { + "id": "n394490790", + "loc": [-85.619046, 41.954929] + }, + "n394490794": { + "id": "n394490794", + "loc": [-85.619922, 41.955296] + }, + "n394490796": { + "id": "n394490796", + "loc": [-85.61991, 41.95501] + }, + "n394490798": { + "id": "n394490798", + "loc": [-85.619974, 41.954751] + }, + "n1819790677": { + "id": "n1819790677", + "loc": [-85.6187031, 41.9550522] + }, + "n1819790787": { + "id": "n1819790787", + "loc": [-85.6186436, 41.9552022] + }, + "n1819790828": { + "id": "n1819790828", + "loc": [-85.6185127, 41.9553393] + }, + "w17966857": { + "id": "w17966857", + "tags": { + "access": "private", + "highway": "service", + "name": "Sable River Road" + }, + "nodes": ["n185972059", "n185981301"] + }, + "w34369814": { + "id": "w34369814", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394490787", "n394490790", "n394490792", "n394490794", "n394490796", "n394490798", "n394490787"] + }, + "w17964176": { + "id": "w17964176", + "tags": { + "highway": "residential" + }, + "nodes": ["n185955747", "n185955748", "n185955751", "n185955753", "n185955755"] + }, + "w17965838": { + "id": "w17965838", + "tags": { + "access": "private", + "highway": "service", + "name": "Pine River Road" + }, + "nodes": ["n185971405", "n185971407"] + }, + "w17965476": { + "id": "w17965476", + "tags": { + "access": "private", + "highway": "service", + "name": "Raisin River Road" + }, + "nodes": ["n185967985", "n185967987"] + }, + "w17965913": { + "id": "w17965913", + "tags": { + "access": "private", + "highway": "service", + "name": "Shiawassee River Road" + }, + "nodes": [ + "n185972054", + "n1819790677", + "n1819790787", + "n1819790828", + "n1819790724", + "n1819790896", + "n185971565", + "n1819790799", + "n1819790735", + "n185972055", + "n185972057", + "n185971405", + "n185972059", + "n185967985", + "n185972060" + ] + }, + "w34369811": { + "id": "w34369811", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394490762", "n394490764", "n394490766", "n394490768", "n394490762"] + }, + "w17965854": { + "id": "w17965854", + "tags": { + "access": "private", + "highway": "service", + "name": "Sturgeon River Road" + }, + "nodes": ["n185971565", "n185971570", "n185971572", "n185971574"] + }, + "n2139795769": { + "id": "n2139795769", + "loc": [-85.6250804, 41.9608796] + }, + "n2139795770": { + "id": "n2139795770", + "loc": [-85.6250315, 41.9613684] + }, + "n2139795771": { + "id": "n2139795771", + "loc": [-85.6249671, 41.9614362] + }, + "n2139795772": { + "id": "n2139795772", + "loc": [-85.6249698, 41.961522] + }, + "n2139795773": { + "id": "n2139795773", + "loc": [-85.6250798, 41.9615838] + }, + "n2139795774": { + "id": "n2139795774", + "loc": [-85.6252273, 41.9615639] + }, + "n2139795775": { + "id": "n2139795775", + "loc": [-85.6252863, 41.9614622] + }, + "n2139795776": { + "id": "n2139795776", + "loc": [-85.6252273, 41.9613764] + }, + "n2139795777": { + "id": "n2139795777", + "loc": [-85.6251227, 41.9613525] + }, + "n2139795778": { + "id": "n2139795778", + "loc": [-85.6249564, 41.9612527] + }, + "n2139795779": { + "id": "n2139795779", + "loc": [-85.6249846, 41.9610254] + }, + "n2139795780": { + "id": "n2139795780", + "loc": [-85.6266725, 41.9599647] + }, + "n2139795781": { + "id": "n2139795781", + "loc": [-85.6259162, 41.9599711] + }, + "n2139795782": { + "id": "n2139795782", + "loc": [-85.6257185, 41.960019] + }, + "n2139795783": { + "id": "n2139795783", + "loc": [-85.6255509, 41.9601213] + }, + "n185963539": { + "id": "n185963539", + "loc": [-85.615718, 41.983893] + }, + "n185964418": { + "id": "n185964418", + "loc": [-85.616626, 42.049512] + }, + "n185966614": { + "id": "n185966614", + "loc": [-85.615514, 41.976603] + }, + "n185966635": { + "id": "n185966635", + "loc": [-85.616118, 42.013017] + }, + "n185969040": { + "id": "n185969040", + "loc": [-85.615632, 41.972357] + }, + "n185969070": { + "id": "n185969070", + "loc": [-85.619145, 41.967648] + }, + "n185972156": { + "id": "n185972156", + "loc": [-85.621894, 41.963956] + }, + "n185972157": { + "id": "n185972157", + "loc": [-85.621806, 41.964077] + }, + "n185972158": { + "id": "n185972158", + "loc": [-85.620848, 41.965341] + }, + "n185972159": { + "id": "n185972159", + "loc": [-85.620684, 41.965558] + }, + "n185972160": { + "id": "n185972160", + "loc": [-85.620621, 41.965658] + }, + "n185972161": { + "id": "n185972161", + "loc": [-85.617844, 41.969359] + }, + "n185972162": { + "id": "n185972162", + "loc": [-85.616843, 41.97068] + }, + "n185972164": { + "id": "n185972164", + "loc": [-85.616714, 41.970839] + }, + "n185972166": { + "id": "n185972166", + "loc": [-85.615879, 41.971969] + }, + "n185972168": { + "id": "n185972168", + "loc": [-85.615748, 41.972159] + }, + "n185972170": { + "id": "n185972170", + "loc": [-85.615589, 41.972502] + }, + "n185972172": { + "id": "n185972172", + "loc": [-85.615542, 41.972733] + }, + "n185972175": { + "id": "n185972175", + "loc": [-85.615524, 41.972947] + }, + "n185972177": { + "id": "n185972177", + "loc": [-85.615512, 41.973715] + }, + "n185972179": { + "id": "n185972179", + "loc": [-85.615513, 41.976496] + }, + "n185972180": { + "id": "n185972180", + "loc": [-85.615538, 41.977246] + }, + "n185972181": { + "id": "n185972181", + "loc": [-85.61558, 41.982139] + }, + "n185972184": { + "id": "n185972184", + "loc": [-85.61557, 41.983317] + }, + "n185972186": { + "id": "n185972186", + "loc": [-85.615591, 41.983463] + }, + "n185972188": { + "id": "n185972188", + "loc": [-85.615763, 41.984146] + }, + "n185972190": { + "id": "n185972190", + "loc": [-85.615814, 41.98435] + }, + "n185972192": { + "id": "n185972192", + "loc": [-85.615965, 41.998453] + }, + "n185972194": { + "id": "n185972194", + "loc": [-85.615982, 42.001237] + }, + "n185972195": { + "id": "n185972195", + "loc": [-85.616055, 42.00555] + }, + "n185972197": { + "id": "n185972197", + "loc": [-85.616134, 42.014887] + }, + "n185972199": { + "id": "n185972199", + "loc": [-85.616177, 42.018465] + }, + "n185972201": { + "id": "n185972201", + "loc": [-85.616298, 42.027627] + }, + "n185972203": { + "id": "n185972203", + "loc": [-85.616513, 42.042212] + }, + "w203968015": { + "id": "w203968015", + "tags": { + "highway": "residential" + }, + "nodes": ["n2139795768", "n2139795769"] + }, + "w17965932": { + "id": "w17965932", + "tags": { + "highway": "residential", + "name": "Buckhorn Road", + "name_1": "County Highway 122" + }, + "nodes": [ + "n185972155", + "n185972156", + "n185972157", + "n185972158", + "n185972159", + "n185972160", + "n185969070", + "n185972161", + "n185972162", + "n185972164", + "n185972166", + "n185972168", + "n185969040", + "n185972170", + "n185972172", + "n185972175", + "n185972177", + "n185972179", + "n185966614", + "n185972180", + "n185972181", + "n185972184", + "n185972186", + "n185963539", + "n185972188", + "n185972190", + "n185972192", + "n185972194", + "n185972195", + "n185966635", + "n185972197", + "n185972199", + "n185972201", + "n185972203", + "n185964418" + ] + }, + "w203968016": { + "id": "w203968016", + "tags": { + "highway": "residential", + "name": "New Jersey Court" + }, + "nodes": [ + "n2139795770", + "n2139795771", + "n2139795772", + "n2139795773", + "n2139795774", + "n2139795775", + "n2139795776", + "n2139795777", + "n2139795770", + "n2139795778", + "n2139795779", + "n2139795769" + ] + }, + "w203968017": { + "id": "w203968017", + "tags": { + "highway": "residential", + "name": "Oklahoma Drive" + }, + "nodes": ["n2139795780", "n2139795781", "n2139795782", "n2139795783", "n2139795769"] + }, + "n1819790528": { + "id": "n1819790528", + "loc": [-85.6184827, 41.960025] + }, + "n1819790530": { + "id": "n1819790530", + "loc": [-85.6168626, 41.9605834] + }, + "n1819790534": { + "id": "n1819790534", + "loc": [-85.6197379, 41.9617163] + }, + "n1819790541": { + "id": "n1819790541", + "loc": [-85.6198881, 41.9620833] + }, + "n1819790543": { + "id": "n1819790543", + "loc": [-85.619695, 41.9619397] + }, + "n1819790547": { + "id": "n1819790547", + "loc": [-85.6190298, 41.9609504] + }, + "n1819790555": { + "id": "n1819790555", + "loc": [-85.6180471, 41.9609788] + }, + "n1819790559": { + "id": "n1819790559", + "loc": [-85.6203817, 41.9605436] + }, + "n1819790583": { + "id": "n1819790583", + "loc": [-85.6201564, 41.9603282] + }, + "n1819790590": { + "id": "n1819790590", + "loc": [-85.617045, 41.9598894] + }, + "n1819790609": { + "id": "n1819790609", + "loc": [-85.6177638, 41.9598495] + }, + "n1819790618": { + "id": "n1819790618", + "loc": [-85.6195234, 41.9610143] + }, + "n1819790642": { + "id": "n1819790642", + "loc": [-85.6181179, 41.9627933] + }, + "n1819790659": { + "id": "n1819790659", + "loc": [-85.6174634, 41.962897] + }, + "n1819790665": { + "id": "n1819790665", + "loc": [-85.6170343, 41.9630885] + }, + "n1819790674": { + "id": "n1819790674", + "loc": [-85.6194697, 41.9601925] + }, + "n1819790685": { + "id": "n1819790685", + "loc": [-85.6207722, 41.9610665] + }, + "n1819790687": { + "id": "n1819790687", + "loc": [-85.6202315, 41.9622109] + }, + "n1819790697": { + "id": "n1819790697", + "loc": [-85.6184505, 41.9624662] + }, + "n1819790726": { + "id": "n1819790726", + "loc": [-85.6178926, 41.9628492] + }, + "n1819790738": { + "id": "n1819790738", + "loc": [-85.6173347, 41.9598016] + }, + "n1819790762": { + "id": "n1819790762", + "loc": [-85.6186221, 41.9609105] + }, + "n1819790774": { + "id": "n1819790774", + "loc": [-85.6175922, 41.9608308] + }, + "n1819790781": { + "id": "n1819790781", + "loc": [-85.6167768, 41.9633198] + }, + "n1819790796": { + "id": "n1819790796", + "loc": [-85.619856, 41.961461] + }, + "n1819790811": { + "id": "n1819790811", + "loc": [-85.6208215, 41.9620195] + }, + "n1819790833": { + "id": "n1819790833", + "loc": [-85.618311, 41.9612536] + }, + "n1819790854": { + "id": "n1819790854", + "loc": [-85.6183646, 41.9626417] + }, + "n1819790863": { + "id": "n1819790863", + "loc": [-85.6204997, 41.9608547] + }, + "n1819790867": { + "id": "n1819790867", + "loc": [-85.6184934, 41.9621391] + }, + "n1819790877": { + "id": "n1819790877", + "loc": [-85.6206928, 41.9621152] + }, + "n1819790881": { + "id": "n1819790881", + "loc": [-85.6170879, 41.960735] + }, + "n1819790891": { + "id": "n1819790891", + "loc": [-85.6168304, 41.9601207] + }, + "n1819790898": { + "id": "n1819790898", + "loc": [-85.619813, 41.9612297] + }, + "n1819790909": { + "id": "n1819790909", + "loc": [-85.6167982, 41.960376] + }, + "n1819790912": { + "id": "n1819790912", + "loc": [-85.6205855, 41.9610462] + }, + "n1819790544": { + "id": "n1819790544", + "loc": [-85.612968, 41.9707781] + }, + "n1819790549": { + "id": "n1819790549", + "loc": [-85.614395, 41.9697172] + }, + "n1819790552": { + "id": "n1819790552", + "loc": [-85.6180535, 41.9655536] + }, + "n1819790554": { + "id": "n1819790554", + "loc": [-85.6111227, 41.9703713] + }, + "n1819790560": { + "id": "n1819790560", + "loc": [-85.6112729, 41.9701958] + }, + "n1819790563": { + "id": "n1819790563", + "loc": [-85.6137512, 41.9689917] + }, + "n1819790564": { + "id": "n1819790564", + "loc": [-85.6181072, 41.9659205] + }, + "n1819790595": { + "id": "n1819790595", + "loc": [-85.6170021, 41.9666863] + }, + "n1819790605": { + "id": "n1819790605", + "loc": [-85.6168948, 41.9644527] + }, + "n1819790606": { + "id": "n1819790606", + "loc": [-85.6128071, 41.9701081] + }, + "n1819790607": { + "id": "n1819790607", + "loc": [-85.6129251, 41.9704032] + }, + "n1819790612": { + "id": "n1819790612", + "loc": [-85.6177638, 41.9663912] + }, + "n1819790615": { + "id": "n1819790615", + "loc": [-85.6152533, 41.9670373] + }, + "n1819790622": { + "id": "n1819790622", + "loc": [-85.6146739, 41.9673804] + }, + "n1819790623": { + "id": "n1819790623", + "loc": [-85.6180428, 41.9661838] + }, + "n1819790625": { + "id": "n1819790625", + "loc": [-85.6172918, 41.9646202] + }, + "n1819790645": { + "id": "n1819790645", + "loc": [-85.6178067, 41.965043] + }, + "n1819790647": { + "id": "n1819790647", + "loc": [-85.6143306, 41.9712488] + }, + "n1819790649": { + "id": "n1819790649", + "loc": [-85.6147383, 41.9707702] + }, + "n1819790654": { + "id": "n1819790654", + "loc": [-85.6157361, 41.9668459] + }, + "n1819790657": { + "id": "n1819790657", + "loc": [-85.6145666, 41.9710733] + }, + "n1819790668": { + "id": "n1819790668", + "loc": [-85.6166909, 41.9642692] + }, + "n1819790671": { + "id": "n1819790671", + "loc": [-85.6141482, 41.9696538] + }, + "n1819790679": { + "id": "n1819790679", + "loc": [-85.6148349, 41.9705388] + }, + "n1819790686": { + "id": "n1819790686", + "loc": [-85.6139551, 41.9695501] + }, + "n1819790696": { + "id": "n1819790696", + "loc": [-85.6119703, 41.9699087] + }, + "n1819790704": { + "id": "n1819790704", + "loc": [-85.6140731, 41.9684174] + }, + "n1819790706": { + "id": "n1819790706", + "loc": [-85.6124745, 41.9699246] + }, + "n1819790718": { + "id": "n1819790718", + "loc": [-85.6165407, 41.9636868] + }, + "n1819790720": { + "id": "n1819790720", + "loc": [-85.61388, 41.9687365] + }, + "n1819790731": { + "id": "n1819790731", + "loc": [-85.6165193, 41.9639421] + }, + "n1819790739": { + "id": "n1819790739", + "loc": [-85.6146739, 41.9699964] + }, + "n1819790753": { + "id": "n1819790753", + "loc": [-85.6173883, 41.9665747] + }, + "n1819790760": { + "id": "n1819790760", + "loc": [-85.6133221, 41.9712089] + }, + "n1819790767": { + "id": "n1819790767", + "loc": [-85.6116698, 41.9699246] + }, + "n1819790779": { + "id": "n1819790779", + "loc": [-85.6130753, 41.9710573] + }, + "n1819790791": { + "id": "n1819790791", + "loc": [-85.6137083, 41.9692869] + }, + "n1819790795": { + "id": "n1819790795", + "loc": [-85.6141482, 41.9679627] + }, + "n1819790798": { + "id": "n1819790798", + "loc": [-85.6137727, 41.9694305] + }, + "n1819790836": { + "id": "n1819790836", + "loc": [-85.6143842, 41.9676037] + }, + "n1819790915": { + "id": "n1819790915", + "loc": [-85.6148456, 41.9702756] + }, + "n1819790926": { + "id": "n1819790926", + "loc": [-85.6138371, 41.9713525] + }, + "n1819790927": { + "id": "n1819790927", + "loc": [-85.6141053, 41.9713525] + }, + "n1819790931": { + "id": "n1819790931", + "loc": [-85.6162832, 41.966814] + }, + "n1821014625": { + "id": "n1821014625", + "loc": [-85.5960611, 41.9808498] + }, + "n1821014627": { + "id": "n1821014627", + "loc": [-85.5565843, 42.010982] + }, + "n1821014629": { + "id": "n1821014629", + "loc": [-85.5971541, 41.9805808] + }, + "n1821014632": { + "id": "n1821014632", + "loc": [-85.6061837, 41.9725907] + }, + "n1821014633": { + "id": "n1821014633", + "loc": [-85.5247773, 42.025766] + }, + "n1821014635": { + "id": "n1821014635", + "loc": [-85.5908938, 41.9902384] + }, + "n1821014636": { + "id": "n1821014636", + "loc": [-85.5917682, 41.9860637] + }, + "n1821014637": { + "id": "n1821014637", + "loc": [-85.5456556, 42.0166797] + }, + "n1821014638": { + "id": "n1821014638", + "loc": [-85.5795749, 42.0032352] + }, + "n1821014639": { + "id": "n1821014639", + "loc": [-85.6103988, 41.9723456] + }, + "n1821014642": { + "id": "n1821014642", + "loc": [-85.5818816, 42.0022466] + }, + "n1821014643": { + "id": "n1821014643", + "loc": [-85.5570604, 42.0091586] + }, + "n1821014644": { + "id": "n1821014644", + "loc": [-85.5952886, 41.9803792] + }, + "n1821014645": { + "id": "n1821014645", + "loc": [-85.5780366, 42.0040343] + }, + "n1821014646": { + "id": "n1821014646", + "loc": [-85.6050505, 41.9751971] + }, + "n1821014647": { + "id": "n1821014647", + "loc": [-85.5854435, 41.9946162] + }, + "n1821014648": { + "id": "n1821014648", + "loc": [-85.5452278, 42.0168768] + }, + "n1821014649": { + "id": "n1821014649", + "loc": [-85.6023254, 41.9780166] + }, + "n1821014651": { + "id": "n1821014651", + "loc": [-85.5761899, 42.0046783] + }, + "n1821014653": { + "id": "n1821014653", + "loc": [-85.5897351, 41.9876707] + }, + "n1821014657": { + "id": "n1821014657", + "loc": [-85.5963601, 41.9808998] + }, + "n1821014658": { + "id": "n1821014658", + "loc": [-85.5892952, 41.9951983] + }, + "n1821014660": { + "id": "n1821014660", + "loc": [-85.5778328, 42.0037194] + }, + "n1821014661": { + "id": "n1821014661", + "loc": [-85.5541475, 42.0125705] + }, + "n1821014663": { + "id": "n1821014663", + "loc": [-85.5914047, 41.9856469] + }, + "n1821014664": { + "id": "n1821014664", + "loc": [-85.6101681, 41.9727723] + }, + "n1821014665": { + "id": "n1821014665", + "loc": [-85.5910172, 41.9854696] + }, + "n1821014666": { + "id": "n1821014666", + "loc": [-85.5398688, 42.0187699] + }, + "n1821014667": { + "id": "n1821014667", + "loc": [-85.5218752, 42.0282884] + }, + "n1821014668": { + "id": "n1821014668", + "loc": [-85.5159582, 42.0329384] + }, + "n1821014669": { + "id": "n1821014669", + "loc": [-85.5898102, 41.9847319] + }, + "n1821014670": { + "id": "n1821014670", + "loc": [-85.5734809, 42.0066235] + }, + "n1821014671": { + "id": "n1821014671", + "loc": [-85.5922939, 41.980852] + }, + "n1821014672": { + "id": "n1821014672", + "loc": [-85.6023629, 41.9781163] + }, + "n1821014674": { + "id": "n1821014674", + "loc": [-85.5409953, 42.0191724] + }, + "n1821014676": { + "id": "n1821014676", + "loc": [-85.584435, 41.9949909] + }, + "n1821014677": { + "id": "n1821014677", + "loc": [-85.5972399, 41.9783835] + }, + "n1821014678": { + "id": "n1821014678", + "loc": [-85.5616738, 42.0071337] + }, + "n1821014681": { + "id": "n1821014681", + "loc": [-85.5202994, 42.0310755] + }, + "n1821014682": { + "id": "n1821014682", + "loc": [-85.5915912, 41.9857767] + }, + "n1821014684": { + "id": "n1821014684", + "loc": [-85.6022288, 41.977897] + }, + "n1821014687": { + "id": "n1821014687", + "loc": [-85.5933024, 41.9846362] + }, + "n1821014688": { + "id": "n1821014688", + "loc": [-85.5846871, 41.9956169] + }, + "n1821014689": { + "id": "n1821014689", + "loc": [-85.5898209, 41.99037] + }, + "n1821014691": { + "id": "n1821014691", + "loc": [-85.5448939, 42.0149261] + }, + "n1821014692": { + "id": "n1821014692", + "loc": [-85.5977763, 41.9786348] + }, + "n1821014694": { + "id": "n1821014694", + "loc": [-85.5767706, 42.0034523] + }, + "n1821014695": { + "id": "n1821014695", + "loc": [-85.6103559, 41.9726766] + }, + "n1821014697": { + "id": "n1821014697", + "loc": [-85.5922134, 41.9809876] + }, + "n1821014698": { + "id": "n1821014698", + "loc": [-85.5935277, 41.9831728] + }, + "n1821014700": { + "id": "n1821014700", + "loc": [-85.5674674, 42.0078273] + }, + "n1821014703": { + "id": "n1821014703", + "loc": [-85.6021, 41.9778053] + }, + "n1821014704": { + "id": "n1821014704", + "loc": [-85.5756763, 42.0053737] + }, + "n1821014705": { + "id": "n1821014705", + "loc": [-85.5887695, 41.9895207] + }, + "n1821014707": { + "id": "n1821014707", + "loc": [-85.6061073, 41.9746866] + }, + "n1821014708": { + "id": "n1821014708", + "loc": [-85.6033446, 41.9751692] + }, + "n1821014710": { + "id": "n1821014710", + "loc": [-85.5180986, 42.0322332] + }, + "n1821014711": { + "id": "n1821014711", + "loc": [-85.543365, 42.0163569] + }, + "n1821014712": { + "id": "n1821014712", + "loc": [-85.6030656, 41.9753646] + }, + "n1821014713": { + "id": "n1821014713", + "loc": [-85.6104417, 41.9704792] + }, + "n1821014714": { + "id": "n1821014714", + "loc": [-85.5205716, 42.030998] + }, + "n1821014716": { + "id": "n1821014716", + "loc": [-85.516382, 42.032536] + }, + "n1821014717": { + "id": "n1821014717", + "loc": [-85.5932863, 41.9820882] + }, + "n1821014718": { + "id": "n1821014718", + "loc": [-85.5361928, 42.0194974] + }, + "n1821014720": { + "id": "n1821014720", + "loc": [-85.6011613, 41.9773586] + }, + "n1821014721": { + "id": "n1821014721", + "loc": [-85.554287, 42.0109124] + }, + "n1821014722": { + "id": "n1821014722", + "loc": [-85.5577524, 42.0103425] + }, + "n1821014725": { + "id": "n1821014725", + "loc": [-85.5867256, 41.9921004] + }, + "n1821014726": { + "id": "n1821014726", + "loc": [-85.5856045, 41.9968807] + }, + "n1821014727": { + "id": "n1821014727", + "loc": [-85.5545445, 42.0106454] + }, + "n1821014728": { + "id": "n1821014728", + "loc": [-85.5923797, 41.9842534] + }, + "n1821014729": { + "id": "n1821014729", + "loc": [-85.5696346, 42.0081462] + }, + "n1821014730": { + "id": "n1821014730", + "loc": [-85.5998322, 41.9786884] + }, + "n1821014735": { + "id": "n1821014735", + "loc": [-85.5337426, 42.0218266] + }, + "n1821014736": { + "id": "n1821014736", + "loc": [-85.5847944, 41.994672] + }, + "n1821014740": { + "id": "n1821014740", + "loc": [-85.5315271, 42.0238669] + }, + "n1821014741": { + "id": "n1821014741", + "loc": [-85.5248846, 42.027085] + }, + "n1821014742": { + "id": "n1821014742", + "loc": [-85.5853376, 41.997018] + }, + "n1821014743": { + "id": "n1821014743", + "loc": [-85.5894883, 41.988811] + }, + "n1821014745": { + "id": "n1821014745", + "loc": [-85.6095311, 41.9726226] + }, + "n1821014746": { + "id": "n1821014746", + "loc": [-85.5531511, 42.0133416] + }, + "n1821014747": { + "id": "n1821014747", + "loc": [-85.5735882, 42.007058] + }, + "n1821014749": { + "id": "n1821014749", + "loc": [-85.5428554, 42.0164366] + }, + "n1821014751": { + "id": "n1821014751", + "loc": [-85.5395255, 42.0186304] + }, + "n1821014752": { + "id": "n1821014752", + "loc": [-85.571378, 42.0083176] + }, + "n1821014754": { + "id": "n1821014754", + "loc": [-85.5541918, 42.0113925] + }, + "n1821014755": { + "id": "n1821014755", + "loc": [-85.5278029, 42.0250806] + }, + "n1821014756": { + "id": "n1821014756", + "loc": [-85.5936725, 41.9827102] + }, + "n1821014757": { + "id": "n1821014757", + "loc": [-85.5176266, 42.0346677] + }, + "n1821014758": { + "id": "n1821014758", + "loc": [-85.6096692, 41.9714245] + }, + "n1821014759": { + "id": "n1821014759", + "loc": [-85.5770321, 42.0034266] + }, + "n1821014761": { + "id": "n1821014761", + "loc": [-85.5988921, 41.9779369] + }, + "n1821014762": { + "id": "n1821014762", + "loc": [-85.5811788, 42.0024499] + }, + "n1821014763": { + "id": "n1821014763", + "loc": [-85.5154003, 42.0381101] + }, + "n1821014764": { + "id": "n1821014764", + "loc": [-85.5155827, 42.0374089] + }, + "n1821014765": { + "id": "n1821014765", + "loc": [-85.5891249, 41.9884978] + }, + "n1821014766": { + "id": "n1821014766", + "loc": [-85.5313863, 42.0238293] + }, + "n1821014768": { + "id": "n1821014768", + "loc": [-85.593297, 41.9833363] + }, + "n1821014769": { + "id": "n1821014769", + "loc": [-85.5849446, 41.9957245] + }, + "n1821014770": { + "id": "n1821014770", + "loc": [-85.5537774, 42.0130847] + }, + "n1821014771": { + "id": "n1821014771", + "loc": [-85.6111766, 41.9706069] + }, + "n1821014772": { + "id": "n1821014772", + "loc": [-85.5585477, 42.008989] + }, + "n1821014774": { + "id": "n1821014774", + "loc": [-85.5928142, 41.9852623] + }, + "n1821014777": { + "id": "n1821014777", + "loc": [-85.5891933, 41.9882608] + }, + "n1821014778": { + "id": "n1821014778", + "loc": [-85.5926909, 41.9817532] + }, + "n1821014779": { + "id": "n1821014779", + "loc": [-85.5260272, 42.0252201] + }, + "n1821014781": { + "id": "n1821014781", + "loc": [-85.5894615, 41.9950468] + }, + "n1821014782": { + "id": "n1821014782", + "loc": [-85.5461063, 42.0143242] + }, + "n1821014783": { + "id": "n1821014783", + "loc": [-85.5711527, 42.0085886] + }, + "n1821014784": { + "id": "n1821014784", + "loc": [-85.5329379, 42.0218624] + }, + "n1821014786": { + "id": "n1821014786", + "loc": [-85.583047, 42.0020252] + }, + "n1821014787": { + "id": "n1821014787", + "loc": [-85.5758962, 42.0054095] + }, + "n1821014788": { + "id": "n1821014788", + "loc": [-85.5626354, 42.0077733] + }, + "n1821014789": { + "id": "n1821014789", + "loc": [-85.6029852, 41.9755999] + }, + "n1821014790": { + "id": "n1821014790", + "loc": [-85.5892362, 41.9886755] + }, + "n1821014791": { + "id": "n1821014791", + "loc": [-85.5157597, 42.0372017] + }, + "n1821014793": { + "id": "n1821014793", + "loc": [-85.6054582, 41.9751094] + }, + "n1821014794": { + "id": "n1821014794", + "loc": [-85.5986936, 41.9778412] + }, + "n1821014795": { + "id": "n1821014795", + "loc": [-85.5880775, 41.98976] + }, + "n1821014796": { + "id": "n1821014796", + "loc": [-85.5858727, 41.9963624] + }, + "n1821014798": { + "id": "n1821014798", + "loc": [-85.5792543, 42.0035958] + }, + "n1821014799": { + "id": "n1821014799", + "loc": [-85.5921665, 41.9838326] + }, + "n1821014801": { + "id": "n1821014801", + "loc": [-85.599214, 41.9782599] + }, + "n1821014802": { + "id": "n1821014802", + "loc": [-85.5571905, 42.0090967] + }, + "n1821014803": { + "id": "n1821014803", + "loc": [-85.5426891, 42.0173612] + }, + "n1821014804": { + "id": "n1821014804", + "loc": [-85.5889626, 41.9896404] + }, + "n1821014805": { + "id": "n1821014805", + "loc": [-85.5491264, 42.0141648] + }, + "n1821014806": { + "id": "n1821014806", + "loc": [-85.5618897, 42.0072631] + }, + "n1821014808": { + "id": "n1821014808", + "loc": [-85.5573501, 42.0109802] + }, + "n1821014809": { + "id": "n1821014809", + "loc": [-85.5983463, 41.9778031] + }, + "n1821014810": { + "id": "n1821014810", + "loc": [-85.5885173, 41.9895128] + }, + "n1821014811": { + "id": "n1821014811", + "loc": [-85.6084998, 41.9721143] + }, + "n1821014812": { + "id": "n1821014812", + "loc": [-85.5737598, 42.0056389] + }, + "n1821014814": { + "id": "n1821014814", + "loc": [-85.5542173, 42.0118132] + }, + "n1821014816": { + "id": "n1821014816", + "loc": [-85.5277868, 42.024451] + }, + "n1821014817": { + "id": "n1821014817", + "loc": [-85.5403999, 42.0191724] + }, + "n1821014819": { + "id": "n1821014819", + "loc": [-85.5983879, 41.9791452] + }, + "n1821014820": { + "id": "n1821014820", + "loc": [-85.5891302, 41.9897578] + }, + "n1821014822": { + "id": "n1821014822", + "loc": [-85.5930731, 41.9805108] + }, + "n1821014824": { + "id": "n1821014824", + "loc": [-85.515395, 42.0378471] + }, + "n1821014825": { + "id": "n1821014825", + "loc": [-85.5352755, 42.0205136] + }, + "n1821014826": { + "id": "n1821014826", + "loc": [-85.5502744, 42.0133398] + }, + "n1821014828": { + "id": "n1821014828", + "loc": [-85.5701295, 42.0088256] + }, + "n1821014830": { + "id": "n1821014830", + "loc": [-85.5888929, 41.9953099] + }, + "n1821014832": { + "id": "n1821014832", + "loc": [-85.5880077, 41.9901547] + }, + "n1821014833": { + "id": "n1821014833", + "loc": [-85.5451192, 42.0157072] + }, + "n1821014834": { + "id": "n1821014834", + "loc": [-85.6096478, 41.9711932] + }, + "n1821014835": { + "id": "n1821014835", + "loc": [-85.5806424, 42.0026532] + }, + "n1821014836": { + "id": "n1821014836", + "loc": [-85.5911674, 41.9868732] + }, + "n1821014838": { + "id": "n1821014838", + "loc": [-85.5930302, 41.9836571] + }, + "n1821014839": { + "id": "n1821014839", + "loc": [-85.588925, 41.9938148] + }, + "n1821014840": { + "id": "n1821014840", + "loc": [-85.6111874, 41.9705311] + }, + "n1821014841": { + "id": "n1821014841", + "loc": [-85.5680843, 42.0075842] + }, + "n1821014842": { + "id": "n1821014842", + "loc": [-85.6012793, 41.9775062] + }, + "n1821014843": { + "id": "n1821014843", + "loc": [-85.5855562, 41.9989777] + }, + "n1821014844": { + "id": "n1821014844", + "loc": [-85.5506137, 42.0131662] + }, + "n1821014845": { + "id": "n1821014845", + "loc": [-85.5270049, 42.025457] + }, + "n1821014846": { + "id": "n1821014846", + "loc": [-85.5257054, 42.025244] + }, + "n1821014847": { + "id": "n1821014847", + "loc": [-85.6011184, 41.9771832] + }, + "n1821014848": { + "id": "n1821014848", + "loc": [-85.515534, 42.0389234] + }, + "n1821014850": { + "id": "n1821014850", + "loc": [-85.5847032, 42.0010347] + }, + "n1821014853": { + "id": "n1821014853", + "loc": [-85.5361499, 42.019063] + }, + "n1821014854": { + "id": "n1821014854", + "loc": [-85.5439176, 42.0165721] + }, + "n1821014855": { + "id": "n1821014855", + "loc": [-85.5838825, 42.0017284] + }, + "n1821014857": { + "id": "n1821014857", + "loc": [-85.5542173, 42.0122317] + }, + "n1821014859": { + "id": "n1821014859", + "loc": [-85.5708201, 42.0089195] + }, + "n1821014860": { + "id": "n1821014860", + "loc": [-85.5844833, 41.9954415] + }, + "n1821014862": { + "id": "n1821014862", + "loc": [-85.5223204, 42.0295396] + }, + "n1821014863": { + "id": "n1821014863", + "loc": [-85.5777898, 42.0035918] + }, + "n1821014864": { + "id": "n1821014864", + "loc": [-85.591044, 41.9898078] + }, + "n1821014865": { + "id": "n1821014865", + "loc": [-85.5973204, 41.980182] + }, + "n1821014866": { + "id": "n1821014866", + "loc": [-85.5699578, 42.0085825] + }, + "n1821014867": { + "id": "n1821014867", + "loc": [-85.5210598, 42.0305278] + }, + "n1821014868": { + "id": "n1821014868", + "loc": [-85.5929108, 41.9819008] + }, + "n1821014869": { + "id": "n1821014869", + "loc": [-85.5279799, 42.0242995] + }, + "n1821014870": { + "id": "n1821014870", + "loc": [-85.5196114, 42.0320539] + }, + "n1821014871": { + "id": "n1821014871", + "loc": [-85.5785449, 42.0040883] + }, + "n1821014872": { + "id": "n1821014872", + "loc": [-85.588292, 41.9895766] + }, + "n1821014873": { + "id": "n1821014873", + "loc": [-85.5160172, 42.0331775] + }, + "n1821014874": { + "id": "n1821014874", + "loc": [-85.5688849, 42.0077016] + }, + "n1821014876": { + "id": "n1821014876", + "loc": [-85.5857976, 41.9996036] + }, + "n1821014879": { + "id": "n1821014879", + "loc": [-85.5990906, 41.9780765] + }, + "n1821014881": { + "id": "n1821014881", + "loc": [-85.5483647, 42.0144279] + }, + "n1821014883": { + "id": "n1821014883", + "loc": [-85.5691209, 42.0077972] + }, + "n1821014885": { + "id": "n1821014885", + "loc": [-85.6076844, 41.9721103] + }, + "n1821014886": { + "id": "n1821014886", + "loc": [-85.6015489, 41.9766147] + }, + "n1821014887": { + "id": "n1821014887", + "loc": [-85.574822, 42.0052802] + }, + "n1821014888": { + "id": "n1821014888", + "loc": [-85.5880024, 41.9899593] + }, + "n1821014890": { + "id": "n1821014890", + "loc": [-85.5909421, 41.9893772] + }, + "n1821014892": { + "id": "n1821014892", + "loc": [-85.5497326, 42.0138141] + }, + "n1821014893": { + "id": "n1821014893", + "loc": [-85.5167106, 42.0357811] + }, + "n1821014895": { + "id": "n1821014895", + "loc": [-85.5844404, 41.9952501] + }, + "n1821014896": { + "id": "n1821014896", + "loc": [-85.5362465, 42.0192662] + }, + "n1821014898": { + "id": "n1821014898", + "loc": [-85.5906095, 41.9889147] + }, + "n1821014899": { + "id": "n1821014899", + "loc": [-85.5590667, 42.0089354] + }, + "n1821014900": { + "id": "n1821014900", + "loc": [-85.5921598, 41.9844209] + }, + "n1821014902": { + "id": "n1821014902", + "loc": [-85.5778971, 42.0039266] + }, + "n1821014903": { + "id": "n1821014903", + "loc": [-85.603012, 41.9761981] + }, + "n1821014904": { + "id": "n1821014904", + "loc": [-85.6108977, 41.9706787] + }, + "n1821014905": { + "id": "n1821014905", + "loc": [-85.5685738, 42.0076139] + }, + "n1821014906": { + "id": "n1821014906", + "loc": [-85.5392787, 42.0186304] + }, + "n1821014907": { + "id": "n1821014907", + "loc": [-85.5227885, 42.0274972] + }, + "n1821014908": { + "id": "n1821014908", + "loc": [-85.5857547, 41.9961431] + }, + "n1821014910": { + "id": "n1821014910", + "loc": [-85.5610354, 42.0072812] + }, + "n1821014911": { + "id": "n1821014911", + "loc": [-85.5209632, 42.0308705] + }, + "n1821014912": { + "id": "n1821014912", + "loc": [-85.5709757, 42.0087959] + }, + "n1821014913": { + "id": "n1821014913", + "loc": [-85.59231, 41.9839344] + }, + "n1821014914": { + "id": "n1821014914", + "loc": [-85.5375245, 42.0185865] + }, + "n1821014916": { + "id": "n1821014916", + "loc": [-85.5901548, 41.9839841] + }, + "n1821014917": { + "id": "n1821014917", + "loc": [-85.5611213, 42.0086405] + }, + "n1821014918": { + "id": "n1821014918", + "loc": [-85.5360426, 42.0198122] + }, + "n1821014919": { + "id": "n1821014919", + "loc": [-85.5862817, 41.9948691] + }, + "n1821014921": { + "id": "n1821014921", + "loc": [-85.5469807, 42.0144438] + }, + "n1821014922": { + "id": "n1821014922", + "loc": [-85.5761309, 42.0053838] + }, + "n1821014924": { + "id": "n1821014924", + "loc": [-85.516264, 42.0332971] + }, + "n1821014925": { + "id": "n1821014925", + "loc": [-85.5277224, 42.0246661] + }, + "n1821014926": { + "id": "n1821014926", + "loc": [-85.5980016, 41.9798231] + }, + "n1821014928": { + "id": "n1821014928", + "loc": [-85.5924548, 41.9806965] + }, + "n1821014930": { + "id": "n1821014930", + "loc": [-85.5899121, 41.985023] + }, + "n1821014931": { + "id": "n1821014931", + "loc": [-85.5706015, 42.0089492] + }, + "n1821014932": { + "id": "n1821014932", + "loc": [-85.515926, 42.033046] + }, + "n1821014933": { + "id": "n1821014933", + "loc": [-85.5982377, 41.9796796] + }, + "n1821014936": { + "id": "n1821014936", + "loc": [-85.5475721, 42.0145253] + }, + "n1821014938": { + "id": "n1821014938", + "loc": [-85.5895701, 41.9902323] + }, + "n1821014939": { + "id": "n1821014939", + "loc": [-85.6030495, 41.9759947] + }, + "n1821014942": { + "id": "n1821014942", + "loc": [-85.6094721, 41.9724989] + }, + "n1821014944": { + "id": "n1821014944", + "loc": [-85.5921973, 41.9811112] + }, + "n1821014945": { + "id": "n1821014945", + "loc": [-85.5223526, 42.0291332] + }, + "n1821014946": { + "id": "n1821014946", + "loc": [-85.5965103, 41.9808998] + }, + "n1821014948": { + "id": "n1821014948", + "loc": [-85.517766, 42.0349227] + }, + "n1821014950": { + "id": "n1821014950", + "loc": [-85.5889894, 41.990996] + }, + "n1821014951": { + "id": "n1821014951", + "loc": [-85.5601932, 42.0092902] + }, + "n1821014954": { + "id": "n1821014954", + "loc": [-85.6028135, 41.9764055] + }, + "n1821014955": { + "id": "n1821014955", + "loc": [-85.5520621, 42.0130666] + }, + "n1821014956": { + "id": "n1821014956", + "loc": [-85.593002, 41.9839344] + }, + "n1821014957": { + "id": "n1821014957", + "loc": [-85.515926, 42.0369666] + }, + "n1821014960": { + "id": "n1821014960", + "loc": [-85.5761255, 42.003877] + }, + "n1821014961": { + "id": "n1821014961", + "loc": [-85.5716355, 42.007911] + }, + "n1821014962": { + "id": "n1821014962", + "loc": [-85.5575378, 42.0109045] + }, + "n1821014963": { + "id": "n1821014963", + "loc": [-85.5735667, 42.0068188] + }, + "n1821014964": { + "id": "n1821014964", + "loc": [-85.5915214, 41.9865861] + }, + "n1821014965": { + "id": "n1821014965", + "loc": [-85.5866344, 41.9923157] + }, + "n1821014967": { + "id": "n1821014967", + "loc": [-85.5283138, 42.0242256] + }, + "n1821014968": { + "id": "n1821014968", + "loc": [-85.5177875, 42.0355801] + }, + "n1821014969": { + "id": "n1821014969", + "loc": [-85.548071, 42.0144934] + }, + "n1821014972": { + "id": "n1821014972", + "loc": [-85.5611159, 42.0088557] + }, + "n1821014973": { + "id": "n1821014973", + "loc": [-85.541686, 42.0188757] + }, + "n1821014974": { + "id": "n1821014974", + "loc": [-85.5917628, 41.9862631] + }, + "n1821014975": { + "id": "n1821014975", + "loc": [-85.5854864, 41.9959478] + }, + "n1821014977": { + "id": "n1821014977", + "loc": [-85.609102, 41.9722317] + }, + "n1821014980": { + "id": "n1821014980", + "loc": [-85.5761202, 42.0042438] + }, + "n1821014982": { + "id": "n1821014982", + "loc": [-85.5465944, 42.0143601] + }, + "n1821014983": { + "id": "n1821014983", + "loc": [-85.5173261, 42.0342732] + }, + "n1821014984": { + "id": "n1821014984", + "loc": [-85.5897297, 41.9888509] + }, + "n1821014985": { + "id": "n1821014985", + "loc": [-85.5856688, 41.999181] + }, + "n1821014986": { + "id": "n1821014986", + "loc": [-85.5344011, 42.0217251] + }, + "n1821014987": { + "id": "n1821014987", + "loc": [-85.601467, 41.9768203] + }, + "n1821014988": { + "id": "n1821014988", + "loc": [-85.5457254, 42.0165123] + }, + "n1821014989": { + "id": "n1821014989", + "loc": [-85.6023482, 41.9784332] + }, + "n1821014991": { + "id": "n1821014991", + "loc": [-85.5361606, 42.01823] + }, + "n1821014992": { + "id": "n1821014992", + "loc": [-85.5178465, 42.0351139] + }, + "n1821014995": { + "id": "n1821014995", + "loc": [-85.5634293, 42.0078092] + }, + "n1821014996": { + "id": "n1821014996", + "loc": [-85.573497, 42.0072015] + }, + "n1821014997": { + "id": "n1821014997", + "loc": [-85.5976328, 41.9799725] + }, + "n1821014998": { + "id": "n1821014998", + "loc": [-85.5210651, 42.0303166] + }, + "n1821015003": { + "id": "n1821015003", + "loc": [-85.5222131, 42.0288064] + }, + "n1821015004": { + "id": "n1821015004", + "loc": [-85.5897941, 41.984405] + }, + "n1821015005": { + "id": "n1821015005", + "loc": [-85.5975725, 41.9776099] + }, + "n1821015006": { + "id": "n1821015006", + "loc": [-85.5765708, 42.0034903] + }, + "n1821015007": { + "id": "n1821015007", + "loc": [-85.5250187, 42.026559] + }, + "n1821015009": { + "id": "n1821015009", + "loc": [-85.5426998, 42.0166279] + }, + "n1821015010": { + "id": "n1821015010", + "loc": [-85.5957606, 41.9806584] + }, + "n1821015011": { + "id": "n1821015011", + "loc": [-85.5262753, 42.0252497] + }, + "n1821015012": { + "id": "n1821015012", + "loc": [-85.5266455, 42.0253374] + }, + "n1821015014": { + "id": "n1821015014", + "loc": [-85.5515632, 42.0130187] + }, + "n1821015015": { + "id": "n1821015015", + "loc": [-85.6024058, 41.9765212] + }, + "n1821015017": { + "id": "n1821015017", + "loc": [-85.5175032, 42.0357156] + }, + "n1821015018": { + "id": "n1821015018", + "loc": [-85.5302718, 42.0236039] + }, + "n1821015019": { + "id": "n1821015019", + "loc": [-85.6024005, 41.9782759] + }, + "n1821015020": { + "id": "n1821015020", + "loc": [-85.5907758, 41.9890821] + }, + "n1821015021": { + "id": "n1821015021", + "loc": [-85.6019445, 41.9777215] + }, + "n1821015022": { + "id": "n1821015022", + "loc": [-85.5942854, 41.9800881] + }, + "n1821015024": { + "id": "n1821015024", + "loc": [-85.5325826, 42.0222711] + }, + "n1821015029": { + "id": "n1821015029", + "loc": [-85.555093, 42.0105316] + }, + "n1821015033": { + "id": "n1821015033", + "loc": [-85.5249704, 42.0270372] + }, + "n1821015034": { + "id": "n1821015034", + "loc": [-85.5243965, 42.0272205] + }, + "n1821015038": { + "id": "n1821015038", + "loc": [-85.5413426, 42.0190749] + }, + "n1821015039": { + "id": "n1821015039", + "loc": [-85.5920431, 41.9848175] + }, + "n1821015041": { + "id": "n1821015041", + "loc": [-85.5577685, 42.0106015] + }, + "n1821015042": { + "id": "n1821015042", + "loc": [-85.5453606, 42.0158866] + }, + "n1821015045": { + "id": "n1821015045", + "loc": [-85.5333228, 42.0217889] + }, + "n1821015046": { + "id": "n1821015046", + "loc": [-85.5426891, 42.0175924] + }, + "n1821015048": { + "id": "n1821015048", + "loc": [-85.5886836, 41.9936474] + }, + "n1821015050": { + "id": "n1821015050", + "loc": [-85.6001152, 41.9786467] + }, + "n1821015051": { + "id": "n1821015051", + "loc": [-85.6094064, 41.9723655] + }, + "n1821015053": { + "id": "n1821015053", + "loc": [-85.605721, 41.9749738] + }, + "n1821015055": { + "id": "n1821015055", + "loc": [-85.6106791, 41.9705048] + }, + "n1821015057": { + "id": "n1821015057", + "loc": [-85.5210437, 42.0307071] + }, + "n1821015059": { + "id": "n1821015059", + "loc": [-85.5995694, 41.9786725] + }, + "n1821015060": { + "id": "n1821015060", + "loc": [-85.5371638, 42.0182938] + }, + "n1821015062": { + "id": "n1821015062", + "loc": [-85.6111766, 41.9704593] + }, + "n1821015065": { + "id": "n1821015065", + "loc": [-85.577704, 42.0034921] + }, + "n1821015067": { + "id": "n1821015067", + "loc": [-85.5570067, 42.0093699] + }, + "n1821015068": { + "id": "n1821015068", + "loc": [-85.5920364, 41.9845525] + }, + "n1821015069": { + "id": "n1821015069", + "loc": [-85.5252065, 42.0253954] + }, + "n1821015072": { + "id": "n1821015072", + "loc": [-85.5664159, 42.0088517] + }, + "n1821015073": { + "id": "n1821015073", + "loc": [-85.5880399, 41.991905] + }, + "n1821015075": { + "id": "n1821015075", + "loc": [-85.6099871, 41.9727861] + }, + "n1821015076": { + "id": "n1821015076", + "loc": [-85.5319603, 42.0231478] + }, + "n1821015078": { + "id": "n1821015078", + "loc": [-85.6036088, 41.9751112] + }, + "n1821015080": { + "id": "n1821015080", + "loc": [-85.5983128, 41.9789179] + }, + "n1821015082": { + "id": "n1821015082", + "loc": [-85.5614069, 42.0071395] + }, + "n1821015083": { + "id": "n1821015083", + "loc": [-85.60968, 41.9709738] + }, + "n1821015086": { + "id": "n1821015086", + "loc": [-85.5914195, 41.9837351] + }, + "n1821015087": { + "id": "n1821015087", + "loc": [-85.5895473, 41.9948036] + }, + "n1821015090": { + "id": "n1821015090", + "loc": [-85.5929913, 41.9851905] + }, + "n1821015093": { + "id": "n1821015093", + "loc": [-85.5907396, 41.9838485] + }, + "n1821015095": { + "id": "n1821015095", + "loc": [-85.5893864, 41.9880176] + }, + "n1821015096": { + "id": "n1821015096", + "loc": [-85.5788024, 42.0039807] + }, + "n1821015097": { + "id": "n1821015097", + "loc": [-85.5630592, 42.0078411] + }, + "n1821015098": { + "id": "n1821015098", + "loc": [-85.5350609, 42.0211274] + }, + "n1821015099": { + "id": "n1821015099", + "loc": [-85.5967195, 41.9808679] + }, + "n1821015100": { + "id": "n1821015100", + "loc": [-85.5666734, 42.0088119] + }, + "n1821015101": { + "id": "n1821015101", + "loc": [-85.564694, 42.0077675] + }, + "n1821015103": { + "id": "n1821015103", + "loc": [-85.6066544, 41.9726527] + }, + "n1821015104": { + "id": "n1821015104", + "loc": [-85.6011827, 41.9769838] + }, + "n1821015105": { + "id": "n1821015105", + "loc": [-85.5972131, 41.9776697] + }, + "n1821015106": { + "id": "n1821015106", + "loc": [-85.5880828, 41.9903341] + }, + "n1821015107": { + "id": "n1821015107", + "loc": [-85.5510268, 42.0130626] + }, + "n1821015108": { + "id": "n1821015108", + "loc": [-85.6102164, 41.970543] + }, + "n1821015109": { + "id": "n1821015109", + "loc": [-85.5905344, 41.9853899] + }, + "n1821015111": { + "id": "n1821015111", + "loc": [-85.5888821, 41.9913429] + }, + "n1821015112": { + "id": "n1821015112", + "loc": [-85.606295, 41.9741921] + }, + "n1821015114": { + "id": "n1821015114", + "loc": [-85.5969556, 41.9807443] + }, + "n1821015115": { + "id": "n1821015115", + "loc": [-85.5882223, 41.9934081] + }, + "n1821015116": { + "id": "n1821015116", + "loc": [-85.6104471, 41.9724971] + }, + "n1821015118": { + "id": "n1821015118", + "loc": [-85.5406091, 42.0192162] + }, + "n1821015120": { + "id": "n1821015120", + "loc": [-85.589955, 41.9888429] + }, + "n1821015121": { + "id": "n1821015121", + "loc": [-85.5598821, 42.0092304] + }, + "n1821015122": { + "id": "n1821015122", + "loc": [-85.545598, 42.0144097] + }, + "n1821015123": { + "id": "n1821015123", + "loc": [-85.5649528, 42.0079965] + }, + "n1821015125": { + "id": "n1821015125", + "loc": [-85.5883993, 41.9917814] + }, + "n1821015126": { + "id": "n1821015126", + "loc": [-85.5295785, 42.0239967] + }, + "n1821015129": { + "id": "n1821015129", + "loc": [-85.5648723, 42.0078809] + }, + "n1821015132": { + "id": "n1821015132", + "loc": [-85.564989, 42.0081103] + }, + "n1821015133": { + "id": "n1821015133", + "loc": [-85.5946127, 41.9800841] + }, + "n1821015134": { + "id": "n1821015134", + "loc": [-85.583448, 42.0019078] + }, + "n1821015135": { + "id": "n1821015135", + "loc": [-85.5905934, 41.9871842] + }, + "n1821015137": { + "id": "n1821015137", + "loc": [-85.610608, 41.9704752] + }, + "n1821015138": { + "id": "n1821015138", + "loc": [-85.5752257, 42.0052939] + }, + "n1821015139": { + "id": "n1821015139", + "loc": [-85.5893864, 41.9943491] + }, + "n1821015140": { + "id": "n1821015140", + "loc": [-85.5426247, 42.0169866] + }, + "n1821015141": { + "id": "n1821015141", + "loc": [-85.562001, 42.0074526] + }, + "n1821015142": { + "id": "n1821015142", + "loc": [-85.5212046, 42.0301094] + }, + "n1821015143": { + "id": "n1821015143", + "loc": [-85.602214, 41.9784531] + }, + "n1821015144": { + "id": "n1821015144", + "loc": [-85.5858687, 41.9948293] + }, + "n1821015145": { + "id": "n1821015145", + "loc": [-85.5608477, 42.0074805] + }, + "n1821015146": { + "id": "n1821015146", + "loc": [-85.5651607, 42.0083614] + }, + "n1821015147": { + "id": "n1821015147", + "loc": [-85.5288288, 42.0242495] + }, + "n1821015149": { + "id": "n1821015149", + "loc": [-85.5450334, 42.0146989] + }, + "n1821015151": { + "id": "n1821015151", + "loc": [-85.5578275, 42.0092304] + }, + "n1821015154": { + "id": "n1821015154", + "loc": [-85.6056634, 41.9724511] + }, + "n1821015155": { + "id": "n1821015155", + "loc": [-85.5902179, 41.9852742] + }, + "n1821015156": { + "id": "n1821015156", + "loc": [-85.5156256, 42.0387157] + }, + "n1821015157": { + "id": "n1821015157", + "loc": [-85.5734433, 42.0059459] + }, + "n1821015158": { + "id": "n1821015158", + "loc": [-85.6050773, 41.9731273] + }, + "n1821015160": { + "id": "n1821015160", + "loc": [-85.5223419, 42.0275233] + }, + "n1821015163": { + "id": "n1821015163", + "loc": [-85.6053562, 41.972525] + }, + "n1821015164": { + "id": "n1821015164", + "loc": [-85.5850412, 41.9946082] + }, + "n1821015165": { + "id": "n1821015165", + "loc": [-85.5359031, 42.0186326] + }, + "n1821015166": { + "id": "n1821015166", + "loc": [-85.5608745, 42.0077635] + }, + "n1821015169": { + "id": "n1821015169", + "loc": [-85.572876, 42.0073189] + }, + "n1821015171": { + "id": "n1821015171", + "loc": [-85.5875424, 41.9919188] + }, + "n1821015172": { + "id": "n1821015172", + "loc": [-85.5240116, 42.0272581] + }, + "n1821015173": { + "id": "n1821015173", + "loc": [-85.5318369, 42.0236818] + }, + "n1821015174": { + "id": "n1821015174", + "loc": [-85.566888, 42.0086923] + }, + "n1821015175": { + "id": "n1821015175", + "loc": [-85.5931522, 41.9850669] + }, + "n1821015176": { + "id": "n1821015176", + "loc": [-85.5604842, 42.0093199] + }, + "n1821015177": { + "id": "n1821015177", + "loc": [-85.5868168, 41.9927543] + }, + "n1821015178": { + "id": "n1821015178", + "loc": [-85.6052275, 41.9732549] + }, + "n1821015179": { + "id": "n1821015179", + "loc": [-85.5910118, 41.9900431] + }, + "n1821015182": { + "id": "n1821015182", + "loc": [-85.5610032, 42.0082897] + }, + "n1821015183": { + "id": "n1821015183", + "loc": [-85.5425443, 42.0179431] + }, + "n1821015184": { + "id": "n1821015184", + "loc": [-85.5843277, 42.0014055] + }, + "n1821015186": { + "id": "n1821015186", + "loc": [-85.5733307, 42.0063564] + }, + "n1821015188": { + "id": "n1821015188", + "loc": [-85.5277385, 42.0248694] + }, + "n1821015189": { + "id": "n1821015189", + "loc": [-85.5558427, 42.0108168] + }, + "n1821015190": { + "id": "n1821015190", + "loc": [-85.5650587, 42.0082618] + }, + "n1821015191": { + "id": "n1821015191", + "loc": [-85.5660351, 42.0088278] + }, + "n1821015192": { + "id": "n1821015192", + "loc": [-85.5849768, 41.9980049] + }, + "n1821015194": { + "id": "n1821015194", + "loc": [-85.5359139, 42.0188199] + }, + "n1821015195": { + "id": "n1821015195", + "loc": [-85.593238, 41.9849194] + }, + "n1821015197": { + "id": "n1821015197", + "loc": [-85.5850841, 41.9983239] + }, + "n1821015199": { + "id": "n1821015199", + "loc": [-85.5983396, 41.9794283] + }, + "n1821015204": { + "id": "n1821015204", + "loc": [-85.5452801, 42.0145355] + }, + "n1821015205": { + "id": "n1821015205", + "loc": [-85.5340685, 42.0218407] + }, + "n1821015207": { + "id": "n1821015207", + "loc": [-85.5773272, 42.0034186] + }, + "n1821015209": { + "id": "n1821015209", + "loc": [-85.5535212, 42.0132419] + }, + "n1821015211": { + "id": "n1821015211", + "loc": [-85.6107703, 41.9706045] + }, + "n1821015212": { + "id": "n1821015212", + "loc": [-85.6030066, 41.9758193] + }, + "n1821015213": { + "id": "n1821015213", + "loc": [-85.5359943, 42.0184213] + }, + "n1821015214": { + "id": "n1821015214", + "loc": [-85.5922993, 41.9813305] + }, + "n1821015215": { + "id": "n1821015215", + "loc": [-85.5672689, 42.0080465] + }, + "n1821015217": { + "id": "n1821015217", + "loc": [-85.5160494, 42.0365682] + }, + "n1821015218": { + "id": "n1821015218", + "loc": [-85.5401142, 42.0190351] + }, + "n1821015219": { + "id": "n1821015219", + "loc": [-85.5607632, 42.0092282] + }, + "n1821015220": { + "id": "n1821015220", + "loc": [-85.5866197, 41.9947894] + }, + "n1821015221": { + "id": "n1821015221", + "loc": [-85.6017889, 41.9765132] + }, + "n1821015222": { + "id": "n1821015222", + "loc": [-85.5595978, 42.009059] + }, + "n1821015226": { + "id": "n1821015226", + "loc": [-85.5871494, 41.9929018] + }, + "n1821015227": { + "id": "n1821015227", + "loc": [-85.5857708, 41.9998866] + }, + "n1821015228": { + "id": "n1821015228", + "loc": [-85.5317135, 42.0238094] + }, + "n1821015231": { + "id": "n1821015231", + "loc": [-85.5733521, 42.0061372] + }, + "n1821015233": { + "id": "n1821015233", + "loc": [-85.5855991, 42.0001936] + }, + "n1821015234": { + "id": "n1821015234", + "loc": [-85.5213924, 42.029962] + }, + "n1821015235": { + "id": "n1821015235", + "loc": [-85.6052221, 41.9726567] + }, + "n1821015236": { + "id": "n1821015236", + "loc": [-85.5763723, 42.0035422] + }, + "n1821015237": { + "id": "n1821015237", + "loc": [-85.5858512, 41.9966215] + }, + "n1821015238": { + "id": "n1821015238", + "loc": [-85.567061, 42.008439] + }, + "n1821015239": { + "id": "n1821015239", + "loc": [-85.5250563, 42.0269057] + }, + "n1821015240": { + "id": "n1821015240", + "loc": [-85.5347551, 42.0214263] + }, + "n1821015241": { + "id": "n1821015241", + "loc": [-85.6098463, 41.9707066] + }, + "n1821015242": { + "id": "n1821015242", + "loc": [-85.5676927, 42.0076519] + }, + "n1821015243": { + "id": "n1821015243", + "loc": [-85.516775, 42.0322669] + }, + "n1821015244": { + "id": "n1821015244", + "loc": [-85.5762275, 42.0036538] + }, + "n1821015245": { + "id": "n1821015245", + "loc": [-85.5583639, 42.0090949] + }, + "n1821015246": { + "id": "n1821015246", + "loc": [-85.5554041, 42.0106432] + }, + "n1821015247": { + "id": "n1821015247", + "loc": [-85.5973364, 41.9776099] + }, + "n1821015248": { + "id": "n1821015248", + "loc": [-85.6098945, 41.9717513] + }, + "n1821015249": { + "id": "n1821015249", + "loc": [-85.6045315, 41.9751511] + }, + "n1821015250": { + "id": "n1821015250", + "loc": [-85.5579938, 42.0092264] + }, + "n1821015253": { + "id": "n1821015253", + "loc": [-85.6058873, 41.9724652] + }, + "n1821015254": { + "id": "n1821015254", + "loc": [-85.5869456, 41.9947517] + }, + "n1821015255": { + "id": "n1821015255", + "loc": [-85.5936565, 41.9823713] + }, + "n1821015256": { + "id": "n1821015256", + "loc": [-85.5218269, 42.0278102] + }, + "n1821015258": { + "id": "n1821015258", + "loc": [-85.5887802, 41.9905534] + }, + "n1821015259": { + "id": "n1821015259", + "loc": [-85.5901924, 41.9904515] + }, + "n1821015263": { + "id": "n1821015263", + "loc": [-85.5249222, 42.0255787] + }, + "n1821015265": { + "id": "n1821015265", + "loc": [-85.5175206, 42.0321672] + }, + "n1821015266": { + "id": "n1821015266", + "loc": [-85.5275722, 42.0254034] + }, + "n1821015267": { + "id": "n1821015267", + "loc": [-85.6016226, 41.9765451] + }, + "n1821015269": { + "id": "n1821015269", + "loc": [-85.5569316, 42.011032] + }, + "n1821015271": { + "id": "n1821015271", + "loc": [-85.6010714, 41.9785209] + }, + "n1821015272": { + "id": "n1821015272", + "loc": [-85.6050666, 41.9729917] + }, + "n1821015273": { + "id": "n1821015273", + "loc": [-85.5891235, 41.99529] + }, + "n1821015274": { + "id": "n1821015274", + "loc": [-85.515454, 42.0376439] + }, + "n1821015276": { + "id": "n1821015276", + "loc": [-85.5776021, 42.0034443] + }, + "n1821015277": { + "id": "n1821015277", + "loc": [-85.6041707, 41.9751453] + }, + "n1821015278": { + "id": "n1821015278", + "loc": [-85.5444701, 42.0167435] + }, + "n1821015280": { + "id": "n1821015280", + "loc": [-85.5923274, 41.9852202] + }, + "n1821015283": { + "id": "n1821015283", + "loc": [-85.5893649, 41.9900271] + }, + "n1821015284": { + "id": "n1821015284", + "loc": [-85.5933453, 41.9804412] + }, + "n1821015285": { + "id": "n1821015285", + "loc": [-85.5247237, 42.026017] + }, + "n1821015286": { + "id": "n1821015286", + "loc": [-85.5286182, 42.0242477] + }, + "n1821015287": { + "id": "n1821015287", + "loc": [-85.5904003, 41.9888549] + }, + "n1821015288": { + "id": "n1821015288", + "loc": [-85.6062146, 41.9739369] + }, + "n1821015290": { + "id": "n1821015290", + "loc": [-85.5762596, 42.0052602] + }, + "n1821015292": { + "id": "n1821015292", + "loc": [-85.5849715, 41.9975465] + }, + "n1821015293": { + "id": "n1821015293", + "loc": [-85.585229, 42.0006241] + }, + "n1821015294": { + "id": "n1821015294", + "loc": [-85.5926922, 41.9805946] + }, + "n1821015295": { + "id": "n1821015295", + "loc": [-85.5703387, 42.0089133] + }, + "n1821015299": { + "id": "n1821015299", + "loc": [-85.5789955, 42.0038611] + }, + "n1821015301": { + "id": "n1821015301", + "loc": [-85.6072888, 41.9721918] + }, + "n1821015302": { + "id": "n1821015302", + "loc": [-85.5356349, 42.0200992] + }, + "n1821015304": { + "id": "n1821015304", + "loc": [-85.5891772, 41.994066] + }, + "n1821015306": { + "id": "n1821015306", + "loc": [-85.606295, 41.9744952] + }, + "n1821015307": { + "id": "n1821015307", + "loc": [-85.538871, 42.0186583] + }, + "n1821015308": { + "id": "n1821015308", + "loc": [-85.587997, 41.994971] + }, + "n1821015311": { + "id": "n1821015311", + "loc": [-85.606869, 41.9725809] + }, + "n1821015312": { + "id": "n1821015312", + "loc": [-85.5171974, 42.0339943] + }, + "n1821015314": { + "id": "n1821015314", + "loc": [-85.5327435, 42.0220479] + }, + "n1821015315": { + "id": "n1821015315", + "loc": [-85.5383439, 42.0187282] + }, + "n1821015316": { + "id": "n1821015316", + "loc": [-85.5248095, 42.0263119] + }, + "n1821015318": { + "id": "n1821015318", + "loc": [-85.5732502, 42.0073051] + }, + "n1821015319": { + "id": "n1821015319", + "loc": [-85.5924226, 41.9852663] + }, + "n1821015321": { + "id": "n1821015321", + "loc": [-85.5179001, 42.0353052] + }, + "n1821015322": { + "id": "n1821015322", + "loc": [-85.5456771, 42.0162413] + }, + "n1821015323": { + "id": "n1821015323", + "loc": [-85.5936618, 41.9829096] + }, + "n1821015325": { + "id": "n1821015325", + "loc": [-85.5656931, 42.0086582] + }, + "n1821015326": { + "id": "n1821015326", + "loc": [-85.5448456, 42.0150975] + }, + "n1821015327": { + "id": "n1821015327", + "loc": [-85.5220039, 42.027615] + }, + "n1821015329": { + "id": "n1821015329", + "loc": [-85.517884, 42.0354885] + }, + "n1821015330": { + "id": "n1821015330", + "loc": [-85.5576666, 42.0101671] + }, + "n1821015332": { + "id": "n1821015332", + "loc": [-85.5368754, 42.0181402] + }, + "n1821015333": { + "id": "n1821015333", + "loc": [-85.5367078, 42.0181145] + }, + "n1821015334": { + "id": "n1821015334", + "loc": [-85.5903909, 41.9904316] + }, + "n1821015335": { + "id": "n1821015335", + "loc": [-85.5430767, 42.0163587] + }, + "n1821015336": { + "id": "n1821015336", + "loc": [-85.5277492, 42.0252878] + }, + "n1821015337": { + "id": "n1821015337", + "loc": [-85.5312146, 42.0236898] + }, + "n1821015338": { + "id": "n1821015338", + "loc": [-85.5886568, 41.991614] + }, + "n1821015339": { + "id": "n1821015339", + "loc": [-85.5782498, 42.0040883] + }, + "n1821015341": { + "id": "n1821015341", + "loc": [-85.562233, 42.0076457] + }, + "n1821015342": { + "id": "n1821015342", + "loc": [-85.588626, 41.9952479] + }, + "n1821015343": { + "id": "n1821015343", + "loc": [-85.5762865, 42.005033] + }, + "n1821015344": { + "id": "n1821015344", + "loc": [-85.5850841, 41.9971478] + }, + "n1821015346": { + "id": "n1821015346", + "loc": [-85.5643144, 42.0076936] + }, + "n1821015347": { + "id": "n1821015347", + "loc": [-85.5164893, 42.0359467] + }, + "n1821015348": { + "id": "n1821015348", + "loc": [-85.5906846, 41.9903541] + }, + "n1821015349": { + "id": "n1821015349", + "loc": [-85.557688, 42.0107769] + }, + "n1821015350": { + "id": "n1821015350", + "loc": [-85.5363698, 42.0181424] + }, + "n1821015351": { + "id": "n1821015351", + "loc": [-85.5939636, 41.9801918] + }, + "n1821015352": { + "id": "n1821015352", + "loc": [-85.5524041, 42.0131644] + }, + "n1821015354": { + "id": "n1821015354", + "loc": [-85.5308606, 42.0236221] + }, + "n1821015355": { + "id": "n1821015355", + "loc": [-85.5877449, 41.9932367] + }, + "n1821015356": { + "id": "n1821015356", + "loc": [-85.519885, 42.0318586] + }, + "n1821015357": { + "id": "n1821015357", + "loc": [-85.5454035, 42.0168431] + }, + "n1821015358": { + "id": "n1821015358", + "loc": [-85.5970629, 41.9781881] + }, + "n1821015359": { + "id": "n1821015359", + "loc": [-85.5932541, 41.9844767] + }, + "n1821015360": { + "id": "n1821015360", + "loc": [-85.5970736, 41.9778252] + }, + "n1821015361": { + "id": "n1821015361", + "loc": [-85.537031, 42.0181601] + }, + "n1821015362": { + "id": "n1821015362", + "loc": [-85.5548355, 42.0105156] + }, + "n1821015363": { + "id": "n1821015363", + "loc": [-85.5168648, 42.0336158] + }, + "n1821015365": { + "id": "n1821015365", + "loc": [-85.5870435, 41.9919507] + }, + "n1821015366": { + "id": "n1821015366", + "loc": [-85.5719681, 42.0075443] + }, + "n1821015367": { + "id": "n1821015367", + "loc": [-85.5969985, 41.9780446] + }, + "n1821015368": { + "id": "n1821015368", + "loc": [-85.5926761, 41.98528] + }, + "n1821015369": { + "id": "n1821015369", + "loc": [-85.5224009, 42.0293444] + }, + "n1821015371": { + "id": "n1821015371", + "loc": [-85.518737, 42.0322651] + }, + "n1821015372": { + "id": "n1821015372", + "loc": [-85.6064573, 41.9726465] + }, + "n1821015373": { + "id": "n1821015373", + "loc": [-85.5201103, 42.0313088] + }, + "n1821015375": { + "id": "n1821015375", + "loc": [-85.5378182, 42.0186844] + }, + "n1821015376": { + "id": "n1821015376", + "loc": [-85.6109741, 41.9706882] + }, + "n1821015377": { + "id": "n1821015377", + "loc": [-85.5993333, 41.9785488] + }, + "n1821015378": { + "id": "n1821015378", + "loc": [-85.5889787, 41.9907368] + }, + "n1821015380": { + "id": "n1821015380", + "loc": [-85.6060161, 41.9737375] + }, + "n1821015381": { + "id": "n1821015381", + "loc": [-85.5743016, 42.0053679] + }, + "n1821015382": { + "id": "n1821015382", + "loc": [-85.6014724, 41.9776099] + }, + "n1821015383": { + "id": "n1821015383", + "loc": [-85.5574426, 42.0091644] + }, + "n1821015385": { + "id": "n1821015385", + "loc": [-85.5208613, 42.0309302] + }, + "n1821015386": { + "id": "n1821015386", + "loc": [-85.5919023, 41.9837789] + }, + "n1821015387": { + "id": "n1821015387", + "loc": [-85.5455484, 42.0160221] + }, + "n1821015392": { + "id": "n1821015392", + "loc": [-85.5801757, 42.0028964] + }, + "n1821015395": { + "id": "n1821015395", + "loc": [-85.5493785, 42.0139974] + }, + "n1821015396": { + "id": "n1821015396", + "loc": [-85.5449475, 42.015488] + }, + "n1821015398": { + "id": "n1821015398", + "loc": [-85.611123, 41.9706627] + }, + "n1821015400": { + "id": "n1821015400", + "loc": [-85.5935706, 41.9822477] + }, + "n1821015401": { + "id": "n1821015401", + "loc": [-85.5724254, 42.0073508] + }, + "n1821015403": { + "id": "n1821015403", + "loc": [-85.5486812, 42.0143442] + }, + "n1821015404": { + "id": "n1821015404", + "loc": [-85.5161835, 42.0327711] + }, + "n1821015406": { + "id": "n1821015406", + "loc": [-85.5921705, 41.9851107] + }, + "n1821015407": { + "id": "n1821015407", + "loc": [-85.531912, 42.0234069] + }, + "n1821015410": { + "id": "n1821015410", + "loc": [-85.5292566, 42.024176] + }, + "n1821015411": { + "id": "n1821015411", + "loc": [-85.5845316, 41.9948315] + }, + "n1821015413": { + "id": "n1821015413", + "loc": [-85.5217947, 42.0280413] + }, + "n1821015414": { + "id": "n1821015414", + "loc": [-85.5527367, 42.013272] + }, + "n1821015415": { + "id": "n1821015415", + "loc": [-85.5191179, 42.0321973] + }, + "n1821015416": { + "id": "n1821015416", + "loc": [-85.5540241, 42.0128655] + }, + "n1821015418": { + "id": "n1821015418", + "loc": [-85.5272892, 42.0254849] + }, + "n1821015419": { + "id": "n1821015419", + "loc": [-85.5449744, 42.016867] + }, + "n1821015420": { + "id": "n1821015420", + "loc": [-85.5852665, 41.9986787] + }, + "n1821015421": { + "id": "n1821015421", + "loc": [-85.6102701, 41.972186] + }, + "n1821015423": { + "id": "n1821015423", + "loc": [-85.6026365, 41.9764972] + }, + "n1821015427": { + "id": "n1821015427", + "loc": [-85.5898692, 41.9841498] + }, + "n1821015429": { + "id": "n1821015429", + "loc": [-85.5422546, 42.0183855] + }, + "n1821015430": { + "id": "n1821015430", + "loc": [-85.5866505, 41.9925549] + }, + "n1821015431": { + "id": "n1821015431", + "loc": [-85.5234376, 42.0273577] + }, + "n1821015432": { + "id": "n1821015432", + "loc": [-85.6096746, 41.9727284] + }, + "n1821015433": { + "id": "n1821015433", + "loc": [-85.5824891, 42.0021567] + }, + "n1821015434": { + "id": "n1821015434", + "loc": [-85.5923905, 41.9841139] + }, + "n1821015435": { + "id": "n1821015435", + "loc": [-85.5874565, 41.9948014] + }, + "n1821015437": { + "id": "n1821015437", + "loc": [-85.6055279, 41.9734423] + }, + "n1821015438": { + "id": "n1821015438", + "loc": [-85.5299379, 42.0237376] + }, + "n1821015439": { + "id": "n1821015439", + "loc": [-85.5155022, 42.0383651] + }, + "n1821015442": { + "id": "n1821015442", + "loc": [-85.527422, 42.0254711] + }, + "n1821015443": { + "id": "n1821015443", + "loc": [-85.5920699, 41.9849291] + }, + "n1821015444": { + "id": "n1821015444", + "loc": [-85.5639711, 42.0077494] + }, + "n1821015445": { + "id": "n1821015445", + "loc": [-85.5162586, 42.0361777] + }, + "n1821015446": { + "id": "n1821015446", + "loc": [-85.5220039, 42.029695] + }, + "n1821015448": { + "id": "n1821015448", + "loc": [-85.5176641, 42.0356956] + }, + "n1821015449": { + "id": "n1821015449", + "loc": [-85.5930556, 41.9841577] + }, + "n1821015451": { + "id": "n1821015451", + "loc": [-85.5320783, 42.0228848] + }, + "n1821015452": { + "id": "n1821015452", + "loc": [-85.5170096, 42.0357235] + }, + "n1821015453": { + "id": "n1821015453", + "loc": [-85.5571355, 42.009613] + }, + "n1821015454": { + "id": "n1821015454", + "loc": [-85.5609979, 42.009059] + }, + "n1821015455": { + "id": "n1821015455", + "loc": [-85.6097336, 41.9708342] + }, + "n1821015456": { + "id": "n1821015456", + "loc": [-85.5884476, 41.9904218] + }, + "w170843846": { + "id": "w170843846", + "tags": { + "waterway": "river" + }, + "nodes": [ + "n1819790555", + "n1819790762", + "n1819790547", + "n1819790618", + "n1819790898", + "n1819790796", + "n1819790534", + "n1819790543", + "n1819790541", + "n1819790687", + "n1819790877", + "n1819790811", + "n1819790670" + ] + }, + "w209083541": { + "id": "w209083541", + "tags": { + "name": "Portage River", + "waterway": "river" + }, + "nodes": [ + "n1821014848", + "n1821015156", + "n1821015439", + "n1821014763", + "n1821014824", + "n1821015274", + "n1821014764", + "n1821014791", + "n1821014957", + "n1821015217", + "n1821015445", + "n1821015347", + "n1821014893", + "n1821015452", + "n1821015017", + "n1821015448", + "n1821014968", + "n1821015329", + "n1821015321", + "n1821014992", + "n1821014948", + "n1821014757", + "n1821014983", + "n1821015312", + "n1821015363", + "n1821014924", + "n1821014873", + "n1821014932", + "n1821014668", + "n1821015404", + "n1821014716", + "n1821015243", + "n1821015265", + "n1821014710", + "n1821015371", + "n1821015415", + "n1821014870", + "n1821015356", + "n1821015373", + "n1821014681", + "n1821014714", + "n1821015385", + "n1821014911", + "n1821015057", + "n1821014867", + "n1821014998", + "n1821015142", + "n1821015234", + "n1821015446", + "n1821014862", + "n1821015369", + "n1821014945", + "n1821015003", + "n1821014667", + "n1821015413", + "n1821015256", + "n1821015327", + "n1821015160", + "n1821014907", + "n1821015431", + "n1821015172", + "n1821015034", + "n1821014741", + "n1821015033", + "n1821015239", + "n1821015007", + "n1821015316", + "n1821015285", + "n1821014633", + "n1821015263", + "n1821015069", + "n1821014846", + "n1821014779", + "n1821015011", + "n1821015012", + "n1821014845", + "n1821015418", + "n1821015442", + "n1821015266", + "n1821015336", + "n1821014755", + "n1821015188", + "n1821014925", + "n1821014816", + "n1821014869", + "n1821014967", + "n1821015286", + "n1821015147", + "n1821015410", + "n1821015126", + "n1821015438", + "n1821015018", + "n1821015354", + "n1821015337", + "n1821014766", + "n1821014740", + "n1821015228", + "n1821015173", + "n1821015407", + "n1821015076", + "n1821015451", + "n1821015024", + "n1821015314", + "n1821014784", + "n1821015045", + "n1821014735", + "n1821015205", + "n1821014986", + "n1821015240", + "n1821015098", + "n1821014825", + "n1821015302", + "n1821014918", + "n1821014718", + "n1821014896", + "n1821014853", + "n1821015194", + "n1821015165", + "n1821015213", + "n1821014991", + "n1821015350", + "n1821015333", + "n1821015332", + "n1821015361", + "n1821015060", + "n1821014914", + "n1821015375", + "n1821015315", + "n1821015307", + "n1821014906", + "n1821014751", + "n1821014666", + "n1821015218", + "n1821014817", + "n1821015118", + "n1821014674", + "n1821015038", + "n1821014973", + "n1821015429", + "n1821015183", + "n1821015046", + "n1821014803", + "n1821015140", + "n1821015009", + "n1821014749", + "n1821015335", + "n1821014711", + "n1821014854", + "n1821015278", + "n1821015419", + "n1821014648", + "n1821015357", + "n1821014637", + "n1821014988", + "n1821015322", + "n1821015387", + "n1821015042", + "n1821014833", + "n1821015396", + "n1821015326", + "n1821014691", + "n1821015149", + "n1821015204", + "n1821015122", + "n1821014782", + "n1821014982", + "n1821014921", + "n1821014936", + "n1821014969", + "n1821014881", + "n1821015403", + "n1821014805", + "n1821015395", + "n1821014892", + "n1821014826", + "n1821014844", + "n1821015107", + "n1821015014", + "n1821014955", + "n1821015352", + "n1821015414", + "n1821014746", + "n1821015209", + "n1821014770", + "n1821015416", + "n1821014661", + "n1821014857", + "n1821014814", + "n1821014754", + "n1821014721", + "n1821014727", + "n1821015362", + "n1821015029", + "n1821015246", + "n1821015189", + "n1821014627", + "n1821015269", + "n1821014808", + "n1821014962", + "n1821015349", + "n1821015041", + "n1821014722", + "n1821015330", + "n1821015453", + "n1821015067", + "n1821014643", + "n1821014802", + "n1821015383", + "n1821015151", + "n1821015250", + "n1821015245", + "n1821014772", + "n1821014899", + "n1821015222", + "n1821015121", + "n1821014951", + "n1821015176", + "n1821015219", + "n1821015454", + "n1821014972", + "n1821014917", + "n1821015182", + "n1821015166", + "n1821015145", + "n1821014910", + "n1821015082", + "n1821014678", + "n1821014806", + "n1821015141", + "n1821015341", + "n1821014788", + "n1821015097", + "n1821014995", + "n1821015444", + "n1821015346", + "n1821015101", + "n1821015129", + "n1821015123", + "n1821015132", + "n1821015190", + "n1821015146", + "n1821015325", + "n1821015191", + "n1821015072", + "n1821015100", + "n1821015174", + "n1821015238", + "n1821015215", + "n1821014700", + "n1821015242", + "n1821014841", + "n1821014905", + "n1821014874", + "n1821014883", + "n1821014729", + "n1821014866", + "n1821014828", + "n1821015295", + "n1821014931", + "n1821014859", + "n1821014912", + "n1821014783", + "n1821014752", + "n1821014961", + "n1821015366", + "n1821015401", + "n1821015169", + "n1821015318", + "n1821014996", + "n1821014747", + "n1821014963", + "n1821014670", + "n1821015186", + "n1821015231", + "n1821015157", + "n1821014812", + "n1821015381", + "n1821014887", + "n1821015138", + "n1821014704", + "n1821014787", + "n1821014922", + "n1821015290", + "n1821015343", + "n1821014651", + "n1821014980", + "n1821014960", + "n1821015244", + "n1821015236", + "n1821015006", + "n1821014694", + "n1821014759", + "n1821015207", + "n1821015276", + "n1821015065", + "n1821014863", + "n1821014660", + "n1821014902", + "n1821014645", + "n1821015339", + "n1821014871", + "n1821015096", + "n1821015299", + "n1821014798", + "n1821014638", + "n1821015392", + "n1821014835", + "n1821014762", + "n1821014642", + "n1821015433", + "n1821014786", + "n1821015134", + "n1821014855", + "n1821015184", + "n1821014850", + "n1821015293", + "n1821015233", + "n1821015227", + "n1821014876", + "n1821014985", + "n1821014843", + "n1821015420", + "n1821015197", + "n1821015192", + "n1821015292", + "n1821015344", + "n1821014742", + "n1821014726", + "n1821015237", + "n1821014796", + "n1821014908", + "n1821014975", + "n1821014769", + "n1821014688", + "n1821014860", + "n1821014895", + "n1821014676", + "n1821015411", + "n1821014736", + "n1821015164", + "n1821014647", + "n1821015144", + "n1821014919", + "n1821015220", + "n1821015254", + "n1821015435", + "n1821015308", + "n1821015342", + "n1821014830", + "n1821015273", + "n1821014658", + "n1821014781", + "n1821015087", + "n1821015139", + "n1821015304", + "n1821014839", + "n1821015048", + "n1821015115", + "n1821015355", + "n1821015226", + "n1821015177", + "n1821015430", + "n1821014965", + "n1821014725", + "n1821015365", + "n1821015171", + "n1821015073", + "n1821015125", + "n1821015338", + "n1821015111", + "n1821014950", + "n1821015378", + "n1821015258", + "n1821015456", + "n1821015106", + "n1821014832", + "n1821014888", + "n1821014795", + "n1821014872", + "n1821014810", + "n1821014705", + "n1821014804", + "n1821014820", + "n1821015283", + "n1821014938", + "n1821014689", + "n1821015259", + "n1821015334", + "n1821015348", + "n1821014635", + "n1821015179", + "n1821014864", + "n1821014890", + "n1821015020", + "n1821014898", + "n1821015287", + "n1821015120", + "n1821014984", + "n1821014743", + "n1821014790", + "n1821014765", + "n1821014777", + "n1821015095", + "n1821014653", + "n1821015135", + "n1821014836", + "n1821014964", + "n1821014974", + "n1821014636", + "n1821014682", + "n1821014663", + "n1821014665", + "n1821015109", + "n1821015155", + "n1821014930", + "n1821014669", + "n1821015004", + "n1821015427", + "n1821014916", + "n1821015093", + "n1821015086", + "n1821015386", + "n1821014799", + "n1821014913", + "n1821015434", + "n1821014728", + "n1821014900", + "n1821015068", + "n1821015039", + "n1821015443", + "n1821015406", + "n1821015280", + "n1821015319", + "n1821015368", + "n1821014774", + "n1821015090", + "n1821015175", + "n1821015195", + "n1821014687", + "n1821015359", + "n1821015449", + "n1821014956", + "n1821014838", + "n1821014768", + "n1821014698", + "n1821015323", + "n1821014756", + "n1821015255", + "n1821015400", + "n1821014717", + "n1821014868", + "n1821014778", + "n1821015214", + "n1821014944", + "n1821014697", + "n1821014671", + "n1821014928", + "n1821015294", + "n1821014822", + "n1821015284", + "n1821015351", + "n1821015022", + "n1821015133", + "n1821014644", + "n1821015010", + "n1821014625", + "n1821014657", + "n1821014946", + "n1821015099", + "n1821015114", + "n1821014629", + "n1821014865", + "n1821014997", + "n1821014926", + "n1821014933", + "n1821015199", + "n1821014819", + "n1821015080", + "n1821014692", + "n1821014677", + "n1821015358", + "n1821015367", + "n1821015360", + "n1821015105", + "n1821015247", + "n1821015005", + "n1821014809", + "n1821014794", + "n1821014761", + "n1821014879", + "n1821014801", + "n1821015377", + "n1821015059", + "n1821014730", + "n1821015050", + "n1821015271", + "n1821015143", + "n1821014989", + "n1821015019", + "n1821014672", + "n1821014649", + "n1821014684", + "n1821014703", + "n1821015021", + "n1821015382", + "n1821014842", + "n1821014720", + "n1821014847", + "n1821015104", + "n1821014987", + "n1821014886", + "n1821015267", + "n1821015221", + "n1821015015", + "n1821015423", + "n1821014954", + "n1821014903", + "n1821014939", + "n1821015212", + "n1821014789", + "n1821014712", + "n1821014708", + "n1821015078", + "n1821015277", + "n1821015249", + "n1821014646", + "n1821014793", + "n1821015053", + "n1821014707", + "n1821015306", + "n1821015112", + "n1821015288", + "n1821015380", + "n1821015437", + "n1821015178", + "n1821015158", + "n1821015272", + "n1821015235", + "n1821015163", + "n1821015154", + "n1821015253", + "n1821014632", + "n1821015372", + "n1821015103", + "n1821015311", + "n1821015301", + "n1821014885", + "n1821014811", + "n1821014977", + "n1821015051", + "n1821014942", + "n1821014745", + "n1821015432", + "n1821015075", + "n1821014664", + "n1821014695", + "n1821015116", + "n1821014639", + "n1821015421", + "n1821015248", + "n1821014758", + "n1821014834", + "n1821015083", + "n1821015455", + "n1821015241", + "n1821015108", + "n1821014713", + "n1821015137", + "n1821015055", + "n1821015211", + "n1821014904", + "n1821015376", + "n1821015398", + "n1821014771", + "n1821014840", + "n1821015062", + "n1819790554", + "n1819790560", + "n1819790767", + "n1819790696", + "n1819790706", + "n1819790606", + "n1819790607", + "n1819790544", + "n1819790779", + "n1819790760", + "n1819790926", + "n1819790927", + "n1819790647", + "n1819790657", + "n1819790649", + "n1819790679", + "n1819790915", + "n1819790739", + "n1819790549", + "n1819790671", + "n1819790686", + "n1819790798", + "n1819790791", + "n1819790563", + "n1819790720", + "n1819790704", + "n1819790795", + "n1819790836", + "n1819790622", + "n1819790615", + "n1819790654", + "n1819790931", + "n1819790595", + "n1819790753", + "n1819790612", + "n1819790623", + "n1819790564", + "n1819790552", + "n1819790645", + "n1819790625", + "n1819790605", + "n1819790668", + "n1819790731", + "n1819790718", + "n1819790781", + "n1819790665", + "n1819790659", + "n1819790726", + "n1819790642", + "n1819790854", + "n1819790697", + "n1819790867", + "n1819790833", + "n1819790555", + "n1819790774", + "n1819790881", + "n1819790530", + "n1819790909", + "n1819790891", + "n1819790590", + "n1819790738", + "n1819790609", + "n1819790528", + "n1819790674", + "n1819790583", + "n1819790559", + "n1819790863", + "n1819790912", + "n1819790685", + "n1819790913" + ] + }, + "n185955128": { + "id": "n185955128", + "loc": [-85.6189367, 41.9519432] + }, + "n185948818": { + "id": "n185948818", + "loc": [-85.616755, 41.952231] + }, + "n185978819": { + "id": "n185978819", + "loc": [-85.616773, 41.954737] + }, + "n185978821": { + "id": "n185978821", + "loc": [-85.616699, 41.954742] + }, + "n2138420714": { + "id": "n2138420714", + "loc": [-85.6176304, 41.9515154] + }, + "n2138420715": { + "id": "n2138420715", + "loc": [-85.6177355, 41.9515717] + }, + "n2138420716": { + "id": "n2138420716", + "loc": [-85.6192901, 41.951573] + }, + "n2138420718": { + "id": "n2138420718", + "loc": [-85.6171481, 41.9513579] + }, + "n2138420719": { + "id": "n2138420719", + "loc": [-85.6165981, 41.9519199] + }, + "n2138420720": { + "id": "n2138420720", + "loc": [-85.6165719, 41.9519922] + }, + "n2138420721": { + "id": "n2138420721", + "loc": [-85.6165832, 41.9520757] + }, + "n2138420722": { + "id": "n2138420722", + "loc": [-85.6166355, 41.9521453] + }, + "n2138420723": { + "id": "n2138420723", + "loc": [-85.6169161, 41.9522788] + }, + "n2138420724": { + "id": "n2138420724", + "loc": [-85.6170882, 41.9522538] + }, + "n2138420725": { + "id": "n2138420725", + "loc": [-85.6189204, 41.9514674] + }, + "n2138420726": { + "id": "n2138420726", + "loc": [-85.6180346, 41.9514735] + }, + "n2138420727": { + "id": "n2138420727", + "loc": [-85.6180362, 41.9515719] + }, + "n2138420728": { + "id": "n2138420728", + "loc": [-85.6189204, 41.9515727] + }, + "n2138420744": { + "id": "n2138420744", + "loc": [-85.618919, 41.9519571] + }, + "n2138420745": { + "id": "n2138420745", + "loc": [-85.6194575, 41.9522374] + }, + "n2138420746": { + "id": "n2138420746", + "loc": [-85.6181777, 41.9536179] + }, + "n2138420747": { + "id": "n2138420747", + "loc": [-85.6176582, 41.9533658] + }, + "n2138420748": { + "id": "n2138420748", + "loc": [-85.6179871, 41.9530242] + }, + "n2138420749": { + "id": "n2138420749", + "loc": [-85.618429, 41.9532476] + }, + "n2138420750": { + "id": "n2138420750", + "loc": [-85.6185538, 41.9531194] + }, + "n2138420751": { + "id": "n2138420751", + "loc": [-85.6180765, 41.9528677] + }, + "n2138420752": { + "id": "n2138420752", + "loc": [-85.6180394, 41.9528855] + }, + "n2138420753": { + "id": "n2138420753", + "loc": [-85.6193752, 41.9521695] + }, + "n2138420754": { + "id": "n2138420754", + "loc": [-85.6181374, 41.9535376] + }, + "n2138420755": { + "id": "n2138420755", + "loc": [-85.6179898, 41.9535545] + }, + "n2138420756": { + "id": "n2138420756", + "loc": [-85.6177286, 41.9534228] + }, + "n2138420757": { + "id": "n2138420757", + "loc": [-85.6181011, 41.9530292] + }, + "n2138420759": { + "id": "n2138420759", + "loc": [-85.6185158, 41.9531194] + }, + "n2138420760": { + "id": "n2138420760", + "loc": [-85.6191318, 41.9520425] + }, + "n2138420761": { + "id": "n2138420761", + "loc": [-85.6182348, 41.9529815] + }, + "n2138420762": { + "id": "n2138420762", + "loc": [-85.6184853, 41.9524248] + }, + "n2138420763": { + "id": "n2138420763", + "loc": [-85.6186764, 41.9525193] + }, + "n2138420764": { + "id": "n2138420764", + "loc": [-85.6189421, 41.9526483] + }, + "n2138420765": { + "id": "n2138420765", + "loc": [-85.6182875, 41.9531222] + }, + "n2138420766": { + "id": "n2138420766", + "loc": [-85.6179141, 41.9535163] + }, + "n2138420767": { + "id": "n2138420767", + "loc": [-85.6178363, 41.9535735] + }, + "n185948824": { + "id": "n185948824", + "loc": [-85.6165667, 41.9529715] + }, + "n2138420758": { + "id": "n2138420758", + "loc": [-85.6184408, 41.953201] + }, + "n2138422349": { + "id": "n2138422349", + "loc": [-85.6175136, 41.9533346] + }, + "n2138422350": { + "id": "n2138422350", + "loc": [-85.6171867, 41.9531679] + }, + "n2138422351": { + "id": "n2138422351", + "loc": [-85.61722, 41.9531305] + }, + "n2138422352": { + "id": "n2138422352", + "loc": [-85.6171889, 41.9531158] + }, + "n2138422353": { + "id": "n2138422353", + "loc": [-85.6171733, 41.9531284] + }, + "n2138422354": { + "id": "n2138422354", + "loc": [-85.616765, 41.9529207] + }, + "n2138422355": { + "id": "n2138422355", + "loc": [-85.6167565, 41.9529355] + }, + "n2138422356": { + "id": "n2138422356", + "loc": [-85.6164772, 41.9527911] + }, + "n2138422357": { + "id": "n2138422357", + "loc": [-85.6168227, 41.9524261] + }, + "n2138422358": { + "id": "n2138422358", + "loc": [-85.6171913, 41.9526158] + }, + "n2138422359": { + "id": "n2138422359", + "loc": [-85.6172403, 41.9525589] + }, + "n2138422360": { + "id": "n2138422360", + "loc": [-85.6172097, 41.952542] + }, + "n2138422361": { + "id": "n2138422361", + "loc": [-85.6173948, 41.9523512] + }, + "n2138422362": { + "id": "n2138422362", + "loc": [-85.6174256, 41.9523678] + }, + "n2138422363": { + "id": "n2138422363", + "loc": [-85.6174831, 41.9523086] + }, + "n2138422364": { + "id": "n2138422364", + "loc": [-85.6173316, 41.9522289] + }, + "n2138422365": { + "id": "n2138422365", + "loc": [-85.6174507, 41.9521024] + }, + "n2138422366": { + "id": "n2138422366", + "loc": [-85.6174773, 41.9521155] + }, + "n2138422367": { + "id": "n2138422367", + "loc": [-85.6176577, 41.9519232] + }, + "n2138422368": { + "id": "n2138422368", + "loc": [-85.6176336, 41.9519105] + }, + "n2138422369": { + "id": "n2138422369", + "loc": [-85.617747, 41.9517861] + }, + "n2138422370": { + "id": "n2138422370", + "loc": [-85.6182675, 41.9520559] + }, + "n2138422371": { + "id": "n2138422371", + "loc": [-85.6182105, 41.9521219] + }, + "n2138422372": { + "id": "n2138422372", + "loc": [-85.6183863, 41.9522203] + }, + "n2138422373": { + "id": "n2138422373", + "loc": [-85.6180984, 41.9525266] + }, + "n2138422374": { + "id": "n2138422374", + "loc": [-85.6179159, 41.9524295] + }, + "n2138422375": { + "id": "n2138422375", + "loc": [-85.617854, 41.9524979] + }, + "n2138422376": { + "id": "n2138422376", + "loc": [-85.6177686, 41.9524531] + }, + "n2138422377": { + "id": "n2138422377", + "loc": [-85.6174716, 41.9527765] + }, + "n2138422378": { + "id": "n2138422378", + "loc": [-85.6178545, 41.9529756] + }, + "n2138425424": { + "id": "n2138425424", + "loc": [-85.6171736, 41.9536385] + }, + "n2138425425": { + "id": "n2138425425", + "loc": [-85.6180159, 41.9535782] + }, + "n2138425426": { + "id": "n2138425426", + "loc": [-85.6181068, 41.9536282] + }, + "n2138425427": { + "id": "n2138425427", + "loc": [-85.6180673, 41.9542678] + }, + "n2138425428": { + "id": "n2138425428", + "loc": [-85.6178636, 41.9542634] + }, + "n2138425429": { + "id": "n2138425429", + "loc": [-85.6176204, 41.9542046] + }, + "n2138425430": { + "id": "n2138425430", + "loc": [-85.6174366, 41.9541031] + }, + "n2138425431": { + "id": "n2138425431", + "loc": [-85.6172942, 41.9539781] + }, + "n2138425432": { + "id": "n2138425432", + "loc": [-85.6172171, 41.9538399] + }, + "n2138425433": { + "id": "n2138425433", + "loc": [-85.6168138, 41.9543266] + }, + "n2138425434": { + "id": "n2138425434", + "loc": [-85.6167779, 41.9538098] + }, + "n2138425435": { + "id": "n2138425435", + "loc": [-85.6165849, 41.9537073] + }, + "n2138425441": { + "id": "n2138425441", + "loc": [-85.616458, 41.9543184] + }, + "n2138425442": { + "id": "n2138425442", + "loc": [-85.6166428, 41.954345] + }, + "n2138425445": { + "id": "n2138425445", + "loc": [-85.6181332, 41.9514117] + }, + "n2138425446": { + "id": "n2138425446", + "loc": [-85.6183263, 41.9514111] + }, + "n2138425447": { + "id": "n2138425447", + "loc": [-85.6185033, 41.9514102] + }, + "n2138425449": { + "id": "n2138425449", + "loc": [-85.6186809, 41.9514093] + }, + "n2138425451": { + "id": "n2138425451", + "loc": [-85.6188681, 41.9514082] + }, + "n2138436008": { + "id": "n2138436008", + "loc": [-85.6170474, 41.9513604] + }, + "n2138436009": { + "id": "n2138436009", + "loc": [-85.6164937, 41.9519586] + }, + "n2138436010": { + "id": "n2138436010", + "loc": [-85.616497, 41.9520725] + }, + "n2138436011": { + "id": "n2138436011", + "loc": [-85.6165654, 41.9521645] + }, + "n2138436012": { + "id": "n2138436012", + "loc": [-85.6166631, 41.9522178] + }, + "n2138436013": { + "id": "n2138436013", + "loc": [-85.6167327, 41.9522554] + }, + "n2138436014": { + "id": "n2138436014", + "loc": [-85.6172383, 41.9525125] + }, + "n2138439319": { + "id": "n2138439319", + "loc": [-85.6170432, 41.9524057] + }, + "n2138439320": { + "id": "n2138439320", + "loc": [-85.617691, 41.9517107] + }, + "n2138439321": { + "id": "n2138439321", + "loc": [-85.6177727, 41.9516794] + }, + "n2138439322": { + "id": "n2138439322", + "loc": [-85.619085, 41.9516811] + }, + "n2138439323": { + "id": "n2138439323", + "loc": [-85.6179432, 41.952895] + }, + "n2138439324": { + "id": "n2138439324", + "loc": [-85.6180389, 41.9529384] + }, + "n2138439325": { + "id": "n2138439325", + "loc": [-85.6176303, 41.9533604] + }, + "n2138439326": { + "id": "n2138439326", + "loc": [-85.6175538, 41.9534396] + }, + "n2138439327": { + "id": "n2138439327", + "loc": [-85.6173806, 41.9523658] + }, + "n2138439328": { + "id": "n2138439328", + "loc": [-85.6171841, 41.9522542] + }, + "n2138439329": { + "id": "n2138439329", + "loc": [-85.6172077, 41.9524958] + }, + "n2138439330": { + "id": "n2138439330", + "loc": [-85.6171235, 41.9525809] + }, + "n2138439331": { + "id": "n2138439331", + "loc": [-85.6180938, 41.9527349] + }, + "n2138439332": { + "id": "n2138439332", + "loc": [-85.6177023, 41.9525253] + }, + "n2138439333": { + "id": "n2138439333", + "loc": [-85.6175543, 41.9526865] + }, + "n2138439334": { + "id": "n2138439334", + "loc": [-85.6179589, 41.9528783] + }, + "n185948820": { + "id": "n185948820", + "loc": [-85.6163249, 41.952701] + }, + "n185948822": { + "id": "n185948822", + "loc": [-85.6163757, 41.952855] + }, + "n185955123": { + "id": "n185955123", + "loc": [-85.6198103, 41.9510408] + }, + "n185958839": { + "id": "n185958839", + "loc": [-85.611651, 41.954761] + }, + "n185965033": { + "id": "n185965033", + "loc": [-85.614195, 41.954754] + }, + "n185976502": { + "id": "n185976502", + "loc": [-85.617375, 41.947559] + }, + "n185976504": { + "id": "n185976504", + "loc": [-85.6174164, 41.9510804] + }, + "n185978828": { + "id": "n185978828", + "loc": [-85.613542, 41.954756] + }, + "n185978830": { + "id": "n185978830", + "loc": [-85.610373, 41.954774] + }, + "n2138420713": { + "id": "n2138420713", + "loc": [-85.6174641, 41.9506942] + }, + "n2138420717": { + "id": "n2138420717", + "loc": [-85.6173027, 41.9512895] + }, + "n2138420768": { + "id": "n2138420768", + "loc": [-85.61745, 41.9501974] + }, + "n2138420773": { + "id": "n2138420773", + "loc": [-85.6174135, 41.9489136] + }, + "n2138425436": { + "id": "n2138425436", + "loc": [-85.6159148, 41.9538036] + }, + "n2138425437": { + "id": "n2138425437", + "loc": [-85.6159534, 41.9539677] + }, + "n2138425438": { + "id": "n2138425438", + "loc": [-85.6160306, 41.9540846] + }, + "n2138425439": { + "id": "n2138425439", + "loc": [-85.6161354, 41.954181] + }, + "n2138425440": { + "id": "n2138425440", + "loc": [-85.6162733, 41.954263] + }, + "n2138425443": { + "id": "n2138425443", + "loc": [-85.6183273, 41.9510826] + }, + "n2138425444": { + "id": "n2138425444", + "loc": [-85.6181354, 41.9510835] + }, + "n2138425448": { + "id": "n2138425448", + "loc": [-85.6185033, 41.9510816] + }, + "n2138425450": { + "id": "n2138425450", + "loc": [-85.6186816, 41.9510808] + }, + "n2138425452": { + "id": "n2138425452", + "loc": [-85.6188641, 41.9510818] + }, + "n2138435984": { + "id": "n2138435984", + "loc": [-85.6167607, 41.9501009] + }, + "n2138436000": { + "id": "n2138436000", + "loc": [-85.6173169, 41.947558] + }, + "n2138436001": { + "id": "n2138436001", + "loc": [-85.6173362, 41.948883] + }, + "n2138436002": { + "id": "n2138436002", + "loc": [-85.6167791, 41.9492952] + }, + "n2138436003": { + "id": "n2138436003", + "loc": [-85.6167543, 41.949349] + }, + "n2138436004": { + "id": "n2138436004", + "loc": [-85.6167648, 41.9509125] + }, + "n2138436005": { + "id": "n2138436005", + "loc": [-85.6168832, 41.9510412] + }, + "n2138436006": { + "id": "n2138436006", + "loc": [-85.6170045, 41.9511417] + }, + "n2138436007": { + "id": "n2138436007", + "loc": [-85.6170624, 41.9512483] + }, + "n2138436017": { + "id": "n2138436017", + "loc": [-85.6168094, 41.9492729] + }, + "n2138436021": { + "id": "n2138436021", + "loc": [-85.6167553, 41.9494886] + }, + "n2138436023": { + "id": "n2138436023", + "loc": [-85.6167585, 41.9499707] + }, + "n2138436025": { + "id": "n2138436025", + "loc": [-85.6167567, 41.9497018] + }, + "w203838284": { + "id": "w203838284", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "baseball" + }, + "nodes": [ + "n2138425424", + "n2138425425", + "n2138425426", + "n2138425427", + "n2138425428", + "n2138425429", + "n2138425430", + "n2138425431", + "n2138425432", + "n2138425424" + ] + }, + "w203837928": { + "id": "w203837928", + "tags": { + "highway": "service" + }, + "nodes": [ + "n2138420717", + "n2138420718", + "n2138420719", + "n2138420720", + "n2138420721", + "n2138420722", + "n185948818", + "n2138420723", + "n2138420724", + "n2138420715" + ] + }, + "w203839364": { + "id": "w203839364", + "tags": { + "highway": "footway" + }, + "nodes": ["n2138439331", "n2138439332"] + }, + "w203837932": { + "id": "w203837932", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": [ + "n2138420744", + "n2138420745", + "n2138420746", + "n2138420747", + "n2138420748", + "n2138420749", + "n2138420750", + "n2138420751", + "n2138420744" + ] + }, + "w203839362": { + "id": "w203839362", + "tags": { + "highway": "footway" + }, + "nodes": ["n2138439327", "n2138439328"] + }, + "w203839363": { + "id": "w203839363", + "tags": { + "highway": "footway" + }, + "nodes": ["n2138439329", "n2138439330"] + }, + "w203837933": { + "id": "w203837933", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": [ + "n185955128", + "n2138420760", + "n2138420753", + "n2138420764", + "n2138420759", + "n2138420758", + "n2138420754", + "n2138420755", + "n2138420766", + "n2138420756" + ] + }, + "w203837936": { + "id": "w203837936", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2138420765", "n2138420766"] + }, + "w17966364": { + "id": "w17966364", + "tags": { + "access": "private", + "highway": "service", + "name": "Collins Drive" + }, + "nodes": [ + "n185961362", + "n185976502", + "n2138420773", + "n2138420768", + "n2138420713", + "n185976504", + "n2138420717", + "n2138420714", + "n2138420715", + "n2138420727", + "n2138420728", + "n2138420716" + ] + }, + "w203838040": { + "id": "w203838040", + "tags": { + "amenity": "school", + "area": "yes", + "building": "yes", + "name": "Three Rivers Middle School" + }, + "nodes": [ + "n2138422349", + "n2138422350", + "n2138422351", + "n2138422352", + "n2138422353", + "n2138422354", + "n2138422355", + "n2138422356", + "n2138422357", + "n2138439330", + "n2138422358", + "n2138422359", + "n2138422360", + "n2138436014", + "n2138439327", + "n2138422361", + "n2138422362", + "n2138422363", + "n2138422364", + "n2138422365", + "n2138422366", + "n2138422367", + "n2138422368", + "n2138422369", + "n2138422370", + "n2138422371", + "n2138422372", + "n2138422373", + "n2138422374", + "n2138422375", + "n2138422376", + "n2138439332", + "n2138439333", + "n2138422377", + "n2138422378", + "n2138422349" + ] + }, + "w17964049": { + "id": "w17964049", + "tags": { + "highway": "service" + }, + "nodes": ["n185955120", "n185955123", "n2138420716", "n185955128", "n2138420762", "n2138420752", "n2138420761", "n2138420759"] + }, + "w41074899": { + "id": "w41074899", + "tags": { + "highway": "secondary", + "name": "East Hoffman Street", + "ref": "M 60" + }, + "nodes": ["n185978817", "n185978819", "n185978821", "n185965033", "n185978828", "n185958839", "n185978830"] + }, + "w203839365": { + "id": "w203839365", + "tags": { + "highway": "footway" + }, + "nodes": ["n2138439333", "n2138439334"] + }, + "w203837935": { + "id": "w203837935", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2138420762", "n2138420763", "n2138420764"] + }, + "w203838287": { + "id": "w203838287", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "tennis" + }, + "nodes": ["n2138425446", "n2138425447", "n2138425448", "n2138425443", "n2138425446"] + }, + "w203837934": { + "id": "w203837934", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2138420760", "n2138420763", "n2138420761"] + }, + "w203838289": { + "id": "w203838289", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "tennis" + }, + "nodes": ["n2138425449", "n2138425451", "n2138425452", "n2138425450", "n2138425449"] + }, + "w17963047": { + "id": "w17963047", + "tags": { + "highway": "service" + }, + "nodes": ["n185948818", "n2138436013", "n185948820", "n185948822", "n185948824", "n2138439326", "n2138420767", "n2138420766"] + }, + "w203839091": { + "id": "w203839091", + "tags": { + "highway": "footway" + }, + "nodes": [ + "n185976502", + "n2138436000", + "n2138436001", + "n2138436017", + "n2138436002", + "n2138436003", + "n2138436021", + "n2138436025", + "n2138436023", + "n2138435984", + "n2138436004", + "n2138436005", + "n2138436006", + "n2138436007", + "n2138436008", + "n2138436009", + "n2138436010", + "n2138436011", + "n2138436012", + "n2138436013", + "n2138439319", + "n2138439329", + "n2138436014" + ] + }, + "w204830797": { + "id": "w204830797", + "tags": { + "highway": "service", + "service": "parking_aisle" + }, + "nodes": ["n2138420756", "n2138420757", "n2138420765", "n2138420758"] + }, + "w203838288": { + "id": "w203838288", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "tennis" + }, + "nodes": ["n2138425447", "n2138425449", "n2138425450", "n2138425448", "n2138425447"] + }, + "w203838285": { + "id": "w203838285", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "baseball" + }, + "nodes": [ + "n2138425433", + "n2138425434", + "n2138425435", + "n2138425436", + "n2138425437", + "n2138425438", + "n2138425439", + "n2138425440", + "n2138425441", + "n2138425442", + "n2138425433" + ] + }, + "w203838286": { + "id": "w203838286", + "tags": { + "area": "yes", + "leisure": "pitch", + "sport": "tennis" + }, + "nodes": ["n2138425443", "n2138425444", "n2138425445", "n2138425446", "n2138425443"] + }, + "w203837929": { + "id": "w203837929", + "tags": { + "amenity": "parking", + "area": "yes" + }, + "nodes": ["n2138420725", "n2138420726", "n2138420727", "n2138420728", "n2138420725"] + }, + "w203839361": { + "id": "w203839361", + "tags": { + "highway": "footway" + }, + "nodes": [ + "n2138439319", + "n2138439328", + "n2138439320", + "n2138439321", + "n2138439322", + "n2138439331", + "n2138439334", + "n2138439323", + "n2138439324", + "n2138439325", + "n2138439326" + ] + }, + "n394381698": { + "id": "n394381698", + "loc": [-85.614471, 41.954755] + }, + "n394381699": { + "id": "n394381699", + "loc": [-85.6152, 41.954744] + }, + "n394381700": { + "id": "n394381700", + "loc": [-85.615201, 41.954081] + }, + "n394381701": { + "id": "n394381701", + "loc": [-85.614426, 41.954042] + }, + "n394381702": { + "id": "n394381702", + "loc": [-85.616319, 41.954749] + }, + "n394381704": { + "id": "n394381704", + "loc": [-85.616152, 41.954752] + }, + "n394381706": { + "id": "n394381706", + "loc": [-85.615201, 41.95483] + }, + "n394490775": { + "id": "n394490775", + "loc": [-85.613971, 41.954839] + }, + "n394490782": { + "id": "n394490782", + "loc": [-85.614372, 41.954841] + }, + "n185958835": { + "id": "n185958835", + "loc": [-85.611615, 41.953704] + }, + "n185958837": { + "id": "n185958837", + "loc": [-85.611636, 41.953938] + }, + "n185958842": { + "id": "n185958842", + "loc": [-85.611187, 41.951686] + }, + "n185958844": { + "id": "n185958844", + "loc": [-85.611087, 41.951741] + }, + "n185958845": { + "id": "n185958845", + "loc": [-85.611034, 41.951852] + }, + "n185958847": { + "id": "n185958847", + "loc": [-85.611016, 41.95196] + }, + "n185958849": { + "id": "n185958849", + "loc": [-85.610989, 41.95328] + }, + "n185958851": { + "id": "n185958851", + "loc": [-85.611021, 41.953484] + }, + "n185958852": { + "id": "n185958852", + "loc": [-85.611091, 41.953603] + }, + "n185958853": { + "id": "n185958853", + "loc": [-85.6112, 41.953661] + }, + "n185958855": { + "id": "n185958855", + "loc": [-85.611364, 41.953686] + }, + "n185965031": { + "id": "n185965031", + "loc": [-85.614204, 41.953696] + }, + "n185965032": { + "id": "n185965032", + "loc": [-85.6142, 41.953978] + }, + "n185965062": { + "id": "n185965062", + "loc": [-85.614617, 41.951639] + }, + "n185965064": { + "id": "n185965064", + "loc": [-85.61463, 41.951852] + }, + "n185965066": { + "id": "n185965066", + "loc": [-85.614642, 41.953436] + }, + "n185965068": { + "id": "n185965068", + "loc": [-85.6146, 41.953551] + }, + "n185965071": { + "id": "n185965071", + "loc": [-85.614487, 41.95363] + }, + "n185965073": { + "id": "n185965073", + "loc": [-85.614354, 41.953672] + }, + "n185966288": { + "id": "n185966288", + "loc": [-85.61179, 41.953695] + }, + "n185966290": { + "id": "n185966290", + "loc": [-85.612232, 41.953685] + }, + "n185966293": { + "id": "n185966293", + "loc": [-85.613438, 41.953677] + }, + "n185966349": { + "id": "n185966349", + "loc": [-85.611323, 41.951653] + }, + "n185966351": { + "id": "n185966351", + "loc": [-85.611892, 41.951642] + }, + "n185966352": { + "id": "n185966352", + "loc": [-85.612216, 41.951641] + }, + "n185966353": { + "id": "n185966353", + "loc": [-85.613111, 41.951639] + }, + "n185966354": { + "id": "n185966354", + "loc": [-85.613396, 41.95164] + }, + "n185966355": { + "id": "n185966355", + "loc": [-85.614221, 41.95164] + }, + "n185973839": { + "id": "n185973839", + "loc": [-85.61341, 41.951919] + }, + "n185973840": { + "id": "n185973840", + "loc": [-85.613438, 41.953308] + }, + "n185980222": { + "id": "n185980222", + "loc": [-85.613781, 41.955164] + }, + "n185980223": { + "id": "n185980223", + "loc": [-85.613815, 41.955237] + }, + "n185980225": { + "id": "n185980225", + "loc": [-85.613837, 41.955316] + }, + "n185990345": { + "id": "n185990345", + "loc": [-85.612211, 41.951977] + }, + "n185955743": { + "id": "n185955743", + "loc": [-85.613873, 41.95635] + }, + "n185980227": { + "id": "n185980227", + "loc": [-85.613851, 41.955415] + }, + "n185980229": { + "id": "n185980229", + "loc": [-85.613918, 41.957134] + }, + "n394381703": { + "id": "n394381703", + "loc": [-85.616287, 41.955674] + }, + "n394381705": { + "id": "n394381705", + "loc": [-85.615164, 41.955676] + }, + "n394490777": { + "id": "n394490777", + "loc": [-85.613973, 41.955979] + }, + "n394490780": { + "id": "n394490780", + "loc": [-85.614364, 41.955987] + }, + "w17965307": { + "id": "w17965307", + "tags": { + "highway": "residential", + "name": "Bates Avenue" + }, + "nodes": ["n185958842", "n185966349", "n185966351", "n185966352", "n185966353", "n185966354", "n185966355", "n185965062"] + }, + "w17967957": { + "id": "w17967957", + "tags": { + "highway": "residential", + "name": "Krum Avenue" + }, + "nodes": ["n185966352", "n185990345", "n185966290"] + }, + "w17964508": { + "id": "w17964508", + "tags": { + "highway": "residential", + "name": "Blossom Drive" + }, + "nodes": [ + "n185958842", + "n185958844", + "n185958845", + "n185958847", + "n185958849", + "n185958851", + "n185958852", + "n185958853", + "n185958855", + "n185958835" + ] + }, + "w17964507": { + "id": "w17964507", + "tags": { + "highway": "residential", + "name": "Blossom Drive" + }, + "nodes": ["n185958835", "n185958837", "n185958839"] + }, + "w34367080": { + "id": "w34367080", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394381699", "n394381706", "n394381705", "n394381703", "n394381702", "n394381704", "n394381699"] + }, + "w17965302": { + "id": "w17965302", + "tags": { + "highway": "residential", + "name": "Clausen Avenue" + }, + "nodes": ["n185958835", "n185966288", "n185966290", "n185966293", "n185965031"] + }, + "w17965156": { + "id": "w17965156", + "tags": { + "highway": "residential", + "name": "Orchard Drive" + }, + "nodes": ["n185965062", "n185965064", "n185965066", "n185965068", "n185965071", "n185965073", "n185965031"] + }, + "w34369812": { + "id": "w34369812", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394490775", "n394490777", "n394490780", "n394490782", "n394490775"] + }, + "w17965151": { + "id": "w17965151", + "tags": { + "highway": "residential", + "name": "Orchard Drive" + }, + "nodes": ["n185965031", "n185965032", "n185965033"] + }, + "w17966756": { + "id": "w17966756", + "tags": { + "access": "private", + "highway": "service", + "name": "Lockport Drive" + }, + "nodes": ["n185978828", "n185980222", "n185980223", "n185980225", "n185980227", "n185955743", "n185980229"] + }, + "w17966056": { + "id": "w17966056", + "tags": { + "highway": "residential", + "name": "Angell Avenue" + }, + "nodes": ["n185966354", "n185973839", "n185973840", "n185966293"] + }, + "w34367079": { + "id": "w34367079", + "tags": { + "admin_level": "8", + "boundary": "administrative" + }, + "nodes": ["n394381700", "n394381701", "n394381698", "n394381699", "n394381700"] + }, + "n185955744": { + "id": "n185955744", + "loc": [-85.611753, 41.956208] + }, + "n185988932": { + "id": "n185988932", + "loc": [-85.6159, 41.956336] + }, + "n185988934": { + "id": "n185988934", + "loc": [-85.6159158, 41.9590646] + }, + "n185988935": { + "id": "n185988935", + "loc": [-85.6157358, 41.959364], + "tags": { + "highway": "turning_circle" + } + }, + "n2138447007": { + "id": "n2138447007", + "loc": [-85.6130784, 41.9590689] + }, + "n2138447008": { + "id": "n2138447008", + "loc": [-85.6133328, 41.9593805] + }, + "n2138447003": { + "id": "n2138447003", + "loc": [-85.610238, 41.9547745] + }, + "n2138447004": { + "id": "n2138447004", + "loc": [-85.6102652, 41.9566041] + }, + "n2138447005": { + "id": "n2138447005", + "loc": [-85.610325, 41.9568823] + }, + "n2138447006": { + "id": "n2138447006", + "loc": [-85.6105644, 41.9571383] + }, + "n2138447009": { + "id": "n2138447009", + "loc": [-85.6135946, 41.959948] + }, + "n2138447010": { + "id": "n2138447010", + "loc": [-85.6136071, 41.9629372] + }, + "n2138447011": { + "id": "n2138447011", + "loc": [-85.6134392, 41.9633182] + }, + "n2138447012": { + "id": "n2138447012", + "loc": [-85.6130151, 41.9636073] + }, + "n2138447013": { + "id": "n2138447013", + "loc": [-85.6122729, 41.9637125] + }, + "n2138447014": { + "id": "n2138447014", + "loc": [-85.6056682, 41.963752] + }, + "w17964174": { + "id": "w17964174", + "tags": { + "access": "private", + "highway": "service" + }, + "nodes": ["n185955743", "n185955744"] + }, + "w17967743": { + "id": "w17967743", + "tags": { + "access": "private", + "highway": "service", + "name": "Manistee River Road" + }, + "nodes": ["n185971574", "n185988932", "n185971407", "n185981301", "n185967987", "n185988934", "n185988935"] + }, + "w203839666": { + "id": "w203839666", + "tags": { + "highway": "residential", + "name": "Hov Aire Drive" + }, + "nodes": [ + "n2138447003", + "n2138447004", + "n2138447005", + "n2138447006", + "n2138447007", + "n2138447008", + "n2138447009", + "n2138447010", + "n2138447011", + "n2138447012", + "n2138447013", + "n2138447014" + ] + } + } +} From 6d63f0b35b998858cf06f2a951b4f3a0184ee1e4 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 3 Apr 2017 22:57:27 -0400 Subject: [PATCH 44/91] Adjust circle tracing instructions --- data/core.yaml | 14 +++++++------- dist/locales/en.json | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 0a8a6ef40..c3e509a5c 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -816,7 +816,7 @@ en: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." practice: "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved." - chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" @@ -840,7 +840,7 @@ en: update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" close2: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" - delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" + delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: @@ -857,13 +857,13 @@ en: lines: title: "Lines" add: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" - start: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" + start: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" - finish: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" + finish: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" road: "**Select Road from the list**" residential: "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**" describe: "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**" - restart: "The road needs to intersect {name}. Let's try again!" + restart: "The road needs to intersect {name}. Let's try again!" wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" buildings: @@ -877,10 +877,10 @@ en: rightclick_building: "**Right-click to select the building you created.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" retry_square: "You didn't click the Square button. Try again." - done_square: "See how the corners of the building moved into place? Let's learn another useful trick." + done_square: "See how the corners of the building moved into place? Let's learn another useful trick." add_tank: "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" - continue_tank: "Add a few more points around the edge. After you've added at least three points, finish the area by clicking on the starting node. **Continue tracing the tank.**" + continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**" search_tank: "**Search for '{name}'**" choose_tank: "**Choose {name} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 2bf9c59b4..1d08ec70d 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -674,7 +674,7 @@ "title": "Welcome", "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", "practice": "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved.", - "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { "title": "Navigation", @@ -700,7 +700,7 @@ "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "close2": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", - "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", + "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, @@ -719,13 +719,13 @@ "lines": { "title": "Lines", "add": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", + "start": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", - "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", + "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", "road": "**Select Road from the list**", "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", "describe": "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**", - "restart": "The road needs to intersect {name}. Let's try again!", + "restart": "The road needs to intersect {name}. Let's try again!", "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, @@ -740,10 +740,10 @@ "rightclick_building": "**Right-click to select the building you created.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", "retry_square": "You didn't click the Square button. Try again.", - "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", + "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", "add_tank": "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", - "continue_tank": "Add a few more points around the edge. After you've added at least three points, finish the area by clicking on the starting node. **Continue tracing the tank.**", + "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**", "search_tank": "**Search for '{name}'**", "choose_tank": "**Choose {name} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created.**", From 526bb75fb838d4e0d3bfd18b778e6eaa3dc214a9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Apr 2017 01:16:07 -0400 Subject: [PATCH 45/91] pacify eslint --- modules/ui/intro/building.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 759f054c8..374f775ee 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -328,8 +328,9 @@ export function uiIntroBuilding(context, reveal) { function addTank() { - var tooltip = reveal('button.add-area', - t('intro.buildings.add_tank', { button: icon('#icon-area', 'pre-text') })); + reveal('button.add-area', + t('intro.buildings.add_tank', { button: icon('#icon-area', 'pre-text') }) + ); tankId = null; context.history().reset('doneSquare'); From 2e81e71859e85fa23598a397501c7ae655224234 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Apr 2017 02:00:01 -0400 Subject: [PATCH 46/91] Add history.toIntroGraph() for saving the edited introGraph to JSON --- data/intro_graph.json | 4 +-- modules/core/history.js | 66 ++++++++++++++++++++++++++++++++++++++++- 2 files changed, 67 insertions(+), 3 deletions(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index 1486f6cd6..c6f543c82 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -12009,7 +12009,7 @@ "w170989131": { "id": "w170989131", "tags": { - "name": "St Joseph River", + "name": "Saint Joseph River", "waterway": "river" }, "nodes": [ @@ -14709,7 +14709,7 @@ "id": "w17964497", "tags": { "highway": "tertiary", - "name": "Constantine Street" + "name": "South Constantine Street" }, "nodes": [ "n185958643", diff --git a/modules/core/history.js b/modules/core/history.js index b881ec9c3..a7118da76 100644 --- a/modules/core/history.js +++ b/modules/core/history.js @@ -291,7 +291,7 @@ export function coreHistory(context) { // restore history state to a given checkpoint or reset completely reset: function(key) { - if (key !== undefined) { + if (key !== undefined && checkpoints.hasOwnProperty(key)) { stack = _.cloneDeep(checkpoints[key].stack); index = checkpoints[key].index; } else { @@ -305,6 +305,70 @@ export function coreHistory(context) { }, + toIntroGraph: function() { + var nextId = { n: 0, r: 0, w: 0 }, + permIds = {}, + graph = this.graph(), + baseEntities = {}; + + // clone base entities.. + _.forEach(graph.base().entities, function(entity) { + var copy = _.cloneDeepWith(entity, customizer); + baseEntities[copy.id] = copy; + }); + + // replace base entities with head entities.. + _.forEach(graph.entities, function(entity, id) { + if (entity) { + var copy = _.cloneDeepWith(entity, customizer); + baseEntities[copy.id] = copy; + } else { + delete baseEntities[id]; + } + }); + + // swap temporary for permanent ids.. + _.forEach(baseEntities, function(entity) { + if (Array.isArray(entity.nodes)) { + entity.nodes = entity.nodes.map(function(node) { + return permIds[node] || node; + }); + } + if (Array.isArray(entity.members)) { + entity.members = entity.members.map(function(member) { + member.id = permIds[member.id] || member.id; + return member; + }); + } + }); + + return JSON.stringify({ dataIntroGraph: baseEntities }); + + + function customizer(src) { + var copy = _.omit(_.cloneDeep(src), ['type', 'user', 'v', 'version', 'visible']); + if (_.isEmpty(copy.tags)) { + delete copy.tags; + } + + if (Array.isArray(copy.loc)) { + copy.loc[0] = +copy.loc[0].toFixed(6); + copy.loc[1] = +copy.loc[1].toFixed(6); + } + + var match = src.id.match(/([nrw])-\d*/); // temporary id + if (match !== null) { + var nrw = match[1], permId; + do { permId = nrw + (++nextId[nrw]); } + while (baseEntities.hasOwnProperty(permId)); + + copy.id = permIds[src.id] = permId; + } + return copy; + } + }, + + toJSON: function() { if (!this.hasChanges()) return; From 9933a36aa50e12fe6f16f91f0371cf43af919b14 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Apr 2017 10:39:44 -0400 Subject: [PATCH 47/91] Slim down the intro graph (closes #3403) --- data/intro_graph.json | 21124 ++++++---------------------------------- 1 file changed, 3157 insertions(+), 17967 deletions(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index c6f543c82..e6883ff63 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -1,16 +1,12 @@ { "dataIntroGraph": { - "n185954700": { - "id": "n185954700", - "loc": [-85.642244, 41.939081] - }, "n185964961": { "id": "n185964961", - "loc": [-85.6406588, 41.942601] + "loc": [-85.640659, 41.942601] }, "n185964962": { "id": "n185964962", - "loc": [-85.6394548, 41.94261] + "loc": [-85.639455, 41.94261] }, "n185970607": { "id": "n185970607", @@ -26,7 +22,7 @@ }, "n185973650": { "id": "n185973650", - "loc": [-85.639918, 41.940064] + "loc": [-85.639932, 41.940067] }, "n185973660": { "id": "n185973660", @@ -34,7 +30,7 @@ }, "n185973659": { "id": "n185973659", - "loc": [-85.6406115, 41.9400658] + "loc": [-85.640612, 41.940066] }, "n185974479": { "id": "n185974479", @@ -54,743 +50,743 @@ }, "n185964959": { "id": "n185964959", - "loc": [-85.6431031, 41.9425754] + "loc": [-85.643103, 41.942575] }, "n185964960": { "id": "n185964960", - "loc": [-85.6418749, 41.9425864] + "loc": [-85.641875, 41.942586] }, "n185981481": { "id": "n185981481", - "loc": [-85.6386827, 41.9400828] + "loc": [-85.638673, 41.940083] }, "n185981482": { "id": "n185981482", - "loc": [-85.6393664, 41.9400854] + "loc": [-85.639362, 41.940072] }, "n2138493844": { "id": "n2138493844", - "loc": [-85.6427969, 41.940522] + "loc": [-85.642797, 41.940522] }, "n2138493845": { "id": "n2138493845", - "loc": [-85.6425891, 41.9405228] + "loc": [-85.642589, 41.940523] }, "n2138493846": { "id": "n2138493846", - "loc": [-85.6425868, 41.9402875] + "loc": [-85.642587, 41.940287] }, "n2138493847": { "id": "n2138493847", - "loc": [-85.6427969, 41.9402858] + "loc": [-85.642797, 41.940286] }, "n2138493848": { "id": "n2138493848", - "loc": [-85.6425708, 41.9405234] + "loc": [-85.642571, 41.940523] }, "n2138493849": { "id": "n2138493849", - "loc": [-85.642568, 41.9402855] + "loc": [-85.642568, 41.940286] }, "n2138493850": { "id": "n2138493850", - "loc": [-85.6423157, 41.9402886] + "loc": [-85.642316, 41.940289] }, "n2138493851": { "id": "n2138493851", - "loc": [-85.6423212, 41.9404362] + "loc": [-85.642321, 41.940436] }, "n2138493852": { "id": "n2138493852", - "loc": [-85.6422923, 41.9404578] + "loc": [-85.642292, 41.940458] }, "n2138493853": { "id": "n2138493853", - "loc": [-85.6422868, 41.9404834] + "loc": [-85.642287, 41.940483] }, "n2138493854": { "id": "n2138493854", - "loc": [-85.6423226, 41.9405091] + "loc": [-85.642323, 41.940509] }, "n2138493855": { "id": "n2138493855", - "loc": [-85.6423847, 41.9405111] + "loc": [-85.642385, 41.940511] }, "n2138493856": { "id": "n2138493856", - "loc": [-85.6424081, 41.9405265] + "loc": [-85.642408, 41.940526] }, "n2140155811": { "id": "n2140155811", - "loc": [-85.6419547, 41.9410956] + "loc": [-85.641955, 41.941096] }, "n2140155814": { "id": "n2140155814", - "loc": [-85.6427577, 41.9410884] + "loc": [-85.642758, 41.941088] }, "n2140155816": { "id": "n2140155816", - "loc": [-85.6427545, 41.9410052] + "loc": [-85.642754, 41.941005] }, "n2140155818": { "id": "n2140155818", - "loc": [-85.6428057, 41.9410028] + "loc": [-85.642806, 41.941003] }, "n2140155821": { "id": "n2140155821", - "loc": [-85.6427993, 41.9407339] + "loc": [-85.642799, 41.940734] }, "n2140155823": { "id": "n2140155823", - "loc": [-85.6427385, 41.9407339] + "loc": [-85.642738, 41.940734] }, "n2140155825": { "id": "n2140155825", - "loc": [-85.6427417, 41.9406435] + "loc": [-85.642742, 41.940644] }, "n2140155827": { "id": "n2140155827", - "loc": [-85.6419515, 41.9406482] + "loc": [-85.641952, 41.940648] }, "n2140155828": { "id": "n2140155828", - "loc": [-85.6429368, 41.9412407] + "loc": [-85.642937, 41.941241] }, "n2140155829": { "id": "n2140155829", - "loc": [-85.6417756, 41.9412526] + "loc": [-85.641776, 41.941253] }, "n2140155830": { "id": "n2140155830", - "loc": [-85.641766, 41.9405983] + "loc": [-85.641766, 41.940598] }, "n2140155831": { "id": "n2140155831", - "loc": [-85.6419803, 41.9405983] + "loc": [-85.64198, 41.940598] }, "n2140155832": { "id": "n2140155832", - "loc": [-85.6419611, 41.9401366] + "loc": [-85.641961, 41.940137] }, "n2140155833": { "id": "n2140155833", - "loc": [-85.6429336, 41.94012] + "loc": [-85.642934, 41.94012] }, "n2140155834": { "id": "n2140155834", - "loc": [-85.6430697, 41.9411732] + "loc": [-85.64307, 41.941173] }, "n2140155835": { "id": "n2140155835", - "loc": [-85.6428411, 41.9409974] + "loc": [-85.642841, 41.940997] }, "n2140155837": { "id": "n2140155837", - "loc": [-85.6428388, 41.9407211] + "loc": [-85.642839, 41.940721] }, "n2140155839": { "id": "n2140155839", - "loc": [-85.6430624, 41.9405521] + "loc": [-85.643062, 41.940552] }, "n2140155840": { "id": "n2140155840", - "loc": [-85.6427323, 41.9412396] + "loc": [-85.642732, 41.94124] }, "n2140155842": { "id": "n2140155842", - "loc": [-85.6418147, 41.9412457] + "loc": [-85.641815, 41.941246] }, "n2140155844": { "id": "n2140155844", - "loc": [-85.641813, 41.9411319] + "loc": [-85.641813, 41.941132] }, "n2140155845": { "id": "n2140155845", - "loc": [-85.6418394, 41.9411111] + "loc": [-85.641839, 41.941111] }, "n2140155847": { "id": "n2140155847", - "loc": [-85.6418838, 41.9410977] + "loc": [-85.641884, 41.941098] }, "n2140155849": { "id": "n2140155849", - "loc": [-85.6427324, 41.9410921] + "loc": [-85.642732, 41.941092] }, "n2140155851": { "id": "n2140155851", - "loc": [-85.6427798, 41.9412945] + "loc": [-85.64278, 41.941294] }, "n2140155852": { "id": "n2140155852", - "loc": [-85.6427701, 41.9411777] + "loc": [-85.64277, 41.941178] }, "n2140155854": { "id": "n2140155854", - "loc": [-85.6427323, 41.9411572] + "loc": [-85.642732, 41.941157] }, "n2140155856": { "id": "n2140155856", - "loc": [-85.6418478, 41.9411666] + "loc": [-85.641848, 41.941167] }, "n2165942818": { "id": "n2165942818", - "loc": [-85.6437533, 41.9415029] + "loc": [-85.643753, 41.941503] }, "n2165942819": { "id": "n2165942819", - "loc": [-85.6437623, 41.9421195] + "loc": [-85.643762, 41.942119] }, "n2168510551": { "id": "n2168510551", - "loc": [-85.6423795, 41.9422615] + "loc": [-85.64238, 41.942262] }, "n2168510552": { "id": "n2168510552", - "loc": [-85.6423744, 41.9419439] + "loc": [-85.642374, 41.941944] }, "n2168510553": { "id": "n2168510553", - "loc": [-85.642518, 41.9419427] + "loc": [-85.642518, 41.941943] }, "n2168510554": { "id": "n2168510554", - "loc": [-85.6425186, 41.9419801] + "loc": [-85.642519, 41.94198] }, "n2168510555": { "id": "n2168510555", - "loc": [-85.6428314, 41.9419773] + "loc": [-85.642831, 41.941977] }, "n2168510556": { "id": "n2168510556", - "loc": [-85.6428368, 41.9423116] + "loc": [-85.642837, 41.942312] }, "n2168510557": { "id": "n2168510557", - "loc": [-85.6424947, 41.9423146] + "loc": [-85.642495, 41.942315] }, "n2168510558": { "id": "n2168510558", - "loc": [-85.6424938, 41.9422605] + "loc": [-85.642494, 41.942261] }, "n2189046007": { "id": "n2189046007", - "loc": [-85.6410866, 41.9424327] + "loc": [-85.641087, 41.942433] }, "n2189046009": { "id": "n2189046009", - "loc": [-85.6410805, 41.9420061] + "loc": [-85.641081, 41.942006] }, "n2189046011": { "id": "n2189046011", - "loc": [-85.6412443, 41.9420048] + "loc": [-85.641244, 41.942005] }, "n2189046012": { "id": "n2189046012", - "loc": [-85.6412505, 41.9424314] + "loc": [-85.64125, 41.942431] }, "n2189046014": { "id": "n2189046014", - "loc": [-85.6413311, 41.942968] + "loc": [-85.641331, 41.942968] }, "n2189046016": { "id": "n2189046016", - "loc": [-85.6413281, 41.942713] + "loc": [-85.641328, 41.942713] }, "n2189046018": { "id": "n2189046018", - "loc": [-85.641521, 41.9427117] + "loc": [-85.641521, 41.942712] }, "n2189046021": { "id": "n2189046021", - "loc": [-85.6415234, 41.9429236] + "loc": [-85.641523, 41.942924] }, "n2189046022": { "id": "n2189046022", - "loc": [-85.6415045, 41.9429238] + "loc": [-85.641504, 41.942924] }, "n2189046025": { "id": "n2189046025", - "loc": [-85.641505, 41.9429668] + "loc": [-85.641505, 41.942967] }, "n2189046053": { "id": "n2189046053", - "loc": [-85.6385988, 41.942412] + "loc": [-85.638599, 41.942412] }, "n2189046054": { "id": "n2189046054", - "loc": [-85.6385985, 41.9423311] + "loc": [-85.638599, 41.942331] }, "n2189046055": { "id": "n2189046055", - "loc": [-85.6387617, 41.9423308] + "loc": [-85.638762, 41.942331] }, "n2189046056": { "id": "n2189046056", - "loc": [-85.6387616, 41.9423026] + "loc": [-85.638762, 41.942303] }, "n2189046058": { "id": "n2189046058", - "loc": [-85.6388215, 41.9423025] + "loc": [-85.638822, 41.942302] }, "n2189046059": { "id": "n2189046059", - "loc": [-85.6388219, 41.9424115] + "loc": [-85.638822, 41.942411] }, "n2189046060": { "id": "n2189046060", - "loc": [-85.6391096, 41.9424486] + "loc": [-85.63911, 41.942449] }, "n2189046061": { "id": "n2189046061", - "loc": [-85.6391105, 41.9423673] + "loc": [-85.639111, 41.942367] }, "n2189046063": { "id": "n2189046063", - "loc": [-85.6392911, 41.9423684] + "loc": [-85.639291, 41.942368] }, "n2189046065": { "id": "n2189046065", - "loc": [-85.6392903, 41.9424497] + "loc": [-85.63929, 41.94245] }, "n2189046067": { "id": "n2189046067", - "loc": [-85.6397927, 41.9423876] + "loc": [-85.639793, 41.942388] }, "n2189046069": { "id": "n2189046069", - "loc": [-85.6397897, 41.9422981] + "loc": [-85.63979, 41.942298] }, "n2189046070": { "id": "n2189046070", - "loc": [-85.6399702, 41.9422947] + "loc": [-85.63997, 41.942295] }, "n2189046072": { "id": "n2189046072", - "loc": [-85.6399732, 41.9423843] + "loc": [-85.639973, 41.942384] }, "n2189046074": { "id": "n2189046074", - "loc": [-85.6396331, 41.9430227] + "loc": [-85.639633, 41.943023] }, "n2189046075": { "id": "n2189046075", - "loc": [-85.6398673, 41.9430189] + "loc": [-85.639867, 41.943019] }, "n2189046077": { "id": "n2189046077", - "loc": [-85.6398656, 41.9429637] + "loc": [-85.639866, 41.942964] }, "n2189046079": { "id": "n2189046079", - "loc": [-85.6398885, 41.9429633] + "loc": [-85.639888, 41.942963] }, "n2189046082": { "id": "n2189046082", - "loc": [-85.6398832, 41.942779] + "loc": [-85.639883, 41.942779] }, "n2189046083": { "id": "n2189046083", - "loc": [-85.6398513, 41.9427796] + "loc": [-85.639851, 41.94278] }, "n2189046085": { "id": "n2189046085", - "loc": [-85.6398502, 41.9427401] + "loc": [-85.63985, 41.94274] }, "n2189046087": { "id": "n2189046087", - "loc": [-85.6397889, 41.9427411] + "loc": [-85.639789, 41.942741] }, "n2189046089": { "id": "n2189046089", - "loc": [-85.6397892, 41.942753] + "loc": [-85.639789, 41.942753] }, "n2189046090": { "id": "n2189046090", - "loc": [-85.6396983, 41.9427544] + "loc": [-85.639698, 41.942754] }, "n2189046092": { "id": "n2189046092", - "loc": [-85.6396993, 41.9427882] + "loc": [-85.639699, 41.942788] }, "n2189046094": { "id": "n2189046094", - "loc": [-85.6396746, 41.9427886] + "loc": [-85.639675, 41.942789] }, "n2189046096": { "id": "n2189046096", - "loc": [-85.6396758, 41.9428296] + "loc": [-85.639676, 41.94283] }, "n2189046097": { "id": "n2189046097", - "loc": [-85.6397007, 41.9428292] + "loc": [-85.639701, 41.942829] }, "n2189046099": { "id": "n2189046099", - "loc": [-85.6397018, 41.9428686] + "loc": [-85.639702, 41.942869] }, "n2189046103": { "id": "n2189046103", - "loc": [-85.6396289, 41.9428697] + "loc": [-85.639629, 41.94287] }, "n2189046112": { "id": "n2189046112", - "loc": [-85.6435683, 41.9429457] + "loc": [-85.643568, 41.942946] }, "n2189046113": { "id": "n2189046113", - "loc": [-85.643568, 41.9427766] + "loc": [-85.643568, 41.942777] }, "n2189046115": { "id": "n2189046115", - "loc": [-85.6434011, 41.9427767] + "loc": [-85.643401, 41.942777] }, "n2189046116": { "id": "n2189046116", - "loc": [-85.6434012, 41.9428631] + "loc": [-85.643401, 41.942863] }, "n2189046117": { "id": "n2189046117", - "loc": [-85.643448, 41.9428631] + "loc": [-85.643448, 41.942863] }, "n2189046118": { "id": "n2189046118", - "loc": [-85.6434481, 41.9429457] + "loc": [-85.643448, 41.942946] }, "n2189046119": { "id": "n2189046119", - "loc": [-85.6428363, 41.9429809] + "loc": [-85.642836, 41.942981] }, "n2189046120": { "id": "n2189046120", - "loc": [-85.6429171, 41.9429791] + "loc": [-85.642917, 41.942979] }, "n2189046121": { "id": "n2189046121", - "loc": [-85.642914, 41.9429041] + "loc": [-85.642914, 41.942904] }, "n2189046122": { "id": "n2189046122", - "loc": [-85.6429385, 41.9429035] + "loc": [-85.642938, 41.942903] }, "n2189046123": { "id": "n2189046123", - "loc": [-85.6429348, 41.9428126] + "loc": [-85.642935, 41.942813] }, "n2189046124": { "id": "n2189046124", - "loc": [-85.6427746, 41.9428163] + "loc": [-85.642775, 41.942816] }, "n2189046125": { "id": "n2189046125", - "loc": [-85.6427783, 41.942906] + "loc": [-85.642778, 41.942906] }, "n2189046126": { "id": "n2189046126", - "loc": [-85.6428332, 41.9429047] + "loc": [-85.642833, 41.942905] }, "n2189046127": { "id": "n2189046127", - "loc": [-85.6423018, 41.9428859] + "loc": [-85.642302, 41.942886] }, "n2189046128": { "id": "n2189046128", - "loc": [-85.6422987, 41.9427208] + "loc": [-85.642299, 41.942721] }, "n2189046130": { "id": "n2189046130", - "loc": [-85.6424218, 41.9427195] + "loc": [-85.642422, 41.94272] }, "n2189046131": { "id": "n2189046131", - "loc": [-85.6424246, 41.9428684] + "loc": [-85.642425, 41.942868] }, "n2189046132": { "id": "n2189046132", - "loc": [-85.6423845, 41.9428689] + "loc": [-85.642385, 41.942869] }, "n2189046133": { "id": "n2189046133", - "loc": [-85.6423848, 41.942885] + "loc": [-85.642385, 41.942885] }, "n2189046134": { "id": "n2189046134", - "loc": [-85.641533, 41.9429392] + "loc": [-85.641533, 41.942939] }, "n2189046135": { "id": "n2189046135", - "loc": [-85.6416096, 41.9428768] + "loc": [-85.64161, 41.942877] }, "n2189046137": { "id": "n2189046137", - "loc": [-85.6416763, 41.9429221] + "loc": [-85.641676, 41.942922] }, "n2189046138": { "id": "n2189046138", - "loc": [-85.6415997, 41.9429845] + "loc": [-85.6416, 41.942985] }, "n2189046139": { "id": "n2189046139", - "loc": [-85.6420598, 41.9428016] + "loc": [-85.64206, 41.942802] }, "n2189046140": { "id": "n2189046140", - "loc": [-85.6420593, 41.9427415] + "loc": [-85.642059, 41.942741] }, "n2189046141": { "id": "n2189046141", - "loc": [-85.6421957, 41.9427409] + "loc": [-85.642196, 41.942741] }, "n2189046142": { "id": "n2189046142", - "loc": [-85.6421963, 41.9428182] + "loc": [-85.642196, 41.942818] }, "n2189046143": { "id": "n2189046143", - "loc": [-85.6421281, 41.9428185] + "loc": [-85.642128, 41.942819] }, "n2189046144": { "id": "n2189046144", - "loc": [-85.6421279, 41.9428013] + "loc": [-85.642128, 41.942801] }, "n2189046145": { "id": "n2189046145", - "loc": [-85.6409429, 41.9429345] + "loc": [-85.640943, 41.942934] }, "n2189046146": { "id": "n2189046146", - "loc": [-85.6410354, 41.9429334] + "loc": [-85.641035, 41.942933] }, "n2189046147": { "id": "n2189046147", - "loc": [-85.6410325, 41.9427972] + "loc": [-85.641032, 41.942797] }, "n2189046148": { "id": "n2189046148", - "loc": [-85.640997, 41.9427976] + "loc": [-85.640997, 41.942798] }, "n2189046149": { "id": "n2189046149", - "loc": [-85.6409963, 41.9427643] + "loc": [-85.640996, 41.942764] }, "n2189046150": { "id": "n2189046150", - "loc": [-85.6408605, 41.9427659] + "loc": [-85.640861, 41.942766] }, "n2189046152": { "id": "n2189046152", - "loc": [-85.6408623, 41.9428482] + "loc": [-85.640862, 41.942848] }, "n2189046153": { "id": "n2189046153", - "loc": [-85.640941, 41.9428473] + "loc": [-85.640941, 41.942847] }, "n2189152992": { "id": "n2189152992", - "loc": [-85.6437661, 41.9422257] + "loc": [-85.643766, 41.942226] }, "n2189152993": { "id": "n2189152993", - "loc": [-85.643768, 41.9424067] + "loc": [-85.643768, 41.942407] }, "n2189152994": { "id": "n2189152994", - "loc": [-85.6432176, 41.9417705] + "loc": [-85.643218, 41.94177] }, "n2189152995": { "id": "n2189152995", - "loc": [-85.6432097, 41.941327] + "loc": [-85.64321, 41.941327] }, "n2189152996": { "id": "n2189152996", - "loc": [-85.6436493, 41.9413226] + "loc": [-85.643649, 41.941323] }, "n2189152997": { "id": "n2189152997", - "loc": [-85.6436563, 41.9417164] + "loc": [-85.643656, 41.941716] }, "n2189152998": { "id": "n2189152998", - "loc": [-85.6435796, 41.9417171] + "loc": [-85.64358, 41.941717] }, "n2189152999": { "id": "n2189152999", - "loc": [-85.6435805, 41.9417669] + "loc": [-85.64358, 41.941767] }, "n2189153000": { "id": "n2189153000", - "loc": [-85.6438202, 41.9414953] + "loc": [-85.64382, 41.941495] }, "n2189153001": { "id": "n2189153001", - "loc": [-85.6438173, 41.9413175] + "loc": [-85.643817, 41.941317] }, "n2189153004": { "id": "n2189153004", - "loc": [-85.6432535, 41.9418466] + "loc": [-85.643254, 41.941847] }, "n2189153005": { "id": "n2189153005", - "loc": [-85.6433935, 41.9418599] + "loc": [-85.643394, 41.94186] }, "n2189153006": { "id": "n2189153006", - "loc": [-85.6434831, 41.9418986] + "loc": [-85.643483, 41.941899] }, "n2189153007": { "id": "n2189153007", - "loc": [-85.6435678, 41.9419774] + "loc": [-85.643568, 41.941977] }, "n2189153008": { "id": "n2189153008", - "loc": [-85.6435987, 41.9420282] + "loc": [-85.643599, 41.942028] }, "n2189153009": { "id": "n2189153009", - "loc": [-85.643438, 41.9419573] + "loc": [-85.643438, 41.941957] }, "n2189153010": { "id": "n2189153010", - "loc": [-85.6435284, 41.9424676] + "loc": [-85.643528, 41.942468] }, "n2189153011": { "id": "n2189153011", - "loc": [-85.6436207, 41.9423631] + "loc": [-85.643621, 41.942363] }, "n2189153012": { "id": "n2189153012", - "loc": [-85.6434957, 41.9422973] + "loc": [-85.643496, 41.942297] }, "n2189153013": { "id": "n2189153013", - "loc": [-85.6434457, 41.9422458] + "loc": [-85.643446, 41.942246] }, "n2189153014": { "id": "n2189153014", - "loc": [-85.6433976, 41.9421772] + "loc": [-85.643398, 41.942177] }, "n2189153015": { "id": "n2189153015", - "loc": [-85.6433861, 41.9420785] + "loc": [-85.643386, 41.942079] }, "n2189153016": { "id": "n2189153016", - "loc": [-85.6433765, 41.9420313] + "loc": [-85.643377, 41.942031] }, "n2189153017": { "id": "n2189153017", - "loc": [-85.6432207, 41.9420284] + "loc": [-85.643221, 41.942028] }, "n2189153018": { "id": "n2189153018", - "loc": [-85.6432245, 41.9422759] + "loc": [-85.643225, 41.942276] }, "n2189153019": { "id": "n2189153019", - "loc": [-85.6432649, 41.9423474] + "loc": [-85.643265, 41.942347] }, "n2189153020": { "id": "n2189153020", - "loc": [-85.6433226, 41.9424132] + "loc": [-85.643323, 41.942413] }, "n2189153021": { "id": "n2189153021", - "loc": [-85.6434111, 41.9424704] + "loc": [-85.643411, 41.94247] }, "n2189153022": { "id": "n2189153022", - "loc": [-85.6434591, 41.9424347] + "loc": [-85.643459, 41.942435] }, "n2189153025": { "id": "n2189153025", - "loc": [-85.6437669, 41.9423073] + "loc": [-85.643767, 41.942307] }, "n2189153026": { "id": "n2189153026", - "loc": [-85.6436611, 41.942293] + "loc": [-85.643661, 41.942293] }, "n2189153027": { "id": "n2189153027", - "loc": [-85.6435784, 41.9422473] + "loc": [-85.643578, 41.942247] }, "n2189153028": { "id": "n2189153028", - "loc": [-85.6435245, 41.9421443] + "loc": [-85.643524, 41.942144] }, "n2189153029": { "id": "n2189153029", - "loc": [-85.6435149, 41.9420613] + "loc": [-85.643515, 41.942061] }, "n2189153030": { "id": "n2189153030", - "loc": [-85.6433528, 41.9419269] + "loc": [-85.643353, 41.941927] }, "n2189153031": { "id": "n2189153031", - "loc": [-85.6432535, 41.9419191] + "loc": [-85.643254, 41.941919] }, "n2189153032": { "id": "n2189153032", - "loc": [-85.6430868, 41.9419198] + "loc": [-85.643087, 41.94192] }, "n2189153033": { "id": "n2189153033", - "loc": [-85.6434894, 41.9420033] + "loc": [-85.643489, 41.942003] }, "n2189153034": { "id": "n2189153034", - "loc": [-85.6432974, 41.9419225] + "loc": [-85.643297, 41.941922] }, "n2189153035": { "id": "n2189153035", - "loc": [-85.6433055, 41.9421632] + "loc": [-85.643305, 41.942163] }, "n2189153036": { "id": "n2189153036", - "loc": [-85.6433538, 41.9422849] + "loc": [-85.643354, 41.942285] }, "n2189153037": { "id": "n2189153037", - "loc": [-85.6434718, 41.9423887] + "loc": [-85.643472, 41.942389] }, "n2189153038": { "id": "n2189153038", - "loc": [-85.6436134, 41.9422667] + "loc": [-85.643613, 41.942267] }, "n2189153040": { "id": "n2189153040", - "loc": [-85.6438759, 41.9414017] + "loc": [-85.643876, 41.941402] }, "n2189153041": { "id": "n2189153041", - "loc": [-85.6438181, 41.9413687] + "loc": [-85.643818, 41.941369] }, "n2189153042": { "id": "n2189153042", - "loc": [-85.6436821, 41.9413044] + "loc": [-85.643682, 41.941304] }, "n2189153043": { "id": "n2189153043", - "loc": [-85.6435899, 41.9412862] + "loc": [-85.64359, 41.941286] }, "n2189153044": { "id": "n2189153044", - "loc": [-85.6433169, 41.9417268] + "loc": [-85.643317, 41.941727] }, "n2189153045": { "id": "n2189153045", - "loc": [-85.643301, 41.9412859] + "loc": [-85.643301, 41.941286] }, "n2189153046": { "id": "n2189153046", - "loc": [-85.6435531, 41.9416981] + "loc": [-85.643553, 41.941698] }, "n2189153047": { "id": "n2189153047", - "loc": [-85.6435427, 41.9412863] + "loc": [-85.643543, 41.941286] }, "n185948706": { "id": "n185948706", - "loc": [-85.6369439, 41.940122] + "loc": [-85.636944, 41.940106] }, "n185949348": { "id": "n185949348", @@ -798,15 +794,15 @@ }, "n185949870": { "id": "n185949870", - "loc": [-85.643195, 41.949261] + "loc": [-85.643197, 41.949261] }, "n185954680": { "id": "n185954680", - "loc": [-85.6337802, 41.9401143] + "loc": [-85.63378, 41.940114] }, "n185954784": { "id": "n185954784", - "loc": [-85.6487485, 41.942527] + "loc": [-85.651284, 41.942549] }, "n185958670": { "id": "n185958670", @@ -820,33 +816,13 @@ "id": "n185960207", "loc": [-85.634992, 41.940118] }, - "n185963163": { - "id": "n185963163", - "loc": [-85.638831, 41.93398] - }, - "n185963165": { - "id": "n185963165", - "loc": [-85.640073, 41.933968] - }, - "n185963167": { - "id": "n185963167", - "loc": [-85.641225, 41.933972] - }, - "n185963168": { - "id": "n185963168", - "loc": [-85.642386, 41.933952] - }, - "n185964695": { - "id": "n185964695", - "loc": [-85.6443608, 41.9425645] - }, "n185964697": { "id": "n185964697", "loc": [-85.644384, 41.939941] }, "n185964963": { "id": "n185964963", - "loc": [-85.6382347, 41.9426146] + "loc": [-85.638235, 41.942615] }, "n185964965": { "id": "n185964965", @@ -854,19 +830,19 @@ }, "n185964967": { "id": "n185964967", - "loc": [-85.6363706, 41.9426606] + "loc": [-85.636371, 41.942661] }, "n185964968": { "id": "n185964968", - "loc": [-85.6357988, 41.9427748] + "loc": [-85.635799, 41.942775] }, "n185964969": { "id": "n185964969", - "loc": [-85.6355409, 41.9428465] + "loc": [-85.635541, 41.942847] }, "n185964970": { "id": "n185964970", - "loc": [-85.6348729, 41.9430443] + "loc": [-85.634873, 41.943044] }, "n185966958": { "id": "n185966958", @@ -874,11 +850,11 @@ }, "n185966960": { "id": "n185966960", - "loc": [-85.643148, 41.946389] + "loc": [-85.643157, 41.946389] }, "n185967774": { "id": "n185967774", - "loc": [-85.641889, 41.943852] + "loc": [-85.641889, 41.943851] }, "n185967775": { "id": "n185967775", @@ -886,72 +862,32 @@ }, "n185967776": { "id": "n185967776", - "loc": [-85.641927, 41.947544] + "loc": [-85.641955, 41.947508] }, "n185967777": { "id": "n185967777", - "loc": [-85.641982, 41.947622] + "loc": [-85.642015, 41.947624] }, "n185969289": { "id": "n185969289", "loc": [-85.63928, 41.929221] }, - "n185969704": { - "id": "n185969704", - "loc": [-85.6388186, 41.9350099] - }, - "n185969706": { - "id": "n185969706", - "loc": [-85.6400709, 41.9349957] - }, - "n185969708": { - "id": "n185969708", - "loc": [-85.6412214, 41.9349827] - }, - "n185969710": { - "id": "n185969710", - "loc": [-85.6423509, 41.934974] - }, "n185970602": { "id": "n185970602", "loc": [-85.641293, 41.931817] }, - "n185970604": { - "id": "n185970604", - "loc": [-85.641258, 41.932705] - }, - "n185970605": { - "id": "n185970605", - "loc": [-85.641148, 41.936984] - }, - "n185970606": { - "id": "n185970606", - "loc": [-85.641112, 41.938169] - }, "n185970906": { "id": "n185970906", "loc": [-85.639454, 41.943871] }, - "n185970908": { - "id": "n185970908", - "loc": [-85.6394635, 41.9450504] - }, "n185970909": { "id": "n185970909", - "loc": [-85.6394914, 41.9451911] + "loc": [-85.639491, 41.945191] }, "n185971368": { "id": "n185971368", "loc": [-85.635769, 41.940122] }, - "n185971978": { - "id": "n185971978", - "loc": [-85.640003, 41.936988] - }, - "n185971980": { - "id": "n185971980", - "loc": [-85.642299, 41.936988] - }, "n185973633": { "id": "n185973633", "loc": [-85.639023, 41.92861] @@ -976,41 +912,25 @@ "id": "n185973644", "loc": [-85.64019, 41.931788] }, - "n185973646": { - "id": "n185973646", - "loc": [-85.6401365, 41.9327199] - }, - "n185973648": { - "id": "n185973648", - "loc": [-85.639983, 41.938174] - }, "n185974477": { "id": "n185974477", "loc": [-85.638206, 41.941331] }, "n185975928": { "id": "n185975928", - "loc": [-85.640683, 41.94513] + "loc": [-85.640721, 41.94513] }, "n185975930": { "id": "n185975930", - "loc": [-85.643102, 41.945103] + "loc": [-85.643139, 41.945103] }, "n185976255": { "id": "n185976255", "loc": [-85.642424, 41.931817] }, - "n185976257": { - "id": "n185976257", - "loc": [-85.64242, 41.932699] - }, - "n185976258": { - "id": "n185976258", - "loc": [-85.6422621, 41.9381489] - }, "n185977452": { "id": "n185977452", - "loc": [-85.6457497, 41.9398834] + "loc": [-85.64575, 41.939883] }, "n185978772": { "id": "n185978772", @@ -1018,27 +938,15 @@ }, "n185981472": { "id": "n185981472", - "loc": [-85.6388962, 41.9321266] - }, - "n185981474": { - "id": "n185981474", - "loc": [-85.6388769, 41.9327334] - }, - "n185981476": { - "id": "n185981476", - "loc": [-85.638829, 41.934116] + "loc": [-85.638896, 41.932127] }, "n185981478": { "id": "n185981478", "loc": [-85.63876, 41.937002] }, - "n185981480": { - "id": "n185981480", - "loc": [-85.638682, 41.93819] - }, "n185981999": { "id": "n185981999", - "loc": [-85.638194, 41.9400866] + "loc": [-85.638194, 41.940094] }, "n185982001": { "id": "n185982001", @@ -1046,7 +954,7 @@ }, "n185982877": { "id": "n185982877", - "loc": [-85.640676, 41.943867] + "loc": [-85.640688, 41.943861] }, "n185982879": { "id": "n185982879", @@ -1054,11 +962,11 @@ }, "n185985823": { "id": "n185985823", - "loc": [-85.643106, 41.943841] + "loc": [-85.643121, 41.943841] }, "n185985824": { "id": "n185985824", - "loc": [-85.643145, 41.947641] + "loc": [-85.643174, 41.947641] }, "n185985825": { "id": "n185985825", @@ -1066,71 +974,70 @@ }, "n1475301385": { "id": "n1475301385", - "loc": [-85.6360612, 41.9427042] + "loc": [-85.636061, 41.942704] }, "n1475301397": { "id": "n1475301397", - "loc": [-85.6366651, 41.9426328] - }, - "n2139795811": { - "id": "n2139795811", - "loc": [-85.6469154, 41.9425427] + "loc": [-85.636665, 41.942633] }, "n2139795830": { "id": "n2139795830", - "loc": [-85.6443194, 41.9399444] + "loc": [-85.644319, 41.939944] }, "n2139795834": { "id": "n2139795834", - "loc": [-85.6453506, 41.9399002] + "loc": [-85.645351, 41.9399] }, "n2139795837": { "id": "n2139795837", - "loc": [-85.645806, 41.9398831] + "loc": [-85.645806, 41.939883] }, "n2139858932": { "id": "n2139858932", - "loc": [-85.6351721, 41.9429557] + "loc": [-85.635172, 41.942956], + "tags": { + "highway": "crossing" + } }, "n2140019000": { "id": "n2140019000", - "loc": [-85.6359935, 41.9427224] + "loc": [-85.635993, 41.942722] }, "n2165942817": { "id": "n2165942817", - "loc": [-85.6442017, 41.9414993] + "loc": [-85.644202, 41.941499] }, "n2165942820": { "id": "n2165942820", - "loc": [-85.6442107, 41.9421159] + "loc": [-85.644211, 41.942116] }, "n2189152990": { "id": "n2189152990", - "loc": [-85.6442328, 41.942404] + "loc": [-85.644233, 41.942404] }, "n2189152991": { "id": "n2189152991", - "loc": [-85.6442309, 41.9422229] + "loc": [-85.644231, 41.942223] }, "n2189153002": { "id": "n2189153002", - "loc": [-85.6441329, 41.9413147] + "loc": [-85.644133, 41.941315] }, "n2189153003": { "id": "n2189153003", - "loc": [-85.6441357, 41.9414925] + "loc": [-85.644136, 41.941493] }, "n2189153023": { "id": "n2189153023", - "loc": [-85.6443453, 41.9423074] + "loc": [-85.644345, 41.942307] }, "n2189153024": { "id": "n2189153024", - "loc": [-85.6442318, 41.9423045] + "loc": [-85.644232, 41.942304] }, "n2189153039": { "id": "n2189153039", - "loc": [-85.6441343, 41.9414025] + "loc": [-85.644134, 41.941403] }, "w208643102": { "id": "w208643102", @@ -1180,7 +1087,6 @@ "w208631637": { "id": "w208631637", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046014", "n2189046016", "n2189046018", "n2189046021", "n2189046022", "n2189046025", "n2189046014"] @@ -1189,7 +1095,6 @@ "id": "w208643096", "tags": { "amenity": "parking", - "area": "yes", "fee": "no" }, "nodes": ["n2189152990", "n2189153024", "n2189152991", "n2189152992", "n2189153025", "n2189152993", "n2189152990"] @@ -1197,7 +1102,6 @@ "w208631656": { "id": "w208631656", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046134", "n2189046135", "n2189046137", "n2189046138", "n2189046134"] @@ -1205,7 +1109,6 @@ "w204003417": { "id": "w204003417", "tags": { - "area": "yes", "building": "school" }, "nodes": [ @@ -1223,7 +1126,6 @@ "w208631654": { "id": "w208631654", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046127", "n2189046128", "n2189046130", "n2189046131", "n2189046132", "n2189046133", "n2189046127"] @@ -1247,8 +1149,6 @@ }, "nodes": [ "n185954784", - "n2139795811", - "n185964695", "n185964959", "n185964960", "n185964961", @@ -1268,7 +1168,6 @@ "w203841842": { "id": "w203841842", "tags": { - "area": "yes", "leisure": "playground" }, "nodes": [ @@ -1294,15 +1193,13 @@ "w208643098": { "id": "w208643098", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2189153000", "n2189153041", "n2189153001", "n2189153002", "n2189153039", "n2189153003", "n2189153000"] }, "w208631646": { "id": "w208631646", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046067", "n2189046069", "n2189046070", "n2189046072", "n2189046067"] @@ -1310,7 +1207,6 @@ "w208631653": { "id": "w208631653", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -1336,7 +1232,6 @@ "w208631645": { "id": "w208631645", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046060", "n2189046061", "n2189046063", "n2189046065", "n2189046060"] @@ -1344,7 +1239,6 @@ "w206803397": { "id": "w206803397", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -1365,12 +1259,11 @@ "highway": "residential", "name": "North Hook Avenue" }, - "nodes": ["n185964962", "n185970906", "n185970908", "n185970909"] + "nodes": ["n185964962", "n185970906", "n185970909"] }, "w208631651": { "id": "w208631651", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046112", "n2189046113", "n2189046115", "n2189046116", "n2189046117", "n2189046118", "n2189046112"] @@ -1378,7 +1271,6 @@ "w208631643": { "id": "w208631643", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046053", "n2189046054", "n2189046055", "n2189046056", "n2189046058", "n2189046059", "n2189046053"] @@ -1389,7 +1281,7 @@ "highway": "residential", "name": "South Hook Avenue" }, - "nodes": ["n185981472", "n185981474", "n185963163", "n185981476", "n185969704", "n185981478", "n185981480", "n185981481"] + "nodes": ["n185981472", "n185981478", "n185981481"] }, "w17966102": { "id": "w17966102", @@ -1402,7 +1294,6 @@ "w208631660": { "id": "w208631660", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -1451,7 +1342,6 @@ "w203841841": { "id": "w203841841", "tags": { - "area": "yes", "leisure": "pitch", "pitch": "basketball" }, @@ -1463,12 +1353,11 @@ "highway": "residential", "name": "North Grant Avenue" }, - "nodes": ["n185964960", "n185967774", "n185967775", "n185966958", "n185967776", "n185967777"] + "nodes": ["n185964960", "n185967774", "n185967775", "n185966958", "n185967776", "n38", "n185967777"] }, "w208631648": { "id": "w208631648", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -1494,8 +1383,7 @@ "w208643100": { "id": "w208643100", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2189153010", @@ -1526,7 +1414,6 @@ "id": "w206574482", "tags": { "amenity": "library", - "area": "yes", "building": "yes", "name": "Three Rivers Public Library" }, @@ -1535,8 +1422,7 @@ "w208643097": { "id": "w208643097", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2189152994", "n2189152995", "n2189152996", "n2189152997", "n2189152998", "n2189152999", "n2189152994"] }, @@ -1554,7 +1440,7 @@ "highway": "residential", "name": "South Douglas Avenue" }, - "nodes": ["n185976255", "n185976257", "n185963168", "n185969710", "n185971980", "n185976258", "n185954700", "n185976259"] + "nodes": ["n185976255", "n185976259"] }, "w17967390": { "id": "w17967390", @@ -1567,7 +1453,6 @@ "w208631635": { "id": "w208631635", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046007", "n2189046009", "n2189046011", "n2189046012", "n2189046007"] @@ -1575,8 +1460,7 @@ "w208643099": { "id": "w208643099", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2189153031", @@ -1595,7 +1479,6 @@ "w208631658": { "id": "w208631658", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189046139", "n2189046140", "n2189046141", "n2189046142", "n2189046143", "n2189046144", "n2189046139"] @@ -1623,19 +1506,13 @@ "n185949348", "n185973641", "n185973644", - "n185973646", - "n185963165", - "n185969706", - "n185971978", - "n185973648", "n185973650" ] }, "w204003420": { "id": "w204003420", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2140155840", "n2140155842", "n2140155844", "n2140155845", "n2140155847", "n2140155849", "n2140155854", "n2140155840"] }, @@ -1650,7 +1527,6 @@ "id": "w204003418", "tags": { "amenity": "school", - "area": "yes", "name": "Andrews Elementary School" }, "nodes": ["n2140155828", "n2140155829", "n2140155830", "n2140155831", "n2140155832", "n2140155833", "n2140155828"] @@ -1661,7 +1537,7 @@ "highway": "residential", "name": "South Grant Avenue" }, - "nodes": ["n185970602", "n185970604", "n185963167", "n185969708", "n185970605", "n185970606", "n185970607"] + "nodes": ["n185970602", "n185970607"] }, "w17967073": { "id": "w17967073", @@ -2202,19 +2078,15 @@ }, "n367813436": { "id": "n367813436", - "loc": [-85.63605205663384, 41.94305506683346], + "loc": [-85.636052, 41.943055], "tags": { "amenity": "fire_station", "name": "Three Rivers Fire Department" } }, - "n185948708": { - "id": "n185948708", - "loc": [-85.6369828, 41.9408789] - }, "n185948710": { "id": "n185948710", - "loc": [-85.6370184, 41.9411346] + "loc": [-85.637018, 41.941135] }, "n185954691": { "id": "n185954691", @@ -2222,7 +2094,7 @@ }, "n185954692": { "id": "n185954692", - "loc": [-85.635008, 41.941846] + "loc": [-85.635036, 41.941858] }, "n185954693": { "id": "n185954693", @@ -2230,71 +2102,71 @@ }, "n185954695": { "id": "n185954695", - "loc": [-85.63578, 41.941978] + "loc": [-85.635796, 41.941962] }, "n185972903": { "id": "n185972903", - "loc": [-85.63295, 41.9430062] + "loc": [-85.63295, 41.943006] }, "n185964971": { "id": "n185964971", - "loc": [-85.6346811, 41.9431023] + "loc": [-85.634681, 41.943102] }, "n1819805854": { "id": "n1819805854", - "loc": [-85.6331275, 41.9404837] + "loc": [-85.633128, 41.940484] }, "n1819805918": { "id": "n1819805918", - "loc": [-85.6331168, 41.942798] + "loc": [-85.633117, 41.942798] }, "n1819805762": { "id": "n1819805762", - "loc": [-85.6333034, 41.9424123] + "loc": [-85.633303, 41.942412] }, "n1819805907": { "id": "n1819805907", - "loc": [-85.6334819, 41.9419121] + "loc": [-85.633482, 41.941912] }, "n1819805915": { "id": "n1819805915", - "loc": [-85.6334554, 41.9413588] + "loc": [-85.633455, 41.941359] }, "n1819848888": { "id": "n1819848888", - "loc": [-85.6331625, 41.942679] + "loc": [-85.633162, 41.942679] }, "n1819848930": { "id": "n1819848930", - "loc": [-85.6338684, 41.9431252] + "loc": [-85.633868, 41.943125] }, "n1819858505": { "id": "n1819858505", - "loc": [-85.6346782, 41.9429092] + "loc": [-85.634678, 41.942909] }, "n1819858507": { "id": "n1819858507", - "loc": [-85.6339003, 41.9414534] + "loc": [-85.6339, 41.941453] }, "n1819858508": { "id": "n1819858508", - "loc": [-85.6345709, 41.9427742] + "loc": [-85.634571, 41.942774] }, "n1819858509": { "id": "n1819858509", - "loc": [-85.63419, 41.9417322] + "loc": [-85.63419, 41.941732] }, "n1819858511": { "id": "n1819858511", - "loc": [-85.6340666, 41.9415652] + "loc": [-85.634067, 41.941565] }, "n1819858512": { "id": "n1819858512", - "loc": [-85.6343295, 41.9423027] + "loc": [-85.63433, 41.942303] }, "n1819858514": { "id": "n1819858514", - "loc": [-85.6343241, 41.942207] + "loc": [-85.634324, 41.942207] }, "n1819858521": { "id": "n1819858521", @@ -2302,355 +2174,351 @@ }, "n1819858528": { "id": "n1819858528", - "loc": [-85.6343027, 41.9419716] + "loc": [-85.634303, 41.941972] }, "n185954683": { "id": "n185954683", - "loc": [-85.6335412, 41.940147] + "loc": [-85.633541, 41.940147] }, "n185954685": { "id": "n185954685", - "loc": [-85.6334296, 41.9403023] + "loc": [-85.633433, 41.940252] }, "n185954687": { "id": "n185954687", - "loc": [-85.6333988, 41.9404704] + "loc": [-85.633402, 41.940411] }, "n185954689": { "id": "n185954689", - "loc": [-85.6335511, 41.9410225] + "loc": [-85.633551, 41.941023] }, "n185954690": { "id": "n185954690", - "loc": [-85.6336721, 41.9411669] + "loc": [-85.633719, 41.941186] }, "n1820938802": { "id": "n1820938802", - "loc": [-85.6330671, 41.941845] - }, - "n1821006702": { - "id": "n1821006702", - "loc": [-85.6344047, 41.9395496] + "loc": [-85.633067, 41.941845] }, "n2130304133": { "id": "n2130304133", - "loc": [-85.6349025, 41.9427659] + "loc": [-85.634902, 41.942766] }, "n2130304136": { "id": "n2130304136", - "loc": [-85.6346027, 41.9422017] + "loc": [-85.634603, 41.942202] }, "n2130304138": { "id": "n2130304138", - "loc": [-85.6348577, 41.9421517] + "loc": [-85.634858, 41.942152] }, "n2130304140": { "id": "n2130304140", - "loc": [-85.6348419, 41.9422694] + "loc": [-85.634842, 41.942269] }, "n2130304142": { "id": "n2130304142", - "loc": [-85.6349071, 41.9423135] + "loc": [-85.634907, 41.942313] }, "n2130304144": { "id": "n2130304144", - "loc": [-85.6350495, 41.9423312] + "loc": [-85.635049, 41.942331] }, "n2130304146": { "id": "n2130304146", - "loc": [-85.6351009, 41.9422812] + "loc": [-85.635101, 41.942281] }, "n2130304147": { "id": "n2130304147", - "loc": [-85.6351227, 41.9421532] + "loc": [-85.635123, 41.942153] }, "n2130304148": { "id": "n2130304148", - "loc": [-85.635526, 41.9421547] + "loc": [-85.635526, 41.942155] }, "n2130304149": { "id": "n2130304149", - "loc": [-85.6355339, 41.9425768] + "loc": [-85.635534, 41.942577] }, "n2130304150": { "id": "n2130304150", - "loc": [-85.6351582, 41.9426562] + "loc": [-85.635158, 41.942656] }, "n2130304151": { "id": "n2130304151", - "loc": [-85.6351207, 41.9427032] + "loc": [-85.635121, 41.942703] }, "n2138493807": { "id": "n2138493807", - "loc": [-85.6350923, 41.9415216] + "loc": [-85.635092, 41.941522] }, "n2138493808": { "id": "n2138493808", - "loc": [-85.6353603, 41.9411061] + "loc": [-85.63536, 41.941106] }, "n2138493809": { "id": "n2138493809", - "loc": [-85.6354421, 41.9410942] + "loc": [-85.635442, 41.941094] }, "n2138493810": { "id": "n2138493810", - "loc": [-85.6355079, 41.9411044] + "loc": [-85.635508, 41.941104] }, "n2138493811": { "id": "n2138493811", - "loc": [-85.6355693, 41.9411246] + "loc": [-85.635569, 41.941125] }, "n2138493812": { "id": "n2138493812", - "loc": [-85.6355829, 41.9411061] + "loc": [-85.635583, 41.941106] }, "n2138493813": { "id": "n2138493813", - "loc": [-85.6355624, 41.9409777] + "loc": [-85.635562, 41.940978] }, "n2138493814": { "id": "n2138493814", - "loc": [-85.6355011, 41.9409152] + "loc": [-85.635501, 41.940915] }, "n2138493815": { "id": "n2138493815", - "loc": [-85.635383, 41.9409219] + "loc": [-85.635383, 41.940922] }, "n2138493816": { "id": "n2138493816", - "loc": [-85.635299, 41.9409658] + "loc": [-85.635299, 41.940966] }, "n2138493817": { "id": "n2138493817", - "loc": [-85.6351695, 41.941204] + "loc": [-85.63517, 41.941204] }, "n2138493818": { "id": "n2138493818", - "loc": [-85.6348879, 41.9415166] + "loc": [-85.634888, 41.941517] }, "n2138493819": { "id": "n2138493819", - "loc": [-85.634897, 41.9415757] + "loc": [-85.634897, 41.941576] }, "n2138493820": { "id": "n2138493820", - "loc": [-85.6349606, 41.9416399] + "loc": [-85.634961, 41.94164] }, "n2138493821": { "id": "n2138493821", - "loc": [-85.6350219, 41.9416669] + "loc": [-85.635022, 41.941667] }, "n2138493822": { "id": "n2138493822", - "loc": [-85.6351241, 41.9416314] + "loc": [-85.635124, 41.941631] }, "n2138493823": { "id": "n2138493823", - "loc": [-85.6350855, 41.9415622] + "loc": [-85.635086, 41.941562] }, "n2138493824": { "id": "n2138493824", - "loc": [-85.6350401, 41.9413603] + "loc": [-85.63504, 41.94136] }, "n2138493825": { "id": "n2138493825", - "loc": [-85.6352206, 41.9410765] + "loc": [-85.635221, 41.941077] }, "n2138493826": { "id": "n2138493826", - "loc": [-85.6343865, 41.9415594] + "loc": [-85.634387, 41.941559] }, "n2138493827": { "id": "n2138493827", - "loc": [-85.6343506, 41.9415873] + "loc": [-85.634351, 41.941587] }, "n2138493828": { "id": "n2138493828", - "loc": [-85.6344158, 41.9417557] + "loc": [-85.634416, 41.941756] }, "n2138493829": { "id": "n2138493829", - "loc": [-85.6344614, 41.9417968] + "loc": [-85.634461, 41.941797] }, "n2138493830": { "id": "n2138493830", - "loc": [-85.6345005, 41.9418186] + "loc": [-85.634501, 41.941819] }, "n2138493831": { "id": "n2138493831", - "loc": [-85.6345965, 41.9418162] + "loc": [-85.634597, 41.941816] }, "n2138493832": { "id": "n2138493832", - "loc": [-85.6347317, 41.9417242] + "loc": [-85.634732, 41.941724] }, "n2138493833": { "id": "n2138493833", - "loc": [-85.6346722, 41.941775] + "loc": [-85.634672, 41.941775] }, "n2139858909": { "id": "n2139858909", - "loc": [-85.633403, 41.9391006] + "loc": [-85.633403, 41.939101] }, "n2139858910": { "id": "n2139858910", - "loc": [-85.6332973, 41.9393967] + "loc": [-85.633297, 41.939397] }, "n2139858911": { "id": "n2139858911", - "loc": [-85.633205, 41.9396742] + "loc": [-85.633205, 41.939674] }, "n2139858912": { "id": "n2139858912", - "loc": [-85.6332203, 41.9397772] + "loc": [-85.63322, 41.939777] }, "n2139858913": { "id": "n2139858913", - "loc": [-85.6333453, 41.939936] + "loc": [-85.633345, 41.939936] }, "n2139858914": { "id": "n2139858914", - "loc": [-85.6333761, 41.9400018] + "loc": [-85.633376, 41.940002] }, "n2139858915": { "id": "n2139858915", - "loc": [-85.63328, 41.9402249] + "loc": [-85.63328, 41.940225] }, "n2139858916": { "id": "n2139858916", - "loc": [-85.6332357, 41.9403523] + "loc": [-85.633236, 41.940352] }, "n2139858917": { "id": "n2139858917", - "loc": [-85.6332838, 41.9405831] + "loc": [-85.633284, 41.940583] }, "n2139858918": { "id": "n2139858918", - "loc": [-85.6333643, 41.9408744] + "loc": [-85.633364, 41.940874] }, "n2139858919": { "id": "n2139858919", - "loc": [-85.6334394, 41.9410519] + "loc": [-85.633439, 41.941052] }, "n2139858920": { "id": "n2139858920", - "loc": [-85.6335815, 41.9411717] + "loc": [-85.633582, 41.941172] }, "n2139858921": { "id": "n2139858921", - "loc": [-85.6337478, 41.9412734] + "loc": [-85.633748, 41.941273] }, "n2139858922": { "id": "n2139858922", - "loc": [-85.6343174, 41.9415268] + "loc": [-85.634317, 41.941527] }, "n2139858923": { "id": "n2139858923", - "loc": [-85.6343886, 41.9417397] + "loc": [-85.634389, 41.94174] }, "n2139858924": { "id": "n2139858924", - "loc": [-85.6344407, 41.9418015] + "loc": [-85.634441, 41.941801] }, "n2139858925": { "id": "n2139858925", - "loc": [-85.6345139, 41.9418366] + "loc": [-85.634514, 41.941837] }, "n2139858926": { "id": "n2139858926", - "loc": [-85.6344846, 41.942005] + "loc": [-85.634485, 41.942005] }, "n2139858927": { "id": "n2139858927", - "loc": [-85.6345775, 41.9422218] + "loc": [-85.634578, 41.942222] }, "n2139858928": { "id": "n2139858928", - "loc": [-85.6348771, 41.9427814] + "loc": [-85.634877, 41.942781] }, "n2139858929": { "id": "n2139858929", - "loc": [-85.6349487, 41.9427995] + "loc": [-85.634949, 41.942799] }, "n2139858930": { "id": "n2139858930", - "loc": [-85.6350415, 41.9427874] + "loc": [-85.635041, 41.942787] }, "n2139858931": { "id": "n2139858931", - "loc": [-85.6351246, 41.9428589] + "loc": [-85.635125, 41.942859] }, "n2139858978": { "id": "n2139858978", - "loc": [-85.6349658, 41.9431481] + "loc": [-85.634966, 41.943148] }, "n2139858979": { "id": "n2139858979", - "loc": [-85.6350081, 41.9431287] + "loc": [-85.635008, 41.943129] }, "n2139858980": { "id": "n2139858980", - "loc": [-85.6349967, 41.9430997] + "loc": [-85.634997, 41.9431] }, "n2139858981": { "id": "n2139858981", - "loc": [-85.6352158, 41.9430352] + "loc": [-85.635216, 41.943035] }, "n2139858982": { "id": "n2139858982", - "loc": [-85.6348174, 41.94267] + "loc": [-85.634817, 41.94267] }, "n2139858983": { "id": "n2139858983", - "loc": [-85.6346142, 41.9425989] + "loc": [-85.634614, 41.942599] }, "n2139858984": { "id": "n2139858984", - "loc": [-85.6344938, 41.9423809] + "loc": [-85.634494, 41.942381] }, "n2139858985": { "id": "n2139858985", - "loc": [-85.6344856, 41.9422997] + "loc": [-85.634486, 41.9423] }, "n2139870380": { "id": "n2139870380", - "loc": [-85.6346707, 41.9417955] + "loc": [-85.634671, 41.941795] }, "n2139870381": { "id": "n2139870381", - "loc": [-85.6345949, 41.9418311] + "loc": [-85.634595, 41.941831] }, "n2139870382": { "id": "n2139870382", - "loc": [-85.6343322, 41.9418659] + "loc": [-85.634332, 41.941866] }, "n2139870383": { "id": "n2139870383", - "loc": [-85.6342072, 41.941885] + "loc": [-85.634207, 41.941885] }, "n2139870384": { "id": "n2139870384", - "loc": [-85.6341325, 41.9418919] + "loc": [-85.634133, 41.941892] }, "n2139870385": { "id": "n2139870385", - "loc": [-85.6341314, 41.9422028] + "loc": [-85.634131, 41.942203] }, "n2139870386": { "id": "n2139870386", - "loc": [-85.6340472, 41.9423271] + "loc": [-85.634047, 41.942327] }, "n2139870387": { "id": "n2139870387", - "loc": [-85.6342185, 41.9427933] + "loc": [-85.634219, 41.942793] }, "n2139870388": { "id": "n2139870388", - "loc": [-85.6340605, 41.9423924] + "loc": [-85.634061, 41.942392] }, "n2139870389": { "id": "n2139870389", - "loc": [-85.6339889, 41.9424069] + "loc": [-85.633989, 41.942407] }, "n2139870390": { "id": "n2139870390", @@ -2658,379 +2526,363 @@ }, "n2139870391": { "id": "n2139870391", - "loc": [-85.63361, 41.9424235] + "loc": [-85.63361, 41.942423] }, "n2139870392": { "id": "n2139870392", - "loc": [-85.6337137, 41.9426819] + "loc": [-85.633714, 41.942682] }, "n2139870393": { "id": "n2139870393", - "loc": [-85.6336977, 41.9428632] + "loc": [-85.633698, 41.942863] }, "n2139870394": { "id": "n2139870394", - "loc": [-85.6338823, 41.9428647] + "loc": [-85.633882, 41.942865] }, "n2139870395": { "id": "n2139870395", - "loc": [-85.6339412, 41.9430069] + "loc": [-85.633941, 41.943007] }, "n2139870396": { "id": "n2139870396", - "loc": [-85.6338873, 41.9430353] + "loc": [-85.633887, 41.943035] }, "n2139870397": { "id": "n2139870397", - "loc": [-85.6337676, 41.942815] + "loc": [-85.633768, 41.942815] }, "n2139870398": { "id": "n2139870398", - "loc": [-85.6336822, 41.9423505] + "loc": [-85.633682, 41.942351] }, "n2139870399": { "id": "n2139870399", - "loc": [-85.634037, 41.9422725] + "loc": [-85.634037, 41.942273] }, "n2139870400": { "id": "n2139870400", - "loc": [-85.6340294, 41.9422518] + "loc": [-85.634029, 41.942252] }, "n2139870401": { "id": "n2139870401", - "loc": [-85.6336726, 41.9423312] + "loc": [-85.633673, 41.942331] }, "n2139870402": { "id": "n2139870402", - "loc": [-85.6342188, 41.9425715] + "loc": [-85.634219, 41.942571] }, "n2139870403": { "id": "n2139870403", - "loc": [-85.6342524, 41.942565] + "loc": [-85.634252, 41.942565] }, "n2139870404": { "id": "n2139870404", - "loc": [-85.6341438, 41.942299] + "loc": [-85.634144, 41.942299] }, "n2139870405": { "id": "n2139870405", - "loc": [-85.6341149, 41.9423061] + "loc": [-85.634115, 41.942306] }, "n2139870407": { "id": "n2139870407", - "loc": [-85.6340846, 41.9431458] + "loc": [-85.634091, 41.943141] }, "n2139870408": { "id": "n2139870408", - "loc": [-85.6339436, 41.9429032] + "loc": [-85.633944, 41.942903] }, "n2139870409": { "id": "n2139870409", - "loc": [-85.6343143, 41.9428207] + "loc": [-85.634311, 41.942821] }, "n2139870410": { "id": "n2139870410", - "loc": [-85.6343507, 41.94277] + "loc": [-85.634351, 41.94277] }, "n2139870411": { "id": "n2139870411", - "loc": [-85.6341527, 41.942254] + "loc": [-85.634153, 41.942254] }, "n2139870412": { "id": "n2139870412", - "loc": [-85.6340925, 41.9422199] + "loc": [-85.634092, 41.94222] }, "n2139870413": { "id": "n2139870413", - "loc": [-85.6335435, 41.9423433] + "loc": [-85.633571, 41.942336] }, "n2139870414": { "id": "n2139870414", - "loc": [-85.6335023, 41.9423975] + "loc": [-85.633513, 41.942387] }, "n2139870415": { "id": "n2139870415", - "loc": [-85.6335086, 41.9424552] + "loc": [-85.633509, 41.942455] }, "n2139870416": { "id": "n2139870416", - "loc": [-85.6336296, 41.942665] + "loc": [-85.63363, 41.942665] }, "n2139870417": { "id": "n2139870417", - "loc": [-85.6341396, 41.9428596] + "loc": [-85.63414, 41.94286] }, "n2139870418": { "id": "n2139870418", - "loc": [-85.6339701, 41.9424487] + "loc": [-85.63397, 41.942449] }, "n2139870419": { "id": "n2139870419", - "loc": [-85.6335514, 41.9425294] + "loc": [-85.633551, 41.942529] }, "n2139870420": { "id": "n2139870420", - "loc": [-85.6337406, 41.9424929] + "loc": [-85.633741, 41.942493] }, "n2139870421": { "id": "n2139870421", - "loc": [-85.6338939, 41.9428687] + "loc": [-85.633894, 41.942869] }, "n2139870422": { "id": "n2139870422", - "loc": [-85.6341323, 41.9419538] + "loc": [-85.634132, 41.941954] }, "n2139870423": { "id": "n2139870423", - "loc": [-85.6340321, 41.9420376] + "loc": [-85.634032, 41.942038] }, "n2139870424": { "id": "n2139870424", - "loc": [-85.6337648, 41.942238] + "loc": [-85.633765, 41.942238] }, "n2139870425": { "id": "n2139870425", - "loc": [-85.6337604, 41.9422685] + "loc": [-85.63376, 41.942268] }, "n2139870426": { "id": "n2139870426", - "loc": [-85.6337682, 41.9422928] + "loc": [-85.633768, 41.942293] }, "n2139870427": { "id": "n2139870427", - "loc": [-85.6338086, 41.9423862] + "loc": [-85.633808, 41.942386] }, "n2139870428": { "id": "n2139870428", - "loc": [-85.6349465, 41.9416631] + "loc": [-85.634946, 41.941663] }, "n2139870429": { "id": "n2139870429", - "loc": [-85.6351097, 41.9416973] + "loc": [-85.63511, 41.941697] }, "n2139870430": { "id": "n2139870430", - "loc": [-85.6353371, 41.9416798] + "loc": [-85.635337, 41.94168] }, "n2139870431": { "id": "n2139870431", - "loc": [-85.6349627, 41.9422506] + "loc": [-85.634963, 41.942251] }, "n2139870432": { "id": "n2139870432", - "loc": [-85.634979, 41.9421815] + "loc": [-85.634979, 41.942181] }, "n2139870433": { "id": "n2139870433", - "loc": [-85.634885, 41.9421679] + "loc": [-85.634885, 41.942168] }, "n2139870434": { "id": "n2139870434", - "loc": [-85.6348689, 41.9422377] + "loc": [-85.634869, 41.942238] }, "n2139870435": { "id": "n2139870435", - "loc": [-85.6349779, 41.9419486] + "loc": [-85.634978, 41.941949] }, "n2139870436": { "id": "n2139870436", - "loc": [-85.6349505, 41.9418933] + "loc": [-85.634951, 41.941893] }, "n2139870437": { "id": "n2139870437", - "loc": [-85.6347327, 41.9419505] + "loc": [-85.634733, 41.94195] }, "n2139870438": { "id": "n2139870438", - "loc": [-85.6347614, 41.9420087] + "loc": [-85.634761, 41.942009] }, "n2139870439": { "id": "n2139870439", - "loc": [-85.6351889, 41.9416912] + "loc": [-85.635189, 41.941691] }, "n2139870440": { "id": "n2139870440", - "loc": [-85.6351092, 41.9418426] + "loc": [-85.635089, 41.941896] }, "n2139870441": { "id": "n2139870441", - "loc": [-85.635086, 41.9419659] + "loc": [-85.635077, 41.941964] }, "n2139870442": { "id": "n2139870442", - "loc": [-85.6350584, 41.9421466] + "loc": [-85.635058, 41.942147] }, "n2139870443": { "id": "n2139870443", - "loc": [-85.6350993, 41.9421606] + "loc": [-85.635099, 41.942161] }, "n2139870444": { "id": "n2139870444", - "loc": [-85.6350993, 41.9422132] + "loc": [-85.635099, 41.942213] }, "n2139870445": { "id": "n2139870445", - "loc": [-85.6350794, 41.9422855] + "loc": [-85.635079, 41.942285] }, "n2139870446": { "id": "n2139870446", - "loc": [-85.6350474, 41.9423159] + "loc": [-85.635047, 41.942316] }, "n2139870447": { "id": "n2139870447", - "loc": [-85.6349251, 41.9422998] + "loc": [-85.634925, 41.9423] }, "n2139870448": { "id": "n2139870448", - "loc": [-85.634911, 41.9422755] + "loc": [-85.634911, 41.942276] }, "n2139870449": { "id": "n2139870449", - "loc": [-85.6349157, 41.9422553] + "loc": [-85.634916, 41.942255] }, "n2139870450": { "id": "n2139870450", - "loc": [-85.6347213, 41.9419324] + "loc": [-85.634721, 41.941932] }, "n2139870451": { "id": "n2139870451", - "loc": [-85.6349535, 41.9418771] + "loc": [-85.634953, 41.941877] }, "n2139870452": { "id": "n2139870452", - "loc": [-85.6350135, 41.9419421] + "loc": [-85.635013, 41.941942] }, "n2139870453": { "id": "n2139870453", - "loc": [-85.6348584, 41.9418997] + "loc": [-85.634858, 41.9419] }, "n2139870454": { "id": "n2139870454", - "loc": [-85.6348113, 41.9418101] + "loc": [-85.634811, 41.94181] }, "n2139870455": { "id": "n2139870455", - "loc": [-85.6347306, 41.9417449] + "loc": [-85.634731, 41.941745] }, "n2139870456": { "id": "n2139870456", - "loc": [-85.6349123, 41.941776] + "loc": [-85.634933, 41.94176] }, "n2139870457": { "id": "n2139870457", - "loc": [-85.6349423, 41.9421448] + "loc": [-85.634942, 41.942145] }, "n2139870458": { "id": "n2139870458", - "loc": [-85.6349436, 41.9420652] + "loc": [-85.634944, 41.942065] }, "n2139870459": { "id": "n2139870459", - "loc": [-85.6349136, 41.9419963] + "loc": [-85.634914, 41.941996] }, "n2139870460": { "id": "n2139870460", - "loc": [-85.6349814, 41.9419789] + "loc": [-85.634981, 41.941979] }, "n2139989328": { "id": "n2139989328", - "loc": [-85.6334188, 41.9421725] + "loc": [-85.633419, 41.942172] }, "n2139989330": { "id": "n2139989330", - "loc": [-85.6335087, 41.9416308] + "loc": [-85.633509, 41.941631] }, "n2139989335": { "id": "n2139989335", - "loc": [-85.6336856, 41.9429371] + "loc": [-85.633686, 41.942937] }, "n2139989337": { "id": "n2139989337", - "loc": [-85.6333713, 41.9427217] + "loc": [-85.633371, 41.942722] }, "n2139989339": { "id": "n2139989339", - "loc": [-85.6332912, 41.9425383] + "loc": [-85.633291, 41.942538] }, "n2139989341": { "id": "n2139989341", - "loc": [-85.6339369, 41.9409198] - }, - "n2139989344": { - "id": "n2139989344", - "loc": [-85.634097, 41.9409469] - }, - "n2139989346": { - "id": "n2139989346", - "loc": [-85.634137, 41.9412852] - }, - "n2139989348": { - "id": "n2139989348", - "loc": [-85.6344536, 41.9414151] - }, - "n2139989350": { - "id": "n2139989350", - "loc": [-85.6350794, 41.9412392] + "loc": [-85.633902, 41.940941] }, "n2139989351": { "id": "n2139989351", - "loc": [-85.6352541, 41.9409387] + "loc": [-85.635254, 41.940939] }, "n2139989353": { "id": "n2139989353", - "loc": [-85.6357198, 41.9408007] + "loc": [-85.63572, 41.940801] }, "n2139989355": { "id": "n2139989355", - "loc": [-85.6357235, 41.9427088] + "loc": [-85.635723, 41.942709] }, "n2139989357": { "id": "n2139989357", - "loc": [-85.6337119, 41.9421256] + "loc": [-85.633712, 41.942126] }, "n2139989359": { "id": "n2139989359", - "loc": [-85.6336913, 41.9420655] + "loc": [-85.633691, 41.942065] }, "n2139989360": { "id": "n2139989360", - "loc": [-85.633582, 41.9420867] + "loc": [-85.633582, 41.942087] }, "n2139989362": { "id": "n2139989362", - "loc": [-85.6336058, 41.9421491] + "loc": [-85.633606, 41.942149] }, "n2139989364": { "id": "n2139989364", - "loc": [-85.6339685, 41.9410995] + "loc": [-85.633968, 41.941099] }, "n2139989366": { "id": "n2139989366", - "loc": [-85.6339067, 41.9411383] + "loc": [-85.633907, 41.941138] }, "n2139989368": { "id": "n2139989368", - "loc": [-85.6339685, 41.9411972] + "loc": [-85.633968, 41.941197] }, "n2139989370": { "id": "n2139989370", - "loc": [-85.6340398, 41.9411619] + "loc": [-85.63404, 41.941162] }, "n2139870379": { "id": "n2139870379", - "loc": [-85.6348391, 41.9416651] + "loc": [-85.634839, 41.941665] }, "n2140006363": { "id": "n2140006363", - "loc": [-85.6353144, 41.9430345] + "loc": [-85.635314, 41.943035] }, "n2140006364": { "id": "n2140006364", - "loc": [-85.6349191, 41.9431422] + "loc": [-85.634919, 41.943142] }, "n2140018997": { "id": "n2140018997", - "loc": [-85.63645945147184, 41.942986488012565], + "loc": [-85.636459, 41.942986], "tags": { "amenity": "townhall", "name": "Three Rivers City Hall" @@ -3038,92 +2890,84 @@ }, "n2140018998": { "id": "n2140018998", - "loc": [-85.6370319, 41.9427919] + "loc": [-85.637032, 41.942792] }, "n2140018999": { "id": "n2140018999", - "loc": [-85.6360687, 41.9427808] + "loc": [-85.636069, 41.942781] }, "n2199856288": { "id": "n2199856288", - "loc": [-85.6344968, 41.9407307] + "loc": [-85.634497, 41.940731] }, "n2199856289": { "id": "n2199856289", - "loc": [-85.634492, 41.9406036] + "loc": [-85.634492, 41.940604] }, "n2199856290": { "id": "n2199856290", - "loc": [-85.634891, 41.9406001] + "loc": [-85.634891, 41.9406] }, "n2199856291": { "id": "n2199856291", - "loc": [-85.6348894, 41.9405288] + "loc": [-85.634889, 41.940529] }, "n2199856292": { "id": "n2199856292", - "loc": [-85.6349166, 41.94053] + "loc": [-85.634917, 41.94053] }, "n2199856293": { "id": "n2199856293", - "loc": [-85.6349166, 41.9404956] + "loc": [-85.634917, 41.940496] }, "n2199856294": { "id": "n2199856294", - "loc": [-85.6350219, 41.9404956] + "loc": [-85.635022, 41.940496] }, "n2199856295": { "id": "n2199856295", - "loc": [-85.6350251, 41.94053] + "loc": [-85.635025, 41.94053] }, "n2199856296": { "id": "n2199856296", - "loc": [-85.6350538, 41.9405288] + "loc": [-85.635054, 41.940529] }, "n2199856297": { "id": "n2199856297", - "loc": [-85.6350602, 41.94079] + "loc": [-85.63506, 41.94079] }, "n2199856298": { "id": "n2199856298", - "loc": [-85.6351703, 41.9407912] + "loc": [-85.63517, 41.940791] }, "n2199856299": { "id": "n2199856299", - "loc": [-85.6351688, 41.9409171] + "loc": [-85.635169, 41.940917] }, "n2199856300": { "id": "n2199856300", - "loc": [-85.6347889, 41.9409135] + "loc": [-85.634789, 41.940914] }, "n2199856301": { "id": "n2199856301", - "loc": [-85.6347921, 41.94079] + "loc": [-85.634792, 41.94079] }, "n2199856302": { "id": "n2199856302", - "loc": [-85.6348942, 41.9407888] + "loc": [-85.634894, 41.940789] }, "n2199856303": { "id": "n2199856303", - "loc": [-85.6348926, 41.9407283] + "loc": [-85.634893, 41.940728] }, "n185951869": { "id": "n185951869", - "loc": [-85.6387639, 41.957288] + "loc": [-85.638764, 41.957288] }, "n185958643": { "id": "n185958643", "loc": [-85.636746, 41.929221] }, - "n185958645": { - "id": "n185958645", - "loc": [-85.636791, 41.929363] - }, - "n185958647": { - "id": "n185958647", - "loc": [-85.6375975, 41.9314987] - }, "n185958649": { "id": "n185958649", "loc": [-85.637669, 41.931667] @@ -3136,37 +2980,17 @@ "id": "n185958653", "loc": [-85.637724, 41.932187] }, - "n185958656": { - "id": "n185958656", - "loc": [-85.637732, 41.932761] - }, - "n185958658": { - "id": "n185958658", - "loc": [-85.637688, 41.93398] - }, - "n185958660": { - "id": "n185958660", - "loc": [-85.637685, 41.934223] - }, - "n185958662": { - "id": "n185958662", - "loc": [-85.6376468, 41.9350232] - }, "n185958664": { "id": "n185958664", "loc": [-85.637564, 41.937028] }, - "n185958666": { - "id": "n185958666", - "loc": [-85.637458, 41.938197] - }, "n185958668": { "id": "n185958668", "loc": [-85.637424, 41.938692] }, "n185964972": { "id": "n185964972", - "loc": [-85.6341901, 41.9432732] + "loc": [-85.63419, 41.943273] }, "n185971361": { "id": "n185971361", @@ -3176,10 +3000,6 @@ "id": "n185971364", "loc": [-85.635732, 41.9384] }, - "n185971366": { - "id": "n185971366", - "loc": [-85.635736, 41.938697] - }, "n185972775": { "id": "n185972775", "loc": [-85.635638, 42.070357] @@ -3326,27 +3146,23 @@ }, "n185972845": { "id": "n185972845", - "loc": [-85.6325369, 41.9764959] + "loc": [-85.632537, 41.976496] }, "n185972847": { "id": "n185972847", - "loc": [-85.6327549, 41.9750005] + "loc": [-85.632755, 41.975001] }, "n185972849": { "id": "n185972849", - "loc": [-85.6329374, 41.9742527] + "loc": [-85.632937, 41.974253] }, "n185972851": { "id": "n185972851", - "loc": [-85.6331387, 41.9736039] - }, - "n185972862": { - "id": "n185972862", - "loc": [-85.6383589, 41.9585023] + "loc": [-85.633139, 41.973604] }, "n185972868": { "id": "n185972868", - "loc": [-85.6393633, 41.9551716] + "loc": [-85.639363, 41.955172] }, "n185972878": { "id": "n185972878", @@ -3354,11 +3170,11 @@ }, "n185972882": { "id": "n185972882", - "loc": [-85.6389179, 41.9516944] + "loc": [-85.638918, 41.951694] }, "n185972885": { "id": "n185972885", - "loc": [-85.6387444, 41.9512105] + "loc": [-85.638744, 41.951211] }, "n185972891": { "id": "n185972891", @@ -3374,11 +3190,11 @@ }, "n185972899": { "id": "n185972899", - "loc": [-85.635281, 41.9450252] + "loc": [-85.635281, 41.945025] }, "n185972905": { "id": "n185972905", - "loc": [-85.6324428, 41.9425743] + "loc": [-85.632443, 41.942574] }, "n185985217": { "id": "n185985217", @@ -3434,316 +3250,309 @@ }, "n185990434": { "id": "n185990434", - "loc": [-85.6329028, 41.9984292], + "loc": [-85.632903, 41.998429], "tags": { "railway": "level_crossing" } }, "n1475284023": { "id": "n1475284023", - "loc": [-85.6336163, 41.9435806], + "loc": [-85.633616, 41.943581], "tags": { "railway": "level_crossing" } }, "n1475293222": { "id": "n1475293222", - "loc": [-85.6394045, 41.953658], - "tags": { - "railway": "level_crossing" - } - }, - "n1475293226": { - "id": "n1475293226", - "loc": [-85.6364975, 41.9638663], + "loc": [-85.639404, 41.953658], "tags": { "railway": "level_crossing" } }, "n1475293234": { "id": "n1475293234", - "loc": [-85.6390449, 41.9565145] + "loc": [-85.639045, 41.956514] }, "n1475293240": { "id": "n1475293240", - "loc": [-85.636943, 41.9473114] + "loc": [-85.636943, 41.947311] }, "n1475293252": { "id": "n1475293252", - "loc": [-85.6392115, 41.9559003] + "loc": [-85.639212, 41.9559] }, "n1475293254": { "id": "n1475293254", - "loc": [-85.6348931, 41.9685127], + "loc": [-85.634893, 41.968513], "tags": { "railway": "level_crossing" } }, "n1475293260": { "id": "n1475293260", - "loc": [-85.6375999, 41.9485401] + "loc": [-85.6376, 41.94854] }, "n1475293261": { "id": "n1475293261", - "loc": [-85.6391256, 41.9523817], + "loc": [-85.639126, 41.952382], "tags": { "railway": "level_crossing" } }, "n1475293264": { "id": "n1475293264", - "loc": [-85.6394155, 41.9546493], + "loc": [-85.639415, 41.954649], "tags": { "railway": "level_crossing" } }, "n1819805614": { "id": "n1819805614", - "loc": [-85.6345652, 41.9363097] + "loc": [-85.634565, 41.93631] }, "n1819805618": { "id": "n1819805618", - "loc": [-85.6295334, 41.9426862] + "loc": [-85.629533, 41.942686] }, "n1819805622": { "id": "n1819805622", - "loc": [-85.6308208, 41.9430773] + "loc": [-85.630821, 41.943077] }, "n1819805626": { "id": "n1819805626", - "loc": [-85.6274734, 41.9406592] + "loc": [-85.627473, 41.940659] }, "n1819805629": { "id": "n1819805629", - "loc": [-85.6296943, 41.9430533] + "loc": [-85.629694, 41.943053] }, "n1819805632": { "id": "n1819805632", - "loc": [-85.6340931, 41.9354477] + "loc": [-85.634093, 41.935448] }, "n1819805636": { "id": "n1819805636", - "loc": [-85.6304131, 41.9436598] + "loc": [-85.630413, 41.94366] }, "n1819805639": { "id": "n1819805639", - "loc": [-85.6304882, 41.9426623] + "loc": [-85.630488, 41.942662] }, "n1819805641": { "id": "n1819805641", - "loc": [-85.6336103, 41.9367487] + "loc": [-85.63361, 41.936749] }, "n1819805643": { "id": "n1819805643", - "loc": [-85.6300376, 41.9418084] + "loc": [-85.630038, 41.941808] }, "n1819805645": { "id": "n1819805645", - "loc": [-85.6365286, 41.9336679] + "loc": [-85.636529, 41.933668] }, "n1819805647": { "id": "n1819805647", - "loc": [-85.632016, 41.9429221] + "loc": [-85.632016, 41.942922] }, "n1819805666": { "id": "n1819805666", - "loc": [-85.6314753, 41.9442663] + "loc": [-85.631475, 41.944266] }, "n1819805669": { "id": "n1819805669", - "loc": [-85.6268619, 41.9402203] + "loc": [-85.626862, 41.94022] }, "n1819805673": { "id": "n1819805673", - "loc": [-85.6296728, 41.9412099] + "loc": [-85.629673, 41.94121] }, "n1819805676": { "id": "n1819805676", - "loc": [-85.6354557, 41.932766] + "loc": [-85.635456, 41.932766] }, "n1819805680": { "id": "n1819805680", - "loc": [-85.632752, 41.9431012] + "loc": [-85.632752, 41.943101] }, "n1819805683": { "id": "n1819805683", - "loc": [-85.631147, 41.9432014] + "loc": [-85.631147, 41.943201] }, "n1819805687": { "id": "n1819805687", - "loc": [-85.635284, 41.9343942] + "loc": [-85.635284, 41.934394] }, "n1819805690": { "id": "n1819805690", - "loc": [-85.6249736, 41.9405794] + "loc": [-85.624974, 41.940579] }, "n1819805694": { "id": "n1819805694", - "loc": [-85.6294153, 41.9417925] + "loc": [-85.629415, 41.941792] }, "n1819805698": { "id": "n1819805698", - "loc": [-85.6323486, 41.9426986] + "loc": [-85.632349, 41.942699] }, "n1819805702": { "id": "n1819805702", - "loc": [-85.6340287, 41.9373871] + "loc": [-85.634029, 41.937387] }, "n1819805707": { "id": "n1819805707", - "loc": [-85.6353698, 41.9316326] + "loc": [-85.63537, 41.931633] }, "n1819805711": { "id": "n1819805711", - "loc": [-85.6284176, 41.940356] + "loc": [-85.628418, 41.940356] }, "n1819805715": { "id": "n1819805715", - "loc": [-85.6291471, 41.9412897] + "loc": [-85.629147, 41.94129] }, "n1819805718": { "id": "n1819805718", - "loc": [-85.6311105, 41.943979] + "loc": [-85.631111, 41.943979] }, "n1819805722": { "id": "n1819805722", - "loc": [-85.6320868, 41.9400128] + "loc": [-85.632087, 41.940013] }, "n1819805724": { "id": "n1819805724", - "loc": [-85.635166, 41.9324627] + "loc": [-85.635166, 41.932463] }, "n1819805727": { "id": "n1819805727", - "loc": [-85.6344686, 41.9350567] + "loc": [-85.634469, 41.935057] }, "n1819805728": { "id": "n1819805728", - "loc": [-85.6357132, 41.9332369] + "loc": [-85.635713, 41.933237] }, "n1819805731": { "id": "n1819805731", - "loc": [-85.629984, 41.9434444] + "loc": [-85.629984, 41.943444] }, "n1819805760": { "id": "n1819805760", - "loc": [-85.6330996, 41.9378784] + "loc": [-85.6331, 41.937878] }, "n1819805766": { "id": "n1819805766", - "loc": [-85.625274, 41.9411141] + "loc": [-85.625274, 41.941114] }, "n1819805770": { "id": "n1819805770", - "loc": [-85.6326321, 41.9412173] + "loc": [-85.632632, 41.941217] }, "n1819805774": { "id": "n1819805774", - "loc": [-85.6347047, 41.9312096] + "loc": [-85.634705, 41.93121] }, "n1819805777": { "id": "n1819805777", - "loc": [-85.6363569, 41.9339552] + "loc": [-85.636357, 41.933955] }, "n1819805780": { "id": "n1819805780", - "loc": [-85.6327392, 41.941926] + "loc": [-85.632739, 41.941926] }, "n1819805783": { "id": "n1819805783", - "loc": [-85.6357239, 41.9338435] + "loc": [-85.635724, 41.933844] }, "n1819805786": { "id": "n1819805786", - "loc": [-85.6356595, 41.9346576] + "loc": [-85.63566, 41.934658] }, "n1819805789": { "id": "n1819805789", - "loc": [-85.6316469, 41.9436598] + "loc": [-85.631647, 41.94366] }, "n1819805792": { "id": "n1819805792", - "loc": [-85.6350587, 41.9354557] + "loc": [-85.635059, 41.935456] }, "n1819805795": { "id": "n1819805795", - "loc": [-85.6360028, 41.9322791] + "loc": [-85.636003, 41.932279] }, "n1819805798": { "id": "n1819805798", - "loc": [-85.63125, 41.9443062] + "loc": [-85.63125, 41.944306] }, "n1819805802": { "id": "n1819805802", - "loc": [-85.6263362, 41.9408109] + "loc": [-85.626336, 41.940811] }, "n1819805805": { "id": "n1819805805", - "loc": [-85.6315075, 41.9438753] + "loc": [-85.631507, 41.943875] }, "n1819805808": { "id": "n1819805808", - "loc": [-85.6340008, 41.9316051] + "loc": [-85.634001, 41.931605] }, "n1819805810": { "id": "n1819805810", - "loc": [-85.6345545, 41.9320557] + "loc": [-85.634554, 41.932056] }, "n1819805812": { "id": "n1819805812", - "loc": [-85.6250809, 41.9408587] + "loc": [-85.625081, 41.940859] }, "n1819805814": { "id": "n1819805814", - "loc": [-85.6257783, 41.9400926] + "loc": [-85.625778, 41.940093] }, "n1819805834": { "id": "n1819805834", - "loc": [-85.6326408, 41.9424363] + "loc": [-85.632641, 41.942436] }, "n1819805838": { "id": "n1819805838", - "loc": [-85.6365607, 41.9334365] + "loc": [-85.636561, 41.933436] }, "n1819805842": { "id": "n1819805842", - "loc": [-85.6288253, 41.9410343] + "loc": [-85.628825, 41.941034] }, "n1819805846": { "id": "n1819805846", - "loc": [-85.6279133, 41.9402921] + "loc": [-85.627913, 41.940292] }, "n1819805849": { "id": "n1819805849", - "loc": [-85.6289433, 41.9405156] + "loc": [-85.628943, 41.940516] }, "n1819805852": { "id": "n1819805852", - "loc": [-85.6313787, 41.9439152] + "loc": [-85.631379, 41.943915] }, "n1819805858": { "id": "n1819805858", - "loc": [-85.6300805, 41.9420398] + "loc": [-85.630081, 41.94204] }, "n1819805861": { "id": "n1819805861", - "loc": [-85.6321941, 41.9396297] + "loc": [-85.632194, 41.93963] }, "n1819805864": { "id": "n1819805864", - "loc": [-85.6329129, 41.9393903] + "loc": [-85.632913, 41.93939] }, "n1819805868": { "id": "n1819805868", - "loc": [-85.632001, 41.9434922] + "loc": [-85.632001, 41.943492] }, "n1819805870": { "id": "n1819805870", - "loc": [-85.6314903, 41.9431535] + "loc": [-85.63149, 41.943154] }, "n1819805873": { "id": "n1819805873", - "loc": [-85.6251667, 41.9401166] + "loc": [-85.625167, 41.940117] }, "n1819805876": { "id": "n1819805876", @@ -3751,611 +3560,195 @@ }, "n1819805878": { "id": "n1819805878", - "loc": [-85.6307886, 41.9437317] + "loc": [-85.630789, 41.943732] }, "n1819805880": { "id": "n1819805880", - "loc": [-85.6321727, 41.940348] + "loc": [-85.632173, 41.940348] }, "n1819805883": { "id": "n1819805883", - "loc": [-85.6265872, 41.940113] + "loc": [-85.626587, 41.940113] }, "n1819805885": { "id": "n1819805885", - "loc": [-85.6268404, 41.9406672] + "loc": [-85.62684, 41.940667] }, "n1819805887": { "id": "n1819805887", - "loc": [-85.6325267, 41.9389035] + "loc": [-85.632527, 41.938904] }, "n1819805889": { "id": "n1819805889", - "loc": [-85.6364964, 41.933189] + "loc": [-85.636496, 41.933189] }, "n1819805911": { "id": "n1819805911", - "loc": [-85.6248663, 41.9401804] + "loc": [-85.624866, 41.94018] }, "n1819805922": { "id": "n1819805922", - "loc": [-85.633267, 41.9387199] + "loc": [-85.633267, 41.93872] }, "n1819805925": { "id": "n1819805925", - "loc": [-85.6293402, 41.9408428] - }, - "n1819848849": { - "id": "n1819848849", - "loc": [-85.6464957, 41.9695178] - }, - "n1819848850": { - "id": "n1819848850", - "loc": [-85.6497642, 41.9611355] - }, - "n1819848851": { - "id": "n1819848851", - "loc": [-85.6480943, 41.9624818] - }, - "n1819848854": { - "id": "n1819848854", - "loc": [-85.6500362, 41.9657367] - }, - "n1819848855": { - "id": "n1819848855", - "loc": [-85.6493673, 41.9783496] - }, - "n1819848856": { - "id": "n1819848856", - "loc": [-85.6457409, 41.9548007] - }, - "n1819848857": { - "id": "n1819848857", - "loc": [-85.651313, 41.9760426] - }, - "n1819848858": { - "id": "n1819848858", - "loc": [-85.6495819, 41.9784772] - }, - "n1819848859": { - "id": "n1819848859", - "loc": [-85.6495105, 41.9833722] + "loc": [-85.62934, 41.940843] }, "n1819848860": { "id": "n1819848860", - "loc": [-85.6405053, 41.9492792] - }, - "n1819848863": { - "id": "n1819848863", - "loc": [-85.6502293, 41.9786826] + "loc": [-85.640505, 41.949279] }, "n1819848865": { "id": "n1819848865", - "loc": [-85.6406877, 41.9495106] - }, - "n1819848870": { - "id": "n1819848870", - "loc": [-85.6493136, 41.9704611] + "loc": [-85.640688, 41.949511] }, "n1819848871": { "id": "n1819848871", - "loc": [-85.6372249, 41.9441284] - }, - "n1819848873": { - "id": "n1819848873", - "loc": [-85.6512379, 41.9659441] - }, - "n1819848875": { - "id": "n1819848875", - "loc": [-85.6508087, 41.9650187] - }, - "n1819848877": { - "id": "n1819848877", - "loc": [-85.6487166, 41.9605352] - }, - "n1819848878": { - "id": "n1819848878", - "loc": [-85.6506478, 41.9760665] - }, - "n1819848879": { - "id": "n1819848879", - "loc": [-85.651431, 41.9758512] - }, - "n1819848886": { - "id": "n1819848886", - "loc": [-85.6477617, 41.9563945] - }, - "n1819848889": { - "id": "n1819848889", - "loc": [-85.6497895, 41.9832286] - }, - "n1819848892": { - "id": "n1819848892", - "loc": [-85.6504868, 41.9791931] - }, - "n1819848893": { - "id": "n1819848893", - "loc": [-85.6498002, 41.9615085] + "loc": [-85.637225, 41.944128] }, "n1819848894": { "id": "n1819848894", - "loc": [-85.6404302, 41.9502846] + "loc": [-85.64043, 41.950285] }, "n1819848901": { "id": "n1819848901", - "loc": [-85.6354412, 41.9439886] - }, - "n1819848903": { - "id": "n1819848903", - "loc": [-85.6472145, 41.9698528] + "loc": [-85.635441, 41.943989] }, "n1819848904": { "id": "n1819848904", - "loc": [-85.6401979, 41.9486233] - }, - "n1819848905": { - "id": "n1819848905", - "loc": [-85.6475042, 41.963503] + "loc": [-85.640198, 41.948623] }, "n1819848909": { "id": "n1819848909", - "loc": [-85.6343405, 41.94358] - }, - "n1819848914": { - "id": "n1819848914", - "loc": [-85.6503474, 41.9737773] + "loc": [-85.63434, 41.94358] }, "n1819848915": { "id": "n1819848915", - "loc": [-85.6389533, 41.9470992] - }, - "n1819848916": { - "id": "n1819848916", - "loc": [-85.6483625, 41.9577907] - }, - "n1819848917": { - "id": "n1819848917", - "loc": [-85.6484768, 41.9617419] + "loc": [-85.638953, 41.947099] }, "n1819848918": { "id": "n1819848918", - "loc": [-85.644078, 41.9545693] + "loc": [-85.644078, 41.954569] }, "n1819848919": { "id": "n1819848919", - "loc": [-85.6437169, 41.9543041] - }, - "n1819848920": { - "id": "n1819848920", - "loc": [-85.6478331, 41.9627949] - }, - "n1819848922": { - "id": "n1819848922", - "loc": [-85.6499144, 41.9785889] - }, - "n1819848924": { - "id": "n1819848924", - "loc": [-85.647633, 41.9720066] - }, - "n1819848926": { - "id": "n1819848926", - "loc": [-85.6487987, 41.978868] - }, - "n1819848927": { - "id": "n1819848927", - "loc": [-85.6495105, 41.9730355] - }, - "n1819848928": { - "id": "n1819848928", - "loc": [-85.648223, 41.9829654] - }, - "n1819848929": { - "id": "n1819848929", - "loc": [-85.6514846, 41.9659122] - }, - "n1819848931": { - "id": "n1819848931", - "loc": [-85.6498753, 41.9731871] + "loc": [-85.643717, 41.954304] }, "n1819848932": { "id": "n1819848932", - "loc": [-85.640906, 41.9508575] - }, - "n1819848933": { - "id": "n1819848933", - "loc": [-85.649775, 41.9799767] - }, - "n1819848934": { - "id": "n1819848934", - "loc": [-85.6507014, 41.9739927] - }, - "n1819848937": { - "id": "n1819848937", - "loc": [-85.6479763, 41.9840899] - }, - "n1819848938": { - "id": "n1819848938", - "loc": [-85.6501113, 41.9600884] + "loc": [-85.640906, 41.950857] }, "n1819848939": { "id": "n1819848939", - "loc": [-85.6389962, 41.9478253] + "loc": [-85.638996, 41.947825] }, "n1819848941": { "id": "n1819848941", - "loc": [-85.637469, 41.9445791] - }, - "n1819848942": { - "id": "n1819848942", - "loc": [-85.6494569, 41.9601682] + "loc": [-85.637469, 41.944579] }, "n1819848943": { "id": "n1819848943", - "loc": [-85.6368803, 41.9439351] - }, - "n1819848945": { - "id": "n1819848945", - "loc": [-85.6474398, 41.9724213] + "loc": [-85.63688, 41.943935] }, "n1819848946": { "id": "n1819848946", - "loc": [-85.6382629, 41.9463666] - }, - "n1819848948": { - "id": "n1819848948", - "loc": [-85.6489633, 41.9830771] - }, - "n1819848952": { - "id": "n1819848952", - "loc": [-85.6488882, 41.9600326] - }, - "n1819848953": { - "id": "n1819848953", - "loc": [-85.6488094, 41.9774324] - }, - "n1819848954": { - "id": "n1819848954", - "loc": [-85.6491135, 41.9600485] - }, - "n1819848955": { - "id": "n1819848955", - "loc": [-85.6501435, 41.9734583] - }, - "n1819848956": { - "id": "n1819848956", - "loc": [-85.6495534, 41.960958] - }, - "n1819848958": { - "id": "n1819848958", - "loc": [-85.6474683, 41.9561491] + "loc": [-85.638263, 41.946367] }, "n1819848959": { "id": "n1819848959", - "loc": [-85.6401083, 41.9485451] - }, - "n1819848960": { - "id": "n1819848960", - "loc": [-85.6481764, 41.9678686] - }, - "n1819848961": { - "id": "n1819848961", - "loc": [-85.6484017, 41.967382] - }, - "n1819848962": { - "id": "n1819848962", - "loc": [-85.6501328, 41.959897] + "loc": [-85.640108, 41.948545] }, "n1819848964": { "id": "n1819848964", - "loc": [-85.6403695, 41.9504586] + "loc": [-85.64037, 41.950459] }, "n1819848966": { "id": "n1819848966", - "loc": [-85.6398975, 41.9491499] + "loc": [-85.639898, 41.94915] }, "n1819848967": { "id": "n1819848967", - "loc": [-85.6412455, 41.9510187] - }, - "n1819848968": { - "id": "n1819848968", - "loc": [-85.6482622, 41.9619493] + "loc": [-85.641245, 41.951019] }, "n1819848969": { "id": "n1819848969", - "loc": [-85.6405841, 41.9501474] - }, - "n1819848970": { - "id": "n1819848970", - "loc": [-85.6478583, 41.9703394] - }, - "n1819848971": { - "id": "n1819848971", - "loc": [-85.6493388, 41.9832845] - }, - "n1819848972": { - "id": "n1819848972", - "loc": [-85.6485664, 41.9829415] - }, - "n1819848974": { - "id": "n1819848974", - "loc": [-85.6491457, 41.9779887] - }, - "n1819848975": { - "id": "n1819848975", - "loc": [-85.6468889, 41.9697033] + "loc": [-85.640584, 41.950147] }, "n1819848976": { "id": "n1819848976", - "loc": [-85.6452726, 41.9546072] + "loc": [-85.645273, 41.954607] }, "n1819848977": { "id": "n1819848977", - "loc": [-85.6448435, 41.9546072] - }, - "n1819848979": { - "id": "n1819848979", - "loc": [-85.6485342, 41.9763138] - }, - "n1819848980": { - "id": "n1819848980", - "loc": [-85.6495282, 41.9664087] - }, - "n1819848986": { - "id": "n1819848986", - "loc": [-85.6486307, 41.9603278] - }, - "n1819848987": { - "id": "n1819848987", - "loc": [-85.6492278, 41.9791871] - }, - "n1819848990": { - "id": "n1819848990", - "loc": [-85.6501934, 41.9800724] - }, - "n1819848992": { - "id": "n1819848992", - "loc": [-85.6482445, 41.9819685] - }, - "n1819848993": { - "id": "n1819848993", - "loc": [-85.6481871, 41.9704451] + "loc": [-85.644843, 41.954607] }, "n1819848994": { "id": "n1819848994", - "loc": [-85.6371364, 41.9457602] - }, - "n1819848996": { - "id": "n1819848996", - "loc": [-85.6500362, 41.9801023] + "loc": [-85.637136, 41.94576] }, "n1819849000": { "id": "n1819849000", - "loc": [-85.639007, 41.9485914] - }, - "n1819849001": { - "id": "n1819849001", - "loc": [-85.6488882, 41.9669253] - }, - "n1819849002": { - "id": "n1819849002", - "loc": [-85.6484698, 41.9565062] - }, - "n1819849004": { - "id": "n1819849004", - "loc": [-85.6510769, 41.9761064] - }, - "n1819849005": { - "id": "n1819849005", - "loc": [-85.6503581, 41.9799029] - }, - "n1819849006": { - "id": "n1819849006", - "loc": [-85.6489381, 41.9703893] - }, - "n1819849008": { - "id": "n1819849008", - "loc": [-85.6497457, 41.9833588] - }, - "n1819849011": { - "id": "n1819849011", - "loc": [-85.6497358, 41.9717593] - }, - "n1819849012": { - "id": "n1819849012", - "loc": [-85.6494676, 41.9796796] - }, - "n1819849019": { - "id": "n1819849019", - "loc": [-85.6486093, 41.9771034] - }, - "n1819849021": { - "id": "n1819849021", - "loc": [-85.6504546, 41.9796556] + "loc": [-85.639183, 41.948593] }, "n1819849022": { "id": "n1819849022", - "loc": [-85.6371294, 41.9454154] - }, - "n1819849023": { - "id": "n1819849023", - "loc": [-85.6503436, 41.9759249] - }, - "n1819849025": { - "id": "n1819849025", - "loc": [-85.6462382, 41.9693822] - }, - "n1819849026": { - "id": "n1819849026", - "loc": [-85.6497573, 41.983093] - }, - "n1819849028": { - "id": "n1819849028", - "loc": [-85.6497465, 41.9602799] + "loc": [-85.637129, 41.945415] }, "n1819849029": { "id": "n1819849029", - "loc": [-85.6374728, 41.9460698] - }, - "n1819849030": { - "id": "n1819849030", - "loc": [-85.6486592, 41.9566039] - }, - "n1819849031": { - "id": "n1819849031", - "loc": [-85.6515989, 41.9654993] + "loc": [-85.637473, 41.94607] }, "n1819849032": { "id": "n1819849032", - "loc": [-85.6387028, 41.9482658] - }, - "n1819849033": { - "id": "n1819849033", - "loc": [-85.6464742, 41.9688398] - }, - "n1819849034": { - "id": "n1819849034", - "loc": [-85.6495212, 41.9589236] - }, - "n1819849035": { - "id": "n1819849035", - "loc": [-85.6490599, 41.9790096] - }, - "n1819849036": { - "id": "n1819849036", - "loc": [-85.6489918, 41.9800724] - }, - "n1819849038": { - "id": "n1819849038", - "loc": [-85.6499182, 41.9659042] + "loc": [-85.638777, 41.948204] }, "n1819849040": { "id": "n1819849040", - "loc": [-85.639758, 41.9490143] - }, - "n1819849041": { - "id": "n1819849041", - "loc": [-85.6514846, 41.9755241] + "loc": [-85.639758, 41.949014] }, "n1819849042": { "id": "n1819849042", - "loc": [-85.6436633, 41.9540647] - }, - "n1819849045": { - "id": "n1819849045", - "loc": [-85.6475541, 41.9726387] - }, - "n1819849046": { - "id": "n1819849046", - "loc": [-85.6488308, 41.9718331] + "loc": [-85.643663, 41.954065] }, "n1819849047": { "id": "n1819849047", - "loc": [-85.6377694, 41.9460953] - }, - "n1819849048": { - "id": "n1819849048", - "loc": [-85.6490706, 41.9804452] - }, - "n1819849049": { - "id": "n1819849049", - "loc": [-85.6485449, 41.9766248] - }, - "n1819849051": { - "id": "n1819849051", - "loc": [-85.6483625, 41.9790256] - }, - "n1819849052": { - "id": "n1819849052", - "loc": [-85.6490706, 41.9585167] + "loc": [-85.637769, 41.946095] }, "n1819849053": { "id": "n1819849053", - "loc": [-85.6425008, 41.9522874] - }, - "n1819849054": { - "id": "n1819849054", - "loc": [-85.6475793, 41.9632158] + "loc": [-85.642501, 41.952287] }, "n1819849055": { "id": "n1819849055", - "loc": [-85.6408631, 41.9499399] - }, - "n1819849056": { - "id": "n1819849056", - "loc": [-85.6483373, 41.9814681] + "loc": [-85.640863, 41.94994] }, "n1819849057": { "id": "n1819849057", - "loc": [-85.6313548, 41.9442876] + "loc": [-85.631355, 41.944288] }, "n1819849058": { "id": "n1819849058", - "loc": [-85.6432663, 41.9529796] - }, - "n1819849059": { - "id": "n1819849059", - "loc": [-85.6487128, 41.9582873] - }, - "n1819849060": { - "id": "n1819849060", - "loc": [-85.6482338, 41.9817612] - }, - "n1819849062": { - "id": "n1819849062", - "loc": [-85.6485664, 41.9788661] + "loc": [-85.643266, 41.95298] }, "n1819849063": { "id": "n1819849063", - "loc": [-85.6373081, 41.9448824] - }, - "n1819849064": { - "id": "n1819849064", - "loc": [-85.6472215, 41.9557582] + "loc": [-85.637308, 41.944882] }, "n1819849065": { "id": "n1819849065", - "loc": [-85.6348984, 41.9440414] - }, - "n1819849066": { - "id": "n1819849066", - "loc": [-85.6501972, 41.9647315] - }, - "n1819849067": { - "id": "n1819849067", - "loc": [-85.6489741, 41.9808281] + "loc": [-85.634898, 41.944041] }, "n1819849068": { "id": "n1819849068", - "loc": [-85.6420111, 41.9515034] + "loc": [-85.642011, 41.951503] }, "n1819849069": { "id": "n1819849069", - "loc": [-85.6397972, 41.9488882] - }, - "n1819849070": { - "id": "n1819849070", - "loc": [-85.6499718, 41.9593465] - }, - "n1819849071": { - "id": "n1819849071", - "loc": [-85.6486844, 41.9811311] + "loc": [-85.639797, 41.948888] }, "n1819849072": { "id": "n1819849072", - "loc": [-85.6390392, 41.9474663] - }, - "n1819849074": { - "id": "n1819849074", - "loc": [-85.6495642, 41.9616362] - }, - "n1819849075": { - "id": "n1819849075", - "loc": [-85.6483518, 41.9791931] - }, - "n1819849076": { - "id": "n1819849076", - "loc": [-85.6478974, 41.9833104] + "loc": [-85.639039, 41.947466] }, "n1819849077": { "id": "n1819849077", @@ -4363,7442 +3756,510 @@ }, "n1819849078": { "id": "n1819849078", - "loc": [-85.6399366, 41.9487845] - }, - "n1819849079": { - "id": "n1819849079", - "loc": [-85.6492959, 41.9825348] - }, - "n1819849080": { - "id": "n1819849080", - "loc": [-85.6505083, 41.9648352] - }, - "n1819849081": { - "id": "n1819849081", - "loc": [-85.6492959, 41.9645241] + "loc": [-85.639937, 41.948785] }, "n1819849082": { "id": "n1819849082", - "loc": [-85.6402049, 41.9491835] - }, - "n1819849083": { - "id": "n1819849083", - "loc": [-85.6495175, 41.9826963] - }, - "n1819849084": { - "id": "n1819849084", - "loc": [-85.6480836, 41.9728361] + "loc": [-85.640205, 41.949183] }, "n1819849085": { "id": "n1819849085", - "loc": [-85.6374349, 41.9443425] - }, - "n1819849086": { - "id": "n1819849086", - "loc": [-85.6478331, 41.9681238] + "loc": [-85.637435, 41.944342] }, "n1819849089": { "id": "n1819849089", - "loc": [-85.639368, 41.9486169] - }, - "n1819849092": { - "id": "n1819849092", - "loc": [-85.6503581, 41.9788022] - }, - "n1819849093": { - "id": "n1819849093", - "loc": [-85.64862, 41.9568014] - }, - "n1819849094": { - "id": "n1819849094", - "loc": [-85.6496999, 41.9828877] - }, - "n1819849095": { - "id": "n1819849095", - "loc": [-85.647472, 41.972198] - }, - "n1819849096": { - "id": "n1819849096", - "loc": [-85.6485771, 41.9644523] + "loc": [-85.639443, 41.948593] }, "n1819849097": { "id": "n1819849097", - "loc": [-85.6388353, 41.9480488] - }, - "n1819849099": { - "id": "n1819849099", - "loc": [-85.6472752, 41.9683312] - }, - "n1819849104": { - "id": "n1819849104", - "loc": [-85.6479548, 41.9836035] - }, - "n1819849105": { - "id": "n1819849105", - "loc": [-85.6462489, 41.9691668] - }, - "n1819849107": { - "id": "n1819849107", - "loc": [-85.6511912, 41.9746328] - }, - "n1819849108": { - "id": "n1819849108", - "loc": [-85.6498646, 41.9714881] - }, - "n1819849111": { - "id": "n1819849111", - "loc": [-85.6488239, 41.961684] - }, - "n1819849112": { - "id": "n1819849112", - "loc": [-85.6469356, 41.9553812] - }, - "n1819849114": { - "id": "n1819849114", - "loc": [-85.6479548, 41.9640853] - }, - "n1819849119": { - "id": "n1819849119", - "loc": [-85.6491565, 41.961692] - }, - "n1819849121": { - "id": "n1819849121", - "loc": [-85.651667, 41.9656728] + "loc": [-85.638835, 41.948049] }, "n1819849124": { "id": "n1819849124", - "loc": [-85.6388423, 41.9484414] + "loc": [-85.638842, 41.948441] }, "n1819849126": { "id": "n1819849126", - "loc": [-85.6371686, 41.9450978] - }, - "n1819849127": { - "id": "n1819849127", - "loc": [-85.6502615, 41.9656728] - }, - "n1819849129": { - "id": "n1819849129", - "loc": [-85.6498501, 41.9613031] - }, - "n1819849131": { - "id": "n1819849131", - "loc": [-85.6513881, 41.9653298] + "loc": [-85.637169, 41.945098] }, "n1819849133": { "id": "n1819849133", - "loc": [-85.639883, 41.9485291] - }, - "n1819849139": { - "id": "n1819849139", - "loc": [-85.6508693, 41.9658264] - }, - "n1819849140": { - "id": "n1819849140", - "loc": [-85.6486806, 41.9761642] - }, - "n1819849141": { - "id": "n1819849141", - "loc": [-85.6483159, 41.9717613] + "loc": [-85.639883, 41.948529] }, "n1819849144": { "id": "n1819849144", - "loc": [-85.6443714, 41.9546232] + "loc": [-85.644371, 41.954623] }, "n1819849146": { "id": "n1819849146", - "loc": [-85.641775, 41.9513359] - }, - "n1819849147": { - "id": "n1819849147", - "loc": [-85.6495604, 41.9757335] - }, - "n1819849148": { - "id": "n1819849148", - "loc": [-85.6465671, 41.9551678] - }, - "n1819849150": { - "id": "n1819849150", - "loc": [-85.6485127, 41.9794084] - }, - "n1819849151": { - "id": "n1819849151", - "loc": [-85.6499144, 41.9757096] + "loc": [-85.641775, 41.951336] }, "n1819849152": { "id": "n1819849152", - "loc": [-85.6433736, 41.9531072] - }, - "n1819849154": { - "id": "n1819849154", - "loc": [-85.6489741, 41.9607426] + "loc": [-85.643374, 41.953107] }, "n1819849155": { "id": "n1819849155", - "loc": [-85.640627, 41.9507697] - }, - "n1819849156": { - "id": "n1819849156", - "loc": [-85.6509659, 41.9743058] - }, - "n1819849157": { - "id": "n1819849157", - "loc": [-85.6486844, 41.9704431] - }, - "n1819849158": { - "id": "n1819849158", - "loc": [-85.6498538, 41.9711132] + "loc": [-85.640627, 41.95077] }, "n1819849159": { "id": "n1819849159", - "loc": [-85.6358937, 41.943719] - }, - "n1819849160": { - "id": "n1819849160", - "loc": [-85.6497358, 41.9707702] - }, - "n1819849161": { - "id": "n1819849161", - "loc": [-85.6480476, 41.9564842] - }, - "n1819849162": { - "id": "n1819849162", - "loc": [-85.6482982, 41.9574556] - }, - "n1819849163": { - "id": "n1819849163", - "loc": [-85.6501757, 41.9757794] + "loc": [-85.635894, 41.943719] }, "n1819849164": { "id": "n1819849164", - "loc": [-85.6372973, 41.9459916] - }, - "n1819849165": { - "id": "n1819849165", - "loc": [-85.6513773, 41.9750775] + "loc": [-85.637297, 41.945992] }, "n1819849166": { "id": "n1819849166", - "loc": [-85.6436418, 41.9537455] - }, - "n1819849167": { - "id": "n1819849167", - "loc": [-85.6483625, 41.9571524] - }, - "n1819849169": { - "id": "n1819849169", - "loc": [-85.647751, 41.9727962] - }, - "n1819849170": { - "id": "n1819849170", - "loc": [-85.6504546, 41.9656808] - }, - "n1819849171": { - "id": "n1819849171", - "loc": [-85.6479977, 41.971839] - }, - "n1819849172": { - "id": "n1819849172", - "loc": [-85.6482767, 41.9642449] + "loc": [-85.643642, 41.953745] }, "n1819849174": { "id": "n1819849174", - "loc": [-85.6414317, 41.9512086] - }, - "n1819849176": { - "id": "n1819849176", - "loc": [-85.6469034, 41.9685287] + "loc": [-85.641432, 41.951209] }, "n1819849179": { "id": "n1819849179", - "loc": [-85.6408631, 41.9497564] - }, - "n1819849182": { - "id": "n1819849182", - "loc": [-85.6476721, 41.96384] - }, - "n1819849183": { - "id": "n1819849183", - "loc": [-85.6479725, 41.983111] + "loc": [-85.640863, 41.949756] }, "n1819849184": { "id": "n1819849184", - "loc": [-85.640788, 41.9500516] + "loc": [-85.640788, 41.950052] }, "n1819849185": { "id": "n1819849185", - "loc": [-85.6427798, 41.9528778] + "loc": [-85.64278, 41.952878] }, "n1819849186": { "id": "n1819849186", - "loc": [-85.6435308, 41.9534124] - }, - "n1819849187": { - "id": "n1819849187", - "loc": [-85.6483733, 41.9821998] + "loc": [-85.643531, 41.953412] }, "n1819849189": { "id": "n1819849189", - "loc": [-85.6351752, 41.9440796] - }, - "n1819849191": { - "id": "n1819849191", - "loc": [-85.6487021, 41.9601463] + "loc": [-85.635175, 41.94408] }, "n1819849192": { "id": "n1819849192", - "loc": [-85.6363811, 41.9437605] - }, - "n1819849193": { - "id": "n1819849193", - "loc": [-85.6490883, 41.9759728] + "loc": [-85.636381, 41.943761] }, "n1819849194": { "id": "n1819849194", - "loc": [-85.6423292, 41.9520081] - }, - "n1819849195": { - "id": "n1819849195", - "loc": [-85.6500003, 41.960242] + "loc": [-85.642329, 41.952008] }, "n1819849196": { "id": "n1819849196", - "loc": [-85.6385778, 41.9466443] - }, - "n1819849197": { - "id": "n1819849197", - "loc": [-85.6494032, 41.9718789] + "loc": [-85.638578, 41.946644] }, "n1819849198": { "id": "n1819849198", - "loc": [-85.6404339, 41.9506501] + "loc": [-85.640434, 41.95065] }, "n1819849199": { "id": "n1819849199", - "loc": [-85.6426226, 41.9527083] + "loc": [-85.642623, 41.952708] }, "n1819849200": { "id": "n1819849200", - "loc": [-85.6439101, 41.9545035] - }, - "n1819849201": { - "id": "n1819849201", - "loc": [-85.6516563, 41.9657845] - }, - "n1819849202": { - "id": "n1819849202", - "loc": [-85.6473395, 41.9699585] + "loc": [-85.64391, 41.954504] }, "n1819858501": { "id": "n1819858501", - "loc": [-85.6361263, 41.9437126] + "loc": [-85.636126, 41.943713] }, "n1819858503": { "id": "n1819858503", - "loc": [-85.6350068, 41.944034] + "loc": [-85.635007, 41.944034] }, "n1819858513": { "id": "n1819858513", - "loc": [-85.6371402, 41.9453282] + "loc": [-85.63714, 41.945328] }, "n1819858518": { "id": "n1819858518", - "loc": [-85.6348713, 41.9432923] + "loc": [-85.634871, 41.943292] }, "n1819858523": { "id": "n1819858523", - "loc": [-85.6357047, 41.943799] + "loc": [-85.635705, 41.943799] }, "n1819858526": { "id": "n1819858526", - "loc": [-85.6349947, 41.9435756] + "loc": [-85.634995, 41.943576] }, "n1819858531": { "id": "n1819858531", - "loc": [-85.6350376, 41.943827] - }, - "n1820937508": { - "id": "n1820937508", - "loc": [-85.1026013, 42.0881722] - }, - "n1820937509": { - "id": "n1820937509", - "loc": [-85.0558088, 42.102493] - }, - "n1820937511": { - "id": "n1820937511", - "loc": [-85.3030116, 41.9724451] - }, - "n1820937513": { - "id": "n1820937513", - "loc": [-85.0353221, 42.1027398] - }, - "n1820937514": { - "id": "n1820937514", - "loc": [-85.0835468, 42.1015469] - }, - "n1820937515": { - "id": "n1820937515", - "loc": [-85.2421298, 42.0106305] - }, - "n1820937517": { - "id": "n1820937517", - "loc": [-85.0090632, 42.0910452] - }, - "n1820937518": { - "id": "n1820937518", - "loc": [-85.086626, 42.0948838] - }, - "n1820937520": { - "id": "n1820937520", - "loc": [-85.2552039, 42.0015448] - }, - "n1820937521": { - "id": "n1820937521", - "loc": [-85.3739614, 41.9969917] - }, - "n1820937522": { - "id": "n1820937522", - "loc": [-85.4831166, 41.993898] - }, - "n1820937523": { - "id": "n1820937523", - "loc": [-85.0341084, 42.0977657] - }, - "n1820937524": { - "id": "n1820937524", - "loc": [-85.3272802, 41.9710333] - }, - "n1820937525": { - "id": "n1820937525", - "loc": [-85.2125568, 42.0414521] - }, - "n1820937526": { - "id": "n1820937526", - "loc": [-85.3798022, 41.9992458] - }, - "n1820937527": { - "id": "n1820937527", - "loc": [-85.2652021, 41.999768] - }, - "n1820937528": { - "id": "n1820937528", - "loc": [-85.3852739, 42.0004896] - }, - "n1820937529": { - "id": "n1820937529", - "loc": [-85.3911919, 42.0030513] - }, - "n1820937530": { - "id": "n1820937530", - "loc": [-85.5440349, 41.9717109] - }, - "n1820937531": { - "id": "n1820937531", - "loc": [-85.2790155, 41.9911764] - }, - "n1820937532": { - "id": "n1820937532", - "loc": [-85.4723277, 41.9950518] - }, - "n1820937533": { - "id": "n1820937533", - "loc": [-85.5690546, 41.9653931] - }, - "n1820937535": { - "id": "n1820937535", - "loc": [-85.5674882, 41.9649623] - }, - "n1820937536": { - "id": "n1820937536", - "loc": [-85.6362815, 41.9189165] - }, - "n1820937537": { - "id": "n1820937537", - "loc": [-85.5659003, 41.963638] - }, - "n1820937539": { - "id": "n1820937539", - "loc": [-85.6391353, 41.9122262] - }, - "n1820937540": { - "id": "n1820937540", - "loc": [-85.4834385, 41.9894803] - }, - "n1820937541": { - "id": "n1820937541", - "loc": [-85.6399078, 41.9160744] + "loc": [-85.635038, 41.943827] }, "n1820937542": { "id": "n1820937542", "loc": [-85.632874, 41.941031] }, - "n1820937543": { - "id": "n1820937543", - "loc": [-85.1307591, 42.0726961] - }, - "n1820937544": { - "id": "n1820937544", - "loc": [-85.6444397, 41.9128378] - }, "n1820937545": { "id": "n1820937545", - "loc": [-85.6197204, 41.9420365] - }, - "n1820937546": { - "id": "n1820937546", - "loc": [-85.1164857, 42.0864631] - }, - "n1820937547": { - "id": "n1820937547", - "loc": [-85.6476111, 41.9142222] - }, - "n1820937548": { - "id": "n1820937548", - "loc": [-85.2915747, 41.9774223] - }, - "n1820937549": { - "id": "n1820937549", - "loc": [-85.6430192, 41.9102461] - }, - "n1820937550": { - "id": "n1820937550", - "loc": [-85.1597495, 42.0639017] - }, - "n1820937551": { - "id": "n1820937551", - "loc": [-85.5504079, 41.9701793] - }, - "n1820937553": { - "id": "n1820937553", - "loc": [-85.2781317, 41.9948951] - }, - "n1820937555": { - "id": "n1820937555", - "loc": [-85.3724594, 41.997518] - }, - "n1820937556": { - "id": "n1820937556", - "loc": [-85.5629434, 41.9665155] - }, - "n1820937557": { - "id": "n1820937557", - "loc": [-85.3791971, 41.9990808] - }, - "n1820937558": { - "id": "n1820937558", - "loc": [-85.001891, 42.0878843] - }, - "n1820937560": { - "id": "n1820937560", - "loc": [-85.3140838, 41.9709056] - }, - "n1820937561": { - "id": "n1820937561", - "loc": [-85.2468032, 42.0146987] - }, - "n1820937563": { - "id": "n1820937563", - "loc": [-85.0877378, 42.097255] - }, - "n1820937564": { - "id": "n1820937564", - "loc": [-85.2442498, 42.0150654] - }, - "n1820937566": { - "id": "n1820937566", - "loc": [-85.3108973, 41.9701478] - }, - "n1820937568": { - "id": "n1820937568", - "loc": [-85.0344584, 42.1016572] - }, - "n1820937569": { - "id": "n1820937569", - "loc": [-85.2331025, 42.0297387] - }, - "n1820937570": { - "id": "n1820937570", - "loc": [-85.5058446, 41.9746996] - }, - "n1820937571": { - "id": "n1820937571", - "loc": [-85.5622739, 41.9676427] - }, - "n1820937572": { - "id": "n1820937572", - "loc": [-85.2792687, 41.9890337] - }, - "n1820937574": { - "id": "n1820937574", - "loc": [-84.9909302, 42.08695] + "loc": [-85.61972, 41.942037] }, "n1820937575": { "id": "n1820937575", - "loc": [-85.6218233, 41.9418609] - }, - "n1820937576": { - "id": "n1820937576", - "loc": [-85.3577437, 41.9931062] - }, - "n1820937577": { - "id": "n1820937577", - "loc": [-85.639028, 41.9165853] - }, - "n1820937578": { - "id": "n1820937578", - "loc": [-84.9956576, 42.0865348] - }, - "n1820937579": { - "id": "n1820937579", - "loc": [-85.4828376, 41.990198] - }, - "n1820937580": { - "id": "n1820937580", - "loc": [-85.3244478, 41.9720543] - }, - "n1820937582": { - "id": "n1820937582", - "loc": [-85.0517479, 42.1035159] - }, - "n1820937583": { - "id": "n1820937583", - "loc": [-85.225646, 42.0338025] - }, - "n1820937584": { - "id": "n1820937584", - "loc": [-84.9941019, 42.0862163] - }, - "n1820937586": { - "id": "n1820937586", - "loc": [-85.1051762, 42.0879452] - }, - "n1820937587": { - "id": "n1820937587", - "loc": [-85.1245203, 42.0753162] - }, - "n1820937588": { - "id": "n1820937588", - "loc": [-85.3250808, 41.9719506] - }, - "n1820937589": { - "id": "n1820937589", - "loc": [-85.2720109, 41.997933] - }, - "n1820937590": { - "id": "n1820937590", - "loc": [-85.2556653, 42.0027248] - }, - "n1820937591": { - "id": "n1820937591", - "loc": [-85.0872483, 42.0943544] - }, - "n1820937592": { - "id": "n1820937592", - "loc": [-85.2778353, 41.9955023] - }, - "n1820937593": { - "id": "n1820937593", - "loc": [-85.2984733, 41.9735538] - }, - "n1820937594": { - "id": "n1820937594", - "loc": [-85.101578, 42.0889552] - }, - "n1820937595": { - "id": "n1820937595", - "loc": [-85.3888745, 42.0016959] - }, - "n1820937596": { - "id": "n1820937596", - "loc": [-84.9903508, 42.0870654] - }, - "n1820937597": { - "id": "n1820937597", - "loc": [-85.6405558, 41.9146261] - }, - "n1820937598": { - "id": "n1820937598", - "loc": [-85.6460704, 41.9141311] - }, - "n1820937599": { - "id": "n1820937599", - "loc": [-85.0377468, 42.1037428] - }, - "n1820937600": { - "id": "n1820937600", - "loc": [-85.2298345, 42.0312899] - }, - "n1820937601": { - "id": "n1820937601", - "loc": [-85.1080958, 42.0861964] + "loc": [-85.621823, 41.941861] }, "n1820937602": { "id": "n1820937602", - "loc": [-85.6325307, 41.9402329] - }, - "n1820937603": { - "id": "n1820937603", - "loc": [-85.1165984, 42.0832184] - }, - "n1820937604": { - "id": "n1820937604", - "loc": [-85.6354446, 41.9190602] - }, - "n1820937605": { - "id": "n1820937605", - "loc": [-85.1114592, 42.0862959] - }, - "n1820937606": { - "id": "n1820937606", - "loc": [-85.0858763, 42.1001646] - }, - "n1820937607": { - "id": "n1820937607", - "loc": [-85.0472083, 42.1015151] - }, - "n1820937608": { - "id": "n1820937608", - "loc": [-85.0802477, 42.1027609] - }, - "n1820937610": { - "id": "n1820937610", - "loc": [-85.0924585, 42.0928564] - }, - "n1820937611": { - "id": "n1820937611", - "loc": [-85.0329617, 42.09827] - }, - "n1820937612": { - "id": "n1820937612", - "loc": [-85.2814617, 41.993465] - }, - "n1820937613": { - "id": "n1820937613", - "loc": [-85.3097708, 41.9700282] - }, - "n1820937614": { - "id": "n1820937614", - "loc": [-85.2809427, 41.993695] - }, - "n1820937615": { - "id": "n1820937615", - "loc": [-85.0583233, 42.1026494] - }, - "n1820937617": { - "id": "n1820937617", - "loc": [-85.2801592, 41.9840021] - }, - "n1820937619": { - "id": "n1820937619", - "loc": [-85.1064154, 42.0863449] - }, - "n1820937620": { - "id": "n1820937620", - "loc": [-85.0423173, 42.1014662] - }, - "n1820937621": { - "id": "n1820937621", - "loc": [-85.2168913, 42.0398107] - }, - "n1820937622": { - "id": "n1820937622", - "loc": [-85.2798481, 41.9833401] - }, - "n1820937623": { - "id": "n1820937623", - "loc": [-85.0575468, 42.1028672] - }, - "n1820937625": { - "id": "n1820937625", - "loc": [-85.0130369, 42.0893067] - }, - "n1820937626": { - "id": "n1820937626", - "loc": [-85.0346985, 42.1018256] - }, - "n1820937627": { - "id": "n1820937627", - "loc": [-85.2231569, 42.0372768] - }, - "n1820937628": { - "id": "n1820937628", - "loc": [-85.2956195, 41.9732268] - }, - "n1820937629": { - "id": "n1820937629", - "loc": [-85.1052312, 42.086893] - }, - "n1820937630": { - "id": "n1820937630", - "loc": [-85.4813356, 41.9958436] - }, - "n1820937631": { - "id": "n1820937631", - "loc": [-85.0961599, 42.0914672] - }, - "n1820937632": { - "id": "n1820937632", - "loc": [-85.308419, 41.9704749] - }, - "n1820937633": { - "id": "n1820937633", - "loc": [-85.295952, 41.9715119] - }, - "n1820937634": { - "id": "n1820937634", - "loc": [-85.3310933, 41.9703923] - }, - "n1820937635": { - "id": "n1820937635", - "loc": [-85.2940745, 41.9739686] - }, - "n1820937636": { - "id": "n1820937636", - "loc": [-85.3803343, 42.000484] - }, - "n1820937637": { - "id": "n1820937637", - "loc": [-85.1174231, 42.0845533] - }, - "n1820937638": { - "id": "n1820937638", - "loc": [-85.0095836, 42.089839] - }, - "n1820937639": { - "id": "n1820937639", - "loc": [-85.3179354, 41.9705866] - }, - "n1820937640": { - "id": "n1820937640", - "loc": [-85.257708, 42.0001189] - }, - "n1820937641": { - "id": "n1820937641", - "loc": [-85.2563522, 42.0002771] - }, - "n1820937642": { - "id": "n1820937642", - "loc": [-85.3181929, 41.970419] - }, - "n1820937643": { - "id": "n1820937643", - "loc": [-85.2911884, 41.9757154] - }, - "n1820937644": { - "id": "n1820937644", - "loc": [-85.2714423, 41.9975862] - }, - "n1820937645": { - "id": "n1820937645", - "loc": [-85.0193669, 42.089888] - }, - "n1820937646": { - "id": "n1820937646", - "loc": [-85.3889818, 42.0039921] - }, - "n1820937647": { - "id": "n1820937647", - "loc": [-85.3408093, 41.9853965] - }, - "n1820937648": { - "id": "n1820937648", - "loc": [-85.1258091, 42.0748332] - }, - "n1820937649": { - "id": "n1820937649", - "loc": [-85.5722561, 41.962782] - }, - "n1820937650": { - "id": "n1820937650", - "loc": [-85.3266902, 41.9721819] - }, - "n1820937651": { - "id": "n1820937651", - "loc": [-85.1473255, 42.065192] - }, - "n1820937652": { - "id": "n1820937652", - "loc": [-85.1462526, 42.0655106] - }, - "n1820937653": { - "id": "n1820937653", - "loc": [-85.4641051, 42.0013929] - }, - "n1820937654": { - "id": "n1820937654", - "loc": [-85.5620379, 41.9700677] - }, - "n1820937655": { - "id": "n1820937655", - "loc": [-85.3226025, 41.971121] - }, - "n1820937656": { - "id": "n1820937656", - "loc": [-85.0200965, 42.0899516] - }, - "n1820937657": { - "id": "n1820937657", - "loc": [-85.0624714, 42.1044711] - }, - "n1820937658": { - "id": "n1820937658", - "loc": [-85.5649562, 41.9637178] - }, - "n1820937659": { - "id": "n1820937659", - "loc": [-85.2360315, 42.0253315] - }, - "n1820937660": { - "id": "n1820937660", - "loc": [-85.3881449, 41.9994475] - }, - "n1820937661": { - "id": "n1820937661", - "loc": [-85.5032911, 41.976263] - }, - "n1820937662": { - "id": "n1820937662", - "loc": [-85.481297, 41.9871414] - }, - "n1820937663": { - "id": "n1820937663", - "loc": [-85.1167056, 42.0841898] - }, - "n1820937664": { - "id": "n1820937664", - "loc": [-85.2891714, 41.9787223] - }, - "n1820937665": { - "id": "n1820937665", - "loc": [-85.4393429, 42.0058736] - }, - "n1820937666": { - "id": "n1820937666", - "loc": [-85.0077007, 42.0895762] - }, - "n1820937667": { - "id": "n1820937667", - "loc": [-85.2736202, 41.9979171] - }, - "n1820937668": { - "id": "n1820937668", - "loc": [-84.9935332, 42.0859296] - }, - "n1820937669": { - "id": "n1820937669", - "loc": [-85.0622769, 42.1046713] - }, - "n1820937670": { - "id": "n1820937670", - "loc": [-85.2309031, 42.0311249] - }, - "n1820937671": { - "id": "n1820937671", - "loc": [-85.0343726, 42.10069] - }, - "n1820937672": { - "id": "n1820937672", - "loc": [-85.0596551, 42.1048612] - }, - "n1820937673": { - "id": "n1820937673", - "loc": [-85.1338597, 42.0707449] - }, - "n1820937674": { - "id": "n1820937674", - "loc": [-85.3117663, 41.9689194] - }, - "n1820937675": { - "id": "n1820937675", - "loc": [-85.0705649, 42.1057499] - }, - "n1820937676": { - "id": "n1820937676", - "loc": [-85.2441425, 42.0180944] - }, - "n1820937677": { - "id": "n1820937677", - "loc": [-85.1171174, 42.0862692] - }, - "n1820937678": { - "id": "n1820937678", - "loc": [-85.0346824, 42.1005519] - }, - "n1820937680": { - "id": "n1820937680", - "loc": [-85.2389927, 42.0229245] - }, - "n1820937681": { - "id": "n1820937681", - "loc": [-85.0834892, 42.1018642] - }, - "n1820937682": { - "id": "n1820937682", - "loc": [-85.0619443, 42.1049459] - }, - "n1820937683": { - "id": "n1820937683", - "loc": [-85.2845366, 41.9811868] - }, - "n1820937684": { - "id": "n1820937684", - "loc": [-85.210411, 42.0394123] - }, - "n1820937685": { - "id": "n1820937685", - "loc": [-85.4377383, 42.0055942] - }, - "n1820937686": { - "id": "n1820937686", - "loc": [-85.2882058, 41.9789138] - }, - "n1820937687": { - "id": "n1820937687", - "loc": [-85.2741191, 41.9955808] - }, - "n1820937688": { - "id": "n1820937688", - "loc": [-85.3442211, 41.9903575] - }, - "n1820937689": { - "id": "n1820937689", - "loc": [-85.2641413, 41.9995237] - }, - "n1820937690": { - "id": "n1820937690", - "loc": [-85.2804489, 41.9829174] - }, - "n1820937691": { - "id": "n1820937691", - "loc": [-85.5593342, 41.9729074] - }, - "n1820937692": { - "id": "n1820937692", - "loc": [-85.3590912, 41.9932601] - }, - "n1820937694": { - "id": "n1820937694", - "loc": [-85.4826445, 41.9957479] - }, - "n1820937695": { - "id": "n1820937695", - "loc": [-85.4539127, 42.0063041] - }, - "n1820937696": { - "id": "n1820937696", - "loc": [-85.2456767, 42.0153683] - }, - "n1820937697": { - "id": "n1820937697", - "loc": [-85.5794015, 41.9489631] - }, - "n1820937698": { - "id": "n1820937698", - "loc": [-85.4108686, 42.0078507] - }, - "n1820937699": { - "id": "n1820937699", - "loc": [-85.0616386, 42.1051529] - }, - "n1820937700": { - "id": "n1820937700", - "loc": [-85.4977979, 41.978241] - }, - "n1820937701": { - "id": "n1820937701", - "loc": [-85.2488417, 42.0086319] - }, - "n1820937702": { - "id": "n1820937702", - "loc": [-85.5588836, 41.9728116] - }, - "n1820937703": { - "id": "n1820937703", - "loc": [-85.4557366, 42.0051241] - }, - "n1820937705": { - "id": "n1820937705", - "loc": [-85.0723151, 42.1056094] - }, - "n1820937706": { - "id": "n1820937706", - "loc": [-85.0057909, 42.0887323] - }, - "n1820937707": { - "id": "n1820937707", - "loc": [-85.0756786, 42.105677] - }, - "n1820937708": { - "id": "n1820937708", - "loc": [-85.0901504, 42.0940001] - }, - "n1820937709": { - "id": "n1820937709", - "loc": [-85.0979999, 42.0910213] - }, - "n1820937710": { - "id": "n1820937710", - "loc": [-85.2376301, 42.0239686] - }, - "n1820937711": { - "id": "n1820937711", - "loc": [-85.2780671, 41.9902299] - }, - "n1820937712": { - "id": "n1820937712", - "loc": [-85.251481, 42.0113188] - }, - "n1820937713": { - "id": "n1820937713", - "loc": [-85.3114767, 41.9690311] - }, - "n1820937714": { - "id": "n1820937714", - "loc": [-85.2649621, 41.9975662] - }, - "n1820937715": { - "id": "n1820937715", - "loc": [-85.283807, 41.9813383] - }, - "n1820937716": { - "id": "n1820937716", - "loc": [-85.5515451, 41.9703867] - }, - "n1820937717": { - "id": "n1820937717", - "loc": [-85.1176605, 42.0850896] - }, - "n1820937718": { - "id": "n1820937718", - "loc": [-85.1069317, 42.0862441] - }, - "n1820937719": { - "id": "n1820937719", - "loc": [-85.2739314, 41.9976938] - }, - "n1820937720": { - "id": "n1820937720", - "loc": [-85.5550212, 41.9702112] - }, - "n1820937721": { - "id": "n1820937721", - "loc": [-85.3076679, 41.9719904] - }, - "n1820937722": { - "id": "n1820937722", - "loc": [-85.592319, 41.9440316] - }, - "n1820937723": { - "id": "n1820937723", - "loc": [-85.3139979, 41.9704031] - }, - "n1820937724": { - "id": "n1820937724", - "loc": [-85.0421134, 42.1013149] - }, - "n1820937725": { - "id": "n1820937725", - "loc": [-85.2508373, 42.0102741] - }, - "n1820937726": { - "id": "n1820937726", - "loc": [-85.0830922, 42.1038821] + "loc": [-85.632531, 41.940233] }, "n1820937727": { "id": "n1820937727", - "loc": [-85.6342473, 41.9360031] - }, - "n1820937730": { - "id": "n1820937730", - "loc": [-85.0500192, 42.1024942] - }, - "n1820937731": { - "id": "n1820937731", - "loc": [-85.3498644, 41.9926221] - }, - "n1820937732": { - "id": "n1820937732", - "loc": [-85.0234117, 42.0918903] - }, - "n1820937733": { - "id": "n1820937733", - "loc": [-85.0464425, 42.1009408] - }, - "n1820937734": { - "id": "n1820937734", - "loc": [-85.033938, 42.099886] - }, - "n1820937736": { - "id": "n1820937736", - "loc": [-85.0152752, 42.0886009] - }, - "n1820937737": { - "id": "n1820937737", - "loc": [-85.0441894, 42.1012671] - }, - "n1820937738": { - "id": "n1820937738", - "loc": [-85.4668731, 41.9979804] - }, - "n1820937739": { - "id": "n1820937739", - "loc": [-85.4407377, 42.006033] - }, - "n1820937740": { - "id": "n1820937740", - "loc": [-85.2262253, 42.0344878] - }, - "n1820937741": { - "id": "n1820937741", - "loc": [-85.2550001, 42.0033706] - }, - "n1820937742": { - "id": "n1820937742", - "loc": [-85.3071422, 41.9722617] + "loc": [-85.634247, 41.936003] }, "n1820937743": { "id": "n1820937743", - "loc": [-85.6147852, 41.942228] - }, - "n1820937744": { - "id": "n1820937744", - "loc": [-85.0183853, 42.0901825] - }, - "n1820937745": { - "id": "n1820937745", - "loc": [-85.6323161, 41.9228489] - }, - "n1820937746": { - "id": "n1820937746", - "loc": [-85.0095568, 42.0901376] - }, - "n1820937747": { - "id": "n1820937747", - "loc": [-85.2524037, 42.0113826] - }, - "n1820937748": { - "id": "n1820937748", - "loc": [-85.3186864, 41.9708578] - }, - "n1820937749": { - "id": "n1820937749", - "loc": [-85.2805669, 41.9870883] - }, - "n1820937750": { - "id": "n1820937750", - "loc": [-85.0585768, 42.1038144] - }, - "n1820937751": { - "id": "n1820937751", - "loc": [-85.2970786, 41.9715358] - }, - "n1820937752": { - "id": "n1820937752", - "loc": [-85.1315758, 42.0723445] - }, - "n1820937753": { - "id": "n1820937753", - "loc": [-85.2448291, 42.0175444] - }, - "n1820937754": { - "id": "n1820937754", - "loc": [-85.2446468, 42.0174248] - }, - "n1820937755": { - "id": "n1820937755", - "loc": [-85.229165, 42.032129] - }, - "n1820937756": { - "id": "n1820937756", - "loc": [-85.5612654, 41.9724926] - }, - "n1820937757": { - "id": "n1820937757", - "loc": [-85.2331776, 42.030854] - }, - "n1820937758": { - "id": "n1820937758", - "loc": [-85.2271909, 42.0334519] - }, - "n1820937759": { - "id": "n1820937759", - "loc": [-85.1032396, 42.0879214] - }, - "n1820937760": { - "id": "n1820937760", - "loc": [-85.0638447, 42.1044154] - }, - "n1820937761": { - "id": "n1820937761", - "loc": [-85.1260706, 42.0745556] - }, - "n1820937762": { - "id": "n1820937762", - "loc": [-85.3454485, 41.99132] - }, - "n1820937763": { - "id": "n1820937763", - "loc": [-85.2639321, 41.9980088] - }, - "n1820937764": { - "id": "n1820937764", - "loc": [-85.0837681, 42.1013746] - }, - "n1820937765": { - "id": "n1820937765", - "loc": [-85.2808137, 41.9869368] + "loc": [-85.614785, 41.942228] }, "n1820937766": { "id": "n1820937766", - "loc": [-85.6338997, 41.9309373] - }, - "n1820937767": { - "id": "n1820937767", - "loc": [-85.2267403, 42.0332766] - }, - "n1820937768": { - "id": "n1820937768", - "loc": [-85.0605831, 42.1052074] - }, - "n1820937769": { - "id": "n1820937769", - "loc": [-85.0259021, 42.0930037] - }, - "n1820937770": { - "id": "n1820937770", - "loc": [-85.232963, 42.0313162] - }, - "n1820937771": { - "id": "n1820937771", - "loc": [-85.2404947, 42.0125381] - }, - "n1820937772": { - "id": "n1820937772", - "loc": [-85.0910892, 42.0935742] - }, - "n1820937773": { - "id": "n1820937773", - "loc": [-85.2554829, 42.0019435] - }, - "n1820937774": { - "id": "n1820937774", - "loc": [-85.2799339, 41.9867773] - }, - "n1820937775": { - "id": "n1820937775", - "loc": [-85.1075432, 42.0852767] - }, - "n1820937776": { - "id": "n1820937776", - "loc": [-85.1176927, 42.0854001] - }, - "n1820937777": { - "id": "n1820937777", - "loc": [-85.1067064, 42.0863357] - }, - "n1820937778": { - "id": "n1820937778", - "loc": [-85.2517492, 42.0106333] - }, - "n1820937779": { - "id": "n1820937779", - "loc": [-85.0987174, 42.0909031] - }, - "n1820937780": { - "id": "n1820937780", - "loc": [-85.1160083, 42.0863994] - }, - "n1820937781": { - "id": "n1820937781", - "loc": [-85.1268645, 42.0739703] - }, - "n1820937782": { - "id": "n1820937782", - "loc": [-85.0454702, 42.1002852] - }, - "n1820937783": { - "id": "n1820937783", - "loc": [-85.1334145, 42.0705418] - }, - "n1820937784": { - "id": "n1820937784", - "loc": [-85.5866542, 41.947431] - }, - "n1820937786": { - "id": "n1820937786", - "loc": [-85.2359886, 42.0250366] - }, - "n1820937787": { - "id": "n1820937787", - "loc": [-85.3138048, 41.9698527] - }, - "n1820937788": { - "id": "n1820937788", - "loc": [-85.1274291, 42.0733081] + "loc": [-85.6339, 41.930937] }, "n1820937790": { "id": "n1820937790", - "loc": [-85.6292905, 41.9411267] - }, - "n1820937791": { - "id": "n1820937791", - "loc": [-85.5958809, 41.9417333] - }, - "n1820937792": { - "id": "n1820937792", - "loc": [-85.1271019, 42.0737581] - }, - "n1820937793": { - "id": "n1820937793", - "loc": [-85.2312679, 42.0314437] - }, - "n1820937794": { - "id": "n1820937794", - "loc": [-85.1081387, 42.0863516] - }, - "n1820937795": { - "id": "n1820937795", - "loc": [-85.2424473, 42.0212109] - }, - "n1820937796": { - "id": "n1820937796", - "loc": [-85.2710654, 41.9975236] - }, - "n1820937797": { - "id": "n1820937797", - "loc": [-85.4798408, 41.9863223] - }, - "n1820937798": { - "id": "n1820937798", - "loc": [-85.035939, 42.104296] - }, - "n1820937799": { - "id": "n1820937799", - "loc": [-85.2178139, 42.0395398] - }, - "n1820937800": { - "id": "n1820937800", - "loc": [-85.0630709, 42.1042614] - }, - "n1820937801": { - "id": "n1820937801", - "loc": [-85.0440124, 42.1014861] - }, - "n1820937802": { - "id": "n1820937802", - "loc": [-85.1321874, 42.0720458] - }, - "n1820937804": { - "id": "n1820937804", - "loc": [-85.079427, 42.1029121] - }, - "n1820937805": { - "id": "n1820937805", - "loc": [-85.2962632, 41.9738968] + "loc": [-85.62929, 41.941127] }, "n1820937806": { "id": "n1820937806", - "loc": [-85.6334748, 41.9274627] - }, - "n1820937807": { - "id": "n1820937807", - "loc": [-85.1057341, 42.0872804] - }, - "n1820937808": { - "id": "n1820937808", - "loc": [-85.4960169, 41.9778263] - }, - "n1820937809": { - "id": "n1820937809", - "loc": [-85.2821226, 41.9910273] - }, - "n1820937810": { - "id": "n1820937810", - "loc": [-85.0013868, 42.0885054] - }, - "n1820937811": { - "id": "n1820937811", - "loc": [-85.2952547, 41.9729795] - }, - "n1820937812": { - "id": "n1820937812", - "loc": [-85.1298375, 42.0667842] - }, - "n1820937813": { - "id": "n1820937813", - "loc": [-85.1339201, 42.0710025] - }, - "n1820937814": { - "id": "n1820937814", - "loc": [-85.0374356, 42.103691] - }, - "n1820937815": { - "id": "n1820937815", - "loc": [-85.0061115, 42.0880607] - }, - "n1820937817": { - "id": "n1820937817", - "loc": [-85.2398402, 42.0226934] - }, - "n1820937818": { - "id": "n1820937818", - "loc": [-85.123501, 42.076236] - }, - "n1820937819": { - "id": "n1820937819", - "loc": [-85.1209489, 42.0791294] - }, - "n1820937820": { - "id": "n1820937820", - "loc": [-85.0818624, 42.1025778] - }, - "n1820937821": { - "id": "n1820937821", - "loc": [-85.4428835, 42.0054749] - }, - "n1820937822": { - "id": "n1820937822", - "loc": [-85.4710359, 41.9961147] - }, - "n1820937823": { - "id": "n1820937823", - "loc": [-85.4253354, 42.006198] - }, - "n1820937824": { - "id": "n1820937824", - "loc": [-85.5486483, 41.9709451] - }, - "n1820937825": { - "id": "n1820937825", - "loc": [-85.2303238, 42.0310452] - }, - "n1820937826": { - "id": "n1820937826", - "loc": [-85.6450405, 41.9136361] - }, - "n1820937828": { - "id": "n1820937828", - "loc": [-85.2606853, 41.9964073] - }, - "n1820937830": { - "id": "n1820937830", - "loc": [-85.097383, 42.0911447] - }, - "n1820937831": { - "id": "n1820937831", - "loc": [-85.0498207, 42.102136] - }, - "n1820937832": { - "id": "n1820937832", - "loc": [-85.1232435, 42.0763793] - }, - "n1820937833": { - "id": "n1820937833", - "loc": [-85.394093, 42.0055921] - }, - "n1820937834": { - "id": "n1820937834", - "loc": [-85.3566665, 41.9928295] - }, - "n1820937835": { - "id": "n1820937835", - "loc": [-85.3543276, 41.9920002] - }, - "n1820937837": { - "id": "n1820937837", - "loc": [-85.084668, 42.1034932] - }, - "n1820937838": { - "id": "n1820937838", - "loc": [-85.4400296, 42.0060649] - }, - "n1820937839": { - "id": "n1820937839", - "loc": [-85.2362246, 42.025714] - }, - "n1820937840": { - "id": "n1820937840", - "loc": [-85.0409225, 42.1012791] - }, - "n1820937841": { - "id": "n1820937841", - "loc": [-85.2442283, 42.019832] - }, - "n1820937842": { - "id": "n1820937842", - "loc": [-85.1123001, 42.084824] - }, - "n1820937843": { - "id": "n1820937843", - "loc": [-85.1603074, 42.0638061] - }, - "n1820937844": { - "id": "n1820937844", - "loc": [-85.1359744, 42.0650646] - }, - "n1820937845": { - "id": "n1820937845", - "loc": [-85.1757569, 42.053849] - }, - "n1820937846": { - "id": "n1820937846", - "loc": [-85.5200925, 41.9716686] - }, - "n1820937848": { - "id": "n1820937848", - "loc": [-85.5525322, 41.9701315] - }, - "n1820937849": { - "id": "n1820937849", - "loc": [-85.0406489, 42.10149] - }, - "n1820937850": { - "id": "n1820937850", - "loc": [-85.0142547, 42.088825] - }, - "n1820937851": { - "id": "n1820937851", - "loc": [-85.343749, 41.9881884] - }, - "n1820937852": { - "id": "n1820937852", - "loc": [-85.074996, 42.1060205] - }, - "n1820937853": { - "id": "n1820937853", - "loc": [-85.2436275, 42.0136864] - }, - "n1820937854": { - "id": "n1820937854", - "loc": [-85.2641453, 41.9980897] - }, - "n1820937856": { - "id": "n1820937856", - "loc": [-85.2802343, 41.9870086] - }, - "n1820937857": { - "id": "n1820937857", - "loc": [-85.0099256, 42.0909946] - }, - "n1820937858": { - "id": "n1820937858", - "loc": [-85.493957, 41.9786079] - }, - "n1820937859": { - "id": "n1820937859", - "loc": [-85.0739405, 42.1059795] - }, - "n1820937860": { - "id": "n1820937860", - "loc": [-85.2331605, 42.0301423] - }, - "n1820937862": { - "id": "n1820937862", - "loc": [-85.2035231, 42.0438425] - }, - "n1820937863": { - "id": "n1820937863", - "loc": [-85.0884928, 42.0986971] - }, - "n1820937864": { - "id": "n1820937864", - "loc": [-85.131597, 42.0690142] - }, - "n1820937865": { - "id": "n1820937865", - "loc": [-85.3937454, 42.0052677] - }, - "n1820937866": { - "id": "n1820937866", - "loc": [-85.2212729, 42.0378561] - }, - "n1820937867": { - "id": "n1820937867", - "loc": [-85.0886068, 42.0982421] - }, - "n1820937868": { - "id": "n1820937868", - "loc": [-85.0875004, 42.0968064] - }, - "n1820937869": { - "id": "n1820937869", - "loc": [-85.0771323, 42.1042642] - }, - "n1820937870": { - "id": "n1820937870", - "loc": [-85.0164554, 42.0894887] - }, - "n1820937871": { - "id": "n1820937871", - "loc": [-85.6069102, 41.9415577] - }, - "n1820937872": { - "id": "n1820937872", - "loc": [-85.3273875, 41.9704908] - }, - "n1820937873": { - "id": "n1820937873", - "loc": [-85.3890891, 41.9997983] - }, - "n1820937875": { - "id": "n1820937875", - "loc": [-85.5091276, 41.9723705] - }, - "n1820937876": { - "id": "n1820937876", - "loc": [-85.0770626, 42.1047696] + "loc": [-85.633475, 41.927463] }, "n1820937877": { "id": "n1820937877", - "loc": [-85.612575, 41.9419567] - }, - "n1820937878": { - "id": "n1820937878", - "loc": [-85.3868146, 42.0036094] - }, - "n1820937879": { - "id": "n1820937879", - "loc": [-85.2722738, 41.9981204] - }, - "n1820937880": { - "id": "n1820937880", - "loc": [-85.3064878, 41.9723733] - }, - "n1820937882": { - "id": "n1820937882", - "loc": [-85.1270845, 42.0727678] - }, - "n1820937884": { - "id": "n1820937884", - "loc": [-85.3316512, 41.97923] - }, - "n1820937885": { - "id": "n1820937885", - "loc": [-85.3932519, 42.0042472] - }, - "n1820937886": { - "id": "n1820937886", - "loc": [-85.2457411, 42.0175444] - }, - "n1820937887": { - "id": "n1820937887", - "loc": [-85.1397509, 42.0648415] - }, - "n1820937891": { - "id": "n1820937891", - "loc": [-85.3196735, 41.9719665] - }, - "n1820937892": { - "id": "n1820937892", - "loc": [-85.3372473, 41.9845033] - }, - "n1820937894": { - "id": "n1820937894", - "loc": [-85.3254778, 41.9719745] - }, - "n1820937897": { - "id": "n1820937897", - "loc": [-85.3185148, 41.9691268] - }, - "n1820937899": { - "id": "n1820937899", - "loc": [-85.5419106, 41.9714556] - }, - "n1820937901": { - "id": "n1820937901", - "loc": [-85.3293509, 41.9748368] - }, - "n1820937903": { - "id": "n1820937903", - "loc": [-85.0798078, 42.1028365] - }, - "n1820937905": { - "id": "n1820937905", - "loc": [-85.3954191, 42.0056025] - }, - "n1820937909": { - "id": "n1820937909", - "loc": [-85.3417534, 41.9857155] - }, - "n1820937913": { - "id": "n1820937913", - "loc": [-84.9927822, 42.0857107] - }, - "n1820937915": { - "id": "n1820937915", - "loc": [-85.5444212, 41.9712801] - }, - "n1820937917": { - "id": "n1820937917", - "loc": [-85.259088, 41.9981682] - }, - "n1820937921": { - "id": "n1820937921", - "loc": [-85.2784576, 41.9876358] - }, - "n1820937922": { - "id": "n1820937922", - "loc": [-84.9971918, 42.087753] - }, - "n1820937924": { - "id": "n1820937924", - "loc": [-85.5310688, 41.966899] - }, - "n1820937928": { - "id": "n1820937928", - "loc": [-85.3766436, 41.9979326] - }, - "n1820937930": { - "id": "n1820937930", - "loc": [-85.5494852, 41.9704346] - }, - "n1820937933": { - "id": "n1820937933", - "loc": [-85.5548281, 41.9695412] - }, - "n1820937935": { - "id": "n1820937935", - "loc": [-85.0768588, 42.105088] - }, - "n1820937937": { - "id": "n1820937937", - "loc": [-85.2646885, 41.9978054] - }, - "n1820937939": { - "id": "n1820937939", - "loc": [-85.2441532, 42.0176082] - }, - "n1820937941": { - "id": "n1820937941", - "loc": [-85.105553, 42.0877928] - }, - "n1820937943": { - "id": "n1820937943", - "loc": [-85.0879457, 42.0958909] - }, - "n1820937944": { - "id": "n1820937944", - "loc": [-85.3187015, 41.9704402] - }, - "n1820937945": { - "id": "n1820937945", - "loc": [-85.5624456, 41.970626] - }, - "n1820937946": { - "id": "n1820937946", - "loc": [-85.0580176, 42.1028644] - }, - "n1820937948": { - "id": "n1820937948", - "loc": [-85.3016061, 41.9726286] - }, - "n1820937949": { - "id": "n1820937949", - "loc": [-85.4310388, 42.0069418] - }, - "n1820937950": { - "id": "n1820937950", - "loc": [-85.2945144, 41.9740723] - }, - "n1820937951": { - "id": "n1820937951", - "loc": [-85.1170222, 42.082657] - }, - "n1820937952": { - "id": "n1820937952", - "loc": [-85.0864503, 42.0947632] - }, - "n1820937953": { - "id": "n1820937953", - "loc": [-85.4285926, 42.0059533] - }, - "n1820937970": { - "id": "n1820937970", - "loc": [-85.3629965, 41.9938023] - }, - "n1820937972": { - "id": "n1820937972", - "loc": [-85.2438099, 42.0199755] - }, - "n1820937974": { - "id": "n1820937974", - "loc": [-85.1327654, 42.0699285] - }, - "n1820937977": { - "id": "n1820937977", - "loc": [-85.1515956, 42.0611935] - }, - "n1820937978": { - "id": "n1820937978", - "loc": [-85.0107369, 42.0896638] - }, - "n1820937979": { - "id": "n1820937979", - "loc": [-85.1152626, 42.0862083] - }, - "n1820937980": { - "id": "n1820937980", - "loc": [-85.4531831, 42.0062881] - }, - "n1820937981": { - "id": "n1820937981", - "loc": [-85.0341473, 42.0985924] - }, - "n1820937982": { - "id": "n1820937982", - "loc": [-85.0877485, 42.0960171] - }, - "n1820937983": { - "id": "n1820937983", - "loc": [-85.2756373, 41.9951742] - }, - "n1820937984": { - "id": "n1820937984", - "loc": [-85.2965421, 41.9714401] - }, - "n1820937985": { - "id": "n1820937985", - "loc": [-85.2409775, 42.0226934] - }, - "n1820937986": { - "id": "n1820937986", - "loc": [-85.0170723, 42.0900579] - }, - "n1820937987": { - "id": "n1820937987", - "loc": [-85.1034663, 42.0880555] - }, - "n1820937988": { - "id": "n1820937988", - "loc": [-85.0585071, 42.1031577] - }, - "n1820937990": { - "id": "n1820937990", - "loc": [-85.0819174, 42.1032373] - }, - "n1820937992": { - "id": "n1820937992", - "loc": [-85.0546608, 42.1030542] - }, - "n1820937993": { - "id": "n1820937993", - "loc": [-85.0100811, 42.0906125] + "loc": [-85.612575, 41.941957] }, "n1820937995": { "id": "n1820937995", - "loc": [-85.6304278, 41.9432655] - }, - "n1820937997": { - "id": "n1820937997", - "loc": [-85.0255628, 42.092778] - }, - "n1820938011": { - "id": "n1820938011", - "loc": [-85.2316756, 42.0317146] - }, - "n1820938012": { - "id": "n1820938012", - "loc": [-85.4067917, 42.008042] - }, - "n1820938013": { - "id": "n1820938013", - "loc": [-85.390398, 42.0028759] - }, - "n1820938014": { - "id": "n1820938014", - "loc": [-85.0161604, 42.0886527] - }, - "n1820938015": { - "id": "n1820938015", - "loc": [-85.125337, 42.0744589] - }, - "n1820938016": { - "id": "n1820938016", - "loc": [-85.2151317, 42.0404801] - }, - "n1820938017": { - "id": "n1820938017", - "loc": [-85.3165085, 41.9706025] - }, - "n1820938018": { - "id": "n1820938018", - "loc": [-85.5641193, 41.9640688] - }, - "n1820938019": { - "id": "n1820938019", - "loc": [-85.147583, 42.0642203] - }, - "n1820938022": { - "id": "n1820938022", - "loc": [-85.2803781, 41.9947886] - }, - "n1820938024": { - "id": "n1820938024", - "loc": [-85.2692469, 41.9982053] - }, - "n1820938026": { - "id": "n1820938026", - "loc": [-85.4321975, 42.0067505] - }, - "n1820938028": { - "id": "n1820938028", - "loc": [-85.572535, 41.9633405] - }, - "n1820938030": { - "id": "n1820938030", - "loc": [-85.3237505, 41.9716475] - }, - "n1820938032": { - "id": "n1820938032", - "loc": [-85.6487698, 41.9141583] - }, - "n1820938033": { - "id": "n1820938033", - "loc": [-85.0526371, 42.1038315] - }, - "n1820938034": { - "id": "n1820938034", - "loc": [-85.088069, 42.0978731] - }, - "n1820938035": { - "id": "n1820938035", - "loc": [-85.2516312, 42.0102267] - }, - "n1820938039": { - "id": "n1820938039", - "loc": [-85.2731374, 41.9982958] - }, - "n1820938040": { - "id": "n1820938040", - "loc": [-85.5453224, 41.9713439] - }, - "n1820938041": { - "id": "n1820938041", - "loc": [-85.4480548, 42.0049647] - }, - "n1820938043": { - "id": "n1820938043", - "loc": [-85.2504081, 42.010322] - }, - "n1820938045": { - "id": "n1820938045", - "loc": [-85.2663447, 41.99919] - }, - "n1820938046": { - "id": "n1820938046", - "loc": [-85.0507287, 42.102907] - }, - "n1820938047": { - "id": "n1820938047", - "loc": [-85.0408246, 42.1024743] - }, - "n1820938048": { - "id": "n1820938048", - "loc": [-85.2796335, 41.9866099] - }, - "n1820938050": { - "id": "n1820938050", - "loc": [-85.452475, 42.0061127] - }, - "n1820938051": { - "id": "n1820938051", - "loc": [-85.2410569, 42.0128147] - }, - "n1820938052": { - "id": "n1820938052", - "loc": [-85.0413302, 42.1011477] - }, - "n1820938053": { - "id": "n1820938053", - "loc": [-85.6327409, 41.9197627] - }, - "n1820938056": { - "id": "n1820938056", - "loc": [-85.1072039, 42.0857994] - }, - "n1820938057": { - "id": "n1820938057", - "loc": [-85.2001114, 42.0448145] - }, - "n1820938058": { - "id": "n1820938058", - "loc": [-85.2655347, 41.9978186] - }, - "n1820938059": { - "id": "n1820938059", - "loc": [-85.2330918, 42.0304874] - }, - "n1820938060": { - "id": "n1820938060", - "loc": [-85.2601113, 41.9966545] - }, - "n1820938061": { - "id": "n1820938061", - "loc": [-85.5397863, 41.9708494] - }, - "n1820938062": { - "id": "n1820938062", - "loc": [-85.2702085, 41.9977217] - }, - "n1820938063": { - "id": "n1820938063", - "loc": [-85.2219982, 42.03699] - }, - "n1820938064": { - "id": "n1820938064", - "loc": [-85.0668957, 42.105121] - }, - "n1820938065": { - "id": "n1820938065", - "loc": [-85.2328665, 42.0270769] - }, - "n1820938066": { - "id": "n1820938066", - "loc": [-85.3189654, 41.9694778] - }, - "n1820938067": { - "id": "n1820938067", - "loc": [-85.3814115, 42.0022915] - }, - "n1820938068": { - "id": "n1820938068", - "loc": [-85.2759108, 41.9956008] - }, - "n1820938069": { - "id": "n1820938069", - "loc": [-85.0391938, 42.1034853] - }, - "n1820938070": { - "id": "n1820938070", - "loc": [-85.2850623, 41.9810353] - }, - "n1820938071": { - "id": "n1820938071", - "loc": [-85.538074, 41.970855] - }, - "n1820938073": { - "id": "n1820938073", - "loc": [-85.1319661, 42.0670932] - }, - "n1820938074": { - "id": "n1820938074", - "loc": [-85.2816763, 41.9913678] - }, - "n1820938075": { - "id": "n1820938075", - "loc": [-85.3182144, 41.9700282] - }, - "n1820938076": { - "id": "n1820938076", - "loc": [-85.5909028, 41.9458989] - }, - "n1820938077": { - "id": "n1820938077", - "loc": [-85.4057617, 42.0074361] - }, - "n1820938078": { - "id": "n1820938078", - "loc": [-85.2620438, 41.9967729] - }, - "n1820938079": { - "id": "n1820938079", - "loc": [-85.1122143, 42.0851107] - }, - "n1820938080": { - "id": "n1820938080", - "loc": [-85.2443785, 42.0174567] - }, - "n1820938081": { - "id": "n1820938081", - "loc": [-85.0319733, 42.0953853] - }, - "n1820938082": { - "id": "n1820938082", - "loc": [-85.0878276, 42.09443] - }, - "n1820938083": { - "id": "n1820938083", - "loc": [-85.0271789, 42.0935809] - }, - "n1820938084": { - "id": "n1820938084", - "loc": [-85.0326399, 42.0974222] - }, - "n1820938085": { - "id": "n1820938085", - "loc": [-85.3989167, 42.0065592] - }, - "n1820938086": { - "id": "n1820938086", - "loc": [-85.3263361, 41.9721261] - }, - "n1820938087": { - "id": "n1820938087", - "loc": [-85.2547855, 42.0037134] - }, - "n1820938088": { - "id": "n1820938088", - "loc": [-85.4373259, 42.005746] - }, - "n1820938089": { - "id": "n1820938089", - "loc": [-85.3094275, 41.9699245] - }, - "n1820938090": { - "id": "n1820938090", - "loc": [-85.2783246, 41.9872793] - }, - "n1820938092": { - "id": "n1820938092", - "loc": [-85.0815633, 42.1025169] - }, - "n1820938093": { - "id": "n1820938093", - "loc": [-85.1788511, 42.0522134] - }, - "n1820938095": { - "id": "n1820938095", - "loc": [-85.2830345, 41.9816733] - }, - "n1820938096": { - "id": "n1820938096", - "loc": [-85.0744984, 42.1059835] - }, - "n1820938097": { - "id": "n1820938097", - "loc": [-85.2788396, 41.9879333] - }, - "n1820938098": { - "id": "n1820938098", - "loc": [-85.3640093, 41.9946531] - }, - "n1820938099": { - "id": "n1820938099", - "loc": [-85.291167, 41.9787463] - }, - "n1820938100": { - "id": "n1820938100", - "loc": [-85.0772436, 42.1038156] - }, - "n1820938101": { - "id": "n1820938101", - "loc": [-85.00563, 42.0887482] - }, - "n1820938102": { - "id": "n1820938102", - "loc": [-85.0326881, 42.0961245] - }, - "n1820938104": { - "id": "n1820938104", - "loc": [-85.0530448, 42.1038634] - }, - "n1820938105": { - "id": "n1820938105", - "loc": [-85.2625266, 41.9970639] - }, - "n1820938106": { - "id": "n1820938106", - "loc": [-85.2827556, 41.9823512] - }, - "n1820938107": { - "id": "n1820938107", - "loc": [-85.2784319, 41.9910752] - }, - "n1820938108": { - "id": "n1820938108", - "loc": [-85.0882099, 42.094393] - }, - "n1820938109": { - "id": "n1820938109", - "loc": [-85.5718484, 41.9645371] - }, - "n1820938110": { - "id": "n1820938110", - "loc": [-85.2559764, 42.0099317] - }, - "n1820938111": { - "id": "n1820938111", - "loc": [-85.2969284, 41.973179] - }, - "n1820938113": { - "id": "n1820938113", - "loc": [-85.3875055, 42.0019726] - }, - "n1820938114": { - "id": "n1820938114", - "loc": [-85.4250779, 42.0068199] - }, - "n1820938115": { - "id": "n1820938115", - "loc": [-85.0645367, 42.104889] - }, - "n1820938116": { - "id": "n1820938116", - "loc": [-85.1636762, 42.0623724] - }, - "n1820938117": { - "id": "n1820938117", - "loc": [-85.0757322, 42.1055935] - }, - "n1820938118": { - "id": "n1820938118", - "loc": [-85.3695197, 41.9981559] - }, - "n1820938120": { - "id": "n1820938120", - "loc": [-85.1297516, 42.0671027] - }, - "n1820938121": { - "id": "n1820938121", - "loc": [-85.1057448, 42.0875551] - }, - "n1820938122": { - "id": "n1820938122", - "loc": [-85.2805175, 41.9943182] - }, - "n1820938123": { - "id": "n1820938123", - "loc": [-85.2545173, 42.0040722] - }, - "n1820938124": { - "id": "n1820938124", - "loc": [-84.9966607, 42.0871319] - }, - "n1820938125": { - "id": "n1820938125", - "loc": [-85.0099899, 42.0904612] - }, - "n1820938126": { - "id": "n1820938126", - "loc": [-85.2489919, 42.0091102] - }, - "n1820938127": { - "id": "n1820938127", - "loc": [-85.0342706, 42.0979476] - }, - "n1820938128": { - "id": "n1820938128", - "loc": [-85.1080891, 42.0855884] - }, - "n1820938129": { - "id": "n1820938129", - "loc": [-85.0128183, 42.0905356] + "loc": [-85.630428, 41.943266] }, "n1820938130": { "id": "n1820938130", - "loc": [-85.631608, 41.9434251] - }, - "n1820938131": { - "id": "n1820938131", - "loc": [-85.2551975, 42.0008524] - }, - "n1820938132": { - "id": "n1820938132", - "loc": [-85.6421823, 41.9096233] - }, - "n1820938133": { - "id": "n1820938133", - "loc": [-85.0125059, 42.0906284] - }, - "n1820938134": { - "id": "n1820938134", - "loc": [-85.5499358, 41.9701793] - }, - "n1820938135": { - "id": "n1820938135", - "loc": [-85.5472107, 41.9712323] - }, - "n1820938136": { - "id": "n1820938136", - "loc": [-85.2760758, 41.9958691] - }, - "n1820938137": { - "id": "n1820938137", - "loc": [-85.276678, 41.9960433] - }, - "n1820938138": { - "id": "n1820938138", - "loc": [-85.0570319, 42.1024731] - }, - "n1820938140": { - "id": "n1820938140", - "loc": [-85.2394325, 42.0227492] - }, - "n1820938142": { - "id": "n1820938142", - "loc": [-85.5666341, 41.9638829] - }, - "n1820938144": { - "id": "n1820938144", - "loc": [-85.258101, 41.9996353] - }, - "n1820938147": { - "id": "n1820938147", - "loc": [-85.2129645, 42.0413565] - }, - "n1820938149": { - "id": "n1820938149", - "loc": [-84.9962369, 42.0868373] - }, - "n1820938151": { - "id": "n1820938151", - "loc": [-85.2570386, 42.0084968] - }, - "n1820938153": { - "id": "n1820938153", - "loc": [-85.3971142, 42.0050285] - }, - "n1820938155": { - "id": "n1820938155", - "loc": [-85.1072093, 42.0855566] - }, - "n1820938157": { - "id": "n1820938157", - "loc": [-85.2840323, 41.9920959] - }, - "n1820938159": { - "id": "n1820938159", - "loc": [-85.1187924, 42.0816458] - }, - "n1820938161": { - "id": "n1820938161", - "loc": [-85.2681324, 41.9985788] - }, - "n1820938163": { - "id": "n1820938163", - "loc": [-85.0887034, 42.0984969] - }, - "n1820938165": { - "id": "n1820938165", - "loc": [-85.4133405, 42.0073141] - }, - "n1820938166": { - "id": "n1820938166", - "loc": [-85.0097445, 42.0902888] - }, - "n1820938167": { - "id": "n1820938167", - "loc": [-85.0828133, 42.1037388] - }, - "n1820938168": { - "id": "n1820938168", - "loc": [-85.0549599, 42.1030833] - }, - "n1820938169": { - "id": "n1820938169", - "loc": [-85.4571528, 42.0010421] - }, - "n1820938178": { - "id": "n1820938178", - "loc": [-85.2706644, 41.9975941] - }, - "n1820938180": { - "id": "n1820938180", - "loc": [-85.2258606, 42.0335794] - }, - "n1820938182": { - "id": "n1820938182", - "loc": [-85.2832276, 41.9814659] - }, - "n1820938184": { - "id": "n1820938184", - "loc": [-85.1082299, 42.0860928] - }, - "n1820938185": { - "id": "n1820938185", - "loc": [-85.3839392, 42.0022381] - }, - "n1820938186": { - "id": "n1820938186", - "loc": [-85.2772131, 41.995905] - }, - "n1820938187": { - "id": "n1820938187", - "loc": [-85.1044895, 42.0879214] - }, - "n1820938188": { - "id": "n1820938188", - "loc": [-85.2135267, 42.0407087] - }, - "n1820938189": { - "id": "n1820938189", - "loc": [-85.2543993, 42.0044628] - }, - "n1820938190": { - "id": "n1820938190", - "loc": [-85.1501793, 42.0617351] - }, - "n1820938191": { - "id": "n1820938191", - "loc": [-85.3350587, 41.9820469] - }, - "n1820938192": { - "id": "n1820938192", - "loc": [-85.1350731, 42.0655735] - }, - "n1820938193": { - "id": "n1820938193", - "loc": [-85.0404008, 42.1028843] + "loc": [-85.631608, 41.943425] }, "n1820938194": { "id": "n1820938194", - "loc": [-85.6323161, 41.943042] - }, - "n1820938195": { - "id": "n1820938195", - "loc": [-85.1259593, 42.0742837] - }, - "n1820938196": { - "id": "n1820938196", - "loc": [-85.4562988, 42.0033758] - }, - "n1820938197": { - "id": "n1820938197", - "loc": [-85.256824, 42.0056826] - }, - "n1820938198": { - "id": "n1820938198", - "loc": [-85.2742103, 41.9963862] - }, - "n1820938199": { - "id": "n1820938199", - "loc": [-85.0380888, 42.1037877] - }, - "n1820938200": { - "id": "n1820938200", - "loc": [-85.47404, 41.9944721] - }, - "n1820938201": { - "id": "n1820938201", - "loc": [-85.103021, 42.087948] - }, - "n1820938202": { - "id": "n1820938202", - "loc": [-85.4030151, 42.0065113] - }, - "n1820938203": { - "id": "n1820938203", - "loc": [-85.2113981, 42.040735] - }, - "n1820938204": { - "id": "n1820938204", - "loc": [-85.2603433, 41.9965137] - }, - "n1820938206": { - "id": "n1820938206", - "loc": [-85.1669378, 42.0607634] - }, - "n1820938207": { - "id": "n1820938207", - "loc": [-85.0642027, 42.1046076] - }, - "n1820938208": { - "id": "n1820938208", - "loc": [-85.2812428, 41.9915696] - }, - "n1820938209": { - "id": "n1820938209", - "loc": [-85.0839559, 42.1038343] - }, - "n1820938210": { - "id": "n1820938210", - "loc": [-85.1239946, 42.0769368] - }, - "n1820938211": { - "id": "n1820938211", - "loc": [-85.2311177, 42.0283042] - }, - "n1820938212": { - "id": "n1820938212", - "loc": [-85.2791614, 41.9882682] - }, - "n1820938213": { - "id": "n1820938213", - "loc": [-85.2674941, 41.9987582] - }, - "n1820938214": { - "id": "n1820938214", - "loc": [-85.352787, 41.9919579] - }, - "n1820938215": { - "id": "n1820938215", - "loc": [-85.0874146, 42.0952182] - }, - "n1820938216": { - "id": "n1820938216", - "loc": [-85.0069711, 42.0877092] - }, - "n1820938217": { - "id": "n1820938217", - "loc": [-85.2059049, 42.0404004] - }, - "n1820938218": { - "id": "n1820938218", - "loc": [-85.2403552, 42.0227332] - }, - "n1820938219": { - "id": "n1820938219", - "loc": [-85.2492923, 42.0098915] - }, - "n1820938220": { - "id": "n1820938220", - "loc": [-85.269778, 41.9979541] - }, - "n1820938221": { - "id": "n1820938221", - "loc": [-85.2097673, 42.0389024] - }, - "n1820938222": { - "id": "n1820938222", - "loc": [-85.0845942, 42.1032015] - }, - "n1820938223": { - "id": "n1820938223", - "loc": [-84.993206, 42.0858142] - }, - "n1820938224": { - "id": "n1820938224", - "loc": [-85.2108187, 42.0402729] - }, - "n1820938225": { - "id": "n1820938225", - "loc": [-84.9893959, 42.0873043] - }, - "n1820938226": { - "id": "n1820938226", - "loc": [-85.2952332, 41.9719984] - }, - "n1820938227": { - "id": "n1820938227", - "loc": [-85.4100961, 42.0081536] - }, - "n1820938228": { - "id": "n1820938228", - "loc": [-85.3299088, 41.9785696] - }, - "n1820938229": { - "id": "n1820938229", - "loc": [-85.2258176, 42.0340097] - }, - "n1820938230": { - "id": "n1820938230", - "loc": [-85.3146739, 41.9711449] - }, - "n1820938231": { - "id": "n1820938231", - "loc": [-85.5447645, 41.9712801] - }, - "n1820938232": { - "id": "n1820938232", - "loc": [-85.5510087, 41.9705941] - }, - "n1820938233": { - "id": "n1820938233", - "loc": [-85.5122389, 41.9703445] - }, - "n1820938234": { - "id": "n1820938234", - "loc": [-85.2792687, 41.9865381] - }, - "n1820938235": { - "id": "n1820938235", - "loc": [-85.1475229, 42.0630151] - }, - "n1820938237": { - "id": "n1820938237", - "loc": [-85.0332889, 42.0996034] - }, - "n1820938238": { - "id": "n1820938238", - "loc": [-85.2588882, 41.9986877] - }, - "n1820938239": { - "id": "n1820938239", - "loc": [-85.0656458, 42.1050892] - }, - "n1820938240": { - "id": "n1820938240", - "loc": [-84.9913915, 42.086098] - }, - "n1820938241": { - "id": "n1820938241", - "loc": [-85.4752416, 41.9944402] - }, - "n1820938242": { - "id": "n1820938242", - "loc": [-85.1214304, 42.0791147] - }, - "n1820938243": { - "id": "n1820938243", - "loc": [-85.0075183, 42.0886925] - }, - "n1820938244": { - "id": "n1820938244", - "loc": [-85.1052888, 42.0872087] - }, - "n1820938245": { - "id": "n1820938245", - "loc": [-85.3104252, 41.9703393] - }, - "n1820938246": { - "id": "n1820938246", - "loc": [-85.232109, 42.0318158] - }, - "n1820938247": { - "id": "n1820938247", - "loc": [-85.0756075, 42.1059528] - }, - "n1820938248": { - "id": "n1820938248", - "loc": [-85.0075612, 42.0890866] - }, - "n1820938249": { - "id": "n1820938249", - "loc": [-85.1013312, 42.0897474] - }, - "n1820938250": { - "id": "n1820938250", - "loc": [-85.1168076, 42.0828919] - }, - "n1820938251": { - "id": "n1820938251", - "loc": [-85.2951367, 41.9723334] - }, - "n1820938252": { - "id": "n1820938252", - "loc": [-85.0879363, 42.0976053] - }, - "n1820938253": { - "id": "n1820938253", - "loc": [-85.0354763, 42.1021838] - }, - "n1820938254": { - "id": "n1820938254", - "loc": [-85.2379627, 42.0236339] - }, - "n1820938255": { - "id": "n1820938255", - "loc": [-85.1308245, 42.0685364] - }, - "n1820938256": { - "id": "n1820938256", - "loc": [-85.0914446, 42.0934774] - }, - "n1820938257": { - "id": "n1820938257", - "loc": [-85.2436812, 42.014069] - }, - "n1820938258": { - "id": "n1820938258", - "loc": [-85.0682529, 42.1056106] - }, - "n1820938259": { - "id": "n1820938259", - "loc": [-85.290652, 41.9766805] - }, - "n1820938260": { - "id": "n1820938260", - "loc": [-85.0133494, 42.0897434] - }, - "n1820938261": { - "id": "n1820938261", - "loc": [-85.2753047, 41.9949429] - }, - "n1820938262": { - "id": "n1820938262", - "loc": [-85.0314691, 42.0950788] - }, - "n1820938263": { - "id": "n1820938263", - "loc": [-85.3444786, 41.9908359] - }, - "n1820938264": { - "id": "n1820938264", - "loc": [-85.0443115, 42.1009061] - }, - "n1820938265": { - "id": "n1820938265", - "loc": [-85.0634853, 42.1043159] - }, - "n1820938267": { - "id": "n1820938267", - "loc": [-85.3978223, 42.0053952] - }, - "n1820938268": { - "id": "n1820938268", - "loc": [-85.0228659, 42.0911885] - }, - "n1820938269": { - "id": "n1820938269", - "loc": [-85.0220237, 42.0906272] - }, - "n1820938270": { - "id": "n1820938270", - "loc": [-85.1061525, 42.0863369] - }, - "n1820938271": { - "id": "n1820938271", - "loc": [-85.2382309, 42.0233708] - }, - "n1820938272": { - "id": "n1820938272", - "loc": [-85.310672, 41.9702755] - }, - "n1820938273": { - "id": "n1820938273", - "loc": [-85.1448192, 42.0652613] - }, - "n1820938274": { - "id": "n1820938274", - "loc": [-85.6036057, 41.9403766] - }, - "n1820938275": { - "id": "n1820938275", - "loc": [-85.0778941, 42.1032413] - }, - "n1820938276": { - "id": "n1820938276", - "loc": [-85.1279374, 42.0723974] - }, - "n1820938277": { - "id": "n1820938277", - "loc": [-85.2806635, 41.9847836] - }, - "n1820938278": { - "id": "n1820938278", - "loc": [-85.2653201, 41.9976352] - }, - "n1820938279": { - "id": "n1820938279", - "loc": [-85.0351665, 42.1001805] - }, - "n1820938280": { - "id": "n1820938280", - "loc": [-85.0718269, 42.1056253] - }, - "n1820938281": { - "id": "n1820938281", - "loc": [-85.2574248, 42.0075322] - }, - "n1820938282": { - "id": "n1820938282", - "loc": [-85.126666, 42.0740778] - }, - "n1820938283": { - "id": "n1820938283", - "loc": [-85.077705, 42.1034733] - }, - "n1820938284": { - "id": "n1820938284", - "loc": [-85.3535552, 41.9919045] - }, - "n1820938286": { - "id": "n1820938286", - "loc": [-85.2810711, 41.9866657] - }, - "n1820938287": { - "id": "n1820938287", - "loc": [-85.4567494, 42.0019885] - }, - "n1820938288": { - "id": "n1820938288", - "loc": [-85.2642419, 41.9992936] - }, - "n1820938289": { - "id": "n1820938289", - "loc": [-85.2643344, 41.9980925] - }, - "n1820938290": { - "id": "n1820938290", - "loc": [-85.3270335, 41.9776125] - }, - "n1820938291": { - "id": "n1820938291", - "loc": [-85.1200584, 42.0795077] - }, - "n1820938292": { - "id": "n1820938292", - "loc": [-85.2290792, 42.0340256] - }, - "n1820938293": { - "id": "n1820938293", - "loc": [-85.6015887, 41.9401372] - }, - "n1820938294": { - "id": "n1820938294", - "loc": [-85.5370869, 41.970488] - }, - "n1820938295": { - "id": "n1820938295", - "loc": [-85.3108866, 41.9698048] - }, - "n1820938297": { - "id": "n1820938297", - "loc": [-85.1556511, 42.0628184] - }, - "n1820938298": { - "id": "n1820938298", - "loc": [-85.0027922, 42.0875221] - }, - "n1820938300": { - "id": "n1820938300", - "loc": [-85.3873338, 42.0040614] - }, - "n1820938301": { - "id": "n1820938301", - "loc": [-85.0350753, 42.1004034] + "loc": [-85.632316, 41.943042] }, "n1820938302": { "id": "n1820938302", - "loc": [-85.6239476, 41.9411906] - }, - "n1820938304": { - "id": "n1820938304", - "loc": [-85.0118246, 42.0897964] - }, - "n1820938306": { - "id": "n1820938306", - "loc": [-85.4796877, 41.995275] - }, - "n1820938307": { - "id": "n1820938307", - "loc": [-85.5388636, 41.9707856] - }, - "n1820938309": { - "id": "n1820938309", - "loc": [-85.2971902, 41.9727773] - }, - "n1820938310": { - "id": "n1820938310", - "loc": [-85.5426831, 41.9715513] - }, - "n1820938311": { - "id": "n1820938311", - "loc": [-85.2798373, 41.9836671] - }, - "n1820938312": { - "id": "n1820938312", - "loc": [-85.2432198, 42.0104017] - }, - "n1820938313": { - "id": "n1820938313", - "loc": [-85.2650412, 41.9987554] - }, - "n1820938317": { - "id": "n1820938317", - "loc": [-85.0015423, 42.0882386] - }, - "n1820938318": { - "id": "n1820938318", - "loc": [-85.1409783, 42.064879] - }, - "n1820938319": { - "id": "n1820938319", - "loc": [-85.1691908, 42.058995] - }, - "n1820938320": { - "id": "n1820938320", - "loc": [-85.1059165, 42.0864882] - }, - "n1820938321": { - "id": "n1820938321", - "loc": [-85.3664941, 41.9965771] - }, - "n1820938323": { - "id": "n1820938323", - "loc": [-85.3143198, 41.9710971] - }, - "n1820938324": { - "id": "n1820938324", - "loc": [-85.0016067, 42.0880675] - }, - "n1820938325": { - "id": "n1820938325", - "loc": [-85.0148139, 42.0887164] - }, - "n1820938326": { - "id": "n1820938326", - "loc": [-85.0324682, 42.0959056] - }, - "n1820938327": { - "id": "n1820938327", - "loc": [-85.0898661, 42.0939921] - }, - "n1820938328": { - "id": "n1820938328", - "loc": [-85.2556427, 42.0004936] + "loc": [-85.623948, 41.941191] }, "n1820938329": { "id": "n1820938329", - "loc": [-85.6287112, 41.9407437] - }, - "n1820938330": { - "id": "n1820938330", - "loc": [-84.9913392, 42.0866701] - }, - "n1820938331": { - "id": "n1820938331", - "loc": [-85.2685777, 41.9984632] - }, - "n1820938332": { - "id": "n1820938332", - "loc": [-85.0078884, 42.0901614] - }, - "n1820938333": { - "id": "n1820938333", - "loc": [-84.999642, 42.0878616] - }, - "n1820938334": { - "id": "n1820938334", - "loc": [-85.0188909, 42.0899186] - }, - "n1820938335": { - "id": "n1820938335", - "loc": [-85.2830238, 41.9819843] - }, - "n1820938336": { - "id": "n1820938336", - "loc": [-85.2491421, 42.0096204] - }, - "n1820938337": { - "id": "n1820938337", - "loc": [-85.0585701, 42.1034295] - }, - "n1820938338": { - "id": "n1820938338", - "loc": [-85.0651965, 42.1051636] - }, - "n1820938339": { - "id": "n1820938339", - "loc": [-85.0583944, 42.104292] - }, - "n1820938340": { - "id": "n1820938340", - "loc": [-85.119876, 42.0801567] - }, - "n1820938341": { - "id": "n1820938341", - "loc": [-85.0943937, 42.0931323] - }, - "n1820938342": { - "id": "n1820938342", - "loc": [-85.1504583, 42.0613209] - }, - "n1820938343": { - "id": "n1820938343", - "loc": [-85.0425426, 42.1019836] - }, - "n1820938345": { - "id": "n1820938345", - "loc": [-84.9991391, 42.0878206] - }, - "n1820938346": { - "id": "n1820938346", - "loc": [-85.2563841, 42.0094614] - }, - "n1820938347": { - "id": "n1820938347", - "loc": [-85.0515387, 42.103297] - }, - "n1820938348": { - "id": "n1820938348", - "loc": [-85.0857261, 42.1003636] - }, - "n1820938349": { - "id": "n1820938349", - "loc": [-85.078971, 42.1029241] - }, - "n1820938350": { - "id": "n1820938350", - "loc": [-85.5699558, 41.958931] - }, - "n1820938351": { - "id": "n1820938351", - "loc": [-85.3181285, 41.9696533] - }, - "n1820938352": { - "id": "n1820938352", - "loc": [-85.5998506, 41.9402329] - }, - "n1820938353": { - "id": "n1820938353", - "loc": [-85.2567277, 42.000317] - }, - "n1820938354": { - "id": "n1820938354", - "loc": [-85.3082795, 41.9708338] - }, - "n1820938355": { - "id": "n1820938355", - "loc": [-85.3127856, 41.9692784] - }, - "n1820938356": { - "id": "n1820938356", - "loc": [-85.0340775, 42.1010721] - }, - "n1820938357": { - "id": "n1820938357", - "loc": [-85.3158111, 41.9706583] - }, - "n1820938359": { - "id": "n1820938359", - "loc": [-85.2312035, 42.0280412] - }, - "n1820938360": { - "id": "n1820938360", - "loc": [-85.2448613, 42.018477] - }, - "n1820938361": { - "id": "n1820938361", - "loc": [-85.29077, 41.9759068] - }, - "n1820938364": { - "id": "n1820938364", - "loc": [-85.3677387, 41.9976615] - }, - "n1820938365": { - "id": "n1820938365", - "loc": [-85.0785204, 42.1030355] - }, - "n1820938366": { - "id": "n1820938366", - "loc": [-85.2262039, 42.0333722] - }, - "n1820938367": { - "id": "n1820938367", - "loc": [-85.1226011, 42.0780902] - }, - "n1820938368": { - "id": "n1820938368", - "loc": [-85.3229673, 41.971129] - }, - "n1820938369": { - "id": "n1820938369", - "loc": [-85.385334, 42.0000056] - }, - "n1820938370": { - "id": "n1820938370", - "loc": [-85.000098, 42.0879094] - }, - "n1820938372": { - "id": "n1820938372", - "loc": [-85.3852481, 42.0025091] - }, - "n1820938373": { - "id": "n1820938373", - "loc": [-85.3770513, 41.9982515] + "loc": [-85.628711, 41.940744] }, "n1820938374": { "id": "n1820938374", - "loc": [-85.6278314, 41.9405362] + "loc": [-85.627831, 41.940536] }, "n1820938375": { "id": "n1820938375", - "loc": [-85.6355133, 41.9344068] + "loc": [-85.635513, 41.934407] }, "n1820938376": { "id": "n1820938376", - "loc": [-85.635642, 41.9324753] - }, - "n1820938377": { - "id": "n1820938377", - "loc": [-85.3154463, 41.970778] - }, - "n1820938378": { - "id": "n1820938378", - "loc": [-85.0920334, 42.093411] - }, - "n1820938379": { - "id": "n1820938379", - "loc": [-85.3269155, 41.9722297] - }, - "n1820938381": { - "id": "n1820938381", - "loc": [-85.1134334, 42.0849184] - }, - "n1820938382": { - "id": "n1820938382", - "loc": [-85.005968, 42.088585] - }, - "n1820938384": { - "id": "n1820938384", - "loc": [-85.1245203, 42.0757183] - }, - "n1820938385": { - "id": "n1820938385", - "loc": [-85.020704, 42.0905396] - }, - "n1820938386": { - "id": "n1820938386", - "loc": [-85.119585, 42.0808984] - }, - "n1820938387": { - "id": "n1820938387", - "loc": [-85.0072447, 42.0880117] - }, - "n1820938388": { - "id": "n1820938388", - "loc": [-85.2742908, 41.9960273] - }, - "n1820938389": { - "id": "n1820938389", - "loc": [-85.3275807, 41.9696852] - }, - "n1820938390": { - "id": "n1820938390", - "loc": [-85.2385635, 42.0231556] - }, - "n1820938392": { - "id": "n1820938392", - "loc": [-85.0202856, 42.0900778] - }, - "n1820938393": { - "id": "n1820938393", - "loc": [-85.2067847, 42.0395398] - }, - "n1820938394": { - "id": "n1820938394", - "loc": [-85.5183544, 41.9713495] - }, - "n1820938396": { - "id": "n1820938396", - "loc": [-85.5073037, 41.9736787] - }, - "n1820938397": { - "id": "n1820938397", - "loc": [-85.2519638, 42.0114225] - }, - "n1820938398": { - "id": "n1820938398", - "loc": [-85.287487, 41.9793285] - }, - "n1820938399": { - "id": "n1820938399", - "loc": [-85.2298088, 42.0336431] - }, - "n1820938400": { - "id": "n1820938400", - "loc": [-85.229444, 42.0339141] - }, - "n1820938401": { - "id": "n1820938401", - "loc": [-85.2421791, 42.0220239] - }, - "n1820938402": { - "id": "n1820938402", - "loc": [-85.2976687, 41.9737612] - }, - "n1820938403": { - "id": "n1820938403", - "loc": [-85.3622069, 41.993473] - }, - "n1820938404": { - "id": "n1820938404", - "loc": [-85.2465458, 42.014906] - }, - "n1820938405": { - "id": "n1820938405", - "loc": [-85.5724663, 41.9639412] - }, - "n1820938406": { - "id": "n1820938406", - "loc": [-85.3708501, 41.9982037] - }, - "n1820938408": { - "id": "n1820938408", - "loc": [-85.2564592, 42.0055311] - }, - "n1820938409": { - "id": "n1820938409", - "loc": [-85.1192846, 42.0810856] - }, - "n1820938410": { - "id": "n1820938410", - "loc": [-85.5623812, 41.971663] - }, - "n1820938411": { - "id": "n1820938411", - "loc": [-85.3221948, 41.9719665] - }, - "n1820938412": { - "id": "n1820938412", - "loc": [-85.5168738, 41.9710305] - }, - "n1820938413": { - "id": "n1820938413", - "loc": [-85.4546852, 42.0061127] - }, - "n1820938414": { - "id": "n1820938414", - "loc": [-85.5896153, 41.9463617] - }, - "n1820938415": { - "id": "n1820938415", - "loc": [-85.2978189, 41.9722138] - }, - "n1820938416": { - "id": "n1820938416", - "loc": [-85.1021681, 42.0883581] - }, - "n1820938417": { - "id": "n1820938417", - "loc": [-85.2797193, 41.9912984] - }, - "n1820938419": { - "id": "n1820938419", - "loc": [-85.2362461, 42.0248533] - }, - "n1820938420": { - "id": "n1820938420", - "loc": [-85.4833639, 41.9846252] - }, - "n1820938422": { - "id": "n1820938422", - "loc": [-85.3281064, 41.9689433] - }, - "n1820938424": { - "id": "n1820938424", - "loc": [-85.2416963, 42.0130088] - }, - "n1820938425": { - "id": "n1820938425", - "loc": [-85.5718655, 41.9564577] - }, - "n1820938426": { - "id": "n1820938426", - "loc": [-85.0512812, 42.1030701] - }, - "n1820938427": { - "id": "n1820938427", - "loc": [-85.1273527, 42.0723616] - }, - "n1820938428": { - "id": "n1820938428", - "loc": [-85.0215033, 42.0904083] + "loc": [-85.635642, 41.932475] }, "n1820938429": { "id": "n1820938429", - "loc": [-85.6169953, 41.942228] - }, - "n1820938430": { - "id": "n1820938430", - "loc": [-85.2829165, 41.9907243] - }, - "n1820938431": { - "id": "n1820938431", - "loc": [-85.2240796, 42.0374203] - }, - "n1820938432": { - "id": "n1820938432", - "loc": [-85.0167598, 42.0898442] - }, - "n1820938433": { - "id": "n1820938433", - "loc": [-85.2132649, 42.0411334] - }, - "n1820938434": { - "id": "n1820938434", - "loc": [-85.2293839, 42.031513] - }, - "n1820938435": { - "id": "n1820938435", - "loc": [-85.1203374, 42.0792608] - }, - "n1820938436": { - "id": "n1820938436", - "loc": [-85.109571, 42.086268] - }, - "n1820938437": { - "id": "n1820938437", - "loc": [-85.1079026, 42.0853842] - }, - "n1820938438": { - "id": "n1820938438", - "loc": [-85.109237, 42.0862413] - }, - "n1820938439": { - "id": "n1820938439", - "loc": [-85.2259936, 42.0350831] - }, - "n1820938440": { - "id": "n1820938440", - "loc": [-85.3669705, 41.99679] - }, - "n1820938441": { - "id": "n1820938441", - "loc": [-85.2418143, 42.0223507] - }, - "n1820938442": { - "id": "n1820938442", - "loc": [-85.3101248, 41.9702515] - }, - "n1820938443": { - "id": "n1820938443", - "loc": [-85.069315, 42.1059688] - }, - "n1820938444": { - "id": "n1820938444", - "loc": [-85.205862, 42.0410378] - }, - "n1820938445": { - "id": "n1820938445", - "loc": [-85.0388076, 42.1036604] - }, - "n1820938446": { - "id": "n1820938446", - "loc": [-85.2225389, 42.0370115] - }, - "n1820938447": { - "id": "n1820938447", - "loc": [-85.3241474, 41.9719346] - }, - "n1820938448": { - "id": "n1820938448", - "loc": [-85.3125496, 41.9690789] - }, - "n1820938449": { - "id": "n1820938449", - "loc": [-85.1146497, 42.0857039] - }, - "n1820938450": { - "id": "n1820938450", - "loc": [-85.1333944, 42.0714963] - }, - "n1820938451": { - "id": "n1820938451", - "loc": [-85.5619306, 41.9720937] - }, - "n1820938452": { - "id": "n1820938452", - "loc": [-85.2553651, 42.0006479] - }, - "n1820938453": { - "id": "n1820938453", - "loc": [-85.3151137, 41.9710093] - }, - "n1820938454": { - "id": "n1820938454", - "loc": [-85.2592315, 41.9977947] - }, - "n1820938455": { - "id": "n1820938455", - "loc": [-85.2655723, 41.9995966] - }, - "n1820938456": { - "id": "n1820938456", - "loc": [-85.4820652, 41.9959233] - }, - "n1820938459": { - "id": "n1820938459", - "loc": [-85.450737, 42.0055068] - }, - "n1820938460": { - "id": "n1820938460", - "loc": [-85.2428658, 42.0205573] - }, - "n1820938461": { - "id": "n1820938461", - "loc": [-85.0835576, 42.1021559] - }, - "n1820938462": { - "id": "n1820938462", - "loc": [-85.244636, 42.0194733] - }, - "n1820938463": { - "id": "n1820938463", - "loc": [-85.5702562, 41.9581332] - }, - "n1820938465": { - "id": "n1820938465", - "loc": [-85.5680031, 41.9659515] - }, - "n1820938467": { - "id": "n1820938467", - "loc": [-85.2798752, 41.9948353] - }, - "n1820938468": { - "id": "n1820938468", - "loc": [-85.0477407, 42.1015537] - }, - "n1820938469": { - "id": "n1820938469", - "loc": [-85.6403842, 41.913732] - }, - "n1820938470": { - "id": "n1820938470", - "loc": [-85.0396029, 42.103289] - }, - "n1820938471": { - "id": "n1820938471", - "loc": [-85.2824702, 41.9907777] - }, - "n1820938472": { - "id": "n1820938472", - "loc": [-85.2969284, 41.9735538] - }, - "n1820938474": { - "id": "n1820938474", - "loc": [-85.401041, 42.0070853] - }, - "n1820938475": { - "id": "n1820938475", - "loc": [-85.4116625, 42.0073883] - }, - "n1820938476": { - "id": "n1820938476", - "loc": [-85.0437764, 42.1016214] - }, - "n1820938477": { - "id": "n1820938477", - "loc": [-85.3643269, 41.9958436] - }, - "n1820938478": { - "id": "n1820938478", - "loc": [-85.3895182, 42.0009465] + "loc": [-85.616995, 41.942228] }, "n1820938479": { "id": "n1820938479", - "loc": [-85.636157, 41.9333373] - }, - "n1820938480": { - "id": "n1820938480", - "loc": [-85.2811355, 41.9858044] - }, - "n1820938481": { - "id": "n1820938481", - "loc": [-85.0239052, 42.092153] - }, - "n1820938482": { - "id": "n1820938482", - "loc": [-85.2558798, 42.0053557] - }, - "n1820938483": { - "id": "n1820938483", - "loc": [-85.2544422, 42.0047339] - }, - "n1820938484": { - "id": "n1820938484", - "loc": [-85.4864683, 41.9843183] - }, - "n1820938485": { - "id": "n1820938485", - "loc": [-85.2554185, 42.0031075] - }, - "n1820938486": { - "id": "n1820938486", - "loc": [-85.3082795, 41.9712486] - }, - "n1820938487": { - "id": "n1820938487", - "loc": [-85.2433378, 42.0133436] - }, - "n1820938488": { - "id": "n1820938488", - "loc": [-85.0216696, 42.0904162] - }, - "n1820938489": { - "id": "n1820938489", - "loc": [-85.2546138, 42.0050289] - }, - "n1820938490": { - "id": "n1820938490", - "loc": [-85.2717521, 41.9977349] - }, - "n1820938491": { - "id": "n1820938491", - "loc": [-85.0100489, 42.0908195] - }, - "n1820938492": { - "id": "n1820938492", - "loc": [-85.207879, 42.0392211] - }, - "n1820938493": { - "id": "n1820938493", - "loc": [-85.0007363, 42.0882836] - }, - "n1820938494": { - "id": "n1820938494", - "loc": [-85.5775303, 41.9504097] - }, - "n1820938495": { - "id": "n1820938495", - "loc": [-85.1131584, 42.0847683] - }, - "n1820938496": { - "id": "n1820938496", - "loc": [-85.0887825, 42.0941633] - }, - "n1820938497": { - "id": "n1820938497", - "loc": [-85.1185926, 42.0818938] - }, - "n1820938498": { - "id": "n1820938498", - "loc": [-85.2748487, 41.9948712] - }, - "n1820938499": { - "id": "n1820938499", - "loc": [-85.2566952, 42.0090788] - }, - "n1820938500": { - "id": "n1820938500", - "loc": [-85.0774757, 42.1036234] - }, - "n1820938501": { - "id": "n1820938501", - "loc": [-85.4190869, 42.008903] - }, - "n1820938502": { - "id": "n1820938502", - "loc": [-85.1140395, 42.0850577] - }, - "n1820938503": { - "id": "n1820938503", - "loc": [-85.1136104, 42.0848627] - }, - "n1820938504": { - "id": "n1820938504", - "loc": [-85.5828089, 41.9480638] + "loc": [-85.636157, 41.933337] }, "n1820938505": { "id": "n1820938505", - "loc": [-85.625514, 41.9405202] - }, - "n1820938506": { - "id": "n1820938506", - "loc": [-85.2063384, 42.0398322] - }, - "n1820938507": { - "id": "n1820938507", - "loc": [-85.3395476, 41.9851636] - }, - "n1820938508": { - "id": "n1820938508", - "loc": [-85.0328853, 42.0963606] - }, - "n1820938510": { - "id": "n1820938510", - "loc": [-85.1170369, 42.0843702] - }, - "n1820938511": { - "id": "n1820938511", - "loc": [-85.2784748, 41.9868487] + "loc": [-85.625514, 41.94052] }, "n1820938512": { "id": "n1820938512", - "loc": [-85.6310501, 41.9435528] - }, - "n1820938514": { - "id": "n1820938514", - "loc": [-85.0334284, 42.0981028] - }, - "n1820938515": { - "id": "n1820938515", - "loc": [-84.9912091, 42.0868226] - }, - "n1820938516": { - "id": "n1820938516", - "loc": [-85.2806141, 41.9940351] - }, - "n1820938517": { - "id": "n1820938517", - "loc": [-85.1233025, 42.0776734] - }, - "n1820938518": { - "id": "n1820938518", - "loc": [-85.2047891, 42.0429023] - }, - "n1820938519": { - "id": "n1820938519", - "loc": [-85.1475443, 42.0648312] - }, - "n1820938520": { - "id": "n1820938520", - "loc": [-85.2644685, 41.9990891] - }, - "n1820938521": { - "id": "n1820938521", - "loc": [-85.1056281, 42.0872553] - }, - "n1820938522": { - "id": "n1820938522", - "loc": [-85.4813184, 41.9930105] - }, - "n1820938523": { - "id": "n1820938523", - "loc": [-85.321551, 41.9722936] - }, - "n1820938524": { - "id": "n1820938524", - "loc": [-85.1564664, 42.0631211] - }, - "n1820938525": { - "id": "n1820938525", - "loc": [-85.4149885, 42.0079144] - }, - "n1820938527": { - "id": "n1820938527", - "loc": [-85.2861888, 41.9803653] - }, - "n1820938528": { - "id": "n1820938528", - "loc": [-85.1301379, 42.0682178] - }, - "n1820938529": { - "id": "n1820938529", - "loc": [-85.4156537, 42.0084247] - }, - "n1820938530": { - "id": "n1820938530", - "loc": [-85.245151, 42.0176082] - }, - "n1820938531": { - "id": "n1820938531", - "loc": [-85.457818, 42.0001651] - }, - "n1820938532": { - "id": "n1820938532", - "loc": [-85.310951, 41.9694538] - }, - "n1820938533": { - "id": "n1820938533", - "loc": [-85.1509089, 42.0611298] - }, - "n1820938534": { - "id": "n1820938534", - "loc": [-85.1108249, 42.086321] - }, - "n1820938535": { - "id": "n1820938535", - "loc": [-85.1260344, 42.0740687] - }, - "n1820938536": { - "id": "n1820938536", - "loc": [-85.4561228, 42.0042791] - }, - "n1820938537": { - "id": "n1820938537", - "loc": [-85.2805082, 41.9945761] - }, - "n1820938538": { - "id": "n1820938538", - "loc": [-85.273352, 41.9981921] - }, - "n1820938539": { - "id": "n1820938539", - "loc": [-85.1084216, 42.0864364] - }, - "n1820938540": { - "id": "n1820938540", - "loc": [-85.5009737, 41.9773637] - }, - "n1820938541": { - "id": "n1820938541", - "loc": [-85.3960843, 42.0051879] - }, - "n1820938542": { - "id": "n1820938542", - "loc": [-85.3425088, 41.9865034] - }, - "n1820938545": { - "id": "n1820938545", - "loc": [-84.9937907, 42.0860849] - }, - "n1820938546": { - "id": "n1820938546", - "loc": [-85.1084176, 42.086065] - }, - "n1820938547": { - "id": "n1820938547", - "loc": [-85.3492851, 41.9924786] - }, - "n1820938548": { - "id": "n1820938548", - "loc": [-85.2512235, 42.0101147] - }, - "n1820938549": { - "id": "n1820938549", - "loc": [-85.3717298, 41.9979326] - }, - "n1820938551": { - "id": "n1820938551", - "loc": [-85.2573712, 42.0064081] - }, - "n1820938552": { - "id": "n1820938552", - "loc": [-85.2514596, 42.010139] - }, - "n1820938553": { - "id": "n1820938553", - "loc": [-85.416512, 42.0088073] - }, - "n1820938554": { - "id": "n1820938554", - "loc": [-85.4365964, 42.0061606] - }, - "n1820938555": { - "id": "n1820938555", - "loc": [-85.4552431, 42.0057301] - }, - "n1820938556": { - "id": "n1820938556", - "loc": [-85.2916283, 41.9778769] - }, - "n1820938557": { - "id": "n1820938557", - "loc": [-85.100709, 42.0902968] - }, - "n1820938558": { - "id": "n1820938558", - "loc": [-85.4703064, 41.9965771] - }, - "n1820938559": { - "id": "n1820938559", - "loc": [-85.3134722, 41.9696134] - }, - "n1820938560": { - "id": "n1820938560", - "loc": [-85.4834213, 41.9885768] - }, - "n1820938561": { - "id": "n1820938561", - "loc": [-85.2740641, 41.9975236] - }, - "n1820938562": { - "id": "n1820938562", - "loc": [-85.148334, 42.0623405] - }, - "n1820938563": { - "id": "n1820938563", - "loc": [-85.2358598, 42.0263675] - }, - "n1820938565": { - "id": "n1820938565", - "loc": [-85.2902979, 41.9790892] - }, - "n1820938566": { - "id": "n1820938566", - "loc": [-85.2528865, 42.0112869] - }, - "n1820938567": { - "id": "n1820938567", - "loc": [-85.2595319, 41.9973003] - }, - "n1820938568": { - "id": "n1820938568", - "loc": [-85.071151, 42.105689] - }, - "n1820938570": { - "id": "n1820938570", - "loc": [-85.299278, 41.9732188] - }, - "n1820938571": { - "id": "n1820938571", - "loc": [-85.0354669, 42.1024771] - }, - "n1820938583": { - "id": "n1820938583", - "loc": [-85.3313937, 41.972562] - }, - "n1820938585": { - "id": "n1820938585", - "loc": [-85.0756933, 42.1058334] - }, - "n1820938587": { - "id": "n1820938587", - "loc": [-85.3130324, 41.9694219] - }, - "n1820938590": { - "id": "n1820938590", - "loc": [-85.0934227, 42.0931681] - }, - "n1820938592": { - "id": "n1820938592", - "loc": [-85.3517956, 41.9922553] - }, - "n1820938593": { - "id": "n1820938593", - "loc": [-85.4023971, 42.0065169] - }, - "n1820938594": { - "id": "n1820938594", - "loc": [-85.3506798, 41.9925583] - }, - "n1820938595": { - "id": "n1820938595", - "loc": [-85.3673524, 41.9971193] - }, - "n1820938596": { - "id": "n1820938596", - "loc": [-85.1073608, 42.0853523] - }, - "n1820938597": { - "id": "n1820938597", - "loc": [-85.2976579, 41.972477] - }, - "n1820938598": { - "id": "n1820938598", - "loc": [-85.5616517, 41.9694295] - }, - "n1820938599": { - "id": "n1820938599", - "loc": [-85.3552074, 41.9921915] - }, - "n1820938600": { - "id": "n1820938600", - "loc": [-85.4665126, 41.9999953] - }, - "n1820938601": { - "id": "n1820938601", - "loc": [-85.2740695, 41.9966226] - }, - "n1820938602": { - "id": "n1820938602", - "loc": [-85.279376, 41.9886669] - }, - "n1820938603": { - "id": "n1820938603", - "loc": [-85.0771109, 42.1040413] - }, - "n1820938604": { - "id": "n1820938604", - "loc": [-85.2636049, 41.9977895] - }, - "n1820938605": { - "id": "n1820938605", - "loc": [-85.3762145, 41.9976456] - }, - "n1820938606": { - "id": "n1820938606", - "loc": [-85.2321369, 42.0289577] - }, - "n1820938620": { - "id": "n1820938620", - "loc": [-85.4947724, 41.9776189] - }, - "n1820938622": { - "id": "n1820938622", - "loc": [-85.1547069, 42.0622768] - }, - "n1820938624": { - "id": "n1820938624", - "loc": [-85.0005056, 42.0880249] - }, - "n1820938626": { - "id": "n1820938626", - "loc": [-85.0735596, 42.1059357] - }, - "n1820938628": { - "id": "n1820938628", - "loc": [-85.4665298, 41.99932] - }, - "n1820938629": { - "id": "n1820938629", - "loc": [-85.434515, 42.0065273] - }, - "n1820938630": { - "id": "n1820938630", - "loc": [-85.117462, 42.0823823] - }, - "n1820938631": { - "id": "n1820938631", - "loc": [-85.0131777, 42.0890707] - }, - "n1820938632": { - "id": "n1820938632", - "loc": [-85.0875326, 42.0961934] - }, - "n1820938634": { - "id": "n1820938634", - "loc": [-85.6433839, 41.9112042] - }, - "n1820938635": { - "id": "n1820938635", - "loc": [-85.1366181, 42.064969] - }, - "n1820938636": { - "id": "n1820938636", - "loc": [-85.073109, 42.1057925] - }, - "n1820938638": { - "id": "n1820938638", - "loc": [-85.161406, 42.0632541] - }, - "n1820938640": { - "id": "n1820938640", - "loc": [-85.6343932, 41.9188845] - }, - "n1820938642": { - "id": "n1820938642", - "loc": [-85.2500004, 42.010306] - }, - "n1820938644": { - "id": "n1820938644", - "loc": [-85.291918, 41.9753166] - }, - "n1820938663": { - "id": "n1820938663", - "loc": [-85.2841611, 41.9916812] - }, - "n1820938664": { - "id": "n1820938664", - "loc": [-85.1052955, 42.0868134] - }, - "n1820938665": { - "id": "n1820938665", - "loc": [-85.4606118, 42.0005534] - }, - "n1820938666": { - "id": "n1820938666", - "loc": [-85.5672736, 41.9642922] + "loc": [-85.63105, 41.943553] }, "n1820938667": { "id": "n1820938667", - "loc": [-85.6348481, 41.9316932] - }, - "n1820938668": { - "id": "n1820938668", - "loc": [-85.0224904, 42.0909576] - }, - "n1820938669": { - "id": "n1820938669", - "loc": [-85.0133856, 42.0899755] - }, - "n1820938670": { - "id": "n1820938670", - "loc": [-85.344779, 41.991139] + "loc": [-85.634848, 41.931693] }, "n1820938671": { "id": "n1820938671", - "loc": [-85.632874, 41.9425313] - }, - "n1820938673": { - "id": "n1820938673", - "loc": [-85.4941501, 41.9779698] - }, - "n1820938675": { - "id": "n1820938675", - "loc": [-85.0862559, 42.0997519] - }, - "n1820938676": { - "id": "n1820938676", - "loc": [-85.0097874, 42.0898032] - }, - "n1820938678": { - "id": "n1820938678", - "loc": [-84.9913553, 42.0863675] - }, - "n1820938680": { - "id": "n1820938680", - "loc": [-85.0533666, 42.1038315] - }, - "n1820938682": { - "id": "n1820938682", - "loc": [-85.2950294, 41.9743914] - }, - "n1820938684": { - "id": "n1820938684", - "loc": [-85.2517385, 42.0104499] - }, - "n1820938686": { - "id": "n1820938686", - "loc": [-85.0247971, 42.0922514] - }, - "n1820938688": { - "id": "n1820938688", - "loc": [-85.0807037, 42.1026017] - }, - "n1820938690": { - "id": "n1820938690", - "loc": [-85.52462, 41.9722748] - }, - "n1820938694": { - "id": "n1820938694", - "loc": [-85.2586535, 41.9988818] - }, - "n1820938695": { - "id": "n1820938695", - "loc": [-85.0931612, 42.092948] - }, - "n1820938697": { - "id": "n1820938697", - "loc": [-85.2470822, 42.016564] - }, - "n1820938698": { - "id": "n1820938698", - "loc": [-85.4143018, 42.0075158] - }, - "n1820938699": { - "id": "n1820938699", - "loc": [-85.0771484, 42.104487] - }, - "n1820938700": { - "id": "n1820938700", - "loc": [-85.0291208, 42.0942775] - }, - "n1820938701": { - "id": "n1820938701", - "loc": [-85.6367964, 41.9185971] - }, - "n1820938702": { - "id": "n1820938702", - "loc": [-85.085419, 42.1010693] - }, - "n1820938703": { - "id": "n1820938703", - "loc": [-85.0583877, 42.1040584] - }, - "n1820938705": { - "id": "n1820938705", - "loc": [-85.2573379, 42.0003182] - }, - "n1820938706": { - "id": "n1820938706", - "loc": [-85.2655937, 41.9981575] - }, - "n1820938707": { - "id": "n1820938707", - "loc": [-85.023181, 42.0915758] - }, - "n1820938708": { - "id": "n1820938708", - "loc": [-85.2318687, 42.0274674] - }, - "n1820938709": { - "id": "n1820938709", - "loc": [-85.1056389, 42.0866184] - }, - "n1820938710": { - "id": "n1820938710", - "loc": [-85.5276265, 41.9700978] - }, - "n1820938711": { - "id": "n1820938711", - "loc": [-85.0864128, 42.0945761] - }, - "n1820938712": { - "id": "n1820938712", - "loc": [-84.9897071, 42.0871888] - }, - "n1820938714": { - "id": "n1820938714", - "loc": [-85.1328845, 42.0665611] - }, - "n1820938715": { - "id": "n1820938715", - "loc": [-85.0336537, 42.0991377] - }, - "n1820938716": { - "id": "n1820938716", - "loc": [-85.087597, 42.0986692] - }, - "n1820938717": { - "id": "n1820938717", - "loc": [-85.1241394, 42.0761882] - }, - "n1820938718": { - "id": "n1820938718", - "loc": [-85.1176002, 42.0847723] - }, - "n1820938719": { - "id": "n1820938719", - "loc": [-85.2423615, 42.0216572] - }, - "n1820938721": { - "id": "n1820938721", - "loc": [-85.2196378, 42.0387908] - }, - "n1820938722": { - "id": "n1820938722", - "loc": [-85.0164272, 42.0890082] - }, - "n1820938723": { - "id": "n1820938723", - "loc": [-85.5917182, 41.9451807] - }, - "n1820938724": { - "id": "n1820938724", - "loc": [-85.2458806, 42.0086638] - }, - "n1820938725": { - "id": "n1820938725", - "loc": [-85.1264474, 42.0740527] - }, - "n1820938726": { - "id": "n1820938726", - "loc": [-85.1961631, 42.04738] - }, - "n1820938727": { - "id": "n1820938727", - "loc": [-85.2784643, 41.9943648] - }, - "n1820938728": { - "id": "n1820938728", - "loc": [-85.2905554, 41.9763216] - }, - "n1820938729": { - "id": "n1820938729", - "loc": [-85.2913386, 41.9771511] - }, - "n1820938730": { - "id": "n1820938730", - "loc": [-85.0112519, 42.0895683] - }, - "n1820938732": { - "id": "n1820938732", - "loc": [-85.4290261, 42.0064531] - }, - "n1820938733": { - "id": "n1820938733", - "loc": [-85.3867073, 42.0031629] - }, - "n1820938734": { - "id": "n1820938734", - "loc": [-85.4943647, 41.9836005] - }, - "n1820938735": { - "id": "n1820938735", - "loc": [-85.4900303, 41.9860728] - }, - "n1820938736": { - "id": "n1820938736", - "loc": [-85.0866153, 42.0944539] - }, - "n1820938737": { - "id": "n1820938737", - "loc": [-85.0869532, 42.0990911] - }, - "n1820938738": { - "id": "n1820938738", - "loc": [-85.6321659, 41.9208851] - }, - "n1820938739": { - "id": "n1820938739", - "loc": [-85.5930485, 41.9433453] - }, - "n1820938740": { - "id": "n1820938740", - "loc": [-85.0406851, 42.102733] - }, - "n1820938741": { - "id": "n1820938741", - "loc": [-85.1051131, 42.0869846] - }, - "n1820938742": { - "id": "n1820938742", - "loc": [-85.1377554, 42.0648893] - }, - "n1820938743": { - "id": "n1820938743", - "loc": [-85.2795694, 41.994604] - }, - "n1820938745": { - "id": "n1820938745", - "loc": [-85.4948153, 41.9826594] - }, - "n1820938746": { - "id": "n1820938746", - "loc": [-85.4488916, 42.0050923] - }, - "n1820938747": { - "id": "n1820938747", - "loc": [-85.1052526, 42.0866144] - }, - "n1820938748": { - "id": "n1820938748", - "loc": [-85.1468749, 42.0653991] - }, - "n1820938749": { - "id": "n1820938749", - "loc": [-85.0856886, 42.1006104] - }, - "n1820938750": { - "id": "n1820938750", - "loc": [-85.2144022, 42.0404004] - }, - "n1820938751": { - "id": "n1820938751", - "loc": [-85.277771, 41.9907458] - }, - "n1820938752": { - "id": "n1820938752", - "loc": [-85.1474542, 42.0636149] - }, - "n1820938753": { - "id": "n1820938753", - "loc": [-85.0820515, 42.1028075] - }, - "n1820938754": { - "id": "n1820938754", - "loc": [-85.1122948, 42.08525] - }, - "n1820938756": { - "id": "n1820938756", - "loc": [-85.0173352, 42.0901933] - }, - "n1820938757": { - "id": "n1820938757", - "loc": [-85.2259721, 42.0354018] - }, - "n1820938758": { - "id": "n1820938758", - "loc": [-85.0872389, 42.0987795] - }, - "n1820938759": { - "id": "n1820938759", - "loc": [-85.2291436, 42.031874] - }, - "n1820938760": { - "id": "n1820938760", - "loc": [-85.3802485, 42.0016002] - }, - "n1820938761": { - "id": "n1820938761", - "loc": [-85.3945822, 42.0057938] - }, - "n1820938762": { - "id": "n1820938762", - "loc": [-85.5273237, 41.9713017] - }, - "n1820938763": { - "id": "n1820938763", - "loc": [-85.2868862, 41.9798629] - }, - "n1820938764": { - "id": "n1820938764", - "loc": [-85.2516677, 42.0107899] - }, - "n1820938766": { - "id": "n1820938766", - "loc": [-85.3183002, 41.9693103] - }, - "n1820938768": { - "id": "n1820938768", - "loc": [-85.2159042, 42.0401932] - }, - "n1820938770": { - "id": "n1820938770", - "loc": [-85.0094481, 42.0911141] - }, - "n1820938771": { - "id": "n1820938771", - "loc": [-85.0244538, 42.0922155] - }, - "n1820938772": { - "id": "n1820938772", - "loc": [-85.231697, 42.028862] - }, - "n1820938773": { - "id": "n1820938773", - "loc": [-85.2102394, 42.0390617] - }, - "n1820938774": { - "id": "n1820938774", - "loc": [-85.2463419, 42.0151212] - }, - "n1820938775": { - "id": "n1820938775", - "loc": [-85.0726195, 42.1056424] - }, - "n1820938776": { - "id": "n1820938776", - "loc": [-85.0060431, 42.0883262] - }, - "n1820938778": { - "id": "n1820938778", - "loc": [-85.425889, 42.0056982] - }, - "n1820938779": { - "id": "n1820938779", - "loc": [-85.1183042, 42.0820638] - }, - "n1820938780": { - "id": "n1820938780", - "loc": [-85.441596, 42.0058257] - }, - "n1820938781": { - "id": "n1820938781", - "loc": [-85.1124879, 42.0847086] - }, - "n1820938782": { - "id": "n1820938782", - "loc": [-85.2452733, 42.0153894] - }, - "n1820938783": { - "id": "n1820938783", - "loc": [-85.2741191, 41.9969244] - }, - "n1820938784": { - "id": "n1820938784", - "loc": [-85.2829487, 41.9822236] - }, - "n1820938785": { - "id": "n1820938785", - "loc": [-85.3202743, 41.972142] - }, - "n1820938786": { - "id": "n1820938786", - "loc": [-85.2345402, 42.0266465] - }, - "n1820938787": { - "id": "n1820938787", - "loc": [-85.3037626, 41.9724611] - }, - "n1820938789": { - "id": "n1820938789", - "loc": [-85.2474792, 42.0161973] - }, - "n1820938790": { - "id": "n1820938790", - "loc": [-85.2951045, 41.9727323] - }, - "n1820938791": { - "id": "n1820938791", - "loc": [-85.322345, 41.9712726] - }, - "n1820938792": { - "id": "n1820938792", - "loc": [-85.2402372, 42.0110394] - }, - "n1820938793": { - "id": "n1820938793", - "loc": [-85.5135693, 41.9698659] - }, - "n1820938794": { - "id": "n1820938794", - "loc": [-85.4695339, 41.9967366] - }, - "n1820938796": { - "id": "n1820938796", - "loc": [-85.0418492, 42.1011131] - }, - "n1820938797": { - "id": "n1820938797", - "loc": [-85.3334107, 41.9806337] - }, - "n1820938798": { - "id": "n1820938798", - "loc": [-85.5625314, 41.9711685] - }, - "n1820938799": { - "id": "n1820938799", - "loc": [-85.3755707, 41.9973585] - }, - "n1820938800": { - "id": "n1820938800", - "loc": [-85.5227532, 41.9722429] - }, - "n1820938801": { - "id": "n1820938801", - "loc": [-85.4267687, 42.0052836] - }, - "n1820938803": { - "id": "n1820938803", - "loc": [-85.0284704, 42.0940837] - }, - "n1820938804": { - "id": "n1820938804", - "loc": [-85.015585, 42.0885305] - }, - "n1820938805": { - "id": "n1820938805", - "loc": [-85.0765905, 42.1053865] - }, - "n1820938806": { - "id": "n1820938806", - "loc": [-85.2614953, 41.9964551] - }, - "n1820938808": { - "id": "n1820938808", - "loc": [-85.0307355, 42.0947313] - }, - "n1820938810": { - "id": "n1820938810", - "loc": [-85.3894753, 42.0003565] - }, - "n1820938812": { - "id": "n1820938812", - "loc": [-85.0868848, 42.095006] - }, - "n1820938813": { - "id": "n1820938813", - "loc": [-85.3854198, 42.0009465] - }, - "n1820938814": { - "id": "n1820938814", - "loc": [-85.2659692, 41.9993534] - }, - "n1820938815": { - "id": "n1820938815", - "loc": [-85.1234259, 42.0765266] - }, - "n1820938816": { - "id": "n1820938816", - "loc": [-85.1426906, 42.0648893] - }, - "n1820938818": { - "id": "n1820938818", - "loc": [-85.1014533, 42.0893067] - }, - "n1820938819": { - "id": "n1820938819", - "loc": [-85.0883064, 42.098067] - }, - "n1820938820": { - "id": "n1820938820", - "loc": [-85.0503156, 42.102704] - }, - "n1820938821": { - "id": "n1820938821", - "loc": [-85.1179649, 42.0821884] - }, - "n1820938822": { - "id": "n1820938822", - "loc": [-85.3484697, 41.9921596] - }, - "n1820938823": { - "id": "n1820938823", - "loc": [-85.3732962, 41.9970874] - }, - "n1820938824": { - "id": "n1820938824", - "loc": [-85.2784104, 41.9898312] - }, - "n1820938825": { - "id": "n1820938825", - "loc": [-85.4441709, 42.0052198] - }, - "n1820938826": { - "id": "n1820938826", - "loc": [-85.3925438, 42.0038326] - }, - "n1820938829": { - "id": "n1820938829", - "loc": [-85.5717582, 41.9621861] - }, - "n1820938830": { - "id": "n1820938830", - "loc": [-85.0866314, 42.0995051] - }, - "n1820938831": { - "id": "n1820938831", - "loc": [-85.576672, 41.9522769] - }, - "n1820938832": { - "id": "n1820938832", - "loc": [-85.1587238, 42.0636205] - }, - "n1820938833": { - "id": "n1820938833", - "loc": [-85.3804245, 41.9999155] - }, - "n1820938834": { - "id": "n1820938834", - "loc": [-85.280083, 41.9948843] - }, - "n1820938836": { - "id": "n1820938836", - "loc": [-85.561892, 41.9686693] - }, - "n1820938837": { - "id": "n1820938837", - "loc": [-85.0158975, 42.0885253] - }, - "n1820938838": { - "id": "n1820938838", - "loc": [-85.4248204, 42.007633] - }, - "n1820938839": { - "id": "n1820938839", - "loc": [-85.0352738, 42.1039657] - }, - "n1820938840": { - "id": "n1820938840", - "loc": [-85.211956, 42.0411812] - }, - "n1820938841": { - "id": "n1820938841", - "loc": [-85.4816575, 41.9908997] - }, - "n1820938842": { - "id": "n1820938842", - "loc": [-85.3807635, 42.0020308] - }, - "n1820938843": { - "id": "n1820938843", - "loc": [-85.0100865, 42.0898521] - }, - "n1820938844": { - "id": "n1820938844", - "loc": [-85.0103936, 42.0897434] - }, - "n1820938848": { - "id": "n1820938848", - "loc": [-85.2430052, 42.0131363] - }, - "n1820938849": { - "id": "n1820938849", - "loc": [-85.112559, 42.0853723] - }, - "n1820938851": { - "id": "n1820938851", - "loc": [-85.3641553, 41.9952535] - }, - "n1820938852": { - "id": "n1820938852", - "loc": [-85.2087373, 42.0390777] - }, - "n1820938853": { - "id": "n1820938853", - "loc": [-85.2473933, 42.0148263] - }, - "n1820938854": { - "id": "n1820938854", - "loc": [-85.0213464, 42.090509] - }, - "n1820938855": { - "id": "n1820938855", - "loc": [-85.0673208, 42.1052353] - }, - "n1820938856": { - "id": "n1820938856", - "loc": [-85.1003053, 42.0905528] - }, - "n1820938857": { - "id": "n1820938857", - "loc": [-85.2617367, 41.9965389] - }, - "n1820938858": { - "id": "n1820938858", - "loc": [-85.280363, 41.9916015] - }, - "n1820938859": { - "id": "n1820938859", - "loc": [-85.0038866, 42.0873469] - }, - "n1820938860": { - "id": "n1820938860", - "loc": [-85.2476401, 42.0151451] - }, - "n1820938861": { - "id": "n1820938861", - "loc": [-85.193717, 42.0499294] - }, - "n1820938862": { - "id": "n1820938862", - "loc": [-85.3478689, 41.9917609] - }, - "n1820938863": { - "id": "n1820938863", - "loc": [-85.5638017, 41.9648881] - }, - "n1820938864": { - "id": "n1820938864", - "loc": [-85.4356308, 42.0064476] - }, - "n1820938865": { - "id": "n1820938865", - "loc": [-85.0561722, 42.1023509] - }, - "n1820938867": { - "id": "n1820938867", - "loc": [-85.2256031, 42.0356034] + "loc": [-85.632874, 41.942531] }, "n1820938868": { "id": "n1820938868", - "loc": [-85.6102576, 41.9420844] - }, - "n1820938869": { - "id": "n1820938869", - "loc": [-85.2285213, 42.0339938] - }, - "n1820938870": { - "id": "n1820938870", - "loc": [-85.0326238, 42.0978003] - }, - "n1820938871": { - "id": "n1820938871", - "loc": [-85.0131389, 42.0903736] - }, - "n1820938872": { - "id": "n1820938872", - "loc": [-85.2550859, 42.0012259] - }, - "n1820938873": { - "id": "n1820938873", - "loc": [-85.1130029, 42.0846966] - }, - "n1820938874": { - "id": "n1820938874", - "loc": [-85.1579041, 42.06336] - }, - "n1820938875": { - "id": "n1820938875", - "loc": [-85.0430522, 42.1020234] - }, - "n1820938876": { - "id": "n1820938876", - "loc": [-85.2786679, 41.9865935] - }, - "n1820938877": { - "id": "n1820938877", - "loc": [-85.1221666, 42.0788706] - }, - "n1820938878": { - "id": "n1820938878", - "loc": [-85.2554614, 42.0103303] - }, - "n1820938879": { - "id": "n1820938879", - "loc": [-85.2349801, 42.0265748] - }, - "n1820938880": { - "id": "n1820938880", - "loc": [-85.0997434, 42.0907864] - }, - "n1820938881": { - "id": "n1820938881", - "loc": [-85.0045464, 42.0878167] - }, - "n1820938882": { - "id": "n1820938882", - "loc": [-85.2728048, 41.9982519] - }, - "n1820938883": { - "id": "n1820938883", - "loc": [-85.3111333, 41.9691587] - }, - "n1820938884": { - "id": "n1820938884", - "loc": [-85.3219802, 41.9721899] - }, - "n1820938885": { - "id": "n1820938885", - "loc": [-85.3091378, 41.9699325] - }, - "n1820938887": { - "id": "n1820938887", - "loc": [-85.4242367, 42.0085203] - }, - "n1820938888": { - "id": "n1820938888", - "loc": [-84.9968377, 42.0874504] - }, - "n1820938890": { - "id": "n1820938890", - "loc": [-85.5443139, 41.9714078] - }, - "n1820938891": { - "id": "n1820938891", - "loc": [-85.6404013, 41.9154676] - }, - "n1820938892": { - "id": "n1820938892", - "loc": [-85.3644986, 41.9962582] - }, - "n1820938893": { - "id": "n1820938893", - "loc": [-85.0496772, 42.1018323] - }, - "n1820938894": { - "id": "n1820938894", - "loc": [-85.297261, 41.9737373] - }, - "n1820938895": { - "id": "n1820938895", - "loc": [-85.0327096, 42.098071] - }, - "n1820938896": { - "id": "n1820938896", - "loc": [-85.3856773, 41.9996867] - }, - "n1820938897": { - "id": "n1820938897", - "loc": [-85.0493862, 42.1015509] - }, - "n1820938898": { - "id": "n1820938898", - "loc": [-84.9969879, 42.0876614] - }, - "n1820938899": { - "id": "n1820938899", - "loc": [-85.0848625, 42.1013587] - }, - "n1820938900": { - "id": "n1820938900", - "loc": [-85.5853195, 41.9479201] + "loc": [-85.610258, 41.942084] }, "n1820938901": { "id": "n1820938901", - "loc": [-85.6329169, 41.9387964] - }, - "n1820938902": { - "id": "n1820938902", - "loc": [-85.0843046, 42.1029468] - }, - "n1820938903": { - "id": "n1820938903", - "loc": [-85.1228747, 42.0778474] - }, - "n1820938904": { - "id": "n1820938904", - "loc": [-85.4855456, 41.984095] - }, - "n1820938905": { - "id": "n1820938905", - "loc": [-85.0573269, 42.1026801] - }, - "n1820938906": { - "id": "n1820938906", - "loc": [-85.2425868, 42.0131523] - }, - "n1820938907": { - "id": "n1820938907", - "loc": [-85.1149622, 42.0860053] - }, - "n1820938908": { - "id": "n1820938908", - "loc": [-85.4833097, 41.9951578] - }, - "n1820938909": { - "id": "n1820938909", - "loc": [-85.075979, 42.1056372] - }, - "n1820938910": { - "id": "n1820938910", - "loc": [-85.0338509, 42.0977139] - }, - "n1820938911": { - "id": "n1820938911", - "loc": [-85.6384272, 41.9115715] - }, - "n1820938912": { - "id": "n1820938912", - "loc": [-85.0458363, 42.1004074] - }, - "n1820938913": { - "id": "n1820938913", - "loc": [-85.0592138, 42.1048305] - }, - "n1820938914": { - "id": "n1820938914", - "loc": [-85.2807493, 41.9916653] - }, - "n1820938915": { - "id": "n1820938915", - "loc": [-85.1103274, 42.0864193] + "loc": [-85.632917, 41.938796] }, "n1820938916": { "id": "n1820938916", - "loc": [-85.6267156, 41.9404404] - }, - "n1820938918": { - "id": "n1820938918", - "loc": [-85.0331374, 42.0982911] - }, - "n1820938919": { - "id": "n1820938919", - "loc": [-85.5637331, 41.965409] - }, - "n1820938920": { - "id": "n1820938920", - "loc": [-85.5457515, 41.9714237] - }, - "n1820938922": { - "id": "n1820938922", - "loc": [-85.082073, 42.1030104] - }, - "n1820938923": { - "id": "n1820938923", - "loc": [-85.0780765, 42.103102] - }, - "n1820938924": { - "id": "n1820938924", - "loc": [-85.4208035, 42.0089508] - }, - "n1820938925": { - "id": "n1820938925", - "loc": [-85.3469934, 41.9914795] - }, - "n1820938926": { - "id": "n1820938926", - "loc": [-85.0322, 42.095619] - }, - "n1820938927": { - "id": "n1820938927", - "loc": [-85.4784431, 41.9949401] - }, - "n1820938928": { - "id": "n1820938928", - "loc": [-85.1303095, 42.0667523] - }, - "n1820938929": { - "id": "n1820938929", - "loc": [-85.2463784, 42.0084781] + "loc": [-85.626716, 41.94044] }, "n1820938930": { "id": "n1820938930", - "loc": [-85.6299986, 41.9427707] - }, - "n1820938931": { - "id": "n1820938931", - "loc": [-85.6325907, 41.9238499] - }, - "n1820938932": { - "id": "n1820938932", - "loc": [-85.4808464, 41.9914476] - }, - "n1820938934": { - "id": "n1820938934", - "loc": [-85.2411599, 42.0105292] - }, - "n1820938935": { - "id": "n1820938935", - "loc": [-85.0163213, 42.0892379] - }, - "n1820938936": { - "id": "n1820938936", - "loc": [-85.3290934, 41.9682322] - }, - "n1820938937": { - "id": "n1820938937", - "loc": [-85.4925623, 41.9853231] - }, - "n1820938938": { - "id": "n1820938938", - "loc": [-85.0338294, 42.09892] - }, - "n1820938940": { - "id": "n1820938940", - "loc": [-85.4174561, 42.008903] - }, - "n1820938941": { - "id": "n1820938941", - "loc": [-85.1165595, 42.0838845] - }, - "n1820938942": { - "id": "n1820938942", - "loc": [-85.2954585, 41.9717192] - }, - "n1820938943": { - "id": "n1820938943", - "loc": [-85.6330199, 41.9257338] - }, - "n1820938944": { - "id": "n1820938944", - "loc": [-85.2294654, 42.0324478] - }, - "n1820938945": { - "id": "n1820938945", - "loc": [-85.5601282, 41.9728914] - }, - "n1820938946": { - "id": "n1820938946", - "loc": [-85.1176324, 42.08568] - }, - "n1820938947": { - "id": "n1820938947", - "loc": [-85.0210245, 42.0906005] - }, - "n1820938948": { - "id": "n1820938948", - "loc": [-85.0251887, 42.09253] - }, - "n1820938949": { - "id": "n1820938949", - "loc": [-85.0895832, 42.0939551] - }, - "n1820938950": { - "id": "n1820938950", - "loc": [-84.9915109, 42.085842] - }, - "n1820938951": { - "id": "n1820938951", - "loc": [-85.2187366, 42.0393486] - }, - "n1820938952": { - "id": "n1820938952", - "loc": [-85.006605, 42.087579] - }, - "n1820938953": { - "id": "n1820938953", - "loc": [-85.046641, 42.1012393] - }, - "n1820938954": { - "id": "n1820938954", - "loc": [-85.052102, 42.103695] - }, - "n1820938955": { - "id": "n1820938955", - "loc": [-85.283925, 41.9912825] - }, - "n1820938956": { - "id": "n1820938956", - "loc": [-85.2326626, 42.0316349] - }, - "n1820938957": { - "id": "n1820938957", - "loc": [-85.1174298, 42.0859694] - }, - "n1820938958": { - "id": "n1820938958", - "loc": [-85.3802056, 41.9994794] - }, - "n1820938959": { - "id": "n1820938959", - "loc": [-85.4586334, 41.9999737] - }, - "n1820938960": { - "id": "n1820938960", - "loc": [-85.4302234, 42.0069418] - }, - "n1820938961": { - "id": "n1820938961", - "loc": [-85.092201, 42.0930674] - }, - "n1820938962": { - "id": "n1820938962", - "loc": [-85.3684511, 41.9979382] - }, - "n1820938963": { - "id": "n1820938963", - "loc": [-85.4618735, 42.0011856] - }, - "n1820938964": { - "id": "n1820938964", - "loc": [-85.4828205, 41.9877793] - }, - "n1820938965": { - "id": "n1820938965", - "loc": [-85.0837789, 42.1025726] - }, - "n1820938966": { - "id": "n1820938966", - "loc": [-85.0176195, 42.090253] - }, - "n1820938967": { - "id": "n1820938967", - "loc": [-85.3801627, 42.001074] - }, - "n1820938968": { - "id": "n1820938968", - "loc": [-85.4767007, 41.994488] - }, - "n1820938969": { - "id": "n1820938969", - "loc": [-85.274268, 41.9957495] - }, - "n1820938970": { - "id": "n1820938970", - "loc": [-85.2977438, 41.9719506] - }, - "n1820938971": { - "id": "n1820938971", - "loc": [-85.2425546, 42.0208682] - }, - "n1820938972": { - "id": "n1820938972", - "loc": [-85.2557082, 42.002382] - }, - "n1820938973": { - "id": "n1820938973", - "loc": [-85.3187937, 41.9691986] - }, - "n1820938975": { - "id": "n1820938975", - "loc": [-85.2448077, 42.0153045] - }, - "n1820938977": { - "id": "n1820938977", - "loc": [-85.0343015, 42.0997718] - }, - "n1820938978": { - "id": "n1820938978", - "loc": [-85.2449364, 42.01874] - }, - "n1820938979": { - "id": "n1820938979", - "loc": [-85.2598391, 41.9969602] - }, - "n1820938980": { - "id": "n1820938980", - "loc": [-85.4294724, 42.0067665] - }, - "n1820938981": { - "id": "n1820938981", - "loc": [-85.428082, 42.0055124] - }, - "n1820938983": { - "id": "n1820938983", - "loc": [-85.5436315, 41.9717484] - }, - "n1820938985": { - "id": "n1820938985", - "loc": [-85.5978336, 41.9407437] - }, - "n1820938986": { - "id": "n1820938986", - "loc": [-85.491661, 41.9860249] - }, - "n1820938987": { - "id": "n1820938987", - "loc": [-85.4942789, 41.9801392] - }, - "n1820938988": { - "id": "n1820938988", - "loc": [-85.0416306, 42.1010841] - }, - "n1820938989": { - "id": "n1820938989", - "loc": [-85.2653644, 41.9984433] - }, - "n1820938990": { - "id": "n1820938990", - "loc": [-85.1028266, 42.0881124] - }, - "n1820938991": { - "id": "n1820938991", - "loc": [-85.0163146, 42.0887932] - }, - "n1820938992": { - "id": "n1820938992", - "loc": [-85.5282209, 41.9678112] - }, - "n1820938993": { - "id": "n1820938993", - "loc": [-85.5442752, 41.9715888] - }, - "n1820938994": { - "id": "n1820938994", - "loc": [-85.5634327, 41.9658558] - }, - "n1820938995": { - "id": "n1820938995", - "loc": [-85.0384227, 42.1037627] - }, - "n1820938996": { - "id": "n1820938996", - "loc": [-85.1144258, 42.0854439] - }, - "n1820938997": { - "id": "n1820938997", - "loc": [-85.1870651, 42.0506305] - }, - "n1820938998": { - "id": "n1820938998", - "loc": [-85.1256159, 42.0747376] - }, - "n1820938999": { - "id": "n1820938999", - "loc": [-85.3272695, 41.9715836] - }, - "n1820939000": { - "id": "n1820939000", - "loc": [-85.0543067, 42.103098] - }, - "n1820939001": { - "id": "n1820939001", - "loc": [-85.4678173, 41.9973585] - }, - "n1820939003": { - "id": "n1820939003", - "loc": [-85.0266626, 42.0933154] - }, - "n1820939004": { - "id": "n1820939004", - "loc": [-85.0353046, 42.1019728] - }, - "n1820939005": { - "id": "n1820939005", - "loc": [-85.1237961, 42.0762798] - }, - "n1820939006": { - "id": "n1820939006", - "loc": [-85.2812214, 41.9826702] - }, - "n1820939007": { - "id": "n1820939007", - "loc": [-85.2927763, 41.9747343] - }, - "n1820939008": { - "id": "n1820939008", - "loc": [-85.3270979, 41.9720862] - }, - "n1820939009": { - "id": "n1820939009", - "loc": [-85.488657, 41.9856581] - }, - "n1820939010": { - "id": "n1820939010", - "loc": [-85.3087301, 41.9701399] - }, - "n1820939011": { - "id": "n1820939011", - "loc": [-85.0276939, 42.093768] - }, - "n1820939012": { - "id": "n1820939012", - "loc": [-85.2956516, 41.9748779] - }, - "n1820939013": { - "id": "n1820939013", - "loc": [-85.1298579, 42.0726443] - }, - "n1820939014": { - "id": "n1820939014", - "loc": [-85.105144, 42.0870893] - }, - "n1820939015": { - "id": "n1820939015", - "loc": [-85.0677486, 42.1053917] - }, - "n1820939016": { - "id": "n1820939016", - "loc": [-85.0333681, 42.0993459] - }, - "n1820939017": { - "id": "n1820939017", - "loc": [-85.6384272, 41.910805] - }, - "n1820939018": { - "id": "n1820939018", - "loc": [-85.399496, 42.006894] - }, - "n1820939019": { - "id": "n1820939019", - "loc": [-85.2648427, 41.9998318] - }, - "n1820939020": { - "id": "n1820939020", - "loc": [-85.1237424, 42.0766779] - }, - "n1820939021": { - "id": "n1820939021", - "loc": [-85.2515025, 42.0109442] - }, - "n1820939022": { - "id": "n1820939022", - "loc": [-85.5566306, 41.9718385] - }, - "n1820939023": { - "id": "n1820939023", - "loc": [-85.090644, 42.0938369] - }, - "n1820939024": { - "id": "n1820939024", - "loc": [-85.1245525, 42.074914] - }, - "n1820939025": { - "id": "n1820939025", - "loc": [-85.1099934, 42.0863926] - }, - "n1820939026": { - "id": "n1820939026", - "loc": [-85.1251653, 42.0744589] - }, - "n1820939027": { - "id": "n1820939027", - "loc": [-85.401792, 42.0068143] - }, - "n1820939028": { - "id": "n1820939028", - "loc": [-85.0094763, 42.0899584] - }, - "n1820939029": { - "id": "n1820939029", - "loc": [-85.1330779, 42.0705605] - }, - "n1820939030": { - "id": "n1820939030", - "loc": [-85.4935064, 41.984398] - }, - "n1820939031": { - "id": "n1820939031", - "loc": [-85.5713334, 41.9613939] - }, - "n1820939032": { - "id": "n1820939032", - "loc": [-85.0873945, 42.0964669] - }, - "n1820939033": { - "id": "n1820939033", - "loc": [-85.0886497, 42.0986481] - }, - "n1820939034": { - "id": "n1820939034", - "loc": [-85.3276343, 41.9758897] - }, - "n1820939035": { - "id": "n1820939035", - "loc": [-85.1304386, 42.0727387] - }, - "n1820939036": { - "id": "n1820939036", - "loc": [-85.2551932, 42.0052999] - }, - "n1820939037": { - "id": "n1820939037", - "loc": [-85.2206936, 42.0384458] - }, - "n1820939038": { - "id": "n1820939038", - "loc": [-85.2313645, 42.0286389] - }, - "n1820939039": { - "id": "n1820939039", - "loc": [-85.0754586, 42.1059835] - }, - "n1820939040": { - "id": "n1820939040", - "loc": [-85.0663324, 42.1050812] - }, - "n1820939041": { - "id": "n1820939041", - "loc": [-85.2406234, 42.0106887] - }, - "n1820939042": { - "id": "n1820939042", - "loc": [-85.0685962, 42.1058175] - }, - "n1820939043": { - "id": "n1820939043", - "loc": [-85.0689462, 42.1059437] - }, - "n1820939044": { - "id": "n1820939044", - "loc": [-85.0586144, 42.1046144] - }, - "n1820939045": { - "id": "n1820939045", - "loc": [-85.3650565, 41.9965452] - }, - "n1820939047": { - "id": "n1820939047", - "loc": [-85.5752558, 41.9536014] - }, - "n1820939048": { - "id": "n1820939048", - "loc": [-85.5110159, 41.9710624] - }, - "n1820939050": { - "id": "n1820939050", - "loc": [-85.2832641, 41.9926477] - }, - "n1820939051": { - "id": "n1820939051", - "loc": [-85.0078402, 42.0898947] - }, - "n1820939052": { - "id": "n1820939052", - "loc": [-85.3882737, 42.0017916] - }, - "n1820939053": { - "id": "n1820939053", - "loc": [-85.1718945, 42.0564937] - }, - "n1820939054": { - "id": "n1820939054", - "loc": [-85.0947048, 42.0929293] - }, - "n1820939055": { - "id": "n1820939055", - "loc": [-85.4456944, 42.0051082] - }, - "n1820939056": { - "id": "n1820939056", - "loc": [-85.3139872, 41.9706903] - }, - "n1820939057": { - "id": "n1820939057", - "loc": [-85.3893895, 42.0034021] - }, - "n1820939058": { - "id": "n1820939058", - "loc": [-85.2425332, 42.0106089] + "loc": [-85.629999, 41.942771] }, "n1820939059": { "id": "n1820939059", - "loc": [-85.6085624, 41.9420844] - }, - "n1820939060": { - "id": "n1820939060", - "loc": [-85.210411, 42.0397789] - }, - "n1820939061": { - "id": "n1820939061", - "loc": [-85.2762542, 41.9960473] - }, - "n1820939062": { - "id": "n1820939062", - "loc": [-85.4686584, 41.9969973] - }, - "n1820939063": { - "id": "n1820939063", - "loc": [-85.3860421, 42.0018394] - }, - "n1820939064": { - "id": "n1820939064", - "loc": [-85.5636944, 41.9644414] - }, - "n1820939065": { - "id": "n1820939065", - "loc": [-85.3267331, 41.9766554] - }, - "n1820939066": { - "id": "n1820939066", - "loc": [-85.0868996, 42.0943822] - }, - "n1820939067": { - "id": "n1820939067", - "loc": [-85.104861, 42.0880038] - }, - "n1820939068": { - "id": "n1820939068", - "loc": [-85.5537123, 41.9695093] + "loc": [-85.608562, 41.942084] }, "n1820939069": { "id": "n1820939069", - "loc": [-85.6325092, 41.9396743] - }, - "n1820939070": { - "id": "n1820939070", - "loc": [-85.3869648, 42.0024454] - }, - "n1820939071": { - "id": "n1820939071", - "loc": [-85.2775349, 41.9957335] - }, - "n1820939072": { - "id": "n1820939072", - "loc": [-85.2055616, 42.0421533] - }, - "n1820939073": { - "id": "n1820939073", - "loc": [-85.4731431, 41.9946531] - }, - "n1820939074": { - "id": "n1820939074", - "loc": [-85.0399609, 42.1030833] - }, - "n1820939075": { - "id": "n1820939075", - "loc": [-85.3055758, 41.9725169] - }, - "n1820939076": { - "id": "n1820939076", - "loc": [-85.4834599, 41.994488] - }, - "n1820939077": { - "id": "n1820939077", - "loc": [-85.3819866, 42.0023018] - }, - "n1820939078": { - "id": "n1820939078", - "loc": [-85.1218756, 42.0789992] - }, - "n1820939079": { - "id": "n1820939079", - "loc": [-85.2793159, 41.9944458] - }, - "n1820939080": { - "id": "n1820939080", - "loc": [-85.2495498, 42.0101466] - }, - "n1820939081": { - "id": "n1820939081", - "loc": [-85.0035969, 42.0872434] - }, - "n1820939082": { - "id": "n1820939082", - "loc": [-85.1054243, 42.0865626] - }, - "n1820939083": { - "id": "n1820939083", - "loc": [-85.0917665, 42.0934774] - }, - "n1820939084": { - "id": "n1820939084", - "loc": [-85.3442211, 41.988938] - }, - "n1820939086": { - "id": "n1820939086", - "loc": [-85.273989, 41.9953588] - }, - "n1820939087": { - "id": "n1820939087", - "loc": [-85.1142541, 42.0852488] - }, - "n1820939089": { - "id": "n1820939089", - "loc": [-85.1526684, 42.0615758] - }, - "n1820939090": { - "id": "n1820939090", - "loc": [-85.2538843, 42.0110159] - }, - "n1820939091": { - "id": "n1820939091", - "loc": [-85.28341, 41.9909635] - }, - "n1820939092": { - "id": "n1820939092", - "loc": [-85.3963178, 42.0050217] - }, - "n1820939093": { - "id": "n1820939093", - "loc": [-85.0851682, 42.1012472] - }, - "n1820939095": { - "id": "n1820939095", - "loc": [-85.2811784, 41.986243] - }, - "n1820939096": { - "id": "n1820939096", - "loc": [-85.4274125, 42.0052995] - }, - "n1820939097": { - "id": "n1820939097", - "loc": [-85.0871262, 42.0951652] - }, - "n1820939099": { - "id": "n1820939099", - "loc": [-85.1314253, 42.0671665] - }, - "n1820939100": { - "id": "n1820939100", - "loc": [-85.2778997, 41.991001] - }, - "n1820939101": { - "id": "n1820939101", - "loc": [-85.112107, 42.0862812] - }, - "n1820939102": { - "id": "n1820939102", - "loc": [-85.299911, 41.9729955] - }, - "n1820939103": { - "id": "n1820939103", - "loc": [-85.639822, 41.9094796] - }, - "n1820939104": { - "id": "n1820939104", - "loc": [-85.122294, 42.0785334] - }, - "n1820939105": { - "id": "n1820939105", - "loc": [-85.2476294, 42.015719] - }, - "n1820939106": { - "id": "n1820939106", - "loc": [-85.4946007, 41.9814631] - }, - "n1820939107": { - "id": "n1820939107", - "loc": [-85.0879524, 42.0986919] - }, - "n1820939108": { - "id": "n1820939108", - "loc": [-85.0342814, 42.098274] - }, - "n1820939109": { - "id": "n1820939109", - "loc": [-85.2450695, 42.0095463] - }, - "n1820939110": { - "id": "n1820939110", - "loc": [-85.3847546, 42.0024135] - }, - "n1820939111": { - "id": "n1820939111", - "loc": [-85.2961344, 41.9742558] - }, - "n1820939112": { - "id": "n1820939112", - "loc": [-85.27899, 41.994317] - }, - "n1820939114": { - "id": "n1820939114", - "loc": [-85.1017644, 42.0886618] - }, - "n1820939115": { - "id": "n1820939115", - "loc": [-85.076215, 42.1056333] - }, - "n1820939116": { - "id": "n1820939116", - "loc": [-85.1198009, 42.0805349] - }, - "n1820939117": { - "id": "n1820939117", - "loc": [-85.11988, 42.0798513] - }, - "n1820939118": { - "id": "n1820939118", - "loc": [-85.147819, 42.0625476] - }, - "n1820939119": { - "id": "n1820939119", - "loc": [-85.0585969, 42.1029042] - }, - "n1820939120": { - "id": "n1820939120", - "loc": [-85.1248596, 42.0745744] - }, - "n1820939121": { - "id": "n1820939121", - "loc": [-85.3023786, 41.9725249] - }, - "n1820939123": { - "id": "n1820939123", - "loc": [-85.0119332, 42.0900699] - }, - "n1820939124": { - "id": "n1820939124", - "loc": [-85.2466852, 42.0170343] - }, - "n1820939125": { - "id": "n1820939125", - "loc": [-85.0033019, 42.0872792] - }, - "n1820939126": { - "id": "n1820939126", - "loc": [-85.0042084, 42.0875778] - }, - "n1820939128": { - "id": "n1820939128", - "loc": [-85.0052961, 42.0885424] - }, - "n1820939130": { - "id": "n1820939130", - "loc": [-85.0647942, 42.10508] - }, - "n1820939131": { - "id": "n1820939131", - "loc": [-85.2824123, 41.9825107] - }, - "n1820939132": { - "id": "n1820939132", - "loc": [-85.3210039, 41.9723255] - }, - "n1820939133": { - "id": "n1820939133", - "loc": [-85.0491033, 42.1014184] - }, - "n1820939134": { - "id": "n1820939134", - "loc": [-85.1127776, 42.0855168] - }, - "n1820939135": { - "id": "n1820939135", - "loc": [-85.1243768, 42.0759322] - }, - "n1820939137": { - "id": "n1820939137", - "loc": [-85.125974, 42.0747547] - }, - "n1820939138": { - "id": "n1820939138", - "loc": [-85.1071248, 42.0859973] - }, - "n1820939139": { - "id": "n1820939139", - "loc": [-85.5326175, 41.9674833] - }, - "n1820939140": { - "id": "n1820939140", - "loc": [-85.1338715, 42.0660833] - }, - "n1820939142": { - "id": "n1820939142", - "loc": [-85.649671, 41.9135675] - }, - "n1820939144": { - "id": "n1820939144", - "loc": [-85.0236545, 42.0920444] - }, - "n1820939145": { - "id": "n1820939145", - "loc": [-85.1084391, 42.0859376] - }, - "n1820939146": { - "id": "n1820939146", - "loc": [-85.1539988, 42.0618626] - }, - "n1820939147": { - "id": "n1820939147", - "loc": [-85.2354521, 42.026511] - }, - "n1820939148": { - "id": "n1820939148", - "loc": [-85.2362246, 42.0260408] - }, - "n1820939149": { - "id": "n1820939149", - "loc": [-85.2401342, 42.0115233] - }, - "n1820939150": { - "id": "n1820939150", - "loc": [-85.295319, 41.9747423] - }, - "n1820939151": { - "id": "n1820939151", - "loc": [-85.1164696, 42.0835409] - }, - "n1820939152": { - "id": "n1820939152", - "loc": [-85.3232891, 41.9712885] - }, - "n1820939153": { - "id": "n1820939153", - "loc": [-85.2574463, 42.0068944] - }, - "n1820939155": { - "id": "n1820939155", - "loc": [-85.5704064, 41.9598246] - }, - "n1820939156": { - "id": "n1820939156", - "loc": [-85.0349077, 42.0998116] - }, - "n1820939157": { - "id": "n1820939157", - "loc": [-85.0949529, 42.0925619] - }, - "n1820939159": { - "id": "n1820939159", - "loc": [-85.0179829, 42.0902343] - }, - "n1820939160": { - "id": "n1820939160", - "loc": [-85.0405832, 42.1016942] - }, - "n1820939161": { - "id": "n1820939161", - "loc": [-85.2534015, 42.0111833] - }, - "n1820939162": { - "id": "n1820939162", - "loc": [-85.0839881, 42.102708] - }, - "n1820939163": { - "id": "n1820939163", - "loc": [-85.0341996, 42.1008385] - }, - "n1820939164": { - "id": "n1820939164", - "loc": [-85.1037761, 42.0879731] - }, - "n1820939173": { - "id": "n1820939173", - "loc": [-85.0460616, 42.1005786] - }, - "n1820939177": { - "id": "n1820939177", - "loc": [-85.0061651, 42.0878059] - }, - "n1820939181": { - "id": "n1820939181", - "loc": [-85.1456775, 42.0654684] - }, - "n1820939183": { - "id": "n1820939183", - "loc": [-85.1325508, 42.0718439] - }, - "n1820939185": { - "id": "n1820939185", - "loc": [-85.2485842, 42.008329] - }, - "n1820939187": { - "id": "n1820939187", - "loc": [-85.2744128, 41.9949322] - }, - "n1820939189": { - "id": "n1820939189", - "loc": [-85.2579025, 41.9999542] - }, - "n1820939191": { - "id": "n1820939191", - "loc": [-85.3358998, 41.9828987] - }, - "n1820939193": { - "id": "n1820939193", - "loc": [-85.3192658, 41.9716714] - }, - "n1820939194": { - "id": "n1820939194", - "loc": [-85.6400795, 41.9130725] - }, - "n1820939195": { - "id": "n1820939195", - "loc": [-85.3278489, 41.9780591] - }, - "n1820939196": { - "id": "n1820939196", - "loc": [-85.2800197, 41.983061] - }, - "n1820939197": { - "id": "n1820939197", - "loc": [-85.3278167, 41.9692943] - }, - "n1820939198": { - "id": "n1820939198", - "loc": [-85.3366894, 41.9838653] - }, - "n1820939199": { - "id": "n1820939199", - "loc": [-85.0328383, 42.0969923] - }, - "n1820939201": { - "id": "n1820939201", - "loc": [-85.3259284, 41.9720383] - }, - "n1820939217": { - "id": "n1820939217", - "loc": [-85.1840181, 42.0503277] - }, - "n1820939220": { - "id": "n1820939220", - "loc": [-85.422563, 42.0089986] - }, - "n1820939222": { - "id": "n1820939222", - "loc": [-85.555386, 41.9707856] - }, - "n1820939224": { - "id": "n1820939224", - "loc": [-85.3830809, 42.002254] - }, - "n1820939226": { - "id": "n1820939226", - "loc": [-84.9917938, 42.0857517] - }, - "n1820939227": { - "id": "n1820939227", - "loc": [-85.2936775, 41.9740484] - }, - "n1820939228": { - "id": "n1820939228", - "loc": [-85.2632133, 41.9975024] - }, - "n1820939229": { - "id": "n1820939229", - "loc": [-85.2809424, 41.9853259] - }, - "n1820939230": { - "id": "n1820939230", - "loc": [-85.242104, 42.0131204] - }, - "n1820939232": { - "id": "n1820939232", - "loc": [-85.2610246, 41.9963901] - }, - "n1820939233": { - "id": "n1820939233", - "loc": [-85.2335531, 42.0268378] - }, - "n1820939234": { - "id": "n1820939234", - "loc": [-85.3188839, 41.9713575] - }, - "n1820939235": { - "id": "n1820939235", - "loc": [-85.2413637, 42.0225658] - }, - "n1820939237": { - "id": "n1820939237", - "loc": [-85.0010796, 42.0887215] - }, - "n1820939239": { - "id": "n1820939239", - "loc": [-85.2241697, 42.0362624] - }, - "n1820939243": { - "id": "n1820939243", - "loc": [-85.0368456, 42.1040134] - }, - "n1820939244": { - "id": "n1820939244", - "loc": [-85.1327986, 42.069524] - }, - "n1820939260": { - "id": "n1820939260", - "loc": [-85.5408163, 41.9711206] - }, - "n1820939261": { - "id": "n1820939261", - "loc": [-85.2959199, 41.9746546] - }, - "n1820939262": { - "id": "n1820939262", - "loc": [-85.3298659, 41.9683598] - }, - "n1820939263": { - "id": "n1820939263", - "loc": [-85.2240581, 42.0358425] - }, - "n1820939264": { - "id": "n1820939264", - "loc": [-85.2438206, 42.0101944] - }, - "n1820939265": { - "id": "n1820939265", - "loc": [-85.3984489, 42.0059589] - }, - "n1820939266": { - "id": "n1820939266", - "loc": [-85.2330811, 42.0294279] - }, - "n1820939268": { - "id": "n1820939268", - "loc": [-85.1126877, 42.0857704] - }, - "n1820939271": { - "id": "n1820939271", - "loc": [-85.254925, 42.0106253] - }, - "n1820939273": { - "id": "n1820939273", - "loc": [-85.4328046, 42.0064662] - }, - "n1820939277": { - "id": "n1820939277", - "loc": [-85.289622, 41.9789616] - }, - "n1820939279": { - "id": "n1820939279", - "loc": [-85.4574532, 42.0004043] - }, - "n1820939281": { - "id": "n1820939281", - "loc": [-85.4803486, 41.9867211] - }, - "n1820939283": { - "id": "n1820939283", - "loc": [-85.157475, 42.0631848] - }, - "n1820939285": { - "id": "n1820939285", - "loc": [-85.2571458, 42.0059935] - }, - "n1820939287": { - "id": "n1820939287", - "loc": [-85.2818544, 41.9825984] - }, - "n1820939289": { - "id": "n1820939289", - "loc": [-85.2298302, 42.0328781] - }, - "n1820939291": { - "id": "n1820939291", - "loc": [-85.4819523, 41.984821] - }, - "n1820939301": { - "id": "n1820939301", - "loc": [-85.3139765, 41.9701159] - }, - "n1820939304": { - "id": "n1820939304", - "loc": [-85.0424447, 42.101742] + "loc": [-85.632509, 41.939674] }, "n1820939306": { "id": "n1820939306", - "loc": [-85.6360283, 41.9338482] - }, - "n1820939310": { - "id": "n1820939310", - "loc": [-85.3463025, 41.9913622] - }, - "n1820939312": { - "id": "n1820939312", - "loc": [-85.4664869, 41.9988097] - }, - "n1820939314": { - "id": "n1820939314", - "loc": [-85.149364, 42.0622449] - }, - "n1820939316": { - "id": "n1820939316", - "loc": [-85.2460415, 42.0153125] - }, - "n1820939318": { - "id": "n1820939318", - "loc": [-85.4806103, 41.9924523] - }, - "n1820939320": { - "id": "n1820939320", - "loc": [-85.2449042, 42.0190987] - }, - "n1820939322": { - "id": "n1820939322", - "loc": [-85.5280165, 41.9689263] - }, - "n1820939324": { - "id": "n1820939324", - "loc": [-85.0051204, 42.0882625] - }, - "n1820939326": { - "id": "n1820939326", - "loc": [-85.1240925, 42.0771546] - }, - "n1820939329": { - "id": "n1820939329", - "loc": [-85.2261653, 42.0342225] - }, - "n1820939331": { - "id": "n1820939331", - "loc": [-85.5259933, 41.972211] - }, - "n1820939333": { - "id": "n1820939333", - "loc": [-85.0074754, 42.0883183] - }, - "n1820939335": { - "id": "n1820939335", - "loc": [-85.0764014, 42.1055549] - }, - "n1820939336": { - "id": "n1820939336", - "loc": [-85.2908773, 41.9769597] - }, - "n1820939337": { - "id": "n1820939337", - "loc": [-85.4095382, 42.0083449] - }, - "n1820939346": { - "id": "n1820939346", - "loc": [-85.2514166, 42.0111753] - }, - "n1820939348": { - "id": "n1820939348", - "loc": [-85.0030377, 42.0873799] - }, - "n1820939350": { - "id": "n1820939350", - "loc": [-85.3659362, 41.9964974] - }, - "n1820939352": { - "id": "n1820939352", - "loc": [-85.226058, 42.0348281] - }, - "n1820939355": { - "id": "n1820939355", - "loc": [-85.1902408, 42.0507101] - }, - "n1820939357": { - "id": "n1820939357", - "loc": [-85.2781854, 41.9946001] - }, - "n1820939359": { - "id": "n1820939359", - "loc": [-85.2139988, 42.0405175] - }, - "n1820939361": { - "id": "n1820939361", - "loc": [-85.0086609, 42.0908262] - }, - "n1820939363": { - "id": "n1820939363", - "loc": [-85.0627128, 42.1043398] - }, - "n1820939365": { - "id": "n1820939365", - "loc": [-85.1311346, 42.072501] - }, - "n1820939369": { - "id": "n1820939369", - "loc": [-85.248198, 42.0082652] - }, - "n1820939370": { - "id": "n1820939370", - "loc": [-84.99792, 42.087794] - }, - "n1820939371": { - "id": "n1820939371", - "loc": [-85.2786775, 41.9942783] - }, - "n1820939372": { - "id": "n1820939372", - "loc": [-85.0342103, 42.1013957] - }, - "n1820939373": { - "id": "n1820939373", - "loc": [-85.2022357, 42.0444799] - }, - "n1820939374": { - "id": "n1820939374", - "loc": [-85.2279205, 42.0337388] - }, - "n1820939375": { - "id": "n1820939375", - "loc": [-85.1337699, 42.0712614] - }, - "n1820939376": { - "id": "n1820939376", - "loc": [-85.317517, 41.9707062] - }, - "n1820939377": { - "id": "n1820939377", - "loc": [-85.1326326, 42.070218] - }, - "n1820939394": { - "id": "n1820939394", - "loc": [-85.0197746, 42.0899118] - }, - "n1820939397": { - "id": "n1820939397", - "loc": [-85.2590076, 41.9984632] - }, - "n1820939399": { - "id": "n1820939399", - "loc": [-85.2469964, 42.0083449] - }, - "n1820939400": { - "id": "n1820939400", - "loc": [-85.2470929, 42.0146668] - }, - "n1820939401": { - "id": "n1820939401", - "loc": [-84.9984095, 42.0878087] - }, - "n1820939402": { - "id": "n1820939402", - "loc": [-85.2372653, 42.0243273] - }, - "n1820939403": { - "id": "n1820939403", - "loc": [-85.2454986, 42.0091955] - }, - "n1820939404": { - "id": "n1820939404", - "loc": [-85.0539205, 42.1035995] - }, - "n1820939405": { - "id": "n1820939405", - "loc": [-85.550601, 41.9706101] - }, - "n1820939406": { - "id": "n1820939406", - "loc": [-85.0351343, 42.0999656] - }, - "n1820939407": { - "id": "n1820939407", - "loc": [-85.0082908, 42.0905755] - }, - "n1820939408": { - "id": "n1820939408", - "loc": [-85.0132904, 42.0902251] - }, - "n1820939410": { - "id": "n1820939410", - "loc": [-85.0892546, 42.094012] - }, - "n1820939412": { - "id": "n1820939412", - "loc": [-85.0350793, 42.1030315] - }, - "n1820939416": { - "id": "n1820939416", - "loc": [-85.0012406, 42.0886777] - }, - "n1820939418": { - "id": "n1820939418", - "loc": [-85.0577453, 42.1029229] - }, - "n1820939420": { - "id": "n1820939420", - "loc": [-85.1230786, 42.0776722] - }, - "n1820939422": { - "id": "n1820939422", - "loc": [-85.571136, 41.9649304] - }, - "n1820939436": { - "id": "n1820939436", - "loc": [-85.1137968, 42.0848997] - }, - "n1820939437": { - "id": "n1820939437", - "loc": [-85.3559584, 41.9925105] - }, - "n1820939438": { - "id": "n1820939438", - "loc": [-85.0080172, 42.0903565] - }, - "n1820939439": { - "id": "n1820939439", - "loc": [-85.0048897, 42.0880913] - }, - "n1820939441": { - "id": "n1820939441", - "loc": [-85.0406959, 42.1018574] - }, - "n1820939443": { - "id": "n1820939443", - "loc": [-85.3897328, 42.0029078] - }, - "n1820939445": { - "id": "n1820939445", - "loc": [-85.122349, 42.0782814] - }, - "n1820939448": { - "id": "n1820939448", - "loc": [-85.4872193, 41.985036] - }, - "n1820939450": { - "id": "n1820939450", - "loc": [-85.0120459, 42.0904919] - }, - "n1820939452": { - "id": "n1820939452", - "loc": [-85.6320543, 41.921982] - }, - "n1820939456": { - "id": "n1820939456", - "loc": [-85.0844749, 42.1036843] - }, - "n1820939458": { - "id": "n1820939458", - "loc": [-85.0968037, 42.091296] - }, - "n1820939463": { - "id": "n1820939463", - "loc": [-85.5339747, 41.9681841] - }, - "n1820939465": { - "id": "n1820939465", - "loc": [-85.4125423, 42.0072129] + "loc": [-85.636028, 41.933848] }, "n1820939467": { "id": "n1820939467", - "loc": [-85.6335563, 41.9303626] - }, - "n1820939469": { - "id": "n1820939469", - "loc": [-85.2821014, 41.9932126] - }, - "n1820939471": { - "id": "n1820939471", - "loc": [-85.374691, 41.9969917] - }, - "n1820939485": { - "id": "n1820939485", - "loc": [-85.4471321, 42.0049806] - }, - "n1820939487": { - "id": "n1820939487", - "loc": [-85.3752532, 41.9972206] - }, - "n1820939489": { - "id": "n1820939489", - "loc": [-85.4517283, 42.005927] - }, - "n1820939492": { - "id": "n1820939492", - "loc": [-85.4662552, 42.0005693] - }, - "n1820939494": { - "id": "n1820939494", - "loc": [-85.0120083, 42.0902928] - }, - "n1820939496": { - "id": "n1820939496", - "loc": [-85.044463, 42.1004631] - }, - "n1820939498": { - "id": "n1820939498", - "loc": [-85.418293, 42.0089667] - }, - "n1820939500": { - "id": "n1820939500", - "loc": [-85.0554762, 42.1027358] - }, - "n1820939504": { - "id": "n1820939504", - "loc": [-85.1246289, 42.0746858] - }, - "n1820939507": { - "id": "n1820939507", - "loc": [-85.0408139, 42.1021838] - }, - "n1820939508": { - "id": "n1820939508", - "loc": [-85.1236204, 42.0775169] - }, - "n1820939509": { - "id": "n1820939509", - "loc": [-85.0350109, 42.1037428] - }, - "n1820939510": { - "id": "n1820939510", - "loc": [-85.0551583, 42.1029878] - }, - "n1820939511": { - "id": "n1820939511", - "loc": [-85.0956771, 42.0916662] - }, - "n1820939512": { - "id": "n1820939512", - "loc": [-85.2323408, 42.0273638] - }, - "n1820939513": { - "id": "n1820939513", - "loc": [-85.1232771, 42.0762388] - }, - "n1820939531": { - "id": "n1820939531", - "loc": [-85.264608, 41.9997828] - }, - "n1820939533": { - "id": "n1820939533", - "loc": [-85.4198808, 42.0087914] - }, - "n1820939535": { - "id": "n1820939535", - "loc": [-85.3080864, 41.9715677] - }, - "n1820939536": { - "id": "n1820939536", - "loc": [-85.1189426, 42.0812596] - }, - "n1820939537": { - "id": "n1820939537", - "loc": [-85.2642741, 41.9996764] - }, - "n1820939538": { - "id": "n1820939538", - "loc": [-85.2572531, 42.0079627] - }, - "n1820939539": { - "id": "n1820939539", - "loc": [-85.2907807, 41.9790174] - }, - "n1820939540": { - "id": "n1820939540", - "loc": [-85.3171415, 41.9707301] - }, - "n1820939541": { - "id": "n1820939541", - "loc": [-85.08777, 42.0953841] - }, - "n1820939542": { - "id": "n1820939542", - "loc": [-85.1239262, 42.0773218] - }, - "n1820939543": { - "id": "n1820939543", - "loc": [-84.9973956, 42.0877968] - }, - "n1820939544": { - "id": "n1820939544", - "loc": [-85.011606, 42.0896161] - }, - "n1820939545": { - "id": "n1820939545", - "loc": [-85.4077358, 42.0082971] - }, - "n1820939546": { - "id": "n1820939546", - "loc": [-85.3614945, 41.9933717] - }, - "n1820939547": { - "id": "n1820939547", - "loc": [-85.3189118, 41.9697649] - }, - "n1820939550": { - "id": "n1820939550", - "loc": [-85.1262691, 42.0740221] - }, - "n1820939551": { - "id": "n1820939551", - "loc": [-85.3863639, 41.9994635] - }, - "n1820939552": { - "id": "n1820939552", - "loc": [-85.2836034, 41.9923953] - }, - "n1820939554": { - "id": "n1820939554", - "loc": [-85.3222377, 41.9715916] - }, - "n1820939555": { - "id": "n1820939555", - "loc": [-85.0122658, 42.0906312] - }, - "n1820939556": { - "id": "n1820939556", - "loc": [-85.0022652, 42.0877581] - }, - "n1820939557": { - "id": "n1820939557", - "loc": [-85.1011314, 42.0899954] - }, - "n1820939559": { - "id": "n1820939559", - "loc": [-85.0008181, 42.0885293] - }, - "n1820939561": { - "id": "n1820939561", - "loc": [-85.3637046, 41.9942488] - }, - "n1820939562": { - "id": "n1820939562", - "loc": [-85.4500117, 42.0052892] - }, - "n1820939563": { - "id": "n1820939563", - "loc": [-85.0537636, 42.1036365] - }, - "n1820939565": { - "id": "n1820939565", - "loc": [-85.2367503, 42.0246939] - }, - "n1820939566": { - "id": "n1820939566", - "loc": [-85.0448479, 42.1002653] + "loc": [-85.633556, 41.930363] }, "n1820939567": { "id": "n1820939567", - "loc": [-85.6337065, 41.9295006] - }, - "n1820939568": { - "id": "n1820939568", - "loc": [-85.0879792, 42.095623] + "loc": [-85.633707, 41.929501] }, "n1820939569": { "id": "n1820939569", - "loc": [-85.6347623, 41.9352369] - }, - "n1820939570": { - "id": "n1820939570", - "loc": [-85.1497931, 42.0620378] - }, - "n1820939571": { - "id": "n1820939571", - "loc": [-85.5676169, 41.9656324] - }, - "n1820939572": { - "id": "n1820939572", - "loc": [-85.638041, 41.9166971] - }, - "n1820939573": { - "id": "n1820939573", - "loc": [-85.4993429, 41.9781293] - }, - "n1820939574": { - "id": "n1820939574", - "loc": [-85.5352831, 41.9692127] - }, - "n1820939575": { - "id": "n1820939575", - "loc": [-84.9924429, 42.0857118] - }, - "n1820939577": { - "id": "n1820939577", - "loc": [-85.0581101, 42.1026721] - }, - "n1820939578": { - "id": "n1820939578", - "loc": [-85.641088, 41.9094477] - }, - "n1820939579": { - "id": "n1820939579", - "loc": [-85.2548821, 42.0052282] - }, - "n1820939580": { - "id": "n1820939580", - "loc": [-85.1124463, 42.0859734] - }, - "n1820939581": { - "id": "n1820939581", - "loc": [-85.1083479, 42.0857624] - }, - "n1820939583": { - "id": "n1820939583", - "loc": [-85.1387424, 42.0648893] - }, - "n1820939584": { - "id": "n1820939584", - "loc": [-85.5152645, 41.9700892] - }, - "n1820939585": { - "id": "n1820939585", - "loc": [-85.5463738, 41.9713439] - }, - "n1820939586": { - "id": "n1820939586", - "loc": [-85.360207, 41.9933717] - }, - "n1820939587": { - "id": "n1820939587", - "loc": [-85.2402372, 42.0120917] - }, - "n1820939588": { - "id": "n1820939588", - "loc": [-85.3936381, 42.0047255] - }, - "n1820939589": { - "id": "n1820939589", - "loc": [-85.3310246, 41.973784] - }, - "n1820939590": { - "id": "n1820939590", - "loc": [-85.0329403, 42.096642] - }, - "n1820939591": { - "id": "n1820939591", - "loc": [-85.0097271, 42.0910981] - }, - "n1820939593": { - "id": "n1820939593", - "loc": [-85.0446562, 42.1003437] - }, - "n1820939595": { - "id": "n1820939595", - "loc": [-85.0856671, 42.1008452] - }, - "n1820939596": { - "id": "n1820939596", - "loc": [-85.4087228, 42.0083449] - }, - "n1820939597": { - "id": "n1820939597", - "loc": [-85.0609519, 42.1052564] - }, - "n1820939598": { - "id": "n1820939598", - "loc": [-85.3432126, 41.9874548] - }, - "n1820939599": { - "id": "n1820939599", - "loc": [-85.4041738, 42.0067027] - }, - "n1820939600": { - "id": "n1820939600", - "loc": [-85.0825437, 42.1035768] - }, - "n1820939601": { - "id": "n1820939601", - "loc": [-85.048422, 42.101498] - }, - "n1820939602": { - "id": "n1820939602", - "loc": [-85.0336256, 42.0999031] - }, - "n1820939603": { - "id": "n1820939603", - "loc": [-85.046818, 42.1014104] - }, - "n1820939605": { - "id": "n1820939605", - "loc": [-85.2856524, 41.98078] - }, - "n1820939607": { - "id": "n1820939607", - "loc": [-85.1118173, 42.0864245] - }, - "n1820939609": { - "id": "n1820939609", - "loc": [-85.0443397, 42.1006263] - }, - "n1820939610": { - "id": "n1820939610", - "loc": [-85.0336698, 42.0978361] - }, - "n1820939611": { - "id": "n1820939611", - "loc": [-85.4630322, 42.0014248] - }, - "n1820939612": { - "id": "n1820939612", - "loc": [-85.0613127, 42.1052353] - }, - "n1820939613": { - "id": "n1820939613", - "loc": [-85.0137571, 42.0887801] - }, - "n1820939614": { - "id": "n1820939614", - "loc": [-85.272487, 41.9982013] - }, - "n1820939616": { - "id": "n1820939616", - "loc": [-85.4665727, 41.9983791] - }, - "n1820939617": { - "id": "n1820939617", - "loc": [-85.1288078, 42.0725476] - }, - "n1820939618": { - "id": "n1820939618", - "loc": [-85.4653282, 42.00109] - }, - "n1820939619": { - "id": "n1820939619", - "loc": [-85.2314717, 42.0276746] - }, - "n1820939620": { - "id": "n1820939620", - "loc": [-85.255982, 42.0003569] - }, - "n1820939621": { - "id": "n1820939621", - "loc": [-85.2886779, 41.9787223] - }, - "n1820939622": { - "id": "n1820939622", - "loc": [-85.22438, 42.0367509] - }, - "n1820939623": { - "id": "n1820939623", - "loc": [-85.0334713, 42.0998382] - }, - "n1820939624": { - "id": "n1820939624", - "loc": [-85.2236504, 42.037484] - }, - "n1820939625": { - "id": "n1820939625", - "loc": [-85.636908, 41.9175162] - }, - "n1820939627": { - "id": "n1820939627", - "loc": [-85.2669187, 41.9989707] - }, - "n1820939628": { - "id": "n1820939628", - "loc": [-85.3247268, 41.9720702] - }, - "n1820939629": { - "id": "n1820939629", - "loc": [-85.3785104, 41.9987299] - }, - "n1820939630": { - "id": "n1820939630", - "loc": [-85.5267658, 41.9720515] - }, - "n1820939631": { - "id": "n1820939631", - "loc": [-85.2445116, 42.0098811] - }, - "n1820939632": { - "id": "n1820939632", - "loc": [-85.1271448, 42.0725077] - }, - "n1820939633": { - "id": "n1820939633", - "loc": [-85.0345751, 42.099724] - }, - "n1820939634": { - "id": "n1820939634", - "loc": [-85.4217476, 42.0089986] - }, - "n1820939635": { - "id": "n1820939635", - "loc": [-85.3121848, 41.9689433] - }, - "n1820939636": { - "id": "n1820939636", - "loc": [-85.2826419, 41.9929985] - }, - "n1820939637": { - "id": "n1820939637", - "loc": [-85.3160257, 41.9706344] - }, - "n1820939638": { - "id": "n1820939638", - "loc": [-85.5684967, 41.9657919] - }, - "n1820939640": { - "id": "n1820939640", - "loc": [-85.225131, 42.0356194] - }, - "n1820939642": { - "id": "n1820939642", - "loc": [-85.1324124, 42.0693328] - }, - "n1820939644": { - "id": "n1820939644", - "loc": [-84.9994073, 42.0878843] - }, - "n1820939645": { - "id": "n1820939645", - "loc": [-85.1087596, 42.0863329] - }, - "n1820939646": { - "id": "n1820939646", - "loc": [-85.2915532, 41.9782996] - }, - "n1820939647": { - "id": "n1820939647", - "loc": [-84.9988708, 42.0877808] - }, - "n1820939648": { - "id": "n1820939648", - "loc": [-85.2243628, 42.0356728] - }, - "n1820939649": { - "id": "n1820939649", - "loc": [-85.0427397, 42.1020524] - }, - "n1820939650": { - "id": "n1820939650", - "loc": [-85.6388392, 41.9100752] - }, - "n1820939651": { - "id": "n1820939651", - "loc": [-85.0133709, 42.0888557] - }, - "n1820939652": { - "id": "n1820939652", - "loc": [-85.318798, 41.9701211] - }, - "n1820939653": { - "id": "n1820939653", - "loc": [-85.6335778, 41.9190602] + "loc": [-85.634762, 41.935237] }, "n1820939654": { "id": "n1820939654", - "loc": [-85.6338396, 41.9370247] - }, - "n1820939655": { - "id": "n1820939655", - "loc": [-85.0939069, 42.0931988] - }, - "n1820939656": { - "id": "n1820939656", - "loc": [-85.5702347, 41.9651378] - }, - "n1820939657": { - "id": "n1820939657", - "loc": [-85.4235286, 42.0088392] - }, - "n1820939658": { - "id": "n1820939658", - "loc": [-85.2740856, 41.9972206] - }, - "n1820939659": { - "id": "n1820939659", - "loc": [-85.4824299, 41.9934195] - }, - "n1820939660": { - "id": "n1820939660", - "loc": [-85.3857846, 42.0014408] - }, - "n1820939661": { - "id": "n1820939661", - "loc": [-85.0451658, 42.10028] - }, - "n1820939662": { - "id": "n1820939662", - "loc": [-85.3893036, 42.001377] - }, - "n1820939664": { - "id": "n1820939664", - "loc": [-85.2455845, 42.0088607] - }, - "n1820939665": { - "id": "n1820939665", - "loc": [-85.2741071, 41.9951116] - }, - "n1820939666": { - "id": "n1820939666", - "loc": [-85.1298375, 42.0677718] - }, - "n1820939667": { - "id": "n1820939667", - "loc": [-85.5491848, 41.9707377] - }, - "n1820939669": { - "id": "n1820939669", - "loc": [-85.2780298, 41.995238] - }, - "n1820939670": { - "id": "n1820939670", - "loc": [-85.1330068, 42.0716926] - }, - "n1820939671": { - "id": "n1820939671", - "loc": [-85.0811342, 42.1025129] - }, - "n1820939672": { - "id": "n1820939672", - "loc": [-85.2325124, 42.0290135] - }, - "n1820939673": { - "id": "n1820939673", - "loc": [-85.2975077, 41.9716953] - }, - "n1820939674": { - "id": "n1820939674", - "loc": [-85.0951729, 42.0922394] - }, - "n1820939676": { - "id": "n1820939676", - "loc": [-85.0363252, 42.1043119] - }, - "n1820939677": { - "id": "n1820939677", - "loc": [-85.2960057, 41.97349] - }, - "n1820939678": { - "id": "n1820939678", - "loc": [-85.3701849, 41.9982515] - }, - "n1820939679": { - "id": "n1820939679", - "loc": [-85.3381486, 41.9848861] - }, - "n1820939680": { - "id": "n1820939680", - "loc": [-85.2058448, 42.0417286] - }, - "n1820939682": { - "id": "n1820939682", - "loc": [-85.0819335, 42.1034443] - }, - "n1820939683": { - "id": "n1820939683", - "loc": [-85.3872223, 41.9993359] - }, - "n1820939684": { - "id": "n1820939684", - "loc": [-85.095366, 42.091909] - }, - "n1820939685": { - "id": "n1820939685", - "loc": [-85.2327914, 42.0291888] - }, - "n1820939686": { - "id": "n1820939686", - "loc": [-85.0433459, 42.1018773] - }, - "n1820939687": { - "id": "n1820939687", - "loc": [-85.0585339, 42.1027318] - }, - "n1820939688": { - "id": "n1820939688", - "loc": [-85.0062885, 42.0876347] - }, - "n1820939689": { - "id": "n1820939689", - "loc": [-85.246299, 42.017377] - }, - "n1820939690": { - "id": "n1820939690", - "loc": [-85.2932376, 41.9742877] - }, - "n1820939691": { - "id": "n1820939691", - "loc": [-85.2962846, 41.9736815] - }, - "n1820939692": { - "id": "n1820939692", - "loc": [-85.6052365, 41.9409193] - }, - "n1820939693": { - "id": "n1820939693", - "loc": [-85.2570536, 42.0003341] - }, - "n1820939694": { - "id": "n1820939694", - "loc": [-85.0488458, 42.1014064] - }, - "n1820939695": { - "id": "n1820939695", - "loc": [-85.4050321, 42.0069578] - }, - "n1820939696": { - "id": "n1820939696", - "loc": [-85.4847517, 41.9845894] - }, - "n1820939697": { - "id": "n1820939697", - "loc": [-85.0844655, 42.1013826] - }, - "n1820939698": { - "id": "n1820939698", - "loc": [-85.1437206, 42.0650008] - }, - "n1820939699": { - "id": "n1820939699", - "loc": [-85.1168183, 42.0864034] - }, - "n1820939700": { - "id": "n1820939700", - "loc": [-85.5479831, 41.9711366] - }, - "n1820939701": { - "id": "n1820939701", - "loc": [-85.0349948, 42.1034124] - }, - "n1820939702": { - "id": "n1820939702", - "loc": [-85.0835589, 42.1038821] - }, - "n1820939703": { - "id": "n1820939703", - "loc": [-85.0203875, 42.0902649] - }, - "n1820939704": { - "id": "n1820939704", - "loc": [-85.0371191, 42.1038184] - }, - "n1820939705": { - "id": "n1820939705", - "loc": [-85.1273312, 42.0735681] - }, - "n1820939707": { - "id": "n1820939707", - "loc": [-85.1272239, 42.0730226] - }, - "n1820939710": { - "id": "n1820939710", - "loc": [-85.0349881, 42.1019012] - }, - "n1820939712": { - "id": "n1820939712", - "loc": [-85.2440459, 42.0178313] - }, - "n1820939713": { - "id": "n1820939713", - "loc": [-85.2444751, 42.0182618] - }, - "n1820939714": { - "id": "n1820939714", - "loc": [-85.0539996, 42.1032863] - }, - "n1820939715": { - "id": "n1820939715", - "loc": [-85.2215905, 42.0373246] - }, - "n1820939716": { - "id": "n1820939716", - "loc": [-85.0649712, 42.1051994] - }, - "n1820939717": { - "id": "n1820939717", - "loc": [-85.0927146, 42.0927581] - }, - "n1820939718": { - "id": "n1820939718", - "loc": [-85.3884668, 42.0042312] - }, - "n1820939719": { - "id": "n1820939719", - "loc": [-85.0840672, 42.1013241] - }, - "n1820939720": { - "id": "n1820939720", - "loc": [-85.304739, 41.9725408] - }, - "n1820939721": { - "id": "n1820939721", - "loc": [-85.2243585, 42.0371334] - }, - "n1820939722": { - "id": "n1820939722", - "loc": [-85.0599823, 42.1049686] - }, - "n1820939723": { - "id": "n1820939723", - "loc": [-85.0298825, 42.0944288] - }, - "n1820939724": { - "id": "n1820939724", - "loc": [-85.0366095, 42.1042443] - }, - "n1820939725": { - "id": "n1820939725", - "loc": [-85.0698783, 42.1058135] - }, - "n1820939726": { - "id": "n1820939726", - "loc": [-85.1054551, 42.0873361] - }, - "n1820939727": { - "id": "n1820939727", - "loc": [-84.9952324, 42.0864285] - }, - "n1820939728": { - "id": "n1820939728", - "loc": [-85.3442211, 41.9897993] - }, - "n1820939729": { - "id": "n1820939729", - "loc": [-85.4386134, 42.0056822] - }, - "n1820939730": { - "id": "n1820939730", - "loc": [-85.2438528, 42.0146589] - }, - "n1820939731": { - "id": "n1820939731", - "loc": [-85.0355581, 42.1041846] - }, - "n1820939732": { - "id": "n1820939732", - "loc": [-85.557682, 41.9724447] - }, - "n1820939734": { - "id": "n1820939734", - "loc": [-85.2299418, 42.033314] + "loc": [-85.63384, 41.937025] }, "n1820939735": { "id": "n1820939735", - "loc": [-85.6297412, 41.9419088] - }, - "n1820939736": { - "id": "n1820939736", - "loc": [-85.2645101, 41.9980259] - }, - "n1820939738": { - "id": "n1820939738", - "loc": [-85.082195, 42.1035649] - }, - "n1820939739": { - "id": "n1820939739", - "loc": [-85.234272, 42.0267102] - }, - "n1820939740": { - "id": "n1820939740", - "loc": [-85.0130758, 42.0895006] - }, - "n1820939741": { - "id": "n1820939741", - "loc": [-85.4594702, 42.0000375] - }, - "n1820939742": { - "id": "n1820939742", - "loc": [-84.9946745, 42.0863687] - }, - "n1820939743": { - "id": "n1820939743", - "loc": [-85.6438775, 41.9120186] - }, - "n1820939744": { - "id": "n1820939744", - "loc": [-85.6372685, 41.9168089] - }, - "n1820939745": { - "id": "n1820939745", - "loc": [-85.2789468, 41.9893208] - }, - "n1820939747": { - "id": "n1820939747", - "loc": [-85.3775019, 41.998427] - }, - "n1820939749": { - "id": "n1820939749", - "loc": [-85.0993571, 42.0909178] - }, - "n1820939750": { - "id": "n1820939750", - "loc": [-85.1308503, 42.0669339] - }, - "n1820939751": { - "id": "n1820939751", - "loc": [-85.4802566, 41.9856659] - }, - "n1820939752": { - "id": "n1820939752", - "loc": [-85.2543563, 42.0108804] - }, - "n1820939753": { - "id": "n1820939753", - "loc": [-85.1041033, 42.0878815] - }, - "n1820939755": { - "id": "n1820939755", - "loc": [-85.4000969, 42.0071651] - }, - "n1820939757": { - "id": "n1820939757", - "loc": [-85.3858275, 42.0022381] - }, - "n1820939758": { - "id": "n1820939758", - "loc": [-85.3653998, 41.996609] - }, - "n1820939759": { - "id": "n1820939759", - "loc": [-85.2432949, 42.0202305] - }, - "n1820939760": { - "id": "n1820939760", - "loc": [-85.3878874, 42.0042472] - }, - "n1820939761": { - "id": "n1820939761", - "loc": [-85.2516741, 42.0114145] - }, - "n1820939762": { - "id": "n1820939762", - "loc": [-85.2788825, 41.9865142] - }, - "n1820939763": { - "id": "n1820939763", - "loc": [-85.0009147, 42.0886686] - }, - "n1820939764": { - "id": "n1820939764", - "loc": [-85.3918142, 42.003434] - }, - "n1820939765": { - "id": "n1820939765", - "loc": [-85.5532832, 41.9696848] - }, - "n1820939766": { - "id": "n1820939766", - "loc": [-85.5545063, 41.969254] - }, - "n1820939768": { - "id": "n1820939768", - "loc": [-85.1327989, 42.0704769] - }, - "n1820939770": { - "id": "n1820939770", - "loc": [-85.0588558, 42.1047696] - }, - "n1820939772": { - "id": "n1820939772", - "loc": [-85.555798, 41.9713017] - }, - "n1820939773": { - "id": "n1820939773", - "loc": [-85.0565853, 42.1023589] - }, - "n1820939774": { - "id": "n1820939774", - "loc": [-85.2582941, 41.9992765] - }, - "n1820939775": { - "id": "n1820939775", - "loc": [-85.3007264, 41.9727642] - }, - "n1820939776": { - "id": "n1820939776", - "loc": [-85.2477045, 42.0082652] - }, - "n1820939777": { - "id": "n1820939777", - "loc": [-85.2415247, 42.0104973] - }, - "n1821006698": { - "id": "n1821006698", - "loc": [-85.6345227, 41.9382009] - }, - "n1821006700": { - "id": "n1821006700", - "loc": [-85.6344894, 41.938975] - }, - "n1821006704": { - "id": "n1821006704", - "loc": [-85.6351181, 41.9370157] - }, - "n1821006706": { - "id": "n1821006706", - "loc": [-85.6357554, 41.9361657] - }, - "n1821006708": { - "id": "n1821006708", - "loc": [-85.6351235, 41.9368481] - }, - "n1821006710": { - "id": "n1821006710", - "loc": [-85.6352844, 41.9364211] - }, - "n1821006712": { - "id": "n1821006712", - "loc": [-85.6351503, 41.937307] - }, - "n1821006716": { - "id": "n1821006716", - "loc": [-85.6350366, 41.9379774] - }, - "n1821006725": { - "id": "n1821006725", - "loc": [-85.6352147, 41.9375903] - }, - "n1821137607": { - "id": "n1821137607", - "loc": [-85.5297057, 41.9669915] - }, - "n1821137608": { - "id": "n1821137608", - "loc": [-85.5288598, 41.9673094] - }, - "n1821139530": { - "id": "n1821139530", - "loc": [-85.4832228, 41.9881686] - }, - "n1821139531": { - "id": "n1821139531", - "loc": [-85.4812101, 41.9851258] - }, - "n1821139532": { - "id": "n1821139532", - "loc": [-85.4799127, 41.9860244] - }, - "n1821139533": { - "id": "n1821139533", - "loc": [-85.4800313, 41.9865555] - }, - "n1841425201": { - "id": "n1841425201", - "loc": [-85.4334577, 42.0063713] - }, - "n1841425222": { - "id": "n1841425222", - "loc": [-85.4382449, 42.0055785] - }, - "n1914861007": { - "id": "n1914861007", - "loc": [-85.394959, 42.0057472] - }, - "n1914861057": { - "id": "n1914861057", - "loc": [-85.3967185, 42.0049695] - }, - "n1914861112": { - "id": "n1914861112", - "loc": [-85.394179, 42.0056906] - }, - "n1914861306": { - "id": "n1914861306", - "loc": [-85.3900226, 42.0028488] + "loc": [-85.629741, 41.941909] }, "n2114807565": { "id": "n2114807565", - "loc": [-85.6385979, 41.9577824] + "loc": [-85.638598, 41.957782] }, "n2114807568": { "id": "n2114807568", - "loc": [-85.6325097, 41.9775713] + "loc": [-85.63251, 41.977571] }, "n2114807572": { "id": "n2114807572", - "loc": [-85.6328996, 41.9980965] + "loc": [-85.6329, 41.998097] }, "n2114807578": { "id": "n2114807578", - "loc": [-85.6344818, 41.9696956] + "loc": [-85.634482, 41.969696] }, "n2114807583": { "id": "n2114807583", - "loc": [-85.6326289, 41.9757853] + "loc": [-85.632629, 41.975785] }, "n2114807593": { "id": "n2114807593", - "loc": [-85.6360828, 41.9650674] + "loc": [-85.636083, 41.965067] }, "n2130304159": { "id": "n2130304159", - "loc": [-85.6352537, 41.9450015], + "loc": [-85.635254, 41.945001], "tags": { "railway": "level_crossing" } }, - "n2139795852": { - "id": "n2139795852", - "loc": [-85.6374708, 41.9311633] - }, "n2139858882": { "id": "n2139858882", - "loc": [-85.635178, 41.9356158] + "loc": [-85.635178, 41.935616] }, "n2139858883": { "id": "n2139858883", - "loc": [-85.63533, 41.9355886] + "loc": [-85.63533, 41.935589] }, "n2139858884": { "id": "n2139858884", - "loc": [-85.6353819, 41.93556] + "loc": [-85.635382, 41.93556] }, "n2139858885": { "id": "n2139858885", - "loc": [-85.6353665, 41.9355157] + "loc": [-85.635367, 41.935516] }, "n2139858886": { "id": "n2139858886", - "loc": [-85.6353165, 41.9354971] + "loc": [-85.635317, 41.935497] }, "n2139858887": { "id": "n2139858887", - "loc": [-85.6352454, 41.9355328] + "loc": [-85.635245, 41.935533] }, "n2139858888": { "id": "n2139858888", - "loc": [-85.6350184, 41.9357846] + "loc": [-85.635018, 41.935785] }, "n2139858889": { "id": "n2139858889", - "loc": [-85.634978, 41.9359448] + "loc": [-85.634978, 41.935945] }, "n2139858890": { "id": "n2139858890", - "loc": [-85.6347723, 41.9361523] + "loc": [-85.634772, 41.936152] }, "n2139858891": { "id": "n2139858891", - "loc": [-85.6347165, 41.9362667] + "loc": [-85.634716, 41.936267] }, "n2139858892": { "id": "n2139858892", - "loc": [-85.6346992, 41.9364312] + "loc": [-85.634699, 41.936431] }, "n2139858893": { "id": "n2139858893", - "loc": [-85.634603, 41.9366329] + "loc": [-85.634603, 41.936633] }, "n2139858894": { "id": "n2139858894", - "loc": [-85.6345973, 41.9367488] + "loc": [-85.634597, 41.936749] }, "n2139858895": { "id": "n2139858895", - "loc": [-85.6345127, 41.9369734] + "loc": [-85.634513, 41.936973] }, "n2139858896": { "id": "n2139858896", - "loc": [-85.634478, 41.9371923] + "loc": [-85.634478, 41.937192] }, "n2139858897": { "id": "n2139858897", - "loc": [-85.6344838, 41.9373768] + "loc": [-85.634484, 41.937377] }, "n2139858898": { "id": "n2139858898", - "loc": [-85.6346242, 41.9375299] + "loc": [-85.634624, 41.93753] }, "n2139858899": { "id": "n2139858899", - "loc": [-85.6347723, 41.9376357] + "loc": [-85.634772, 41.937636] }, "n2139858900": { "id": "n2139858900", - "loc": [-85.6347607, 41.9377788] + "loc": [-85.634761, 41.937779] }, "n2139858901": { "id": "n2139858901", - "loc": [-85.6346204, 41.9379533] + "loc": [-85.63462, 41.937953] }, "n2139858902": { "id": "n2139858902", - "loc": [-85.6344184, 41.9380105] + "loc": [-85.634418, 41.93801] }, "n2139858903": { "id": "n2139858903", - "loc": [-85.6341627, 41.9380406] + "loc": [-85.634163, 41.938041] }, "n2139858904": { "id": "n2139858904", - "loc": [-85.634005, 41.9381679] + "loc": [-85.634005, 41.938168] }, "n2139858905": { "id": "n2139858905", - "loc": [-85.63393, 41.9383353] + "loc": [-85.63393, 41.938335] }, "n2139858906": { "id": "n2139858906", - "loc": [-85.6338588, 41.9384597] + "loc": [-85.633859, 41.93846] }, "n2139858907": { "id": "n2139858907", - "loc": [-85.6336627, 41.9387759] + "loc": [-85.633663, 41.938776] }, "n2139858908": { "id": "n2139858908", - "loc": [-85.6335127, 41.9389361] + "loc": [-85.633513, 41.938936] }, "n2139858933": { "id": "n2139858933", - "loc": [-85.6353118, 41.9432646] + "loc": [-85.635312, 41.943265] }, "n2139858934": { "id": "n2139858934", - "loc": [-85.6353952, 41.9433002] + "loc": [-85.635395, 41.9433] }, "n2139858935": { "id": "n2139858935", - "loc": [-85.6356496, 41.9433255] + "loc": [-85.63565, 41.943326] }, "n2139858936": { "id": "n2139858936", - "loc": [-85.6363128, 41.9433373] + "loc": [-85.636313, 41.943337] }, "n2139858937": { "id": "n2139858937", - "loc": [-85.6365467, 41.9433779] + "loc": [-85.636547, 41.943378] }, "n2139858938": { "id": "n2139858938", - "loc": [-85.6368692, 41.9435265] + "loc": [-85.636869, 41.943526] }, "n2139858939": { "id": "n2139858939", - "loc": [-85.6370986, 41.9437039] + "loc": [-85.637099, 41.943704] }, "n2139858940": { "id": "n2139858940", - "loc": [-85.6372371, 41.9437732] + "loc": [-85.637237, 41.943773] }, "n2139858941": { "id": "n2139858941", - "loc": [-85.6374756, 41.9438171] + "loc": [-85.637476, 41.943817] }, "n2139858942": { "id": "n2139858942", - "loc": [-85.6376164, 41.9439286] + "loc": [-85.637616, 41.943929] }, "n2139858943": { "id": "n2139858943", - "loc": [-85.6377504, 41.944138] + "loc": [-85.63775, 41.944138] }, "n2139858944": { "id": "n2139858944", - "loc": [-85.6384204, 41.9443137] + "loc": [-85.63842, 41.944314] }, "n2139858945": { "id": "n2139858945", - "loc": [-85.6385726, 41.9444506] + "loc": [-85.638573, 41.944451] }, "n2139858946": { "id": "n2139858946", - "loc": [-85.638702, 41.9445739] + "loc": [-85.638702, 41.944574] }, "n2139858947": { "id": "n2139858947", - "loc": [-85.6387179, 41.9446516] + "loc": [-85.638718, 41.944652] }, "n2139858948": { "id": "n2139858948", - "loc": [-85.6387088, 41.9447985] + "loc": [-85.638709, 41.944798] }, "n2139858949": { "id": "n2139858949", - "loc": [-85.6387656, 41.9449877] + "loc": [-85.638766, 41.944988] }, "n2139858950": { "id": "n2139858950", - "loc": [-85.638777, 41.9451448] + "loc": [-85.638777, 41.945145] }, "n2139858951": { "id": "n2139858951", - "loc": [-85.6387088, 41.9452631] + "loc": [-85.638709, 41.945263] }, "n2139858964": { "id": "n2139858964", - "loc": [-85.6383346, 41.9442912] + "loc": [-85.638335, 41.944291] }, "n2139858966": { "id": "n2139858966", - "loc": [-85.6384724, 41.9443605] + "loc": [-85.638472, 41.944361] }, "n2139858967": { "id": "n2139858967", - "loc": [-85.6354078, 41.9434285] + "loc": [-85.635408, 41.943429] }, "n2139858968": { "id": "n2139858968", @@ -11806,71 +4267,67 @@ }, "n2139858969": { "id": "n2139858969", - "loc": [-85.6352657, 41.9437437] + "loc": [-85.635266, 41.943744] }, "n2139858970": { "id": "n2139858970", - "loc": [-85.635271, 41.9438195] + "loc": [-85.635271, 41.943819] }, "n2139858971": { "id": "n2139858971", - "loc": [-85.6351563, 41.9438906] + "loc": [-85.635156, 41.943891] }, "n2139858972": { "id": "n2139858972", - "loc": [-85.6351384, 41.9438882] + "loc": [-85.635138, 41.943888] }, "n2139858973": { "id": "n2139858973", - "loc": [-85.6351514, 41.9438034] + "loc": [-85.635151, 41.943803] }, "n2139858974": { "id": "n2139858974", - "loc": [-85.6351237, 41.9436641] + "loc": [-85.635124, 41.943664] }, "n2139858975": { "id": "n2139858975", - "loc": [-85.6351498, 41.9436108] + "loc": [-85.63515, 41.943611] }, "n2139858976": { "id": "n2139858976", - "loc": [-85.6351058, 41.9435345] + "loc": [-85.635106, 41.943534] }, "n2139858977": { "id": "n2139858977", - "loc": [-85.6349641, 41.9432051] + "loc": [-85.634964, 41.943205] }, "n2139858986": { "id": "n2139858986", - "loc": [-85.6341205, 41.9380746] - }, - "n2139858990": { - "id": "n2139858990", - "loc": [-85.6345671, 41.9381816] + "loc": [-85.63412, 41.938075] }, "n2139858995": { "id": "n2139858995", - "loc": [-85.6339783, 41.9382273] + "loc": [-85.633978, 41.938227] }, "n2139859003": { "id": "n2139859003", - "loc": [-85.6340477, 41.9373489] + "loc": [-85.634048, 41.937349] }, "n2139859004": { "id": "n2139859004", - "loc": [-85.6339784, 41.9374752] + "loc": [-85.633978, 41.937475] }, "n2139870406": { "id": "n2139870406", - "loc": [-85.6342265, 41.9432605] + "loc": [-85.634226, 41.943261] }, "n2139877106": { "id": "n2139877106", - "loc": [-85.6346323, 41.9438746] + "loc": [-85.634632, 41.943875] }, "n2139982399": { "id": "n2139982399", - "loc": [-85.6324055, 41.9408537] + "loc": [-85.632406, 41.940854] }, "n2139982400": { "id": "n2139982400", @@ -11881,47 +4338,43 @@ }, "n2139982401": { "id": "n2139982401", - "loc": [-85.6327261, 41.9415366] + "loc": [-85.632726, 41.941537] }, "n2139982402": { "id": "n2139982402", - "loc": [-85.6326391, 41.9413598] + "loc": [-85.632639, 41.94136] }, "n2139982403": { "id": "n2139982403", - "loc": [-85.6327041, 41.9414391] + "loc": [-85.632704, 41.941439] }, "n2139982405": { "id": "n2139982405", - "loc": [-85.6322891, 41.9406009] + "loc": [-85.632289, 41.940601] }, "n2139982406": { "id": "n2139982406", - "loc": [-85.6325412, 41.9425257] + "loc": [-85.632541, 41.942526] }, "n2139989333": { "id": "n2139989333", - "loc": [-85.6340584, 41.9431731] + "loc": [-85.634058, 41.943173] }, "n2140006331": { "id": "n2140006331", - "loc": [-85.6361751, 41.9459744] + "loc": [-85.636175, 41.945974] }, "n2140006334": { "id": "n2140006334", - "loc": [-85.636528, 41.9459751] + "loc": [-85.636528, 41.945975] }, "n2140006336": { "id": "n2140006336", - "loc": [-85.6370918, 41.9458926] + "loc": [-85.637092, 41.945893] }, "n2140006338": { "id": "n2140006338", - "loc": [-85.6378806, 41.9456474] - }, - "n2140006340": { - "id": "n2140006340", - "loc": [-85.6385831, 41.9454343] + "loc": [-85.637881, 41.945647] }, "n2140006342": { "id": "n2140006342", @@ -11929,75 +4382,75 @@ }, "n2140006344": { "id": "n2140006344", - "loc": [-85.6393497, 41.9450232] + "loc": [-85.63935, 41.945023] }, "n2140006346": { "id": "n2140006346", - "loc": [-85.6388245, 41.9450145] + "loc": [-85.638824, 41.945014] }, "n2140006348": { "id": "n2140006348", - "loc": [-85.6388167, 41.9441739] + "loc": [-85.638817, 41.944174] }, "n2140006351": { "id": "n2140006351", - "loc": [-85.6382915, 41.9441797] + "loc": [-85.638291, 41.94418] }, "n2140006353": { "id": "n2140006353", - "loc": [-85.63828, 41.9438109] + "loc": [-85.63828, 41.943811] }, "n2140006355": { "id": "n2140006355", - "loc": [-85.6381949, 41.9436009] + "loc": [-85.638195, 41.943601] }, "n2140006357": { "id": "n2140006357", - "loc": [-85.6371904, 41.9435918] + "loc": [-85.63719, 41.943592] }, "n2140006359": { "id": "n2140006359", - "loc": [-85.6366966, 41.9432727] + "loc": [-85.636697, 41.943273] }, "n2140006361": { "id": "n2140006361", - "loc": [-85.6353755, 41.9432744] + "loc": [-85.635375, 41.943274] }, "n2140006365": { "id": "n2140006365", - "loc": [-85.6350906, 41.9435472] + "loc": [-85.635091, 41.943547] }, "n2140006366": { "id": "n2140006366", - "loc": [-85.6343461, 41.9441573] + "loc": [-85.634346, 41.944157] }, "n2140006395": { "id": "n2140006395", - "loc": [-85.6351171, 41.9437175] + "loc": [-85.635117, 41.943717] }, "n2140006397": { "id": "n2140006397", - "loc": [-85.635352, 41.9450206] + "loc": [-85.635352, 41.945021] }, "n2140006399": { "id": "n2140006399", - "loc": [-85.6358194, 41.9454937] + "loc": [-85.635819, 41.945494] }, "n2140006401": { "id": "n2140006401", - "loc": [-85.6348693, 41.9445739] + "loc": [-85.634869, 41.944574] }, "n2140006431": { "id": "n2140006431", - "loc": [-85.6376737, 41.9438023] + "loc": [-85.637674, 41.943802] }, "n2140006437": { "id": "n2140006437", - "loc": [-85.6382631, 41.9442724] + "loc": [-85.638263, 41.944272] }, "n2189123379": { "id": "n2189123379", - "loc": [-85.6342671, 41.9352665] + "loc": [-85.634267, 41.935266] }, "w203974076": { "id": "w203974076", @@ -12006,1732 +4459,17 @@ }, "nodes": ["n2139870442", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n2139870452"] }, - "w170989131": { - "id": "w170989131", - "tags": { - "name": "Saint Joseph River", - "waterway": "river" - }, - "nodes": [ - "n1820938225", - "n1820938712", - "n1820937596", - "n1820937574", - "n1820938515", - "n1820938330", - "n1820938678", - "n1820938240", - "n1820938950", - "n1820939226", - "n1820939575", - "n1820937913", - "n1820938223", - "n1820937668", - "n1820938545", - "n1820937584", - "n1820939742", - "n1820939727", - "n1820937578", - "n1820938149", - "n1820938124", - "n1820938888", - "n1820938898", - "n1820937922", - "n1820939543", - "n1820939370", - "n1820939401", - "n1820939647", - "n1820938345", - "n1820939644", - "n1820938333", - "n1820938370", - "n1820938624", - "n1820938493", - "n1820939559", - "n1820939763", - "n1820939237", - "n1820939416", - "n1820937810", - "n1820938317", - "n1820938324", - "n1820937558", - "n1820939556", - "n1820938298", - "n1820939348", - "n1820939125", - "n1820939081", - "n1820938859", - "n1820939126", - "n1820938881", - "n1820939439", - "n1820939324", - "n1820939128", - "n1820938101", - "n1820937706", - "n1820938382", - "n1820938776", - "n1820937815", - "n1820939177", - "n1820939688", - "n1820938952", - "n1820938216", - "n1820938387", - "n1820939333", - "n1820938243", - "n1820938248", - "n1820937666", - "n1820939051", - "n1820938332", - "n1820939438", - "n1820939407", - "n1820939361", - "n1820937517", - "n1820938770", - "n1820939591", - "n1820937857", - "n1820938491", - "n1820937993", - "n1820938125", - "n1820938166", - "n1820937746", - "n1820939028", - "n1820937638", - "n1820938676", - "n1820938843", - "n1820938844", - "n1820937978", - "n1820938730", - "n1820939544", - "n1820938304", - "n1820939123", - "n1820939494", - "n1820939450", - "n1820939555", - "n1820938133", - "n1820938129", - "n1820938871", - "n1820939408", - "n1820938669", - "n1820938260", - "n1820939740", - "n1820937625", - "n1820938631", - "n1820939651", - "n1820939613", - "n1820937850", - "n1820938325", - "n1820937736", - "n1820938804", - "n1820938837", - "n1820938014", - "n1820938991", - "n1820938722", - "n1820938935", - "n1820937870", - "n1820938432", - "n1820937986", - "n1820938756", - "n1820938966", - "n1820939159", - "n1820937744", - "n1820938334", - "n1820937645", - "n1820939394", - "n1820937656", - "n1820938392", - "n1820939703", - "n1820938385", - "n1820938947", - "n1820938854", - "n1820938428", - "n1820938488", - "n1820938269", - "n1820938668", - "n1820938268", - "n1820938707", - "n1820937732", - "n1820939144", - "n1820938481", - "n1820938771", - "n1820938686", - "n1820938948", - "n1820937997", - "n1820937769", - "n1820939003", - "n1820938083", - "n1820939011", - "n1820938803", - "n1820938700", - "n1820939723", - "n1820938808", - "n1820938262", - "n1820938081", - "n1820938926", - "n1820938326", - "n1820938102", - "n1820938508", - "n1820939590", - "n1820939199", - "n1820938084", - "n1820938870", - "n1820938895", - "n1820937611", - "n1820938918", - "n1820938514", - "n1820939610", - "n1820938910", - "n1820937523", - "n1820938127", - "n1820939108", - "n1820937981", - "n1820938938", - "n1820938715", - "n1820939016", - "n1820938237", - "n1820939623", - "n1820939602", - "n1820937734", - "n1820938977", - "n1820939633", - "n1820939156", - "n1820939406", - "n1820938279", - "n1820938301", - "n1820937678", - "n1820937671", - "n1820939163", - "n1820938356", - "n1820939372", - "n1820937568", - "n1820937626", - "n1820939710", - "n1820939004", - "n1820938253", - "n1820938571", - "n1820937513", - "n1820939412", - "n1820939701", - "n1820939509", - "n1820938839", - "n1820939731", - "n1820937798", - "n1820939676", - "n1820939724", - "n1820939243", - "n1820939704", - "n1820937814", - "n1820937599", - "n1820938199", - "n1820938995", - "n1820938445", - "n1820938069", - "n1820938470", - "n1820939074", - "n1820938193", - "n1820938740", - "n1820938047", - "n1820939507", - "n1820939441", - "n1820939160", - "n1820937849", - "n1820937840", - "n1820938052", - "n1820938988", - "n1820938796", - "n1820937724", - "n1820937620", - "n1820939304", - "n1820938343", - "n1820939649", - "n1820938875", - "n1820939686", - "n1820938476", - "n1820937801", - "n1820937737", - "n1820938264", - "n1820939609", - "n1820939496", - "n1820939593", - "n1820939566", - "n1820939661", - "n1820937782", - "n1820938912", - "n1820939173", - "n1820937733", - "n1820938953", - "n1820939603", - "n1820937607", - "n1820938468", - "n1820939601", - "n1820939694", - "n1820939133", - "n1820938897", - "n1820938893", - "n1820937831", - "n1820937730", - "n1820938820", - "n1820938046", - "n1820938426", - "n1820938347", - "n1820937582", - "n1820938954", - "n1820938033", - "n1820938104", - "n1820938680", - "n1820939563", - "n1820939404", - "n1820939714", - "n1820939000", - "n1820937992", - "n1820938168", - "n1820939510", - "n1820939500", - "n1820937509", - "n1820938865", - "n1820939773", - "n1820938138", - "n1820938905", - "n1820937623", - "n1820939418", - "n1820937946", - "n1820939577", - "n1820937615", - "n1820939687", - "n1820939119", - "n1820937988", - "n1820938337", - "n1820937750", - "n1820938703", - "n1820938339", - "n1820939044", - "n1820939770", - "n1820938913", - "n1820937672", - "n1820939722", - "n1820937768", - "n1820939597", - "n1820939612", - "n1820937699", - "n1820937682", - "n1820937669", - "n1820937657", - "n1820939363", - "n1820937800", - "n1820938265", - "n1820937760", - "n1820938207", - "n1820938115", - "n1820939130", - "n1820939716", - "n1820938338", - "n1820938239", - "n1820939040", - "n1820938064", - "n1820938855", - "n1820939015", - "n1820938258", - "n1820939042", - "n1820939043", - "n1820938443", - "n1820939725", - "n1820937675", - "n1820938568", - "n1820938280", - "n1820937705", - "n1820938775", - "n1820938636", - "n1820938626", - "n1820937859", - "n1820938096", - "n1820937852", - "n1820939039", - "n1820938247", - "n1820938585", - "n1820937707", - "n1820938117", - "n1820938909", - "n1820939115", - "n1820939335", - "n1820938805", - "n1820937935", - "n1820937876", - "n1820938699", - "n1820937869", - "n1820938603", - "n1820938100", - "n1820938500", - "n1820938283", - "n1820938275", - "n1820938923", - "n1820938365", - "n1820938349", - "n1820937804", - "n1820937903", - "n1820937608", - "n1820938688", - "n1820939671", - "n1820938092", - "n1820937820", - "n1820938753", - "n1820938922", - "n1820937990", - "n1820939682", - "n1820939738", - "n1820939600", - "n1820938167", - "n1820937726", - "n1820939702", - "n1820938209", - "n1820939456", - "n1820937837", - "n1820938222", - "n1820938902", - "n1820939162", - "n1820938965", - "n1820938461", - "n1820937681", - "n1820937514", - "n1820937764", - "n1820939719", - "n1820939697", - "n1820938899", - "n1820939093", - "n1820938702", - "n1820939595", - "n1820938749", - "n1820938348", - "n1820937606", - "n1820938675", - "n1820938830", - "n1820938737", - "n1820938758", - "n1820938716", - "n1820939107", - "n1820937863", - "n1820939033", - "n1820938163", - "n1820937867", - "n1820938819", - "n1820938034", - "n1820938252", - "n1820937563", - "n1820937868", - "n1820939032", - "n1820938632", - "n1820937982", - "n1820937943", - "n1820939568", - "n1820939541", - "n1820938215", - "n1820939097", - "n1820938812", - "n1820937518", - "n1820937952", - "n1820938711", - "n1820938736", - "n1820939066", - "n1820937591", - "n1820938082", - "n1820938108", - "n1820938496", - "n1820939410", - "n1820938949", - "n1820938327", - "n1820937708", - "n1820939023", - "n1820937772", - "n1820938256", - "n1820939083", - "n1820938378", - "n1820938961", - "n1820937610", - "n1820939717", - "n1820938695", - "n1820938590", - "n1820939655", - "n1820938341", - "n1820939054", - "n1820939157", - "n1820939674", - "n1820939684", - "n1820939511", - "n1820937631", - "n1820939458", - "n1820937830", - "n1820937709", - "n1820937779", - "n1820939749", - "n1820938880", - "n1820938856", - "n1820938557", - "n1820939557", - "n1820938249", - "n1820938818", - "n1820937594", - "n1820939114", - "n1820938416", - "n1820937508", - "n1820938990", - "n1820938201", - "n1820937759", - "n1820937987", - "n1820939164", - "n1820939753", - "n1820938187", - "n1820939067", - "n1820937586", - "n1820937941", - "n1820938121", - "n1820937807", - "n1820938521", - "n1820939726", - "n1820938244", - "n1820939014", - "n1820938741", - "n1820937629", - "n1820938664", - "n1820938747", - "n1820939082", - "n1820938709", - "n1820938320", - "n1820938270", - "n1820937619", - "n1820937777", - "n1820937718", - "n1820939138", - "n1820938056", - "n1820938155", - "n1820938596", - "n1820937775", - "n1820938437", - "n1820938128", - "n1820939581", - "n1820939145", - "n1820938546", - "n1820938184", - "n1820937601", - "n1820937794", - "n1820938539", - "n1820939645", - "n1820938438", - "n1820938436", - "n1820939025", - "n1820938915", - "n1820938534", - "n1820937605", - "n1820939607", - "n1820939101", - "n1820939580", - "n1820939268", - "n1820939134", - "n1820938849", - "n1820938754", - "n1820938079", - "n1820937842", - "n1820938781", - "n1820938873", - "n1820938495", - "n1820938381", - "n1820938503", - "n1820939436", - "n1820938502", - "n1820939087", - "n1820938996", - "n1820938449", - "n1820938907", - "n1820937979", - "n1820937780", - "n1820937546", - "n1820939699", - "n1820937677", - "n1820938957", - "n1820938946", - "n1820937776", - "n1820937717", - "n1820938718", - "n1820937637", - "n1820938510", - "n1820937663", - "n1820938941", - "n1820939151", - "n1820937603", - "n1820938250", - "n1820937951", - "n1820938630", - "n1820938821", - "n1820938779", - "n1820938497", - "n1820938159", - "n1820939536", - "n1820938409", - "n1820938386", - "n1820939116", - "n1820938340", - "n1820939117", - "n1820938291", - "n1820938435", - "n1820937819", - "n1820938242", - "n1820939078", - "n1820938877", - "n1820939104", - "n1820939445", - "n1820938367", - "n1820938903", - "n1820939420", - "n1820938517", - "n1820939508", - "n1820939542", - "n1820939326", - "n1820938210", - "n1820939020", - "n1820938815", - "n1820937832", - "n1820939513", - "n1820937818", - "n1820939005", - "n1820938717", - "n1820939135", - "n1820938384", - "n1820937587", - "n1820939024", - "n1820939504", - "n1820939120", - "n1820939026", - "n1820938015", - "n1820938998", - "n1820937648", - "n1820939137", - "n1820937761", - "n1820938195", - "n1820938535", - "n1820939550", - "n1820938725", - "n1820938282", - "n1820937781", - "n1820937792", - "n1820939705", - "n1820937788", - "n1820939707", - "n1820937882", - "n1820939632", - "n1820938427", - "n1820938276", - "n1820939617", - "n1820939013", - "n1820939035", - "n1820937543", - "n1820939365", - "n1820937752", - "n1820937802", - "n1820939183", - "n1820939670", - "n1820938450", - "n1820939375", - "n1820937813", - "n1820937673", - "n1820937783", - "n1820939029", - "n1820939768", - "n1820939377", - "n1820937974", - "n1820939244", - "n1820939642", - "n1820937864", - "n1820938255", - "n1820938528", - "n1820939666", - "n1820938120", - "n1820937812", - "n1820938928", - "n1820939750", - "n1820939099", - "n1820938073", - "n1820938714", - "n1820939140", - "n1820938192", - "n1820937844", - "n1820938635", - "n1820938742", - "n1820939583", - "n1820937887", - "n1820938318", - "n1820938816", - "n1820939698", - "n1820938273", - "n1820939181", - "n1820937652", - "n1820938748", - "n1820937651", - "n1820938519", - "n1820938019", - "n1820938752", - "n1820938235", - "n1820939118", - "n1820938562", - "n1820939314", - "n1820939570", - "n1820938190", - "n1820938342", - "n1820938533", - "n1820937977", - "n1820939089", - "n1820939146", - "n1820938622", - "n1820938297", - "n1820938524", - "n1820939283", - "n1820938874", - "n1820938832", - "n1820937550", - "n1820937843", - "n1820938638", - "n1820938116", - "n1820938206", - "n1820938319", - "n1820939053", - "n1820937845", - "n1820938093", - "n1820939217", - "n1820938997", - "n1820939355", - "n1820938861", - "n1820938726", - "n1820938057", - "n1820939373", - "n1820937862", - "n1820938518", - "n1820939072", - "n1820939680", - "n1820938444", - "n1820938217", - "n1820938506", - "n1820938393", - "n1820938492", - "n1820938852", - "n1820938221", - "n1820938773", - "n1820937684", - "n1820939060", - "n1820938224", - "n1820938203", - "n1820938840", - "n1820937525", - "n1820938147", - "n1820938433", - "n1820938188", - "n1820939359", - "n1820938750", - "n1820938016", - "n1820938768", - "n1820937621", - "n1820937799", - "n1820938951", - "n1820938721", - "n1820939037", - "n1820937866", - "n1820939715", - "n1820938063", - "n1820938446", - "n1820937627", - "n1820939624", - "n1820938431", - "n1820939721", - "n1820939622", - "n1820939239", - "n1820939263", - "n1820939648", - "n1820939640", - "n1820938867", - "n1820938757", - "n1820938439", - "n1820939352", - "n1820937740", - "n1820939329", - "n1820938229", - "n1820937583", - "n1820938180", - "n1820938366", - "n1820937767", - "n1820937758", - "n1820939374", - "n1820938869", - "n1820938292", - "n1820938400", - "n1820938399", - "n1820939734", - "n1820939289", - "n1820938944", - "n1820937755", - "n1820938759", - "n1820938434", - "n1820937600", - "n1820937825", - "n1820937670", - "n1820937793", - "n1820938011", - "n1820938246", - "n1820938956", - "n1820937770", - "n1820937757", - "n1820938059", - "n1820937860", - "n1820937569", - "n1820939266", - "n1820939685", - "n1820939672", - "n1820938606", - "n1820938772", - "n1820939038", - "n1820938211", - "n1820938359", - "n1820939619", - "n1820938708", - "n1820939512", - "n1820938065", - "n1820939233", - "n1820939739", - "n1820938786", - "n1820938879", - "n1820939147", - "n1820938563", - "n1820939148", - "n1820937839", - "n1820937659", - "n1820937786", - "n1820938419", - "n1820939565", - "n1820939402", - "n1820937710", - "n1820938254", - "n1820938271", - "n1820938390", - "n1820937680", - "n1820938140", - "n1820937817", - "n1820938218", - "n1820937985", - "n1820939235", - "n1820938441", - "n1820938401", - "n1820938719", - "n1820937795", - "n1820938971", - "n1820938460", - "n1820939759", - "n1820937972", - "n1820937841", - "n1820938462", - "n1820939320", - "n1820938978", - "n1820938360", - "n1820939713", - "n1820937676", - "n1820939712", - "n1820937939", - "n1820938080", - "n1820937754", - "n1820937753", - "n1820938530", - "n1820937886", - "n1820939689", - "n1820939124", - "n1820938697", - "n1820938789", - "n1820939105", - "n1820938860", - "n1820938853", - "n1820939400", - "n1820937561", - "n1820938404", - "n1820938774", - "n1820939316", - "n1820937696", - "n1820938782", - "n1820938975", - "n1820937564", - "n1820939730", - "n1820938257", - "n1820937853", - "n1820938487", - "n1820938848", - "n1820938906", - "n1820939230", - "n1820938424", - "n1820938051", - "n1820937771", - "n1820939587", - "n1820939149", - "n1820938792", - "n1820939041", - "n1820938934", - "n1820939777", - "n1820937515", - "n1820939058", - "n1820938312", - "n1820939264", - "n1820939631", - "n1820939109", - "n1820939403", - "n1820939664", - "n1820938724", - "n1820938929", - "n1820939399", - "n1820939776", - "n1820939369", - "n1820939185", - "n1820937701", - "n1820938126", - "n1820938336", - "n1820938219", - "n1820939080", - "n1820938642", - "n1820938043", - "n1820937725", - "n1820938548", - "n1820938552", - "n1820938035", - "n1820938684", - "n1820937778", - "n1820938764", - "n1820939021", - "n1820939346", - "n1820937712", - "n1820939761", - "n1820938397", - "n1820937747", - "n1820938566", - "n1820939161", - "n1820939090", - "n1820939752", - "n1820939271", - "n1820938878", - "n1820938110", - "n1820938346", - "n1820938499", - "n1820938151", - "n1820939538", - "n1820938281", - "n1820939153", - "n1820938551", - "n1820939285", - "n1820938197", - "n1820938408", - "n1820938482", - "n1820939036", - "n1820939579", - "n1820938489", - "n1820938483", - "n1820938189", - "n1820938123", - "n1820938087", - "n1820937741", - "n1820938485", - "n1820937590", - "n1820938972", - "n1820937773", - "n1820937520", - "n1820938872", - "n1820938131", - "n1820938452", - "n1820938328", - "n1820939620", - "n1820937641", - "n1820938353", - "n1820939693", - "n1820938705", - "n1820937640", - "n1820939189", - "n1820938144", - "n1820939774", - "n1820938694", - "n1820938238", - "n1820939397", - "n1820937917", - "n1820938454", - "n1820938567", - "n1820938979", - "n1820938060", - "n1820938204", - "n1820937828", - "n1820939232", - "n1820938806", - "n1820938857", - "n1820938078", - "n1820938105", - "n1820939228", - "n1820938604", - "n1820937763", - "n1820937854", - "n1820938289", - "n1820939736", - "n1820937937", - "n1820937714", - "n1820938278", - "n1820938058", - "n1820938706", - "n1820938989", - "n1820938313", - "n1820938520", - "n1820938288", - "n1820937689", - "n1820939537", - "n1820939531", - "n1820939019", - "n1820937527", - "n1820938455", - "n1820938814", - "n1820938045", - "n1820939627", - "n1820938213", - "n1820938161", - "n1820938331", - "n1820938024", - "n1820938220", - "n1820938062", - "n1820938178", - "n1820937796", - "n1820937644", - "n1820938490", - "n1820937589", - "n1820937879", - "n1820939614", - "n1820938882", - "n1820938039", - "n1820938538", - "n1820937667", - "n1820937719", - "n1820938561", - "n1820939658", - "n1820938783", - "n1820938601", - "n1820938198", - "n1820938388", - "n1820938969", - "n1820937687", - "n1820939086", - "n1820939665", - "n1820939187", - "n1820938498", - "n1820938261", - "n1820937983", - "n1820938068", - "n1820938136", - "n1820939061", - "n1820938137", - "n1820938186", - "n1820939071", - "n1820937592", - "n1820939669", - "n1820937553", - "n1820939357", - "n1820938727", - "n1820939371", - "n1820939112", - "n1820939079", - "n1820938743", - "n1820938467", - "n1820938834", - "n1820938022", - "n1820938537", - "n1820938122", - "n1820938516", - "n1820937614", - "n1820937612", - "n1820939469", - "n1820939636", - "n1820939050", - "n1820939552", - "n1820938157", - "n1820938663", - "n1820938955", - "n1820939091", - "n1820938430", - "n1820938471", - "n1820937809", - "n1820938074", - "n1820938208", - "n1820938914", - "n1820938858", - "n1820938417", - "n1820937531", - "n1820938107", - "n1820939100", - "n1820938751", - "n1820937711", - "n1820938824", - "n1820939745", - "n1820937572", - "n1820938602", - "n1820938212", - "n1820938097", - "n1820937921", - "n1820938090", - "n1820938511", - "n1820938876", - "n1820939762", - "n1820938234", - "n1820938048", - "n1820937774", - "n1820937856", - "n1820937749", - "n1820937765", - "n1820938286", - "n1820939095", - "n1820938480", - "n1820939229", - "n1820938277", - "n1820937617", - "n1820938311", - "n1820937622", - "n1820939196", - "n1820937690", - "n1820939006", - "n1820939287", - "n1820939131", - "n1820938106", - "n1820938784", - "n1820938335", - "n1820938095", - "n1820938182", - "n1820937715", - "n1820937683", - "n1820938070", - "n1820939605", - "n1820938527", - "n1820938763", - "n1820938398", - "n1820937686", - "n1820939621", - "n1820937664", - "n1820939277", - "n1820938565", - "n1820939539", - "n1820938099", - "n1820939646", - "n1820938556", - "n1820937548", - "n1820938729", - "n1820939336", - "n1820938259", - "n1820938728", - "n1820938361", - "n1820937643", - "n1820938644", - "n1820939007", - "n1820939690", - "n1820939227", - "n1820937635", - "n1820937950", - "n1820938682", - "n1820939150", - "n1820939012", - "n1820939261", - "n1820939111", - "n1820937805", - "n1820939691", - "n1820939677", - "n1820937628", - "n1820937811", - "n1820938790", - "n1820938251", - "n1820938226", - "n1820938942", - "n1820937633", - "n1820937984", - "n1820937751", - "n1820939673", - "n1820938970", - "n1820938415", - "n1820938597", - "n1820938309", - "n1820938111", - "n1820938472", - "n1820938894", - "n1820938402", - "n1820937593", - "n1820938570", - "n1820939102", - "n1820939775", - "n1820937948", - "n1820939121", - "n1820937511", - "n1820938787", - "n1820939720", - "n1820939075", - "n1820937880", - "n1820937742", - "n1820937721", - "n1820939535", - "n1820938486", - "n1820938354", - "n1820937632", - "n1820939010", - "n1820938885", - "n1820938089", - "n1820937613", - "n1820938442", - "n1820938245", - "n1820938272", - "n1820937566", - "n1820938295", - "n1820938532", - "n1820938883", - "n1820937713", - "n1820937674", - "n1820939635", - "n1820938448", - "n1820938355", - "n1820938587", - "n1820938559", - "n1820937787", - "n1820939301", - "n1820937723", - "n1820939056", - "n1820937560", - "n1820938323", - "n1820938230", - "n1820938453", - "n1820938377", - "n1820938357", - "n1820939637", - "n1820938017", - "n1820939540", - "n1820939376", - "n1820937639", - "n1820937642", - "n1820938075", - "n1820938351", - "n1820938766", - "n1820937897", - "n1820938973", - "n1820938066", - "n1820939547", - "n1820939652", - "n1820937944", - "n1820937748", - "n1820939234", - "n1820939193", - "n1820937891", - "n1820938785", - "n1820939132", - "n1820938523", - "n1820938884", - "n1820938411", - "n1820939554", - "n1820938791", - "n1820937655", - "n1820938368", - "n1820939152", - "n1820938030", - "n1820938447", - "n1820937580", - "n1820939628", - "n1820937588", - "n1820937894", - "n1820939201", - "n1820938086", - "n1820937650", - "n1820938379", - "n1820939008", - "n1820938999", - "n1820937524", - "n1820937872", - "n1820938389", - "n1820939197", - "n1820938422", - "n1820938936", - "n1820939262", - "n1820937634", - "n1820938583", - "n1820939589", - "n1820937901", - "n1820939034", - "n1820939065", - "n1820938290", - "n1820939195", - "n1820938228", - "n1820937884", - "n1820938797", - "n1820938191", - "n1820939191", - "n1820939198", - "n1820937892", - "n1820939679", - "n1820938507", - "n1820937647", - "n1820937909", - "n1820938542", - "n1820939598", - "n1820937851", - "n1820939084", - "n1820939728", - "n1820937688", - "n1820938263", - "n1820938670", - "n1820937762", - "n1820939310", - "n1820938925", - "n1820938862", - "n1820938822", - "n1820938547", - "n1820937731", - "n1820938594", - "n1820938592", - "n1820938214", - "n1820938284", - "n1820937835", - "n1820938599", - "n1820939437", - "n1820937834", - "n1820937576", - "n1820937692", - "n1820939586", - "n1820939546", - "n1820938403", - "n1820937970", - "n1820939561", - "n1820938098", - "n1820938851", - "n1820938477", - "n1820938892", - "n1820939045", - "n1820939758", - "n1820939350", - "n1820938321", - "n1820938440", - "n1820938595", - "n1820938364", - "n1820938962", - "n1820938118", - "n1820939678", - "n1820938406", - "n1820938549", - "n1820937555", - "n1820938823", - "n1820937521", - "n1820939471", - "n1820939487", - "n1820938799", - "n1820938605", - "n1820937928", - "n1820938373", - "n1820939747", - "n1820939629", - "n1820937557", - "n1820937526", - "n1820938958", - "n1820938833", - "n1820937636", - "n1820938967", - "n1820938760", - "n1820938842", - "n1820938067", - "n1820939077", - "n1820939224", - "n1820938185", - "n1820939110", - "n1820938372", - "n1820939757", - "n1820939063", - "n1820939660", - "n1820938813", - "n1820937528", - "n1820938369", - "n1820938896", - "n1820939551", - "n1820939683", - "n1820937660", - "n1820937873", - "n1820938810", - "n1820938478", - "n1820939662", - "n1820937595", - "n1820939052", - "n1820938113", - "n1820939070", - "n1820938733", - "n1820937878", - "n1820938300", - "n1820939760", - "n1820939718", - "n1820937646", - "n1820939057", - "n1820939443", - "n1914861306", - "n1820938013", - "n1820937529", - "n1820939764", - "n1820938826", - "n1820937885", - "n1820939588", - "n1820937865", - "n1820937833", - "n1914861112", - "n1820938761", - "n1914861007", - "n1820937905", - "n1820938541", - "n1820939092", - "n1914861057", - "n1820938153", - "n1820938267", - "n1820939265", - "n1820938085", - "n1820939018", - "n1820939755", - "n1820938474", - "n1820939027", - "n1820938593", - "n1820938202", - "n1820939599", - "n1820939695", - "n1820938077", - "n1820938012", - "n1820939545", - "n1820939596", - "n1820939337", - "n1820938227", - "n1820937698", - "n1820938475", - "n1820939465", - "n1820938165", - "n1820938698", - "n1820938525", - "n1820938529", - "n1820938553", - "n1820938940", - "n1820939498", - "n1820938501", - "n1820939533", - "n1820938924", - "n1820939634", - "n1820939220", - "n1820939657", - "n1820938887", - "n1820938838", - "n1820938114", - "n1820937823", - "n1820938778", - "n1820938801", - "n1820939096", - "n1820938981", - "n1820937953", - "n1820938732", - "n1820938980", - "n1820938960", - "n1820937949", - "n1820938026", - "n1820939273", - "n1841425201", - "n1820938629", - "n1820938864", - "n1820938554", - "n1820938088", - "n1820937685", - "n1841425222", - "n1820939729", - "n1820937665", - "n1820937838", - "n1820937739", - "n1820938780", - "n1820937821", - "n1820938825", - "n1820939055", - "n1820939485", - "n1820938041", - "n1820938746", - "n1820939562", - "n1820938459", - "n1820939489", - "n1820938050", - "n1820937980", - "n1820937695", - "n1820938413", - "n1820938555", - "n1820937703", - "n1820938536", - "n1820938196", - "n1820938287", - "n1820938169", - "n1820939279", - "n1820938531", - "n1820938959", - "n1820939741", - "n1820938665", - "n1820938963", - "n1820939611", - "n1820937653", - "n1820939618", - "n1820939492", - "n1820938600", - "n1820938628", - "n1820939312", - "n1820939616", - "n1820937738", - "n1820939001", - "n1820939062", - "n1820938794", - "n1820938558", - "n1820937822", - "n1820937532", - "n1820939073", - "n1820938200", - "n1820938241", - "n1820938968", - "n1820938927", - "n1820938306", - "n1820937630", - "n1820938456", - "n1820937694", - "n1820938908", - "n1820939076", - "n1820937522", - "n1820939659", - "n1820938522", - "n1820939318", - "n1820938932", - "n1820938841", - "n1820937579", - "n1820937540", - "n1820938560", - "n1821139530", - "n1820938964", - "n1820937662", - "n1820939281", - "n1821139533", - "n1820937797", - "n1821139532", - "n1820939751", - "n1821139531", - "n1820939291", - "n1820938420", - "n1820939696", - "n1820938904", - "n1820938484", - "n1820939448", - "n1820939009", - "n1820938735", - "n1820938986", - "n1820938937", - "n1820939030", - "n1820938734", - "n1820938745", - "n1820939106", - "n1820938987", - "n1820937858", - "n1820938673", - "n1820938620", - "n1820937808", - "n1820937700", - "n1820939573", - "n1820938540", - "n1820937661", - "n1820937570", - "n1820938396", - "n1820937875", - "n1820939048", - "n1820938233", - "n1820938793", - "n1820939584", - "n1820938412", - "n1820938394", - "n1820937846", - "n1820938800", - "n1820938690", - "n1820939331", - "n1820939630", - "n1820938762", - "n1820938710", - "n1820939322", - "n1820938992", - "n1821137608", - "n1821137607", - "n1820937924", - "n1820939139", - "n1820939463", - "n1820939574", - "n1820938294", - "n1820938071", - "n1820938307", - "n1820938061", - "n1820939260", - "n1820937899", - "n1820938310", - "n1820938983", - "n1820937530", - "n1820938993", - "n1820938890", - "n1820937915", - "n1820938231", - "n1820938040", - "n1820938920", - "n1820939585", - "n1820938135", - "n1820939700", - "n1820937824", - "n1820939667", - "n1820937930", - "n1820938134", - "n1820937551", - "n1820939405", - "n1820938232", - "n1820937716", - "n1820937848", - "n1820939765", - "n1820939068", - "n1820939766", - "n1820937933", - "n1820937720", - "n1820939222", - "n1820939772", - "n1820939022", - "n1820939732", - "n1820937702", - "n1820937691", - "n1820938945", - "n1820937756", - "n1820938451", - "n1820938410", - "n1820938798", - "n1820937945", - "n1820937654", - "n1820938598", - "n1820938836", - "n1820937571", - "n1820937556", - "n1820938994", - "n1820938919", - "n1820938863", - "n1820939064", - "n1820938018", - "n1820937658", - "n1820937537", - "n1820938142", - "n1820938666", - "n1820937535", - "n1820939571", - "n1820938465", - "n1820939638", - "n1820937533", - "n1820939656", - "n1820939422", - "n1820938109", - "n1820938405", - "n1820938028", - "n1820937649", - "n1820938829", - "n1820939031", - "n1820939155", - "n1820938350", - "n1820938463", - "n1820938425", - "n1820939047", - "n1820938831", - "n1820938494", - "n1820937697", - "n1820938504", - "n1820938900", - "n1820937784", - "n1820938414", - "n1820938076", - "n1820938723", - "n1820937722", - "n1820938739", - "n1820937791", - "n1820938985", - "n1820938352", - "n1820938293", - "n1820938274", - "n1820939692", - "n1820937871", - "n1820939059", - "n1820938868", - "n1820937877", - "n1820937743", - "n1820938429", - "n1820937545", - "n1820937575", - "n1820938302", - "n1820938505", - "n1820938916", - "n1820938374", - "n1820938329", - "n1820937790", - "n1820939735", - "n1820938930", - "n1820937995", - "n1820938512", - "n1820938130", - "n1820938194", - "n1820938671", - "n1820938802", - "n1820937542", - "n1820937602", - "n1820939069", - "n1820938901", - "n1820939654", - "n1820937727", - "n1820939569", - "n1820938375", - "n1820939306", - "n1820938479", - "n1820938376", - "n1820938667", - "n1820937766", - "n1820939467", - "n1820939567", - "n1820937806", - "n1820938943", - "n1820938931", - "n1820937745", - "n1820939452", - "n1820938738", - "n1820938053", - "n1820939653", - "n1820938640", - "n1820937604", - "n1820937536", - "n1820938701", - "n1820939625", - "n1820939744", - "n1820939572", - "n1820937577", - "n1820937541", - "n1820938891", - "n1820937597", - "n1820938469", - "n1820939194", - "n1820937539", - "n1820938911", - "n1820939017", - "n1820939650", - "n1820939103", - "n1820939578", - "n1820938132", - "n1820937549", - "n1820938634", - "n1820939743", - "n1820937544", - "n1820937826", - "n1820937598", - "n1820937547", - "n1820938032", - "n1820939142" - ] - }, "w17963021": { "id": "w17963021", "tags": { "highway": "residential" }, - "nodes": ["n185948706", "n185948708", "n185948710"] + "nodes": ["n185948706", "n185948710"] }, "w203974069": { "id": "w203974069", "tags": { "amenity": "shelter", - "area": "yes", "building": "yes", "shelter_type": "picnic_shelter" }, @@ -13740,7 +4478,6 @@ "w209816575": { "id": "w209816575", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -13766,7 +4503,6 @@ "w203841838": { "id": "w203841838", "tags": { - "area": "yes", "natural": "water" }, "nodes": [ @@ -13873,19 +4609,31 @@ "w17964015": { "id": "w17964015", "tags": { - "highway": "residential" + "highway": "service" }, "nodes": [ "n185954680", + "n14", "n185954683", + "n15", "n185954685", + "n16", "n185954687", + "n18", + "n17", "n185954689", + "n12", + "n13", "n185954690", "n185954691", + "n11", + "n10", "n2139870379", "n2139870456", "n185954692", + "n2139870440", + "n9", + "n8", "n185954693", "n185954695" ] @@ -13943,7 +4691,6 @@ "id": "w203986458", "tags": { "amenity": "shelter", - "area": "yes", "shelter_type": "picnic_shelter" }, "nodes": ["n2139989357", "n2139989359", "n2139989360", "n2139989362", "n2139989357"] @@ -14154,8 +4901,6 @@ "n2114807578", "n1475293254", "n2114807593", - "n1475293226", - "n185972862", "n2114807565", "n185951869", "n1475293234", @@ -14197,39 +4942,18 @@ }, "nodes": ["n2139870420", "n2139870421"] }, - "w170995908": { - "id": "w170995908", - "tags": { - "highway": "residential", - "name": "Thomas Street" - }, - "nodes": [ - "n1821006702", - "n1821006700", - "n1821006698", - "n2139858990", - "n1821006716", - "n1821006725", - "n1821006712", - "n1821006704", - "n1821006708", - "n1821006710", - "n1821006706" - ] - }, "w17965834": { "id": "w17965834", "tags": { "highway": "residential", "name": "Spring Street" }, - "nodes": ["n185971361", "n185971364", "n185971366", "n185971368", "n185954695", "n185964968"] + "nodes": ["n185971361", "n185971364", "n185971368", "n185954695", "n185964968"] }, "w203974070": { "id": "w203974070", "tags": { "amenity": "shelter", - "area": "yes", "building": "yes", "shelter_type": "picnic_shelter" }, @@ -14245,14 +4969,14 @@ "w203974062": { "id": "w203974062", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2139870387", "n2139870388", "n2139870389", "n2139870390", + "n2139870427", "n2139870391", "n2139870392", "n2139870397", @@ -14274,7 +4998,6 @@ "w203049587": { "id": "w203049587", "tags": { - "area": "yes", "name": "Scidmore Park Petting Zoo", "tourism": "zoo", "zoo": "petting_zoo" @@ -14309,16 +5032,23 @@ }, "nodes": [ "n2139870406", + "n27", "n2139870407", "n2139870408", "n2139870417", "n2139870409", + "n25", + "n24", "n2139870410", + "n26", "n2139870411", + "n21", "n2139870412", "n2139870426", "n2139870413", + "n22", "n2139870414", + "n23", "n2139870415", "n2139870419", "n2139870416", @@ -14370,12 +5100,11 @@ "tags": { "highway": "footway" }, - "nodes": ["n2139870383", "n2139870384", "n2139870422", "n2139870385", "n2139870386", "n2139870388"] + "nodes": ["n2139870383", "n2139870384", "n2139870422", "n2139870385", "n21", "n2139870386", "n2139870388"] }, "w203841837": { "id": "w203841837", "tags": { - "area": "yes", "natural": "water" }, "nodes": [ @@ -14431,7 +5160,6 @@ "w203986457": { "id": "w203986457", "tags": { - "area": "yes", "leisure": "park", "name": "Scidmore Park" }, @@ -14446,257 +5174,12 @@ "n2139989330", "n1819805915", "n2139989341", - "n2139989344", - "n2139989346", - "n2139989348", - "n2139989350", "n2139989351", "n2139989353", "n2139989355", "n2139989333" ] }, - "w170848331": { - "id": "w170848331", - "tags": { - "name": "Rocky River", - "waterway": "river" - }, - "nodes": [ - "n1819848937", - "n1819849104", - "n1819849076", - "n1819849183", - "n1819848928", - "n1819848972", - "n1819848948", - "n1819848971", - "n1819848859", - "n1819849008", - "n1819848889", - "n1819849026", - "n1819849094", - "n1819849083", - "n1819849079", - "n1819849187", - "n1819848992", - "n1819849060", - "n1819849056", - "n1819849071", - "n1819849067", - "n1819849048", - "n1819849036", - "n1819849150", - "n1819849075", - "n1819849051", - "n1819849062", - "n1819848926", - "n1819849035", - "n1819848987", - "n1819849012", - "n1819848933", - "n1819848996", - "n1819848990", - "n1819849005", - "n1819849021", - "n1819848892", - "n1819849092", - "n1819848863", - "n1819848922", - "n1819848858", - "n1819848855", - "n1819848974", - "n1819848953", - "n1819849019", - "n1819849049", - "n1819848979", - "n1819849140", - "n1819849193", - "n1819849147", - "n1819849151", - "n1819849163", - "n1819849023", - "n1819848878", - "n1819849004", - "n1819848857", - "n1819848879", - "n1819849041", - "n1819849165", - "n1819849107", - "n1819849156", - "n1819848934", - "n1819848914", - "n1819848955", - "n1819848931", - "n1819848927", - "n1819849084", - "n1819849169", - "n1819849045", - "n1819848945", - "n1819849095", - "n1819848924", - "n1819849171", - "n1819849141", - "n1819849046", - "n1819849197", - "n1819849011", - "n1819849108", - "n1819849158", - "n1819849160", - "n1819848870", - "n1819849006", - "n1819849157", - "n1819848993", - "n1819848970", - "n1819849202", - "n1819848903", - "n1819848975", - "n1819848849", - "n1819849025", - "n1819849105", - "n1819849033", - "n1819849176", - "n1819849099", - "n1819849086", - "n1819848960", - "n1819848961", - "n1819849001", - "n1819848980", - "n1819849038", - "n1819848854", - "n1819849127", - "n1819849170", - "n1819849139", - "n1819848873", - "n1819848929", - "n1819849201", - "n1819849121", - "n1819849031", - "n1819849131", - "n1819848875", - "n1819849080", - "n1819849066", - "n1819849081", - "n1819849096", - "n1819849172", - "n1819849114", - "n1819849182", - "n1819848905", - "n1819849054", - "n1819848920", - "n1819848851", - "n1819848968", - "n1819848917", - "n1819849111", - "n1819849119", - "n1819849074", - "n1819848893", - "n1819849129", - "n1819848850", - "n1819848956", - "n1819849154", - "n1819848877", - "n1819848986", - "n1819849191", - "n1819848952", - "n1819848954", - "n1819848942", - "n1819849028", - "n1819849195", - "n1819848938", - "n1819848962", - "n1819849070", - "n1819849034", - "n1819849052", - "n1819849059", - "n1819848916", - "n1819849162", - "n1819849167", - "n1819849093", - "n1819849030", - "n1819849002", - "n1819849161", - "n1819848886", - "n1819848958", - "n1819849064", - "n1819849112", - "n1819849148", - "n1819848856", - "n1819848976", - "n1819848977", - "n1819849144", - "n1819848918", - "n1819849200", - "n1819848919", - "n1819849042", - "n1819849166", - "n1819849186", - "n1819849152", - "n1819849058", - "n1819849185", - "n1819849199", - "n1819849053", - "n1819849194", - "n1819849068", - "n1819849146", - "n1819849174", - "n1819848967", - "n1819848932", - "n1819849155", - "n1819849198", - "n1819848964", - "n1819848894", - "n1819848969", - "n1819849184", - "n1819849055", - "n1819849179", - "n1819848865", - "n1819848860", - "n1819849082", - "n1819848966", - "n1819849040", - "n1819849069", - "n1819849078", - "n1819849077", - "n1819848904", - "n1819848959", - "n1819849133", - "n1819849089", - "n1819849000", - "n1819849124", - "n1819849032", - "n1819849097", - "n1819848939", - "n1819849072", - "n1819848915", - "n1819849196", - "n1819848946", - "n1819849047", - "n1819849029", - "n1819849164", - "n1819848994", - "n1819849022", - "n1819858513", - "n1819849126", - "n1819849063", - "n1819848941", - "n1819849085", - "n1819848871", - "n1819848943", - "n1819849192", - "n1819858501", - "n1819849159", - "n1819858523", - "n1819848901", - "n1819849189", - "n1819858503", - "n1819849065", - "n2139877106", - "n1819848909", - "n1819848930", - "n1819848888" - ] - }, "w17967397": { "id": "w17967397", "tags": { @@ -14713,18 +5196,10 @@ }, "nodes": [ "n185958643", - "n185958645", - "n2139795852", - "n185958647", "n185958649", "n185958651", "n185958653", - "n185958656", - "n185958658", - "n185958660", - "n185958662", "n185958664", - "n185958666", "n185958668", "n185958670", "n185948710", @@ -14741,8 +5216,7 @@ "w203974063": { "id": "w203974063", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139870398", "n2139870399", "n2139870400", "n2139870401", "n2139870398"] }, @@ -14750,7 +5224,6 @@ "id": "w203986459", "tags": { "amenity": "shelter", - "area": "yes", "shelter_type": "picnic_shelter" }, "nodes": ["n2139989364", "n2139989366", "n2139989368", "n2139989370", "n2139989364"] @@ -14758,7 +5231,6 @@ "w203988286": { "id": "w203988286", "tags": { - "area": "yes", "leisure": "park", "name": "Memory Isle Park" }, @@ -14767,7 +5239,6 @@ "n2140006334", "n2140006336", "n2140006338", - "n2140006340", "n2140006342", "n2140006344", "n2140006346", @@ -14799,66 +5270,49 @@ "w203974064": { "id": "w203974064", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139870402", "n2139870403", "n2139870404", "n2139870405", "n2139870402"] }, - "n185966959": { - "id": "n185966959", - "loc": [-85.642185, 41.946411] - }, "n1475283980": { "id": "n1475283980", - "loc": [-85.6398249, 41.9451425] + "loc": [-85.639788, 41.945152] }, "n1475284013": { "id": "n1475284013", - "loc": [-85.6396448, 41.9451666] - }, - "n1475284042": { - "id": "n1475284042", - "loc": [-85.6386382, 41.9454789] + "loc": [-85.639645, 41.945167] }, "n185975925": { "id": "n185975925", - "loc": [-85.6393332, 41.9452388] - }, - "n185975919": { - "id": "n185975919", - "loc": [-85.6391279, 41.9453044] - }, - "n185975917": { - "id": "n185975917", - "loc": [-85.6389034, 41.9453872] + "loc": [-85.639362, 41.945233] }, "n2140006369": { "id": "n2140006369", - "loc": [-85.6386163, 41.9451631] + "loc": [-85.638616, 41.945163] }, "n2140006370": { "id": "n2140006370", - "loc": [-85.6385144, 41.9449357] + "loc": [-85.638514, 41.944936] }, "n2140006417": { "id": "n2140006417", - "loc": [-85.6385785, 41.9450299] + "loc": [-85.638578, 41.94503] }, "n2140006419": { "id": "n2140006419", - "loc": [-85.6385781, 41.9452152] + "loc": [-85.638578, 41.945215] }, "n2189123361": { "id": "n2189123361", - "loc": [-85.6404948, 41.947015] + "loc": [-85.640495, 41.947015] }, "n2189123363": { "id": "n2189123363", - "loc": [-85.6395765, 41.946495] + "loc": [-85.639577, 41.946495] }, "n2189123365": { "id": "n2189123365", - "loc": [-85.6389347, 41.9460875] + "loc": [-85.638935, 41.946087] }, "n185966962": { "id": "n185966962", @@ -14866,23 +5320,11 @@ }, "n185975911": { "id": "n185975911", - "loc": [-85.637532, 41.9458276] + "loc": [-85.637532, 41.945828] }, "n185975913": { "id": "n185975913", - "loc": [-85.6376323, 41.9457936] - }, - "n185975915": { - "id": "n185975915", - "loc": [-85.6383596, 41.9455425] - }, - "n185975932": { - "id": "n185975932", - "loc": [-85.644403, 41.945088] - }, - "n185975934": { - "id": "n185975934", - "loc": [-85.645486, 41.945084] + "loc": [-85.637632, 41.945794] }, "n185979974": { "id": "n185979974", @@ -14890,211 +5332,211 @@ }, "n2139795809": { "id": "n2139795809", - "loc": [-85.6464756, 41.9450813] + "loc": [-85.646476, 41.945081] }, "n2139795810": { "id": "n2139795810", - "loc": [-85.6466646, 41.945174] + "loc": [-85.646665, 41.945174] }, "n2139858952": { "id": "n2139858952", - "loc": [-85.6383567, 41.9454039] + "loc": [-85.638357, 41.945404] }, "n2139858953": { "id": "n2139858953", - "loc": [-85.6380506, 41.9455301] + "loc": [-85.638051, 41.94553] }, "n2139858954": { "id": "n2139858954", - "loc": [-85.6377321, 41.9455546] + "loc": [-85.637732, 41.945555] }, "n2139858955": { "id": "n2139858955", - "loc": [-85.6376571, 41.9455245] + "loc": [-85.637657, 41.945524] }, "n2139858956": { "id": "n2139858956", - "loc": [-85.6375859, 41.9454544] + "loc": [-85.637598, 41.945467] }, "n2139858957": { "id": "n2139858957", - "loc": [-85.6376686, 41.9453185] + "loc": [-85.637669, 41.945318] }, "n2139858958": { "id": "n2139858958", - "loc": [-85.6378936, 41.9451712] + "loc": [-85.637894, 41.945171] }, "n2139858959": { "id": "n2139858959", - "loc": [-85.6379225, 41.9450825] + "loc": [-85.637923, 41.945082] }, "n2139858960": { "id": "n2139858960", - "loc": [-85.6379302, 41.9447564] + "loc": [-85.63793, 41.944756] }, "n2139858961": { "id": "n2139858961", - "loc": [-85.6379763, 41.9446963] + "loc": [-85.637976, 41.944696] }, "n2139858962": { "id": "n2139858962", - "loc": [-85.6380436, 41.9446706] + "loc": [-85.638044, 41.944671] }, "n2139858963": { "id": "n2139858963", - "loc": [-85.6381286, 41.9445969] + "loc": [-85.638129, 41.944597] }, "n2139858965": { "id": "n2139858965", - "loc": [-85.6382523, 41.9444134] + "loc": [-85.638252, 41.944413] }, "n2140006367": { "id": "n2140006367", - "loc": [-85.6380923, 41.9454418] + "loc": [-85.638092, 41.945442] }, "n2140006368": { "id": "n2140006368", - "loc": [-85.6384089, 41.9453146] + "loc": [-85.638409, 41.945315] }, "n2140006372": { "id": "n2140006372", - "loc": [-85.6383252, 41.9447706] + "loc": [-85.638325, 41.944771] }, "n2140006374": { "id": "n2140006374", - "loc": [-85.6381033, 41.9447436] + "loc": [-85.638103, 41.944744] }, "n2140006376": { "id": "n2140006376", - "loc": [-85.6379759, 41.9447815] + "loc": [-85.637976, 41.944781] }, "n2140006378": { "id": "n2140006378", - "loc": [-85.6379832, 41.9448654] + "loc": [-85.637983, 41.944865] }, "n2140006380": { "id": "n2140006380", - "loc": [-85.6380632, 41.9450738] + "loc": [-85.638063, 41.945074] }, "n2140006382": { "id": "n2140006382", - "loc": [-85.6380414, 41.9452064] + "loc": [-85.638041, 41.945206] }, "n2140006389": { "id": "n2140006389", - "loc": [-85.6379068, 41.9453092] + "loc": [-85.637907, 41.945309] }, "n2140006391": { "id": "n2140006391", - "loc": [-85.637925, 41.9453904] + "loc": [-85.637925, 41.94539] }, "n2140006393": { "id": "n2140006393", - "loc": [-85.6379977, 41.94545] + "loc": [-85.637998, 41.94545] }, "n2189123275": { "id": "n2189123275", - "loc": [-85.6371346, 41.9462544] + "loc": [-85.637135, 41.946254] }, "n2189123278": { "id": "n2189123278", - "loc": [-85.6368371, 41.9466153] + "loc": [-85.636837, 41.946615] }, "n2189123280": { "id": "n2189123280", - "loc": [-85.6379537, 41.9489088] + "loc": [-85.637954, 41.948909] }, "n2189123282": { "id": "n2189123282", - "loc": [-85.6383816, 41.9497858] + "loc": [-85.638382, 41.949786] }, "n2189123285": { "id": "n2189123285", - "loc": [-85.6393673, 41.9512417] + "loc": [-85.639367, 41.951242] }, "n2189123287": { "id": "n2189123287", - "loc": [-85.640554, 41.9517766] + "loc": [-85.640554, 41.951777] }, "n2189123289": { "id": "n2189123289", - "loc": [-85.6411, 41.9522344] + "loc": [-85.6411, 41.952234] }, "n2189123291": { "id": "n2189123291", - "loc": [-85.6417418, 41.9526574] + "loc": [-85.641742, 41.952657] }, "n2189123293": { "id": "n2189123293", - "loc": [-85.642321, 41.9529407] + "loc": [-85.642321, 41.952941] }, "n2189123295": { "id": "n2189123295", - "loc": [-85.6427697, 41.9532278] + "loc": [-85.64277, 41.953228] }, "n2189123297": { "id": "n2189123297", - "loc": [-85.6433332, 41.9538254] + "loc": [-85.643333, 41.953825] }, "n2189123300": { "id": "n2189123300", - "loc": [-85.6435785, 41.9543648] + "loc": [-85.643579, 41.954365] }, "n2189123301": { "id": "n2189123301", - "loc": [-85.6444394, 41.9541048] + "loc": [-85.644439, 41.954105] }, "n2189123303": { "id": "n2189123303", - "loc": [-85.6450603, 41.954] + "loc": [-85.64506, 41.954] }, "n2189123312": { "id": "n2189123312", - "loc": [-85.6454829, 41.9539108] + "loc": [-85.645483, 41.953911] }, "n2189123314": { "id": "n2189123314", - "loc": [-85.6460464, 41.9538526] + "loc": [-85.646046, 41.953853] }, "n2189123315": { "id": "n2189123315", - "loc": [-85.6463178, 41.9537167] + "loc": [-85.646318, 41.953717] }, "n2189123316": { "id": "n2189123316", - "loc": [-85.646276, 41.9534141] + "loc": [-85.646276, 41.953414] }, "n2189123317": { "id": "n2189123317", - "loc": [-85.6459995, 41.9531541] + "loc": [-85.646, 41.953154] }, "n2189123318": { "id": "n2189123318", - "loc": [-85.645222, 41.9531929] + "loc": [-85.645222, 41.953193] }, "n2189123319": { "id": "n2189123319", - "loc": [-85.6447316, 41.9531813] + "loc": [-85.644732, 41.953181] }, "n2189123320": { "id": "n2189123320", - "loc": [-85.6440637, 41.9532977] + "loc": [-85.644064, 41.953298] }, "n2189123321": { "id": "n2189123321", - "loc": [-85.6438185, 41.9531774] + "loc": [-85.643818, 41.953177] }, "n2189123322": { "id": "n2189123322", - "loc": [-85.6440011, 41.9528398] + "loc": [-85.644001, 41.95284] }, "n2189123323": { "id": "n2189123323", - "loc": [-85.6442672, 41.9525914] + "loc": [-85.644267, 41.952591] }, "n2189123324": { "id": "n2189123324", - "loc": [-85.6442881, 41.9523276] + "loc": [-85.644288, 41.952328] }, "n2189123326": { "id": "n2189123326", @@ -15102,63 +5544,63 @@ }, "n2189123328": { "id": "n2189123328", - "loc": [-85.6441681, 41.9520404] + "loc": [-85.644168, 41.95204] }, "n2189123330": { "id": "n2189123330", - "loc": [-85.6442098, 41.9517494] + "loc": [-85.64421, 41.951749] }, "n2189123333": { "id": "n2189123333", - "loc": [-85.6438498, 41.9515864] + "loc": [-85.64385, 41.951586] }, "n2189123336": { "id": "n2189123336", - "loc": [-85.6435889, 41.9513225] + "loc": [-85.643589, 41.951323] }, "n2189123339": { "id": "n2189123339", - "loc": [-85.6425349, 41.9510315] + "loc": [-85.642535, 41.951031] }, "n2189123342": { "id": "n2189123342", - "loc": [-85.6422688, 41.9508802] + "loc": [-85.642269, 41.95088] }, "n2189123345": { "id": "n2189123345", - "loc": [-85.6418775, 41.9508142] + "loc": [-85.641878, 41.950814] }, "n2189123348": { "id": "n2189123348", - "loc": [-85.6415488, 41.9508064] + "loc": [-85.641549, 41.950806] }, "n2189123351": { "id": "n2189123351", - "loc": [-85.6411027, 41.9505488] + "loc": [-85.641103, 41.950549] }, "n2189123353": { "id": "n2189123353", - "loc": [-85.6410374, 41.9498208] + "loc": [-85.641037, 41.949821] }, "n2189123355": { "id": "n2189123355", - "loc": [-85.6410061, 41.9494327] + "loc": [-85.641006, 41.949433] }, "n2189123357": { "id": "n2189123357", - "loc": [-85.6411522, 41.9482569] + "loc": [-85.641152, 41.948257] }, "n2189123359": { "id": "n2189123359", - "loc": [-85.6410548, 41.9473036] + "loc": [-85.641055, 41.947304] }, "n2189123368": { "id": "n2189123368", - "loc": [-85.6380216, 41.9458974] + "loc": [-85.638022, 41.945897] }, "n2189123370": { "id": "n2189123370", - "loc": [-85.6386721, 41.9507782] + "loc": [-85.638672, 41.950778] }, "w17968193": { "id": "w17968193", @@ -15178,7 +5620,6 @@ "w203988289": { "id": "w203988289", "tags": { - "area": "yes", "natural": "water" }, "nodes": [ @@ -15203,7 +5644,6 @@ "w208640157": { "id": "w208640157", "tags": { - "area": "yes", "natural": "wetland" }, "nodes": [ @@ -15265,10 +5705,6 @@ "nodes": [ "n185975911", "n185975913", - "n185975915", - "n1475284042", - "n185975917", - "n185975919", "n185975925", "n185970909", "n1475284013", @@ -15276,8 +5712,6 @@ "n185975928", "n185967775", "n185975930", - "n185975932", - "n185975934", "n2139795809", "n2139795810" ] @@ -15288,7 +5722,7 @@ "highway": "residential", "name": "Yauney Street" }, - "nodes": ["n185966958", "n185966959", "n185966960", "n185966962"] + "nodes": ["n185966958", "n185966960", "n185966962"] }, "w203972938": { "id": "w203972938", @@ -15306,9 +5740,11 @@ "n2139858959", "n2139858958", "n2139858957", + "n37", "n2139858956", "n2139858955", "n2139858954", + "n36", "n2139858953", "n2139858952", "n2139858951" @@ -15316,7 +5752,7 @@ }, "n354002665": { "id": "n354002665", - "loc": [-85.6366599, 41.9444923], + "loc": [-85.63666, 41.944492], "tags": { "name": "Memory Isle", "place": "island" @@ -15324,7 +5760,7 @@ }, "n354031301": { "id": "n354031301", - "loc": [-85.635, 41.9463889], + "loc": [-85.635, 41.946389], "tags": { "amenity": "post_office", "name": "Three Rivers Post Office" @@ -15344,7 +5780,7 @@ }, "n185978375": { "id": "n185978375", - "loc": [-85.634385, 41.94559] + "loc": [-85.634427, 41.945612] }, "n185978377": { "id": "n185978377", @@ -15352,11 +5788,11 @@ }, "n185978379": { "id": "n185978379", - "loc": [-85.634573, 41.945764] + "loc": [-85.634592, 41.94578] }, "n185978381": { "id": "n185978381", - "loc": [-85.634616, 41.945849] + "loc": [-85.634618, 41.945837] }, "n185978383": { "id": "n185978383", @@ -15374,10 +5810,6 @@ "id": "n185984015", "loc": [-85.636143, 41.946551] }, - "n185988237": { - "id": "n185988237", - "loc": [-85.6354162, 41.946044] - }, "n185988969": { "id": "n185988969", "loc": [-85.635374, 41.945325] @@ -15392,795 +5824,783 @@ }, "n1475283992": { "id": "n1475283992", - "loc": [-85.6372968, 41.9459007] + "loc": [-85.637297, 41.945901] }, "n1475284011": { "id": "n1475284011", - "loc": [-85.6359415, 41.9459797] + "loc": [-85.635942, 41.94598] }, "n1475284019": { "id": "n1475284019", - "loc": [-85.6364433, 41.9460423] - }, - "n185984009": { - "id": "n185984009", - "loc": [-85.6360524, 41.9460485] + "loc": [-85.636443, 41.946042] }, "n185988239": { "id": "n185988239", - "loc": [-85.6358187, 41.9460423] + "loc": [-85.635819, 41.946052] }, "n185988243": { "id": "n185988243", - "loc": [-85.6366156, 41.9460282] + "loc": [-85.636616, 41.946028] }, "n185988244": { "id": "n185988244", - "loc": [-85.6368316, 41.9460046] + "loc": [-85.636832, 41.946005] }, "n185988245": { "id": "n185988245", - "loc": [-85.6370133, 41.9459704] + "loc": [-85.637013, 41.94597] }, "n185988241": { "id": "n185988241", - "loc": [-85.636291, 41.9460461] + "loc": [-85.636291, 41.946046] }, "n185964976": { "id": "n185964976", - "loc": [-85.633923, 41.9434157] + "loc": [-85.633923, 41.943416] }, "n185964980": { "id": "n185964980", - "loc": [-85.6333656, 41.9437293] + "loc": [-85.633366, 41.943729] }, "n185978388": { "id": "n185978388", - "loc": [-85.6346449, 41.9460571] + "loc": [-85.634636, 41.946067] }, "n1819858504": { "id": "n1819858504", - "loc": [-85.6365343, 41.9447926] + "loc": [-85.636534, 41.944793] }, "n1819858506": { "id": "n1819858506", - "loc": [-85.6370546, 41.9451882] - }, - "n1819858516": { - "id": "n1819858516", - "loc": [-85.6358369, 41.9444654] + "loc": [-85.637055, 41.945188] }, "n1819858519": { "id": "n1819858519", - "loc": [-85.6361534, 41.9446176] + "loc": [-85.636153, 41.944618] }, "n1819858525": { "id": "n1819858525", - "loc": [-85.6368025, 41.9449442] + "loc": [-85.636803, 41.944944] }, "n1819858527": { "id": "n1819858527", - "loc": [-85.6334199, 41.9457495] + "loc": [-85.63342, 41.945749] }, "n185963452": { "id": "n185963452", - "loc": [-85.633564, 41.9458519] + "loc": [-85.633564, 41.945852] }, "n185963453": { "id": "n185963453", - "loc": [-85.6336152, 41.9459804] + "loc": [-85.633615, 41.94598] }, "n185963451": { "id": "n185963451", - "loc": [-85.6332888, 41.9456871] + "loc": [-85.633289, 41.945687] }, "n2130304152": { "id": "n2130304152", - "loc": [-85.6359466, 41.9454599] + "loc": [-85.635947, 41.94546] }, "n2130304153": { "id": "n2130304153", - "loc": [-85.6362773, 41.9452683] + "loc": [-85.636277, 41.945268] }, "n2130304154": { "id": "n2130304154", - "loc": [-85.6352028, 41.9442868] + "loc": [-85.635203, 41.944287] }, "n2130304155": { "id": "n2130304155", - "loc": [-85.6348756, 41.9444769] + "loc": [-85.634876, 41.944477] }, "n2130304156": { "id": "n2130304156", - "loc": [-85.6349723, 41.9444207] + "loc": [-85.634972, 41.944421] }, "n2130304157": { "id": "n2130304157", - "loc": [-85.6338698, 41.9434443] + "loc": [-85.63387, 41.943444] }, "n2130304158": { "id": "n2130304158", - "loc": [-85.635094, 41.9451026] + "loc": [-85.635094, 41.945103] }, "n2130304160": { "id": "n2130304160", - "loc": [-85.6353716, 41.9449322] + "loc": [-85.635372, 41.944932] }, "n2130304162": { "id": "n2130304162", - "loc": [-85.6365942, 41.9459352] + "loc": [-85.636594, 41.945935] }, "n2130304163": { "id": "n2130304163", - "loc": [-85.6369006, 41.9457469] + "loc": [-85.636901, 41.945747] }, "n2130304164": { "id": "n2130304164", - "loc": [-85.6363292, 41.9452278] + "loc": [-85.636329, 41.945228] }, "n2130304165": { "id": "n2130304165", - "loc": [-85.6360248, 41.9454175] + "loc": [-85.636025, 41.945417] }, "n2139824683": { "id": "n2139824683", - "loc": [-85.6339825, 41.9446441] + "loc": [-85.633983, 41.944644] }, "n2139824689": { "id": "n2139824689", - "loc": [-85.6340437, 41.9446925] + "loc": [-85.634044, 41.944693] }, "n2139824702": { "id": "n2139824702", - "loc": [-85.6340961, 41.9447551] + "loc": [-85.634096, 41.944755] }, "n2139824705": { "id": "n2139824705", - "loc": [-85.6337467, 41.944809] + "loc": [-85.633747, 41.944809] }, "n2139824707": { "id": "n2139824707", - "loc": [-85.6341598, 41.9448129] + "loc": [-85.63416, 41.944813] }, "n2139824710": { "id": "n2139824710", - "loc": [-85.6342771, 41.9448223] + "loc": [-85.634277, 41.944822] }, "n2139824712": { "id": "n2139824712", - "loc": [-85.6346058, 41.944841] + "loc": [-85.634606, 41.944841] }, "n2139824713": { "id": "n2139824713", - "loc": [-85.633808, 41.9448574] + "loc": [-85.633808, 41.944857] }, "n2139824714": { "id": "n2139824714", - "loc": [-85.6340889, 41.9448589] + "loc": [-85.634089, 41.944859] }, "n2139824716": { "id": "n2139824716", - "loc": [-85.6343335, 41.944871] + "loc": [-85.634333, 41.944871] }, "n2139824717": { "id": "n2139824717", - "loc": [-85.6343341, 41.9448717] + "loc": [-85.634334, 41.944872] }, "n2139824720": { "id": "n2139824720", - "loc": [-85.6338757, 41.9449069] + "loc": [-85.633876, 41.944907] }, "n2139824721": { "id": "n2139824721", - "loc": [-85.6341445, 41.9449071] + "loc": [-85.634145, 41.944907] }, "n2139824724": { "id": "n2139824724", - "loc": [-85.6334787, 41.9449262] + "loc": [-85.633479, 41.944926] }, "n2139824726": { "id": "n2139824726", - "loc": [-85.6347119, 41.9449332] + "loc": [-85.634712, 41.944933] }, "n2139824727": { "id": "n2139824727", - "loc": [-85.6347175, 41.9449418] + "loc": [-85.634717, 41.944942] }, "n2139824728": { "id": "n2139824728", - "loc": [-85.6344284, 41.9449538] + "loc": [-85.634428, 41.944954] }, "n2139824729": { "id": "n2139824729", - "loc": [-85.6339339, 41.9449573] + "loc": [-85.633934, 41.944957] }, "n2139824730": { "id": "n2139824730", - "loc": [-85.6339179, 41.9449682] + "loc": [-85.633918, 41.944968] }, "n2139824732": { "id": "n2139824732", - "loc": [-85.6335472, 41.9449895] + "loc": [-85.633547, 41.944989] }, "n2139824733": { "id": "n2139824733", - "loc": [-85.6339736, 41.9450164] + "loc": [-85.633974, 41.945016] }, "n2139824735": { "id": "n2139824735", - "loc": [-85.6336034, 41.9450415] + "loc": [-85.633603, 41.945042] }, "n2139824736": { "id": "n2139824736", - "loc": [-85.6348317, 41.945043] + "loc": [-85.634832, 41.945043] }, "n2139824737": { "id": "n2139824737", - "loc": [-85.63403, 41.9450651] + "loc": [-85.63403, 41.945065] }, "n2139824738": { "id": "n2139824738", - "loc": [-85.6336611, 41.9450949] + "loc": [-85.633661, 41.945095] }, "n2139824740": { "id": "n2139824740", - "loc": [-85.6336582, 41.9450966] + "loc": [-85.633658, 41.945097] }, "n2139824744": { "id": "n2139824744", - "loc": [-85.6331702, 41.9451107] + "loc": [-85.63317, 41.945111] }, "n2139824745": { "id": "n2139824745", - "loc": [-85.6333388, 41.9451142] + "loc": [-85.633339, 41.945114] }, "n2139824746": { "id": "n2139824746", - "loc": [-85.6337131, 41.9451341] + "loc": [-85.633713, 41.945134] }, "n2139824747": { "id": "n2139824747", - "loc": [-85.6337021, 41.9451372] + "loc": [-85.633702, 41.945137] }, "n2139824748": { "id": "n2139824748", - "loc": [-85.6341244, 41.9451472] + "loc": [-85.634124, 41.945147] }, "n2139824749": { "id": "n2139824749", - "loc": [-85.6333952, 41.945166] + "loc": [-85.633395, 41.945166] }, "n2139824750": { "id": "n2139824750", - "loc": [-85.633395, 41.9451661] + "loc": [-85.633395, 41.945166] }, "n2139824751": { "id": "n2139824751", - "loc": [-85.6346258, 41.9451725] + "loc": [-85.634626, 41.945172] }, "n2139824752": { "id": "n2139824752", - "loc": [-85.6332387, 41.9451741] + "loc": [-85.633239, 41.945174] }, "n2139824753": { "id": "n2139824753", - "loc": [-85.6346901, 41.9451853] + "loc": [-85.63469, 41.945185] }, "n2139824754": { "id": "n2139824754", - "loc": [-85.6346611, 41.9452035] + "loc": [-85.634661, 41.945203] }, "n2139824755": { "id": "n2139824755", - "loc": [-85.6346574, 41.9452059] + "loc": [-85.634657, 41.945206] }, "n2139824756": { "id": "n2139824756", - "loc": [-85.6345611, 41.9452133] + "loc": [-85.634561, 41.945213] }, "n2139824757": { "id": "n2139824757", - "loc": [-85.633453, 41.9452194] + "loc": [-85.633453, 41.945219] }, "n2139824758": { "id": "n2139824758", - "loc": [-85.6335508, 41.9452283] + "loc": [-85.633551, 41.945228] }, "n2139824759": { "id": "n2139824759", - "loc": [-85.6347424, 41.9452312] + "loc": [-85.634742, 41.945231] }, "n2139824760": { "id": "n2139824760", - "loc": [-85.6342305, 41.9452395] + "loc": [-85.634231, 41.945239] }, "n2139824761": { "id": "n2139824761", - "loc": [-85.6342319, 41.9452449] + "loc": [-85.634232, 41.945245] }, "n2139824762": { "id": "n2139824762", - "loc": [-85.6334969, 41.94526] + "loc": [-85.633497, 41.94526] }, "n2139824763": { "id": "n2139824763", - "loc": [-85.63468, 41.9452706] + "loc": [-85.63468, 41.945271] }, "n2139824764": { "id": "n2139824764", - "loc": [-85.6346772, 41.9452724] + "loc": [-85.634677, 41.945272] }, "n2139824765": { "id": "n2139824765", - "loc": [-85.6338611, 41.9452763] + "loc": [-85.633861, 41.945276] }, "n2139824766": { "id": "n2139824766", - "loc": [-85.6347811, 41.9452939] + "loc": [-85.634781, 41.945294] }, "n2139824767": { "id": "n2139824767", - "loc": [-85.6347375, 41.9453211] + "loc": [-85.634737, 41.945321] }, "n2139824768": { "id": "n2139824768", - "loc": [-85.6339171, 41.9453301] + "loc": [-85.633917, 41.94533] }, "n2139824769": { "id": "n2139824769", - "loc": [-85.6348307, 41.9453377] + "loc": [-85.634831, 41.945338] }, "n2139824770": { "id": "n2139824770", - "loc": [-85.6347067, 41.9453405] + "loc": [-85.634707, 41.945341] }, "n2139824771": { "id": "n2139824771", - "loc": [-85.6343461, 41.9453461] + "loc": [-85.634346, 41.945346] }, "n2139824772": { "id": "n2139824772", - "loc": [-85.6343481, 41.9453475] + "loc": [-85.634348, 41.945347] }, "n2139824773": { "id": "n2139824773", - "loc": [-85.634805, 41.9453538] + "loc": [-85.634805, 41.945354] }, "n2139824774": { "id": "n2139824774", - "loc": [-85.6336997, 41.9453692] + "loc": [-85.6337, 41.945369] }, "n2139824775": { "id": "n2139824775", - "loc": [-85.6339709, 41.9453818] + "loc": [-85.633971, 41.945382] }, "n2139824776": { "id": "n2139824776", - "loc": [-85.6336229, 41.9454134] + "loc": [-85.633623, 41.945413] }, "n2139824777": { "id": "n2139824777", - "loc": [-85.6349022, 41.9454141] + "loc": [-85.634902, 41.945414] }, "n2139824778": { "id": "n2139824778", - "loc": [-85.6348854, 41.9454246] + "loc": [-85.634885, 41.945425] }, "n2139824779": { "id": "n2139824779", - "loc": [-85.6340286, 41.9454373] + "loc": [-85.634029, 41.945437] }, "n2139824780": { "id": "n2139824780", - "loc": [-85.6336963, 41.9454572] + "loc": [-85.633696, 41.945457] }, "n2139824781": { "id": "n2139824781", - "loc": [-85.6336789, 41.9454672] + "loc": [-85.633679, 41.945467] }, "n2139824782": { "id": "n2139824782", - "loc": [-85.6344933, 41.945475] + "loc": [-85.634493, 41.945475] }, "n2139824783": { "id": "n2139824783", - "loc": [-85.6340854, 41.9454918] + "loc": [-85.634085, 41.945492] }, "n2139824784": { "id": "n2139824784", - "loc": [-85.6350036, 41.9455034] + "loc": [-85.635004, 41.945503] }, "n2139824785": { "id": "n2139824785", - "loc": [-85.6337501, 41.9455089] + "loc": [-85.63375, 41.945509] }, "n2139824786": { "id": "n2139824786", - "loc": [-85.6337497, 41.9455091] + "loc": [-85.63375, 41.945509] }, "n2139824787": { "id": "n2139824787", - "loc": [-85.6345425, 41.9455186] + "loc": [-85.634542, 41.945519] }, "n2139824788": { "id": "n2139824788", - "loc": [-85.6341459, 41.9455372] + "loc": [-85.634146, 41.945537] }, "n2139824789": { "id": "n2139824789", - "loc": [-85.6341376, 41.945542] + "loc": [-85.634138, 41.945542] }, "n2139824790": { "id": "n2139824790", - "loc": [-85.6338394, 41.9455462] + "loc": [-85.633839, 41.945546] }, "n2139824791": { "id": "n2139824791", - "loc": [-85.6349171, 41.9455588] + "loc": [-85.634917, 41.945559] }, "n2139824792": { "id": "n2139824792", - "loc": [-85.6338074, 41.9455646] + "loc": [-85.633807, 41.945565] }, "n2139824793": { "id": "n2139824793", - "loc": [-85.6346229, 41.9455894] + "loc": [-85.634623, 41.945589] }, "n2139824794": { "id": "n2139824794", - "loc": [-85.6338983, 41.9455995] + "loc": [-85.633898, 41.9456] }, "n2139824795": { "id": "n2139824795", - "loc": [-85.6338962, 41.9456007] + "loc": [-85.633896, 41.945601] }, "n2139824796": { "id": "n2139824796", - "loc": [-85.6342475, 41.9456348] + "loc": [-85.634248, 41.945635] }, "n2139824797": { "id": "n2139824797", - "loc": [-85.6339505, 41.9456497] + "loc": [-85.63395, 41.94565] }, "n2139824798": { "id": "n2139824798", - "loc": [-85.6347243, 41.9456788] + "loc": [-85.634724, 41.945679] }, "n2139824799": { "id": "n2139824799", - "loc": [-85.635057, 41.9456831] + "loc": [-85.635057, 41.945683] }, "n2139824800": { "id": "n2139824800", - "loc": [-85.635287, 41.9457056] + "loc": [-85.635287, 41.945706] }, "n2139824801": { "id": "n2139824801", - "loc": [-85.6350753, 41.9457068] + "loc": [-85.635075, 41.945707] }, "n2139824802": { "id": "n2139824802", - "loc": [-85.6347753, 41.9457252] + "loc": [-85.634775, 41.945725] }, "n2139824803": { "id": "n2139824803", - "loc": [-85.6340521, 41.9457473] + "loc": [-85.634052, 41.945747] }, "n2139824804": { "id": "n2139824804", - "loc": [-85.6352875, 41.9457611] + "loc": [-85.635288, 41.945761] }, "n2139824805": { "id": "n2139824805", - "loc": [-85.6352941, 41.9457611] + "loc": [-85.635294, 41.945761] }, "n2139824806": { "id": "n2139824806", - "loc": [-85.6350758, 41.9457623] + "loc": [-85.635076, 41.945762] }, "n2139824807": { "id": "n2139824807", - "loc": [-85.6348194, 41.9457638] + "loc": [-85.634819, 41.945764] }, "n2139824808": { "id": "n2139824808", - "loc": [-85.635296, 41.9459428] + "loc": [-85.635296, 41.945943] }, "n2139824809": { "id": "n2139824809", - "loc": [-85.6348212, 41.9459455] + "loc": [-85.634821, 41.945946] }, "n2139832635": { "id": "n2139832635", - "loc": [-85.6354612, 41.9448791] + "loc": [-85.635461, 41.944879] }, "n2139832636": { "id": "n2139832636", - "loc": [-85.6360241, 41.9453844] + "loc": [-85.636024, 41.945384] }, "n2139832637": { "id": "n2139832637", - "loc": [-85.6361452, 41.9453121] + "loc": [-85.636145, 41.945312] }, "n2139832639": { "id": "n2139832639", - "loc": [-85.6355997, 41.944797] + "loc": [-85.6356, 41.944797] }, "n2139832641": { "id": "n2139832641", - "loc": [-85.6351346, 41.9443541] + "loc": [-85.635135, 41.944354] }, "n2139832647": { "id": "n2139832647", - "loc": [-85.6329883, 41.9453692] + "loc": [-85.632988, 41.945369] }, "n2139832653": { "id": "n2139832653", - "loc": [-85.6333643, 41.9456293] + "loc": [-85.633364, 41.945629] }, "n2139832663": { "id": "n2139832663", - "loc": [-85.6335394, 41.9455339] + "loc": [-85.633539, 41.945534] }, "n2139832665": { "id": "n2139832665", - "loc": [-85.6332375, 41.9452476] + "loc": [-85.633238, 41.945248] }, "n2139832667": { "id": "n2139832667", - "loc": [-85.6331664, 41.9452161] + "loc": [-85.633166, 41.945216] }, "n2139832669": { "id": "n2139832669", - "loc": [-85.6331144, 41.9451875] + "loc": [-85.633114, 41.945188] }, "n2139832671": { "id": "n2139832671", - "loc": [-85.6330779, 41.9451274] + "loc": [-85.633078, 41.945127] }, "n2139832673": { "id": "n2139832673", - "loc": [-85.6330664, 41.9450802] + "loc": [-85.633066, 41.94508] }, "n2139832678": { "id": "n2139832678", - "loc": [-85.6332218, 41.9453585] + "loc": [-85.633222, 41.945358] }, "n2139832686": { "id": "n2139832686", - "loc": [-85.6334246, 41.945541] + "loc": [-85.633425, 41.945541] }, "n2139832691": { "id": "n2139832691", - "loc": [-85.6329898, 41.9454997] + "loc": [-85.63299, 41.9455] }, "n2139832693": { "id": "n2139832693", - "loc": [-85.6343554, 41.9443274] + "loc": [-85.634355, 41.944327] }, "n2139832694": { "id": "n2139832694", - "loc": [-85.6336339, 41.9437089] + "loc": [-85.633634, 41.943709] }, "n2139832696": { "id": "n2139832696", - "loc": [-85.633532, 41.9437708] + "loc": [-85.633532, 41.943771] }, "n2139832697": { "id": "n2139832697", - "loc": [-85.6338316, 41.9440868] + "loc": [-85.633832, 41.944087] }, "n2139832698": { "id": "n2139832698", - "loc": [-85.6342258, 41.9444141] - }, - "n2139832699": { - "id": "n2139832699", - "loc": [-85.6339164, 41.9442166] + "loc": [-85.634226, 41.944414] }, "n2139832700": { "id": "n2139832700", - "loc": [-85.6341389, 41.944384] + "loc": [-85.634139, 41.944384] }, "n2139832701": { "id": "n2139832701", - "loc": [-85.634235, 41.9443259] + "loc": [-85.634235, 41.944326] }, "n2139832702": { "id": "n2139832702", - "loc": [-85.633613, 41.9437875] + "loc": [-85.633613, 41.943787] }, "n2139832703": { "id": "n2139832703", - "loc": [-85.633915, 41.9436132] + "loc": [-85.633915, 41.943613] }, "n2139832704": { "id": "n2139832704", - "loc": [-85.6340019, 41.9435613] + "loc": [-85.634002, 41.943561] }, "n2139832706": { "id": "n2139832706", - "loc": [-85.6343197, 41.9438427] + "loc": [-85.63432, 41.943843] }, "n2139832708": { "id": "n2139832708", - "loc": [-85.6342361, 41.9438936] + "loc": [-85.634236, 41.943894] }, "n2139832709": { "id": "n2139832709", - "loc": [-85.6353839, 41.9460401] + "loc": [-85.635407, 41.946052] }, "n2139832710": { "id": "n2139832710", - "loc": [-85.6354032, 41.9456763] + "loc": [-85.635403, 41.945676] }, "n2139832711": { "id": "n2139832711", - "loc": [-85.6356839, 41.9459252] + "loc": [-85.635684, 41.945925] }, "n2139832712": { "id": "n2139832712", - "loc": [-85.6356109, 41.945735] + "loc": [-85.635614, 41.945742] }, "n2139832713": { "id": "n2139832713", - "loc": [-85.6353997, 41.9457421] + "loc": [-85.635404, 41.945743] }, "n2139832714": { "id": "n2139832714", - "loc": [-85.6353895, 41.9459347] + "loc": [-85.635406, 41.945928] }, "n2139832715": { "id": "n2139832715", - "loc": [-85.6334777, 41.9436628] + "loc": [-85.633478, 41.943663] }, "n2139832716": { "id": "n2139832716", - "loc": [-85.6333137, 41.9435382] + "loc": [-85.633314, 41.943538] }, "n2139832717": { "id": "n2139832717", - "loc": [-85.6330938, 41.9435406] + "loc": [-85.633094, 41.943541] }, "n2139832721": { "id": "n2139832721", - "loc": [-85.6333023, 41.9434922] + "loc": [-85.633302, 41.943492] }, "n2139832722": { "id": "n2139832722", - "loc": [-85.6330466, 41.943623] + "loc": [-85.633047, 41.943623] }, "n2139832723": { "id": "n2139832723", - "loc": [-85.6332746, 41.9435624] + "loc": [-85.633275, 41.943562] }, "n2139832724": { "id": "n2139832724", - "loc": [-85.6333511, 41.9435176] + "loc": [-85.633351, 41.943518] }, "n2139832725": { "id": "n2139832725", - "loc": [-85.6332241, 41.9434001] + "loc": [-85.633224, 41.9434] }, "n2139832726": { "id": "n2139832726", - "loc": [-85.6332355, 41.9433686] + "loc": [-85.633235, 41.943369] }, "n2139870373": { "id": "n2139870373", - "loc": [-85.6351783, 41.9439117] + "loc": [-85.635178, 41.943912] }, "n2139870374": { "id": "n2139870374", - "loc": [-85.6351431, 41.9439217] + "loc": [-85.635143, 41.943922] }, "n2139870375": { "id": "n2139870375", - "loc": [-85.6348853, 41.9439117] + "loc": [-85.634885, 41.943912] }, "n2139870376": { "id": "n2139870376", - "loc": [-85.6348317, 41.9439105] + "loc": [-85.634832, 41.943911] }, "n2139870377": { "id": "n2139870377", - "loc": [-85.6346384, 41.944007] + "loc": [-85.634638, 41.944007] }, "n2139870378": { "id": "n2139870378", - "loc": [-85.6345563, 41.9440523] + "loc": [-85.634556, 41.944052] }, "n2140006403": { "id": "n2140006403", - "loc": [-85.6359942, 41.9450097] + "loc": [-85.635994, 41.94501] }, "n2140006405": { "id": "n2140006405", - "loc": [-85.6363884, 41.9446079] + "loc": [-85.636388, 41.944608] }, "n2140006407": { "id": "n2140006407", - "loc": [-85.6362148, 41.9447874] + "loc": [-85.636215, 41.944787] }, "n2140006409": { "id": "n2140006409", - "loc": [-85.6379476, 41.9445869] + "loc": [-85.637948, 41.944587] }, "n2140006411": { "id": "n2140006411", - "loc": [-85.6378485, 41.9445674] + "loc": [-85.637849, 41.944567] }, "n2140006413": { "id": "n2140006413", - "loc": [-85.6378952, 41.9444547] + "loc": [-85.637895, 41.944455] }, "n2140006415": { "id": "n2140006415", - "loc": [-85.6379962, 41.944477] + "loc": [-85.637996, 41.944477] }, "n2140006421": { "id": "n2140006421", - "loc": [-85.6355248, 41.9433702] + "loc": [-85.635525, 41.94337] }, "n2140006423": { "id": "n2140006423", - "loc": [-85.6378471, 41.9439233] + "loc": [-85.637847, 41.943923] }, "n2140006425": { "id": "n2140006425", - "loc": [-85.6378913, 41.9441238] + "loc": [-85.637891, 41.944124] }, "n2140006426": { "id": "n2140006426", - "loc": [-85.6381674, 41.9442289] + "loc": [-85.638167, 41.944229] }, "n2140006427": { "id": "n2140006427", - "loc": [-85.6382359, 41.9440975] + "loc": [-85.638236, 41.944097] }, "n2140006428": { "id": "n2140006428", - "loc": [-85.6382071, 41.9440252] + "loc": [-85.638207, 41.944025] }, "n2140006429": { "id": "n2140006429", - "loc": [-85.6381409, 41.9439973] + "loc": [-85.638141, 41.943997] }, "n2140006430": { "id": "n2140006430", - "loc": [-85.6380569, 41.9440153] + "loc": [-85.638057, 41.944015] }, "n2140006433": { "id": "n2140006433", - "loc": [-85.6379071, 41.9442467] + "loc": [-85.637902, 41.944231] }, "n2140006435": { "id": "n2140006435", - "loc": [-85.6381634, 41.9443125] + "loc": [-85.638134, 41.944307] }, "n2140006436": { "id": "n2140006436", - "loc": [-85.6382407, 41.944301] + "loc": [-85.638242, 41.944294] }, "n2140006438": { "id": "n2140006438", - "loc": [-85.6382761, 41.9442188] + "loc": [-85.638274, 41.944222] }, "n2140006439": { "id": "n2140006439", - "loc": [-85.6382429, 41.9441761] + "loc": [-85.638236, 41.944174] }, "n2140006440": { "id": "n2140006440", - "loc": [-85.6382016, 41.9441632] + "loc": [-85.638207, 41.944157] }, "n2140006441": { "id": "n2140006441", - "loc": [-85.6378185, 41.9439835] + "loc": [-85.637818, 41.943984] }, "n2166205688": { "id": "n2166205688", - "loc": [-85.6349963, 41.9444392] + "loc": [-85.634996, 41.944439] }, "n2168544780": { "id": "n2168544780", @@ -16188,139 +6608,139 @@ }, "n2168544781": { "id": "n2168544781", - "loc": [-85.6340783, 41.9458621] + "loc": [-85.634078, 41.945862] }, "n2168544782": { "id": "n2168544782", - "loc": [-85.6338184, 41.9457548] + "loc": [-85.633818, 41.945755] }, "n2168544783": { "id": "n2168544783", - "loc": [-85.6339925, 41.9459777] + "loc": [-85.633993, 41.945978] }, "n2168544784": { "id": "n2168544784", - "loc": [-85.6337317, 41.9458698] + "loc": [-85.633732, 41.94587] }, "n2168544785": { "id": "n2168544785", - "loc": [-85.6337297, 41.9460042] + "loc": [-85.63373, 41.946004] }, "n2168544786": { "id": "n2168544786", - "loc": [-85.633919, 41.9460797] + "loc": [-85.633919, 41.94608] }, "n2168544787": { "id": "n2168544787", - "loc": [-85.6338672, 41.9459263] + "loc": [-85.633867, 41.945926] }, "n2168544788": { "id": "n2168544788", - "loc": [-85.6338246, 41.9459853] + "loc": [-85.633825, 41.945985] }, "n2168544789": { "id": "n2168544789", - "loc": [-85.6337615, 41.9459601] + "loc": [-85.633762, 41.94596] }, "n2168544790": { "id": "n2168544790", - "loc": [-85.6342079, 41.9460399] + "loc": [-85.634208, 41.94604] }, "n2168544791": { "id": "n2168544791", - "loc": [-85.6343346, 41.9458503] + "loc": [-85.634335, 41.94585] }, "n2168544792": { "id": "n2168544792", - "loc": [-85.6343759, 41.9458116] + "loc": [-85.634376, 41.945812] }, "n2168544793": { "id": "n2168544793", - "loc": [-85.6344394, 41.9458109] + "loc": [-85.634439, 41.945811] }, "n2168544795": { "id": "n2168544795", - "loc": [-85.6344827, 41.945851] + "loc": [-85.634483, 41.945851] }, "n2168544797": { "id": "n2168544797", - "loc": [-85.6344807, 41.945969] + "loc": [-85.634481, 41.945969] }, "n2168544798": { "id": "n2168544798", - "loc": [-85.6344404, 41.9459697] + "loc": [-85.63444, 41.94597] }, "n2168544799": { "id": "n2168544799", - "loc": [-85.6344413, 41.9460333] + "loc": [-85.634441, 41.946033] }, "n2168544800": { "id": "n2168544800", - "loc": [-85.6342173, 41.9460705] + "loc": [-85.634217, 41.94607] }, "n2168544801": { "id": "n2168544801", - "loc": [-85.6342162, 41.9460392] + "loc": [-85.634216, 41.946039] }, "n2168544802": { "id": "n2168544802", - "loc": [-85.6344251, 41.9460351] + "loc": [-85.634425, 41.946035] }, "n2168544805": { "id": "n2168544805", - "loc": [-85.6344257, 41.9460507] + "loc": [-85.634426, 41.946051] }, "n2168544807": { "id": "n2168544807", - "loc": [-85.6344721, 41.9460498] + "loc": [-85.634472, 41.94605] }, "n2168544809": { "id": "n2168544809", - "loc": [-85.6344754, 41.9461427] + "loc": [-85.634475, 41.946143] }, "n2168544811": { "id": "n2168544811", - "loc": [-85.6344311, 41.9461435] + "loc": [-85.634431, 41.946143] }, "n2168544813": { "id": "n2168544813", - "loc": [-85.6344317, 41.9461592] + "loc": [-85.634432, 41.946159] }, "n2168544815": { "id": "n2168544815", - "loc": [-85.6343708, 41.9461604] + "loc": [-85.634371, 41.94616] }, "n2168544817": { "id": "n2168544817", - "loc": [-85.6343715, 41.9461786] + "loc": [-85.634372, 41.946179] }, "n2168544819": { "id": "n2168544819", - "loc": [-85.6343229, 41.9461795] + "loc": [-85.634323, 41.946179] }, "n2168544821": { "id": "n2168544821", - "loc": [-85.6343222, 41.9461606] + "loc": [-85.634322, 41.946161] }, "n2168544823": { "id": "n2168544823", - "loc": [-85.6342476, 41.9461621] + "loc": [-85.634248, 41.946162] }, "n2168544825": { "id": "n2168544825", - "loc": [-85.6342444, 41.94607] + "loc": [-85.634244, 41.94607] }, "n2168544827": { "id": "n2168544827", - "loc": [-85.634138, 41.9461632] + "loc": [-85.634138, 41.946163] }, "n2168544829": { "id": "n2168544829", - "loc": [-85.6342016, 41.9460703] + "loc": [-85.634202, 41.94607] }, "n2168544830": { "id": "n2168544830", - "loc": [-85.6332929, 41.9463092] + "loc": [-85.633293, 41.946309] }, "n2168544831": { "id": "n2168544831", @@ -16328,419 +6748,419 @@ }, "n2168544832": { "id": "n2168544832", - "loc": [-85.6332954, 41.9460055] + "loc": [-85.633295, 41.946005] }, "n2168544833": { "id": "n2168544833", - "loc": [-85.6333954, 41.9460466] + "loc": [-85.633395, 41.946047] }, "n2168544834": { "id": "n2168544834", - "loc": [-85.6334044, 41.9460345] + "loc": [-85.633404, 41.946035] }, "n2168544835": { "id": "n2168544835", - "loc": [-85.6334594, 41.9460571] + "loc": [-85.633459, 41.946057] }, "n2168544836": { "id": "n2168544836", - "loc": [-85.6333871, 41.9461544] + "loc": [-85.633387, 41.946154] }, "n2168544837": { "id": "n2168544837", - "loc": [-85.633403, 41.9461609] + "loc": [-85.633403, 41.946161] }, "n2168544838": { "id": "n2168544838", - "loc": [-85.6341683, 41.9464167] + "loc": [-85.634168, 41.946417] }, "n2168544839": { "id": "n2168544839", - "loc": [-85.6341711, 41.9463411] + "loc": [-85.634171, 41.946341] }, "n2168544840": { "id": "n2168544840", - "loc": [-85.6344471, 41.9463469] + "loc": [-85.634447, 41.946347] }, "n2168544841": { "id": "n2168544841", - "loc": [-85.6344441, 41.9464243] + "loc": [-85.634444, 41.946424] }, "n2168544842": { "id": "n2168544842", - "loc": [-85.6343622, 41.9464226] + "loc": [-85.634362, 41.946423] }, "n2168544843": { "id": "n2168544843", - "loc": [-85.6343593, 41.9464989] + "loc": [-85.634359, 41.946499] }, "n2168544844": { "id": "n2168544844", - "loc": [-85.6342812, 41.9464973] + "loc": [-85.634281, 41.946497] }, "n2168544845": { "id": "n2168544845", - "loc": [-85.634283, 41.9464504] + "loc": [-85.634283, 41.94645] }, "n2168544846": { "id": "n2168544846", - "loc": [-85.6342609, 41.9464499] + "loc": [-85.634261, 41.94645] }, "n2168544847": { "id": "n2168544847", - "loc": [-85.6342621, 41.9464187] + "loc": [-85.634262, 41.946419] }, "n2168544848": { "id": "n2168544848", - "loc": [-85.6348414, 41.9463396] + "loc": [-85.634841, 41.94634] }, "n2168544849": { "id": "n2168544849", - "loc": [-85.6348387, 41.9461872] + "loc": [-85.634839, 41.946187] }, "n2168544850": { "id": "n2168544850", - "loc": [-85.6351186, 41.9461844] + "loc": [-85.635119, 41.946184] }, "n2168544851": { "id": "n2168544851", - "loc": [-85.635119, 41.9462112] + "loc": [-85.635119, 41.946211] }, "n2168544852": { "id": "n2168544852", - "loc": [-85.6351918, 41.9462104] + "loc": [-85.635192, 41.94621] }, "n2168544853": { "id": "n2168544853", - "loc": [-85.6351944, 41.9463515] + "loc": [-85.635194, 41.946351] }, "n2168544854": { "id": "n2168544854", - "loc": [-85.6351049, 41.9463524] + "loc": [-85.635105, 41.946352] }, "n2168544855": { "id": "n2168544855", - "loc": [-85.6351046, 41.946337] + "loc": [-85.635105, 41.946337] }, "n2189153180": { "id": "n2189153180", - "loc": [-85.6340369, 41.9469572] + "loc": [-85.634037, 41.946957] }, "n2189153181": { "id": "n2189153181", - "loc": [-85.6342531, 41.946953] + "loc": [-85.634253, 41.946953] }, "n2189153183": { "id": "n2189153183", - "loc": [-85.6348115, 41.9465468] + "loc": [-85.634811, 41.946547] }, "n2189153184": { "id": "n2189153184", - "loc": [-85.6348105, 41.9464569] + "loc": [-85.634811, 41.946457] }, "n2189153185": { "id": "n2189153185", - "loc": [-85.6351431, 41.9464549] + "loc": [-85.635143, 41.946455] }, "n2189153186": { "id": "n2189153186", - "loc": [-85.6351441, 41.9465448] + "loc": [-85.635144, 41.946545] }, "n2189153187": { "id": "n2189153187", - "loc": [-85.6350077, 41.9465456] + "loc": [-85.635008, 41.946546] }, "n2189153188": { "id": "n2189153188", - "loc": [-85.635008, 41.9465721] + "loc": [-85.635008, 41.946572] }, "n2189153189": { "id": "n2189153189", - "loc": [-85.6348965, 41.9465727] + "loc": [-85.634896, 41.946573] }, "n2189153190": { "id": "n2189153190", - "loc": [-85.6348962, 41.9465463] + "loc": [-85.634896, 41.946546] }, "n2189153191": { "id": "n2189153191", - "loc": [-85.6348963, 41.9471586] + "loc": [-85.634896, 41.947159] }, "n2189153192": { "id": "n2189153192", - "loc": [-85.6348944, 41.947032] + "loc": [-85.634894, 41.947032] }, "n2189153193": { "id": "n2189153193", - "loc": [-85.6350241, 41.947031] + "loc": [-85.635024, 41.947031] }, "n2189153194": { "id": "n2189153194", - "loc": [-85.635026, 41.9471575] + "loc": [-85.635026, 41.947158] }, "n2189153195": { "id": "n2189153195", - "loc": [-85.6352328, 41.9471053] + "loc": [-85.635233, 41.947105] }, "n2189153196": { "id": "n2189153196", - "loc": [-85.6352359, 41.9469906] + "loc": [-85.635236, 41.946991] }, "n2189153197": { "id": "n2189153197", - "loc": [-85.6353694, 41.9469925] + "loc": [-85.635369, 41.946993] }, "n2189153198": { "id": "n2189153198", - "loc": [-85.6353664, 41.9471072] + "loc": [-85.635366, 41.947107] }, "n2189153199": { "id": "n2189153199", - "loc": [-85.6348241, 41.9469287] + "loc": [-85.634824, 41.946929] }, "n2189153200": { "id": "n2189153200", - "loc": [-85.6348248, 41.9468185] + "loc": [-85.634825, 41.946818] }, "n2189153201": { "id": "n2189153201", - "loc": [-85.6351199, 41.9468195] + "loc": [-85.63512, 41.946819] }, "n2189153202": { "id": "n2189153202", - "loc": [-85.6351192, 41.9469298] + "loc": [-85.635119, 41.94693] }, "n2189153203": { "id": "n2189153203", - "loc": [-85.6347965, 41.9468057] + "loc": [-85.634796, 41.946806] }, "n2189153204": { "id": "n2189153204", - "loc": [-85.634792, 41.9466044] + "loc": [-85.634792, 41.946604] }, "n2189153205": { "id": "n2189153205", - "loc": [-85.6349483, 41.9466025] + "loc": [-85.634948, 41.946602] }, "n2189153206": { "id": "n2189153206", - "loc": [-85.6349493, 41.9466448] + "loc": [-85.634949, 41.946645] }, "n2189153207": { "id": "n2189153207", - "loc": [-85.6349753, 41.9466445] + "loc": [-85.634975, 41.946644] }, "n2189153208": { "id": "n2189153208", - "loc": [-85.6349743, 41.9465995] + "loc": [-85.634974, 41.946599] }, "n2189153209": { "id": "n2189153209", - "loc": [-85.6351173, 41.9465977] + "loc": [-85.635117, 41.946598] }, "n2189153210": { "id": "n2189153210", - "loc": [-85.6351219, 41.9468015] + "loc": [-85.635122, 41.946801] }, "n2189153211": { "id": "n2189153211", - "loc": [-85.6349806, 41.9468032] + "loc": [-85.634981, 41.946803] }, "n2189153212": { "id": "n2189153212", - "loc": [-85.6349794, 41.9467519] + "loc": [-85.634979, 41.946752] }, "n2189153213": { "id": "n2189153213", - "loc": [-85.6349521, 41.9467523] + "loc": [-85.634952, 41.946752] }, "n2189153214": { "id": "n2189153214", - "loc": [-85.6349532, 41.9468037] + "loc": [-85.634953, 41.946804] }, "n2189153215": { "id": "n2189153215", - "loc": [-85.6346302, 41.9468381] + "loc": [-85.63463, 41.946838] }, "n2189153216": { "id": "n2189153216", - "loc": [-85.6343028, 41.9468449] + "loc": [-85.634303, 41.946845] }, "n2189153217": { "id": "n2189153217", - "loc": [-85.6342006, 41.9468297] + "loc": [-85.634201, 41.94683] }, "n2189153218": { "id": "n2189153218", - "loc": [-85.6336698, 41.9465918] + "loc": [-85.63367, 41.946592] }, "n2189153219": { "id": "n2189153219", - "loc": [-85.6344663, 41.9466639] + "loc": [-85.634466, 41.946664] }, "n2189153220": { "id": "n2189153220", - "loc": [-85.6344639, 41.9466015] + "loc": [-85.634464, 41.946601] }, "n2189153221": { "id": "n2189153221", - "loc": [-85.6342283, 41.9466065] + "loc": [-85.634228, 41.946607] }, "n2189153222": { "id": "n2189153222", - "loc": [-85.6342303, 41.9466587] + "loc": [-85.63423, 41.946659] }, "n2189153223": { "id": "n2189153223", - "loc": [-85.6342843, 41.9466575] + "loc": [-85.634284, 41.946658] }, "n2189153224": { "id": "n2189153224", - "loc": [-85.6342851, 41.9466794] + "loc": [-85.634285, 41.946679] }, "n2189153225": { "id": "n2189153225", - "loc": [-85.6343475, 41.9466781] + "loc": [-85.634348, 41.946678] }, "n2189153226": { "id": "n2189153226", - "loc": [-85.634347, 41.9466664] + "loc": [-85.634347, 41.946666] }, "n2189153227": { "id": "n2189153227", - "loc": [-85.6354428, 41.9470148] + "loc": [-85.635443, 41.947015] }, "n2189153228": { "id": "n2189153228", - "loc": [-85.6354432, 41.9468005] + "loc": [-85.635443, 41.946801] }, "n2189153229": { "id": "n2189153229", - "loc": [-85.6360277, 41.9468011] + "loc": [-85.636028, 41.946801] }, "n2189153230": { "id": "n2189153230", - "loc": [-85.6360273, 41.9470154] + "loc": [-85.636027, 41.947015] }, "n2189153231": { "id": "n2189153231", - "loc": [-85.6354565, 41.9465823] + "loc": [-85.635457, 41.946582] }, "n2189153232": { "id": "n2189153232", - "loc": [-85.6354496, 41.946218] + "loc": [-85.63545, 41.946218] }, "n2189153233": { "id": "n2189153233", - "loc": [-85.6356355, 41.9465788] + "loc": [-85.635636, 41.946579] }, "n2189153234": { "id": "n2189153234", - "loc": [-85.6357155, 41.9468008] + "loc": [-85.635716, 41.946801] }, "n2189153235": { "id": "n2189153235", - "loc": [-85.6359539, 41.9467969] + "loc": [-85.635954, 41.946797] }, "n2189153236": { "id": "n2189153236", - "loc": [-85.6359561, 41.9463036] + "loc": [-85.635956, 41.946304] }, "n2189153237": { "id": "n2189153237", - "loc": [-85.6360129, 41.9464793] + "loc": [-85.636013, 41.946479] }, "n2189153238": { "id": "n2189153238", - "loc": [-85.6360152, 41.9463898] + "loc": [-85.636015, 41.94639] }, "n2189153239": { "id": "n2189153239", - "loc": [-85.6359607, 41.9464928] + "loc": [-85.635961, 41.946493] }, "n2189153240": { "id": "n2189153240", - "loc": [-85.6356903, 41.9462227] + "loc": [-85.63569, 41.946223] }, "n2189153242": { "id": "n2189153242", - "loc": [-85.6354163, 41.946142] + "loc": [-85.635416, 41.946142] }, "n2189153243": { "id": "n2189153243", - "loc": [-85.6357546, 41.9462214] + "loc": [-85.635755, 41.946221] }, "n2189153244": { "id": "n2189153244", - "loc": [-85.6357937, 41.9462542] + "loc": [-85.635794, 41.946254] }, "n2189153245": { "id": "n2189153245", - "loc": [-85.6358723, 41.9467048] + "loc": [-85.635872, 41.946705] }, "n2189153246": { "id": "n2189153246", - "loc": [-85.6361494, 41.946757] + "loc": [-85.636149, 41.946757] }, "n2189153247": { "id": "n2189153247", - "loc": [-85.6354173, 41.9469082] + "loc": [-85.635417, 41.946908] }, "n2189153248": { "id": "n2189153248", - "loc": [-85.635443, 41.9469079] + "loc": [-85.635443, 41.946908] }, "n2189153249": { "id": "n2189153249", - "loc": [-85.6360275, 41.9469093] + "loc": [-85.636027, 41.946909] }, "n2189153250": { "id": "n2189153250", - "loc": [-85.6361542, 41.946915] + "loc": [-85.636154, 41.946915] }, "n2189153251": { "id": "n2189153251", - "loc": [-85.6358654, 41.9464843] + "loc": [-85.635865, 41.946484] }, "n2189153252": { "id": "n2189153252", - "loc": [-85.6359549, 41.9467499] + "loc": [-85.635955, 41.94675] }, "n2189153253": { "id": "n2189153253", - "loc": [-85.6357172, 41.9466335] + "loc": [-85.635717, 41.946633] }, "n2189153254": { "id": "n2189153254", - "loc": [-85.6355644, 41.9461768] + "loc": [-85.635564, 41.946177] }, "n2189153255": { "id": "n2189153255", - "loc": [-85.6355655, 41.946528] + "loc": [-85.635565, 41.946528] }, "n2189153256": { "id": "n2189153256", - "loc": [-85.6357055, 41.9465971] + "loc": [-85.635706, 41.946597] }, "n2189153257": { "id": "n2189153257", - "loc": [-85.635869, 41.9465971] + "loc": [-85.635869, 41.946597] }, "n2189153259": { "id": "n2189153259", - "loc": [-85.6354561, 41.9470278] + "loc": [-85.635456, 41.947028] }, "n2189153260": { "id": "n2189153260", - "loc": [-85.6357961, 41.9470233] + "loc": [-85.635796, 41.947023] }, "n2189153261": { "id": "n2189153261", - "loc": [-85.6357977, 41.9470907] + "loc": [-85.635798, 41.947091] }, "n2189153262": { "id": "n2189153262", - "loc": [-85.6357297, 41.9470916] + "loc": [-85.63573, 41.947092] }, "n2189153263": { "id": "n2189153263", @@ -16748,55 +7168,55 @@ }, "n2189153264": { "id": "n2189153264", - "loc": [-85.6362674, 41.9468637] + "loc": [-85.636267, 41.946864] }, "n2189153265": { "id": "n2189153265", - "loc": [-85.6362646, 41.9467047] + "loc": [-85.636265, 41.946705] }, "n2189153266": { "id": "n2189153266", - "loc": [-85.6363267, 41.9467047] + "loc": [-85.636327, 41.946705] }, "n2189153267": { "id": "n2189153267", - "loc": [-85.6362633, 41.9465848] + "loc": [-85.636263, 41.946585] }, "n2189153268": { "id": "n2189153268", - "loc": [-85.6363805, 41.9465468] + "loc": [-85.636381, 41.946547] }, "n2189153269": { "id": "n2189153269", - "loc": [-85.6364604, 41.9466842] + "loc": [-85.63646, 41.946684] }, "n2189153270": { "id": "n2189153270", - "loc": [-85.6364604, 41.9468647] + "loc": [-85.63646, 41.946865] }, "n2199109756": { "id": "n2199109756", - "loc": [-85.6337134, 41.9471841] + "loc": [-85.633713, 41.947184] }, "n2199109757": { "id": "n2199109757", - "loc": [-85.6336514, 41.94716] + "loc": [-85.633651, 41.94716] }, "n2199109758": { "id": "n2199109758", - "loc": [-85.6337043, 41.9470847] + "loc": [-85.633704, 41.947085] }, "n2199109759": { "id": "n2199109759", - "loc": [-85.6335997, 41.9470441] + "loc": [-85.6336, 41.947044] }, "n2199109760": { "id": "n2199109760", - "loc": [-85.6335064, 41.9471771] + "loc": [-85.633506, 41.947177] }, "n185960195": { "id": "n185960195", - "loc": [-85.6295992, 41.9524346] + "loc": [-85.629599, 41.952435] }, "n185960796": { "id": "n185960796", @@ -16812,7 +7232,7 @@ }, "n185964982": { "id": "n185964982", - "loc": [-85.632799, 41.9440543] + "loc": [-85.632799, 41.944054] }, "n185965289": { "id": "n185965289", @@ -16836,7 +7256,7 @@ }, "n185967422": { "id": "n185967422", - "loc": [-85.6320229, 41.9490123] + "loc": [-85.632023, 41.949012] }, "n185967917": { "id": "n185967917", @@ -16860,7 +7280,7 @@ }, "n185971580": { "id": "n185971580", - "loc": [-85.6361818, 41.9486135] + "loc": [-85.636182, 41.948614] }, "n185971631": { "id": "n185971631", @@ -16880,7 +7300,7 @@ }, "n185974585": { "id": "n185974585", - "loc": [-85.6362059, 41.9511457] + "loc": [-85.636206, 41.951146] }, "n185975064": { "id": "n185975064", @@ -16904,7 +7324,7 @@ }, "n185978399": { "id": "n185978399", - "loc": [-85.6347861, 41.9606613] + "loc": [-85.634786, 41.960661] }, "n185978402": { "id": "n185978402", @@ -16912,11 +7332,11 @@ }, "n185978406": { "id": "n185978406", - "loc": [-85.6348298, 41.964783] + "loc": [-85.63483, 41.964783] }, "n185978410": { "id": "n185978410", - "loc": [-85.6348766, 41.9677088] + "loc": [-85.634877, 41.967709] }, "n185978414": { "id": "n185978414", @@ -16960,11 +7380,11 @@ }, "n185982193": { "id": "n185982193", - "loc": [-85.6313855, 41.9499125] + "loc": [-85.631385, 41.949913] }, "n185982195": { "id": "n185982195", - "loc": [-85.6304857, 41.9511945] + "loc": [-85.630486, 41.951194] }, "n185982196": { "id": "n185982196", @@ -16974,21 +7394,13 @@ "id": "n185982197", "loc": [-85.625578, 41.958664] }, - "n185982198": { - "id": "n185982198", - "loc": [-85.624619, 41.960145] - }, - "n185982200": { - "id": "n185982200", - "loc": [-85.624494, 41.960338] - }, "n185984017": { "id": "n185984017", "loc": [-85.636163, 41.947382] }, "n185984020": { "id": "n185984020", - "loc": [-85.636188, 41.9498803] + "loc": [-85.636188, 41.94988] }, "n185984022": { "id": "n185984022", @@ -17002,169 +7414,121 @@ "id": "n185988036", "loc": [-85.631422, 41.948294] }, - "n185988867": { - "id": "n185988867", - "loc": [-85.63102, 41.948805] - }, - "n185988869": { - "id": "n185988869", - "loc": [-85.630773, 41.949209] - }, - "n185988871": { - "id": "n185988871", - "loc": [-85.63005, 41.95016] - }, - "n185988872": { - "id": "n185988872", - "loc": [-85.629423, 41.951016] - }, - "n185988873": { - "id": "n185988873", - "loc": [-85.629252, 41.951256] - }, - "n185988875": { - "id": "n185988875", - "loc": [-85.629126, 41.951489] - }, - "n185988877": { - "id": "n185988877", - "loc": [-85.628991, 41.951704] - }, - "n185988878": { - "id": "n185988878", - "loc": [-85.628689, 41.952112] - }, - "n185988879": { - "id": "n185988879", - "loc": [-85.628313, 41.952666] - }, - "n185988880": { - "id": "n185988880", - "loc": [-85.627687, 41.953529] - }, - "n185988882": { - "id": "n185988882", - "loc": [-85.627394, 41.953947] - }, - "n185988884": { - "id": "n185988884", - "loc": [-85.627287, 41.954128] - }, "n1819858502": { "id": "n1819858502", - "loc": [-85.6328435, 41.9455473] + "loc": [-85.632844, 41.945547] }, "n1819858510": { "id": "n1819858510", - "loc": [-85.6324841, 41.9453438] + "loc": [-85.632484, 41.945344] }, "n1819858515": { "id": "n1819858515", - "loc": [-85.6318511, 41.9446409] + "loc": [-85.631851, 41.944641] }, "n1819858520": { "id": "n1819858520", - "loc": [-85.6326558, 41.9454708] + "loc": [-85.632656, 41.945471] }, "n1819858522": { "id": "n1819858522", - "loc": [-85.6319048, 41.9447407] + "loc": [-85.631905, 41.944741] }, "n1819858524": { "id": "n1819858524", - "loc": [-85.6317718, 41.9443666] + "loc": [-85.631772, 41.944367] }, "n1819858530": { "id": "n1819858530", - "loc": [-85.632055, 41.9449128] + "loc": [-85.632055, 41.944913] }, "n2139795768": { "id": "n2139795768", - "loc": [-85.6243023, 41.9606102] + "loc": [-85.624302, 41.96061] }, "n2139832645": { "id": "n2139832645", - "loc": [-85.6324455, 41.9448607] + "loc": [-85.632446, 41.944861] }, "n2139832649": { "id": "n2139832649", - "loc": [-85.6328043, 41.9454773] + "loc": [-85.632804, 41.945477] }, "n2139832651": { "id": "n2139832651", - "loc": [-85.6322547, 41.9449621] + "loc": [-85.632255, 41.944962] }, "n2139832675": { "id": "n2139832675", - "loc": [-85.6327356, 41.944757] + "loc": [-85.632736, 41.944757] }, "n2139832677": { "id": "n2139832677", - "loc": [-85.6325433, 41.9448599] + "loc": [-85.632543, 41.94486] }, "n2139832680": { "id": "n2139832680", - "loc": [-85.6328885, 41.9455614] + "loc": [-85.632889, 41.945561] }, "n2139832682": { "id": "n2139832682", - "loc": [-85.6320913, 41.9449492] + "loc": [-85.632091, 41.944949] }, "n2139832684": { "id": "n2139832684", - "loc": [-85.6325366, 41.9447133] + "loc": [-85.632537, 41.944713] }, "n2139832688": { "id": "n2139832688", - "loc": [-85.6322786, 41.94485] + "loc": [-85.632279, 41.94485] }, "n2139832718": { "id": "n2139832718", - "loc": [-85.6327486, 41.9432475] + "loc": [-85.632749, 41.943247] }, "n2139832719": { "id": "n2139832719", - "loc": [-85.6327926, 41.9431773] + "loc": [-85.632793, 41.943177] }, "n2139832720": { "id": "n2139832720", - "loc": [-85.6329033, 41.943153] + "loc": [-85.632903, 41.943153] }, "n2139832727": { "id": "n2139832727", - "loc": [-85.6328975, 41.9430783] + "loc": [-85.632897, 41.943078] }, "n2139844839": { "id": "n2139844839", - "loc": [-85.6326261, 41.9432308] + "loc": [-85.632626, 41.943231] }, "n2189015992": { "id": "n2189015992", - "loc": [-85.6347706, 41.9593383] + "loc": [-85.634771, 41.959338] }, "n2189153179": { "id": "n2189153179", - "loc": [-85.6340476, 41.9472565] + "loc": [-85.634048, 41.947257] }, "n2189153182": { "id": "n2189153182", - "loc": [-85.6342638, 41.9472522] + "loc": [-85.634264, 41.947252] }, "n2189153241": { "id": "n2189153241", - "loc": [-85.6354184, 41.9473091] + "loc": [-85.635418, 41.947309] }, "n2189153258": { "id": "n2189153258", - "loc": [-85.6354611, 41.9472366] + "loc": [-85.635461, 41.947237] }, "n2189153277": { "id": "n2189153277", - "loc": [-85.6328948, 41.9462374] + "loc": [-85.632895, 41.946237] }, "n2199109755": { "id": "n2199109755", - "loc": [-85.6336729, 41.9472417] + "loc": [-85.633673, 41.947242] }, "w203970139": { "id": "w203970139", @@ -17183,7 +7547,6 @@ "w208643132": { "id": "w208643132", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153195", "n2189153196", "n2189153197", "n2189153198", "n2189153195"] @@ -17212,8 +7575,7 @@ "w208643138": { "id": "w208643138", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2189153231", @@ -17245,13 +7607,12 @@ "name": "Rocky River", "waterway": "river" }, - "nodes": ["n1819849189", "n1819858516", "n1819858519", "n1819858504", "n1819858525", "n1819858506", "n1819858513"] + "nodes": ["n1819849189", "n1819858519", "n1819858504", "n1819858525", "n1819858506", "n1819858513"] }, "w203970898": { "id": "w203970898", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139832645", "n2139832647", "n2139832649", "n2139832651", "n2139832645"] }, @@ -17272,7 +7633,6 @@ "w206805245": { "id": "w206805245", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544780", "n2168544781", "n2139824796", "n2139824803", "n2168544780"] @@ -17280,7 +7640,6 @@ "w206805252": { "id": "w206805252", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -17310,29 +7669,11 @@ "highway": "residential", "name": "Water Street" }, - "nodes": [ - "n185963451", - "n2189153277", - "n185988036", - "n185988867", - "n185988869", - "n185988871", - "n185988872", - "n185988873", - "n185988875", - "n185988877", - "n185988878", - "n185988879", - "n185988880", - "n185988882", - "n185988884", - "n185978790" - ] + "nodes": ["n185963451", "n2189153277", "n185988036", "n185978790"] }, "w208643133": { "id": "w208643133", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153199", "n2189153200", "n2189153201", "n2189153202", "n2189153199"] @@ -17349,13 +7690,12 @@ "tags": { "highway": "service" }, - "nodes": ["n185988237", "n2189153242", "n2189153247", "n2189153241"] + "nodes": ["n2139832709", "n2189153242", "n2189153247", "n2189153241"] }, "w203988297": { "id": "w203988297", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2140006423", @@ -17373,7 +7713,6 @@ "w206805250": { "id": "w206805250", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544827", "n2168544823", "n2168544825", "n2168544800", "n2168544829", "n2168544827"] @@ -17408,7 +7747,6 @@ "w206805247": { "id": "w206805247", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544785", "n2168544786", "n2168544783", "n2168544787", "n2168544788", "n2168544789", "n2168544785"] @@ -17441,7 +7779,6 @@ "w208643144": { "id": "w208643144", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153264", "n2189153265", "n2189153266", "n2189153267", "n2189153268", "n2189153269", "n2189153270", "n2189153264"] @@ -17449,15 +7786,13 @@ "w203970914": { "id": "w203970914", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139832722", "n2139832723", "n2139832724", "n2139832725", "n2139832726", "n2139832727", "n2139844839", "n2139832722"] }, "w208643143": { "id": "w208643143", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153258", "n2189153259", "n2189153260", "n2189153261", "n2189153262", "n2189153263", "n2189153258"] @@ -17465,8 +7800,7 @@ "w203049590": { "id": "w203049590", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2130304152", "n2130304153", "n2140006403", "n2130304154", "n2130304156", "n2130304155", "n2130304160", "n2130304152"] }, @@ -17496,7 +7830,6 @@ "w208643134": { "id": "w208643134", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -17522,7 +7855,7 @@ "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185988239", "n185984009", "n185988241", "n1475284019"] + "nodes": ["n185988239", "n185988241", "n1475284019"] }, "w203970115": { "id": "w203970115", @@ -17534,7 +7867,6 @@ "w208643130": { "id": "w208643130", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -17552,7 +7884,6 @@ "w206805246": { "id": "w206805246", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544782", "n2168544780", "n2168544781", "n2168544783", "n2168544787", "n2168544784", "n2168544782"] @@ -17620,7 +7951,6 @@ "w208643136": { "id": "w208643136", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -17670,7 +8000,7 @@ "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185978388", "n2139832709", "n185988237", "n185988239"] + "nodes": ["n185978388", "n2139832709", "n185988239"] }, "w203988292": { "id": "w203988292", @@ -17700,7 +8030,7 @@ "highway": "residential", "name": "Railroad Drive" }, - "nodes": ["n185964980", "n2139832699", "n2139832700", "n2130304158", "n185988969", "n185988971", "n185988972", "n1475284011"] + "nodes": ["n185964980", "n2139832700", "n2130304158", "n185988969", "n185988971", "n185988972", "n1475284011"] }, "w203970136": { "id": "w203970136", @@ -17729,8 +8059,7 @@ "w208643137": { "id": "w208643137", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2189153227", @@ -17747,7 +8076,6 @@ "w208643129": { "id": "w208643129", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153179", "n2189153180", "n2189153181", "n2189153182", "n2189153179"] @@ -17755,8 +8083,7 @@ "w203970909": { "id": "w203970909", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139832703", "n2139832704", "n2139832706", "n2139832708", "n2139832703"] }, @@ -17773,7 +8100,24 @@ "tags": { "highway": "service" }, - "nodes": ["n2140006431", "n2140006433", "n2140006435", "n2140006436", "n2140006437", "n2140006438", "n2140006439", "n2140006440"] + "nodes": [ + "n2140006431", + "n30", + "n2140006433", + "n35", + "n29", + "n2140006435", + "n34", + "n28", + "n2140006436", + "n2140006437", + "n32", + "n2140006438", + "n31", + "n33", + "n2140006439", + "n2140006440" + ] }, "w203970106": { "id": "w203970106", @@ -17792,7 +8136,6 @@ "w208643131": { "id": "w208643131", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189153191", "n2189153192", "n2189153193", "n2189153194", "n2189153191"] @@ -17800,7 +8143,6 @@ "w206805249": { "id": "w206805249", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -17854,8 +8196,6 @@ "n185966948", "n185982196", "n185982197", - "n185982198", - "n185982200", "n2139795768", "n185972155" ] @@ -17864,7 +8204,6 @@ "id": "w203988294", "tags": { "amenity": "shelter", - "area": "yes", "building": "yes", "shelter_type": "picnic_shelter" }, @@ -17873,8 +8212,7 @@ "w203970912": { "id": "w203970912", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139832711", "n2139832712", "n2139832713", "n2139832714", "n2139832711"] }, @@ -17903,7 +8241,6 @@ "w206805253": { "id": "w206805253", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -18018,7 +8355,6 @@ "w206805248": { "id": "w206805248", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -18061,7 +8397,6 @@ "w206805251": { "id": "w206805251", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -18079,15 +8414,13 @@ "w203970906": { "id": "w203970906", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2139832693", "n2139832694", "n2139832696", "n2139832697", "n2139832698", "n2139832693"] }, "w203049598": { "id": "w203049598", "tags": { - "area": "yes", "leisure": "pitch", "sport": "tennis" }, @@ -18098,7 +8431,7 @@ "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n2139832714", "n2139832713", "n2139832710", "n185988971"] + "nodes": ["n2139832709", "n2139832714", "n2139832713", "n2139832710"] }, "w203970105": { "id": "w203970105", @@ -18117,8 +8450,7 @@ "w203970900": { "id": "w203970900", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2139832653", @@ -18136,7 +8468,6 @@ "w209717048": { "id": "w209717048", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109755", "n2199109756", "n2199109757", "n2199109758", "n2199109759", "n2199109760", "n2199109755"] @@ -18159,7 +8490,7 @@ }, "n354002527": { "id": "n354002527", - "loc": [-85.6236039, 41.9458813], + "loc": [-85.623604, 41.945881], "tags": { "amenity": "school", "name": "Barrows School" @@ -18191,7 +8522,7 @@ }, "n185983135": { "id": "n185983135", - "loc": [-85.624893, 41.945616] + "loc": [-85.624893, 41.945618] }, "n185983137": { "id": "n185983137", @@ -18203,95 +8534,95 @@ }, "n185963398": { "id": "n185963398", - "loc": [-85.6273993, 41.9446899] + "loc": [-85.627399, 41.94469] }, "n185983238": { "id": "n185983238", - "loc": [-85.6227157, 41.9456321] + "loc": [-85.622716, 41.945622] }, "n185980374": { "id": "n185980374", - "loc": [-85.6248856, 41.9447242] + "loc": [-85.624886, 41.944724] }, "n185980373": { "id": "n185980373", - "loc": [-85.6226744, 41.9447371] + "loc": [-85.622674, 41.944737] }, "n2196831342": { "id": "n2196831342", - "loc": [-85.6250924, 41.945063] + "loc": [-85.625092, 41.945063] }, "n2196831343": { "id": "n2196831343", - "loc": [-85.6252335, 41.9450636] + "loc": [-85.625233, 41.945064] }, "n2196831344": { "id": "n2196831344", - "loc": [-85.6252286, 41.9448707] + "loc": [-85.625229, 41.944871] }, "n2196831345": { "id": "n2196831345", - "loc": [-85.6250661, 41.9448707] + "loc": [-85.625066, 41.944871] }, "n2196831346": { "id": "n2196831346", - "loc": [-85.6250243, 41.9449012] + "loc": [-85.625024, 41.944901] }, "n2196831347": { "id": "n2196831347", - "loc": [-85.6250251, 41.9449244] + "loc": [-85.625025, 41.944924] }, "n2196831348": { "id": "n2196831348", - "loc": [-85.6250867, 41.9449257] + "loc": [-85.625087, 41.944926] }, "n2196831349": { "id": "n2196831349", - "loc": [-85.625349, 41.9445058] + "loc": [-85.625349, 41.944506] }, "n2196831350": { "id": "n2196831350", - "loc": [-85.6253471, 41.9443882] + "loc": [-85.625347, 41.944388] }, "n2196831351": { "id": "n2196831351", - "loc": [-85.6251516, 41.94439] + "loc": [-85.625152, 41.94439] }, "n2196831352": { "id": "n2196831352", - "loc": [-85.6251522, 41.9444308] + "loc": [-85.625152, 41.944431] }, "n2196831353": { "id": "n2196831353", - "loc": [-85.6251344, 41.9444309] + "loc": [-85.625134, 41.944431] }, "n2196831354": { "id": "n2196831354", - "loc": [-85.6251356, 41.9445077] + "loc": [-85.625136, 41.944508] }, "n2196831355": { "id": "n2196831355", - "loc": [-85.6232357, 41.9463406] + "loc": [-85.623236, 41.946341] }, "n2196831356": { "id": "n2196831356", - "loc": [-85.6232409, 41.9460668] + "loc": [-85.623241, 41.946067] }, "n2196831357": { "id": "n2196831357", - "loc": [-85.6232072, 41.9460665] + "loc": [-85.623207, 41.946067] }, "n2196831358": { "id": "n2196831358", - "loc": [-85.6232117, 41.9458272] + "loc": [-85.623212, 41.945827] }, "n2196831359": { "id": "n2196831359", - "loc": [-85.6229808, 41.9458248] + "loc": [-85.622981, 41.945825] }, "n2196831360": { "id": "n2196831360", - "loc": [-85.6229763, 41.9460627] + "loc": [-85.622976, 41.946063] }, "n2196831361": { "id": "n2196831361", @@ -18299,31 +8630,31 @@ }, "n2196831362": { "id": "n2196831362", - "loc": [-85.6230023, 41.9462557] + "loc": [-85.623002, 41.946256] }, "n2196831363": { "id": "n2196831363", - "loc": [-85.6230755, 41.9462565] + "loc": [-85.623075, 41.946256] }, "n2196831364": { "id": "n2196831364", - "loc": [-85.6230739, 41.9463389] + "loc": [-85.623074, 41.946339] }, "n185947349": { "id": "n185947349", - "loc": [-85.618327, 41.945607] + "loc": [-85.618327, 41.945631] }, "n185947359": { "id": "n185947359", - "loc": [-85.615453, 41.945597] + "loc": [-85.615453, 41.945637] }, "n185947378": { "id": "n185947378", - "loc": [-85.617231, 41.945603] + "loc": [-85.617231, 41.945633] }, "n185947474": { "id": "n185947474", - "loc": [-85.616136, 41.945602] + "loc": [-85.616136, 41.945635] }, "n185948972": { "id": "n185948972", @@ -18335,11 +8666,11 @@ }, "n185960682": { "id": "n185960682", - "loc": [-85.622759, 41.951845] + "loc": [-85.622731, 41.951834] }, "n185961369": { "id": "n185961369", - "loc": [-85.622758, 41.947444] + "loc": [-85.622758, 41.947422] }, "n185961371": { "id": "n185961371", @@ -18347,7 +8678,7 @@ }, "n185963392": { "id": "n185963392", - "loc": [-85.6270462, 41.9409953] + "loc": [-85.627046, 41.940995] }, "n185963393": { "id": "n185963393", @@ -18367,7 +8698,7 @@ }, "n185965108": { "id": "n185965108", - "loc": [-85.622769, 41.949224] + "loc": [-85.622769, 41.949238] }, "n185965110": { "id": "n185965110", @@ -18375,7 +8706,7 @@ }, "n185966295": { "id": "n185966295", - "loc": [-85.6299942, 41.9446689] + "loc": [-85.629994, 41.944669] }, "n185966342": { "id": "n185966342", @@ -18383,31 +8714,23 @@ }, "n185970222": { "id": "n185970222", - "loc": [-85.622761, 41.948357] + "loc": [-85.622761, 41.948333] }, "n185970224": { "id": "n185970224", - "loc": [-85.624924, 41.9483338] + "loc": [-85.624924, 41.948334] }, "n185971477": { "id": "n185971477", "loc": [-85.620051, 41.94383] }, - "n185971478": { - "id": "n185971478", - "loc": [-85.621219, 41.943801] - }, - "n185971481": { - "id": "n185971481", - "loc": [-85.621812, 41.943807] - }, "n185973866": { "id": "n185973866", "loc": [-85.627629, 41.946498] }, "n185974699": { "id": "n185974699", - "loc": [-85.6227688, 41.950119] + "loc": [-85.622769, 41.950119] }, "n185978800": { "id": "n185978800", @@ -18419,7 +8742,7 @@ }, "n185980378": { "id": "n185980378", - "loc": [-85.6286375, 41.9446764] + "loc": [-85.628637, 41.944676] }, "n185980380": { "id": "n185980380", @@ -18435,19 +8758,19 @@ }, "n185980386": { "id": "n185980386", - "loc": [-85.6312369, 41.9444548] + "loc": [-85.631237, 41.944455] }, "n185983133": { "id": "n185983133", - "loc": [-85.6248672, 41.9415903] + "loc": [-85.624867, 41.94159] }, "n185983139": { "id": "n185983139", - "loc": [-85.624951, 41.950239] + "loc": [-85.624958, 41.950322] }, "n185983140": { "id": "n185983140", - "loc": [-85.624934, 41.950681] + "loc": [-85.624948, 41.950484] }, "n185983141": { "id": "n185983141", @@ -18455,15 +8778,15 @@ }, "n185983143": { "id": "n185983143", - "loc": [-85.6246225, 41.951591] + "loc": [-85.624623, 41.951591] }, "n185983144": { "id": "n185983144", - "loc": [-85.623908, 41.9539165] + "loc": [-85.623908, 41.953916] }, "n185983145": { "id": "n185983145", - "loc": [-85.6238903, 41.9540956] + "loc": [-85.62389, 41.954096] }, "n185983146": { "id": "n185983146", @@ -18479,19 +8802,19 @@ }, "n185986812": { "id": "n185986812", - "loc": [-85.6227785, 41.9510005] + "loc": [-85.622778, 41.95099] }, "n185988028": { "id": "n185988028", - "loc": [-85.6281401, 41.9469632] + "loc": [-85.62814, 41.946963] }, "n185988030": { "id": "n185988030", - "loc": [-85.6282451, 41.9470314] + "loc": [-85.628245, 41.947031] }, "n185988032": { "id": "n185988032", - "loc": [-85.6283312, 41.9470656] + "loc": [-85.628331, 41.947066] }, "w17964989": { "id": "w17964989", @@ -18537,12 +8860,11 @@ "highway": "residential", "name": "2nd Avenue" }, - "nodes": ["n185971477", "n185971478", "n185971481", "n185971482"] + "nodes": ["n185971477", "n185971482"] }, "w209470306": { "id": "w209470306", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2196831349", "n2196831350", "n2196831351", "n2196831352", "n2196831353", "n2196831354", "n2196831349"] @@ -18558,7 +8880,6 @@ "w209470307": { "id": "w209470307", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -18590,6 +8911,8 @@ "n185965108", "n185974699", "n185986812", + "n5", + "n4", "n185960682" ] }, @@ -18604,7 +8927,6 @@ "w209470305": { "id": "w209470305", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2196831342", "n2196831343", "n2196831344", "n2196831345", "n2196831346", "n2196831347", "n2196831348", "n2196831342"] @@ -18628,6 +8950,7 @@ "n185965110", "n185983139", "n185983140", + "n6", "n185983141", "n185983143", "n185983144", @@ -18656,7 +8979,7 @@ }, "n354030330": { "id": "n354030330", - "loc": [-85.6297222, 41.9444444], + "loc": [-85.629722, 41.944444], "tags": { "leisure": "park", "name": "Scouter Park" @@ -18676,23 +8999,23 @@ }, "n185980391": { "id": "n185980391", - "loc": [-85.6322992, 41.9442766] + "loc": [-85.632299, 41.944277] }, "n185980393": { "id": "n185980393", - "loc": [-85.6324925, 41.9442136] + "loc": [-85.632492, 41.944214] }, "n185980389": { "id": "n185980389", - "loc": [-85.6320272, 41.9443281] + "loc": [-85.632027, 41.944328] }, "n185980388": { "id": "n185980388", - "loc": [-85.6315778, 41.9443959] + "loc": [-85.631578, 41.944396] }, "n354031320": { "id": "n354031320", - "loc": [-85.6280556, 41.9447222], + "loc": [-85.628056, 41.944722], "tags": { "amenity": "place_of_worship", "name": "Riverside Church", @@ -18701,215 +9024,215 @@ }, "n185987309": { "id": "n185987309", - "loc": [-85.6286497, 41.9453531] + "loc": [-85.62865, 41.945353] }, "n185987311": { "id": "n185987311", - "loc": [-85.6285942, 41.9454805] + "loc": [-85.628594, 41.945481] }, "n185988034": { "id": "n185988034", - "loc": [-85.6285815, 41.9471692] + "loc": [-85.628581, 41.947169] }, "n185988896": { "id": "n185988896", - "loc": [-85.6318433, 41.9437929] + "loc": [-85.631843, 41.943793] }, "n185977764": { "id": "n185977764", - "loc": [-85.6322988, 41.943472] + "loc": [-85.632299, 41.943472] }, "n1819848852": { "id": "n1819848852", - "loc": [-85.6315188, 41.9448808] + "loc": [-85.631519, 41.944881] }, "n1819848912": { "id": "n1819848912", - "loc": [-85.6284289, 41.9472189] + "loc": [-85.628429, 41.947219] }, "n1819848925": { "id": "n1819848925", - "loc": [-85.6314501, 41.9451617] + "loc": [-85.63145, 41.945162] }, "n1819848949": { "id": "n1819848949", - "loc": [-85.6309394, 41.9455192] + "loc": [-85.630939, 41.945519] }, "n1819848951": { "id": "n1819848951", - "loc": [-85.6290297, 41.9457187] + "loc": [-85.62903, 41.945719] }, "n1819848963": { "id": "n1819848963", - "loc": [-85.630521, 41.9455591] + "loc": [-85.630521, 41.945559] }, "n1819848981": { "id": "n1819848981", - "loc": [-85.6292936, 41.9455846] + "loc": [-85.629294, 41.945585] }, "n1819848989": { "id": "n1819848989", - "loc": [-85.6298451, 41.9455431] + "loc": [-85.629845, 41.945543] }, "n1819848998": { "id": "n1819848998", - "loc": [-85.6314973, 41.9446254] + "loc": [-85.631497, 41.944625] }, "n1819849018": { "id": "n1819849018", - "loc": [-85.6302807, 41.9455527] + "loc": [-85.630281, 41.945553] }, "n1819849043": { "id": "n1819849043", - "loc": [-85.6285533, 41.9469731] + "loc": [-85.628553, 41.946973] }, "n1819849087": { "id": "n1819849087", - "loc": [-85.6314501, 41.9453532] + "loc": [-85.631383, 41.945338] }, "n1819849090": { "id": "n1819849090", - "loc": [-85.628843, 41.9461033] + "loc": [-85.628843, 41.946103] }, "n1819849109": { "id": "n1819849109", - "loc": [-85.6311926, 41.9454729] + "loc": [-85.631193, 41.945473] }, "n1819849116": { "id": "n1819849116", - "loc": [-85.6288967, 41.9459437] + "loc": [-85.628897, 41.945944] }, "n1819849177": { "id": "n1819849177", - "loc": [-85.6287894, 41.9464544] + "loc": [-85.628789, 41.946454] }, "n1819858529": { "id": "n1819858529", - "loc": [-85.6325485, 41.9445625] + "loc": [-85.632548, 41.944563] }, "n2189112797": { "id": "n2189112797", - "loc": [-85.6275271, 41.944555] + "loc": [-85.627527, 41.944555] }, "n2189112798": { "id": "n2189112798", - "loc": [-85.6275196, 41.9437258] + "loc": [-85.62752, 41.943726] }, "n2189112799": { "id": "n2189112799", - "loc": [-85.6278937, 41.943723] + "loc": [-85.627894, 41.943723] }, "n2189112800": { "id": "n2189112800", - "loc": [-85.6278969, 41.9439191] + "loc": [-85.627897, 41.943919] }, "n2189112801": { "id": "n2189112801", - "loc": [-85.6279907, 41.9439345] + "loc": [-85.627991, 41.943934] }, "n2189112802": { "id": "n2189112802", - "loc": [-85.6280817, 41.9439663] + "loc": [-85.628082, 41.943966] }, "n2189112803": { "id": "n2189112803", - "loc": [-85.6281768, 41.9440145] + "loc": [-85.628177, 41.944015] }, "n2189112804": { "id": "n2189112804", - "loc": [-85.6281933, 41.9440483] + "loc": [-85.628193, 41.944048] }, "n2189112805": { "id": "n2189112805", - "loc": [-85.6281671, 41.9440535] + "loc": [-85.628167, 41.944054] }, "n2189112806": { "id": "n2189112806", - "loc": [-85.6281933, 41.9440935] + "loc": [-85.628193, 41.944094] }, "n2189112807": { "id": "n2189112807", - "loc": [-85.6282126, 41.9441437] + "loc": [-85.628213, 41.944144] }, "n2189112808": { "id": "n2189112808", - "loc": [-85.628214, 41.9441991] + "loc": [-85.628214, 41.944199] }, "n2189112809": { "id": "n2189112809", - "loc": [-85.6283298, 41.944196] + "loc": [-85.62833, 41.944196] }, "n2189112810": { "id": "n2189112810", - "loc": [-85.6283285, 41.9442616] + "loc": [-85.628328, 41.944262] }, "n2189112811": { "id": "n2189112811", - "loc": [-85.6281727, 41.9442616] + "loc": [-85.628173, 41.944262] }, "n2189112812": { "id": "n2189112812", - "loc": [-85.6281713, 41.9442934] + "loc": [-85.628171, 41.944293] }, "n2189112813": { "id": "n2189112813", - "loc": [-85.6280386, 41.9442963] + "loc": [-85.628039, 41.944296] }, "n2189112814": { "id": "n2189112814", - "loc": [-85.6280405, 41.9443292] + "loc": [-85.62804, 41.944329] }, "n2189112815": { "id": "n2189112815", - "loc": [-85.627829, 41.9443349] + "loc": [-85.627829, 41.944335] }, "n2189112816": { "id": "n2189112816", - "loc": [-85.6278347, 41.9445495] + "loc": [-85.627835, 41.94455] }, "n2189153271": { "id": "n2189153271", - "loc": [-85.6321053, 41.9460342] + "loc": [-85.632105, 41.946034] }, "n2189153272": { "id": "n2189153272", - "loc": [-85.632278, 41.9457841] + "loc": [-85.632278, 41.945784] }, "n2189153273": { "id": "n2189153273", - "loc": [-85.632823, 41.9459936] + "loc": [-85.632823, 41.945994] }, "n2189153274": { "id": "n2189153274", - "loc": [-85.6326845, 41.9461963] + "loc": [-85.632684, 41.946196] }, "n2189153275": { "id": "n2189153275", - "loc": [-85.6325664, 41.9461507] + "loc": [-85.632566, 41.946151] }, "n2189153276": { "id": "n2189153276", - "loc": [-85.6325323, 41.946198] + "loc": [-85.632532, 41.946198] }, "n2189153278": { "id": "n2189153278", - "loc": [-85.6321916, 41.9459733] + "loc": [-85.632192, 41.945973] }, "n2189153279": { "id": "n2189153279", - "loc": [-85.6322598, 41.9458703] + "loc": [-85.63226, 41.94587] }, "n2189153280": { "id": "n2189153280", - "loc": [-85.6327208, 41.9460358] + "loc": [-85.632721, 41.946036] }, "n2189153281": { "id": "n2189153281", - "loc": [-85.6326413, 41.9461422] + "loc": [-85.632641, 41.946142] }, "n185959079": { "id": "n185959079", - "loc": [-85.6293702, 41.9474668] + "loc": [-85.62937, 41.947467] }, "n185966301": { "id": "n185966301", @@ -18957,7 +9280,7 @@ }, "n185966340": { "id": "n185966340", - "loc": [-85.6269038, 41.9410983] + "loc": [-85.626904, 41.941098] }, "n185973867": { "id": "n185973867", @@ -18965,59 +9288,59 @@ }, "n185977762": { "id": "n185977762", - "loc": [-85.6318441, 41.9429453] + "loc": [-85.631844, 41.942945] }, "n1819848853": { "id": "n1819848853", - "loc": [-85.625854, 41.9492218] + "loc": [-85.625854, 41.949222] }, "n1819848861": { "id": "n1819848861", - "loc": [-85.6251459, 41.9552376] + "loc": [-85.625146, 41.955238] }, "n1819848874": { "id": "n1819848874", - "loc": [-85.6267445, 41.9482961] + "loc": [-85.626745, 41.948296] }, "n1819848882": { "id": "n1819848882", - "loc": [-85.6257209, 41.9552396] + "loc": [-85.625721, 41.95524] }, "n1819848883": { "id": "n1819848883", - "loc": [-85.624706, 41.9523173] + "loc": [-85.624706, 41.952317] }, "n1819848907": { "id": "n1819848907", - "loc": [-85.62609, 41.9561471] + "loc": [-85.62609, 41.956147] }, "n1819848908": { "id": "n1819848908", - "loc": [-85.6244013, 41.9549284] + "loc": [-85.624401, 41.954928] }, "n1819848911": { "id": "n1819848911", - "loc": [-85.6265578, 41.9553672] + "loc": [-85.626558, 41.955367] }, "n1819848923": { "id": "n1819848923", - "loc": [-85.6246802, 41.9550959] + "loc": [-85.62468, 41.955096] }, "n1819848936": { "id": "n1819848936", - "loc": [-85.6241588, 41.9539291] + "loc": [-85.624159, 41.953929] }, "n1819848940": { "id": "n1819848940", - "loc": [-85.62506, 41.9511129] + "loc": [-85.62506, 41.951113] }, "n1819848944": { "id": "n1819848944", - "loc": [-85.624942, 41.9515912] + "loc": [-85.624942, 41.951591] }, "n1819848950": { "id": "n1819848950", - "loc": [-85.6273989, 41.9475461] + "loc": [-85.627399, 41.947546] }, "n1819848957": { "id": "n1819848957", @@ -19025,73 +9348,72 @@ }, "n1819849009": { "id": "n1819849009", - "loc": [-85.6259248, 41.94896] + "loc": [-85.625925, 41.94896] }, "n1819849037": { "id": "n1819849037", - "loc": [-85.6257252, 41.9502112] + "loc": [-85.625725, 41.950211] }, "n1819849061": { "id": "n1819849061", - "loc": [-85.6270084, 41.9479626] + "loc": [-85.627008, 41.947963] }, "n1819849073": { "id": "n1819849073", - "loc": [-85.6243734, 41.9534583] + "loc": [-85.624373, 41.953458] }, "n1819849091": { "id": "n1819849091", - "loc": [-85.6241373, 41.9543918] + "loc": [-85.624137, 41.954392] }, "n1819849130": { "id": "n1819849130", - "loc": [-85.6282572, 41.9473067] + "loc": [-85.628257, 41.947307] }, "n1819849143": { "id": "n1819849143", - "loc": [-85.625281, 41.9506596] + "loc": [-85.625281, 41.95066] }, "n1819849153": { "id": "n1819849153", - "loc": [-85.6258647, 41.9498043] + "loc": [-85.625865, 41.949804] }, "n1819849168": { "id": "n1819849168", - "loc": [-85.6265084, 41.9559317] + "loc": [-85.626508, 41.955932] }, "n1819849173": { "id": "n1819849173", - "loc": [-85.6263325, 41.9552156] + "loc": [-85.626333, 41.955216] }, "n1819849175": { "id": "n1819849175", - "loc": [-85.6266372, 41.9556764] + "loc": [-85.626637, 41.955676] }, "n1819849178": { "id": "n1819849178", - "loc": [-85.6242232, 41.9545993] + "loc": [-85.624223, 41.954599] }, "n1819849181": { "id": "n1819849181", - "loc": [-85.6262187, 41.9486712] + "loc": [-85.626219, 41.948671] }, "n1819849188": { "id": "n1819849188", - "loc": [-85.6245558, 41.9530434] + "loc": [-85.624556, 41.953043] }, "n1819849190": { "id": "n1819849190", - "loc": [-85.6255982, 41.9563017] + "loc": [-85.625598, 41.956302] }, "n2168544738": { "id": "n2168544738", - "loc": [-85.6245707, 41.9529711] + "loc": [-85.624571, 41.952971] }, "w208643145": { "id": "w208643145", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2189153271", "n2189153272", "n2189153273", "n2189153274", "n2189153275", "n2189153276", "n2189153271"] }, @@ -19117,7 +9439,6 @@ "w208639462": { "id": "w208639462", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -19429,27 +9750,15 @@ }, "n185980093": { "id": "n185980093", - "loc": [-85.6271414, 41.9407274] - }, - "n185964330": { - "id": "n185964330", - "loc": [-85.6235688, 41.9399111] - }, - "n185964328": { - "id": "n185964328", - "loc": [-85.6235609, 41.9391301] + "loc": [-85.627141, 41.940727] }, "n185958034": { "id": "n185958034", - "loc": [-85.627102, 41.939125] + "loc": [-85.627102, 41.939144] }, "n185964331": { "id": "n185964331", - "loc": [-85.623571, 41.940124] - }, - "n185964329": { - "id": "n185964329", - "loc": [-85.623562, 41.9392411] + "loc": [-85.623571, 41.940136] }, "n185972756": { "id": "n185972756", @@ -19489,11 +9798,7 @@ }, "n185988943": { "id": "n185988943", - "loc": [-85.622643, 41.940128] - }, - "n185988961": { - "id": "n185988961", - "loc": [-85.627263, 41.940082] + "loc": [-85.622643, 41.940139] }, "n185990192": { "id": "n185990192", @@ -19501,7 +9806,7 @@ }, "n185990194": { "id": "n185990194", - "loc": [-85.621976, 41.939203] + "loc": [-85.621823, 41.939209] }, "n185991378": { "id": "n185991378", @@ -19509,120 +9814,104 @@ }, "n1475283999": { "id": "n1475283999", - "loc": [-85.6271165, 41.9408429] + "loc": [-85.627116, 41.940843] }, "n185980090": { "id": "n185980090", - "loc": [-85.6271315, 41.9402001] + "loc": [-85.627132, 41.9402] }, "n185958036": { "id": "n185958036", - "loc": [-85.6248366, 41.9391615] + "loc": [-85.624837, 41.939161] }, "n1819800188": { "id": "n1819800188", - "loc": [-85.6246947, 41.9401644] + "loc": [-85.624695, 41.940164] }, "n1819800199": { "id": "n1819800199", - "loc": [-85.6233686, 41.9430896] + "loc": [-85.623369, 41.94309] }, "n1819800204": { "id": "n1819800204", - "loc": [-85.6223236, 41.9408587] + "loc": [-85.622324, 41.940859] }, "n1819800213": { "id": "n1819800213", - "loc": [-85.6247526, 41.9414138] + "loc": [-85.624753, 41.941414] }, "n1819800216": { "id": "n1819800216", - "loc": [-85.6230961, 41.9407151] + "loc": [-85.623096, 41.940715] }, "n1819800218": { "id": "n1819800218", - "loc": [-85.621991, 41.9429336] + "loc": [-85.621991, 41.942934] }, "n1819800221": { "id": "n1819800221", - "loc": [-85.6246088, 41.9424708] + "loc": [-85.624609, 41.942471] }, "n1819800227": { "id": "n1819800227", - "loc": [-85.6241368, 41.9403081] + "loc": [-85.624137, 41.940308] }, "n1819800230": { "id": "n1819800230", - "loc": [-85.6226776, 41.9431012] + "loc": [-85.622678, 41.943101] }, "n1819800231": { "id": "n1819800231", - "loc": [-85.6243728, 41.9401644] + "loc": [-85.624373, 41.940164] }, "n1819800232": { "id": "n1819800232", - "loc": [-85.6249629, 41.9408907] + "loc": [-85.624963, 41.940891] }, "n1819800248": { "id": "n1819800248", - "loc": [-85.6238685, 41.9405555] + "loc": [-85.623869, 41.940556] }, "n1819800266": { "id": "n1819800266", - "loc": [-85.6246882, 41.9418367] + "loc": [-85.624688, 41.941837] }, "n1819800271": { "id": "n1819800271", - "loc": [-85.62492, 41.9413695] + "loc": [-85.62492, 41.94137] }, "n1819800294": { "id": "n1819800294", - "loc": [-85.6243556, 41.9427465] + "loc": [-85.624356, 41.942746] }, "n1819800304": { "id": "n1819800304", - "loc": [-85.6251453, 41.94117] + "loc": [-85.625145, 41.94117] }, "n1819800325": { "id": "n1819800325", - "loc": [-85.6248234, 41.9405714] + "loc": [-85.624823, 41.940571] }, "n1819800362": { "id": "n1819800362", - "loc": [-85.6239544, 41.9429416] + "loc": [-85.623954, 41.942942] }, "n1819800368": { "id": "n1819800368", - "loc": [-85.6243406, 41.9402283] + "loc": [-85.624341, 41.940228] }, "n1819800375": { "id": "n1819800375", - "loc": [-85.6226562, 41.940755] + "loc": [-85.622656, 41.940755] }, "n1819800377": { "id": "n1819800377", - "loc": [-85.6232033, 41.9406512] + "loc": [-85.623203, 41.940651] }, "n185945133": { "id": "n185945133", "loc": [-85.623501, 41.933232] }, - "n185945135": { - "id": "n185945135", - "loc": [-85.624776, 41.933205] - }, - "n185945395": { - "id": "n185945395", - "loc": [-85.624741, 41.93019] - }, - "n185952239": { - "id": "n185952239", - "loc": [-85.615166, 41.9382] - }, - "n185954490": { - "id": "n185954490", - "loc": [-85.624721, 41.929278] - }, "n185957831": { "id": "n185957831", "loc": [-85.625041, 41.938662] @@ -19633,51 +9922,23 @@ }, "n185958032": { "id": "n185958032", - "loc": [-85.628429, 41.939143] + "loc": [-85.628429, 41.939135] }, "n185958498": { "id": "n185958498", "loc": [-85.621605, 41.940143] }, - "n185961186": { - "id": "n185961186", - "loc": [-85.624792, 41.935214] - }, "n185963099": { "id": "n185963099", - "loc": [-85.6204461, 41.9401485] + "loc": [-85.620446, 41.940147] }, "n185963698": { "id": "n185963698", - "loc": [-85.6297342, 41.9400783] - }, - "n185964320": { - "id": "n185964320", - "loc": [-85.623511, 41.934216] - }, - "n185964322": { - "id": "n185964322", - "loc": [-85.6235312, 41.9362084] - }, - "n185964324": { - "id": "n185964324", - "loc": [-85.6235488, 41.9371726] - }, - "n185964326": { - "id": "n185964326", - "loc": [-85.6235512, 41.9381718] + "loc": [-85.629734, 41.940078] }, "n185967077": { "id": "n185967077", - "loc": [-85.617359, 41.940161] - }, - "n185967634": { - "id": "n185967634", - "loc": [-85.6248039, 41.9362012] - }, - "n185970833": { - "id": "n185970833", - "loc": [-85.6248019, 41.9381684] + "loc": [-85.617359, 41.940157] }, "n185972752": { "id": "n185972752", @@ -19691,29 +9952,9 @@ "id": "n185973251", "loc": [-85.602727, 41.936012] }, - "n185974509": { - "id": "n185974509", - "loc": [-85.62478, 41.93217] - }, "n185975315": { "id": "n185975315", - "loc": [-85.624703, 41.925597] - }, - "n185975316": { - "id": "n185975316", - "loc": [-85.624716, 41.927359] - }, - "n185975317": { - "id": "n185975317", - "loc": [-85.62475, 41.93119] - }, - "n185975318": { - "id": "n185975318", - "loc": [-85.624782, 41.934218] - }, - "n185975320": { - "id": "n185975320", - "loc": [-85.6247949, 41.9371708] + "loc": [-85.624671, 41.925708] }, "n185977754": { "id": "n185977754", @@ -19749,7 +9990,7 @@ }, "n185981173": { "id": "n185981173", - "loc": [-85.61433, 41.940167] + "loc": [-85.606345, 41.940211] }, "n185987021": { "id": "n185987021", @@ -19757,546 +9998,246 @@ }, "n185988963": { "id": "n185988963", - "loc": [-85.628439, 41.940086] + "loc": [-85.628439, 41.940082] }, "n185990195": { "id": "n185990195", - "loc": [-85.621225, 41.939143] + "loc": [-85.621187, 41.939149] }, "n185990196": { "id": "n185990196", - "loc": [-85.620576, 41.939033] - }, - "n185990198": { - "id": "n185990198", - "loc": [-85.619081, 41.938804] - }, - "n185990200": { - "id": "n185990200", - "loc": [-85.617593, 41.938552] - }, - "n185990202": { - "id": "n185990202", - "loc": [-85.617372, 41.938535] - }, - "n185990204": { - "id": "n185990204", - "loc": [-85.616087, 41.93832] - }, - "n185990206": { - "id": "n185990206", - "loc": [-85.615754, 41.938289] - }, - "n185990209": { - "id": "n185990209", - "loc": [-85.615438, 41.938251] - }, - "n185990211": { - "id": "n185990211", - "loc": [-85.613469, 41.937867] - }, - "n185990212": { - "id": "n185990212", - "loc": [-85.610172, 41.937298] - }, - "n185990213": { - "id": "n185990213", - "loc": [-85.605537, 41.936497] - }, - "n185990214": { - "id": "n185990214", - "loc": [-85.604014, 41.936234] - }, - "n1819800180": { - "id": "n1819800180", - "loc": [-85.588775, 41.9455032] - }, - "n1819800181": { - "id": "n1819800181", - "loc": [-85.6074212, 41.9408827] + "loc": [-85.620553, 41.939056] }, "n1819800182": { "id": "n1819800182", - "loc": [-85.6131397, 41.9427022] + "loc": [-85.61314, 41.942702] }, "n1819800183": { "id": "n1819800183", - "loc": [-85.6171523, 41.9416807] - }, - "n1819800184": { - "id": "n1819800184", - "loc": [-85.602465, 41.9397415] + "loc": [-85.617152, 41.941681] }, "n1819800185": { "id": "n1819800185", - "loc": [-85.6109296, 41.9410583] + "loc": [-85.61093, 41.941058] }, "n1819800186": { "id": "n1819800186", - "loc": [-85.6165729, 41.9418004] - }, - "n1819800189": { - "id": "n1819800189", - "loc": [-85.5866293, 41.9458224] - }, - "n1819800191": { - "id": "n1819800191", - "loc": [-85.5853311, 41.9466603] + "loc": [-85.616573, 41.9418] }, "n1819800201": { "id": "n1819800201", - "loc": [-85.6101142, 41.9433406] - }, - "n1819800202": { - "id": "n1819800202", - "loc": [-85.600963, 41.9428618] + "loc": [-85.610114, 41.943341] }, "n1819800206": { "id": "n1819800206", - "loc": [-85.6154357, 41.9427501] - }, - "n1819800207": { - "id": "n1819800207", - "loc": [-85.6040309, 41.9414094] + "loc": [-85.615436, 41.94275] }, "n1819800209": { "id": "n1819800209", - "loc": [-85.6113694, 41.943189] + "loc": [-85.611369, 41.943189] }, "n1819800211": { "id": "n1819800211", - "loc": [-85.618032, 41.9416408] - }, - "n1819800214": { - "id": "n1819800214", - "loc": [-85.5959419, 41.9402602] - }, - "n1819800219": { - "id": "n1819800219", - "loc": [-85.5972117, 41.9420043] + "loc": [-85.618032, 41.941641] }, "n1819800223": { "id": "n1819800223", - "loc": [-85.6117171, 41.9430019] - }, - "n1819800224": { - "id": "n1819800224", - "loc": [-85.5977873, 41.9395579] - }, - "n1819800226": { - "id": "n1819800226", - "loc": [-85.5917362, 41.9432209] - }, - "n1819800228": { - "id": "n1819800228", - "loc": [-85.6055759, 41.9419122] + "loc": [-85.611717, 41.943002] }, "n1819800229": { "id": "n1819800229", - "loc": [-85.6203395, 41.9425595] + "loc": [-85.62034, 41.94256] }, "n1819800233": { "id": "n1819800233", - "loc": [-85.6107579, 41.9433007] - }, - "n1819800234": { - "id": "n1819800234", - "loc": [-85.6039773, 41.9412498] - }, - "n1819800235": { - "id": "n1819800235", - "loc": [-85.6000977, 41.9412861] - }, - "n1819800236": { - "id": "n1819800236", - "loc": [-85.6026689, 41.9407231] + "loc": [-85.610758, 41.943301] }, "n1819800237": { "id": "n1819800237", - "loc": [-85.615161, 41.9428662] - }, - "n1819800238": { - "id": "n1819800238", - "loc": [-85.5878953, 41.9454314] - }, - "n1819800239": { - "id": "n1819800239", - "loc": [-85.6035267, 41.941569] - }, - "n1819800240": { - "id": "n1819800240", - "loc": [-85.5929738, 41.9450208] + "loc": [-85.615161, 41.942866] }, "n1819800241": { "id": "n1819800241", - "loc": [-85.6186329, 41.9416488] - }, - "n1819800242": { - "id": "n1819800242", - "loc": [-85.5881136, 41.9483963] - }, - "n1819800243": { - "id": "n1819800243", - "loc": [-85.5909208, 41.9466922] - }, - "n1819800244": { - "id": "n1819800244", - "loc": [-85.5997721, 41.9394941] + "loc": [-85.618633, 41.941649] }, "n1819800245": { "id": "n1819800245", - "loc": [-85.6202064, 41.9425712] - }, - "n1819800246": { - "id": "n1819800246", - "loc": [-85.591071, 41.9448808] - }, - "n1819800247": { - "id": "n1819800247", - "loc": [-85.5866078, 41.9490622] - }, - "n1819800250": { - "id": "n1819800250", - "loc": [-85.602383, 41.9420841] - }, - "n1819800251": { - "id": "n1819800251", - "loc": [-85.5957418, 41.9426906] + "loc": [-85.620206, 41.942571] }, "n1819800255": { "id": "n1819800255", - "loc": [-85.6157039, 41.9416727] + "loc": [-85.615704, 41.941673] }, "n1819800256": { "id": "n1819800256", - "loc": [-85.6080328, 41.9410982] + "loc": [-85.608033, 41.941098] }, "n1819800258": { "id": "n1819800258", - "loc": [-85.6192551, 41.9414892] + "loc": [-85.619255, 41.941489] }, "n1819800260": { "id": "n1819800260", - "loc": [-85.6104253, 41.94117] + "loc": [-85.610425, 41.94117] }, "n1819800261": { "id": "n1819800261", - "loc": [-85.6204503, 41.9425709] - }, - "n1819800263": { - "id": "n1819800263", - "loc": [-85.5872194, 41.9455431] + "loc": [-85.62045, 41.942571] }, "n1819800264": { "id": "n1819800264", - "loc": [-85.616176, 41.9418244] + "loc": [-85.616176, 41.941824] }, "n1819800268": { "id": "n1819800268", - "loc": [-85.6120883, 41.9426703] - }, - "n1819800269": { - "id": "n1819800269", - "loc": [-85.5894547, 41.9474946] + "loc": [-85.612088, 41.94267] }, "n1819800272": { "id": "n1819800272", - "loc": [-85.6209181, 41.9425027] + "loc": [-85.620918, 41.942503] }, "n1819800274": { "id": "n1819800274", - "loc": [-85.6122814, 41.9412817] - }, - "n1819800276": { - "id": "n1819800276", - "loc": [-85.5895153, 41.9452798] - }, - "n1819800277": { - "id": "n1819800277", - "loc": [-85.5884317, 41.9455272] - }, - "n1819800279": { - "id": "n1819800279", - "loc": [-85.5884103, 41.9480966] - }, - "n1819800287": { - "id": "n1819800287", - "loc": [-85.5904917, 41.9453915] + "loc": [-85.612281, 41.941282] }, "n1819800288": { "id": "n1819800288", - "loc": [-85.6212292, 41.9412977] - }, - "n1819800289": { - "id": "n1819800289", - "loc": [-85.5954377, 41.9406832] - }, - "n1819800290": { - "id": "n1819800290", - "loc": [-85.593721, 41.9420957] + "loc": [-85.621229, 41.941298] }, "n1819800291": { "id": "n1819800291", - "loc": [-85.6162832, 41.9427102] - }, - "n1819800292": { - "id": "n1819800292", - "loc": [-85.605018, 41.9401804] + "loc": [-85.616283, 41.94271] }, "n1819800293": { "id": "n1819800293", - "loc": [-85.6086443, 41.941146] + "loc": [-85.608644, 41.941146] }, "n1819800296": { "id": "n1819800296", - "loc": [-85.6204675, 41.9413775] + "loc": [-85.620468, 41.941378] }, "n1819800297": { "id": "n1819800297", - "loc": [-85.612496, 41.9424947] - }, - "n1819800299": { - "id": "n1819800299", - "loc": [-85.6065629, 41.9423431] - }, - "n1819800301": { - "id": "n1819800301", - "loc": [-85.6036125, 41.9398452] + "loc": [-85.612496, 41.942495] }, "n1819800303": { "id": "n1819800303", - "loc": [-85.6114767, 41.94117] - }, - "n1819800306": { - "id": "n1819800306", - "loc": [-85.592616, 41.9428139] - }, - "n1819800308": { - "id": "n1819800308", - "loc": [-85.6023041, 41.9419521] + "loc": [-85.611477, 41.94117] }, "n1819800310": { "id": "n1819800310", - "loc": [-85.6218944, 41.9411061] + "loc": [-85.621894, 41.941106] }, "n1819800311": { "id": "n1819800311", - "loc": [-85.6097816, 41.941162] - }, - "n1819800312": { - "id": "n1819800312", - "loc": [-85.5922549, 41.9457869] - }, - "n1819800313": { - "id": "n1819800313", - "loc": [-85.5986027, 41.9417206] - }, - "n1819800314": { - "id": "n1819800314", - "loc": [-85.5918687, 41.946138] - }, - "n1819800315": { - "id": "n1819800315", - "loc": [-85.5872875, 41.948883] - }, - "n1819800316": { - "id": "n1819800316", - "loc": [-85.594272, 41.9436642] + "loc": [-85.609782, 41.941162] }, "n1819800317": { "id": "n1819800317", - "loc": [-85.6176351, 41.941577] + "loc": [-85.617635, 41.941577] }, "n1819800318": { "id": "n1819800318", - "loc": [-85.6137834, 41.9430853] + "loc": [-85.613783, 41.943085] }, "n1819800319": { "id": "n1819800319", - "loc": [-85.6195383, 41.942622], + "loc": [-85.619538, 41.942622], "tags": { "leisure": "slipway" } }, - "n1819800320": { - "id": "n1819800320", - "loc": [-85.5971006, 41.9398053] - }, - "n1819800321": { - "id": "n1819800321", - "loc": [-85.601714, 41.9406752] - }, - "n1819800322": { - "id": "n1819800322", - "loc": [-85.5908028, 41.9453117] - }, - "n1819800323": { - "id": "n1819800323", - "loc": [-85.6062732, 41.9404597] - }, "n1819800324": { "id": "n1819800324", - "loc": [-85.62124, 41.9425905] - }, - "n1819800327": { - "id": "n1819800327", - "loc": [-85.6008664, 41.942766] + "loc": [-85.62124, 41.942591] }, "n1819800328": { "id": "n1819800328", - "loc": [-85.6179355, 41.9428538] - }, - "n1819800330": { - "id": "n1819800330", - "loc": [-85.6045566, 41.9415131] - }, - "n1819800331": { - "id": "n1819800331", - "loc": [-85.5944935, 41.9414653] + "loc": [-85.617936, 41.942854] }, "n1819800333": { "id": "n1819800333", - "loc": [-85.6088911, 41.943181] - }, - "n1819800334": { - "id": "n1819800334", - "loc": [-85.5946367, 41.943369] + "loc": [-85.608891, 41.943181] }, "n1819800336": { "id": "n1819800336", - "loc": [-85.6150494, 41.9429656] + "loc": [-85.615049, 41.942966] }, "n1819800343": { "id": "n1819800343", - "loc": [-85.6096099, 41.9433326] - }, - "n1819800345": { - "id": "n1819800345", - "loc": [-85.5915216, 41.9435401] + "loc": [-85.60961, 41.943333] }, "n1819800347": { "id": "n1819800347", - "loc": [-85.607786, 41.9428698] + "loc": [-85.608036, 41.942915] }, "n1819800349": { "id": "n1819800349", - "loc": [-85.6187616, 41.9426623] - }, - "n1819800350": { - "id": "n1819800350", - "loc": [-85.6012527, 41.9426064] + "loc": [-85.618762, 41.942662] }, "n1819800352": { "id": "n1819800352", - "loc": [-85.6214867, 41.9428379] + "loc": [-85.621487, 41.942838] }, "n1819800354": { "id": "n1819800354", "loc": [-85.61338, 41.94293] }, - "n1819800355": { - "id": "n1819800355", - "loc": [-85.5923156, 41.9428139] - }, - "n1819800357": { - "id": "n1819800357", - "loc": [-85.5901591, 41.9453197] - }, - "n1819800359": { - "id": "n1819800359", - "loc": [-85.6033979, 41.9408827] - }, "n1819800360": { "id": "n1819800360", - "loc": [-85.6186543, 41.9414653] + "loc": [-85.618654, 41.941465] }, "n1819800363": { "id": "n1819800363", - "loc": [-85.6128607, 41.9425665] + "loc": [-85.612861, 41.942566] }, "n1819800365": { "id": "n1819800365", - "loc": [-85.614234, 41.9412977] + "loc": [-85.614234, 41.941298] }, "n1819800367": { "id": "n1819800367", - "loc": [-85.6089662, 41.9410902] + "loc": [-85.608966, 41.94109] }, "n1819800369": { "id": "n1819800369", - "loc": [-85.6197379, 41.9413695] - }, - "n1819800370": { - "id": "n1819800370", - "loc": [-85.6037348, 41.941733] - }, - "n1819800371": { - "id": "n1819800371", - "loc": [-85.5993467, 41.9415654] - }, - "n1819800372": { - "id": "n1819800372", - "loc": [-85.598077, 41.94196] - }, - "n1819800373": { - "id": "n1819800373", - "loc": [-85.5984203, 41.9394781] - }, - "n1819800374": { - "id": "n1819800374", - "loc": [-85.6013315, 41.9427066] - }, - "n1819800376": { - "id": "n1819800376", - "loc": [-85.5934673, 41.944167] - }, - "n1819800378": { - "id": "n1819800378", - "loc": [-85.6011062, 41.9407753] + "loc": [-85.619738, 41.94137] }, "n1819800379": { "id": "n1819800379", - "loc": [-85.6150602, 41.9415131] + "loc": [-85.61506, 41.941513] }, "n1819800380": { "id": "n1819800380", - "loc": [-85.6132148, 41.9412338] - }, - "n1819800381": { - "id": "n1819800381", - "loc": [-85.5889038, 41.9453835] + "loc": [-85.613215, 41.941234] }, "n2139966621": { "id": "n2139966621", - "loc": [-85.6198719, 41.9426184] + "loc": [-85.619872, 41.942618] }, "n2139966622": { "id": "n2139966622", - "loc": [-85.6197551, 41.9426123] + "loc": [-85.619755, 41.942612] }, "n2139966623": { "id": "n2139966623", - "loc": [-85.6196467, 41.9426279] + "loc": [-85.619647, 41.942628] }, "n2139966624": { "id": "n2139966624", - "loc": [-85.6191519, 41.9426221] + "loc": [-85.619152, 41.942622] }, "n2139966625": { "id": "n2139966625", - "loc": [-85.6194153, 41.9426256] + "loc": [-85.619415, 41.942626] }, "n2139966626": { "id": "n2139966626", - "loc": [-85.6200497, 41.9425812] + "loc": [-85.62005, 41.942581] }, "n2139966629": { "id": "n2139966629", - "loc": [-85.6192123, 41.9426229] - }, - "n2203933101": { - "id": "n2203933101", - "loc": [-85.6030009, 41.9360592] + "loc": [-85.619212, 41.942623] }, "w17967539": { "id": "w17967539", @@ -20312,7 +10253,7 @@ "highway": "residential", "name": "River Street" }, - "nodes": ["n185980088", "n185988961", "n185988963", "n185963698"] + "nodes": ["n185980088", "n185988963", "n185963698"] }, "w17965088": { "id": "w17965088", @@ -20320,17 +10261,7 @@ "highway": "residential", "name": "9th Street" }, - "nodes": [ - "n185945133", - "n185964320", - "n185964322", - "n185964324", - "n185964326", - "n185964328", - "n185964329", - "n185964330", - "n185964331" - ] + "nodes": ["n185945133", "n185964331"] }, "w17964467": { "id": "w17964467", @@ -20406,26 +10337,7 @@ "name": "Michigan Central Railroad", "railway": "abandoned" }, - "nodes": [ - "n185972757", - "n185990192", - "n185990194", - "n185990195", - "n185990196", - "n185990198", - "n185990200", - "n185990202", - "n185990204", - "n185990206", - "n185990209", - "n185952239", - "n185990211", - "n185990212", - "n185990213", - "n185990214", - "n2203933101", - "n185973251" - ] + "nodes": ["n185972757", "n185990192", "n7", "n185990194", "n185990195", "n185990196", "n185973251"] }, "w17965993": { "id": "w17965993", @@ -20441,186 +10353,15 @@ "highway": "residential", "name": "8th Street" }, - "nodes": [ - "n185975315", - "n185975316", - "n185954490", - "n185945395", - "n185975317", - "n185974509", - "n185945135", - "n185975318", - "n185961186", - "n185967634", - "n185975320", - "n185970833", - "n185958036", - "n185975325", - "n185975326", - "n185975327", - "n185975328", - "n185975330", - "n185975332" - ] - }, - "w170844766": { - "id": "w170844766", - "tags": { - "waterway": "riverbank" - }, - "nodes": [ - "n1819800229", - "n1819800245", - "n2139966626", - "n2139966621", - "n2139966622", - "n2139966623", - "n1819800319", - "n2139966625", - "n2139966629", - "n2139966624", - "n1819800349", - "n1819800328", - "n1819800291", - "n1819800206", - "n1819800237", - "n1819800336", - "n1819800318", - "n1819800354", - "n1819800182", - "n1819800363", - "n1819800297", - "n1819800268", - "n1819800223", - "n1819800209", - "n1819800233", - "n1819800201", - "n1819800343", - "n1819800333", - "n1819800347", - "n1819800299", - "n1819800228", - "n1819800330", - "n1819800370", - "n1819800250", - "n1819800374", - "n1819800202", - "n1819800327", - "n1819800350", - "n1819800308", - "n1819800239", - "n1819800207", - "n1819800234", - "n1819800359", - "n1819800236", - "n1819800321", - "n1819800378", - "n1819800235", - "n1819800371", - "n1819800313", - "n1819800372", - "n1819800219", - "n1819800251", - "n1819800334", - "n1819800316", - "n1819800376", - "n1819800240", - "n1819800312", - "n1819800314", - "n1819800243", - "n1819800269", - "n1819800279", - "n1819800242", - "n1819800315", - "n1819800247", - "n1819800191", - "n1819800189", - "n1819800263", - "n1819800238", - "n1819800277", - "n1819800180", - "n1819800381", - "n1819800276", - "n1819800357", - "n1819800287", - "n1819800322", - "n1819800246", - "n1819800345", - "n1819800226", - "n1819800355", - "n1819800306", - "n1819800290", - "n1819800331", - "n1819800289", - "n1819800214", - "n1819800320", - "n1819800224", - "n1819800373", - "n1819800244", - "n1819800184", - "n1819800301", - "n1819800292", - "n1819800323", - "n1819800181", - "n1819800256", - "n1819800293", - "n1819800367", - "n1819800311", - "n1819800260", - "n1819800185", - "n1819800303", - "n1819800274", - "n1819800380", - "n1819800365", - "n1819800379", - "n1819800255", - "n1819800264", - "n1819800186", - "n1819800183", - "n1819800317", - "n1819800211", - "n1819800241", - "n1819800360", - "n1819800258", - "n1819800369", - "n1819800296", - "n1819800288", - "n1819800310", - "n1819800204", - "n1819800375", - "n1819800216", - "n1819800377", - "n1819800248", - "n1819800227", - "n1819800368", - "n1819800231", - "n1819800188", - "n1819800325", - "n1819800232", - "n1819800304", - "n1819800271", - "n1819800213", - "n1819800266", - "n1819800221", - "n1819800294", - "n1819800362", - "n1819800199", - "n1819800230", - "n1819800218", - "n1819800352", - "n1819800324", - "n1819800272", - "n1819800261", - "n1819800229" - ] + "nodes": ["n185975315", "n185958036", "n185975325", "n185975326", "n185975327", "n185975328", "n185975330", "n185975332"] }, "n1875654132": { "id": "n1875654132", - "loc": [-85.6297439, 41.939808] + "loc": [-85.629744, 41.939808] }, "n1475293263": { "id": "n1475293263", - "loc": [-85.6296235, 41.939922] + "loc": [-85.629623, 41.939922] }, "n185947850": { "id": "n185947850", @@ -20632,289 +10373,289 @@ }, "n185972907": { "id": "n185972907", - "loc": [-85.631797, 41.9420055] + "loc": [-85.631797, 41.942006] }, "n185972911": { "id": "n185972911", - "loc": [-85.6309723, 41.9411623] + "loc": [-85.630972, 41.941162] }, "n185972915": { "id": "n185972915", - "loc": [-85.6295971, 41.939267] + "loc": [-85.629597, 41.939267] }, "n1475293223": { "id": "n1475293223", - "loc": [-85.6313962, 41.9416114], + "loc": [-85.631396, 41.941611], "tags": { "railway": "level_crossing" } }, "n1475293231": { "id": "n1475293231", - "loc": [-85.6318779, 41.9415447] + "loc": [-85.631878, 41.941545] }, "n1475293241": { "id": "n1475293241", - "loc": [-85.6304613, 41.9405499] + "loc": [-85.630461, 41.94055] }, "n1475293246": { "id": "n1475293246", - "loc": [-85.6297512, 41.9395393], + "loc": [-85.629751, 41.939539], "tags": { "railway": "level_crossing" } }, "n1475293251": { "id": "n1475293251", - "loc": [-85.6316633, 41.9415128] + "loc": [-85.631663, 41.941513] }, "n2139982404": { "id": "n2139982404", - "loc": [-85.6313283, 41.9413748] + "loc": [-85.631328, 41.941375] }, "n2139982407": { "id": "n2139982407", - "loc": [-85.6325545, 41.9417787] + "loc": [-85.632554, 41.941779] }, "n2139982408": { "id": "n2139982408", - "loc": [-85.6324499, 41.9417693] + "loc": [-85.63245, 41.941769] }, "n2139982409": { "id": "n2139982409", - "loc": [-85.6324753, 41.9416444] + "loc": [-85.632475, 41.941644] }, "n2139982410": { "id": "n2139982410", - "loc": [-85.6325814, 41.9416538] + "loc": [-85.632581, 41.941654] }, "n2139982411": { "id": "n2139982411", - "loc": [-85.6319572, 41.9413515] + "loc": [-85.631957, 41.941352] }, "n2139982412": { "id": "n2139982412", - "loc": [-85.6322925, 41.941139] + "loc": [-85.632293, 41.941139] }, "n2139982413": { "id": "n2139982413", - "loc": [-85.6323153, 41.941153] + "loc": [-85.632315, 41.941153] }, "n2139982414": { "id": "n2139982414", - "loc": [-85.6323019, 41.9412617] + "loc": [-85.632302, 41.941262] }, "n2139982415": { "id": "n2139982415", - "loc": [-85.6323703, 41.9412667] + "loc": [-85.63237, 41.941267] }, "n2139982416": { "id": "n2139982416", - "loc": [-85.6323555, 41.941538] + "loc": [-85.632356, 41.941538] }, "n2139982417": { "id": "n2139982417", - "loc": [-85.6321343, 41.9416777] + "loc": [-85.632134, 41.941678] }, "n2139982418": { "id": "n2139982418", - "loc": [-85.6319425, 41.9416866] + "loc": [-85.631942, 41.941687] }, "n2139982419": { "id": "n2139982419", - "loc": [-85.6320303, 41.9416941] + "loc": [-85.63203, 41.941694] }, "n2139982420": { "id": "n2139982420", - "loc": [-85.6321665, 41.9415554] + "loc": [-85.632166, 41.941555] }, "n2139982421": { "id": "n2139982421", - "loc": [-85.632412, 41.9414164] + "loc": [-85.632412, 41.941416] }, "n2139982422": { "id": "n2139982422", - "loc": [-85.6324801, 41.9413421] + "loc": [-85.63248, 41.941342] }, "n2139982423": { "id": "n2139982423", - "loc": [-85.6325023, 41.9412585] + "loc": [-85.632502, 41.941259] }, "n2139982424": { "id": "n2139982424", - "loc": [-85.6324532, 41.9411607] + "loc": [-85.632453, 41.941161] }, "n2139982425": { "id": "n2139982425", - "loc": [-85.6323502, 41.941103] + "loc": [-85.63235, 41.941103] }, "n2139982426": { "id": "n2139982426", - "loc": [-85.6322362, 41.9411183] + "loc": [-85.632236, 41.941118] }, "n2139982427": { "id": "n2139982427", - "loc": [-85.6318941, 41.9413551] + "loc": [-85.631894, 41.941355] }, "n2139982428": { "id": "n2139982428", - "loc": [-85.6318592, 41.9414105] + "loc": [-85.631859, 41.941411] }, "n2139982429": { "id": "n2139982429", - "loc": [-85.6320111, 41.9415866] + "loc": [-85.632011, 41.941587] }, "n2139982430": { "id": "n2139982430", - "loc": [-85.632446, 41.9413792] + "loc": [-85.632446, 41.941379] }, "n2139982431": { "id": "n2139982431", - "loc": [-85.6325112, 41.941416] + "loc": [-85.632511, 41.941416] }, "n2139982432": { "id": "n2139982432", - "loc": [-85.6325449, 41.9416345] + "loc": [-85.632545, 41.941634] }, "n2139982433": { "id": "n2139982433", - "loc": [-85.6326122, 41.94164] + "loc": [-85.632612, 41.94164] }, "n2139982434": { "id": "n2139982434", - "loc": [-85.6325954, 41.9421966] + "loc": [-85.632595, 41.942197] }, "n2139982435": { "id": "n2139982435", - "loc": [-85.6325655, 41.9422411] + "loc": [-85.632565, 41.942241] }, "n2139982436": { "id": "n2139982436", - "loc": [-85.632515, 41.9422564] + "loc": [-85.632515, 41.942256] }, "n2139982437": { "id": "n2139982437", - "loc": [-85.6324495, 41.94223] + "loc": [-85.63245, 41.94223] }, "n2139982438": { "id": "n2139982438", - "loc": [-85.6324009, 41.9421743] + "loc": [-85.632401, 41.942174] }, "n2139982439": { "id": "n2139982439", - "loc": [-85.6323915, 41.9421145] + "loc": [-85.632391, 41.942115] }, "n2139982440": { "id": "n2139982440", - "loc": [-85.6320287, 41.9418585] + "loc": [-85.632029, 41.941859] }, "n2139982441": { "id": "n2139982441", - "loc": [-85.6318285, 41.9416387] + "loc": [-85.631828, 41.941639] }, "n1475293258": { "id": "n1475293258", - "loc": [-85.6318289, 41.9415077] + "loc": [-85.631829, 41.941508] }, "n2168544754": { "id": "n2168544754", - "loc": [-85.6312814, 41.9431198] + "loc": [-85.631281, 41.94312] }, "n2168544755": { "id": "n2168544755", - "loc": [-85.6314212, 41.9430646] + "loc": [-85.631421, 41.943065] }, "n2168544756": { "id": "n2168544756", - "loc": [-85.6313387, 41.942949] + "loc": [-85.631339, 41.942949] }, "n2168544757": { "id": "n2168544757", - "loc": [-85.6311989, 41.9430041] + "loc": [-85.631199, 41.943004] }, "n2168544758": { "id": "n2168544758", - "loc": [-85.6311024, 41.9429313] + "loc": [-85.631102, 41.942931] }, "n2168544759": { "id": "n2168544759", - "loc": [-85.6310087, 41.9428087] + "loc": [-85.631009, 41.942809] }, "n2168544760": { "id": "n2168544760", - "loc": [-85.6313831, 41.9426504] + "loc": [-85.631383, 41.94265] }, "n2168544761": { "id": "n2168544761", - "loc": [-85.6314768, 41.9427729] + "loc": [-85.631477, 41.942773] }, "n2168544762": { "id": "n2168544762", - "loc": [-85.6306376, 41.942809] + "loc": [-85.630638, 41.942809] }, "n2168544763": { "id": "n2168544763", - "loc": [-85.6307378, 41.9429427] + "loc": [-85.630738, 41.942943] }, "n2168544764": { "id": "n2168544764", - "loc": [-85.630841, 41.9428998] + "loc": [-85.630841, 41.9429] }, "n2168544765": { "id": "n2168544765", - "loc": [-85.6307408, 41.9427662] + "loc": [-85.630741, 41.942766] }, "n2168544766": { "id": "n2168544766", - "loc": [-85.6305404, 41.9426029] + "loc": [-85.63054, 41.942603] }, "n2168544767": { "id": "n2168544767", - "loc": [-85.6304976, 41.9426194] + "loc": [-85.630498, 41.942619] }, "n2168544768": { "id": "n2168544768", - "loc": [-85.6305673, 41.9427184] + "loc": [-85.630567, 41.942718] }, "n2168544769": { "id": "n2168544769", - "loc": [-85.6306164, 41.9426984] + "loc": [-85.630616, 41.942698] }, "n2168544770": { "id": "n2168544770", - "loc": [-85.6306418, 41.9427302] + "loc": [-85.630642, 41.94273] }, "n2168544771": { "id": "n2168544771", - "loc": [-85.6306861, 41.9427137] + "loc": [-85.630686, 41.942714] }, "n2168544772": { "id": "n2168544772", - "loc": [-85.6307146, 41.9427537] + "loc": [-85.630715, 41.942754] }, "n2168544773": { "id": "n2168544773", - "loc": [-85.6308999, 41.9426807] + "loc": [-85.6309, 41.942681] }, "n2168544774": { "id": "n2168544774", - "loc": [-85.6308429, 41.9426053] + "loc": [-85.630843, 41.942605] }, "n2168544775": { "id": "n2168544775", - "loc": [-85.6308999, 41.9425806] + "loc": [-85.6309, 41.942581] }, "n2168544776": { "id": "n2168544776", - "loc": [-85.6308318, 41.9424875] + "loc": [-85.630832, 41.942487] }, "n2168544777": { "id": "n2168544777", - "loc": [-85.6307732, 41.9425087] + "loc": [-85.630773, 41.942509] }, "n2168544778": { "id": "n2168544778", - "loc": [-85.6307178, 41.9424357] + "loc": [-85.630718, 41.942436] }, "n2168544779": { "id": "n2168544779", @@ -20922,87 +10663,87 @@ }, "n2189099387": { "id": "n2189099387", - "loc": [-85.631203, 41.9393371] + "loc": [-85.631203, 41.939337] }, "n2189099404": { "id": "n2189099404", - "loc": [-85.6301963, 41.9391363] + "loc": [-85.630196, 41.939136] }, "n2189099405": { "id": "n2189099405", - "loc": [-85.6304447, 41.9391352] + "loc": [-85.630445, 41.939135] }, "n2189099406": { "id": "n2189099406", - "loc": [-85.6304463, 41.9393391] + "loc": [-85.630446, 41.939339] }, "n2189099407": { "id": "n2189099407", - "loc": [-85.6308435, 41.9393373] + "loc": [-85.630843, 41.939337] }, "n2189099408": { "id": "n2189099408", - "loc": [-85.6308418, 41.9391251] + "loc": [-85.630842, 41.939125] }, "n2189099409": { "id": "n2189099409", - "loc": [-85.6310929, 41.939124] + "loc": [-85.631093, 41.939124] }, "n2189099410": { "id": "n2189099410", - "loc": [-85.6310946, 41.9393376] + "loc": [-85.631095, 41.939338] }, "n2189112720": { "id": "n2189112720", - "loc": [-85.6314677, 41.9412327] + "loc": [-85.631468, 41.941233] }, "n2189112721": { "id": "n2189112721", - "loc": [-85.6313337, 41.9411397] + "loc": [-85.631334, 41.94114] }, "n2189112722": { "id": "n2189112722", - "loc": [-85.6320521, 41.9405678] + "loc": [-85.632052, 41.940568] }, "n2189112723": { "id": "n2189112723", - "loc": [-85.6321899, 41.9406633] + "loc": [-85.63219, 41.940663] }, "n2189112724": { "id": "n2189112724", - "loc": [-85.6313229, 41.9408344] + "loc": [-85.631323, 41.940834] }, "n2189112725": { "id": "n2189112725", - "loc": [-85.6311223, 41.9410018] + "loc": [-85.631122, 41.941002] }, "n2189112726": { "id": "n2189112726", - "loc": [-85.6313205, 41.9411333] + "loc": [-85.631321, 41.941133] }, "n2189112727": { "id": "n2189112727", - "loc": [-85.6315211, 41.9409659] + "loc": [-85.631521, 41.940966] }, "n2189112728": { "id": "n2189112728", - "loc": [-85.6311035, 41.9402529] + "loc": [-85.631103, 41.940253] }, "n2189112729": { "id": "n2189112729", - "loc": [-85.631226, 41.9402107] + "loc": [-85.631226, 41.940211] }, "n2189112730": { "id": "n2189112730", - "loc": [-85.6315966, 41.9408051] + "loc": [-85.631597, 41.940805] }, "n2189112731": { "id": "n2189112731", - "loc": [-85.6314741, 41.9408473] + "loc": [-85.631474, 41.940847] }, "n2189112732": { "id": "n2189112732", - "loc": [-85.6318114, 41.940534] + "loc": [-85.631811, 41.940534] }, "n2189112733": { "id": "n2189112733", @@ -21010,339 +10751,287 @@ }, "n2189112734": { "id": "n2189112734", - "loc": [-85.6314379, 41.940366] + "loc": [-85.631438, 41.940366] }, "n2189112735": { "id": "n2189112735", - "loc": [-85.6316613, 41.94029] + "loc": [-85.631661, 41.94029] }, "n2189112736": { "id": "n2189112736", - "loc": [-85.6306214, 41.9400415] + "loc": [-85.630621, 41.940041] }, "n2189112737": { "id": "n2189112737", - "loc": [-85.6304362, 41.9397728] + "loc": [-85.630436, 41.939773] }, "n2189112738": { "id": "n2189112738", - "loc": [-85.6305899, 41.9397142] + "loc": [-85.63059, 41.939714] }, "n2189112739": { "id": "n2189112739", - "loc": [-85.6307751, 41.9399828] + "loc": [-85.630775, 41.939983] }, "n2189112740": { "id": "n2189112740", - "loc": [-85.6304695, 41.9401673] + "loc": [-85.63047, 41.940167] }, "n2189112741": { "id": "n2189112741", - "loc": [-85.6301298, 41.9396855] + "loc": [-85.63013, 41.939686] }, "n2189112742": { "id": "n2189112742", - "loc": [-85.6303016, 41.9396184] + "loc": [-85.630302, 41.939618] }, "n2189112743": { "id": "n2189112743", - "loc": [-85.6306413, 41.9401003] + "loc": [-85.630641, 41.9401] }, "n2189112744": { "id": "n2189112744", - "loc": [-85.6309656, 41.9406189] + "loc": [-85.630966, 41.940619] }, "n2189112745": { "id": "n2189112745", - "loc": [-85.6308738, 41.940493] + "loc": [-85.630874, 41.940493] }, "n2189112746": { "id": "n2189112746", - "loc": [-85.6309333, 41.940469] + "loc": [-85.630933, 41.940469] }, "n2189112747": { "id": "n2189112747", - "loc": [-85.6307634, 41.9402358] + "loc": [-85.630763, 41.940236] }, "n2189112748": { "id": "n2189112748", - "loc": [-85.6308798, 41.9401889] + "loc": [-85.63088, 41.940189] }, "n2189112749": { "id": "n2189112749", - "loc": [-85.6311416, 41.940548] + "loc": [-85.631142, 41.940548] }, "n2189112750": { "id": "n2189112750", - "loc": [-85.6309577, 41.9408708] + "loc": [-85.630958, 41.940871] }, "n2189112751": { "id": "n2189112751", - "loc": [-85.630874, 41.9407777] + "loc": [-85.630874, 41.940778] }, "n2189112752": { "id": "n2189112752", - "loc": [-85.6310622, 41.9406841] + "loc": [-85.631062, 41.940684] }, "n2189112753": { "id": "n2189112753", - "loc": [-85.6311459, 41.9407772] + "loc": [-85.631146, 41.940777] }, "n2189112754": { "id": "n2189112754", - "loc": [-85.6320308, 41.9405747] + "loc": [-85.632031, 41.940575] }, "n2189112755": { "id": "n2189112755", - "loc": [-85.6317769, 41.9401857] + "loc": [-85.631777, 41.940186] }, "n2189112756": { "id": "n2189112756", - "loc": [-85.6313462, 41.9401785] + "loc": [-85.631346, 41.940179] }, "n2189112757": { "id": "n2189112757", - "loc": [-85.6313423, 41.9401199] + "loc": [-85.631342, 41.94012] }, "n2189112758": { "id": "n2189112758", - "loc": [-85.6318308, 41.9401184] + "loc": [-85.631831, 41.940118] }, "n2189112759": { "id": "n2189112759", - "loc": [-85.6321154, 41.9405433] + "loc": [-85.632115, 41.940543] }, "n2189112760": { "id": "n2189112760", - "loc": [-85.6310307, 41.941683] + "loc": [-85.631031, 41.941683] }, "n2189112761": { "id": "n2189112761", - "loc": [-85.6309808, 41.9416078] + "loc": [-85.630981, 41.941608] }, "n2189112762": { "id": "n2189112762", - "loc": [-85.6312094, 41.9415156] + "loc": [-85.631209, 41.941516] }, "n2189112763": { "id": "n2189112763", - "loc": [-85.6312636, 41.9415865] + "loc": [-85.631264, 41.941586] }, "n2189112764": { "id": "n2189112764", - "loc": [-85.6309384, 41.94155] + "loc": [-85.630938, 41.94155] }, "n2189112765": { "id": "n2189112765", - "loc": [-85.631156, 41.9414619] + "loc": [-85.631156, 41.941462] }, "n2189112766": { "id": "n2189112766", - "loc": [-85.6311968, 41.94152] + "loc": [-85.631197, 41.94152] }, "n2189112767": { "id": "n2189112767", - "loc": [-85.6308946, 41.9414851] + "loc": [-85.630895, 41.941485] }, "n2189112768": { "id": "n2189112768", - "loc": [-85.6308237, 41.9413888] + "loc": [-85.630824, 41.941389] }, "n2189112769": { "id": "n2189112769", - "loc": [-85.6309858, 41.9413228] + "loc": [-85.630986, 41.941323] }, "n2189112770": { "id": "n2189112770", - "loc": [-85.6310567, 41.9414192] + "loc": [-85.631057, 41.941419] }, "n2189112771": { "id": "n2189112771", - "loc": [-85.6307774, 41.9413276] + "loc": [-85.630777, 41.941328] }, "n2189112772": { "id": "n2189112772", - "loc": [-85.6309068, 41.9412735] + "loc": [-85.630907, 41.941274] }, "n2189112773": { "id": "n2189112773", - "loc": [-85.6309531, 41.9413347] + "loc": [-85.630953, 41.941335] }, "n2189112774": { "id": "n2189112774", - "loc": [-85.6307975, 41.9412466] + "loc": [-85.630797, 41.941247] }, "n2189112775": { "id": "n2189112775", - "loc": [-85.6307006, 41.9411699] + "loc": [-85.630701, 41.94117] }, "n2189112776": { "id": "n2189112776", - "loc": [-85.6308289, 41.941113] + "loc": [-85.630829, 41.941113] }, "n2189112777": { "id": "n2189112777", - "loc": [-85.6308997, 41.9412012] + "loc": [-85.6309, 41.941201] }, "n2189112778": { "id": "n2189112778", - "loc": [-85.630765, 41.9412062] + "loc": [-85.630765, 41.941206] }, "n2189112779": { "id": "n2189112779", - "loc": [-85.630739, 41.9412177] + "loc": [-85.630739, 41.941218] }, "n2189112780": { "id": "n2189112780", - "loc": [-85.6305822, 41.9410391] + "loc": [-85.630582, 41.941039] }, "n2189112781": { "id": "n2189112781", - "loc": [-85.6304117, 41.9408177] + "loc": [-85.630412, 41.940818] }, "n2189112782": { "id": "n2189112782", - "loc": [-85.6305086, 41.9407769] + "loc": [-85.630509, 41.940777] }, "n2189112783": { "id": "n2189112783", - "loc": [-85.6306779, 41.9410044] + "loc": [-85.630678, 41.941004] }, "n2189112784": { "id": "n2189112784", - "loc": [-85.6307734, 41.9421663] + "loc": [-85.630773, 41.942166] }, "n2189112785": { "id": "n2189112785", - "loc": [-85.630708, 41.9420741] + "loc": [-85.630708, 41.942074] }, "n2189112786": { "id": "n2189112786", - "loc": [-85.630863, 41.9420133] + "loc": [-85.630863, 41.942013] }, "n2189112787": { "id": "n2189112787", - "loc": [-85.6309285, 41.9421055] + "loc": [-85.630928, 41.942105] }, "n2189112788": { "id": "n2189112788", - "loc": [-85.6307014, 41.9420263] + "loc": [-85.630701, 41.942026] }, "n2189112789": { "id": "n2189112789", - "loc": [-85.6306648, 41.941971] + "loc": [-85.630665, 41.941971] }, "n2189112790": { "id": "n2189112790", - "loc": [-85.6307927, 41.9419178] + "loc": [-85.630793, 41.941918] }, "n2189112791": { "id": "n2189112791", - "loc": [-85.6308366, 41.9419696] + "loc": [-85.630837, 41.94197] }, "n2189112792": { "id": "n2189112792", - "loc": [-85.6307574, 41.9418708] + "loc": [-85.630757, 41.941871] }, "n2189112793": { "id": "n2189112793", - "loc": [-85.6306288, 41.9419231] + "loc": [-85.630629, 41.941923] }, "n2189112794": { "id": "n2189112794", - "loc": [-85.6306943, 41.9417835] + "loc": [-85.630694, 41.941783] }, "n2189112795": { "id": "n2189112795", - "loc": [-85.6305344, 41.9418474] + "loc": [-85.630534, 41.941847] }, "n2189112796": { "id": "n2189112796", - "loc": [-85.6305981, 41.9419355] + "loc": [-85.630598, 41.941935] }, "n2189123410": { "id": "n2189123410", - "loc": [-85.6315476, 41.9393801] + "loc": [-85.631548, 41.93938] }, "n2189123412": { "id": "n2189123412", - "loc": [-85.6315247, 41.9399188] + "loc": [-85.631525, 41.939919] }, "n2189123415": { "id": "n2189123415", - "loc": [-85.6316484, 41.9400433] - }, - "n185945138": { - "id": "n185945138", - "loc": [-85.627073, 41.93319] - }, - "n185945142": { - "id": "n185945142", - "loc": [-85.6296891, 41.9331674] + "loc": [-85.631648, 41.940043] }, "n185945401": { "id": "n185945401", - "loc": [-85.6269, 41.930199] - }, - "n185945405": { - "id": "n185945405", - "loc": [-85.6296598, 41.9301676] + "loc": [-85.626983, 41.930531] }, "n185956891": { "id": "n185956891", - "loc": [-85.6251617, 41.9255049] - }, - "n185959979": { - "id": "n185959979", - "loc": [-85.626333, 41.928347] - }, - "n185959983": { - "id": "n185959983", - "loc": [-85.6296419, 41.9283288] - }, - "n185961192": { - "id": "n185961192", - "loc": [-85.627053, 41.9352031] - }, - "n185961200": { - "id": "n185961200", - "loc": [-85.6297088, 41.9351902] + "loc": [-85.625226, 41.925703] }, "n185963655": { "id": "n185963655", - "loc": [-85.6296112, 41.9273948] - }, - "n185963665": { - "id": "n185963665", - "loc": [-85.626047, 41.92737] - }, - "n185963688": { - "id": "n185963688", - "loc": [-85.6296503, 41.9292199] - }, - "n185963689": { - "id": "n185963689", - "loc": [-85.6296694, 41.931157] - }, - "n185963690": { - "id": "n185963690", - "loc": [-85.6296791, 41.9321485] - }, - "n185963691": { - "id": "n185963691", - "loc": [-85.6296991, 41.9341973] - }, - "n185967638": { - "id": "n185967638", - "loc": [-85.627089, 41.9361884] + "loc": [-85.629611, 41.927395] }, "n185972917": { "id": "n185972917", - "loc": [-85.6293759, 41.9388605] + "loc": [-85.629376, 41.93886] }, "n185972919": { "id": "n185972919", - "loc": [-85.6290337, 41.9380234] + "loc": [-85.629034, 41.938023] }, "n185972921": { "id": "n185972921", @@ -21352,46 +11041,22 @@ "id": "n185972923", "loc": [-85.628367, 41.936029] }, - "n185974511": { - "id": "n185974511", - "loc": [-85.627064, 41.932169] - }, "n185977728": { "id": "n185977728", - "loc": [-85.625605, 41.925842] - }, - "n185977729": { - "id": "n185977729", - "loc": [-85.625685, 41.926163] - }, - "n185977731": { - "id": "n185977731", - "loc": [-85.6257845, 41.9264872] - }, - "n185977733": { - "id": "n185977733", - "loc": [-85.62663, 41.929251] + "loc": [-85.62555, 41.925713] }, "n185977734": { "id": "n185977734", - "loc": [-85.627008, 41.930642] + "loc": [-85.627012, 41.930687] }, "n185977736": { "id": "n185977736", - "loc": [-85.627029, 41.930775] + "loc": [-85.627029, 41.930817] }, "n185977738": { "id": "n185977738", "loc": [-85.627041, 41.930946] }, - "n185977739": { - "id": "n185977739", - "loc": [-85.6270379, 41.9311746] - }, - "n185977742": { - "id": "n185977742", - "loc": [-85.627055, 41.934206] - }, "n185977744": { "id": "n185977744", "loc": [-85.627084, 41.936804] @@ -21406,7 +11071,7 @@ }, "n185977750": { "id": "n185977750", - "loc": [-85.6272406, 41.9371672] + "loc": [-85.627241, 41.937167] }, "n185977752": { "id": "n185977752", @@ -21430,35 +11095,28 @@ }, "n1475283996": { "id": "n1475283996", - "loc": [-85.6270514, 41.9317122], + "loc": [-85.627051, 41.931712], "tags": { "railway": "level_crossing" } }, "n1475284004": { "id": "n1475284004", - "loc": [-85.6278177, 41.9342117], - "tags": { - "railway": "level_crossing" - } - }, - "n1475284014": { - "id": "n1475284014", - "loc": [-85.6251877, 41.9255913], + "loc": [-85.627818, 41.934212], "tags": { "railway": "level_crossing" } }, "n1475284017": { "id": "n1475284017", - "loc": [-85.6274992, 41.9331816], + "loc": [-85.627499, 41.933182], "tags": { "railway": "level_crossing" } }, "n1475284021": { "id": "n1475284021", - "loc": [-85.6297108, 41.9353939], + "loc": [-85.629711, 41.935394], "tags": { "railway": "level_crossing" } @@ -21472,179 +11130,174 @@ }, "n1475284035": { "id": "n1475284035", - "loc": [-85.626888, 41.9311757], + "loc": [-85.626888, 41.931176], "tags": { "railway": "level_crossing" } }, "n1475293245": { "id": "n1475293245", - "loc": [-85.6286047, 41.9367881] - }, - "n1875654302": { - "id": "n1875654302", - "loc": [-85.6296367, 41.927491] + "loc": [-85.628605, 41.936788] }, "n2189099388": { "id": "n2189099388", - "loc": [-85.6312007, 41.9389988] + "loc": [-85.631201, 41.938999] }, "n2189099389": { "id": "n2189099389", - "loc": [-85.6311003, 41.9389992] + "loc": [-85.6311, 41.938999] }, "n2189099390": { "id": "n2189099390", - "loc": [-85.6310988, 41.9387847] + "loc": [-85.631099, 41.938785] }, "n2189099391": { "id": "n2189099391", - "loc": [-85.6312165, 41.9387843] + "loc": [-85.631216, 41.938784] }, "n2189099392": { "id": "n2189099392", - "loc": [-85.6312152, 41.9385857] + "loc": [-85.631215, 41.938586] }, "n2189099393": { "id": "n2189099393", - "loc": [-85.6310877, 41.9385862] + "loc": [-85.631088, 41.938586] }, "n2189099394": { "id": "n2189099394", - "loc": [-85.6310858, 41.9383161] + "loc": [-85.631086, 41.938316] }, "n2189099395": { "id": "n2189099395", - "loc": [-85.6302002, 41.9383196] + "loc": [-85.6302, 41.93832] }, "n2189099396": { "id": "n2189099396", - "loc": [-85.6302011, 41.9384472] + "loc": [-85.630201, 41.938447] }, "n2189099397": { "id": "n2189099397", - "loc": [-85.6301018, 41.9384476] + "loc": [-85.630102, 41.938448] }, "n2189099398": { "id": "n2189099398", - "loc": [-85.6301025, 41.9385419] + "loc": [-85.630103, 41.938542] }, "n2189099399": { "id": "n2189099399", - "loc": [-85.6299275, 41.9385427] + "loc": [-85.629927, 41.938543] }, "n2189099400": { "id": "n2189099400", - "loc": [-85.62993, 41.9388653] + "loc": [-85.62993, 41.938865] }, "n2189099401": { "id": "n2189099401", - "loc": [-85.630107, 41.9388645] + "loc": [-85.630107, 41.938865] }, "n2189099402": { "id": "n2189099402", - "loc": [-85.6301079, 41.9389908] + "loc": [-85.630108, 41.938991] }, "n2189099403": { "id": "n2189099403", - "loc": [-85.6301951, 41.9389904] + "loc": [-85.630195, 41.93899] }, "n2189123382": { "id": "n2189123382", - "loc": [-85.6336279, 41.9354365] + "loc": [-85.633628, 41.935437] }, "n2189123384": { "id": "n2189123384", - "loc": [-85.6328492, 41.9355177] + "loc": [-85.632849, 41.935518] }, "n2189123387": { "id": "n2189123387", - "loc": [-85.6323762, 41.9357396] + "loc": [-85.632376, 41.93574] }, "n2189123388": { "id": "n2189123388", - "loc": [-85.6315174, 41.9358966] + "loc": [-85.631517, 41.935897] }, "n2189123389": { "id": "n2189123389", - "loc": [-85.6304331, 41.936124] + "loc": [-85.630433, 41.936124] }, "n2189123390": { "id": "n2189123390", - "loc": [-85.6302075, 41.9364271] + "loc": [-85.630207, 41.936427] }, "n2189123391": { "id": "n2189123391", - "loc": [-85.6303458, 41.9367953] + "loc": [-85.630346, 41.936795] }, "n2189123392": { "id": "n2189123392", - "loc": [-85.6299601, 41.9369739] + "loc": [-85.62996, 41.936974] }, "n2189123393": { "id": "n2189123393", - "loc": [-85.6299164, 41.9374882] + "loc": [-85.629916, 41.937488] }, "n2189123394": { "id": "n2189123394", - "loc": [-85.6299455, 41.9378022] + "loc": [-85.629946, 41.937802] }, "n2189123395": { "id": "n2189123395", - "loc": [-85.6299771, 41.9379053] + "loc": [-85.629977, 41.937905] }, "n2189123396": { "id": "n2189123396", - "loc": [-85.6301597, 41.9379091] + "loc": [-85.63016, 41.937909] }, "n2189123397": { "id": "n2189123397", - "loc": [-85.6308042, 41.9377913] + "loc": [-85.630804, 41.937791] }, "n2189123398": { "id": "n2189123398", - "loc": [-85.6316885, 41.9378082] + "loc": [-85.631688, 41.937808] }, "n2189123399": { "id": "n2189123399", - "loc": [-85.6316848, 41.9380079] + "loc": [-85.631685, 41.938008] }, "n2189123400": { "id": "n2189123400", - "loc": [-85.6318449, 41.9381161] + "loc": [-85.631845, 41.938116] }, "n2189123401": { "id": "n2189123401", - "loc": [-85.6320705, 41.9381811] + "loc": [-85.63207, 41.938181] }, "n2189123402": { "id": "n2189123402", - "loc": [-85.6321433, 41.9383706] + "loc": [-85.632143, 41.938371] }, "n2189123404": { "id": "n2189123404", - "loc": [-85.632056, 41.9384355] + "loc": [-85.632056, 41.938435] }, "n2189123406": { "id": "n2189123406", - "loc": [-85.6317867, 41.9384572] + "loc": [-85.631787, 41.938457] }, "n2189123409": { "id": "n2189123409", - "loc": [-85.6316572, 41.9387281] + "loc": [-85.631657, 41.938728] }, "n2189123417": { "id": "n2189123417", - "loc": [-85.6315946, 41.93775] + "loc": [-85.631595, 41.93775] }, "n2189123419": { "id": "n2189123419", - "loc": [-85.6302641, 41.9378393] + "loc": [-85.630264, 41.937839] }, "w208640158": { "id": "w208640158", "tags": { - "area": "yes", "natural": "wetland" }, "nodes": [ @@ -21708,14 +11361,12 @@ "n1475284017", "n1475283996", "n1475284035", - "n1475284014", "n185956891" ] }, "w208639443": { "id": "w208639443", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112720", "n2189112721", "n2189112722", "n2189112723", "n2189112720"] @@ -21730,22 +11381,11 @@ }, "nodes": [ "n185977728", - "n185977729", - "n185977731", - "n185963665", - "n185959979", - "n185977733", "n185945401", "n185977734", "n185977736", "n185977738", - "n185977739", "n1475283996", - "n185974511", - "n185945138", - "n185977742", - "n185961192", - "n185967638", "n185977744", "n185977746", "n185977748", @@ -21767,7 +11407,6 @@ "w203985741": { "id": "w203985741", "tags": { - "area": "yes", "leisure": "park", "name": "Conservation Park" }, @@ -21835,7 +11474,6 @@ "w208639451": { "id": "w208639451", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112754", "n2189112755", "n2189112756", "n2189112757", "n2189112758", "n2189112759", "n2189112754"] @@ -21843,7 +11481,6 @@ "w208639452": { "id": "w208639452", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112760", "n2189112761", "n2189112766", "n2189112762", "n2189112763", "n2189112760"] @@ -21851,7 +11488,6 @@ "w206805244": { "id": "w206805244", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -21875,7 +11511,6 @@ "w208639444": { "id": "w208639444", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112724", "n2189112725", "n2189112726", "n2189112727", "n2189112724"] @@ -21883,7 +11518,6 @@ "w208639450": { "id": "w208639450", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112750", "n2189112751", "n2189112752", "n2189112753", "n2189112750"] @@ -21891,7 +11525,6 @@ "w208639448": { "id": "w208639448", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112740", "n2189112741", "n2189112742", "n2189112743", "n2189112740"] @@ -21899,7 +11532,6 @@ "w208637859": { "id": "w208637859", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -21933,7 +11565,6 @@ "w208639453": { "id": "w208639453", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112764", "n2189112765", "n2189112766", "n2189112761", "n2189112764"] @@ -21941,7 +11572,6 @@ "w208639456": { "id": "w208639456", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112774", "n2189112778", "n2189112779", "n2189112775", "n2189112776", "n2189112777", "n2189112774"] @@ -21949,7 +11579,6 @@ "w208639445": { "id": "w208639445", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112728", "n2189112729", "n2189112730", "n2189112731", "n2189112728"] @@ -21965,7 +11594,6 @@ "w208639461": { "id": "w208639461", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112792", "n2189112794", "n2189112795", "n2189112796", "n2189112793", "n2189112792"] @@ -21973,7 +11601,6 @@ "w206805241": { "id": "w206805241", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544754", "n2168544755", "n2168544756", "n2168544757", "n2168544754"] @@ -21981,7 +11608,6 @@ "w208639449": { "id": "w208639449", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112744", "n2189112745", "n2189112746", "n2189112747", "n2189112748", "n2189112749", "n2189112744"] @@ -21989,7 +11615,6 @@ "w208639455": { "id": "w208639455", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112771", "n2189112772", "n2189112773", "n2189112768", "n2189112771"] @@ -21997,7 +11622,6 @@ "w208639457": { "id": "w208639457", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112780", "n2189112781", "n2189112782", "n2189112783", "n2189112780"] @@ -22005,7 +11629,6 @@ "w208639446": { "id": "w208639446", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112732", "n2189112733", "n2189112734", "n2189112735", "n2189112732"] @@ -22013,7 +11636,6 @@ "w208639454": { "id": "w208639454", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112767", "n2189112768", "n2189112773", "n2189112769", "n2189112770", "n2189112767"] @@ -22021,8 +11643,7 @@ "w203985743": { "id": "w203985743", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2139982411", @@ -22043,27 +11664,11 @@ "highway": "residential", "name": "4th Street" }, - "nodes": [ - "n185963655", - "n1875654302", - "n185959983", - "n185963688", - "n185945405", - "n185963689", - "n185963690", - "n185945142", - "n185963691", - "n185961200", - "n1475284021", - "n1475293246", - "n1875654132", - "n1475293263" - ] + "nodes": ["n185963655", "n1475284021", "n1475293246", "n1875654132", "n1475293263"] }, "w206805242": { "id": "w206805242", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544758", "n2168544759", "n2168544760", "n2168544761", "n2168544758"] @@ -22071,7 +11676,6 @@ "w208639460": { "id": "w208639460", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112792", "n2189112793", "n2189112789", "n2189112790", "n2189112792"] @@ -22079,7 +11683,6 @@ "w208639447": { "id": "w208639447", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112736", "n2189112737", "n2189112738", "n2189112739", "n2189112736"] @@ -22087,7 +11690,6 @@ "w208639458": { "id": "w208639458", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112784", "n2189112785", "n2189112786", "n2189112787", "n2189112784"] @@ -22102,7 +11704,6 @@ "w208639459": { "id": "w208639459", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189112788", "n2189112789", "n2189112790", "n2189112791", "n2189112788"] @@ -22111,7 +11712,6 @@ "id": "w203985742", "tags": { "amenity": "shelter", - "area": "yes", "shelter_type": "picnic_shelter" }, "nodes": ["n2139982407", "n2139982408", "n2139982409", "n2139982410", "n2139982407"] @@ -22119,7 +11719,6 @@ "w206805243": { "id": "w206805243", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2168544762", "n2168544763", "n2168544764", "n2168544765", "n2168544762"] @@ -22130,43 +11729,43 @@ }, "n185967427": { "id": "n185967427", - "loc": [-85.632054, 41.951174] + "loc": [-85.63205, 41.951174] }, "n185967424": { "id": "n185967424", - "loc": [-85.6320391, 41.9499109] + "loc": [-85.632034, 41.949911] }, "n185968101": { "id": "n185968101", - "loc": [-85.6308395, 41.9511969] + "loc": [-85.630841, 41.951197] }, "n185960792": { "id": "n185960792", - "loc": [-85.632074, 41.953707] + "loc": [-85.632083, 41.953707] }, "n185961389": { "id": "n185961389", - "loc": [-85.630935, 41.959037] + "loc": [-85.630929, 41.959037] }, "n185961391": { "id": "n185961391", - "loc": [-85.632169, 41.959025] + "loc": [-85.632151, 41.959025] }, "n185965395": { "id": "n185965395", - "loc": [-85.63216, 41.959859] + "loc": [-85.632161, 41.959859] }, "n185966953": { "id": "n185966953", - "loc": [-85.630894, 41.957428] + "loc": [-85.630911, 41.957428] }, "n185966955": { "id": "n185966955", - "loc": [-85.632122, 41.957427] + "loc": [-85.63213, 41.957427] }, "n185967430": { "id": "n185967430", - "loc": [-85.632077, 41.952453] + "loc": [-85.632067, 41.952453] }, "n185967432": { "id": "n185967432", @@ -22174,15 +11773,11 @@ }, "n185967434": { "id": "n185967434", - "loc": [-85.632121, 41.955914] - }, - "n185967436": { - "id": "n185967436", - "loc": [-85.632128, 41.9583] + "loc": [-85.632111, 41.955907] }, "n185967438": { "id": "n185967438", - "loc": [-85.632187, 41.960681] + "loc": [-85.632172, 41.960681] }, "n185967440": { "id": "n185967440", @@ -22194,27 +11789,23 @@ }, "n185968104": { "id": "n185968104", - "loc": [-85.630887, 41.953714] + "loc": [-85.630869, 41.953714] }, "n185968106": { "id": "n185968106", - "loc": [-85.630883, 41.954692] + "loc": [-85.63088, 41.954692] }, "n185968108": { "id": "n185968108", - "loc": [-85.630904, 41.955913] - }, - "n185968110": { - "id": "n185968110", - "loc": [-85.630904, 41.958058] + "loc": [-85.630894, 41.955913] }, "n185968112": { "id": "n185968112", - "loc": [-85.630952, 41.960667] + "loc": [-85.630947, 41.960667] }, "n185968114": { "id": "n185968114", - "loc": [-85.630972, 41.961495] + "loc": [-85.630957, 41.961495] }, "n185968116": { "id": "n185968116", @@ -22234,7 +11825,7 @@ }, "n2208608826": { "id": "n2208608826", - "loc": [-85.6339222, 41.9486225] + "loc": [-85.633922, 41.948622] }, "w17964531": { "id": "w17964531", @@ -22266,7 +11857,6 @@ "n185968106", "n185968108", "n185966953", - "n185968110", "n185961389", "n185968112", "n185968114", @@ -22304,7 +11894,6 @@ "n185967432", "n185967434", "n185966955", - "n185967436", "n185961391", "n185965395", "n185967438", @@ -22313,271 +11902,259 @@ }, "n2199093506": { "id": "n2199093506", - "loc": [-85.6251879, 41.9478322] + "loc": [-85.625188, 41.947832] }, "n2199093505": { "id": "n2199093505", - "loc": [-85.6252076, 41.9477749] + "loc": [-85.625208, 41.947775] }, "n2199093504": { "id": "n2199093504", - "loc": [-85.6252289, 41.9477602] + "loc": [-85.625229, 41.94776] }, "n2199093503": { "id": "n2199093503", - "loc": [-85.625201, 41.9477492] + "loc": [-85.625201, 41.947749] }, "n2199093502": { "id": "n2199093502", - "loc": [-85.6251682, 41.9477066] + "loc": [-85.625168, 41.947707] }, "n2199093501": { "id": "n2199093501", - "loc": [-85.6251715, 41.947609] + "loc": [-85.625171, 41.947609] }, "n2199093500": { "id": "n2199093500", - "loc": [-85.6252125, 41.9475639] + "loc": [-85.625213, 41.947564] }, "n2199093499": { "id": "n2199093499", - "loc": [-85.6252896, 41.9475602] + "loc": [-85.62529, 41.94756] }, "n2199093498": { "id": "n2199093498", - "loc": [-85.6253027, 41.9475334] + "loc": [-85.625303, 41.947533] }, "n2199093497": { "id": "n2199093497", - "loc": [-85.6253437, 41.9474822] + "loc": [-85.625344, 41.947482] }, "n2199093496": { "id": "n2199093496", - "loc": [-85.6254421, 41.9474675] + "loc": [-85.625442, 41.947468] }, "n2199093495": { "id": "n2199093495", - "loc": [-85.6256503, 41.9474944] + "loc": [-85.62565, 41.947494] }, "n2199093494": { "id": "n2199093494", - "loc": [-85.6257257, 41.9476127] + "loc": [-85.625726, 41.947613] }, "n2199093493": { "id": "n2199093493", - "loc": [-85.6257028, 41.9477285] + "loc": [-85.625703, 41.947728] }, "n2199093492": { "id": "n2199093492", - "loc": [-85.6255339, 41.9478102] + "loc": [-85.625534, 41.94781] }, "n2199093491": { "id": "n2199093491", - "loc": [-85.6253912, 41.9478224] + "loc": [-85.625391, 41.947822] }, "n2199093490": { "id": "n2199093490", - "loc": [-85.6253043, 41.947859] + "loc": [-85.625304, 41.947859] }, "n2199093489": { "id": "n2199093489", - "loc": [-85.6252027, 41.9478846] + "loc": [-85.625203, 41.947885] }, "n2199093458": { "id": "n2199093458", - "loc": [-85.6246876, 41.9486617] + "loc": [-85.624688, 41.948662] }, "n2199093457": { "id": "n2199093457", - "loc": [-85.6243127, 41.9486583] + "loc": [-85.624313, 41.948658] }, "n2199093456": { "id": "n2199093456", - "loc": [-85.624306, 41.9490569] + "loc": [-85.624306, 41.949057] }, "n2199093455": { "id": "n2199093455", - "loc": [-85.624681, 41.9490603] + "loc": [-85.624681, 41.94906] }, "n2199093514": { "id": "n2199093514", - "loc": [-85.6236228, 41.9496059] + "loc": [-85.623623, 41.949606] }, "n2199093513": { "id": "n2199093513", - "loc": [-85.6236231, 41.9496997] + "loc": [-85.623623, 41.9497] }, "n2199093512": { "id": "n2199093512", - "loc": [-85.623357, 41.9497002] + "loc": [-85.623357, 41.9497] }, "n2199093511": { "id": "n2199093511", - "loc": [-85.6233567, 41.9496136] + "loc": [-85.623357, 41.949614] }, "n2199093508": { "id": "n2199093508", - "loc": [-85.6239735, 41.9494287] + "loc": [-85.623974, 41.949429] }, "n2199093507": { "id": "n2199093507", - "loc": [-85.6239741, 41.9496052] + "loc": [-85.623974, 41.949605] }, "n2199093488": { "id": "n2199093488", - "loc": [-85.624497, 41.9512286] + "loc": [-85.624497, 41.951229] }, "n2199093487": { "id": "n2199093487", - "loc": [-85.6244966, 41.9511259] + "loc": [-85.624497, 41.951126] }, "n2199093486": { "id": "n2199093486", - "loc": [-85.6243151, 41.9511263] + "loc": [-85.624315, 41.951126] }, "n2199093485": { "id": "n2199093485", - "loc": [-85.6243154, 41.951229] + "loc": [-85.624315, 41.951229] }, "n2199093484": { "id": "n2199093484", - "loc": [-85.6241205, 41.9508665] + "loc": [-85.624121, 41.950866] }, "n2199093483": { "id": "n2199093483", - "loc": [-85.624115, 41.9505249] + "loc": [-85.624115, 41.950525] }, "n2199093482": { "id": "n2199093482", - "loc": [-85.6243149, 41.9505231] + "loc": [-85.624315, 41.950523] }, "n2199093481": { "id": "n2199093481", - "loc": [-85.6243203, 41.9508648] + "loc": [-85.62432, 41.950865] }, "n2199093480": { "id": "n2199093480", - "loc": [-85.624393, 41.9508668] + "loc": [-85.624393, 41.950867] }, "n2199093479": { "id": "n2199093479", - "loc": [-85.6243904, 41.9505956] + "loc": [-85.62439, 41.950596] }, "n2199093478": { "id": "n2199093478", - "loc": [-85.6246727, 41.950594] + "loc": [-85.624673, 41.950594] }, "n2199093477": { "id": "n2199093477", - "loc": [-85.624675, 41.9508203] + "loc": [-85.624675, 41.95082] }, "n2199093476": { "id": "n2199093476", - "loc": [-85.6245097, 41.9508212] + "loc": [-85.62451, 41.950821] }, "n2199093475": { "id": "n2199093475", - "loc": [-85.6245101, 41.9508662] + "loc": [-85.62451, 41.950866] }, "n2199093474": { "id": "n2199093474", - "loc": [-85.6241008, 41.9493459] + "loc": [-85.624101, 41.949346] }, "n2199093473": { "id": "n2199093473", - "loc": [-85.6242442, 41.9493459] + "loc": [-85.624244, 41.949346] }, "n2199093472": { "id": "n2199093472", - "loc": [-85.6242442, 41.9493681] + "loc": [-85.624244, 41.949368] }, "n2199093471": { "id": "n2199093471", - "loc": [-85.6243397, 41.9493681] + "loc": [-85.62434, 41.949368] }, "n2199093470": { "id": "n2199093470", - "loc": [-85.6243417, 41.9493511] + "loc": [-85.624342, 41.949351] }, "n2199093469": { "id": "n2199093469", - "loc": [-85.6247251, 41.9493485] + "loc": [-85.624725, 41.949348] }, "n2199093468": { "id": "n2199093468", - "loc": [-85.6247548, 41.9504949] + "loc": [-85.624755, 41.950495] }, "n2199093467": { "id": "n2199093467", - "loc": [-85.6241214, 41.9505017] + "loc": [-85.624121, 41.950502] }, "n2199093466": { "id": "n2199093466", - "loc": [-85.6254398, 41.950174] + "loc": [-85.62544, 41.950174] }, "n2199093465": { "id": "n2199093465", - "loc": [-85.6254412, 41.9499872] + "loc": [-85.625441, 41.949987] }, "n2199093464": { "id": "n2199093464", - "loc": [-85.6255363, 41.9499876] + "loc": [-85.625536, 41.949988] }, "n2199093463": { "id": "n2199093463", - "loc": [-85.6255374, 41.9498439] + "loc": [-85.625537, 41.949844] }, "n2199093462": { "id": "n2199093462", - "loc": [-85.6255638, 41.949844] + "loc": [-85.625564, 41.949844] }, "n2199093461": { "id": "n2199093461", - "loc": [-85.6255652, 41.9496672] + "loc": [-85.625565, 41.949667] }, "n2199093460": { "id": "n2199093460", - "loc": [-85.6251823, 41.9496656] + "loc": [-85.625182, 41.949666] }, "n2199093459": { "id": "n2199093459", - "loc": [-85.6251785, 41.9501729] + "loc": [-85.625179, 41.950173] }, "n2199093510": { "id": "n2199093510", - "loc": [-85.6229922, 41.9496143] + "loc": [-85.622992, 41.949614] }, "n2199093509": { "id": "n2199093509", - "loc": [-85.6229915, 41.9494306] - }, - "n185948903": { - "id": "n185948903", - "loc": [-85.616514, 41.947449] + "loc": [-85.622991, 41.949431] }, "n185955120": { "id": "n185955120", "loc": [-85.620103, 41.951] }, - "n185955143": { - "id": "n185955143", - "loc": [-85.619784, 41.94746] - }, "n185960124": { "id": "n185960124", - "loc": [-85.615238, 41.947468] + "loc": [-85.605644, 41.947468] }, "n185961362": { "id": "n185961362", - "loc": [-85.617437, 41.947451] - }, - "n185961364": { - "id": "n185961364", - "loc": [-85.61861, 41.947456] + "loc": [-85.617437, 41.947436] }, "n185961367": { "id": "n185961367", - "loc": [-85.620088, 41.947458] + "loc": [-85.620088, 41.947429] }, "n185965105": { "id": "n185965105", @@ -22589,11 +12166,7 @@ }, "n185974697": { "id": "n185974697", - "loc": [-85.6201059, 41.950132] - }, - "n2138420778": { - "id": "n2138420778", - "loc": [-85.616948, 41.9474499] + "loc": [-85.620106, 41.950132] }, "w17967535": { "id": "w17967535", @@ -22606,7 +12179,6 @@ "w209716130": { "id": "w209716130", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199093485", "n2199093486", "n2199093487", "n2199093488", "n2199093485"] @@ -22617,17 +12189,7 @@ "highway": "residential", "name": "6th Avenue" }, - "nodes": [ - "n185960124", - "n185948903", - "n2138420778", - "n185961362", - "n185961364", - "n185955143", - "n185961367", - "n185961369", - "n185961371" - ] + "nodes": ["n185960124", "n185961362", "n185961367", "n185961369", "n185961371"] }, "w17965159": { "id": "w17965159", @@ -22640,7 +12202,6 @@ "w209716125": { "id": "w209716125", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -22666,7 +12227,6 @@ "w209716132": { "id": "w209716132", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -22692,7 +12252,6 @@ "w209716127": { "id": "w209716127", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199093475", "n2199093476", "n2199093477", "n2199093478", "n2199093479", "n2199093480", "n2199093475"] @@ -22700,7 +12259,6 @@ "w209716131": { "id": "w209716131", "tags": { - "area": "yes", "natural": "water", "water": "pond" }, @@ -22729,7 +12287,6 @@ "w209716126": { "id": "w209716126", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -22747,7 +12304,6 @@ "w209716124": { "id": "w209716124", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199093455", "n2199093456", "n2199093457", "n2199093458", "n2199093455"] @@ -22755,7 +12311,6 @@ "w209716128": { "id": "w209716128", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199093481", "n2199093482", "n2199093483", "n2199093484", "n2199093481"] @@ -22778,35 +12333,23 @@ }, "n185988165": { "id": "n185988165", - "loc": [-85.642167, 41.947657] - }, - "n185988167": { - "id": "n185988167", - "loc": [-85.642347, 41.947662] + "loc": [-85.642093, 41.94765] }, "n185988169": { "id": "n185988169", - "loc": [-85.642621, 41.947659] + "loc": [-85.642166, 41.947657] }, "n185965019": { "id": "n185965019", - "loc": [-85.6385084, 41.951127] + "loc": [-85.638508, 41.951127] }, "n1475293248": { "id": "n1475293248", - "loc": [-85.6386095, 41.9512214] - }, - "n185962639": { - "id": "n185962639", - "loc": [-85.649669, 41.949161] - }, - "n185962810": { - "id": "n185962810", - "loc": [-85.649907, 41.949157] + "loc": [-85.63861, 41.951221] }, "n185964355": { "id": "n185964355", - "loc": [-85.637412, 41.9511359] + "loc": [-85.637412, 41.951136] }, "n185965021": { "id": "n185965021", @@ -22824,17 +12367,9 @@ "id": "n185965027", "loc": [-85.638724, 41.955913] }, - "n185971415": { - "id": "n185971415", - "loc": [-85.644466, 41.949246] - }, - "n185971417": { - "id": "n185971417", - "loc": [-85.647021, 41.949193] - }, "n185971420": { "id": "n185971420", - "loc": [-85.648476, 41.949169] + "loc": [-85.649248, 41.949191] }, "n185979975": { "id": "n185979975", @@ -22857,7 +12392,7 @@ "highway": "residential", "name": "Arnold Street" }, - "nodes": ["n185949870", "n185971415", "n185971417", "n185971420", "n185962639", "n185962810"] + "nodes": ["n185949870", "n185971420"] }, "w17967618": { "id": "w17967618", @@ -22865,7 +12400,7 @@ "highway": "residential", "name": "Pierson Street" }, - "nodes": ["n185967777", "n185988165", "n185988167", "n185988169", "n185985824", "n185979975", "n185988171"] + "nodes": ["n185967777", "n185988165", "n185988169", "n185985824", "n185979975", "n185988171"] }, "w17965149": { "id": "w17965149", @@ -22885,267 +12420,267 @@ }, "n2208608800": { "id": "n2208608800", - "loc": [-85.6354294, 41.9486201] + "loc": [-85.635429, 41.94862] }, "n2199109806": { "id": "n2199109806", - "loc": [-85.6350474, 41.9477884] + "loc": [-85.635047, 41.947788] }, "n2199109804": { "id": "n2199109804", - "loc": [-85.6350476, 41.9477962] + "loc": [-85.635048, 41.947796] }, "n2199109802": { "id": "n2199109802", - "loc": [-85.635002, 41.9477969] + "loc": [-85.635002, 41.947797] }, "n2199109799": { "id": "n2199109799", - "loc": [-85.6350018, 41.9477883] + "loc": [-85.635002, 41.947788] }, "n2199109797": { "id": "n2199109797", - "loc": [-85.6349141, 41.9477897] + "loc": [-85.634914, 41.94779] }, "n2199109795": { "id": "n2199109795", - "loc": [-85.6349131, 41.9477535] + "loc": [-85.634913, 41.947753] }, "n2199109793": { "id": "n2199109793", - "loc": [-85.6349395, 41.9477531] + "loc": [-85.63494, 41.947753] }, "n2199109791": { "id": "n2199109791", - "loc": [-85.6349382, 41.9477077] + "loc": [-85.634938, 41.947708] }, "n2199109789": { "id": "n2199109789", - "loc": [-85.6351236, 41.9477049] + "loc": [-85.635124, 41.947705] }, "n2199109787": { "id": "n2199109787", - "loc": [-85.6351259, 41.9477872] + "loc": [-85.635126, 41.947787] }, "n2199109785": { "id": "n2199109785", - "loc": [-85.634972, 41.9475992] + "loc": [-85.634972, 41.947599] }, "n2199109783": { "id": "n2199109783", - "loc": [-85.6349206, 41.9475997] + "loc": [-85.634921, 41.9476] }, "n2199109770": { "id": "n2199109770", - "loc": [-85.6348499, 41.9475461] + "loc": [-85.63485, 41.947546] }, "n2199109768": { "id": "n2199109768", - "loc": [-85.6348499, 41.9475084] + "loc": [-85.63485, 41.947508] }, "n2199109765": { "id": "n2199109765", - "loc": [-85.6349241, 41.9474569] + "loc": [-85.634924, 41.947457] }, "n2199109763": { "id": "n2199109763", - "loc": [-85.634967, 41.9474564] + "loc": [-85.634967, 41.947456] }, "n2199109762": { "id": "n2199109762", - "loc": [-85.6350405, 41.9475121] + "loc": [-85.635041, 41.947512] }, "n2199109761": { "id": "n2199109761", - "loc": [-85.6350405, 41.9475419] + "loc": [-85.635041, 41.947542] }, "n2199109753": { "id": "n2199109753", - "loc": [-85.6342443, 41.9478391] + "loc": [-85.634244, 41.947839] }, "n2199109751": { "id": "n2199109751", - "loc": [-85.6342427, 41.9477927] + "loc": [-85.634243, 41.947793] }, "n2199109745": { "id": "n2199109745", - "loc": [-85.6342439, 41.9476859] + "loc": [-85.634244, 41.947686] }, "n2199109743": { "id": "n2199109743", - "loc": [-85.6342429, 41.9476575] + "loc": [-85.634243, 41.947657] }, "n2199109741": { "id": "n2199109741", - "loc": [-85.6344615, 41.9476533] + "loc": [-85.634462, 41.947653] }, "n2199109739": { "id": "n2199109739", - "loc": [-85.6344678, 41.9478348] + "loc": [-85.634468, 41.947835] }, "n2199109737": { "id": "n2199109737", - "loc": [-85.634416, 41.9480059] + "loc": [-85.634416, 41.948006] }, "n2199109735": { "id": "n2199109735", - "loc": [-85.6344145, 41.9478983] + "loc": [-85.634415, 41.947898] }, "n2199109733": { "id": "n2199109733", - "loc": [-85.6342749, 41.9478993] + "loc": [-85.634275, 41.947899] }, "n2199109731": { "id": "n2199109731", - "loc": [-85.6342753, 41.9479272] + "loc": [-85.634275, 41.947927] }, "n2199109729": { "id": "n2199109729", - "loc": [-85.6342498, 41.9479274] + "loc": [-85.63425, 41.947927] }, "n2199109727": { "id": "n2199109727", - "loc": [-85.6342505, 41.9479762] + "loc": [-85.63425, 41.947976] }, "n2199109725": { "id": "n2199109725", - "loc": [-85.6342743, 41.947976] + "loc": [-85.634274, 41.947976] }, "n2199109723": { "id": "n2199109723", - "loc": [-85.6342747, 41.948007] + "loc": [-85.634275, 41.948007] }, "n2199109721": { "id": "n2199109721", - "loc": [-85.6343415, 41.9476355] + "loc": [-85.634342, 41.947635] }, "n2199109719": { "id": "n2199109719", - "loc": [-85.6343391, 41.9474973] + "loc": [-85.634339, 41.947497] }, "n2199109717": { "id": "n2199109717", - "loc": [-85.6343133, 41.9474798] + "loc": [-85.634313, 41.94748] }, "n2199109715": { "id": "n2199109715", - "loc": [-85.6342874, 41.9474737] + "loc": [-85.634287, 41.947474] }, "n2199109709": { "id": "n2199109709", - "loc": [-85.6349804, 41.94815] + "loc": [-85.63498, 41.94815] }, "n2199109707": { "id": "n2199109707", - "loc": [-85.6348915, 41.9481505] + "loc": [-85.634891, 41.94815] }, "n2199109705": { "id": "n2199109705", - "loc": [-85.6348917, 41.9481692] + "loc": [-85.634892, 41.948169] }, "n2199109702": { "id": "n2199109702", - "loc": [-85.6348522, 41.9481694] + "loc": [-85.634852, 41.948169] }, "n2199109700": { "id": "n2199109700", - "loc": [-85.6348532, 41.9482679] + "loc": [-85.634853, 41.948268] }, "n2199109698": { "id": "n2199109698", - "loc": [-85.6348315, 41.948268] + "loc": [-85.634832, 41.948268] }, "n2199109696": { "id": "n2199109696", - "loc": [-85.6348318, 41.9482955] + "loc": [-85.634832, 41.948296] }, "n2199109694": { "id": "n2199109694", - "loc": [-85.6349653, 41.9482946] + "loc": [-85.634965, 41.948295] }, "n2199109692": { "id": "n2199109692", - "loc": [-85.6349656, 41.9483211] + "loc": [-85.634966, 41.948321] }, "n2199109690": { "id": "n2199109690", - "loc": [-85.634999, 41.9483209] + "loc": [-85.634999, 41.948321] }, "n2199109688": { "id": "n2199109688", - "loc": [-85.6349987, 41.9482947] + "loc": [-85.634999, 41.948295] }, "n2199109686": { "id": "n2199109686", - "loc": [-85.6351753, 41.9482935] + "loc": [-85.635175, 41.948293] }, "n2199109684": { "id": "n2199109684", - "loc": [-85.6351749, 41.9482617] + "loc": [-85.635175, 41.948262] }, "n2199109682": { "id": "n2199109682", - "loc": [-85.6351588, 41.9482618] + "loc": [-85.635159, 41.948262] }, "n2199109680": { "id": "n2199109680", - "loc": [-85.6351575, 41.9481518] + "loc": [-85.635158, 41.948152] }, "n2199109678": { "id": "n2199109678", - "loc": [-85.6350671, 41.9481524] + "loc": [-85.635067, 41.948152] }, "n2199109676": { "id": "n2199109676", - "loc": [-85.6350649, 41.9479659] + "loc": [-85.635065, 41.947966] }, "n2199109674": { "id": "n2199109674", - "loc": [-85.6349785, 41.9479665] + "loc": [-85.634979, 41.947966] }, "n2199109671": { "id": "n2199109671", - "loc": [-85.6343069, 41.9483263] + "loc": [-85.634307, 41.948326] }, "n2199109669": { "id": "n2199109669", - "loc": [-85.6343052, 41.9482981] + "loc": [-85.634305, 41.948298] }, "n2199109658": { "id": "n2199109658", - "loc": [-85.6343314, 41.9480549] + "loc": [-85.634331, 41.948055] }, "n2199109656": { "id": "n2199109656", - "loc": [-85.6343305, 41.9480461] + "loc": [-85.634331, 41.948046] }, "n2199109654": { "id": "n2199109654", - "loc": [-85.634435, 41.9480468] + "loc": [-85.634435, 41.948047] }, "n2199109652": { "id": "n2199109652", - "loc": [-85.6344342, 41.9483746] + "loc": [-85.634434, 41.948375] }, "n2199109650": { "id": "n2199109650", - "loc": [-85.6344629, 41.9483727] + "loc": [-85.634463, 41.948373] }, "n2199109648": { "id": "n2199109648", - "loc": [-85.6344637, 41.9484561] + "loc": [-85.634464, 41.948456] }, "n2199109645": { "id": "n2199109645", - "loc": [-85.63443, 41.9484567] + "loc": [-85.63443, 41.948457] }, "n2199109642": { "id": "n2199109642", - "loc": [-85.6344317, 41.948505] + "loc": [-85.634432, 41.948505] }, "n185964352": { "id": "n185964352", - "loc": [-85.6373958, 41.9489943] + "loc": [-85.637396, 41.948994] }, "n185964351": { "id": "n185964351", @@ -23153,147 +12688,147 @@ }, "n2208608825": { "id": "n2208608825", - "loc": [-85.6354483, 41.9494241] + "loc": [-85.635448, 41.949424] }, "n2208608823": { "id": "n2208608823", - "loc": [-85.6360418, 41.949416] + "loc": [-85.636042, 41.949416] }, "n2208608821": { "id": "n2208608821", - "loc": [-85.6360458, 41.9495802] + "loc": [-85.636046, 41.94958] }, "n2208608811": { "id": "n2208608811", - "loc": [-85.6357458, 41.9495843] + "loc": [-85.635746, 41.949584] }, "n2208608808": { "id": "n2208608808", - "loc": [-85.6357508, 41.9497835] + "loc": [-85.635751, 41.949784] }, "n2208608806": { "id": "n2208608806", - "loc": [-85.6354573, 41.9497875] + "loc": [-85.635457, 41.949787] }, "n2208608795": { "id": "n2208608795", - "loc": [-85.6354595, 41.9498778] + "loc": [-85.635459, 41.949878] }, "n2199109638": { "id": "n2199109638", - "loc": [-85.6349605, 41.949749] + "loc": [-85.634961, 41.949749] }, "n2199109636": { "id": "n2199109636", - "loc": [-85.6349605, 41.9497639] + "loc": [-85.634961, 41.949764] }, "n2199109634": { "id": "n2199109634", - "loc": [-85.6349061, 41.94971] + "loc": [-85.634906, 41.94971] }, "n2199109632": { "id": "n2199109632", - "loc": [-85.6349048, 41.9496569] + "loc": [-85.634905, 41.949657] }, "n2199109630": { "id": "n2199109630", - "loc": [-85.6348835, 41.9496571] + "loc": [-85.634884, 41.949657] }, "n2199109628": { "id": "n2199109628", - "loc": [-85.6348829, 41.9497103] + "loc": [-85.634883, 41.94971] }, "n2199109626": { "id": "n2199109626", - "loc": [-85.635227, 41.9497738] + "loc": [-85.635227, 41.949774] }, "n2199109624": { "id": "n2199109624", - "loc": [-85.6352184, 41.9497787] + "loc": [-85.635218, 41.949779] }, "n2199109622": { "id": "n2199109622", - "loc": [-85.6351181, 41.9497806] + "loc": [-85.635118, 41.949781] }, "n2199109620": { "id": "n2199109620", - "loc": [-85.6351181, 41.9497456] + "loc": [-85.635118, 41.949746] }, "n2199109618": { "id": "n2199109618", - "loc": [-85.6348842, 41.9497651] + "loc": [-85.634884, 41.949765] }, "n2199109616": { "id": "n2199109616", - "loc": [-85.6348827, 41.9496238] + "loc": [-85.634883, 41.949624] }, "n2199109615": { "id": "n2199109615", - "loc": [-85.6351268, 41.9496206] + "loc": [-85.635127, 41.949621] }, "n2199109614": { "id": "n2199109614", - "loc": [-85.6351261, 41.9495891] + "loc": [-85.635126, 41.949589] }, "n2199109613": { "id": "n2199109613", - "loc": [-85.6351957, 41.9495881] + "loc": [-85.635196, 41.949588] }, "n2199109612": { "id": "n2199109612", - "loc": [-85.6351924, 41.9494515] + "loc": [-85.635192, 41.949452] }, "n2199109611": { "id": "n2199109611", - "loc": [-85.6353997, 41.9494488] + "loc": [-85.6354, 41.949449] }, "n2199109610": { "id": "n2199109610", - "loc": [-85.6354074, 41.9497715] + "loc": [-85.635407, 41.949771] }, "n2189015681": { "id": "n2189015681", - "loc": [-85.6344229, 41.9509639] + "loc": [-85.634423, 41.950964] }, "n2189015677": { "id": "n2189015677", - "loc": [-85.634424, 41.9507396] + "loc": [-85.634424, 41.95074] }, "n2138493843": { "id": "n2138493843", - "loc": [-85.6343935, 41.9502836] + "loc": [-85.634394, 41.950284] }, "n2138493840": { "id": "n2138493840", - "loc": [-85.634398, 41.9506264] + "loc": [-85.634398, 41.950626] }, "n354002838": { "id": "n354002838", - "loc": [-85.6345197, 41.9510631] + "loc": [-85.63452, 41.951063] }, "n2114807590": { "id": "n2114807590", - "loc": [-85.634511, 41.9499767] + "loc": [-85.634511, 41.949977] }, "n185964353": { "id": "n185964353", - "loc": [-85.6374092, 41.9498755] + "loc": [-85.637409, 41.949875] }, "n1819849180": { "id": "n1819849180", - "loc": [-85.6348236, 41.94996] + "loc": [-85.634824, 41.94996] }, "n1819849115": { "id": "n1819849115", - "loc": [-85.6354372, 41.9499538] + "loc": [-85.635437, 41.949954] }, "n1819848921": { "id": "n1819848921", - "loc": [-85.6348439, 41.951064] + "loc": [-85.634844, 41.951064] }, "n1819848885": { "id": "n1819848885", - "loc": [-85.6354575, 41.9510578] + "loc": [-85.635458, 41.951058] }, "n185984281": { "id": "n185984281", @@ -23301,51 +12836,51 @@ }, "n2208608827": { "id": "n2208608827", - "loc": [-85.6339169, 41.9473191] + "loc": [-85.633917, 41.947319] }, "n2199109749": { "id": "n2199109749", - "loc": [-85.6342082, 41.9477934] + "loc": [-85.634208, 41.947793] }, "n2199109747": { "id": "n2199109747", - "loc": [-85.6342045, 41.9476867] + "loc": [-85.634204, 41.947687] }, "n2199109713": { "id": "n2199109713", - "loc": [-85.6342404, 41.9474746] + "loc": [-85.63424, 41.947475] }, "n2199109711": { "id": "n2199109711", - "loc": [-85.6342404, 41.9476355] + "loc": [-85.63424, 41.947635] }, "n2199109673": { "id": "n2199109673", - "loc": [-85.6340886, 41.9483282] + "loc": [-85.634089, 41.948328] }, "n2199109667": { "id": "n2199109667", - "loc": [-85.6342403, 41.9482988] + "loc": [-85.63424, 41.948299] }, "n2199109665": { "id": "n2199109665", - "loc": [-85.6342386, 41.9482116] + "loc": [-85.634239, 41.948212] }, "n2199109662": { "id": "n2199109662", - "loc": [-85.6340861, 41.9482135] + "loc": [-85.634086, 41.948214] }, "n2199109660": { "id": "n2199109660", - "loc": [-85.6340802, 41.9480562] + "loc": [-85.63408, 41.948056] }, "n2199109640": { "id": "n2199109640", - "loc": [-85.6340928, 41.9485063] + "loc": [-85.634093, 41.948506] }, "n354031366": { "id": "n354031366", - "loc": [-85.6341667, 41.9477778], + "loc": [-85.634167, 41.947778], "tags": { "amenity": "place_of_worship", "name": "Faith Tabernacle Church", @@ -23354,63 +12889,63 @@ }, "n2189015686": { "id": "n2189015686", - "loc": [-85.6337798, 41.95099] + "loc": [-85.63378, 41.95099] }, "n2189015684": { "id": "n2189015684", - "loc": [-85.6337794, 41.9509674] + "loc": [-85.633779, 41.950967] }, "n2189015673": { "id": "n2189015673", - "loc": [-85.6337501, 41.9507457] + "loc": [-85.63375, 41.950746] }, "n2189015669": { "id": "n2189015669", - "loc": [-85.6337501, 41.9506974] + "loc": [-85.63375, 41.950697] }, "n2189015665": { "id": "n2189015665", - "loc": [-85.6339034, 41.9506959] + "loc": [-85.633903, 41.950696] }, "n2189015662": { "id": "n2189015662", - "loc": [-85.6339015, 41.950436] + "loc": [-85.633901, 41.950436] }, "n2189015658": { "id": "n2189015658", - "loc": [-85.6334916, 41.9504376] + "loc": [-85.633492, 41.950438] }, "n2189015655": { "id": "n2189015655", - "loc": [-85.6334939, 41.9507558] + "loc": [-85.633494, 41.950756] }, "n2189015650": { "id": "n2189015650", - "loc": [-85.6334543, 41.950756] + "loc": [-85.633454, 41.950756] }, "n2189015649": { "id": "n2189015649", - "loc": [-85.633456, 41.9509915] + "loc": [-85.633456, 41.950992] }, "n2138493842": { "id": "n2138493842", - "loc": [-85.6339937, 41.9502836] + "loc": [-85.633994, 41.950284] }, "n2138493841": { "id": "n2138493841", - "loc": [-85.6339983, 41.9506281] + "loc": [-85.633998, 41.950628] }, "n2114807579": { "id": "n2114807579", - "loc": [-85.6333644, 41.9510682] + "loc": [-85.633364, 41.951068] }, "n2114807573": { "id": "n2114807573", - "loc": [-85.6333557, 41.9499819] + "loc": [-85.633356, 41.949982] }, "n354031330": { "id": "n354031330", - "loc": [-85.6341667, 41.9497222], + "loc": [-85.634167, 41.949722], "tags": { "amenity": "place_of_worship", "name": "Trinity Episcopal Church", @@ -23463,7 +12998,7 @@ }, "n185986158": { "id": "n185986158", - "loc": [-85.6333607, 41.9582301], + "loc": [-85.633361, 41.95823], "tags": { "highway": "turning_circle" } @@ -23479,7 +13014,6 @@ "w208627205": { "id": "w208627205", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23502,7 +13036,6 @@ "id": "w209717042", "tags": { "amenity": "place_of_worship", - "area": "yes", "building": "yes", "denomination": "presbyterian", "name": "First Presbyterian Church", @@ -23533,7 +13066,6 @@ "w209717045": { "id": "w209717045", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109711", "n2199109713", "n2199109715", "n2199109717", "n2199109719", "n2199109721", "n2199109711"] @@ -23541,7 +13073,6 @@ "w209717047": { "id": "w209717047", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23559,7 +13090,6 @@ "w209717044": { "id": "w209717044", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23604,7 +13134,6 @@ "w209717050": { "id": "w209717050", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23702,7 +13231,6 @@ "w209717049": { "id": "w209717049", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23720,7 +13248,6 @@ "w203841840": { "id": "w203841840", "tags": { - "area": "yes", "leisure": "playground" }, "nodes": ["n2138493840", "n2138493841", "n2138493842", "n2138493843", "n2138493840"] @@ -23729,7 +13256,6 @@ "id": "w209717043", "tags": { "amenity": "place_of_worship", - "area": "yes", "building": "church", "denomination": "methodist", "name": "First United Methodist Church", @@ -23766,7 +13292,6 @@ "w209717046": { "id": "w209717046", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -23784,34 +13309,33 @@ "w210822777": { "id": "w210822777", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2208608806", "n2208608808", "n2208608811", "n2208608821", "n2208608823", "n2208608825", "n2208608806"] }, "n185954965": { "id": "n185954965", - "loc": [-85.6191189, 41.9441922] + "loc": [-85.619119, 41.944192] }, "n185954968": { "id": "n185954968", - "loc": [-85.6194384, 41.9442405] + "loc": [-85.619438, 41.94424] }, "n185954970": { "id": "n185954970", - "loc": [-85.6196543, 41.9443252] + "loc": [-85.619654, 41.944325] }, "n185954972": { "id": "n185954972", - "loc": [-85.6197862, 41.9444539] + "loc": [-85.619786, 41.944454] }, "n354002931": { "id": "n354002931", - "loc": [-85.6198991, 41.9455269] + "loc": [-85.619899, 41.945527] }, "n354030853": { "id": "n354030853", - "loc": [-85.6219444, 41.9455556], + "loc": [-85.621944, 41.945556], "tags": { "amenity": "place_of_worship", "name": "Grant Chapel", @@ -23820,7 +13344,7 @@ }, "n367815963": { "id": "n367815963", - "loc": [-85.6202778, 41.9461111], + "loc": [-85.620278, 41.946111], "tags": { "building": "yes", "name": "George Washington Carver Community Center" @@ -23984,91 +13508,91 @@ }, "n1475283972": { "id": "n1475283972", - "loc": [-85.6198991, 41.9437179] + "loc": [-85.619899, 41.943718] }, "n1475283982": { "id": "n1475283982", - "loc": [-85.6195022, 41.9433463] + "loc": [-85.619502, 41.943346] }, "n1475284007": { "id": "n1475284007", - "loc": [-85.6193037, 41.9433383] + "loc": [-85.619304, 41.943338] }, "n1475284040": { "id": "n1475284040", - "loc": [-85.6197329, 41.9434121] + "loc": [-85.619733, 41.943412] }, "n1475284044": { "id": "n1475284044", - "loc": [-85.6198756, 41.9435363] + "loc": [-85.619876, 41.943536] }, "n1475284050": { "id": "n1475284050", - "loc": [-85.6199689, 41.9432106] + "loc": [-85.619969, 41.943211] }, "n1475284053": { "id": "n1475284053", - "loc": [-85.6198943, 41.9432921] + "loc": [-85.619894, 41.943292] }, "n185954974": { "id": "n185954974", - "loc": [-85.6198296, 41.94473] + "loc": [-85.61983, 41.94473] }, "n185954977": { "id": "n185954977", - "loc": [-85.6200474, 41.9447384] + "loc": [-85.620047, 41.944738] }, "n2196831365": { "id": "n2196831365", - "loc": [-85.6202259, 41.9460883] + "loc": [-85.620226, 41.946088] }, "n2196831366": { "id": "n2196831366", - "loc": [-85.6202245, 41.9458642] + "loc": [-85.620225, 41.945864] }, "n2196831367": { "id": "n2196831367", - "loc": [-85.6205184, 41.9458631] + "loc": [-85.620518, 41.945863] }, "n2196831368": { "id": "n2196831368", - "loc": [-85.6205189, 41.9459437] + "loc": [-85.620519, 41.945944] }, "n2196831369": { "id": "n2196831369", - "loc": [-85.6203879, 41.9459441] + "loc": [-85.620388, 41.945944] }, "n2196831370": { "id": "n2196831370", - "loc": [-85.6203888, 41.9460878] + "loc": [-85.620389, 41.946088] }, "n2196831371": { "id": "n2196831371", - "loc": [-85.6184046, 41.9465663] + "loc": [-85.618405, 41.946566] }, "n2196831372": { "id": "n2196831372", - "loc": [-85.6191563, 41.9465618] + "loc": [-85.619156, 41.946562] }, "n2196831373": { "id": "n2196831373", - "loc": [-85.6191536, 41.946319] + "loc": [-85.619154, 41.946319] }, "n2196831374": { "id": "n2196831374", - "loc": [-85.6187356, 41.9463216] + "loc": [-85.618736, 41.946322] }, "n2196831375": { "id": "n2196831375", - "loc": [-85.6187334, 41.9461197] + "loc": [-85.618733, 41.94612] }, "n2196831376": { "id": "n2196831376", - "loc": [-85.6193167, 41.9461162] + "loc": [-85.619317, 41.946116] }, "n2196831377": { "id": "n2196831377", - "loc": [-85.6193156, 41.9460229] + "loc": [-85.619316, 41.946023] }, "n2196831378": { "id": "n2196831378", @@ -24076,75 +13600,75 @@ }, "n2196831379": { "id": "n2196831379", - "loc": [-85.6196237, 41.9461712] + "loc": [-85.619624, 41.946171] }, "n2196831380": { "id": "n2196831380", - "loc": [-85.6197702, 41.9461703] + "loc": [-85.61977, 41.94617] }, "n2196831381": { "id": "n2196831381", - "loc": [-85.6197685, 41.9460202] + "loc": [-85.619769, 41.94602] }, "n2196831382": { "id": "n2196831382", - "loc": [-85.6197323, 41.9460204] + "loc": [-85.619732, 41.94602] }, "n2196831383": { "id": "n2196831383", - "loc": [-85.6197305, 41.9458563] + "loc": [-85.619731, 41.945856] }, "n2196831384": { "id": "n2196831384", - "loc": [-85.6196165, 41.945857] + "loc": [-85.619617, 41.945857] }, "n2196831385": { "id": "n2196831385", - "loc": [-85.6196156, 41.9457764] + "loc": [-85.619616, 41.945776] }, "n2196831386": { "id": "n2196831386", - "loc": [-85.6194472, 41.9457775] + "loc": [-85.619447, 41.945777] }, "n2196831387": { "id": "n2196831387", - "loc": [-85.6194151, 41.9457777] + "loc": [-85.619415, 41.945778] }, "n2196831388": { "id": "n2196831388", - "loc": [-85.6183779, 41.9457883] + "loc": [-85.618378, 41.945788] }, "n2196831389": { "id": "n2196831389", - "loc": [-85.6183842, 41.9461317] + "loc": [-85.618384, 41.946132] }, "n2196831390": { "id": "n2196831390", - "loc": [-85.6185026, 41.9461304] + "loc": [-85.618503, 41.94613] }, "n2196831391": { "id": "n2196831391", - "loc": [-85.6185061, 41.9463194] + "loc": [-85.618506, 41.946319] }, "n2196831392": { "id": "n2196831392", - "loc": [-85.6184001, 41.9463205] + "loc": [-85.6184, 41.94632] }, "n2196831393": { "id": "n2196831393", - "loc": [-85.6182482, 41.9464163] + "loc": [-85.618248, 41.946416] }, "n2196831394": { "id": "n2196831394", - "loc": [-85.6182467, 41.9463193] + "loc": [-85.618247, 41.946319] }, "n2196831395": { "id": "n2196831395", - "loc": [-85.6180389, 41.946321] + "loc": [-85.618039, 41.946321] }, "n2196831397": { "id": "n2196831397", - "loc": [-85.6180404, 41.946418] + "loc": [-85.61804, 41.946418] }, "n185947303": { "id": "n185947303", @@ -24298,10 +13822,6 @@ "id": "n185947472", "loc": [-85.615878, 41.94507] }, - "n185955153": { - "id": "n185955153", - "loc": [-85.620087, 41.947701] - }, "n185960690": { "id": "n185960690", "loc": [-85.620141, 41.951901] @@ -24310,14 +13830,6 @@ "id": "n185978817", "loc": [-85.617193, 41.954706] }, - "n185985916": { - "id": "n185985916", - "loc": [-85.620088, 41.94758] - }, - "n185985918": { - "id": "n185985918", - "loc": [-85.620133, 41.951538] - }, "n185985919": { "id": "n185985919", "loc": [-85.62013, 41.952104] @@ -24372,59 +13884,59 @@ }, "n1475283975": { "id": "n1475283975", - "loc": [-85.6150935, 41.9434118] + "loc": [-85.615094, 41.943412] }, "n1475283979": { "id": "n1475283979", - "loc": [-85.6193367, 41.9430252] + "loc": [-85.619337, 41.943025] }, "n1475283989": { "id": "n1475283989", - "loc": [-85.6104771, 41.9455269] + "loc": [-85.610477, 41.945527] }, "n1475283990": { "id": "n1475283990", - "loc": [-85.6104771, 41.9437179] + "loc": [-85.610477, 41.943718] }, "n1475283994": { "id": "n1475283994", - "loc": [-85.6198042, 41.9429763] + "loc": [-85.619804, 41.942976] }, "n1475283998": { "id": "n1475283998", - "loc": [-85.6192101, 41.9426716] + "loc": [-85.61921, 41.942672] }, "n1475284000": { "id": "n1475284000", - "loc": [-85.6198622, 41.942836] + "loc": [-85.619862, 41.942836] }, "n1475284002": { "id": "n1475284002", - "loc": [-85.6163262, 41.9427688] + "loc": [-85.616326, 41.942769] }, "n1475284006": { "id": "n1475284006", - "loc": [-85.6179527, 41.9429168] + "loc": [-85.617953, 41.942917] }, "n1475284029": { "id": "n1475284029", - "loc": [-85.6197195, 41.9427278] + "loc": [-85.61972, 41.942728] }, "n1475284038": { "id": "n1475284038", - "loc": [-85.6194405, 41.9427837] + "loc": [-85.61944, 41.942784] }, "n1475284052": { "id": "n1475284052", - "loc": [-85.6153225, 41.942841] + "loc": [-85.615323, 41.942841] }, "n1475284055": { "id": "n1475284055", - "loc": [-85.6129233, 41.9437179] + "loc": [-85.612923, 41.943718] }, "n2139966627": { "id": "n2139966627", - "loc": [-85.61958, 41.9427558] + "loc": [-85.61958, 41.942756] }, "w17966773": { "id": "w17966773", @@ -24487,7 +13999,6 @@ "w209470310": { "id": "w209470310", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2196831393", "n2196831394", "n2196831395", "n2196831397", "n2196831393"] @@ -24559,8 +14070,8 @@ "w134150798": { "id": "w134150798", "tags": { - "amenity": "grave_yard", - "name": "Riverside Cemetery" + "name": "Riverside Cemetery", + "landuse": "cemetery" }, "nodes": [ "n354002931", @@ -24589,7 +14100,6 @@ "w209470308": { "id": "w209470308", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2196831365", "n2196831366", "n2196831367", "n2196831368", "n2196831369", "n2196831370", "n2196831365"] @@ -24622,7 +14132,6 @@ "w209470309": { "id": "w209470309", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -24665,12 +14174,9 @@ "n185985912", "n185985914", "n185961367", - "n185985916", - "n185955153", "n185965105", "n185974697", "n185955120", - "n185985918", "n185960690", "n185985919", "n185985920", @@ -24703,214 +14209,182 @@ }, "n185963110": { "id": "n185963110", - "loc": [-85.6204416, 41.9408882] + "loc": [-85.620442, 41.940888] }, "n2139966628": { "id": "n2139966628", - "loc": [-85.6196431, 41.9426467], + "loc": [-85.619643, 41.942647], "tags": { "leisure": "fishing" } }, "n2139966630": { "id": "n2139966630", - "loc": [-85.6199354, 41.9429616] + "loc": [-85.619935, 41.942962] }, "n2199127051": { "id": "n2199127051", - "loc": [-85.6170556, 41.939696] + "loc": [-85.617056, 41.939696] }, "n2199127052": { "id": "n2199127052", - "loc": [-85.6170536, 41.9392909] + "loc": [-85.617054, 41.939291] }, "n2199127053": { "id": "n2199127053", - "loc": [-85.6172067, 41.9392905] + "loc": [-85.617207, 41.93929] }, "n2199127054": { "id": "n2199127054", - "loc": [-85.6172061, 41.9391853] + "loc": [-85.617206, 41.939185] }, "n2199127055": { "id": "n2199127055", - "loc": [-85.6171481, 41.9391854] + "loc": [-85.617148, 41.939185] }, "n2199127060": { "id": "n2199127060", - "loc": [-85.6167389, 41.9392896] + "loc": [-85.616739, 41.93929] }, "n2199127061": { "id": "n2199127061", - "loc": [-85.6168728, 41.9392892] + "loc": [-85.616873, 41.939289] }, "n2199127062": { "id": "n2199127062", - "loc": [-85.6168747, 41.9396965] + "loc": [-85.616875, 41.939696] }, "n2199127071": { "id": "n2199127071", - "loc": [-85.620196, 41.9399446] + "loc": [-85.620196, 41.939945] }, "n2199127072": { "id": "n2199127072", - "loc": [-85.620193, 41.9397316] + "loc": [-85.620193, 41.939732] }, "n2199127073": { "id": "n2199127073", - "loc": [-85.6200381, 41.9397328] + "loc": [-85.620038, 41.939733] }, "n2199127074": { "id": "n2199127074", - "loc": [-85.6200412, 41.9399458] + "loc": [-85.620041, 41.939946] }, "n2199127075": { "id": "n2199127075", - "loc": [-85.6203606, 41.9399939] + "loc": [-85.620361, 41.939994] }, "n2199127076": { "id": "n2199127076", - "loc": [-85.6205527, 41.9399922] + "loc": [-85.620553, 41.939992] }, "n2199127077": { "id": "n2199127077", - "loc": [-85.6205482, 41.9397115] + "loc": [-85.620548, 41.939712] }, "n2199127078": { "id": "n2199127078", - "loc": [-85.6204132, 41.9397124] + "loc": [-85.620413, 41.939712] }, "n2199127079": { "id": "n2199127079", - "loc": [-85.6204144, 41.9396341] + "loc": [-85.620414, 41.939634] }, "n2199127080": { "id": "n2199127080", - "loc": [-85.6205699, 41.9396324] + "loc": [-85.62057, 41.939632] }, "n2199127081": { "id": "n2199127081", - "loc": [-85.6205722, 41.939498] + "loc": [-85.620572, 41.939498] }, "n2199127082": { "id": "n2199127082", - "loc": [-85.6204064, 41.9394997] + "loc": [-85.620406, 41.9395] }, "n2199127083": { "id": "n2199127083", - "loc": [-85.6204087, 41.939561] + "loc": [-85.620409, 41.939561] }, "n2199127084": { "id": "n2199127084", - "loc": [-85.6203103, 41.9395618] + "loc": [-85.62031, 41.939562] }, "n2199127085": { "id": "n2199127085", - "loc": [-85.620308, 41.9396069] + "loc": [-85.620308, 41.939607] }, "n2199127086": { "id": "n2199127086", - "loc": [-85.6200347, 41.9396086] + "loc": [-85.620035, 41.939609] }, "n2199127087": { "id": "n2199127087", - "loc": [-85.6200382, 41.9397141] + "loc": [-85.620038, 41.939714] }, "n2199127088": { "id": "n2199127088", - "loc": [-85.6202257, 41.9397149] + "loc": [-85.620226, 41.939715] }, "n2199127089": { "id": "n2199127089", - "loc": [-85.6202269, 41.9399182] + "loc": [-85.620227, 41.939918] }, "n2199127090": { "id": "n2199127090", - "loc": [-85.6203595, 41.9399199] + "loc": [-85.62036, 41.93992] }, "n2199127091": { "id": "n2199127091", - "loc": [-85.6212335, 41.939688] + "loc": [-85.621234, 41.939688] }, "n2199127092": { "id": "n2199127092", - "loc": [-85.6212328, 41.939595] + "loc": [-85.621233, 41.939595] }, "n2199127093": { "id": "n2199127093", - "loc": [-85.6208807, 41.9395966] + "loc": [-85.620881, 41.939597] }, "n2199127094": { "id": "n2199127094", - "loc": [-85.6208815, 41.9396896] + "loc": [-85.620881, 41.93969] }, "n2199127095": { "id": "n2199127095", - "loc": [-85.6208676, 41.9396872] + "loc": [-85.620868, 41.939687] }, "n2199127096": { "id": "n2199127096", - "loc": [-85.6208583, 41.9393539] + "loc": [-85.620858, 41.939354] }, "n2199127097": { "id": "n2199127097", - "loc": [-85.6207006, 41.9393563] + "loc": [-85.620701, 41.939356] }, "n2199127098": { "id": "n2199127098", - "loc": [-85.6207099, 41.9396896] - }, - "n185967054": { - "id": "n185967054", - "loc": [-85.6173384, 41.9356126] - }, - "n185967063": { - "id": "n185967063", - "loc": [-85.617371, 41.936243] - }, - "n185967065": { - "id": "n185967065", - "loc": [-85.617337, 41.936299] - }, - "n185967068": { - "id": "n185967068", - "loc": [-85.617321, 41.936373] - }, - "n185967070": { - "id": "n185967070", - "loc": [-85.6173562, 41.9366969] - }, - "n185967074": { - "id": "n185967074", - "loc": [-85.6173635, 41.9377414] - }, - "n185967075": { - "id": "n185967075", - "loc": [-85.6173696, 41.9381886] - }, - "n185967076": { - "id": "n185967076", - "loc": [-85.617372, 41.938535] + "loc": [-85.62071, 41.93969] }, "n2199127056": { "id": "n2199127056", - "loc": [-85.617147, 41.9389616] + "loc": [-85.617147, 41.938962] }, "n2199127057": { "id": "n2199127057", - "loc": [-85.6172136, 41.9389614] + "loc": [-85.617214, 41.938961] }, "n2199127058": { "id": "n2199127058", - "loc": [-85.6172123, 41.9386909] + "loc": [-85.617212, 41.938691] }, "n2199127059": { "id": "n2199127059", - "loc": [-85.616736, 41.9386922] + "loc": [-85.616736, 41.938692] }, "n2203921041": { "id": "n2203921041", - "loc": [-85.6173018, 41.9346369] + "loc": [-85.617302, 41.934637] }, "w203983952": { "id": "w203983952", @@ -24922,7 +14396,6 @@ "w209718301": { "id": "w209718301", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -24944,7 +14417,6 @@ "w209718304": { "id": "w209718304", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199127071", "n2199127072", "n2199127073", "n2199127074", "n2199127071"] @@ -24968,7 +14440,6 @@ "w203983953": { "id": "w203983953", "tags": { - "area": "yes", "leisure": "park", "name": "Marina Park" }, @@ -24992,23 +14463,11 @@ "highway": "residential", "name": "14th Street" }, - "nodes": [ - "n2203921041", - "n185967054", - "n185967063", - "n185967065", - "n185967068", - "n185967070", - "n185967074", - "n185967075", - "n185967076", - "n185967077" - ] + "nodes": ["n2203921041", "n185967077"] }, "w209718306": { "id": "w209718306", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199127091", "n2199127092", "n2199127093", "n2199127094", "n2199127091"] @@ -25016,7 +14475,6 @@ "w209718307": { "id": "w209718307", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199127095", "n2199127096", "n2199127097", "n2199127098", "n2199127095"] @@ -25024,7 +14482,6 @@ "w209718305": { "id": "w209718305", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -25057,19 +14514,19 @@ }, "n2114807561": { "id": "n2114807561", - "loc": [-85.6297681, 41.9524688] + "loc": [-85.629768, 41.952469] }, "n2114807597": { "id": "n2114807597", - "loc": [-85.6296517, 41.952563] + "loc": [-85.629652, 41.952563] }, "n185960197": { "id": "n185960197", - "loc": [-85.629676, 41.9537314] + "loc": [-85.629676, 41.953731] }, "n185978791": { "id": "n185978791", - "loc": [-85.6244542, 41.9547066] + "loc": [-85.624454, 41.954707] }, "w17967573": { "id": "w17967573", @@ -25113,59 +14570,59 @@ }, "n1819848862": { "id": "n1819848862", - "loc": [-85.6346087, 41.9545845] + "loc": [-85.634609, 41.954585] }, "n1819848935": { "id": "n1819848935", - "loc": [-85.6345948, 41.9537717] + "loc": [-85.634595, 41.953772] }, "n1819848973": { "id": "n1819848973", - "loc": [-85.6334247, 41.9537827] + "loc": [-85.633425, 41.953783] }, "n1819848997": { "id": "n1819848997", - "loc": [-85.6334386, 41.9545956] + "loc": [-85.633439, 41.954596] }, "n2189015861": { "id": "n2189015861", - "loc": [-85.6375906, 41.954836] + "loc": [-85.637591, 41.954836] }, "n2189015865": { "id": "n2189015865", - "loc": [-85.6383307, 41.9548291] + "loc": [-85.638331, 41.954829] }, "n2189015867": { "id": "n2189015867", - "loc": [-85.6383337, 41.9550072] + "loc": [-85.638334, 41.955007] }, "n2189015868": { "id": "n2189015868", - "loc": [-85.6380986, 41.9550094] + "loc": [-85.638099, 41.955009] }, "n2189015869": { "id": "n2189015869", - "loc": [-85.6381005, 41.9551226] + "loc": [-85.6381, 41.955123] }, "n2199109808": { "id": "n2199109808", - "loc": [-85.6372702, 41.9522894] + "loc": [-85.63727, 41.952289] }, "n2199109810": { "id": "n2199109810", - "loc": [-85.6372677, 41.9521583] + "loc": [-85.637268, 41.952158] }, "n2199109812": { "id": "n2199109812", - "loc": [-85.6369505, 41.9521617] + "loc": [-85.63695, 41.952162] }, "n2199109814": { "id": "n2199109814", - "loc": [-85.636953, 41.9522927] + "loc": [-85.636953, 41.952293] }, "n185952156": { "id": "n185952156", - "loc": [-85.640983, 41.9546557] + "loc": [-85.640983, 41.954656] }, "n185953423": { "id": "n185953423", @@ -25177,15 +14634,15 @@ }, "n185971639": { "id": "n185971639", - "loc": [-85.6421344, 41.9546444] + "loc": [-85.642134, 41.954644] }, "n185971642": { "id": "n185971642", - "loc": [-85.6428264, 41.9545612] + "loc": [-85.642826, 41.954561] }, "n185971648": { "id": "n185971648", - "loc": [-85.6436023, 41.9544262] + "loc": [-85.643602, 41.954426] }, "n185975066": { "id": "n185975066", @@ -25197,56 +14654,55 @@ }, "n185982166": { "id": "n185982166", - "loc": [-85.6399012, 41.9523817] + "loc": [-85.639901, 41.952382] }, "n2189015858": { "id": "n2189015858", - "loc": [-85.6376104, 41.9560138] + "loc": [-85.63761, 41.956014] }, "n2189015870": { "id": "n2189015870", - "loc": [-85.6386794, 41.9551172] + "loc": [-85.638679, 41.955117] }, "n2189015871": { "id": "n2189015871", - "loc": [-85.6386817, 41.955256] + "loc": [-85.638682, 41.955256] }, "n2189015873": { "id": "n2189015873", - "loc": [-85.6385437, 41.9552573] + "loc": [-85.638544, 41.955257] }, "n2189015876": { "id": "n2189015876", - "loc": [-85.638555, 41.9559278] + "loc": [-85.638555, 41.955928] }, "n2189015879": { "id": "n2189015879", - "loc": [-85.6384954, 41.9559283] + "loc": [-85.638495, 41.955928] }, "n2189015882": { "id": "n2189015882", - "loc": [-85.6384965, 41.9559935] + "loc": [-85.638497, 41.955993] }, "n2189015885": { "id": "n2189015885", - "loc": [-85.6383533, 41.9559949] + "loc": [-85.638353, 41.955995] }, "n2189015888": { "id": "n2189015888", - "loc": [-85.638351, 41.9558607] + "loc": [-85.638351, 41.955861] }, "n2189015891": { "id": "n2189015891", - "loc": [-85.6382178, 41.9558619] + "loc": [-85.638218, 41.955862] }, "n2189015894": { "id": "n2189015894", - "loc": [-85.6382203, 41.956008] + "loc": [-85.63822, 41.956008] }, "w208627223": { "id": "w208627223", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -25301,7 +14757,6 @@ "id": "w209717051", "tags": { "amenity": "place_of_worship", - "area": "yes", "building": "yes", "denomination": "baptist", "name": "Calvary Missionary Baptist Church", @@ -25327,15 +14782,11 @@ }, "n185960684": { "id": "n185960684", - "loc": [-85.622687, 41.951885] - }, - "n185960686": { - "id": "n185960686", - "loc": [-85.622492, 41.951901] + "loc": [-85.622669, 41.951866] }, "n185978795": { "id": "n185978795", - "loc": [-85.6240991, 41.954708] + "loc": [-85.624099, 41.954708] }, "n185978803": { "id": "n185978803", @@ -25363,99 +14814,99 @@ }, "n1819790545": { "id": "n1819790545", - "loc": [-85.6240295, 41.9548949] + "loc": [-85.62403, 41.954895] }, "n1819790621": { "id": "n1819790621", - "loc": [-85.6235789, 41.954855] + "loc": [-85.623579, 41.954855] }, "n1819790664": { "id": "n1819790664", - "loc": [-85.6238363, 41.9549507] + "loc": [-85.623836, 41.954951] }, "n1819790683": { "id": "n1819790683", - "loc": [-85.6224727, 41.9545921] + "loc": [-85.622473, 41.954592] }, "n1819790730": { "id": "n1819790730", - "loc": [-85.6227527, 41.9545795] + "loc": [-85.622753, 41.95458] }, "n1819790740": { "id": "n1819790740", - "loc": [-85.6240402, 41.9550784] + "loc": [-85.62404, 41.955078] }, "n1819790831": { "id": "n1819790831", - "loc": [-85.624126, 41.9549986] + "loc": [-85.624126, 41.954999] }, "n1819790861": { "id": "n1819790861", - "loc": [-85.6231712, 41.9546872] + "loc": [-85.623171, 41.954687] }, "n1819790887": { "id": "n1819790887", - "loc": [-85.6242762, 41.955206] + "loc": [-85.624276, 41.955206] }, "n2168544739": { "id": "n2168544739", - "loc": [-85.6249102, 41.952801] + "loc": [-85.62491, 41.952801] }, "n2168544740": { "id": "n2168544740", - "loc": [-85.6251859, 41.9527564] + "loc": [-85.625186, 41.952756] }, "n2168544741": { "id": "n2168544741", - "loc": [-85.6255515, 41.9527921] + "loc": [-85.625552, 41.952792] }, "n2168544742": { "id": "n2168544742", - "loc": [-85.626001, 41.9529481] + "loc": [-85.626001, 41.952948] }, "n2168544743": { "id": "n2168544743", - "loc": [-85.6265284, 41.9529838] + "loc": [-85.626528, 41.952984] }, "n2168544744": { "id": "n2168544744", - "loc": [-85.626942, 41.9528857] + "loc": [-85.626942, 41.952886] }, "n2168544745": { "id": "n2168544745", - "loc": [-85.6270918, 41.9526851] + "loc": [-85.627092, 41.952685] }, "n2168544746": { "id": "n2168544746", - "loc": [-85.6272117, 41.95244] + "loc": [-85.627212, 41.95244] }, "n2168544747": { "id": "n2168544747", - "loc": [-85.6271578, 41.952226] + "loc": [-85.627158, 41.952226] }, "n2168544748": { "id": "n2168544748", - "loc": [-85.6270019, 41.9519719] + "loc": [-85.627002, 41.951972] }, "n2168544749": { "id": "n2168544749", - "loc": [-85.6268221, 41.9518382] + "loc": [-85.626822, 41.951838] }, "n2168544750": { "id": "n2168544750", - "loc": [-85.6265284, 41.951807] + "loc": [-85.626528, 41.951807] }, "n2168544751": { "id": "n2168544751", - "loc": [-85.6256534, 41.9518516] + "loc": [-85.625653, 41.951852] }, "n2168544752": { "id": "n2168544752", - "loc": [-85.6253477, 41.9518338] + "loc": [-85.625348, 41.951834] }, "n2168544753": { "id": "n2168544753", - "loc": [-85.6251139, 41.9517669] + "loc": [-85.625114, 41.951767] }, "n185955747": { "id": "n185955747", @@ -25463,63 +14914,63 @@ }, "n185960688": { "id": "n185960688", - "loc": [-85.621032, 41.951913] + "loc": [-85.622599, 41.95188] }, "n185972054": { "id": "n185972054", - "loc": [-85.6186728, 41.9547335] + "loc": [-85.618673, 41.954734] }, "n185978814": { "id": "n185978814", - "loc": [-85.6201708, 41.9547403] + "loc": [-85.620171, 41.95474] }, "n1819790532": { "id": "n1819790532", - "loc": [-85.6244908, 41.9555731] + "loc": [-85.624491, 41.955573] }, "n1819790536": { "id": "n1819790536", - "loc": [-85.6217925, 41.9583135] + "loc": [-85.621792, 41.958314] }, "n1819790538": { "id": "n1819790538", - "loc": [-85.6233954, 41.9600014] + "loc": [-85.623395, 41.960001] }, "n1819790539": { "id": "n1819790539", - "loc": [-85.6204611, 41.9562117] + "loc": [-85.620461, 41.956212] }, "n1819790546": { "id": "n1819790546", - "loc": [-85.6210898, 41.9567657] + "loc": [-85.62109, 41.956766] }, "n1819790548": { "id": "n1819790548", - "loc": [-85.6202465, 41.9562237] + "loc": [-85.620246, 41.956224] }, "n1819790550": { "id": "n1819790550", - "loc": [-85.6250165, 41.9560677] + "loc": [-85.625017, 41.956068] }, "n1819790551": { "id": "n1819790551", - "loc": [-85.6227946, 41.9597023] + "loc": [-85.622795, 41.959702] }, "n1819790553": { "id": "n1819790553", - "loc": [-85.6215726, 41.9584571] + "loc": [-85.621573, 41.958457] }, "n1819790556": { "id": "n1819790556", - "loc": [-85.6196306, 41.9573002] + "loc": [-85.619631, 41.9573] }, "n1819790557": { "id": "n1819790557", - "loc": [-85.6209503, 41.9563109] + "loc": [-85.62095, 41.956311] }, "n1819790558": { "id": "n1819790558", - "loc": [-85.6196939, 41.9574085] + "loc": [-85.619694, 41.957408] }, "n1819790561": { "id": "n1819790561", @@ -25527,547 +14978,547 @@ }, "n1819790562": { "id": "n1819790562", - "loc": [-85.6224255, 41.9611417] + "loc": [-85.622426, 41.961142] }, "n1819790565": { "id": "n1819790565", - "loc": [-85.6232506, 41.9604841] + "loc": [-85.623251, 41.960484] }, "n1819790566": { "id": "n1819790566", - "loc": [-85.6190835, 41.9562909] + "loc": [-85.619084, 41.956291] }, "n1819790567": { "id": "n1819790567", - "loc": [-85.622227, 41.9593028] + "loc": [-85.622227, 41.959303] }, "n1819790569": { "id": "n1819790569", - "loc": [-85.620976, 41.9591039] + "loc": [-85.620976, 41.959104] }, "n1819790571": { "id": "n1819790571", - "loc": [-85.6212078, 41.9565303] + "loc": [-85.621208, 41.95653] }, "n1819790572": { "id": "n1819790572", - "loc": [-85.6235306, 41.9595102] + "loc": [-85.623531, 41.95951] }, "n1819790581": { "id": "n1819790581", - "loc": [-85.6235563, 41.9579351] + "loc": [-85.623556, 41.957935] }, "n1819790584": { "id": "n1819790584", - "loc": [-85.6230371, 41.9574598] + "loc": [-85.623037, 41.95746] }, "n1819790586": { "id": "n1819790586", - "loc": [-85.6211748, 41.9564272] + "loc": [-85.621175, 41.956427] }, "n1819790588": { "id": "n1819790588", - "loc": [-85.6226508, 41.9601086] + "loc": [-85.622651, 41.960109] }, "n1819790591": { "id": "n1819790591", - "loc": [-85.6218032, 41.9607468] + "loc": [-85.621803, 41.960747] }, "n1819790593": { "id": "n1819790593", - "loc": [-85.6207915, 41.9618735] + "loc": [-85.620791, 41.961874] }, "n1819790596": { "id": "n1819790596", - "loc": [-85.6252955, 41.9567858] + "loc": [-85.625295, 41.956786] }, "n1819790598": { "id": "n1819790598", - "loc": [-85.6196618, 41.9568939] + "loc": [-85.619662, 41.956894] }, "n1819790600": { "id": "n1819790600", - "loc": [-85.6224416, 41.9587084] + "loc": [-85.622442, 41.958708] }, "n1819790602": { "id": "n1819790602", - "loc": [-85.6217442, 41.9558641] + "loc": [-85.621744, 41.955864] }, "n1819790603": { "id": "n1819790603", - "loc": [-85.6213355, 41.9592116] + "loc": [-85.621336, 41.959212] }, "n1819790604": { "id": "n1819790604", - "loc": [-85.622801, 41.9573042] + "loc": [-85.622801, 41.957304] }, "n1819790608": { "id": "n1819790608", - "loc": [-85.6199729, 41.9574325] + "loc": [-85.619973, 41.957433] }, "n1819790610": { "id": "n1819790610", - "loc": [-85.6195555, 41.9557165] + "loc": [-85.619556, 41.955717] }, "n1819790611": { "id": "n1819790611", - "loc": [-85.622978, 41.9586007] + "loc": [-85.622978, 41.958601] }, "n1819790613": { "id": "n1819790613", - "loc": [-85.6253963, 41.9562636] + "loc": [-85.625396, 41.956264] }, "n1819790614": { "id": "n1819790614", - "loc": [-85.6235252, 41.9580342] + "loc": [-85.623525, 41.958034] }, "n1819790616": { "id": "n1819790616", - "loc": [-85.6232988, 41.9596305] + "loc": [-85.623299, 41.959631] }, "n1819790617": { "id": "n1819790617", - "loc": [-85.6226776, 41.9598732] + "loc": [-85.622678, 41.959873] }, "n1819790619": { "id": "n1819790619", - "loc": [-85.625553, 41.9561794] + "loc": [-85.625553, 41.956179] }, "n1819790620": { "id": "n1819790620", - "loc": [-85.6235574, 41.959231] + "loc": [-85.623557, 41.959231] }, "n1819790624": { "id": "n1819790624", - "loc": [-85.6228429, 41.9573726] + "loc": [-85.622843, 41.957373] }, "n1819790626": { "id": "n1819790626", - "loc": [-85.6193785, 41.9556766] + "loc": [-85.619378, 41.955677] }, "n1819790628": { "id": "n1819790628", - "loc": [-85.620092, 41.9554253] + "loc": [-85.620092, 41.955425] }, "n1819790630": { "id": "n1819790630", - "loc": [-85.6226658, 41.9604402] + "loc": [-85.622666, 41.96044] }, "n1819790638": { "id": "n1819790638", - "loc": [-85.6219964, 41.9602561] + "loc": [-85.621996, 41.960256] }, "n1819790640": { "id": "n1819790640", - "loc": [-85.6232731, 41.9599969] + "loc": [-85.623273, 41.959997] }, "n1819790643": { "id": "n1819790643", - "loc": [-85.6247698, 41.9568895] + "loc": [-85.62477, 41.95689] }, "n1819790650": { "id": "n1819790650", - "loc": [-85.6216412, 41.9550149] + "loc": [-85.621641, 41.955015] }, "n1819790652": { "id": "n1819790652", - "loc": [-85.6224952, 41.9603918] + "loc": [-85.622495, 41.960392] }, "n1819790656": { "id": "n1819790656", - "loc": [-85.61918, 41.9555649] + "loc": [-85.61918, 41.955565] }, "n1819790661": { "id": "n1819790661", - "loc": [-85.6200169, 41.955505] + "loc": [-85.620017, 41.955505] }, "n1819790662": { "id": "n1819790662", - "loc": [-85.6217389, 41.9563149] + "loc": [-85.621739, 41.956315] }, "n1819790666": { "id": "n1819790666", - "loc": [-85.6229566, 41.9598373] + "loc": [-85.622957, 41.959837] }, "n1819790667": { "id": "n1819790667", - "loc": [-85.6209117, 41.9609189] + "loc": [-85.620912, 41.960919] }, "n1819790669": { "id": "n1819790669", - "loc": [-85.6252311, 41.9562353] + "loc": [-85.625231, 41.956235] }, "n1819790670": { "id": "n1819790670", - "loc": [-85.6209758, 41.961868] + "loc": [-85.620976, 41.961868] }, "n1819790672": { "id": "n1819790672", - "loc": [-85.6209557, 41.9589078] + "loc": [-85.620956, 41.958908] }, "n1819790673": { "id": "n1819790673", - "loc": [-85.6190352, 41.9561393] + "loc": [-85.619035, 41.956139] }, "n1819790675": { "id": "n1819790675", - "loc": [-85.6236432, 41.9586685] + "loc": [-85.623643, 41.958669] }, "n1819790676": { "id": "n1819790676", - "loc": [-85.6194901, 41.9565389] + "loc": [-85.61949, 41.956539] }, "n1819790678": { "id": "n1819790678", - "loc": [-85.6219266, 41.9582417] + "loc": [-85.621927, 41.958242] }, "n1819790680": { "id": "n1819790680", - "loc": [-85.6208258, 41.9557211] + "loc": [-85.620826, 41.955721] }, "n1819790681": { "id": "n1819790681", - "loc": [-85.6212024, 41.9613212] + "loc": [-85.621202, 41.961321] }, "n1819790682": { "id": "n1819790682", - "loc": [-85.624877, 41.9559401] + "loc": [-85.624877, 41.95594] }, "n1819790684": { "id": "n1819790684", - "loc": [-85.6206499, 41.9583693] + "loc": [-85.62065, 41.958369] }, "n1819790699": { "id": "n1819790699", - "loc": [-85.6215243, 41.956279] + "loc": [-85.621524, 41.956279] }, "n1819790701": { "id": "n1819790701", - "loc": [-85.6246625, 41.9559321] + "loc": [-85.624662, 41.955932] }, "n1819790703": { "id": "n1819790703", - "loc": [-85.6230478, 41.9585089] + "loc": [-85.623048, 41.958509] }, "n1819790708": { "id": "n1819790708", - "loc": [-85.6211102, 41.9575402] + "loc": [-85.62111, 41.95754] }, "n1819790710": { "id": "n1819790710", - "loc": [-85.6215082, 41.9548468] + "loc": [-85.621508, 41.954847] }, "n1819790711": { "id": "n1819790711", - "loc": [-85.6206552, 41.9586007] + "loc": [-85.620655, 41.958601] }, "n1819790713": { "id": "n1819790713", - "loc": [-85.6215404, 41.9549705] + "loc": [-85.62154, 41.954971] }, "n1819790715": { "id": "n1819790715", - "loc": [-85.6216906, 41.955521] + "loc": [-85.621691, 41.955521] }, "n1819790717": { "id": "n1819790717", - "loc": [-85.6215404, 41.9547391] + "loc": [-85.62154, 41.954739] }, "n1819790722": { "id": "n1819790722", - "loc": [-85.6219964, 41.9599131] + "loc": [-85.621996, 41.959913] }, "n1819790723": { "id": "n1819790723", - "loc": [-85.622286, 41.9606989] + "loc": [-85.622286, 41.960699] }, "n1819790725": { "id": "n1819790725", - "loc": [-85.6228439, 41.9572005] + "loc": [-85.622844, 41.9572] }, "n1819790727": { "id": "n1819790727", - "loc": [-85.6202518, 41.9554458] + "loc": [-85.620252, 41.955446] }, "n1819790728": { "id": "n1819790728", - "loc": [-85.623434, 41.9575276] + "loc": [-85.623434, 41.957528] }, "n1819790729": { "id": "n1819790729", - "loc": [-85.6234287, 41.9568576] + "loc": [-85.623429, 41.956858] }, "n1819790732": { "id": "n1819790732", - "loc": [-85.6229566, 41.9571369] + "loc": [-85.622957, 41.957137] }, "n1819790733": { "id": "n1819790733", - "loc": [-85.6225543, 41.9590275] + "loc": [-85.622554, 41.959027] }, "n1819790734": { "id": "n1819790734", - "loc": [-85.6232892, 41.9583135] + "loc": [-85.623289, 41.958314] }, "n1819790736": { "id": "n1819790736", - "loc": [-85.622977, 41.9608551] + "loc": [-85.622977, 41.960855] }, "n1819790737": { "id": "n1819790737", - "loc": [-85.624008, 41.9569533] + "loc": [-85.624008, 41.956953] }, "n1819790741": { "id": "n1819790741", - "loc": [-85.6212775, 41.9608545] + "loc": [-85.621278, 41.960855] }, "n1819790742": { "id": "n1819790742", - "loc": [-85.6231282, 41.9569932] + "loc": [-85.623128, 41.956993] }, "n1819790743": { "id": "n1819790743", - "loc": [-85.6224523, 41.9591831] + "loc": [-85.622452, 41.959183] }, "n1819790744": { "id": "n1819790744", - "loc": [-85.6210951, 41.9610819] + "loc": [-85.621095, 41.961082] }, "n1819790745": { "id": "n1819790745", - "loc": [-85.6220114, 41.960544] + "loc": [-85.622011, 41.960544] }, "n1819790755": { "id": "n1819790755", - "loc": [-85.6216369, 41.9553854] + "loc": [-85.621637, 41.955385] }, "n1819790757": { "id": "n1819790757", - "loc": [-85.6209986, 41.9592709] + "loc": [-85.620999, 41.959271] }, "n1819790758": { "id": "n1819790758", - "loc": [-85.6200437, 41.9563468] + "loc": [-85.620044, 41.956347] }, "n1819790764": { "id": "n1819790764", - "loc": [-85.6219363, 41.9596823] + "loc": [-85.621936, 41.959682] }, "n1819790765": { "id": "n1819790765", - "loc": [-85.6237612, 41.9568496] + "loc": [-85.623761, 41.95685] }, "n1819790769": { "id": "n1819790769", - "loc": [-85.6212389, 41.9593433] + "loc": [-85.621239, 41.959343] }, "n1819790771": { "id": "n1819790771", - "loc": [-85.6210726, 41.9560123] + "loc": [-85.621073, 41.956012] }, "n1819790772": { "id": "n1819790772", - "loc": [-85.6212711, 41.9561838] + "loc": [-85.621271, 41.956184] }, "n1819790776": { "id": "n1819790776", - "loc": [-85.6234437, 41.9577795] + "loc": [-85.623444, 41.95778] }, "n1819790777": { "id": "n1819790777", - "loc": [-85.6212502, 41.9618599] + "loc": [-85.62125, 41.96186] }, "n1819790783": { "id": "n1819790783", - "loc": [-85.6216895, 41.9610585] + "loc": [-85.62169, 41.961059] }, "n1819790784": { "id": "n1819790784", - "loc": [-85.6200115, 41.9556367] + "loc": [-85.620012, 41.955637] }, "n1819790785": { "id": "n1819790785", - "loc": [-85.6210576, 41.9573002] + "loc": [-85.621058, 41.9573] }, "n1819790786": { "id": "n1819790786", - "loc": [-85.621138, 41.9576632] + "loc": [-85.621138, 41.957663] }, "n1819790788": { "id": "n1819790788", - "loc": [-85.6207733, 41.9578946] + "loc": [-85.620773, 41.957895] }, "n1819790789": { "id": "n1819790789", - "loc": [-85.6200705, 41.9571566] + "loc": [-85.62007, 41.957157] }, "n1819790790": { "id": "n1819790790", - "loc": [-85.6245337, 41.9558443] + "loc": [-85.624534, 41.955844] }, "n1819790792": { "id": "n1819790792", - "loc": [-85.621932, 41.9608066] + "loc": [-85.621932, 41.960807] }, "n1819790793": { "id": "n1819790793", - "loc": [-85.6233578, 41.9581385] + "loc": [-85.623358, 41.958138] }, "n1819790794": { "id": "n1819790794", - "loc": [-85.6204557, 41.9555136] + "loc": [-85.620456, 41.955514] }, "n1819790797": { "id": "n1819790797", - "loc": [-85.6235038, 41.9576074] + "loc": [-85.623504, 41.957607] }, "n1819790800": { "id": "n1819790800", - "loc": [-85.6214438, 41.9607508] + "loc": [-85.621444, 41.960751] }, "n1819790801": { "id": "n1819790801", - "loc": [-85.623492, 41.9602129] + "loc": [-85.623492, 41.960213] }, "n1819790802": { "id": "n1819790802", - "loc": [-85.6216691, 41.9546553] + "loc": [-85.621669, 41.954655] }, "n1819790803": { "id": "n1819790803", - "loc": [-85.6231057, 41.9586851] + "loc": [-85.623106, 41.958685] }, "n1819790804": { "id": "n1819790804", - "loc": [-85.6209224, 41.9578673] + "loc": [-85.620922, 41.957867] }, "n1819790813": { "id": "n1819790813", - "loc": [-85.620092, 41.9572962] + "loc": [-85.620092, 41.957296] }, "n1819790814": { "id": "n1819790814", - "loc": [-85.6216691, 41.9552218] + "loc": [-85.621669, 41.955222] }, "n1819790816": { "id": "n1819790816", - "loc": [-85.6216144, 41.9609668] + "loc": [-85.621614, 41.960967] }, "n1819790818": { "id": "n1819790818", - "loc": [-85.6216906, 41.9557324] + "loc": [-85.621691, 41.955732] }, "n1819790820": { "id": "n1819790820", - "loc": [-85.6192069, 41.9564186] + "loc": [-85.619207, 41.956419] }, "n1819790823": { "id": "n1819790823", - "loc": [-85.6211155, 41.9566027] + "loc": [-85.621116, 41.956603] }, "n1819790825": { "id": "n1819790825", - "loc": [-85.6233106, 41.9569294] + "loc": [-85.623311, 41.956929] }, "n1819790839": { "id": "n1819790839", - "loc": [-85.625671, 41.9564986] + "loc": [-85.625671, 41.956499] }, "n1819790842": { "id": "n1819790842", - "loc": [-85.6235252, 41.9567379] + "loc": [-85.623525, 41.956738] }, "n1819790844": { "id": "n1819790844", - "loc": [-85.6253813, 41.9566342] + "loc": [-85.625381, 41.956634] }, "n1819790847": { "id": "n1819790847", - "loc": [-85.6200963, 41.9567702] + "loc": [-85.620096, 41.95677] }, "n1819790849": { "id": "n1819790849", - "loc": [-85.6238031, 41.9587449] + "loc": [-85.623803, 41.958745] }, "n1819790851": { "id": "n1819790851", - "loc": [-85.6234984, 41.9584571] + "loc": [-85.623498, 41.958457] }, "n1819790856": { "id": "n1819790856", - "loc": [-85.6242226, 41.9570092] + "loc": [-85.624223, 41.957009] }, "n1819790865": { "id": "n1819790865", - "loc": [-85.6200265, 41.9569458] + "loc": [-85.620026, 41.956946] }, "n1819790869": { "id": "n1819790869", - "loc": [-85.6230049, 41.9601245] + "loc": [-85.623005, 41.960124] }, "n1819790871": { "id": "n1819790871", - "loc": [-85.6190727, 41.9558322] + "loc": [-85.619073, 41.955832] }, "n1819790873": { "id": "n1819790873", - "loc": [-85.6217442, 41.9550104] + "loc": [-85.621744, 41.95501] }, "n1819790875": { "id": "n1819790875", - "loc": [-85.6208044, 41.9587808] + "loc": [-85.620804, 41.958781] }, "n1819790879": { "id": "n1819790879", - "loc": [-85.6198444, 41.9574484] + "loc": [-85.619844, 41.957448] }, "n1819790883": { "id": "n1819790883", - "loc": [-85.623713, 41.9588719] + "loc": [-85.623713, 41.958872] }, "n1819790885": { "id": "n1819790885", - "loc": [-85.6223289, 41.9605075] + "loc": [-85.622329, 41.960507] }, "n1819790889": { "id": "n1819790889", - "loc": [-85.6208044, 41.9562437] + "loc": [-85.620804, 41.956244] }, "n1819790893": { "id": "n1819790893", - "loc": [-85.6218183, 41.9559684] + "loc": [-85.621818, 41.955968] }, "n1819790906": { "id": "n1819790906", - "loc": [-85.6214052, 41.958697] + "loc": [-85.621405, 41.958697] }, "n1819790913": { "id": "n1819790913", - "loc": [-85.6209981, 41.9609957] + "loc": [-85.620998, 41.960996] }, "n1819790917": { "id": "n1819790917", - "loc": [-85.6216208, 41.9604436] + "loc": [-85.621621, 41.960444] }, "n1819790919": { "id": "n1819790919", - "loc": [-85.6209406, 41.9616373] + "loc": [-85.620941, 41.961637] }, "n1819790920": { "id": "n1819790920", - "loc": [-85.6221948, 41.9583334] + "loc": [-85.622195, 41.958333] }, "n1819790922": { "id": "n1819790922", - "loc": [-85.6216681, 41.9615292] + "loc": [-85.621668, 41.961529] }, "n1819790924": { "id": "n1819790924", - "loc": [-85.6210147, 41.9570489] + "loc": [-85.621015, 41.957049] }, "n1819790929": { "id": "n1819790929", - "loc": [-85.6193678, 41.955521] + "loc": [-85.619368, 41.955521] }, "w17964707": { "id": "w17964707", @@ -26075,7 +15526,7 @@ "highway": "residential", "name": "11th Avenue" }, - "nodes": ["n185960682", "n185960684", "n185960686", "n185960688", "n185960690"] + "nodes": ["n185960682", "n185960684", "n185960688", "n185960690"] }, "w201484345": { "id": "w201484345", @@ -26302,17 +15753,13 @@ "n1819848944" ] }, - "n394490429": { - "id": "n394490429", - "loc": [-85.643883, 41.954365] - }, "n185953421": { "id": "n185953421", "loc": [-85.641876, 41.954946] }, "n185953417": { "id": "n185953417", - "loc": [-85.6418306, 41.9551597] + "loc": [-85.641831, 41.95516] }, "n185977233": { "id": "n185977233", @@ -26320,123 +15767,123 @@ }, "n185977232": { "id": "n185977232", - "loc": [-85.642894, 41.9547842] + "loc": [-85.642894, 41.954784] }, "n1475293244": { "id": "n1475293244", - "loc": [-85.63974, 41.9521543] + "loc": [-85.63974, 41.952154] }, "n1819848890": { "id": "n1819848890", - "loc": [-85.6410004, 41.9552822] + "loc": [-85.641, 41.955282] }, "n1819848965": { "id": "n1819848965", - "loc": [-85.6409795, 41.9553892] + "loc": [-85.64098, 41.955389] }, "n2189015846": { "id": "n2189015846", - "loc": [-85.6420457, 41.9549528] + "loc": [-85.642046, 41.954953] }, "n2189015849": { "id": "n2189015849", - "loc": [-85.6425867, 41.9551392] + "loc": [-85.642587, 41.955139] }, "n2189015852": { "id": "n2189015852", - "loc": [-85.6426877, 41.9549771] + "loc": [-85.642688, 41.954977] }, "n2199109816": { "id": "n2199109816", - "loc": [-85.6399215, 41.9540925] + "loc": [-85.639921, 41.954093] }, "n2199109818": { "id": "n2199109818", - "loc": [-85.6399182, 41.9538236] + "loc": [-85.639918, 41.953824] }, "n2199109820": { "id": "n2199109820", - "loc": [-85.6402201, 41.9538216] + "loc": [-85.64022, 41.953822] }, "n2199109822": { "id": "n2199109822", - "loc": [-85.640222, 41.9539771] + "loc": [-85.640222, 41.953977] }, "n2199109825": { "id": "n2199109825", - "loc": [-85.6402904, 41.9539766] + "loc": [-85.64029, 41.953977] }, "n2199109827": { "id": "n2199109827", - "loc": [-85.6402918, 41.95409] + "loc": [-85.640292, 41.95409] }, "n2199109829": { "id": "n2199109829", - "loc": [-85.6395845, 41.9544626] + "loc": [-85.639584, 41.954463] }, "n2199109831": { "id": "n2199109831", - "loc": [-85.6395792, 41.9540671] + "loc": [-85.639579, 41.954067] }, "n2199109833": { "id": "n2199109833", - "loc": [-85.6397173, 41.9540661] + "loc": [-85.639717, 41.954066] }, "n2199109835": { "id": "n2199109835", - "loc": [-85.6397226, 41.9544616] + "loc": [-85.639723, 41.954462] }, "n2199109837": { "id": "n2199109837", - "loc": [-85.6399641, 41.9545058] + "loc": [-85.639964, 41.954506] }, "n2199109839": { "id": "n2199109839", - "loc": [-85.6399637, 41.9541859] + "loc": [-85.639964, 41.954186] }, "n2199109841": { "id": "n2199109841", - "loc": [-85.6401098, 41.9541858] + "loc": [-85.64011, 41.954186] }, "n2199109843": { "id": "n2199109843", - "loc": [-85.64011, 41.9543272] + "loc": [-85.64011, 41.954327] }, "n2199109845": { "id": "n2199109845", - "loc": [-85.6400783, 41.9543273] + "loc": [-85.640078, 41.954327] }, "n2199109847": { "id": "n2199109847", - "loc": [-85.6400785, 41.9545058] + "loc": [-85.640079, 41.954506] }, "n2199109853": { "id": "n2199109853", - "loc": [-85.6396184, 41.9554049] + "loc": [-85.639618, 41.955405] }, "n2199109855": { "id": "n2199109855", - "loc": [-85.6396825, 41.9553713] + "loc": [-85.639683, 41.955371] }, "n185949745": { "id": "n185949745", - "loc": [-85.6442727, 41.9553112] + "loc": [-85.644273, 41.955311] }, "n185949748": { "id": "n185949748", - "loc": [-85.6448804, 41.9555238] + "loc": [-85.64488, 41.955524] }, "n185949755": { "id": "n185949755", - "loc": [-85.6420011, 41.9603536] + "loc": [-85.642001, 41.960354] }, "n185949763": { "id": "n185949763", - "loc": [-85.6408843, 41.9555822] + "loc": [-85.640884, 41.955582] }, "n185949765": { "id": "n185949765", - "loc": [-85.6414548, 41.9557751] + "loc": [-85.641455, 41.955775] }, "n185952158": { "id": "n185952158", @@ -26448,7 +15895,7 @@ }, "n185952161": { "id": "n185952161", - "loc": [-85.6396089, 41.9576192] + "loc": [-85.639609, 41.957619] }, "n185952163": { "id": "n185952163", @@ -26460,227 +15907,39 @@ }, "n185971651": { "id": "n185971651", - "loc": [-85.6440766, 41.9543462] + "loc": [-85.644077, 41.954346] }, "n185977234": { "id": "n185977234", "loc": [-85.645044, 41.955581] }, - "n394490395": { - "id": "n394490395", - "loc": [-85.657336, 41.936762] - }, - "n394490396": { - "id": "n394490396", - "loc": [-85.653896, 41.936978] - }, - "n394490397": { - "id": "n394490397", - "loc": [-85.653732, 41.937386] - }, - "n394490398": { - "id": "n394490398", - "loc": [-85.65182, 41.937378] - }, - "n394490399": { - "id": "n394490399", - "loc": [-85.651843, 41.938445] - }, - "n394490400": { - "id": "n394490400", - "loc": [-85.652536, 41.938447] - }, - "n394490401": { - "id": "n394490401", - "loc": [-85.652533, 41.938901] - }, - "n394490402": { - "id": "n394490402", - "loc": [-85.652084, 41.9389] - }, - "n394490403": { - "id": "n394490403", - "loc": [-85.6521, 41.939627] - }, - "n394490404": { - "id": "n394490404", - "loc": [-85.652301, 41.939628] - }, - "n394490405": { - "id": "n394490405", - "loc": [-85.652302, 41.939755] - }, - "n394490406": { - "id": "n394490406", - "loc": [-85.652783, 41.939747] - }, - "n394490407": { - "id": "n394490407", - "loc": [-85.652835, 41.94112] - }, - "n394490408": { - "id": "n394490408", - "loc": [-85.651968, 41.941123] - }, - "n394490409": { - "id": "n394490409", - "loc": [-85.651983, 41.941969] - }, - "n394490410": { - "id": "n394490410", - "loc": [-85.652908, 41.941961] - }, - "n394490411": { - "id": "n394490411", - "loc": [-85.65292, 41.94278] - }, - "n394490412": { - "id": "n394490412", - "loc": [-85.651698, 41.942816] - }, - "n394490413": { - "id": "n394490413", - "loc": [-85.651509, 41.942823] - }, "n394490414": { "id": "n394490414", - "loc": [-85.651272, 41.942837] - }, - "n394490415": { - "id": "n394490415", - "loc": [-85.651272, 41.943325] + "loc": [-85.651578, 41.942534] }, "n394490416": { "id": "n394490416", - "loc": [-85.65122, 41.944053] - }, - "n394490417": { - "id": "n394490417", - "loc": [-85.651193, 41.944449] + "loc": [-85.651541, 41.943847] }, "n394490418": { "id": "n394490418", - "loc": [-85.651088, 41.944969] - }, - "n394490419": { - "id": "n394490419", - "loc": [-85.650949, 41.945554] - }, - "n394490420": { - "id": "n394490420", - "loc": [-85.650907, 41.945719] - }, - "n394490421": { - "id": "n394490421", - "loc": [-85.650808, 41.946016] + "loc": [-85.651365, 41.944817] }, "n394490422": { "id": "n394490422", - "loc": [-85.650712, 41.946516] - }, - "n394490423": { - "id": "n394490423", - "loc": [-85.650493, 41.947166] + "loc": [-85.651076, 41.945985] }, "n394490424": { "id": "n394490424", "loc": [-85.650626, 41.947213] }, - "n394490425": { - "id": "n394490425", - "loc": [-85.650201, 41.948109] - }, - "n394490426": { - "id": "n394490426", - "loc": [-85.649868, 41.948797] - }, "n394490427": { "id": "n394490427", "loc": [-85.649669, 41.949161] }, - "n394490428": { - "id": "n394490428", - "loc": [-85.64659, 41.954067] - }, - "n394490430": { - "id": "n394490430", - "loc": [-85.644034, 41.95444] - }, - "n394490431": { - "id": "n394490431", - "loc": [-85.644248, 41.954507] - }, - "n394490432": { - "id": "n394490432", - "loc": [-85.64491, 41.954481] - }, - "n394490433": { - "id": "n394490433", - "loc": [-85.645213, 41.954433] - }, - "n394490434": { - "id": "n394490434", - "loc": [-85.645426, 41.954477] - }, - "n394490435": { - "id": "n394490435", - "loc": [-85.6458, 41.954704] - }, - "n394490436": { - "id": "n394490436", - "loc": [-85.64605, 41.954804] - }, - "n394490437": { - "id": "n394490437", - "loc": [-85.646125, 41.954817] - }, - "n394490438": { - "id": "n394490438", - "loc": [-85.646002, 41.954997] - }, - "n394490439": { - "id": "n394490439", - "loc": [-85.645764, 41.955366] - }, - "n394490440": { - "id": "n394490440", - "loc": [-85.645525, 41.955734] - }, - "n394490441": { - "id": "n394490441", - "loc": [-85.64443, 41.957424] - }, - "n394490442": { - "id": "n394490442", - "loc": [-85.641712, 41.961723] - }, - "n394490443": { - "id": "n394490443", - "loc": [-85.640747, 41.963246] - }, - "n394490444": { - "id": "n394490444", - "loc": [-85.637803, 41.967894] - }, - "n394490445": { - "id": "n394490445", - "loc": [-85.637673, 41.967861] - }, "n394490446": { "id": "n394490446", - "loc": [-85.636637, 41.969275] - }, - "n394490447": { - "id": "n394490447", - "loc": [-85.634923, 41.969269] - }, - "n394490448": { - "id": "n394490448", - "loc": [-85.634893, 41.968537] - }, - "n394490449": { - "id": "n394490449", - "loc": [-85.634544, 41.96927] + "loc": [-85.637001, 41.969253] }, "n394490450": { "id": "n394490450", @@ -26726,178 +15985,26 @@ "id": "n394490460", "loc": [-85.634858, 41.967021] }, - "n394490461": { - "id": "n394490461", - "loc": [-85.634865, 41.967711] - }, - "n394490462": { - "id": "n394490462", - "loc": [-85.634884, 41.968231] - }, - "n394490463": { - "id": "n394490463", - "loc": [-85.636559, 41.963867] - }, - "n394490464": { - "id": "n394490464", - "loc": [-85.634832, 41.963866] - }, "n394490465": { "id": "n394490465", "loc": [-85.63481, 41.961899] }, - "n394490466": { - "id": "n394490466", - "loc": [-85.637219, 41.961842] - }, - "n394490467": { - "id": "n394490467", - "loc": [-85.637837, 41.960019] - }, - "n394490468": { - "id": "n394490468", - "loc": [-85.637459, 41.960022] - }, - "n394490469": { - "id": "n394490469", - "loc": [-85.635295, 41.959987] - }, - "n394490470": { - "id": "n394490470", - "loc": [-85.634783, 41.959979] - }, - "n394490471": { - "id": "n394490471", - "loc": [-85.634776, 41.959834] - }, - "n394490472": { - "id": "n394490472", - "loc": [-85.634767, 41.959009] - }, - "n394490473": { - "id": "n394490473", - "loc": [-85.634763, 41.958292] - }, - "n394490474": { - "id": "n394490474", - "loc": [-85.633346, 41.958287] - }, - "n394490475": { - "id": "n394490475", - "loc": [-85.632128, 41.9583] - }, - "n394490476": { - "id": "n394490476", - "loc": [-85.631414, 41.958318] - }, - "n394490477": { - "id": "n394490477", - "loc": [-85.63137, 41.959033] - }, - "n394490478": { - "id": "n394490478", - "loc": [-85.631325, 41.959753] - }, - "n394490479": { - "id": "n394490479", - "loc": [-85.631494, 41.95977] - }, - "n394490480": { - "id": "n394490480", - "loc": [-85.631456, 41.960673] - }, - "n394490481": { - "id": "n394490481", - "loc": [-85.631421, 41.961494] - }, - "n394490482": { - "id": "n394490482", - "loc": [-85.631404, 41.961887] - }, - "n394490483": { - "id": "n394490483", - "loc": [-85.631401, 41.961968] - }, - "n394490484": { - "id": "n394490484", - "loc": [-85.630962, 41.961967] - }, - "n394490485": { - "id": "n394490485", - "loc": [-85.6299, 41.961973] - }, - "n394490486": { - "id": "n394490486", - "loc": [-85.624929, 41.962002] - }, "n394490487": { "id": "n394490487", "loc": [-85.623333, 41.961987] }, - "n394490488": { - "id": "n394490488", - "loc": [-85.621894, 41.963956] - }, - "n394490489": { - "id": "n394490489", - "loc": [-85.62131, 41.963727] - }, - "n394490490": { - "id": "n394490490", - "loc": [-85.621216, 41.963868] - }, - "n394490491": { - "id": "n394490491", - "loc": [-85.620356, 41.965119] - }, - "n394490492": { - "id": "n394490492", - "loc": [-85.620848, 41.965341] - }, - "n394490493": { - "id": "n394490493", - "loc": [-85.620684, 41.965558] - }, "n394490494": { "id": "n394490494", "loc": [-85.620621, 41.965658] }, - "n394490495": { - "id": "n394490495", - "loc": [-85.618165, 41.965759] - }, - "n394490496": { - "id": "n394490496", - "loc": [-85.618071, 41.965759] - }, - "n394490497": { - "id": "n394490497", - "loc": [-85.617986, 41.965759] - }, "n394490498": { "id": "n394490498", "loc": [-85.605673, 41.965764] }, - "n394490499": { - "id": "n394490499", - "loc": [-85.605668, 41.963548] - }, "n394490500": { "id": "n394490500", "loc": [-85.605664, 41.962094] }, - "n394490501": { - "id": "n394490501", - "loc": [-85.595828, 41.962159] - }, - "n394490502": { - "id": "n394490502", - "loc": [-85.587869, 41.962169] - }, - "n394490503": { - "id": "n394490503", - "loc": [-85.586289, 41.962179] - }, "n394490504": { "id": "n394490504", "loc": [-85.583774, 41.962178] @@ -26910,38 +16017,10 @@ "id": "n394490506", "loc": [-85.581303, 41.961783] }, - "n394490507": { - "id": "n394490507", - "loc": [-85.581304, 41.961616] - }, - "n394490508": { - "id": "n394490508", - "loc": [-85.581292, 41.961616] - }, - "n394490509": { - "id": "n394490509", - "loc": [-85.581247, 41.959244] - }, "n394490510": { "id": "n394490510", "loc": [-85.581245, 41.958394] }, - "n394490511": { - "id": "n394490511", - "loc": [-85.581276, 41.958372] - }, - "n394490512": { - "id": "n394490512", - "loc": [-85.581302, 41.958353] - }, - "n394490513": { - "id": "n394490513", - "loc": [-85.581376, 41.9583] - }, - "n394490514": { - "id": "n394490514", - "loc": [-85.582256, 41.957663] - }, "n394490515": { "id": "n394490515", "loc": [-85.585299, 41.955483] @@ -26966,261 +16045,25 @@ "id": "n394490520", "loc": [-85.58692, 41.954947] }, - "n394490521": { - "id": "n394490521", - "loc": [-85.587327, 41.954914] - }, "n394490522": { "id": "n394490522", "loc": [-85.587345, 41.954913] }, - "n394490523": { - "id": "n394490523", - "loc": [-85.587358, 41.954913] - }, - "n394490524": { - "id": "n394490524", - "loc": [-85.58963, 41.954877] - }, - "n394490525": { - "id": "n394490525", - "loc": [-85.591077, 41.954865] - }, - "n394490526": { - "id": "n394490526", - "loc": [-85.594824, 41.954843] - }, - "n394490527": { - "id": "n394490527", - "loc": [-85.594804, 41.95331] - }, - "n394490528": { - "id": "n394490528", - "loc": [-85.599336, 41.95331] - }, - "n394490529": { - "id": "n394490529", - "loc": [-85.599336, 41.954825] - }, - "n394490530": { - "id": "n394490530", - "loc": [-85.597828, 41.954839] - }, - "n394490531": { - "id": "n394490531", - "loc": [-85.597833, 41.95614] - }, - "n394490532": { - "id": "n394490532", - "loc": [-85.596586, 41.956151] - }, - "n394490533": { - "id": "n394490533", - "loc": [-85.596586, 41.956394] - }, - "n394490534": { - "id": "n394490534", - "loc": [-85.595933, 41.956394] - }, - "n394490535": { - "id": "n394490535", - "loc": [-85.595933, 41.958176] - }, - "n394490536": { - "id": "n394490536", - "loc": [-85.597635, 41.958179] - }, - "n394490537": { - "id": "n394490537", - "loc": [-85.597717, 41.958177] - }, - "n394490538": { - "id": "n394490538", - "loc": [-85.601671, 41.958194] - }, - "n394490539": { - "id": "n394490539", - "loc": [-85.605619, 41.958194] - }, - "n394490540": { - "id": "n394490540", - "loc": [-85.608054, 41.958187] - }, - "n394490542": { - "id": "n394490542", - "loc": [-85.6080762, 41.9547864] - }, - "n394490545": { - "id": "n394490545", - "loc": [-85.6104354, 41.9548263] - }, - "n394490546": { - "id": "n394490546", - "loc": [-85.610274, 41.951106] - }, - "n394490547": { - "id": "n394490547", - "loc": [-85.610278, 41.950829] - }, - "n394490548": { - "id": "n394490548", - "loc": [-85.610309, 41.948377] - }, - "n394490549": { - "id": "n394490549", - "loc": [-85.610314, 41.947986] - }, - "n394490550": { - "id": "n394490550", - "loc": [-85.610464, 41.947985] - }, - "n394490551": { - "id": "n394490551", - "loc": [-85.610447, 41.947468] - }, - "n394490552": { - "id": "n394490552", - "loc": [-85.612469, 41.947471] - }, - "n394490553": { - "id": "n394490553", - "loc": [-85.612494, 41.945576] - }, - "n394490554": { - "id": "n394490554", - "loc": [-85.610292, 41.94558] - }, "n394490555": { "id": "n394490555", - "loc": [-85.608412, 41.945625] - }, - "n394490556": { - "id": "n394490556", - "loc": [-85.608412, 41.943036] - }, - "n394490557": { - "id": "n394490557", - "loc": [-85.608702, 41.943087] - }, - "n394490558": { - "id": "n394490558", - "loc": [-85.609196, 41.943224] - }, - "n394490559": { - "id": "n394490559", - "loc": [-85.609571, 41.943263] - }, - "n394490560": { - "id": "n394490560", - "loc": [-85.610116, 41.943295] - }, - "n394490561": { - "id": "n394490561", - "loc": [-85.610273, 41.943275] - }, - "n394490562": { - "id": "n394490562", - "loc": [-85.611339, 41.943075] - }, - "n394490563": { - "id": "n394490563", - "loc": [-85.611575, 41.942997] - }, - "n394490564": { - "id": "n394490564", - "loc": [-85.611847, 41.942849] - }, - "n394490565": { - "id": "n394490565", - "loc": [-85.612164, 41.942568] - }, - "n394490566": { - "id": "n394490566", - "loc": [-85.612341, 41.942529] - }, - "n394490567": { - "id": "n394490567", - "loc": [-85.612562, 41.942524] - }, - "n394490568": { - "id": "n394490568", - "loc": [-85.612768, 41.942546] - }, - "n394490569": { - "id": "n394490569", - "loc": [-85.612938, 41.942633] - }, - "n394490570": { - "id": "n394490570", - "loc": [-85.6131, 41.942782] - }, - "n394490571": { - "id": "n394490571", - "loc": [-85.613299, 41.942919] - }, - "n394490572": { - "id": "n394490572", - "loc": [-85.613498, 41.942996] - }, - "n394490573": { - "id": "n394490573", - "loc": [-85.614698, 41.942842] - }, - "n394490574": { - "id": "n394490574", - "loc": [-85.615288, 41.942698] - }, - "n394490575": { - "id": "n394490575", - "loc": [-85.616054, 41.942693] - }, - "n394490576": { - "id": "n394490576", - "loc": [-85.61603, 41.942175] - }, - "n394490577": { - "id": "n394490577", - "loc": [-85.616004, 41.941741] - }, - "n394490578": { - "id": "n394490578", - "loc": [-85.615994, 41.940156] - }, - "n394490579": { - "id": "n394490579", - "loc": [-85.615144, 41.940159] - }, - "n394490580": { - "id": "n394490580", - "loc": [-85.614915, 41.940161] - }, - "n394490582": { - "id": "n394490582", - "loc": [-85.614875, 41.938532] - }, - "n394490583": { - "id": "n394490583", - "loc": [-85.616167, 41.938787] - }, - "n394490585": { - "id": "n394490585", - "loc": [-85.616176, 41.938589] - }, - "n394490586": { - "id": "n394490586", - "loc": [-85.614537, 41.938282] + "loc": [-85.605592, 41.954766] }, "n394490588": { "id": "n394490588", - "loc": [-85.610141, 41.937459] + "loc": [-85.605303, 41.936236] }, "n394490589": { "id": "n394490589", - "loc": [-85.610172, 41.937298] + "loc": [-85.606941, 41.936117] }, "n394490590": { "id": "n394490590", - "loc": [-85.609918, 41.935495] + "loc": [-85.60876, 41.935856] }, "n394490592": { "id": "n394490592", @@ -27246,393 +16089,97 @@ "id": "n394490599", "loc": [-85.613948, 41.933682] }, - "n394490601": { - "id": "n394490601", - "loc": [-85.61436, 41.933417] - }, "n394490602": { "id": "n394490602", "loc": [-85.614638, 41.933212] }, - "n394490604": { - "id": "n394490604", - "loc": [-85.615249, 41.9332] - }, - "n394490605": { - "id": "n394490605", - "loc": [-85.618218, 41.933223] - }, - "n394490607": { - "id": "n394490607", - "loc": [-85.618241, 41.933479] - }, - "n394490608": { - "id": "n394490608", - "loc": [-85.618257, 41.93365] - }, - "n394490609": { - "id": "n394490609", - "loc": [-85.618298, 41.935067] - }, - "n394490611": { - "id": "n394490611", - "loc": [-85.619791, 41.935067] - }, - "n394490612": { - "id": "n394490612", - "loc": [-85.619794, 41.933301] - }, - "n394490613": { - "id": "n394490613", - "loc": [-85.619795, 41.932692] - }, - "n394490614": { - "id": "n394490614", - "loc": [-85.619729, 41.929517] - }, "n394490615": { "id": "n394490615", "loc": [-85.619801, 41.929305] }, "n394490616": { "id": "n394490616", - "loc": [-85.619809, 41.927391] - }, - "n394490617": { - "id": "n394490617", - "loc": [-85.620883, 41.927378] - }, - "n394490618": { - "id": "n394490618", - "loc": [-85.620988, 41.927368] - }, - "n394490619": { - "id": "n394490619", - "loc": [-85.621076, 41.927368] - }, - "n394490620": { - "id": "n394490620", - "loc": [-85.621156, 41.927376] - }, - "n394490621": { - "id": "n394490621", - "loc": [-85.621685, 41.92737] - }, - "n394490622": { - "id": "n394490622", - "loc": [-85.624716, 41.927359] - }, - "n394490623": { - "id": "n394490623", - "loc": [-85.625308, 41.92737] - }, - "n394490624": { - "id": "n394490624", - "loc": [-85.625655, 41.927377] - }, - "n394490625": { - "id": "n394490625", - "loc": [-85.625093, 41.925591] - }, - "n394490626": { - "id": "n394490626", - "loc": [-85.625174, 41.92559] - }, - "n394490627": { - "id": "n394490627", - "loc": [-85.625249, 41.925597] - }, - "n394490628": { - "id": "n394490628", - "loc": [-85.625532, 41.925604] + "loc": [-85.619768, 41.925548] }, "n394490629": { "id": "n394490629", "loc": [-85.625761, 41.925597] }, - "n394490630": { - "id": "n394490630", - "loc": [-85.625955, 41.926153] - }, - "n394490631": { - "id": "n394490631", - "loc": [-85.626209, 41.926155] - }, - "n394490632": { - "id": "n394490632", - "loc": [-85.627757, 41.926151] - }, - "n394490633": { - "id": "n394490633", - "loc": [-85.627825, 41.926298] - }, - "n394490634": { - "id": "n394490634", - "loc": [-85.627994, 41.926315] - }, "n394490635": { "id": "n394490635", - "loc": [-85.628049, 41.927196] - }, - "n394490636": { - "id": "n394490636", - "loc": [-85.62949, 41.927221] - }, - "n394490637": { - "id": "n394490637", - "loc": [-85.629602, 41.927277] - }, - "n394490638": { - "id": "n394490638", - "loc": [-85.6297102, 41.9273279] - }, - "n394490639": { - "id": "n394490639", - "loc": [-85.630958, 41.927398] - }, - "n394490699": { - "id": "n394490699", - "loc": [-85.632741, 41.927388] - }, - "n394490700": { - "id": "n394490700", - "loc": [-85.632997, 41.927391] - }, - "n394490701": { - "id": "n394490701", - "loc": [-85.633149, 41.927393] + "loc": [-85.6263, 41.927323] }, "n394490702": { "id": "n394490702", - "loc": [-85.633334, 41.927393] - }, - "n394490703": { - "id": "n394490703", - "loc": [-85.633468, 41.927561] - }, - "n394490704": { - "id": "n394490704", - "loc": [-85.633563, 41.927755] - }, - "n394490705": { - "id": "n394490705", - "loc": [-85.633662, 41.928192] - }, - "n394490706": { - "id": "n394490706", - "loc": [-85.633679, 41.928807] - }, - "n394490707": { - "id": "n394490707", - "loc": [-85.633687, 41.929107] + "loc": [-85.633708, 41.927402] }, "n394490708": { "id": "n394490708", "loc": [-85.633927, 41.929109] }, - "n394490709": { - "id": "n394490709", - "loc": [-85.634126, 41.929111] - }, - "n394490710": { - "id": "n394490710", - "loc": [-85.634207, 41.92911] - }, - "n394490711": { - "id": "n394490711", - "loc": [-85.634323, 41.929111] - }, - "n394490712": { - "id": "n394490712", - "loc": [-85.636712, 41.929128] - }, - "n394490713": { - "id": "n394490713", - "loc": [-85.63808, 41.9291] - }, "n394490714": { "id": "n394490714", "loc": [-85.639213, 41.929088] }, - "n394490715": { - "id": "n394490715", - "loc": [-85.639189, 41.92852] - }, "n394490716": { "id": "n394490716", "loc": [-85.639204, 41.925488] }, - "n394490717": { - "id": "n394490717", - "loc": [-85.644204, 41.925452] - }, "n394490718": { "id": "n394490718", "loc": [-85.651425, 41.925406] }, - "n394490719": { - "id": "n394490719", - "loc": [-85.651449, 41.926321] - }, - "n394490720": { - "id": "n394490720", - "loc": [-85.651451, 41.926969] - }, - "n394490721": { - "id": "n394490721", - "loc": [-85.651458, 41.928052] - }, - "n394490722": { - "id": "n394490722", - "loc": [-85.651446, 41.928892] - }, - "n394490723": { - "id": "n394490723", - "loc": [-85.651456, 41.929447] - }, - "n394490724": { - "id": "n394490724", - "loc": [-85.651707, 41.929454] - }, - "n394490725": { - "id": "n394490725", - "loc": [-85.652369, 41.929473] - }, - "n394490726": { - "id": "n394490726", - "loc": [-85.6525, 41.929452] - }, - "n394490727": { - "id": "n394490727", - "loc": [-85.654066, 41.92946] - }, - "n394490728": { - "id": "n394490728", - "loc": [-85.654816, 41.92946] - }, - "n394490729": { - "id": "n394490729", - "loc": [-85.654816, 41.930337] - }, - "n394490730": { - "id": "n394490730", - "loc": [-85.654587, 41.930337] - }, - "n394490731": { - "id": "n394490731", - "loc": [-85.654548, 41.931072] - }, - "n394490732": { - "id": "n394490732", - "loc": [-85.654538, 41.931701] - }, - "n394490733": { - "id": "n394490733", - "loc": [-85.654898, 41.931689] - }, - "n394490734": { - "id": "n394490734", - "loc": [-85.654898, 41.932505] - }, - "n394490735": { - "id": "n394490735", - "loc": [-85.654854, 41.932514] - }, - "n394490736": { - "id": "n394490736", - "loc": [-85.655497, 41.932499] - }, - "n394490737": { - "id": "n394490737", - "loc": [-85.656405, 41.932493] - }, - "n394490738": { - "id": "n394490738", - "loc": [-85.656422, 41.933416] - }, - "n394490739": { - "id": "n394490739", - "loc": [-85.657322, 41.933438] - }, "n1475293233": { "id": "n1475293233", - "loc": [-85.6385522, 41.9585167] - }, - "n1475293242": { - "id": "n1475293242", - "loc": [-85.64609, 41.9540815] - }, - "n1475293249": { - "id": "n1475293249", - "loc": [-85.6358079, 41.9692721] + "loc": [-85.638552, 41.958517] }, "n1475293256": { "id": "n1475293256", - "loc": [-85.6387369, 41.9581583] - }, - "n1475293259": { - "id": "n1475293259", - "loc": [-85.6455882, 41.9541138] - }, - "n1475293266": { - "id": "n1475293266", - "loc": [-85.6451008, 41.9541821] - }, - "n1819800253": { - "id": "n1819800253", - "loc": [-85.6134286, 41.9429692] - }, - "n2114807558": { - "id": "n2114807558", - "loc": [-85.6365609, 41.963866], - "tags": { - "railway": "level_crossing" - } + "loc": [-85.638737, 41.958158] }, "n2189015728": { "id": "n2189015728", - "loc": [-85.6383956, 41.9590576] + "loc": [-85.638396, 41.959058] }, "n2189015838": { "id": "n2189015838", - "loc": [-85.6435144, 41.9563705] + "loc": [-85.643514, 41.95637] }, "n2189015842": { "id": "n2189015842", - "loc": [-85.6415782, 41.9557035] + "loc": [-85.641578, 41.955703] }, "n2189015855": { "id": "n2189015855", - "loc": [-85.6440829, 41.9554577] + "loc": [-85.644083, 41.955458] }, "n2199109849": { "id": "n2199109849", - "loc": [-85.6393434, 41.9565591] + "loc": [-85.639343, 41.956559] }, "n2199109851": { "id": "n2199109851", - "loc": [-85.6393208, 41.9565002] + "loc": [-85.639321, 41.9565] }, "n2199109857": { "id": "n2199109857", - "loc": [-85.6401986, 41.955545] + "loc": [-85.640199, 41.955545] }, "n2199109859": { "id": "n2199109859", - "loc": [-85.6402362, 41.955587] + "loc": [-85.640236, 41.955587] }, "n2199109861": { "id": "n2199109861", - "loc": [-85.6395958, 41.9565675] + "loc": [-85.639596, 41.956567] }, "n2199109863": { "id": "n2199109863", - "loc": [-85.639528, 41.9566011] + "loc": [-85.639528, 41.956601] }, "w209717053": { "id": "w209717053", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109829", "n2199109831", "n2199109833", "n2199109835", "n2199109829"] @@ -27649,7 +16196,6 @@ "w209717054": { "id": "w209717054", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109837", "n2199109839", "n2199109841", "n2199109843", "n2199109845", "n2199109847", "n2199109837"] @@ -27690,65 +16236,13 @@ "landuse": "residential" }, "nodes": [ - "n394490395", - "n394490396", - "n394490397", - "n394490398", - "n394490399", - "n394490400", - "n394490401", - "n394490402", - "n394490403", - "n394490404", - "n394490405", - "n394490406", - "n394490407", - "n394490408", - "n394490409", - "n394490410", - "n394490411", - "n394490412", - "n394490413", "n394490414", - "n394490415", "n394490416", - "n394490417", "n394490418", - "n394490419", - "n394490420", - "n394490421", "n394490422", - "n394490423", "n394490424", - "n394490425", - "n394490426", "n394490427", - "n394490428", - "n1475293242", - "n1475293259", - "n1475293266", - "n394490429", - "n394490430", - "n394490431", - "n394490432", - "n394490433", - "n394490434", - "n394490435", - "n394490436", - "n394490437", - "n394490438", - "n394490439", - "n394490440", - "n394490441", - "n394490442", - "n394490443", - "n394490444", - "n394490445", "n394490446", - "n1475293249", - "n394490447", - "n394490448", - "n394490449", "n394490450", "n394490451", "n394490452", @@ -27760,130 +16254,23 @@ "n394490458", "n394490459", "n394490460", - "n394490461", - "n394490462", - "n2114807558", - "n394490463", - "n1475293226", - "n394490464", "n394490465", - "n394490466", - "n394490467", - "n394490468", - "n394490469", - "n394490470", - "n394490471", - "n394490472", - "n394490473", - "n394490474", - "n394490475", - "n394490476", - "n394490477", - "n394490478", - "n394490479", - "n394490480", - "n394490481", - "n394490482", - "n394490483", - "n394490484", - "n394490485", - "n394490486", "n394490487", - "n394490488", - "n394490489", - "n394490490", - "n394490491", - "n394490492", - "n394490493", "n394490494", - "n394490495", - "n394490496", - "n394490497", "n394490498", - "n394490499", "n394490500", - "n394490501", - "n394490502", - "n394490503", "n394490504", "n394490505", "n394490506", - "n394490507", - "n394490508", - "n394490509", "n394490510", - "n394490511", - "n394490512", - "n394490513", - "n394490514", "n394490515", "n394490516", "n394490517", "n394490518", "n394490519", "n394490520", - "n394490521", "n394490522", - "n394490523", - "n394490524", - "n394490525", - "n394490526", - "n394490527", - "n394490528", - "n394490529", - "n394490530", - "n394490531", - "n394490532", - "n394490533", - "n394490534", - "n394490535", - "n394490536", - "n394490537", - "n394490538", - "n394490539", - "n394490540", - "n394490542", - "n394490545", - "n394490546", - "n394490547", - "n394490548", - "n394490549", - "n394490550", - "n394490551", - "n394490552", - "n394490553", - "n394490554", "n394490555", - "n394490556", - "n394490557", - "n394490558", - "n394490559", - "n394490560", - "n394490561", - "n394490562", - "n394490563", - "n394490564", - "n394490565", - "n394490566", - "n394490567", - "n394490568", - "n394490569", - "n394490570", - "n394490571", - "n1819800253", - "n394490572", - "n394490573", - "n394490574", - "n394490575", - "n394490576", - "n394490577", - "n394490578", - "n394490579", - "n394490580", - "n394490582", - "n394490583", - "n394490585", - "n394490586", "n394490588", "n394490589", "n394490590", @@ -27893,98 +16280,29 @@ "n394490596", "n394490598", "n394490599", - "n394490601", "n394490602", - "n394490604", - "n394490605", - "n394490607", - "n394490608", - "n394490609", - "n394490611", - "n394490612", - "n394490613", - "n394490614", "n394490615", "n394490616", - "n394490617", - "n394490618", - "n394490619", - "n394490620", - "n394490621", - "n394490622", - "n394490623", - "n394490624", - "n394490625", - "n394490626", - "n394490627", - "n394490628", "n394490629", - "n394490630", - "n394490631", - "n394490632", - "n394490633", - "n394490634", "n394490635", - "n394490636", - "n394490637", - "n394490638", - "n394490639", - "n394490699", - "n394490700", - "n394490701", "n394490702", - "n394490703", - "n394490704", - "n394490705", - "n394490706", - "n394490707", "n394490708", - "n394490709", - "n394490710", - "n394490711", - "n394490712", - "n394490713", "n394490714", - "n394490715", "n394490716", - "n394490717", "n394490718", - "n394490719", - "n394490720", - "n394490721", - "n394490722", - "n394490723", - "n394490724", - "n394490725", - "n394490726", - "n394490727", - "n394490728", - "n394490729", - "n394490730", - "n394490731", - "n394490732", - "n394490733", - "n394490734", - "n394490735", - "n394490736", - "n394490737", - "n394490738", - "n394490739", - "n394490395" + "n394490414" ] }, "w208627221": { "id": "w208627221", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2189015838", "n2189015842", "n2189015846", "n2189015849", "n2189015852", "n2189015855", "n2189015838"] }, "w209717052": { "id": "w209717052", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109816", "n2199109818", "n2199109820", "n2199109822", "n2199109825", "n2199109827", "n2199109816"] @@ -28001,7 +16319,6 @@ "w209717055": { "id": "w209717055", "tags": { - "area": "yes", "landuse": "basin" }, "nodes": [ @@ -28060,46 +16377,11 @@ "type": "way", "role": "outer" }, - { - "id": "w34369825", - "type": "way", - "role": "outer" - }, - { - "id": "w34369826", - "type": "way", - "role": "outer" - }, { "id": "w34369810", "type": "way", "role": "inner" }, - { - "id": "w34369811", - "type": "way", - "role": "inner" - }, - { - "id": "w34369812", - "type": "way", - "role": "inner" - }, - { - "id": "w34367079", - "type": "way", - "role": "inner" - }, - { - "id": "w34369814", - "type": "way", - "role": "inner" - }, - { - "id": "w34367080", - "type": "way", - "role": "inner" - }, { "id": "w34369815", "type": "way", @@ -28114,143 +16396,143 @@ }, "n1819848881": { "id": "n1819848881", - "loc": [-85.638562, 41.9569965] + "loc": [-85.638562, 41.956997] }, "n1819848947": { "id": "n1819848947", - "loc": [-85.6384348, 41.9576565] + "loc": [-85.638435, 41.957656] }, "n1819849044": { "id": "n1819849044", - "loc": [-85.6385749, 41.9573345] + "loc": [-85.638575, 41.957335] }, "n2114807547": { "id": "n2114807547", - "loc": [-85.6384626, 41.9583756] + "loc": [-85.638463, 41.958376] }, "n2114807564": { "id": "n2114807564", - "loc": [-85.638535, 41.9581283] + "loc": [-85.638535, 41.958128] }, "n2189015691": { "id": "n2189015691", - "loc": [-85.6435584, 41.9565243] + "loc": [-85.643558, 41.956524] }, "n2189015696": { "id": "n2189015696", - "loc": [-85.6435805, 41.9566049] + "loc": [-85.64358, 41.956605] }, "n2189015722": { "id": "n2189015722", - "loc": [-85.6435035, 41.9567438] + "loc": [-85.643503, 41.956744] }, "n2189015744": { "id": "n2189015744", - "loc": [-85.6437991, 41.9569582] + "loc": [-85.643799, 41.956958] }, "n2189015747": { "id": "n2189015747", - "loc": [-85.6433042, 41.9567742] + "loc": [-85.643304, 41.956774] }, "n2189015750": { "id": "n2189015750", - "loc": [-85.6433827, 41.9566844] + "loc": [-85.643383, 41.956684] }, "n2189015753": { "id": "n2189015753", - "loc": [-85.6430447, 41.9565588] + "loc": [-85.643045, 41.956559] }, "n2189015756": { "id": "n2189015756", - "loc": [-85.6431111, 41.956451] + "loc": [-85.643111, 41.956451] }, "n2189015759": { "id": "n2189015759", - "loc": [-85.6420247, 41.956083] + "loc": [-85.642025, 41.956083] }, "n2189015760": { "id": "n2189015760", - "loc": [-85.6419945, 41.9561369] + "loc": [-85.641994, 41.956137] }, "n2189015764": { "id": "n2189015764", - "loc": [-85.6413729, 41.9558945] + "loc": [-85.641373, 41.955894] }, "n2189015766": { "id": "n2189015766", - "loc": [-85.6412884, 41.9560606] + "loc": [-85.641288, 41.956061] }, "n2189015770": { "id": "n2189015770", - "loc": [-85.6411798, 41.9560112] + "loc": [-85.64118, 41.956011] }, "n2189015771": { "id": "n2189015771", - "loc": [-85.6410651, 41.9562132] + "loc": [-85.641065, 41.956213] }, "n2189015774": { "id": "n2189015774", - "loc": [-85.6409504, 41.9561728] + "loc": [-85.64095, 41.956173] }, "n2189015778": { "id": "n2189015778", - "loc": [-85.6407996, 41.9564241] + "loc": [-85.6408, 41.956424] }, "n2189015781": { "id": "n2189015781", - "loc": [-85.6406889, 41.9563892] + "loc": [-85.640689, 41.956389] }, "n2189015785": { "id": "n2189015785", - "loc": [-85.6404857, 41.9567024] + "loc": [-85.640486, 41.956702] }, "n2189015789": { "id": "n2189015789", - "loc": [-85.6406909, 41.9567877] + "loc": [-85.640691, 41.956788] }, "n2189015793": { "id": "n2189015793", - "loc": [-85.6405642, 41.9570165] + "loc": [-85.640564, 41.957017] }, "n2189015796": { "id": "n2189015796", - "loc": [-85.6415359, 41.9573711] + "loc": [-85.641536, 41.957371] }, "n2189015800": { "id": "n2189015800", - "loc": [-85.6411738, 41.9579501] + "loc": [-85.641174, 41.95795] }, "n2189015804": { "id": "n2189015804", - "loc": [-85.6411119, 41.957921] + "loc": [-85.641112, 41.957921] }, "n2189015808": { "id": "n2189015808", - "loc": [-85.6403186, 41.9591751] + "loc": [-85.640319, 41.959175] }, "n2189015909": { "id": "n2189015909", - "loc": [-85.6389293, 41.9564636] + "loc": [-85.638929, 41.956464] }, "n2189015926": { "id": "n2189015926", - "loc": [-85.6385431, 41.9564617] + "loc": [-85.638543, 41.956462] }, "n2189015929": { "id": "n2189015929", - "loc": [-85.6385457, 41.9561823] + "loc": [-85.638546, 41.956182] }, "n2189015932": { "id": "n2189015932", - "loc": [-85.6389319, 41.9561843] + "loc": [-85.638932, 41.956184] }, "n2199109865": { "id": "n2199109865", - "loc": [-85.6400768, 41.956776] + "loc": [-85.640077, 41.956776] }, "n2199109867": { "id": "n2199109867", - "loc": [-85.639902, 41.9567153] + "loc": [-85.639902, 41.956715] }, "n2199109869": { "id": "n2199109869", @@ -28258,95 +16540,94 @@ }, "n2199109871": { "id": "n2199109871", - "loc": [-85.6401788, 41.9566137] + "loc": [-85.640179, 41.956614] }, "n2199109873": { "id": "n2199109873", - "loc": [-85.6399316, 41.9564506], + "loc": [-85.639932, 41.956451], "tags": { "man_made": "water_tower" } }, "n2199109876": { "id": "n2199109876", - "loc": [-85.6397689, 41.9572354] + "loc": [-85.639769, 41.957235] }, "n2199109878": { "id": "n2199109878", - "loc": [-85.6399229, 41.9569826] + "loc": [-85.639923, 41.956983] }, "n2199109880": { "id": "n2199109880", - "loc": [-85.639706, 41.9569095] + "loc": [-85.639706, 41.95691] }, "n2199109882": { "id": "n2199109882", - "loc": [-85.639552, 41.9571623] + "loc": [-85.639552, 41.957162] }, "n2199109884": { "id": "n2199109884", - "loc": [-85.6391028, 41.9569517] + "loc": [-85.639103, 41.956952] }, "n2199109886": { "id": "n2199109886", - "loc": [-85.6392876, 41.956646] + "loc": [-85.639288, 41.956646] }, "n2199109888": { "id": "n2199109888", - "loc": [-85.639484, 41.9567117] + "loc": [-85.639484, 41.956712] }, "n2199109889": { "id": "n2199109889", - "loc": [-85.6394322, 41.9567973] + "loc": [-85.639432, 41.956797] }, "n2199109890": { "id": "n2199109890", - "loc": [-85.6393718, 41.9567771] + "loc": [-85.639372, 41.956777] }, "n2199109891": { "id": "n2199109891", - "loc": [-85.6392387, 41.9569972] + "loc": [-85.639239, 41.956997] }, "n1819848900": { "id": "n1819848900", - "loc": [-85.638281, 41.9576578] + "loc": [-85.638281, 41.957658] }, "n1819848978": { "id": "n1819848978", - "loc": [-85.6377186, 41.9580867] + "loc": [-85.637719, 41.958087] }, "n1819849039": { "id": "n1819849039", - "loc": [-85.6384217, 41.9573405] + "loc": [-85.638422, 41.957341] }, "n1819849050": { "id": "n1819849050", - "loc": [-85.6377011, 41.9570042] + "loc": [-85.637701, 41.957004] }, "n1819849088": { "id": "n1819849088", - "loc": [-85.6382879, 41.9580817] + "loc": [-85.638288, 41.958082] }, "n2114807549": { "id": "n2114807549", - "loc": [-85.6362551, 41.96473] + "loc": [-85.636255, 41.96473] }, "n2114807587": { "id": "n2114807587", - "loc": [-85.6368694, 41.9629829] + "loc": [-85.636869, 41.962983] }, "n2189015725": { "id": "n2189015725", - "loc": [-85.644156, 41.9569753] + "loc": [-85.644156, 41.956975] }, "n2189015741": { "id": "n2189015741", - "loc": [-85.6419825, 41.9597632] + "loc": [-85.641982, 41.959763] }, "w208627217": { "id": "w208627217", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -28385,7 +16666,6 @@ "w209717057": { "id": "w209717057", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109876", "n2199109878", "n2199109880", "n2199109882", "n2199109876"] @@ -28393,7 +16673,6 @@ "w209717056": { "id": "w209717056", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109865", "n2199109867", "n2199109869", "n2199109871", "n2199109865"] @@ -28401,7 +16680,6 @@ "w208627231": { "id": "w208627231", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015909", "n2189015926", "n2189015929", "n2189015932", "n2189015909"] @@ -28436,12 +16714,11 @@ "railway": "rail", "service": "siding" }, - "nodes": ["n2114807565", "n2114807564", "n2114807547", "n2114807587", "n2114807558", "n2114807549", "n2114807593"] + "nodes": ["n2114807565", "n2114807564", "n2114807547", "n2114807587", "n2114807549", "n2114807593"] }, "w209717058": { "id": "w209717058", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109884", "n2199109886", "n2199109888", "n2199109889", "n2199109890", "n2199109891", "n2199109884"] @@ -28528,7 +16805,7 @@ }, "n354031352": { "id": "n354031352", - "loc": [-85.6252778, 41.9586111], + "loc": [-85.625278, 41.958611], "tags": { "amenity": "place_of_worship", "denomination": "baptist", @@ -28538,27 +16815,27 @@ }, "n2199109892": { "id": "n2199109892", - "loc": [-85.6261578, 41.9589963] + "loc": [-85.626158, 41.958996] }, "n2199109893": { "id": "n2199109893", - "loc": [-85.6263191, 41.9586865] + "loc": [-85.626319, 41.958686] }, "n2199109894": { "id": "n2199109894", - "loc": [-85.6261186, 41.9586288] + "loc": [-85.626119, 41.958629] }, "n2199109895": { "id": "n2199109895", - "loc": [-85.6260644, 41.9587329] + "loc": [-85.626064, 41.958733] }, "n2199109896": { "id": "n2199109896", - "loc": [-85.6261547, 41.9587589] + "loc": [-85.626155, 41.958759] }, "n2199109898": { "id": "n2199109898", - "loc": [-85.6260476, 41.9589646] + "loc": [-85.626048, 41.958965] }, "n185966951": { "id": "n185966951", @@ -28604,7 +16881,6 @@ "w209717059": { "id": "w209717059", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2199109892", "n2199109893", "n2199109894", "n2199109895", "n2199109896", "n2199109898", "n2199109892"] @@ -28639,59 +16915,59 @@ }, "n2114807552": { "id": "n2114807552", - "loc": [-85.6383526, 41.9593788] + "loc": [-85.638353, 41.959379] }, "n2114807591": { "id": "n2114807591", - "loc": [-85.6383741, 41.9593968] + "loc": [-85.638374, 41.959397] }, "n2189015731": { "id": "n2189015731", - "loc": [-85.6368404, 41.9592785] + "loc": [-85.63684, 41.959279] }, "n2189015734": { "id": "n2189015734", - "loc": [-85.6368404, 41.9585918] + "loc": [-85.63684, 41.958592] }, "n2189015737": { "id": "n2189015737", - "loc": [-85.6376009, 41.9585918] + "loc": [-85.637601, 41.958592] }, "n2189015738": { "id": "n2189015738", - "loc": [-85.6376009, 41.9592785] + "loc": [-85.637601, 41.959279] }, "n2189015897": { "id": "n2189015897", - "loc": [-85.6376839, 41.9566137] + "loc": [-85.637684, 41.956614] }, "n2189015900": { "id": "n2189015900", - "loc": [-85.6376831, 41.9564865] + "loc": [-85.637683, 41.956486] }, "n2189015903": { "id": "n2189015903", - "loc": [-85.6381161, 41.9564851] + "loc": [-85.638116, 41.956485] }, "n2189015906": { "id": "n2189015906", - "loc": [-85.6381168, 41.9566122] + "loc": [-85.638117, 41.956612] }, "n2189015937": { "id": "n2189015937", - "loc": [-85.6364789, 41.9590634] + "loc": [-85.636479, 41.959063] }, "n2189015940": { "id": "n2189015940", - "loc": [-85.6361137, 41.9590672] + "loc": [-85.636114, 41.959067] }, "n2189015943": { "id": "n2189015943", - "loc": [-85.6361169, 41.9594033] + "loc": [-85.636117, 41.959403] }, "n2189015945": { "id": "n2189015945", - "loc": [-85.6363456, 41.9594021] + "loc": [-85.636346, 41.959402] }, "n2189015952": { "id": "n2189015952", @@ -28699,127 +16975,127 @@ }, "n2189015955": { "id": "n2189015955", - "loc": [-85.6364757, 41.9588894] + "loc": [-85.636476, 41.958889] }, "n2189015957": { "id": "n2189015957", - "loc": [-85.6364729, 41.9586747] + "loc": [-85.636473, 41.958675] }, "n2189015958": { "id": "n2189015958", - "loc": [-85.6361103, 41.9586765] + "loc": [-85.63611, 41.958677] }, "n2189015959": { "id": "n2189015959", - "loc": [-85.6364719, 41.9585562] + "loc": [-85.636472, 41.958556] }, "n2189015960": { "id": "n2189015960", - "loc": [-85.6361093, 41.958558] + "loc": [-85.636109, 41.958558] }, "n2189015961": { "id": "n2189015961", - "loc": [-85.6355494, 41.9586403] + "loc": [-85.635549, 41.95864] }, "n2189015962": { "id": "n2189015962", - "loc": [-85.635549, 41.9584711] + "loc": [-85.635549, 41.958471] }, "n2189015963": { "id": "n2189015963", - "loc": [-85.6351831, 41.9584715] + "loc": [-85.635183, 41.958472] }, "n2189015964": { "id": "n2189015964", - "loc": [-85.6351834, 41.9586408] + "loc": [-85.635183, 41.958641] }, "n2189015966": { "id": "n2189015966", - "loc": [-85.6359579, 41.9586359] + "loc": [-85.635958, 41.958636] }, "n2189015968": { "id": "n2189015968", - "loc": [-85.6359561, 41.9585465] + "loc": [-85.635956, 41.958546] }, "n2189015971": { "id": "n2189015971", - "loc": [-85.6355476, 41.9585509] + "loc": [-85.635548, 41.958551] }, "n2189015974": { "id": "n2189015974", - "loc": [-85.6359516, 41.9592934] + "loc": [-85.635952, 41.959293] }, "n2189015977": { "id": "n2189015977", - "loc": [-85.635949, 41.9586697] + "loc": [-85.635949, 41.95867] }, "n2189015980": { "id": "n2189015980", - "loc": [-85.6351329, 41.9586716] + "loc": [-85.635133, 41.958672] }, "n2189015983": { "id": "n2189015983", - "loc": [-85.6351318, 41.9583949] + "loc": [-85.635132, 41.958395] }, "n2189015986": { "id": "n2189015986", - "loc": [-85.6349148, 41.9583954] + "loc": [-85.634915, 41.958395] }, "n2189015989": { "id": "n2189015989", - "loc": [-85.6349186, 41.9592958] + "loc": [-85.634919, 41.959296] }, "n2189015995": { "id": "n2189015995", - "loc": [-85.6360173, 41.9593286] + "loc": [-85.636017, 41.959329] }, "n2189015998": { "id": "n2189015998", - "loc": [-85.6360278, 41.9583079] + "loc": [-85.636028, 41.958308] }, "n2114807550": { "id": "n2114807550", - "loc": [-85.6383392, 41.9595404] + "loc": [-85.638339, 41.95954] }, "n2114807551": { "id": "n2114807551", - "loc": [-85.6375855, 41.9616107] + "loc": [-85.637586, 41.961611] }, "n2114807559": { "id": "n2114807559", - "loc": [-85.6373978, 41.9621273] + "loc": [-85.637398, 41.962127] }, "n2114807562": { "id": "n2114807562", - "loc": [-85.6373361, 41.9622609] + "loc": [-85.637336, 41.962261] }, "n2114807563": { "id": "n2114807563", - "loc": [-85.6376472, 41.9613953] + "loc": [-85.637647, 41.961395] }, "n2114807574": { "id": "n2114807574", - "loc": [-85.636974, 41.9627695] + "loc": [-85.636974, 41.96277] }, "n2114807589": { "id": "n2114807589", - "loc": [-85.6383017, 41.9595005] + "loc": [-85.638302, 41.9595] }, "n2114807592": { "id": "n2114807592", - "loc": [-85.6377169, 41.9613494] + "loc": [-85.637717, 41.961349] }, "n2114807595": { "id": "n2114807595", - "loc": [-85.6371081, 41.962574] + "loc": [-85.637108, 41.962574] }, "n2189015934": { "id": "n2189015934", - "loc": [-85.6364855, 41.9595098] + "loc": [-85.636486, 41.95951] }, "n2189015949": { "id": "n2189015949", - "loc": [-85.6363466, 41.9595105] + "loc": [-85.636347, 41.959511] }, "w208627244": { "id": "w208627244", @@ -28831,7 +17107,6 @@ "w208627240": { "id": "w208627240", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015961", "n2189015971", "n2189015962", "n2189015963", "n2189015964", "n2189015961"] @@ -28847,7 +17122,6 @@ "w208627237": { "id": "w208627237", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015955", "n2189015957", "n2189015958", "n2189015952", "n2189015955"] @@ -28863,7 +17137,6 @@ "w208627228": { "id": "w208627228", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015897", "n2189015900", "n2189015903", "n2189015906", "n2189015897"] @@ -28889,7 +17162,6 @@ "w208627239": { "id": "w208627239", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015957", "n2189015959", "n2189015960", "n2189015958", "n2189015957"] @@ -28897,7 +17169,6 @@ "w208627233": { "id": "w208627233", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015934", "n2189015937", "n2189015940", "n2189015943", "n2189015945", "n2189015949", "n2189015934"] @@ -28905,7 +17176,6 @@ "w208627241": { "id": "w208627241", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015961", "n2189015966", "n2189015968", "n2189015971", "n2189015961"] @@ -28921,7 +17191,6 @@ "w208627235": { "id": "w208627235", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015940", "n2189015952", "n2189015955", "n2189015937", "n2189015940"] @@ -28945,15 +17214,13 @@ "w208627242": { "id": "w208627242", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2189015974", "n2189015977", "n2189015980", "n2189015983", "n2189015986", "n2189015989", "n2189015974"] }, "w208627216": { "id": "w208627216", "tags": { - "area": "yes", "building": "yes" }, "nodes": ["n2189015731", "n2189015734", "n2189015737", "n2189015738", "n2189015731"] @@ -28994,101 +17261,69 @@ }, "nodes": ["n185968112", "n185987987", "n185967438", "n185978399"] }, - "n394490857": { - "id": "n394490857", - "loc": [-85.633952, 41.960664] - }, - "n394490858": { - "id": "n394490858", - "loc": [-85.633938, 41.960227] - }, - "n394490859": { - "id": "n394490859", - "loc": [-85.634794, 41.960212] - }, - "n394490860": { - "id": "n394490860", - "loc": [-85.634815, 41.960662] - }, - "n394490861": { - "id": "n394490861", - "loc": [-85.634103, 41.961268] - }, - "n394490862": { - "id": "n394490862", - "loc": [-85.634103, 41.961001] - }, - "n394490863": { - "id": "n394490863", - "loc": [-85.634504, 41.961003] - }, - "n394490864": { - "id": "n394490864", - "loc": [-85.634561, 41.961269] - }, "n1057629869": { "id": "n1057629869", - "loc": [-85.6382599, 41.9612134] + "loc": [-85.63826, 41.961213] }, "n1057629937": { "id": "n1057629937", - "loc": [-85.6380035, 41.9616137] + "loc": [-85.638003, 41.961614] }, "n2189016014": { "id": "n2189016014", - "loc": [-85.6360365, 41.9626496] + "loc": [-85.636037, 41.96265] }, "n2189016017": { "id": "n2189016017", - "loc": [-85.6360374, 41.9623228] + "loc": [-85.636037, 41.962323] }, "n2189016020": { "id": "n2189016020", - "loc": [-85.6367557, 41.9623239] + "loc": [-85.636756, 41.962324] }, "n2189016022": { "id": "n2189016022", - "loc": [-85.6367566, 41.9619919] + "loc": [-85.636757, 41.961992] }, "n2189016025": { "id": "n2189016025", - "loc": [-85.6351794, 41.9619893] + "loc": [-85.635179, 41.961989] }, "n2189016028": { "id": "n2189016028", - "loc": [-85.6351788, 41.9622011] + "loc": [-85.635179, 41.962201] }, "n2189016031": { "id": "n2189016031", - "loc": [-85.6350855, 41.9622009] + "loc": [-85.635086, 41.962201] }, "n2189016034": { "id": "n2189016034", - "loc": [-85.6350845, 41.962527] + "loc": [-85.635085, 41.962527] }, "n2189016037": { "id": "n2189016037", - "loc": [-85.6352732, 41.9625273] + "loc": [-85.635273, 41.962527] }, "n2189016039": { "id": "n2189016039", - "loc": [-85.6352738, 41.9623178] + "loc": [-85.635274, 41.962318] }, "n2189016042": { "id": "n2189016042", - "loc": [-85.6357712, 41.9623186] + "loc": [-85.635771, 41.962319] }, "n2189016044": { "id": "n2189016044", - "loc": [-85.6357702, 41.9626492] + "loc": [-85.63577, 41.962649] }, "n1057629880": { "id": "n1057629880", - "loc": [-85.638817, 41.9619017] + "loc": [-85.638817, 41.961902] }, "n1057629923": { "id": "n1057629923", - "loc": [-85.6390733, 41.9615014] + "loc": [-85.639073, 41.961501] }, "w91092312": { "id": "w91092312", @@ -29097,26 +17332,9 @@ }, "nodes": ["n1057629923", "n1057629869", "n1057629937", "n1057629880", "n1057629923"] }, - "w34369826": { - "id": "w34369826", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394490861", "n394490862", "n394490863", "n394490864", "n394490861"] - }, - "w34369825": { - "id": "w34369825", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394490857", "n394490858", "n394490859", "n394490860", "n394490857"] - }, "w208627248": { "id": "w208627248", "tags": { - "area": "yes", "building": "yes" }, "nodes": [ @@ -29135,72 +17353,60 @@ "n2189016014" ] }, - "n394490766": { - "id": "n394490766", - "loc": [-85.616777, 41.955642] - }, - "n394490768": { - "id": "n394490768", - "loc": [-85.617239, 41.955644] - }, - "n394490792": { - "id": "n394490792", - "loc": [-85.619034, 41.95543] - }, "n185972055": { "id": "n185972055", - "loc": [-85.6185905, 41.9568211] + "loc": [-85.61859, 41.956821] }, "n185972057": { "id": "n185972057", - "loc": [-85.6186688, 41.9570086] + "loc": [-85.618669, 41.957009] }, "n185972059": { "id": "n185972059", - "loc": [-85.6186924, 41.9581453] + "loc": [-85.618692, 41.958145] }, "n185972060": { "id": "n185972060", - "loc": [-85.6187082, 41.9588211], + "loc": [-85.618708, 41.958821], "tags": { "highway": "turning_circle" } }, "n1819790724": { "id": "n1819790724", - "loc": [-85.6182155, 41.9555703] + "loc": [-85.618216, 41.95557] }, "n1819790735": { "id": "n1819790735", - "loc": [-85.6184059, 41.9566188] + "loc": [-85.618406, 41.956619] }, "n1819790799": { "id": "n1819790799", - "loc": [-85.6182372, 41.9563771] + "loc": [-85.618237, 41.956377] }, "n1819790896": { "id": "n1819790896", - "loc": [-85.6181431, 41.9557227] + "loc": [-85.618143, 41.955723] }, "n185971405": { "id": "n185971405", - "loc": [-85.6186766, 41.9577468] + "loc": [-85.618677, 41.957747] }, "n185971565": { "id": "n185971565", - "loc": [-85.6181613, 41.9560879] + "loc": [-85.618161, 41.956088] }, "n185967985": { "id": "n185967985", - "loc": [-85.6186798, 41.9585791] + "loc": [-85.61868, 41.958579] }, "n185955753": { "id": "n185955753", - "loc": [-85.620773, 41.9555854] + "loc": [-85.620773, 41.955585] }, "n185955755": { "id": "n185955755", - "loc": [-85.6212652, 41.9559891] + "loc": [-85.621265, 41.955989] }, "n185955748": { "id": "n185955748", @@ -29208,23 +17414,23 @@ }, "n185955751": { "id": "n185955751", - "loc": [-85.6206912, 41.955367] + "loc": [-85.620691, 41.955367] }, "n185967987": { "id": "n185967987", - "loc": [-85.6159351, 41.9585809] + "loc": [-85.615935, 41.958581] }, "n185971407": { "id": "n185971407", - "loc": [-85.6159142, 41.9577578] + "loc": [-85.615914, 41.957758] }, "n185971570": { "id": "n185971570", - "loc": [-85.6162248, 41.95603] + "loc": [-85.616225, 41.95603] }, "n185971572": { "id": "n185971572", - "loc": [-85.6160402, 41.9560749] + "loc": [-85.61604, 41.956075] }, "n185971574": { "id": "n185971574", @@ -29232,47 +17438,19 @@ }, "n185981301": { "id": "n185981301", - "loc": [-85.6158973, 41.9581601] - }, - "n394490762": { - "id": "n394490762", - "loc": [-85.617193, 41.954706] - }, - "n394490764": { - "id": "n394490764", - "loc": [-85.616773, 41.954737] - }, - "n394490787": { - "id": "n394490787", - "loc": [-85.618972, 41.954737] - }, - "n394490790": { - "id": "n394490790", - "loc": [-85.619046, 41.954929] - }, - "n394490794": { - "id": "n394490794", - "loc": [-85.619922, 41.955296] - }, - "n394490796": { - "id": "n394490796", - "loc": [-85.61991, 41.95501] - }, - "n394490798": { - "id": "n394490798", - "loc": [-85.619974, 41.954751] + "loc": [-85.615897, 41.95816] }, "n1819790677": { "id": "n1819790677", - "loc": [-85.6187031, 41.9550522] + "loc": [-85.618703, 41.955052] }, "n1819790787": { "id": "n1819790787", - "loc": [-85.6186436, 41.9552022] + "loc": [-85.618644, 41.955202] }, "n1819790828": { "id": "n1819790828", - "loc": [-85.6185127, 41.9553393] + "loc": [-85.618513, 41.955339] }, "w17966857": { "id": "w17966857", @@ -29283,14 +17461,6 @@ }, "nodes": ["n185972059", "n185981301"] }, - "w34369814": { - "id": "w34369814", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394490787", "n394490790", "n394490792", "n394490794", "n394490796", "n394490798", "n394490787"] - }, "w17964176": { "id": "w17964176", "tags": { @@ -29341,14 +17511,6 @@ "n185972060" ] }, - "w34369811": { - "id": "w34369811", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394490762", "n394490764", "n394490766", "n394490768", "n394490762"] - }, "w17965854": { "id": "w17965854", "tags": { @@ -29360,199 +17522,38 @@ }, "n2139795769": { "id": "n2139795769", - "loc": [-85.6250804, 41.9608796] + "loc": [-85.62508, 41.96088] }, "n2139795770": { "id": "n2139795770", - "loc": [-85.6250315, 41.9613684] - }, - "n2139795771": { - "id": "n2139795771", - "loc": [-85.6249671, 41.9614362] - }, - "n2139795772": { - "id": "n2139795772", - "loc": [-85.6249698, 41.961522] - }, - "n2139795773": { - "id": "n2139795773", - "loc": [-85.6250798, 41.9615838] - }, - "n2139795774": { - "id": "n2139795774", - "loc": [-85.6252273, 41.9615639] - }, - "n2139795775": { - "id": "n2139795775", - "loc": [-85.6252863, 41.9614622] - }, - "n2139795776": { - "id": "n2139795776", - "loc": [-85.6252273, 41.9613764] - }, - "n2139795777": { - "id": "n2139795777", - "loc": [-85.6251227, 41.9613525] + "loc": [-85.624998, 41.961332] }, "n2139795778": { "id": "n2139795778", - "loc": [-85.6249564, 41.9612527] + "loc": [-85.624956, 41.961253] }, "n2139795779": { "id": "n2139795779", - "loc": [-85.6249846, 41.9610254] + "loc": [-85.624985, 41.961025] }, "n2139795780": { "id": "n2139795780", - "loc": [-85.6266725, 41.9599647] + "loc": [-85.626907, 41.959965], + "tags": { + "highway": "turning_circle" + } }, "n2139795781": { "id": "n2139795781", - "loc": [-85.6259162, 41.9599711] + "loc": [-85.625916, 41.959971] }, "n2139795782": { "id": "n2139795782", - "loc": [-85.6257185, 41.960019] + "loc": [-85.625719, 41.960019] }, "n2139795783": { "id": "n2139795783", - "loc": [-85.6255509, 41.9601213] - }, - "n185963539": { - "id": "n185963539", - "loc": [-85.615718, 41.983893] - }, - "n185964418": { - "id": "n185964418", - "loc": [-85.616626, 42.049512] - }, - "n185966614": { - "id": "n185966614", - "loc": [-85.615514, 41.976603] - }, - "n185966635": { - "id": "n185966635", - "loc": [-85.616118, 42.013017] - }, - "n185969040": { - "id": "n185969040", - "loc": [-85.615632, 41.972357] - }, - "n185969070": { - "id": "n185969070", - "loc": [-85.619145, 41.967648] - }, - "n185972156": { - "id": "n185972156", - "loc": [-85.621894, 41.963956] - }, - "n185972157": { - "id": "n185972157", - "loc": [-85.621806, 41.964077] - }, - "n185972158": { - "id": "n185972158", - "loc": [-85.620848, 41.965341] - }, - "n185972159": { - "id": "n185972159", - "loc": [-85.620684, 41.965558] - }, - "n185972160": { - "id": "n185972160", - "loc": [-85.620621, 41.965658] - }, - "n185972161": { - "id": "n185972161", - "loc": [-85.617844, 41.969359] - }, - "n185972162": { - "id": "n185972162", - "loc": [-85.616843, 41.97068] - }, - "n185972164": { - "id": "n185972164", - "loc": [-85.616714, 41.970839] - }, - "n185972166": { - "id": "n185972166", - "loc": [-85.615879, 41.971969] - }, - "n185972168": { - "id": "n185972168", - "loc": [-85.615748, 41.972159] - }, - "n185972170": { - "id": "n185972170", - "loc": [-85.615589, 41.972502] - }, - "n185972172": { - "id": "n185972172", - "loc": [-85.615542, 41.972733] - }, - "n185972175": { - "id": "n185972175", - "loc": [-85.615524, 41.972947] - }, - "n185972177": { - "id": "n185972177", - "loc": [-85.615512, 41.973715] - }, - "n185972179": { - "id": "n185972179", - "loc": [-85.615513, 41.976496] - }, - "n185972180": { - "id": "n185972180", - "loc": [-85.615538, 41.977246] - }, - "n185972181": { - "id": "n185972181", - "loc": [-85.61558, 41.982139] - }, - "n185972184": { - "id": "n185972184", - "loc": [-85.61557, 41.983317] - }, - "n185972186": { - "id": "n185972186", - "loc": [-85.615591, 41.983463] - }, - "n185972188": { - "id": "n185972188", - "loc": [-85.615763, 41.984146] - }, - "n185972190": { - "id": "n185972190", - "loc": [-85.615814, 41.98435] - }, - "n185972192": { - "id": "n185972192", - "loc": [-85.615965, 41.998453] - }, - "n185972194": { - "id": "n185972194", - "loc": [-85.615982, 42.001237] - }, - "n185972195": { - "id": "n185972195", - "loc": [-85.616055, 42.00555] - }, - "n185972197": { - "id": "n185972197", - "loc": [-85.616134, 42.014887] - }, - "n185972199": { - "id": "n185972199", - "loc": [-85.616177, 42.018465] - }, - "n185972201": { - "id": "n185972201", - "loc": [-85.616298, 42.027627] - }, - "n185972203": { - "id": "n185972203", - "loc": [-85.616513, 42.042212] + "loc": [-85.625551, 41.960121] }, "w203968015": { "id": "w203968015", @@ -29561,72 +17562,6 @@ }, "nodes": ["n2139795768", "n2139795769"] }, - "w17965932": { - "id": "w17965932", - "tags": { - "highway": "residential", - "name": "Buckhorn Road", - "name_1": "County Highway 122" - }, - "nodes": [ - "n185972155", - "n185972156", - "n185972157", - "n185972158", - "n185972159", - "n185972160", - "n185969070", - "n185972161", - "n185972162", - "n185972164", - "n185972166", - "n185972168", - "n185969040", - "n185972170", - "n185972172", - "n185972175", - "n185972177", - "n185972179", - "n185966614", - "n185972180", - "n185972181", - "n185972184", - "n185972186", - "n185963539", - "n185972188", - "n185972190", - "n185972192", - "n185972194", - "n185972195", - "n185966635", - "n185972197", - "n185972199", - "n185972201", - "n185972203", - "n185964418" - ] - }, - "w203968016": { - "id": "w203968016", - "tags": { - "highway": "residential", - "name": "New Jersey Court" - }, - "nodes": [ - "n2139795770", - "n2139795771", - "n2139795772", - "n2139795773", - "n2139795774", - "n2139795775", - "n2139795776", - "n2139795777", - "n2139795770", - "n2139795778", - "n2139795779", - "n2139795769" - ] - }, "w203968017": { "id": "w203968017", "tags": { @@ -29637,99 +17572,99 @@ }, "n1819790528": { "id": "n1819790528", - "loc": [-85.6184827, 41.960025] + "loc": [-85.618483, 41.960025] }, "n1819790530": { "id": "n1819790530", - "loc": [-85.6168626, 41.9605834] + "loc": [-85.616863, 41.960583] }, "n1819790534": { "id": "n1819790534", - "loc": [-85.6197379, 41.9617163] + "loc": [-85.619738, 41.961716] }, "n1819790541": { "id": "n1819790541", - "loc": [-85.6198881, 41.9620833] + "loc": [-85.619888, 41.962083] }, "n1819790543": { "id": "n1819790543", - "loc": [-85.619695, 41.9619397] + "loc": [-85.619695, 41.96194] }, "n1819790547": { "id": "n1819790547", - "loc": [-85.6190298, 41.9609504] + "loc": [-85.61903, 41.96095] }, "n1819790555": { "id": "n1819790555", - "loc": [-85.6180471, 41.9609788] + "loc": [-85.618047, 41.960979] }, "n1819790559": { "id": "n1819790559", - "loc": [-85.6203817, 41.9605436] + "loc": [-85.620382, 41.960544] }, "n1819790583": { "id": "n1819790583", - "loc": [-85.6201564, 41.9603282] + "loc": [-85.620156, 41.960328] }, "n1819790590": { "id": "n1819790590", - "loc": [-85.617045, 41.9598894] + "loc": [-85.617045, 41.959889] }, "n1819790609": { "id": "n1819790609", - "loc": [-85.6177638, 41.9598495] + "loc": [-85.617764, 41.959849] }, "n1819790618": { "id": "n1819790618", - "loc": [-85.6195234, 41.9610143] + "loc": [-85.619523, 41.961014] }, "n1819790642": { "id": "n1819790642", - "loc": [-85.6181179, 41.9627933] + "loc": [-85.618118, 41.962793] }, "n1819790659": { "id": "n1819790659", - "loc": [-85.6174634, 41.962897] + "loc": [-85.617463, 41.962897] }, "n1819790665": { "id": "n1819790665", - "loc": [-85.6170343, 41.9630885] + "loc": [-85.617034, 41.963088] }, "n1819790674": { "id": "n1819790674", - "loc": [-85.6194697, 41.9601925] + "loc": [-85.61947, 41.960192] }, "n1819790685": { "id": "n1819790685", - "loc": [-85.6207722, 41.9610665] + "loc": [-85.620772, 41.961067] }, "n1819790687": { "id": "n1819790687", - "loc": [-85.6202315, 41.9622109] + "loc": [-85.620232, 41.962211] }, "n1819790697": { "id": "n1819790697", - "loc": [-85.6184505, 41.9624662] + "loc": [-85.61845, 41.962466] }, "n1819790726": { "id": "n1819790726", - "loc": [-85.6178926, 41.9628492] + "loc": [-85.617893, 41.962849] }, "n1819790738": { "id": "n1819790738", - "loc": [-85.6173347, 41.9598016] + "loc": [-85.617335, 41.959802] }, "n1819790762": { "id": "n1819790762", - "loc": [-85.6186221, 41.9609105] + "loc": [-85.618622, 41.96091] }, "n1819790774": { "id": "n1819790774", - "loc": [-85.6175922, 41.9608308] + "loc": [-85.617592, 41.960831] }, "n1819790781": { "id": "n1819790781", - "loc": [-85.6167768, 41.9633198] + "loc": [-85.616777, 41.96332] }, "n1819790796": { "id": "n1819790796", @@ -29737,2527 +17672,79 @@ }, "n1819790811": { "id": "n1819790811", - "loc": [-85.6208215, 41.9620195] + "loc": [-85.620822, 41.962019] }, "n1819790833": { "id": "n1819790833", - "loc": [-85.618311, 41.9612536] + "loc": [-85.618311, 41.961254] }, "n1819790854": { "id": "n1819790854", - "loc": [-85.6183646, 41.9626417] + "loc": [-85.618365, 41.962642] }, "n1819790863": { "id": "n1819790863", - "loc": [-85.6204997, 41.9608547] + "loc": [-85.6205, 41.960855] }, "n1819790867": { "id": "n1819790867", - "loc": [-85.6184934, 41.9621391] + "loc": [-85.618493, 41.962139] }, "n1819790877": { "id": "n1819790877", - "loc": [-85.6206928, 41.9621152] + "loc": [-85.620693, 41.962115] }, "n1819790881": { "id": "n1819790881", - "loc": [-85.6170879, 41.960735] + "loc": [-85.617088, 41.960735] }, "n1819790891": { "id": "n1819790891", - "loc": [-85.6168304, 41.9601207] + "loc": [-85.61683, 41.960121] }, "n1819790898": { "id": "n1819790898", - "loc": [-85.619813, 41.9612297] + "loc": [-85.619813, 41.96123] }, "n1819790909": { "id": "n1819790909", - "loc": [-85.6167982, 41.960376] + "loc": [-85.616798, 41.960376] }, "n1819790912": { "id": "n1819790912", - "loc": [-85.6205855, 41.9610462] - }, - "n1819790544": { - "id": "n1819790544", - "loc": [-85.612968, 41.9707781] - }, - "n1819790549": { - "id": "n1819790549", - "loc": [-85.614395, 41.9697172] + "loc": [-85.620586, 41.961046] }, "n1819790552": { "id": "n1819790552", - "loc": [-85.6180535, 41.9655536] - }, - "n1819790554": { - "id": "n1819790554", - "loc": [-85.6111227, 41.9703713] - }, - "n1819790560": { - "id": "n1819790560", - "loc": [-85.6112729, 41.9701958] - }, - "n1819790563": { - "id": "n1819790563", - "loc": [-85.6137512, 41.9689917] + "loc": [-85.618054, 41.965554] }, "n1819790564": { "id": "n1819790564", - "loc": [-85.6181072, 41.9659205] - }, - "n1819790595": { - "id": "n1819790595", - "loc": [-85.6170021, 41.9666863] + "loc": [-85.618107, 41.965921] }, "n1819790605": { "id": "n1819790605", - "loc": [-85.6168948, 41.9644527] - }, - "n1819790606": { - "id": "n1819790606", - "loc": [-85.6128071, 41.9701081] - }, - "n1819790607": { - "id": "n1819790607", - "loc": [-85.6129251, 41.9704032] - }, - "n1819790612": { - "id": "n1819790612", - "loc": [-85.6177638, 41.9663912] - }, - "n1819790615": { - "id": "n1819790615", - "loc": [-85.6152533, 41.9670373] - }, - "n1819790622": { - "id": "n1819790622", - "loc": [-85.6146739, 41.9673804] - }, - "n1819790623": { - "id": "n1819790623", - "loc": [-85.6180428, 41.9661838] + "loc": [-85.616895, 41.964453] }, "n1819790625": { "id": "n1819790625", - "loc": [-85.6172918, 41.9646202] + "loc": [-85.617292, 41.96462] }, "n1819790645": { "id": "n1819790645", - "loc": [-85.6178067, 41.965043] - }, - "n1819790647": { - "id": "n1819790647", - "loc": [-85.6143306, 41.9712488] - }, - "n1819790649": { - "id": "n1819790649", - "loc": [-85.6147383, 41.9707702] - }, - "n1819790654": { - "id": "n1819790654", - "loc": [-85.6157361, 41.9668459] - }, - "n1819790657": { - "id": "n1819790657", - "loc": [-85.6145666, 41.9710733] + "loc": [-85.617807, 41.965043] }, "n1819790668": { "id": "n1819790668", - "loc": [-85.6166909, 41.9642692] - }, - "n1819790671": { - "id": "n1819790671", - "loc": [-85.6141482, 41.9696538] - }, - "n1819790679": { - "id": "n1819790679", - "loc": [-85.6148349, 41.9705388] - }, - "n1819790686": { - "id": "n1819790686", - "loc": [-85.6139551, 41.9695501] - }, - "n1819790696": { - "id": "n1819790696", - "loc": [-85.6119703, 41.9699087] - }, - "n1819790704": { - "id": "n1819790704", - "loc": [-85.6140731, 41.9684174] - }, - "n1819790706": { - "id": "n1819790706", - "loc": [-85.6124745, 41.9699246] + "loc": [-85.616691, 41.964269] }, "n1819790718": { "id": "n1819790718", - "loc": [-85.6165407, 41.9636868] - }, - "n1819790720": { - "id": "n1819790720", - "loc": [-85.61388, 41.9687365] + "loc": [-85.616541, 41.963687] }, "n1819790731": { "id": "n1819790731", - "loc": [-85.6165193, 41.9639421] - }, - "n1819790739": { - "id": "n1819790739", - "loc": [-85.6146739, 41.9699964] - }, - "n1819790753": { - "id": "n1819790753", - "loc": [-85.6173883, 41.9665747] - }, - "n1819790760": { - "id": "n1819790760", - "loc": [-85.6133221, 41.9712089] - }, - "n1819790767": { - "id": "n1819790767", - "loc": [-85.6116698, 41.9699246] - }, - "n1819790779": { - "id": "n1819790779", - "loc": [-85.6130753, 41.9710573] - }, - "n1819790791": { - "id": "n1819790791", - "loc": [-85.6137083, 41.9692869] - }, - "n1819790795": { - "id": "n1819790795", - "loc": [-85.6141482, 41.9679627] - }, - "n1819790798": { - "id": "n1819790798", - "loc": [-85.6137727, 41.9694305] - }, - "n1819790836": { - "id": "n1819790836", - "loc": [-85.6143842, 41.9676037] - }, - "n1819790915": { - "id": "n1819790915", - "loc": [-85.6148456, 41.9702756] - }, - "n1819790926": { - "id": "n1819790926", - "loc": [-85.6138371, 41.9713525] - }, - "n1819790927": { - "id": "n1819790927", - "loc": [-85.6141053, 41.9713525] - }, - "n1819790931": { - "id": "n1819790931", - "loc": [-85.6162832, 41.966814] - }, - "n1821014625": { - "id": "n1821014625", - "loc": [-85.5960611, 41.9808498] - }, - "n1821014627": { - "id": "n1821014627", - "loc": [-85.5565843, 42.010982] - }, - "n1821014629": { - "id": "n1821014629", - "loc": [-85.5971541, 41.9805808] - }, - "n1821014632": { - "id": "n1821014632", - "loc": [-85.6061837, 41.9725907] - }, - "n1821014633": { - "id": "n1821014633", - "loc": [-85.5247773, 42.025766] - }, - "n1821014635": { - "id": "n1821014635", - "loc": [-85.5908938, 41.9902384] - }, - "n1821014636": { - "id": "n1821014636", - "loc": [-85.5917682, 41.9860637] - }, - "n1821014637": { - "id": "n1821014637", - "loc": [-85.5456556, 42.0166797] - }, - "n1821014638": { - "id": "n1821014638", - "loc": [-85.5795749, 42.0032352] - }, - "n1821014639": { - "id": "n1821014639", - "loc": [-85.6103988, 41.9723456] - }, - "n1821014642": { - "id": "n1821014642", - "loc": [-85.5818816, 42.0022466] - }, - "n1821014643": { - "id": "n1821014643", - "loc": [-85.5570604, 42.0091586] - }, - "n1821014644": { - "id": "n1821014644", - "loc": [-85.5952886, 41.9803792] - }, - "n1821014645": { - "id": "n1821014645", - "loc": [-85.5780366, 42.0040343] - }, - "n1821014646": { - "id": "n1821014646", - "loc": [-85.6050505, 41.9751971] - }, - "n1821014647": { - "id": "n1821014647", - "loc": [-85.5854435, 41.9946162] - }, - "n1821014648": { - "id": "n1821014648", - "loc": [-85.5452278, 42.0168768] - }, - "n1821014649": { - "id": "n1821014649", - "loc": [-85.6023254, 41.9780166] - }, - "n1821014651": { - "id": "n1821014651", - "loc": [-85.5761899, 42.0046783] - }, - "n1821014653": { - "id": "n1821014653", - "loc": [-85.5897351, 41.9876707] - }, - "n1821014657": { - "id": "n1821014657", - "loc": [-85.5963601, 41.9808998] - }, - "n1821014658": { - "id": "n1821014658", - "loc": [-85.5892952, 41.9951983] - }, - "n1821014660": { - "id": "n1821014660", - "loc": [-85.5778328, 42.0037194] - }, - "n1821014661": { - "id": "n1821014661", - "loc": [-85.5541475, 42.0125705] - }, - "n1821014663": { - "id": "n1821014663", - "loc": [-85.5914047, 41.9856469] - }, - "n1821014664": { - "id": "n1821014664", - "loc": [-85.6101681, 41.9727723] - }, - "n1821014665": { - "id": "n1821014665", - "loc": [-85.5910172, 41.9854696] - }, - "n1821014666": { - "id": "n1821014666", - "loc": [-85.5398688, 42.0187699] - }, - "n1821014667": { - "id": "n1821014667", - "loc": [-85.5218752, 42.0282884] - }, - "n1821014668": { - "id": "n1821014668", - "loc": [-85.5159582, 42.0329384] - }, - "n1821014669": { - "id": "n1821014669", - "loc": [-85.5898102, 41.9847319] - }, - "n1821014670": { - "id": "n1821014670", - "loc": [-85.5734809, 42.0066235] - }, - "n1821014671": { - "id": "n1821014671", - "loc": [-85.5922939, 41.980852] - }, - "n1821014672": { - "id": "n1821014672", - "loc": [-85.6023629, 41.9781163] - }, - "n1821014674": { - "id": "n1821014674", - "loc": [-85.5409953, 42.0191724] - }, - "n1821014676": { - "id": "n1821014676", - "loc": [-85.584435, 41.9949909] - }, - "n1821014677": { - "id": "n1821014677", - "loc": [-85.5972399, 41.9783835] - }, - "n1821014678": { - "id": "n1821014678", - "loc": [-85.5616738, 42.0071337] - }, - "n1821014681": { - "id": "n1821014681", - "loc": [-85.5202994, 42.0310755] - }, - "n1821014682": { - "id": "n1821014682", - "loc": [-85.5915912, 41.9857767] - }, - "n1821014684": { - "id": "n1821014684", - "loc": [-85.6022288, 41.977897] - }, - "n1821014687": { - "id": "n1821014687", - "loc": [-85.5933024, 41.9846362] - }, - "n1821014688": { - "id": "n1821014688", - "loc": [-85.5846871, 41.9956169] - }, - "n1821014689": { - "id": "n1821014689", - "loc": [-85.5898209, 41.99037] - }, - "n1821014691": { - "id": "n1821014691", - "loc": [-85.5448939, 42.0149261] - }, - "n1821014692": { - "id": "n1821014692", - "loc": [-85.5977763, 41.9786348] - }, - "n1821014694": { - "id": "n1821014694", - "loc": [-85.5767706, 42.0034523] - }, - "n1821014695": { - "id": "n1821014695", - "loc": [-85.6103559, 41.9726766] - }, - "n1821014697": { - "id": "n1821014697", - "loc": [-85.5922134, 41.9809876] - }, - "n1821014698": { - "id": "n1821014698", - "loc": [-85.5935277, 41.9831728] - }, - "n1821014700": { - "id": "n1821014700", - "loc": [-85.5674674, 42.0078273] - }, - "n1821014703": { - "id": "n1821014703", - "loc": [-85.6021, 41.9778053] - }, - "n1821014704": { - "id": "n1821014704", - "loc": [-85.5756763, 42.0053737] - }, - "n1821014705": { - "id": "n1821014705", - "loc": [-85.5887695, 41.9895207] - }, - "n1821014707": { - "id": "n1821014707", - "loc": [-85.6061073, 41.9746866] - }, - "n1821014708": { - "id": "n1821014708", - "loc": [-85.6033446, 41.9751692] - }, - "n1821014710": { - "id": "n1821014710", - "loc": [-85.5180986, 42.0322332] - }, - "n1821014711": { - "id": "n1821014711", - "loc": [-85.543365, 42.0163569] - }, - "n1821014712": { - "id": "n1821014712", - "loc": [-85.6030656, 41.9753646] - }, - "n1821014713": { - "id": "n1821014713", - "loc": [-85.6104417, 41.9704792] - }, - "n1821014714": { - "id": "n1821014714", - "loc": [-85.5205716, 42.030998] - }, - "n1821014716": { - "id": "n1821014716", - "loc": [-85.516382, 42.032536] - }, - "n1821014717": { - "id": "n1821014717", - "loc": [-85.5932863, 41.9820882] - }, - "n1821014718": { - "id": "n1821014718", - "loc": [-85.5361928, 42.0194974] - }, - "n1821014720": { - "id": "n1821014720", - "loc": [-85.6011613, 41.9773586] - }, - "n1821014721": { - "id": "n1821014721", - "loc": [-85.554287, 42.0109124] - }, - "n1821014722": { - "id": "n1821014722", - "loc": [-85.5577524, 42.0103425] - }, - "n1821014725": { - "id": "n1821014725", - "loc": [-85.5867256, 41.9921004] - }, - "n1821014726": { - "id": "n1821014726", - "loc": [-85.5856045, 41.9968807] - }, - "n1821014727": { - "id": "n1821014727", - "loc": [-85.5545445, 42.0106454] - }, - "n1821014728": { - "id": "n1821014728", - "loc": [-85.5923797, 41.9842534] - }, - "n1821014729": { - "id": "n1821014729", - "loc": [-85.5696346, 42.0081462] - }, - "n1821014730": { - "id": "n1821014730", - "loc": [-85.5998322, 41.9786884] - }, - "n1821014735": { - "id": "n1821014735", - "loc": [-85.5337426, 42.0218266] - }, - "n1821014736": { - "id": "n1821014736", - "loc": [-85.5847944, 41.994672] - }, - "n1821014740": { - "id": "n1821014740", - "loc": [-85.5315271, 42.0238669] - }, - "n1821014741": { - "id": "n1821014741", - "loc": [-85.5248846, 42.027085] - }, - "n1821014742": { - "id": "n1821014742", - "loc": [-85.5853376, 41.997018] - }, - "n1821014743": { - "id": "n1821014743", - "loc": [-85.5894883, 41.988811] - }, - "n1821014745": { - "id": "n1821014745", - "loc": [-85.6095311, 41.9726226] - }, - "n1821014746": { - "id": "n1821014746", - "loc": [-85.5531511, 42.0133416] - }, - "n1821014747": { - "id": "n1821014747", - "loc": [-85.5735882, 42.007058] - }, - "n1821014749": { - "id": "n1821014749", - "loc": [-85.5428554, 42.0164366] - }, - "n1821014751": { - "id": "n1821014751", - "loc": [-85.5395255, 42.0186304] - }, - "n1821014752": { - "id": "n1821014752", - "loc": [-85.571378, 42.0083176] - }, - "n1821014754": { - "id": "n1821014754", - "loc": [-85.5541918, 42.0113925] - }, - "n1821014755": { - "id": "n1821014755", - "loc": [-85.5278029, 42.0250806] - }, - "n1821014756": { - "id": "n1821014756", - "loc": [-85.5936725, 41.9827102] - }, - "n1821014757": { - "id": "n1821014757", - "loc": [-85.5176266, 42.0346677] - }, - "n1821014758": { - "id": "n1821014758", - "loc": [-85.6096692, 41.9714245] - }, - "n1821014759": { - "id": "n1821014759", - "loc": [-85.5770321, 42.0034266] - }, - "n1821014761": { - "id": "n1821014761", - "loc": [-85.5988921, 41.9779369] - }, - "n1821014762": { - "id": "n1821014762", - "loc": [-85.5811788, 42.0024499] - }, - "n1821014763": { - "id": "n1821014763", - "loc": [-85.5154003, 42.0381101] - }, - "n1821014764": { - "id": "n1821014764", - "loc": [-85.5155827, 42.0374089] - }, - "n1821014765": { - "id": "n1821014765", - "loc": [-85.5891249, 41.9884978] - }, - "n1821014766": { - "id": "n1821014766", - "loc": [-85.5313863, 42.0238293] - }, - "n1821014768": { - "id": "n1821014768", - "loc": [-85.593297, 41.9833363] - }, - "n1821014769": { - "id": "n1821014769", - "loc": [-85.5849446, 41.9957245] - }, - "n1821014770": { - "id": "n1821014770", - "loc": [-85.5537774, 42.0130847] - }, - "n1821014771": { - "id": "n1821014771", - "loc": [-85.6111766, 41.9706069] - }, - "n1821014772": { - "id": "n1821014772", - "loc": [-85.5585477, 42.008989] - }, - "n1821014774": { - "id": "n1821014774", - "loc": [-85.5928142, 41.9852623] - }, - "n1821014777": { - "id": "n1821014777", - "loc": [-85.5891933, 41.9882608] - }, - "n1821014778": { - "id": "n1821014778", - "loc": [-85.5926909, 41.9817532] - }, - "n1821014779": { - "id": "n1821014779", - "loc": [-85.5260272, 42.0252201] - }, - "n1821014781": { - "id": "n1821014781", - "loc": [-85.5894615, 41.9950468] - }, - "n1821014782": { - "id": "n1821014782", - "loc": [-85.5461063, 42.0143242] - }, - "n1821014783": { - "id": "n1821014783", - "loc": [-85.5711527, 42.0085886] - }, - "n1821014784": { - "id": "n1821014784", - "loc": [-85.5329379, 42.0218624] - }, - "n1821014786": { - "id": "n1821014786", - "loc": [-85.583047, 42.0020252] - }, - "n1821014787": { - "id": "n1821014787", - "loc": [-85.5758962, 42.0054095] - }, - "n1821014788": { - "id": "n1821014788", - "loc": [-85.5626354, 42.0077733] - }, - "n1821014789": { - "id": "n1821014789", - "loc": [-85.6029852, 41.9755999] - }, - "n1821014790": { - "id": "n1821014790", - "loc": [-85.5892362, 41.9886755] - }, - "n1821014791": { - "id": "n1821014791", - "loc": [-85.5157597, 42.0372017] - }, - "n1821014793": { - "id": "n1821014793", - "loc": [-85.6054582, 41.9751094] - }, - "n1821014794": { - "id": "n1821014794", - "loc": [-85.5986936, 41.9778412] - }, - "n1821014795": { - "id": "n1821014795", - "loc": [-85.5880775, 41.98976] - }, - "n1821014796": { - "id": "n1821014796", - "loc": [-85.5858727, 41.9963624] - }, - "n1821014798": { - "id": "n1821014798", - "loc": [-85.5792543, 42.0035958] - }, - "n1821014799": { - "id": "n1821014799", - "loc": [-85.5921665, 41.9838326] - }, - "n1821014801": { - "id": "n1821014801", - "loc": [-85.599214, 41.9782599] - }, - "n1821014802": { - "id": "n1821014802", - "loc": [-85.5571905, 42.0090967] - }, - "n1821014803": { - "id": "n1821014803", - "loc": [-85.5426891, 42.0173612] - }, - "n1821014804": { - "id": "n1821014804", - "loc": [-85.5889626, 41.9896404] - }, - "n1821014805": { - "id": "n1821014805", - "loc": [-85.5491264, 42.0141648] - }, - "n1821014806": { - "id": "n1821014806", - "loc": [-85.5618897, 42.0072631] - }, - "n1821014808": { - "id": "n1821014808", - "loc": [-85.5573501, 42.0109802] - }, - "n1821014809": { - "id": "n1821014809", - "loc": [-85.5983463, 41.9778031] - }, - "n1821014810": { - "id": "n1821014810", - "loc": [-85.5885173, 41.9895128] - }, - "n1821014811": { - "id": "n1821014811", - "loc": [-85.6084998, 41.9721143] - }, - "n1821014812": { - "id": "n1821014812", - "loc": [-85.5737598, 42.0056389] - }, - "n1821014814": { - "id": "n1821014814", - "loc": [-85.5542173, 42.0118132] - }, - "n1821014816": { - "id": "n1821014816", - "loc": [-85.5277868, 42.024451] - }, - "n1821014817": { - "id": "n1821014817", - "loc": [-85.5403999, 42.0191724] - }, - "n1821014819": { - "id": "n1821014819", - "loc": [-85.5983879, 41.9791452] - }, - "n1821014820": { - "id": "n1821014820", - "loc": [-85.5891302, 41.9897578] - }, - "n1821014822": { - "id": "n1821014822", - "loc": [-85.5930731, 41.9805108] - }, - "n1821014824": { - "id": "n1821014824", - "loc": [-85.515395, 42.0378471] - }, - "n1821014825": { - "id": "n1821014825", - "loc": [-85.5352755, 42.0205136] - }, - "n1821014826": { - "id": "n1821014826", - "loc": [-85.5502744, 42.0133398] - }, - "n1821014828": { - "id": "n1821014828", - "loc": [-85.5701295, 42.0088256] - }, - "n1821014830": { - "id": "n1821014830", - "loc": [-85.5888929, 41.9953099] - }, - "n1821014832": { - "id": "n1821014832", - "loc": [-85.5880077, 41.9901547] - }, - "n1821014833": { - "id": "n1821014833", - "loc": [-85.5451192, 42.0157072] - }, - "n1821014834": { - "id": "n1821014834", - "loc": [-85.6096478, 41.9711932] - }, - "n1821014835": { - "id": "n1821014835", - "loc": [-85.5806424, 42.0026532] - }, - "n1821014836": { - "id": "n1821014836", - "loc": [-85.5911674, 41.9868732] - }, - "n1821014838": { - "id": "n1821014838", - "loc": [-85.5930302, 41.9836571] - }, - "n1821014839": { - "id": "n1821014839", - "loc": [-85.588925, 41.9938148] - }, - "n1821014840": { - "id": "n1821014840", - "loc": [-85.6111874, 41.9705311] - }, - "n1821014841": { - "id": "n1821014841", - "loc": [-85.5680843, 42.0075842] - }, - "n1821014842": { - "id": "n1821014842", - "loc": [-85.6012793, 41.9775062] - }, - "n1821014843": { - "id": "n1821014843", - "loc": [-85.5855562, 41.9989777] - }, - "n1821014844": { - "id": "n1821014844", - "loc": [-85.5506137, 42.0131662] - }, - "n1821014845": { - "id": "n1821014845", - "loc": [-85.5270049, 42.025457] - }, - "n1821014846": { - "id": "n1821014846", - "loc": [-85.5257054, 42.025244] - }, - "n1821014847": { - "id": "n1821014847", - "loc": [-85.6011184, 41.9771832] - }, - "n1821014848": { - "id": "n1821014848", - "loc": [-85.515534, 42.0389234] - }, - "n1821014850": { - "id": "n1821014850", - "loc": [-85.5847032, 42.0010347] - }, - "n1821014853": { - "id": "n1821014853", - "loc": [-85.5361499, 42.019063] - }, - "n1821014854": { - "id": "n1821014854", - "loc": [-85.5439176, 42.0165721] - }, - "n1821014855": { - "id": "n1821014855", - "loc": [-85.5838825, 42.0017284] - }, - "n1821014857": { - "id": "n1821014857", - "loc": [-85.5542173, 42.0122317] - }, - "n1821014859": { - "id": "n1821014859", - "loc": [-85.5708201, 42.0089195] - }, - "n1821014860": { - "id": "n1821014860", - "loc": [-85.5844833, 41.9954415] - }, - "n1821014862": { - "id": "n1821014862", - "loc": [-85.5223204, 42.0295396] - }, - "n1821014863": { - "id": "n1821014863", - "loc": [-85.5777898, 42.0035918] - }, - "n1821014864": { - "id": "n1821014864", - "loc": [-85.591044, 41.9898078] - }, - "n1821014865": { - "id": "n1821014865", - "loc": [-85.5973204, 41.980182] - }, - "n1821014866": { - "id": "n1821014866", - "loc": [-85.5699578, 42.0085825] - }, - "n1821014867": { - "id": "n1821014867", - "loc": [-85.5210598, 42.0305278] - }, - "n1821014868": { - "id": "n1821014868", - "loc": [-85.5929108, 41.9819008] - }, - "n1821014869": { - "id": "n1821014869", - "loc": [-85.5279799, 42.0242995] - }, - "n1821014870": { - "id": "n1821014870", - "loc": [-85.5196114, 42.0320539] - }, - "n1821014871": { - "id": "n1821014871", - "loc": [-85.5785449, 42.0040883] - }, - "n1821014872": { - "id": "n1821014872", - "loc": [-85.588292, 41.9895766] - }, - "n1821014873": { - "id": "n1821014873", - "loc": [-85.5160172, 42.0331775] - }, - "n1821014874": { - "id": "n1821014874", - "loc": [-85.5688849, 42.0077016] - }, - "n1821014876": { - "id": "n1821014876", - "loc": [-85.5857976, 41.9996036] - }, - "n1821014879": { - "id": "n1821014879", - "loc": [-85.5990906, 41.9780765] - }, - "n1821014881": { - "id": "n1821014881", - "loc": [-85.5483647, 42.0144279] - }, - "n1821014883": { - "id": "n1821014883", - "loc": [-85.5691209, 42.0077972] - }, - "n1821014885": { - "id": "n1821014885", - "loc": [-85.6076844, 41.9721103] - }, - "n1821014886": { - "id": "n1821014886", - "loc": [-85.6015489, 41.9766147] - }, - "n1821014887": { - "id": "n1821014887", - "loc": [-85.574822, 42.0052802] - }, - "n1821014888": { - "id": "n1821014888", - "loc": [-85.5880024, 41.9899593] - }, - "n1821014890": { - "id": "n1821014890", - "loc": [-85.5909421, 41.9893772] - }, - "n1821014892": { - "id": "n1821014892", - "loc": [-85.5497326, 42.0138141] - }, - "n1821014893": { - "id": "n1821014893", - "loc": [-85.5167106, 42.0357811] - }, - "n1821014895": { - "id": "n1821014895", - "loc": [-85.5844404, 41.9952501] - }, - "n1821014896": { - "id": "n1821014896", - "loc": [-85.5362465, 42.0192662] - }, - "n1821014898": { - "id": "n1821014898", - "loc": [-85.5906095, 41.9889147] - }, - "n1821014899": { - "id": "n1821014899", - "loc": [-85.5590667, 42.0089354] - }, - "n1821014900": { - "id": "n1821014900", - "loc": [-85.5921598, 41.9844209] - }, - "n1821014902": { - "id": "n1821014902", - "loc": [-85.5778971, 42.0039266] - }, - "n1821014903": { - "id": "n1821014903", - "loc": [-85.603012, 41.9761981] - }, - "n1821014904": { - "id": "n1821014904", - "loc": [-85.6108977, 41.9706787] - }, - "n1821014905": { - "id": "n1821014905", - "loc": [-85.5685738, 42.0076139] - }, - "n1821014906": { - "id": "n1821014906", - "loc": [-85.5392787, 42.0186304] - }, - "n1821014907": { - "id": "n1821014907", - "loc": [-85.5227885, 42.0274972] - }, - "n1821014908": { - "id": "n1821014908", - "loc": [-85.5857547, 41.9961431] - }, - "n1821014910": { - "id": "n1821014910", - "loc": [-85.5610354, 42.0072812] - }, - "n1821014911": { - "id": "n1821014911", - "loc": [-85.5209632, 42.0308705] - }, - "n1821014912": { - "id": "n1821014912", - "loc": [-85.5709757, 42.0087959] - }, - "n1821014913": { - "id": "n1821014913", - "loc": [-85.59231, 41.9839344] - }, - "n1821014914": { - "id": "n1821014914", - "loc": [-85.5375245, 42.0185865] - }, - "n1821014916": { - "id": "n1821014916", - "loc": [-85.5901548, 41.9839841] - }, - "n1821014917": { - "id": "n1821014917", - "loc": [-85.5611213, 42.0086405] - }, - "n1821014918": { - "id": "n1821014918", - "loc": [-85.5360426, 42.0198122] - }, - "n1821014919": { - "id": "n1821014919", - "loc": [-85.5862817, 41.9948691] - }, - "n1821014921": { - "id": "n1821014921", - "loc": [-85.5469807, 42.0144438] - }, - "n1821014922": { - "id": "n1821014922", - "loc": [-85.5761309, 42.0053838] - }, - "n1821014924": { - "id": "n1821014924", - "loc": [-85.516264, 42.0332971] - }, - "n1821014925": { - "id": "n1821014925", - "loc": [-85.5277224, 42.0246661] - }, - "n1821014926": { - "id": "n1821014926", - "loc": [-85.5980016, 41.9798231] - }, - "n1821014928": { - "id": "n1821014928", - "loc": [-85.5924548, 41.9806965] - }, - "n1821014930": { - "id": "n1821014930", - "loc": [-85.5899121, 41.985023] - }, - "n1821014931": { - "id": "n1821014931", - "loc": [-85.5706015, 42.0089492] - }, - "n1821014932": { - "id": "n1821014932", - "loc": [-85.515926, 42.033046] - }, - "n1821014933": { - "id": "n1821014933", - "loc": [-85.5982377, 41.9796796] - }, - "n1821014936": { - "id": "n1821014936", - "loc": [-85.5475721, 42.0145253] - }, - "n1821014938": { - "id": "n1821014938", - "loc": [-85.5895701, 41.9902323] - }, - "n1821014939": { - "id": "n1821014939", - "loc": [-85.6030495, 41.9759947] - }, - "n1821014942": { - "id": "n1821014942", - "loc": [-85.6094721, 41.9724989] - }, - "n1821014944": { - "id": "n1821014944", - "loc": [-85.5921973, 41.9811112] - }, - "n1821014945": { - "id": "n1821014945", - "loc": [-85.5223526, 42.0291332] - }, - "n1821014946": { - "id": "n1821014946", - "loc": [-85.5965103, 41.9808998] - }, - "n1821014948": { - "id": "n1821014948", - "loc": [-85.517766, 42.0349227] - }, - "n1821014950": { - "id": "n1821014950", - "loc": [-85.5889894, 41.990996] - }, - "n1821014951": { - "id": "n1821014951", - "loc": [-85.5601932, 42.0092902] - }, - "n1821014954": { - "id": "n1821014954", - "loc": [-85.6028135, 41.9764055] - }, - "n1821014955": { - "id": "n1821014955", - "loc": [-85.5520621, 42.0130666] - }, - "n1821014956": { - "id": "n1821014956", - "loc": [-85.593002, 41.9839344] - }, - "n1821014957": { - "id": "n1821014957", - "loc": [-85.515926, 42.0369666] - }, - "n1821014960": { - "id": "n1821014960", - "loc": [-85.5761255, 42.003877] - }, - "n1821014961": { - "id": "n1821014961", - "loc": [-85.5716355, 42.007911] - }, - "n1821014962": { - "id": "n1821014962", - "loc": [-85.5575378, 42.0109045] - }, - "n1821014963": { - "id": "n1821014963", - "loc": [-85.5735667, 42.0068188] - }, - "n1821014964": { - "id": "n1821014964", - "loc": [-85.5915214, 41.9865861] - }, - "n1821014965": { - "id": "n1821014965", - "loc": [-85.5866344, 41.9923157] - }, - "n1821014967": { - "id": "n1821014967", - "loc": [-85.5283138, 42.0242256] - }, - "n1821014968": { - "id": "n1821014968", - "loc": [-85.5177875, 42.0355801] - }, - "n1821014969": { - "id": "n1821014969", - "loc": [-85.548071, 42.0144934] - }, - "n1821014972": { - "id": "n1821014972", - "loc": [-85.5611159, 42.0088557] - }, - "n1821014973": { - "id": "n1821014973", - "loc": [-85.541686, 42.0188757] - }, - "n1821014974": { - "id": "n1821014974", - "loc": [-85.5917628, 41.9862631] - }, - "n1821014975": { - "id": "n1821014975", - "loc": [-85.5854864, 41.9959478] - }, - "n1821014977": { - "id": "n1821014977", - "loc": [-85.609102, 41.9722317] - }, - "n1821014980": { - "id": "n1821014980", - "loc": [-85.5761202, 42.0042438] - }, - "n1821014982": { - "id": "n1821014982", - "loc": [-85.5465944, 42.0143601] - }, - "n1821014983": { - "id": "n1821014983", - "loc": [-85.5173261, 42.0342732] - }, - "n1821014984": { - "id": "n1821014984", - "loc": [-85.5897297, 41.9888509] - }, - "n1821014985": { - "id": "n1821014985", - "loc": [-85.5856688, 41.999181] - }, - "n1821014986": { - "id": "n1821014986", - "loc": [-85.5344011, 42.0217251] - }, - "n1821014987": { - "id": "n1821014987", - "loc": [-85.601467, 41.9768203] - }, - "n1821014988": { - "id": "n1821014988", - "loc": [-85.5457254, 42.0165123] - }, - "n1821014989": { - "id": "n1821014989", - "loc": [-85.6023482, 41.9784332] - }, - "n1821014991": { - "id": "n1821014991", - "loc": [-85.5361606, 42.01823] - }, - "n1821014992": { - "id": "n1821014992", - "loc": [-85.5178465, 42.0351139] - }, - "n1821014995": { - "id": "n1821014995", - "loc": [-85.5634293, 42.0078092] - }, - "n1821014996": { - "id": "n1821014996", - "loc": [-85.573497, 42.0072015] - }, - "n1821014997": { - "id": "n1821014997", - "loc": [-85.5976328, 41.9799725] - }, - "n1821014998": { - "id": "n1821014998", - "loc": [-85.5210651, 42.0303166] - }, - "n1821015003": { - "id": "n1821015003", - "loc": [-85.5222131, 42.0288064] - }, - "n1821015004": { - "id": "n1821015004", - "loc": [-85.5897941, 41.984405] - }, - "n1821015005": { - "id": "n1821015005", - "loc": [-85.5975725, 41.9776099] - }, - "n1821015006": { - "id": "n1821015006", - "loc": [-85.5765708, 42.0034903] - }, - "n1821015007": { - "id": "n1821015007", - "loc": [-85.5250187, 42.026559] - }, - "n1821015009": { - "id": "n1821015009", - "loc": [-85.5426998, 42.0166279] - }, - "n1821015010": { - "id": "n1821015010", - "loc": [-85.5957606, 41.9806584] - }, - "n1821015011": { - "id": "n1821015011", - "loc": [-85.5262753, 42.0252497] - }, - "n1821015012": { - "id": "n1821015012", - "loc": [-85.5266455, 42.0253374] - }, - "n1821015014": { - "id": "n1821015014", - "loc": [-85.5515632, 42.0130187] - }, - "n1821015015": { - "id": "n1821015015", - "loc": [-85.6024058, 41.9765212] - }, - "n1821015017": { - "id": "n1821015017", - "loc": [-85.5175032, 42.0357156] - }, - "n1821015018": { - "id": "n1821015018", - "loc": [-85.5302718, 42.0236039] - }, - "n1821015019": { - "id": "n1821015019", - "loc": [-85.6024005, 41.9782759] - }, - "n1821015020": { - "id": "n1821015020", - "loc": [-85.5907758, 41.9890821] - }, - "n1821015021": { - "id": "n1821015021", - "loc": [-85.6019445, 41.9777215] - }, - "n1821015022": { - "id": "n1821015022", - "loc": [-85.5942854, 41.9800881] - }, - "n1821015024": { - "id": "n1821015024", - "loc": [-85.5325826, 42.0222711] - }, - "n1821015029": { - "id": "n1821015029", - "loc": [-85.555093, 42.0105316] - }, - "n1821015033": { - "id": "n1821015033", - "loc": [-85.5249704, 42.0270372] - }, - "n1821015034": { - "id": "n1821015034", - "loc": [-85.5243965, 42.0272205] - }, - "n1821015038": { - "id": "n1821015038", - "loc": [-85.5413426, 42.0190749] - }, - "n1821015039": { - "id": "n1821015039", - "loc": [-85.5920431, 41.9848175] - }, - "n1821015041": { - "id": "n1821015041", - "loc": [-85.5577685, 42.0106015] - }, - "n1821015042": { - "id": "n1821015042", - "loc": [-85.5453606, 42.0158866] - }, - "n1821015045": { - "id": "n1821015045", - "loc": [-85.5333228, 42.0217889] - }, - "n1821015046": { - "id": "n1821015046", - "loc": [-85.5426891, 42.0175924] - }, - "n1821015048": { - "id": "n1821015048", - "loc": [-85.5886836, 41.9936474] - }, - "n1821015050": { - "id": "n1821015050", - "loc": [-85.6001152, 41.9786467] - }, - "n1821015051": { - "id": "n1821015051", - "loc": [-85.6094064, 41.9723655] - }, - "n1821015053": { - "id": "n1821015053", - "loc": [-85.605721, 41.9749738] - }, - "n1821015055": { - "id": "n1821015055", - "loc": [-85.6106791, 41.9705048] - }, - "n1821015057": { - "id": "n1821015057", - "loc": [-85.5210437, 42.0307071] - }, - "n1821015059": { - "id": "n1821015059", - "loc": [-85.5995694, 41.9786725] - }, - "n1821015060": { - "id": "n1821015060", - "loc": [-85.5371638, 42.0182938] - }, - "n1821015062": { - "id": "n1821015062", - "loc": [-85.6111766, 41.9704593] - }, - "n1821015065": { - "id": "n1821015065", - "loc": [-85.577704, 42.0034921] - }, - "n1821015067": { - "id": "n1821015067", - "loc": [-85.5570067, 42.0093699] - }, - "n1821015068": { - "id": "n1821015068", - "loc": [-85.5920364, 41.9845525] - }, - "n1821015069": { - "id": "n1821015069", - "loc": [-85.5252065, 42.0253954] - }, - "n1821015072": { - "id": "n1821015072", - "loc": [-85.5664159, 42.0088517] - }, - "n1821015073": { - "id": "n1821015073", - "loc": [-85.5880399, 41.991905] - }, - "n1821015075": { - "id": "n1821015075", - "loc": [-85.6099871, 41.9727861] - }, - "n1821015076": { - "id": "n1821015076", - "loc": [-85.5319603, 42.0231478] - }, - "n1821015078": { - "id": "n1821015078", - "loc": [-85.6036088, 41.9751112] - }, - "n1821015080": { - "id": "n1821015080", - "loc": [-85.5983128, 41.9789179] - }, - "n1821015082": { - "id": "n1821015082", - "loc": [-85.5614069, 42.0071395] - }, - "n1821015083": { - "id": "n1821015083", - "loc": [-85.60968, 41.9709738] - }, - "n1821015086": { - "id": "n1821015086", - "loc": [-85.5914195, 41.9837351] - }, - "n1821015087": { - "id": "n1821015087", - "loc": [-85.5895473, 41.9948036] - }, - "n1821015090": { - "id": "n1821015090", - "loc": [-85.5929913, 41.9851905] - }, - "n1821015093": { - "id": "n1821015093", - "loc": [-85.5907396, 41.9838485] - }, - "n1821015095": { - "id": "n1821015095", - "loc": [-85.5893864, 41.9880176] - }, - "n1821015096": { - "id": "n1821015096", - "loc": [-85.5788024, 42.0039807] - }, - "n1821015097": { - "id": "n1821015097", - "loc": [-85.5630592, 42.0078411] - }, - "n1821015098": { - "id": "n1821015098", - "loc": [-85.5350609, 42.0211274] - }, - "n1821015099": { - "id": "n1821015099", - "loc": [-85.5967195, 41.9808679] - }, - "n1821015100": { - "id": "n1821015100", - "loc": [-85.5666734, 42.0088119] - }, - "n1821015101": { - "id": "n1821015101", - "loc": [-85.564694, 42.0077675] - }, - "n1821015103": { - "id": "n1821015103", - "loc": [-85.6066544, 41.9726527] - }, - "n1821015104": { - "id": "n1821015104", - "loc": [-85.6011827, 41.9769838] - }, - "n1821015105": { - "id": "n1821015105", - "loc": [-85.5972131, 41.9776697] - }, - "n1821015106": { - "id": "n1821015106", - "loc": [-85.5880828, 41.9903341] - }, - "n1821015107": { - "id": "n1821015107", - "loc": [-85.5510268, 42.0130626] - }, - "n1821015108": { - "id": "n1821015108", - "loc": [-85.6102164, 41.970543] - }, - "n1821015109": { - "id": "n1821015109", - "loc": [-85.5905344, 41.9853899] - }, - "n1821015111": { - "id": "n1821015111", - "loc": [-85.5888821, 41.9913429] - }, - "n1821015112": { - "id": "n1821015112", - "loc": [-85.606295, 41.9741921] - }, - "n1821015114": { - "id": "n1821015114", - "loc": [-85.5969556, 41.9807443] - }, - "n1821015115": { - "id": "n1821015115", - "loc": [-85.5882223, 41.9934081] - }, - "n1821015116": { - "id": "n1821015116", - "loc": [-85.6104471, 41.9724971] - }, - "n1821015118": { - "id": "n1821015118", - "loc": [-85.5406091, 42.0192162] - }, - "n1821015120": { - "id": "n1821015120", - "loc": [-85.589955, 41.9888429] - }, - "n1821015121": { - "id": "n1821015121", - "loc": [-85.5598821, 42.0092304] - }, - "n1821015122": { - "id": "n1821015122", - "loc": [-85.545598, 42.0144097] - }, - "n1821015123": { - "id": "n1821015123", - "loc": [-85.5649528, 42.0079965] - }, - "n1821015125": { - "id": "n1821015125", - "loc": [-85.5883993, 41.9917814] - }, - "n1821015126": { - "id": "n1821015126", - "loc": [-85.5295785, 42.0239967] - }, - "n1821015129": { - "id": "n1821015129", - "loc": [-85.5648723, 42.0078809] - }, - "n1821015132": { - "id": "n1821015132", - "loc": [-85.564989, 42.0081103] - }, - "n1821015133": { - "id": "n1821015133", - "loc": [-85.5946127, 41.9800841] - }, - "n1821015134": { - "id": "n1821015134", - "loc": [-85.583448, 42.0019078] - }, - "n1821015135": { - "id": "n1821015135", - "loc": [-85.5905934, 41.9871842] - }, - "n1821015137": { - "id": "n1821015137", - "loc": [-85.610608, 41.9704752] - }, - "n1821015138": { - "id": "n1821015138", - "loc": [-85.5752257, 42.0052939] - }, - "n1821015139": { - "id": "n1821015139", - "loc": [-85.5893864, 41.9943491] - }, - "n1821015140": { - "id": "n1821015140", - "loc": [-85.5426247, 42.0169866] - }, - "n1821015141": { - "id": "n1821015141", - "loc": [-85.562001, 42.0074526] - }, - "n1821015142": { - "id": "n1821015142", - "loc": [-85.5212046, 42.0301094] - }, - "n1821015143": { - "id": "n1821015143", - "loc": [-85.602214, 41.9784531] - }, - "n1821015144": { - "id": "n1821015144", - "loc": [-85.5858687, 41.9948293] - }, - "n1821015145": { - "id": "n1821015145", - "loc": [-85.5608477, 42.0074805] - }, - "n1821015146": { - "id": "n1821015146", - "loc": [-85.5651607, 42.0083614] - }, - "n1821015147": { - "id": "n1821015147", - "loc": [-85.5288288, 42.0242495] - }, - "n1821015149": { - "id": "n1821015149", - "loc": [-85.5450334, 42.0146989] - }, - "n1821015151": { - "id": "n1821015151", - "loc": [-85.5578275, 42.0092304] - }, - "n1821015154": { - "id": "n1821015154", - "loc": [-85.6056634, 41.9724511] - }, - "n1821015155": { - "id": "n1821015155", - "loc": [-85.5902179, 41.9852742] - }, - "n1821015156": { - "id": "n1821015156", - "loc": [-85.5156256, 42.0387157] - }, - "n1821015157": { - "id": "n1821015157", - "loc": [-85.5734433, 42.0059459] - }, - "n1821015158": { - "id": "n1821015158", - "loc": [-85.6050773, 41.9731273] - }, - "n1821015160": { - "id": "n1821015160", - "loc": [-85.5223419, 42.0275233] - }, - "n1821015163": { - "id": "n1821015163", - "loc": [-85.6053562, 41.972525] - }, - "n1821015164": { - "id": "n1821015164", - "loc": [-85.5850412, 41.9946082] - }, - "n1821015165": { - "id": "n1821015165", - "loc": [-85.5359031, 42.0186326] - }, - "n1821015166": { - "id": "n1821015166", - "loc": [-85.5608745, 42.0077635] - }, - "n1821015169": { - "id": "n1821015169", - "loc": [-85.572876, 42.0073189] - }, - "n1821015171": { - "id": "n1821015171", - "loc": [-85.5875424, 41.9919188] - }, - "n1821015172": { - "id": "n1821015172", - "loc": [-85.5240116, 42.0272581] - }, - "n1821015173": { - "id": "n1821015173", - "loc": [-85.5318369, 42.0236818] - }, - "n1821015174": { - "id": "n1821015174", - "loc": [-85.566888, 42.0086923] - }, - "n1821015175": { - "id": "n1821015175", - "loc": [-85.5931522, 41.9850669] - }, - "n1821015176": { - "id": "n1821015176", - "loc": [-85.5604842, 42.0093199] - }, - "n1821015177": { - "id": "n1821015177", - "loc": [-85.5868168, 41.9927543] - }, - "n1821015178": { - "id": "n1821015178", - "loc": [-85.6052275, 41.9732549] - }, - "n1821015179": { - "id": "n1821015179", - "loc": [-85.5910118, 41.9900431] - }, - "n1821015182": { - "id": "n1821015182", - "loc": [-85.5610032, 42.0082897] - }, - "n1821015183": { - "id": "n1821015183", - "loc": [-85.5425443, 42.0179431] - }, - "n1821015184": { - "id": "n1821015184", - "loc": [-85.5843277, 42.0014055] - }, - "n1821015186": { - "id": "n1821015186", - "loc": [-85.5733307, 42.0063564] - }, - "n1821015188": { - "id": "n1821015188", - "loc": [-85.5277385, 42.0248694] - }, - "n1821015189": { - "id": "n1821015189", - "loc": [-85.5558427, 42.0108168] - }, - "n1821015190": { - "id": "n1821015190", - "loc": [-85.5650587, 42.0082618] - }, - "n1821015191": { - "id": "n1821015191", - "loc": [-85.5660351, 42.0088278] - }, - "n1821015192": { - "id": "n1821015192", - "loc": [-85.5849768, 41.9980049] - }, - "n1821015194": { - "id": "n1821015194", - "loc": [-85.5359139, 42.0188199] - }, - "n1821015195": { - "id": "n1821015195", - "loc": [-85.593238, 41.9849194] - }, - "n1821015197": { - "id": "n1821015197", - "loc": [-85.5850841, 41.9983239] - }, - "n1821015199": { - "id": "n1821015199", - "loc": [-85.5983396, 41.9794283] - }, - "n1821015204": { - "id": "n1821015204", - "loc": [-85.5452801, 42.0145355] - }, - "n1821015205": { - "id": "n1821015205", - "loc": [-85.5340685, 42.0218407] - }, - "n1821015207": { - "id": "n1821015207", - "loc": [-85.5773272, 42.0034186] - }, - "n1821015209": { - "id": "n1821015209", - "loc": [-85.5535212, 42.0132419] - }, - "n1821015211": { - "id": "n1821015211", - "loc": [-85.6107703, 41.9706045] - }, - "n1821015212": { - "id": "n1821015212", - "loc": [-85.6030066, 41.9758193] - }, - "n1821015213": { - "id": "n1821015213", - "loc": [-85.5359943, 42.0184213] - }, - "n1821015214": { - "id": "n1821015214", - "loc": [-85.5922993, 41.9813305] - }, - "n1821015215": { - "id": "n1821015215", - "loc": [-85.5672689, 42.0080465] - }, - "n1821015217": { - "id": "n1821015217", - "loc": [-85.5160494, 42.0365682] - }, - "n1821015218": { - "id": "n1821015218", - "loc": [-85.5401142, 42.0190351] - }, - "n1821015219": { - "id": "n1821015219", - "loc": [-85.5607632, 42.0092282] - }, - "n1821015220": { - "id": "n1821015220", - "loc": [-85.5866197, 41.9947894] - }, - "n1821015221": { - "id": "n1821015221", - "loc": [-85.6017889, 41.9765132] - }, - "n1821015222": { - "id": "n1821015222", - "loc": [-85.5595978, 42.009059] - }, - "n1821015226": { - "id": "n1821015226", - "loc": [-85.5871494, 41.9929018] - }, - "n1821015227": { - "id": "n1821015227", - "loc": [-85.5857708, 41.9998866] - }, - "n1821015228": { - "id": "n1821015228", - "loc": [-85.5317135, 42.0238094] - }, - "n1821015231": { - "id": "n1821015231", - "loc": [-85.5733521, 42.0061372] - }, - "n1821015233": { - "id": "n1821015233", - "loc": [-85.5855991, 42.0001936] - }, - "n1821015234": { - "id": "n1821015234", - "loc": [-85.5213924, 42.029962] - }, - "n1821015235": { - "id": "n1821015235", - "loc": [-85.6052221, 41.9726567] - }, - "n1821015236": { - "id": "n1821015236", - "loc": [-85.5763723, 42.0035422] - }, - "n1821015237": { - "id": "n1821015237", - "loc": [-85.5858512, 41.9966215] - }, - "n1821015238": { - "id": "n1821015238", - "loc": [-85.567061, 42.008439] - }, - "n1821015239": { - "id": "n1821015239", - "loc": [-85.5250563, 42.0269057] - }, - "n1821015240": { - "id": "n1821015240", - "loc": [-85.5347551, 42.0214263] - }, - "n1821015241": { - "id": "n1821015241", - "loc": [-85.6098463, 41.9707066] - }, - "n1821015242": { - "id": "n1821015242", - "loc": [-85.5676927, 42.0076519] - }, - "n1821015243": { - "id": "n1821015243", - "loc": [-85.516775, 42.0322669] - }, - "n1821015244": { - "id": "n1821015244", - "loc": [-85.5762275, 42.0036538] - }, - "n1821015245": { - "id": "n1821015245", - "loc": [-85.5583639, 42.0090949] - }, - "n1821015246": { - "id": "n1821015246", - "loc": [-85.5554041, 42.0106432] - }, - "n1821015247": { - "id": "n1821015247", - "loc": [-85.5973364, 41.9776099] - }, - "n1821015248": { - "id": "n1821015248", - "loc": [-85.6098945, 41.9717513] - }, - "n1821015249": { - "id": "n1821015249", - "loc": [-85.6045315, 41.9751511] - }, - "n1821015250": { - "id": "n1821015250", - "loc": [-85.5579938, 42.0092264] - }, - "n1821015253": { - "id": "n1821015253", - "loc": [-85.6058873, 41.9724652] - }, - "n1821015254": { - "id": "n1821015254", - "loc": [-85.5869456, 41.9947517] - }, - "n1821015255": { - "id": "n1821015255", - "loc": [-85.5936565, 41.9823713] - }, - "n1821015256": { - "id": "n1821015256", - "loc": [-85.5218269, 42.0278102] - }, - "n1821015258": { - "id": "n1821015258", - "loc": [-85.5887802, 41.9905534] - }, - "n1821015259": { - "id": "n1821015259", - "loc": [-85.5901924, 41.9904515] - }, - "n1821015263": { - "id": "n1821015263", - "loc": [-85.5249222, 42.0255787] - }, - "n1821015265": { - "id": "n1821015265", - "loc": [-85.5175206, 42.0321672] - }, - "n1821015266": { - "id": "n1821015266", - "loc": [-85.5275722, 42.0254034] - }, - "n1821015267": { - "id": "n1821015267", - "loc": [-85.6016226, 41.9765451] - }, - "n1821015269": { - "id": "n1821015269", - "loc": [-85.5569316, 42.011032] - }, - "n1821015271": { - "id": "n1821015271", - "loc": [-85.6010714, 41.9785209] - }, - "n1821015272": { - "id": "n1821015272", - "loc": [-85.6050666, 41.9729917] - }, - "n1821015273": { - "id": "n1821015273", - "loc": [-85.5891235, 41.99529] - }, - "n1821015274": { - "id": "n1821015274", - "loc": [-85.515454, 42.0376439] - }, - "n1821015276": { - "id": "n1821015276", - "loc": [-85.5776021, 42.0034443] - }, - "n1821015277": { - "id": "n1821015277", - "loc": [-85.6041707, 41.9751453] - }, - "n1821015278": { - "id": "n1821015278", - "loc": [-85.5444701, 42.0167435] - }, - "n1821015280": { - "id": "n1821015280", - "loc": [-85.5923274, 41.9852202] - }, - "n1821015283": { - "id": "n1821015283", - "loc": [-85.5893649, 41.9900271] - }, - "n1821015284": { - "id": "n1821015284", - "loc": [-85.5933453, 41.9804412] - }, - "n1821015285": { - "id": "n1821015285", - "loc": [-85.5247237, 42.026017] - }, - "n1821015286": { - "id": "n1821015286", - "loc": [-85.5286182, 42.0242477] - }, - "n1821015287": { - "id": "n1821015287", - "loc": [-85.5904003, 41.9888549] - }, - "n1821015288": { - "id": "n1821015288", - "loc": [-85.6062146, 41.9739369] - }, - "n1821015290": { - "id": "n1821015290", - "loc": [-85.5762596, 42.0052602] - }, - "n1821015292": { - "id": "n1821015292", - "loc": [-85.5849715, 41.9975465] - }, - "n1821015293": { - "id": "n1821015293", - "loc": [-85.585229, 42.0006241] - }, - "n1821015294": { - "id": "n1821015294", - "loc": [-85.5926922, 41.9805946] - }, - "n1821015295": { - "id": "n1821015295", - "loc": [-85.5703387, 42.0089133] - }, - "n1821015299": { - "id": "n1821015299", - "loc": [-85.5789955, 42.0038611] - }, - "n1821015301": { - "id": "n1821015301", - "loc": [-85.6072888, 41.9721918] - }, - "n1821015302": { - "id": "n1821015302", - "loc": [-85.5356349, 42.0200992] - }, - "n1821015304": { - "id": "n1821015304", - "loc": [-85.5891772, 41.994066] - }, - "n1821015306": { - "id": "n1821015306", - "loc": [-85.606295, 41.9744952] - }, - "n1821015307": { - "id": "n1821015307", - "loc": [-85.538871, 42.0186583] - }, - "n1821015308": { - "id": "n1821015308", - "loc": [-85.587997, 41.994971] - }, - "n1821015311": { - "id": "n1821015311", - "loc": [-85.606869, 41.9725809] - }, - "n1821015312": { - "id": "n1821015312", - "loc": [-85.5171974, 42.0339943] - }, - "n1821015314": { - "id": "n1821015314", - "loc": [-85.5327435, 42.0220479] - }, - "n1821015315": { - "id": "n1821015315", - "loc": [-85.5383439, 42.0187282] - }, - "n1821015316": { - "id": "n1821015316", - "loc": [-85.5248095, 42.0263119] - }, - "n1821015318": { - "id": "n1821015318", - "loc": [-85.5732502, 42.0073051] - }, - "n1821015319": { - "id": "n1821015319", - "loc": [-85.5924226, 41.9852663] - }, - "n1821015321": { - "id": "n1821015321", - "loc": [-85.5179001, 42.0353052] - }, - "n1821015322": { - "id": "n1821015322", - "loc": [-85.5456771, 42.0162413] - }, - "n1821015323": { - "id": "n1821015323", - "loc": [-85.5936618, 41.9829096] - }, - "n1821015325": { - "id": "n1821015325", - "loc": [-85.5656931, 42.0086582] - }, - "n1821015326": { - "id": "n1821015326", - "loc": [-85.5448456, 42.0150975] - }, - "n1821015327": { - "id": "n1821015327", - "loc": [-85.5220039, 42.027615] - }, - "n1821015329": { - "id": "n1821015329", - "loc": [-85.517884, 42.0354885] - }, - "n1821015330": { - "id": "n1821015330", - "loc": [-85.5576666, 42.0101671] - }, - "n1821015332": { - "id": "n1821015332", - "loc": [-85.5368754, 42.0181402] - }, - "n1821015333": { - "id": "n1821015333", - "loc": [-85.5367078, 42.0181145] - }, - "n1821015334": { - "id": "n1821015334", - "loc": [-85.5903909, 41.9904316] - }, - "n1821015335": { - "id": "n1821015335", - "loc": [-85.5430767, 42.0163587] - }, - "n1821015336": { - "id": "n1821015336", - "loc": [-85.5277492, 42.0252878] - }, - "n1821015337": { - "id": "n1821015337", - "loc": [-85.5312146, 42.0236898] - }, - "n1821015338": { - "id": "n1821015338", - "loc": [-85.5886568, 41.991614] - }, - "n1821015339": { - "id": "n1821015339", - "loc": [-85.5782498, 42.0040883] - }, - "n1821015341": { - "id": "n1821015341", - "loc": [-85.562233, 42.0076457] - }, - "n1821015342": { - "id": "n1821015342", - "loc": [-85.588626, 41.9952479] - }, - "n1821015343": { - "id": "n1821015343", - "loc": [-85.5762865, 42.005033] - }, - "n1821015344": { - "id": "n1821015344", - "loc": [-85.5850841, 41.9971478] - }, - "n1821015346": { - "id": "n1821015346", - "loc": [-85.5643144, 42.0076936] - }, - "n1821015347": { - "id": "n1821015347", - "loc": [-85.5164893, 42.0359467] - }, - "n1821015348": { - "id": "n1821015348", - "loc": [-85.5906846, 41.9903541] - }, - "n1821015349": { - "id": "n1821015349", - "loc": [-85.557688, 42.0107769] - }, - "n1821015350": { - "id": "n1821015350", - "loc": [-85.5363698, 42.0181424] - }, - "n1821015351": { - "id": "n1821015351", - "loc": [-85.5939636, 41.9801918] - }, - "n1821015352": { - "id": "n1821015352", - "loc": [-85.5524041, 42.0131644] - }, - "n1821015354": { - "id": "n1821015354", - "loc": [-85.5308606, 42.0236221] - }, - "n1821015355": { - "id": "n1821015355", - "loc": [-85.5877449, 41.9932367] - }, - "n1821015356": { - "id": "n1821015356", - "loc": [-85.519885, 42.0318586] - }, - "n1821015357": { - "id": "n1821015357", - "loc": [-85.5454035, 42.0168431] - }, - "n1821015358": { - "id": "n1821015358", - "loc": [-85.5970629, 41.9781881] - }, - "n1821015359": { - "id": "n1821015359", - "loc": [-85.5932541, 41.9844767] - }, - "n1821015360": { - "id": "n1821015360", - "loc": [-85.5970736, 41.9778252] - }, - "n1821015361": { - "id": "n1821015361", - "loc": [-85.537031, 42.0181601] - }, - "n1821015362": { - "id": "n1821015362", - "loc": [-85.5548355, 42.0105156] - }, - "n1821015363": { - "id": "n1821015363", - "loc": [-85.5168648, 42.0336158] - }, - "n1821015365": { - "id": "n1821015365", - "loc": [-85.5870435, 41.9919507] - }, - "n1821015366": { - "id": "n1821015366", - "loc": [-85.5719681, 42.0075443] - }, - "n1821015367": { - "id": "n1821015367", - "loc": [-85.5969985, 41.9780446] - }, - "n1821015368": { - "id": "n1821015368", - "loc": [-85.5926761, 41.98528] - }, - "n1821015369": { - "id": "n1821015369", - "loc": [-85.5224009, 42.0293444] - }, - "n1821015371": { - "id": "n1821015371", - "loc": [-85.518737, 42.0322651] - }, - "n1821015372": { - "id": "n1821015372", - "loc": [-85.6064573, 41.9726465] - }, - "n1821015373": { - "id": "n1821015373", - "loc": [-85.5201103, 42.0313088] - }, - "n1821015375": { - "id": "n1821015375", - "loc": [-85.5378182, 42.0186844] - }, - "n1821015376": { - "id": "n1821015376", - "loc": [-85.6109741, 41.9706882] - }, - "n1821015377": { - "id": "n1821015377", - "loc": [-85.5993333, 41.9785488] - }, - "n1821015378": { - "id": "n1821015378", - "loc": [-85.5889787, 41.9907368] - }, - "n1821015380": { - "id": "n1821015380", - "loc": [-85.6060161, 41.9737375] - }, - "n1821015381": { - "id": "n1821015381", - "loc": [-85.5743016, 42.0053679] - }, - "n1821015382": { - "id": "n1821015382", - "loc": [-85.6014724, 41.9776099] - }, - "n1821015383": { - "id": "n1821015383", - "loc": [-85.5574426, 42.0091644] - }, - "n1821015385": { - "id": "n1821015385", - "loc": [-85.5208613, 42.0309302] - }, - "n1821015386": { - "id": "n1821015386", - "loc": [-85.5919023, 41.9837789] - }, - "n1821015387": { - "id": "n1821015387", - "loc": [-85.5455484, 42.0160221] - }, - "n1821015392": { - "id": "n1821015392", - "loc": [-85.5801757, 42.0028964] - }, - "n1821015395": { - "id": "n1821015395", - "loc": [-85.5493785, 42.0139974] - }, - "n1821015396": { - "id": "n1821015396", - "loc": [-85.5449475, 42.015488] - }, - "n1821015398": { - "id": "n1821015398", - "loc": [-85.611123, 41.9706627] - }, - "n1821015400": { - "id": "n1821015400", - "loc": [-85.5935706, 41.9822477] - }, - "n1821015401": { - "id": "n1821015401", - "loc": [-85.5724254, 42.0073508] - }, - "n1821015403": { - "id": "n1821015403", - "loc": [-85.5486812, 42.0143442] - }, - "n1821015404": { - "id": "n1821015404", - "loc": [-85.5161835, 42.0327711] - }, - "n1821015406": { - "id": "n1821015406", - "loc": [-85.5921705, 41.9851107] - }, - "n1821015407": { - "id": "n1821015407", - "loc": [-85.531912, 42.0234069] - }, - "n1821015410": { - "id": "n1821015410", - "loc": [-85.5292566, 42.024176] - }, - "n1821015411": { - "id": "n1821015411", - "loc": [-85.5845316, 41.9948315] - }, - "n1821015413": { - "id": "n1821015413", - "loc": [-85.5217947, 42.0280413] - }, - "n1821015414": { - "id": "n1821015414", - "loc": [-85.5527367, 42.013272] - }, - "n1821015415": { - "id": "n1821015415", - "loc": [-85.5191179, 42.0321973] - }, - "n1821015416": { - "id": "n1821015416", - "loc": [-85.5540241, 42.0128655] - }, - "n1821015418": { - "id": "n1821015418", - "loc": [-85.5272892, 42.0254849] - }, - "n1821015419": { - "id": "n1821015419", - "loc": [-85.5449744, 42.016867] - }, - "n1821015420": { - "id": "n1821015420", - "loc": [-85.5852665, 41.9986787] - }, - "n1821015421": { - "id": "n1821015421", - "loc": [-85.6102701, 41.972186] - }, - "n1821015423": { - "id": "n1821015423", - "loc": [-85.6026365, 41.9764972] - }, - "n1821015427": { - "id": "n1821015427", - "loc": [-85.5898692, 41.9841498] - }, - "n1821015429": { - "id": "n1821015429", - "loc": [-85.5422546, 42.0183855] - }, - "n1821015430": { - "id": "n1821015430", - "loc": [-85.5866505, 41.9925549] - }, - "n1821015431": { - "id": "n1821015431", - "loc": [-85.5234376, 42.0273577] - }, - "n1821015432": { - "id": "n1821015432", - "loc": [-85.6096746, 41.9727284] - }, - "n1821015433": { - "id": "n1821015433", - "loc": [-85.5824891, 42.0021567] - }, - "n1821015434": { - "id": "n1821015434", - "loc": [-85.5923905, 41.9841139] - }, - "n1821015435": { - "id": "n1821015435", - "loc": [-85.5874565, 41.9948014] - }, - "n1821015437": { - "id": "n1821015437", - "loc": [-85.6055279, 41.9734423] - }, - "n1821015438": { - "id": "n1821015438", - "loc": [-85.5299379, 42.0237376] - }, - "n1821015439": { - "id": "n1821015439", - "loc": [-85.5155022, 42.0383651] - }, - "n1821015442": { - "id": "n1821015442", - "loc": [-85.527422, 42.0254711] - }, - "n1821015443": { - "id": "n1821015443", - "loc": [-85.5920699, 41.9849291] - }, - "n1821015444": { - "id": "n1821015444", - "loc": [-85.5639711, 42.0077494] - }, - "n1821015445": { - "id": "n1821015445", - "loc": [-85.5162586, 42.0361777] - }, - "n1821015446": { - "id": "n1821015446", - "loc": [-85.5220039, 42.029695] - }, - "n1821015448": { - "id": "n1821015448", - "loc": [-85.5176641, 42.0356956] - }, - "n1821015449": { - "id": "n1821015449", - "loc": [-85.5930556, 41.9841577] - }, - "n1821015451": { - "id": "n1821015451", - "loc": [-85.5320783, 42.0228848] - }, - "n1821015452": { - "id": "n1821015452", - "loc": [-85.5170096, 42.0357235] - }, - "n1821015453": { - "id": "n1821015453", - "loc": [-85.5571355, 42.009613] - }, - "n1821015454": { - "id": "n1821015454", - "loc": [-85.5609979, 42.009059] - }, - "n1821015455": { - "id": "n1821015455", - "loc": [-85.6097336, 41.9708342] - }, - "n1821015456": { - "id": "n1821015456", - "loc": [-85.5884476, 41.9904218] + "loc": [-85.616519, 41.963942] }, "w170843846": { "id": "w170843846", @@ -32280,664 +17767,9 @@ "n1819790670" ] }, - "w209083541": { - "id": "w209083541", - "tags": { - "name": "Portage River", - "waterway": "river" - }, - "nodes": [ - "n1821014848", - "n1821015156", - "n1821015439", - "n1821014763", - "n1821014824", - "n1821015274", - "n1821014764", - "n1821014791", - "n1821014957", - "n1821015217", - "n1821015445", - "n1821015347", - "n1821014893", - "n1821015452", - "n1821015017", - "n1821015448", - "n1821014968", - "n1821015329", - "n1821015321", - "n1821014992", - "n1821014948", - "n1821014757", - "n1821014983", - "n1821015312", - "n1821015363", - "n1821014924", - "n1821014873", - "n1821014932", - "n1821014668", - "n1821015404", - "n1821014716", - "n1821015243", - "n1821015265", - "n1821014710", - "n1821015371", - "n1821015415", - "n1821014870", - "n1821015356", - "n1821015373", - "n1821014681", - "n1821014714", - "n1821015385", - "n1821014911", - "n1821015057", - "n1821014867", - "n1821014998", - "n1821015142", - "n1821015234", - "n1821015446", - "n1821014862", - "n1821015369", - "n1821014945", - "n1821015003", - "n1821014667", - "n1821015413", - "n1821015256", - "n1821015327", - "n1821015160", - "n1821014907", - "n1821015431", - "n1821015172", - "n1821015034", - "n1821014741", - "n1821015033", - "n1821015239", - "n1821015007", - "n1821015316", - "n1821015285", - "n1821014633", - "n1821015263", - "n1821015069", - "n1821014846", - "n1821014779", - "n1821015011", - "n1821015012", - "n1821014845", - "n1821015418", - "n1821015442", - "n1821015266", - "n1821015336", - "n1821014755", - "n1821015188", - "n1821014925", - "n1821014816", - "n1821014869", - "n1821014967", - "n1821015286", - "n1821015147", - "n1821015410", - "n1821015126", - "n1821015438", - "n1821015018", - "n1821015354", - "n1821015337", - "n1821014766", - "n1821014740", - "n1821015228", - "n1821015173", - "n1821015407", - "n1821015076", - "n1821015451", - "n1821015024", - "n1821015314", - "n1821014784", - "n1821015045", - "n1821014735", - "n1821015205", - "n1821014986", - "n1821015240", - "n1821015098", - "n1821014825", - "n1821015302", - "n1821014918", - "n1821014718", - "n1821014896", - "n1821014853", - "n1821015194", - "n1821015165", - "n1821015213", - "n1821014991", - "n1821015350", - "n1821015333", - "n1821015332", - "n1821015361", - "n1821015060", - "n1821014914", - "n1821015375", - "n1821015315", - "n1821015307", - "n1821014906", - "n1821014751", - "n1821014666", - "n1821015218", - "n1821014817", - "n1821015118", - "n1821014674", - "n1821015038", - "n1821014973", - "n1821015429", - "n1821015183", - "n1821015046", - "n1821014803", - "n1821015140", - "n1821015009", - "n1821014749", - "n1821015335", - "n1821014711", - "n1821014854", - "n1821015278", - "n1821015419", - "n1821014648", - "n1821015357", - "n1821014637", - "n1821014988", - "n1821015322", - "n1821015387", - "n1821015042", - "n1821014833", - "n1821015396", - "n1821015326", - "n1821014691", - "n1821015149", - "n1821015204", - "n1821015122", - "n1821014782", - "n1821014982", - "n1821014921", - "n1821014936", - "n1821014969", - "n1821014881", - "n1821015403", - "n1821014805", - "n1821015395", - "n1821014892", - "n1821014826", - "n1821014844", - "n1821015107", - "n1821015014", - "n1821014955", - "n1821015352", - "n1821015414", - "n1821014746", - "n1821015209", - "n1821014770", - "n1821015416", - "n1821014661", - "n1821014857", - "n1821014814", - "n1821014754", - "n1821014721", - "n1821014727", - "n1821015362", - "n1821015029", - "n1821015246", - "n1821015189", - "n1821014627", - "n1821015269", - "n1821014808", - "n1821014962", - "n1821015349", - "n1821015041", - "n1821014722", - "n1821015330", - "n1821015453", - "n1821015067", - "n1821014643", - "n1821014802", - "n1821015383", - "n1821015151", - "n1821015250", - "n1821015245", - "n1821014772", - "n1821014899", - "n1821015222", - "n1821015121", - "n1821014951", - "n1821015176", - "n1821015219", - "n1821015454", - "n1821014972", - "n1821014917", - "n1821015182", - "n1821015166", - "n1821015145", - "n1821014910", - "n1821015082", - "n1821014678", - "n1821014806", - "n1821015141", - "n1821015341", - "n1821014788", - "n1821015097", - "n1821014995", - "n1821015444", - "n1821015346", - "n1821015101", - "n1821015129", - "n1821015123", - "n1821015132", - "n1821015190", - "n1821015146", - "n1821015325", - "n1821015191", - "n1821015072", - "n1821015100", - "n1821015174", - "n1821015238", - "n1821015215", - "n1821014700", - "n1821015242", - "n1821014841", - "n1821014905", - "n1821014874", - "n1821014883", - "n1821014729", - "n1821014866", - "n1821014828", - "n1821015295", - "n1821014931", - "n1821014859", - "n1821014912", - "n1821014783", - "n1821014752", - "n1821014961", - "n1821015366", - "n1821015401", - "n1821015169", - "n1821015318", - "n1821014996", - "n1821014747", - "n1821014963", - "n1821014670", - "n1821015186", - "n1821015231", - "n1821015157", - "n1821014812", - "n1821015381", - "n1821014887", - "n1821015138", - "n1821014704", - "n1821014787", - "n1821014922", - "n1821015290", - "n1821015343", - "n1821014651", - "n1821014980", - "n1821014960", - "n1821015244", - "n1821015236", - "n1821015006", - "n1821014694", - "n1821014759", - "n1821015207", - "n1821015276", - "n1821015065", - "n1821014863", - "n1821014660", - "n1821014902", - "n1821014645", - "n1821015339", - "n1821014871", - "n1821015096", - "n1821015299", - "n1821014798", - "n1821014638", - "n1821015392", - "n1821014835", - "n1821014762", - "n1821014642", - "n1821015433", - "n1821014786", - "n1821015134", - "n1821014855", - "n1821015184", - "n1821014850", - "n1821015293", - "n1821015233", - "n1821015227", - "n1821014876", - "n1821014985", - "n1821014843", - "n1821015420", - "n1821015197", - "n1821015192", - "n1821015292", - "n1821015344", - "n1821014742", - "n1821014726", - "n1821015237", - "n1821014796", - "n1821014908", - "n1821014975", - "n1821014769", - "n1821014688", - "n1821014860", - "n1821014895", - "n1821014676", - "n1821015411", - "n1821014736", - "n1821015164", - "n1821014647", - "n1821015144", - "n1821014919", - "n1821015220", - "n1821015254", - "n1821015435", - "n1821015308", - "n1821015342", - "n1821014830", - "n1821015273", - "n1821014658", - "n1821014781", - "n1821015087", - "n1821015139", - "n1821015304", - "n1821014839", - "n1821015048", - "n1821015115", - "n1821015355", - "n1821015226", - "n1821015177", - "n1821015430", - "n1821014965", - "n1821014725", - "n1821015365", - "n1821015171", - "n1821015073", - "n1821015125", - "n1821015338", - "n1821015111", - "n1821014950", - "n1821015378", - "n1821015258", - "n1821015456", - "n1821015106", - "n1821014832", - "n1821014888", - "n1821014795", - "n1821014872", - "n1821014810", - "n1821014705", - "n1821014804", - "n1821014820", - "n1821015283", - "n1821014938", - "n1821014689", - "n1821015259", - "n1821015334", - "n1821015348", - "n1821014635", - "n1821015179", - "n1821014864", - "n1821014890", - "n1821015020", - "n1821014898", - "n1821015287", - "n1821015120", - "n1821014984", - "n1821014743", - "n1821014790", - "n1821014765", - "n1821014777", - "n1821015095", - "n1821014653", - "n1821015135", - "n1821014836", - "n1821014964", - "n1821014974", - "n1821014636", - "n1821014682", - "n1821014663", - "n1821014665", - "n1821015109", - "n1821015155", - "n1821014930", - "n1821014669", - "n1821015004", - "n1821015427", - "n1821014916", - "n1821015093", - "n1821015086", - "n1821015386", - "n1821014799", - "n1821014913", - "n1821015434", - "n1821014728", - "n1821014900", - "n1821015068", - "n1821015039", - "n1821015443", - "n1821015406", - "n1821015280", - "n1821015319", - "n1821015368", - "n1821014774", - "n1821015090", - "n1821015175", - "n1821015195", - "n1821014687", - "n1821015359", - "n1821015449", - "n1821014956", - "n1821014838", - "n1821014768", - "n1821014698", - "n1821015323", - "n1821014756", - "n1821015255", - "n1821015400", - "n1821014717", - "n1821014868", - "n1821014778", - "n1821015214", - "n1821014944", - "n1821014697", - "n1821014671", - "n1821014928", - "n1821015294", - "n1821014822", - "n1821015284", - "n1821015351", - "n1821015022", - "n1821015133", - "n1821014644", - "n1821015010", - "n1821014625", - "n1821014657", - "n1821014946", - "n1821015099", - "n1821015114", - "n1821014629", - "n1821014865", - "n1821014997", - "n1821014926", - "n1821014933", - "n1821015199", - "n1821014819", - "n1821015080", - "n1821014692", - "n1821014677", - "n1821015358", - "n1821015367", - "n1821015360", - "n1821015105", - "n1821015247", - "n1821015005", - "n1821014809", - "n1821014794", - "n1821014761", - "n1821014879", - "n1821014801", - "n1821015377", - "n1821015059", - "n1821014730", - "n1821015050", - "n1821015271", - "n1821015143", - "n1821014989", - "n1821015019", - "n1821014672", - "n1821014649", - "n1821014684", - "n1821014703", - "n1821015021", - "n1821015382", - "n1821014842", - "n1821014720", - "n1821014847", - "n1821015104", - "n1821014987", - "n1821014886", - "n1821015267", - "n1821015221", - "n1821015015", - "n1821015423", - "n1821014954", - "n1821014903", - "n1821014939", - "n1821015212", - "n1821014789", - "n1821014712", - "n1821014708", - "n1821015078", - "n1821015277", - "n1821015249", - "n1821014646", - "n1821014793", - "n1821015053", - "n1821014707", - "n1821015306", - "n1821015112", - "n1821015288", - "n1821015380", - "n1821015437", - "n1821015178", - "n1821015158", - "n1821015272", - "n1821015235", - "n1821015163", - "n1821015154", - "n1821015253", - "n1821014632", - "n1821015372", - "n1821015103", - "n1821015311", - "n1821015301", - "n1821014885", - "n1821014811", - "n1821014977", - "n1821015051", - "n1821014942", - "n1821014745", - "n1821015432", - "n1821015075", - "n1821014664", - "n1821014695", - "n1821015116", - "n1821014639", - "n1821015421", - "n1821015248", - "n1821014758", - "n1821014834", - "n1821015083", - "n1821015455", - "n1821015241", - "n1821015108", - "n1821014713", - "n1821015137", - "n1821015055", - "n1821015211", - "n1821014904", - "n1821015376", - "n1821015398", - "n1821014771", - "n1821014840", - "n1821015062", - "n1819790554", - "n1819790560", - "n1819790767", - "n1819790696", - "n1819790706", - "n1819790606", - "n1819790607", - "n1819790544", - "n1819790779", - "n1819790760", - "n1819790926", - "n1819790927", - "n1819790647", - "n1819790657", - "n1819790649", - "n1819790679", - "n1819790915", - "n1819790739", - "n1819790549", - "n1819790671", - "n1819790686", - "n1819790798", - "n1819790791", - "n1819790563", - "n1819790720", - "n1819790704", - "n1819790795", - "n1819790836", - "n1819790622", - "n1819790615", - "n1819790654", - "n1819790931", - "n1819790595", - "n1819790753", - "n1819790612", - "n1819790623", - "n1819790564", - "n1819790552", - "n1819790645", - "n1819790625", - "n1819790605", - "n1819790668", - "n1819790731", - "n1819790718", - "n1819790781", - "n1819790665", - "n1819790659", - "n1819790726", - "n1819790642", - "n1819790854", - "n1819790697", - "n1819790867", - "n1819790833", - "n1819790555", - "n1819790774", - "n1819790881", - "n1819790530", - "n1819790909", - "n1819790891", - "n1819790590", - "n1819790738", - "n1819790609", - "n1819790528", - "n1819790674", - "n1819790583", - "n1819790559", - "n1819790863", - "n1819790912", - "n1819790685", - "n1819790913" - ] - }, "n185955128": { "id": "n185955128", - "loc": [-85.6189367, 41.9519432] + "loc": [-85.618937, 41.951943] }, "n185948818": { "id": "n185948818", @@ -32953,459 +17785,459 @@ }, "n2138420714": { "id": "n2138420714", - "loc": [-85.6176304, 41.9515154] + "loc": [-85.61763, 41.951515] }, "n2138420715": { "id": "n2138420715", - "loc": [-85.6177355, 41.9515717] + "loc": [-85.617735, 41.951572] }, "n2138420716": { "id": "n2138420716", - "loc": [-85.6192901, 41.951573] + "loc": [-85.61929, 41.951573] }, "n2138420718": { "id": "n2138420718", - "loc": [-85.6171481, 41.9513579] + "loc": [-85.617148, 41.951358] }, "n2138420719": { "id": "n2138420719", - "loc": [-85.6165981, 41.9519199] + "loc": [-85.616598, 41.95192] }, "n2138420720": { "id": "n2138420720", - "loc": [-85.6165719, 41.9519922] + "loc": [-85.616572, 41.951992] }, "n2138420721": { "id": "n2138420721", - "loc": [-85.6165832, 41.9520757] + "loc": [-85.616583, 41.952076] }, "n2138420722": { "id": "n2138420722", - "loc": [-85.6166355, 41.9521453] + "loc": [-85.616636, 41.952145] }, "n2138420723": { "id": "n2138420723", - "loc": [-85.6169161, 41.9522788] + "loc": [-85.616916, 41.952279] }, "n2138420724": { "id": "n2138420724", - "loc": [-85.6170882, 41.9522538] + "loc": [-85.617088, 41.952254] }, "n2138420725": { "id": "n2138420725", - "loc": [-85.6189204, 41.9514674] + "loc": [-85.61892, 41.951467] }, "n2138420726": { "id": "n2138420726", - "loc": [-85.6180346, 41.9514735] + "loc": [-85.618035, 41.951473] }, "n2138420727": { "id": "n2138420727", - "loc": [-85.6180362, 41.9515719] + "loc": [-85.618036, 41.951572] }, "n2138420728": { "id": "n2138420728", - "loc": [-85.6189204, 41.9515727] + "loc": [-85.61892, 41.951573] }, "n2138420744": { "id": "n2138420744", - "loc": [-85.618919, 41.9519571] + "loc": [-85.618919, 41.951957] }, "n2138420745": { "id": "n2138420745", - "loc": [-85.6194575, 41.9522374] + "loc": [-85.619457, 41.952237] }, "n2138420746": { "id": "n2138420746", - "loc": [-85.6181777, 41.9536179] + "loc": [-85.618178, 41.953618] }, "n2138420747": { "id": "n2138420747", - "loc": [-85.6176582, 41.9533658] + "loc": [-85.617658, 41.953366] }, "n2138420748": { "id": "n2138420748", - "loc": [-85.6179871, 41.9530242] + "loc": [-85.617987, 41.953024] }, "n2138420749": { "id": "n2138420749", - "loc": [-85.618429, 41.9532476] + "loc": [-85.618429, 41.953248] }, "n2138420750": { "id": "n2138420750", - "loc": [-85.6185538, 41.9531194] + "loc": [-85.618554, 41.953119] }, "n2138420751": { "id": "n2138420751", - "loc": [-85.6180765, 41.9528677] + "loc": [-85.618077, 41.952868] }, "n2138420752": { "id": "n2138420752", - "loc": [-85.6180394, 41.9528855] + "loc": [-85.618039, 41.952886] }, "n2138420753": { "id": "n2138420753", - "loc": [-85.6193752, 41.9521695] + "loc": [-85.619375, 41.952169] }, "n2138420754": { "id": "n2138420754", - "loc": [-85.6181374, 41.9535376] + "loc": [-85.618137, 41.953538] }, "n2138420755": { "id": "n2138420755", - "loc": [-85.6179898, 41.9535545] + "loc": [-85.61799, 41.953555] }, "n2138420756": { "id": "n2138420756", - "loc": [-85.6177286, 41.9534228] + "loc": [-85.617729, 41.953423] }, "n2138420757": { "id": "n2138420757", - "loc": [-85.6181011, 41.9530292] + "loc": [-85.618101, 41.953029] }, "n2138420759": { "id": "n2138420759", - "loc": [-85.6185158, 41.9531194] + "loc": [-85.618516, 41.953119] }, "n2138420760": { "id": "n2138420760", - "loc": [-85.6191318, 41.9520425] + "loc": [-85.619132, 41.952042] }, "n2138420761": { "id": "n2138420761", - "loc": [-85.6182348, 41.9529815] + "loc": [-85.618235, 41.952981] }, "n2138420762": { "id": "n2138420762", - "loc": [-85.6184853, 41.9524248] + "loc": [-85.618485, 41.952425] }, "n2138420763": { "id": "n2138420763", - "loc": [-85.6186764, 41.9525193] + "loc": [-85.618676, 41.952519] }, "n2138420764": { "id": "n2138420764", - "loc": [-85.6189421, 41.9526483] + "loc": [-85.618942, 41.952648] }, "n2138420765": { "id": "n2138420765", - "loc": [-85.6182875, 41.9531222] + "loc": [-85.618287, 41.953122] }, "n2138420766": { "id": "n2138420766", - "loc": [-85.6179141, 41.9535163] + "loc": [-85.617914, 41.953516] }, "n2138420767": { "id": "n2138420767", - "loc": [-85.6178363, 41.9535735] + "loc": [-85.617836, 41.953573] }, "n185948824": { "id": "n185948824", - "loc": [-85.6165667, 41.9529715] + "loc": [-85.616567, 41.952971] }, "n2138420758": { "id": "n2138420758", - "loc": [-85.6184408, 41.953201] + "loc": [-85.618441, 41.953201] }, "n2138422349": { "id": "n2138422349", - "loc": [-85.6175136, 41.9533346] + "loc": [-85.617514, 41.953335] }, "n2138422350": { "id": "n2138422350", - "loc": [-85.6171867, 41.9531679] + "loc": [-85.617187, 41.953168] }, "n2138422351": { "id": "n2138422351", - "loc": [-85.61722, 41.9531305] + "loc": [-85.61722, 41.953131] }, "n2138422352": { "id": "n2138422352", - "loc": [-85.6171889, 41.9531158] + "loc": [-85.617189, 41.953116] }, "n2138422353": { "id": "n2138422353", - "loc": [-85.6171733, 41.9531284] + "loc": [-85.617173, 41.953128] }, "n2138422354": { "id": "n2138422354", - "loc": [-85.616765, 41.9529207] + "loc": [-85.616765, 41.952921] }, "n2138422355": { "id": "n2138422355", - "loc": [-85.6167565, 41.9529355] + "loc": [-85.616756, 41.952936] }, "n2138422356": { "id": "n2138422356", - "loc": [-85.6164772, 41.9527911] + "loc": [-85.616477, 41.952791] }, "n2138422357": { "id": "n2138422357", - "loc": [-85.6168227, 41.9524261] + "loc": [-85.616823, 41.952426] }, "n2138422358": { "id": "n2138422358", - "loc": [-85.6171913, 41.9526158] + "loc": [-85.617191, 41.952616] }, "n2138422359": { "id": "n2138422359", - "loc": [-85.6172403, 41.9525589] + "loc": [-85.61724, 41.952559] }, "n2138422360": { "id": "n2138422360", - "loc": [-85.6172097, 41.952542] + "loc": [-85.61721, 41.952542] }, "n2138422361": { "id": "n2138422361", - "loc": [-85.6173948, 41.9523512] + "loc": [-85.617395, 41.952351] }, "n2138422362": { "id": "n2138422362", - "loc": [-85.6174256, 41.9523678] + "loc": [-85.617426, 41.952368] }, "n2138422363": { "id": "n2138422363", - "loc": [-85.6174831, 41.9523086] + "loc": [-85.617483, 41.952309] }, "n2138422364": { "id": "n2138422364", - "loc": [-85.6173316, 41.9522289] + "loc": [-85.617332, 41.952229] }, "n2138422365": { "id": "n2138422365", - "loc": [-85.6174507, 41.9521024] + "loc": [-85.617451, 41.952102] }, "n2138422366": { "id": "n2138422366", - "loc": [-85.6174773, 41.9521155] + "loc": [-85.617477, 41.952115] }, "n2138422367": { "id": "n2138422367", - "loc": [-85.6176577, 41.9519232] + "loc": [-85.617658, 41.951923] }, "n2138422368": { "id": "n2138422368", - "loc": [-85.6176336, 41.9519105] + "loc": [-85.617634, 41.95191] }, "n2138422369": { "id": "n2138422369", - "loc": [-85.617747, 41.9517861] + "loc": [-85.617747, 41.951786] }, "n2138422370": { "id": "n2138422370", - "loc": [-85.6182675, 41.9520559] + "loc": [-85.618268, 41.952056] }, "n2138422371": { "id": "n2138422371", - "loc": [-85.6182105, 41.9521219] + "loc": [-85.618211, 41.952122] }, "n2138422372": { "id": "n2138422372", - "loc": [-85.6183863, 41.9522203] + "loc": [-85.618386, 41.95222] }, "n2138422373": { "id": "n2138422373", - "loc": [-85.6180984, 41.9525266] + "loc": [-85.618098, 41.952527] }, "n2138422374": { "id": "n2138422374", - "loc": [-85.6179159, 41.9524295] + "loc": [-85.617916, 41.95243] }, "n2138422375": { "id": "n2138422375", - "loc": [-85.617854, 41.9524979] + "loc": [-85.617854, 41.952498] }, "n2138422376": { "id": "n2138422376", - "loc": [-85.6177686, 41.9524531] + "loc": [-85.617769, 41.952453] }, "n2138422377": { "id": "n2138422377", - "loc": [-85.6174716, 41.9527765] + "loc": [-85.617472, 41.952776] }, "n2138422378": { "id": "n2138422378", - "loc": [-85.6178545, 41.9529756] + "loc": [-85.617855, 41.952976] }, "n2138425424": { "id": "n2138425424", - "loc": [-85.6171736, 41.9536385] + "loc": [-85.617174, 41.953638] }, "n2138425425": { "id": "n2138425425", - "loc": [-85.6180159, 41.9535782] + "loc": [-85.618016, 41.953578] }, "n2138425426": { "id": "n2138425426", - "loc": [-85.6181068, 41.9536282] + "loc": [-85.618107, 41.953628] }, "n2138425427": { "id": "n2138425427", - "loc": [-85.6180673, 41.9542678] + "loc": [-85.618067, 41.954268] }, "n2138425428": { "id": "n2138425428", - "loc": [-85.6178636, 41.9542634] + "loc": [-85.617864, 41.954263] }, "n2138425429": { "id": "n2138425429", - "loc": [-85.6176204, 41.9542046] + "loc": [-85.61762, 41.954205] }, "n2138425430": { "id": "n2138425430", - "loc": [-85.6174366, 41.9541031] + "loc": [-85.617437, 41.954103] }, "n2138425431": { "id": "n2138425431", - "loc": [-85.6172942, 41.9539781] + "loc": [-85.617294, 41.953978] }, "n2138425432": { "id": "n2138425432", - "loc": [-85.6172171, 41.9538399] + "loc": [-85.617217, 41.95384] }, "n2138425433": { "id": "n2138425433", - "loc": [-85.6168138, 41.9543266] + "loc": [-85.616814, 41.954327] }, "n2138425434": { "id": "n2138425434", - "loc": [-85.6167779, 41.9538098] + "loc": [-85.616778, 41.95381] }, "n2138425435": { "id": "n2138425435", - "loc": [-85.6165849, 41.9537073] + "loc": [-85.616585, 41.953707] }, "n2138425441": { "id": "n2138425441", - "loc": [-85.616458, 41.9543184] + "loc": [-85.616458, 41.954318] }, "n2138425442": { "id": "n2138425442", - "loc": [-85.6166428, 41.954345] + "loc": [-85.616643, 41.954345] }, "n2138425445": { "id": "n2138425445", - "loc": [-85.6181332, 41.9514117] + "loc": [-85.618133, 41.951412] }, "n2138425446": { "id": "n2138425446", - "loc": [-85.6183263, 41.9514111] + "loc": [-85.618326, 41.951411] }, "n2138425447": { "id": "n2138425447", - "loc": [-85.6185033, 41.9514102] + "loc": [-85.618503, 41.95141] }, "n2138425449": { "id": "n2138425449", - "loc": [-85.6186809, 41.9514093] + "loc": [-85.618681, 41.951409] }, "n2138425451": { "id": "n2138425451", - "loc": [-85.6188681, 41.9514082] + "loc": [-85.618868, 41.951408] }, "n2138436008": { "id": "n2138436008", - "loc": [-85.6170474, 41.9513604] + "loc": [-85.617047, 41.95136] }, "n2138436009": { "id": "n2138436009", - "loc": [-85.6164937, 41.9519586] + "loc": [-85.616494, 41.951959] }, "n2138436010": { "id": "n2138436010", - "loc": [-85.616497, 41.9520725] + "loc": [-85.616497, 41.952072] }, "n2138436011": { "id": "n2138436011", - "loc": [-85.6165654, 41.9521645] + "loc": [-85.616565, 41.952165] }, "n2138436012": { "id": "n2138436012", - "loc": [-85.6166631, 41.9522178] + "loc": [-85.616663, 41.952218] }, "n2138436013": { "id": "n2138436013", - "loc": [-85.6167327, 41.9522554] + "loc": [-85.616733, 41.952255] }, "n2138436014": { "id": "n2138436014", - "loc": [-85.6172383, 41.9525125] + "loc": [-85.617238, 41.952512] }, "n2138439319": { "id": "n2138439319", - "loc": [-85.6170432, 41.9524057] + "loc": [-85.617043, 41.952406] }, "n2138439320": { "id": "n2138439320", - "loc": [-85.617691, 41.9517107] + "loc": [-85.617691, 41.951711] }, "n2138439321": { "id": "n2138439321", - "loc": [-85.6177727, 41.9516794] + "loc": [-85.617773, 41.951679] }, "n2138439322": { "id": "n2138439322", - "loc": [-85.619085, 41.9516811] + "loc": [-85.619085, 41.951681] }, "n2138439323": { "id": "n2138439323", - "loc": [-85.6179432, 41.952895] + "loc": [-85.617943, 41.952895] }, "n2138439324": { "id": "n2138439324", - "loc": [-85.6180389, 41.9529384] + "loc": [-85.618039, 41.952938] }, "n2138439325": { "id": "n2138439325", - "loc": [-85.6176303, 41.9533604] + "loc": [-85.61763, 41.95336] }, "n2138439326": { "id": "n2138439326", - "loc": [-85.6175538, 41.9534396] + "loc": [-85.617554, 41.95344] }, "n2138439327": { "id": "n2138439327", - "loc": [-85.6173806, 41.9523658] + "loc": [-85.617381, 41.952366] }, "n2138439328": { "id": "n2138439328", - "loc": [-85.6171841, 41.9522542] + "loc": [-85.617184, 41.952254] }, "n2138439329": { "id": "n2138439329", - "loc": [-85.6172077, 41.9524958] + "loc": [-85.617208, 41.952496] }, "n2138439330": { "id": "n2138439330", - "loc": [-85.6171235, 41.9525809] + "loc": [-85.617124, 41.952581] }, "n2138439331": { "id": "n2138439331", - "loc": [-85.6180938, 41.9527349] + "loc": [-85.618094, 41.952735] }, "n2138439332": { "id": "n2138439332", - "loc": [-85.6177023, 41.9525253] + "loc": [-85.617702, 41.952525] }, "n2138439333": { "id": "n2138439333", - "loc": [-85.6175543, 41.9526865] + "loc": [-85.617554, 41.952686] }, "n2138439334": { "id": "n2138439334", - "loc": [-85.6179589, 41.9528783] + "loc": [-85.617959, 41.952878] }, "n185948820": { "id": "n185948820", - "loc": [-85.6163249, 41.952701] + "loc": [-85.616325, 41.952701] }, "n185948822": { "id": "n185948822", - "loc": [-85.6163757, 41.952855] + "loc": [-85.616376, 41.952855] }, "n185955123": { "id": "n185955123", - "loc": [-85.6198103, 41.9510408] + "loc": [-85.61981, 41.951041] }, "n185958839": { "id": "n185958839", @@ -33421,7 +18253,7 @@ }, "n185976504": { "id": "n185976504", - "loc": [-85.6174164, 41.9510804] + "loc": [-85.617416, 41.95108] }, "n185978828": { "id": "n185978828", @@ -33429,120 +18261,119 @@ }, "n185978830": { "id": "n185978830", - "loc": [-85.610373, 41.954774] + "loc": [-85.610238, 41.954774] }, "n2138420713": { "id": "n2138420713", - "loc": [-85.6174641, 41.9506942] + "loc": [-85.617464, 41.950694] }, "n2138420717": { "id": "n2138420717", - "loc": [-85.6173027, 41.9512895] + "loc": [-85.617303, 41.95129] }, "n2138420768": { "id": "n2138420768", - "loc": [-85.61745, 41.9501974] + "loc": [-85.61745, 41.950197] }, "n2138420773": { "id": "n2138420773", - "loc": [-85.6174135, 41.9489136] + "loc": [-85.617413, 41.948914] }, "n2138425436": { "id": "n2138425436", - "loc": [-85.6159148, 41.9538036] + "loc": [-85.615915, 41.953804] }, "n2138425437": { "id": "n2138425437", - "loc": [-85.6159534, 41.9539677] + "loc": [-85.615953, 41.953968] }, "n2138425438": { "id": "n2138425438", - "loc": [-85.6160306, 41.9540846] + "loc": [-85.616031, 41.954085] }, "n2138425439": { "id": "n2138425439", - "loc": [-85.6161354, 41.954181] + "loc": [-85.616135, 41.954181] }, "n2138425440": { "id": "n2138425440", - "loc": [-85.6162733, 41.954263] + "loc": [-85.616273, 41.954263] }, "n2138425443": { "id": "n2138425443", - "loc": [-85.6183273, 41.9510826] + "loc": [-85.618327, 41.951083] }, "n2138425444": { "id": "n2138425444", - "loc": [-85.6181354, 41.9510835] + "loc": [-85.618135, 41.951084] }, "n2138425448": { "id": "n2138425448", - "loc": [-85.6185033, 41.9510816] + "loc": [-85.618503, 41.951082] }, "n2138425450": { "id": "n2138425450", - "loc": [-85.6186816, 41.9510808] + "loc": [-85.618682, 41.951081] }, "n2138425452": { "id": "n2138425452", - "loc": [-85.6188641, 41.9510818] + "loc": [-85.618864, 41.951082] }, "n2138435984": { "id": "n2138435984", - "loc": [-85.6167607, 41.9501009] + "loc": [-85.616761, 41.950101] }, "n2138436000": { "id": "n2138436000", - "loc": [-85.6173169, 41.947558] + "loc": [-85.617317, 41.947558] }, "n2138436001": { "id": "n2138436001", - "loc": [-85.6173362, 41.948883] + "loc": [-85.617336, 41.948883] }, "n2138436002": { "id": "n2138436002", - "loc": [-85.6167791, 41.9492952] + "loc": [-85.616779, 41.949295] }, "n2138436003": { "id": "n2138436003", - "loc": [-85.6167543, 41.949349] + "loc": [-85.616754, 41.949349] }, "n2138436004": { "id": "n2138436004", - "loc": [-85.6167648, 41.9509125] + "loc": [-85.616765, 41.950913] }, "n2138436005": { "id": "n2138436005", - "loc": [-85.6168832, 41.9510412] + "loc": [-85.616883, 41.951041] }, "n2138436006": { "id": "n2138436006", - "loc": [-85.6170045, 41.9511417] + "loc": [-85.617004, 41.951142] }, "n2138436007": { "id": "n2138436007", - "loc": [-85.6170624, 41.9512483] + "loc": [-85.617062, 41.951248] }, "n2138436017": { "id": "n2138436017", - "loc": [-85.6168094, 41.9492729] + "loc": [-85.616809, 41.949273] }, "n2138436021": { "id": "n2138436021", - "loc": [-85.6167553, 41.9494886] + "loc": [-85.616755, 41.949489] }, "n2138436023": { "id": "n2138436023", - "loc": [-85.6167585, 41.9499707] + "loc": [-85.616759, 41.949971] }, "n2138436025": { "id": "n2138436025", - "loc": [-85.6167567, 41.9497018] + "loc": [-85.616757, 41.949702] }, "w203838284": { "id": "w203838284", "tags": { - "area": "yes", "leisure": "pitch", "sport": "baseball" }, @@ -33587,8 +18418,7 @@ "w203837932": { "id": "w203837932", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": [ "n2138420744", @@ -33669,7 +18499,6 @@ "id": "w203838040", "tags": { "amenity": "school", - "area": "yes", "building": "yes", "name": "Three Rivers Middle School" }, @@ -33746,7 +18575,6 @@ "w203838287": { "id": "w203838287", "tags": { - "area": "yes", "leisure": "pitch", "sport": "tennis" }, @@ -33763,7 +18591,6 @@ "w203838289": { "id": "w203838289", "tags": { - "area": "yes", "leisure": "pitch", "sport": "tennis" }, @@ -33818,7 +18645,6 @@ "w203838288": { "id": "w203838288", "tags": { - "area": "yes", "leisure": "pitch", "sport": "tennis" }, @@ -33827,7 +18653,6 @@ "w203838285": { "id": "w203838285", "tags": { - "area": "yes", "leisure": "pitch", "sport": "baseball" }, @@ -33848,7 +18673,6 @@ "w203838286": { "id": "w203838286", "tags": { - "area": "yes", "leisure": "pitch", "sport": "tennis" }, @@ -33857,8 +18681,7 @@ "w203837929": { "id": "w203837929", "tags": { - "amenity": "parking", - "area": "yes" + "amenity": "parking" }, "nodes": ["n2138420725", "n2138420726", "n2138420727", "n2138420728", "n2138420725"] }, @@ -33881,42 +18704,6 @@ "n2138439326" ] }, - "n394381698": { - "id": "n394381698", - "loc": [-85.614471, 41.954755] - }, - "n394381699": { - "id": "n394381699", - "loc": [-85.6152, 41.954744] - }, - "n394381700": { - "id": "n394381700", - "loc": [-85.615201, 41.954081] - }, - "n394381701": { - "id": "n394381701", - "loc": [-85.614426, 41.954042] - }, - "n394381702": { - "id": "n394381702", - "loc": [-85.616319, 41.954749] - }, - "n394381704": { - "id": "n394381704", - "loc": [-85.616152, 41.954752] - }, - "n394381706": { - "id": "n394381706", - "loc": [-85.615201, 41.95483] - }, - "n394490775": { - "id": "n394490775", - "loc": [-85.613971, 41.954839] - }, - "n394490782": { - "id": "n394490782", - "loc": [-85.614372, 41.954841] - }, "n185958835": { "id": "n185958835", "loc": [-85.611615, 41.953704] @@ -34065,22 +18852,6 @@ "id": "n185980229", "loc": [-85.613918, 41.957134] }, - "n394381703": { - "id": "n394381703", - "loc": [-85.616287, 41.955674] - }, - "n394381705": { - "id": "n394381705", - "loc": [-85.615164, 41.955676] - }, - "n394490777": { - "id": "n394490777", - "loc": [-85.613973, 41.955979] - }, - "n394490780": { - "id": "n394490780", - "loc": [-85.614364, 41.955987] - }, "w17965307": { "id": "w17965307", "tags": { @@ -34124,14 +18895,6 @@ }, "nodes": ["n185958835", "n185958837", "n185958839"] }, - "w34367080": { - "id": "w34367080", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394381699", "n394381706", "n394381705", "n394381703", "n394381702", "n394381704", "n394381699"] - }, "w17965302": { "id": "w17965302", "tags": { @@ -34148,14 +18911,6 @@ }, "nodes": ["n185965062", "n185965064", "n185965066", "n185965068", "n185965071", "n185965073", "n185965031"] }, - "w34369812": { - "id": "w34369812", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394490775", "n394490777", "n394490780", "n394490782", "n394490775"] - }, "w17965151": { "id": "w17965151", "tags": { @@ -34181,14 +18936,6 @@ }, "nodes": ["n185966354", "n185973839", "n185973840", "n185966293"] }, - "w34367079": { - "id": "w34367079", - "tags": { - "admin_level": "8", - "boundary": "administrative" - }, - "nodes": ["n394381700", "n394381701", "n394381698", "n394381699", "n394381700"] - }, "n185955744": { "id": "n185955744", "loc": [-85.611753, 41.956208] @@ -34199,62 +18946,58 @@ }, "n185988934": { "id": "n185988934", - "loc": [-85.6159158, 41.9590646] + "loc": [-85.615916, 41.959065] }, "n185988935": { "id": "n185988935", - "loc": [-85.6157358, 41.959364], + "loc": [-85.615736, 41.959364], "tags": { "highway": "turning_circle" } }, "n2138447007": { "id": "n2138447007", - "loc": [-85.6130784, 41.9590689] + "loc": [-85.613078, 41.959069] }, "n2138447008": { "id": "n2138447008", - "loc": [-85.6133328, 41.9593805] - }, - "n2138447003": { - "id": "n2138447003", - "loc": [-85.610238, 41.9547745] + "loc": [-85.613333, 41.959381] }, "n2138447004": { "id": "n2138447004", - "loc": [-85.6102652, 41.9566041] + "loc": [-85.610265, 41.956604] }, "n2138447005": { "id": "n2138447005", - "loc": [-85.610325, 41.9568823] + "loc": [-85.610325, 41.956882] }, "n2138447006": { "id": "n2138447006", - "loc": [-85.6105644, 41.9571383] + "loc": [-85.610564, 41.957138] }, "n2138447009": { "id": "n2138447009", - "loc": [-85.6135946, 41.959948] + "loc": [-85.613595, 41.959948] }, "n2138447010": { "id": "n2138447010", - "loc": [-85.6136071, 41.9629372] + "loc": [-85.613607, 41.962937] }, "n2138447011": { "id": "n2138447011", - "loc": [-85.6134392, 41.9633182] + "loc": [-85.613439, 41.963318] }, "n2138447012": { "id": "n2138447012", - "loc": [-85.6130151, 41.9636073] + "loc": [-85.613015, 41.963607] }, "n2138447013": { "id": "n2138447013", - "loc": [-85.6122729, 41.9637125] + "loc": [-85.612273, 41.963712] }, "n2138447014": { "id": "n2138447014", - "loc": [-85.6056682, 41.963752] + "loc": [-85.605668, 41.963752] }, "w17964174": { "id": "w17964174", @@ -34280,7 +19023,7 @@ "name": "Hov Aire Drive" }, "nodes": [ - "n2138447003", + "n185978830", "n2138447004", "n2138447005", "n2138447006", @@ -34293,6 +19036,453 @@ "n2138447013", "n2138447014" ] + }, + "w1": { + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "id": "w1", + "nodes": [ + "n1819848976", + "n1819848977", + "n1819849144", + "n1819848918", + "n1819849200", + "n1819848919", + "n1819849042", + "n1819849166", + "n1819849186", + "n1819849152", + "n1819849058", + "n1819849185", + "n1819849199", + "n1819849053", + "n1819849194", + "n1819849068", + "n1819849146", + "n1819849174", + "n1819848967", + "n1819848932", + "n1819849155", + "n1819849198", + "n1819848964", + "n1819848894", + "n1819848969", + "n1819849184", + "n1819849055", + "n1819849179", + "n1819848865", + "n1819848860", + "n1819849082", + "n1819848966", + "n1819849040", + "n1819849069", + "n1819849078", + "n1819849077", + "n1819848904", + "n1819848959", + "n1819849133", + "n1819849089", + "n1819849000", + "n39", + "n1819849124", + "n40", + "n1819849032", + "n1819849097", + "n1819848939", + "n1819849072", + "n1819848915", + "n1819849196", + "n1819848946", + "n1819849047", + "n1819849029", + "n1819849164", + "n1819848994", + "n1819849022", + "n1819858513", + "n1819849126", + "n1819849063", + "n1819848941", + "n1819849085", + "n1819848871", + "n1819848943", + "n1819849192", + "n1819858501", + "n1819849159", + "n1819858523", + "n1819848901", + "n1819849189", + "n1819858503", + "n1819849065", + "n2139877106", + "n1819848909", + "n1819848930", + "n1819848888" + ] + }, + "w2": { + "tags": { + "name": "Portage River", + "waterway": "river" + }, + "id": "w2", + "nodes": [ + "n1819790564", + "n1819790552", + "n1819790645", + "n1819790625", + "n1819790605", + "n1819790668", + "n1819790731", + "n1819790718", + "n1819790781", + "n1819790665", + "n1819790659", + "n1819790726", + "n1819790642", + "n1819790854", + "n1819790697", + "n1819790867", + "n1819790833", + "n1819790555", + "n1819790774", + "n1819790881", + "n1819790530", + "n1819790909", + "n1819790891", + "n1819790590", + "n1819790738", + "n1819790609", + "n1819790528", + "n1819790674", + "n1819790583", + "n1819790559", + "n1819790863", + "n1819790912", + "n1819790685", + "n1819790913" + ] + }, + "w3": { + "tags": { + "highway": "residential", + "name": "New Jersey Court" + }, + "id": "w3", + "nodes": ["n3", "n2139795770", "n2139795778", "n2", "n1", "n2139795779", "n2139795769"] + }, + "n1": { + "id": "n1", + "loc": [-85.624955, 41.961107] + }, + "n2": { + "id": "n2", + "loc": [-85.624947, 41.961196] + }, + "n3": { + "loc": [-85.625105, 41.96146], + "id": "n3", + "tags": { + "highway": "turning_circle" + } + }, + "w4": { + "tags": { + "name": "Saint Joseph River", + "waterway": "river" + }, + "id": "w4", + "nodes": [ + "n1820939059", + "n1820938868", + "n1820937877", + "n1820937743", + "n1820938429", + "n1820937545", + "n1820937575", + "n1820938302", + "n1820938505", + "n1820938916", + "n1820938374", + "n1820938329", + "n1820937790", + "n1820939735", + "n1820938930", + "n1820937995", + "n1820938512", + "n1820938130", + "n1820938194", + "n1820938671", + "n19", + "n1820938802", + "n20", + "n1820937542", + "n1820937602", + "n1820939069", + "n1820938901", + "n1820939654", + "n1820937727", + "n1820939569", + "n1820938375", + "n1820939306", + "n1820938479", + "n1820938376", + "n1820938667", + "n1820937766", + "n1820939467", + "n1820939567", + "n1820937806" + ] + }, + "w5": { + "id": "w5", + "nodes": [ + "n1819800347", + "n1819800256", + "n1819800293", + "n1819800367", + "n1819800311", + "n1819800260", + "n1819800185", + "n1819800303", + "n1819800274", + "n1819800380", + "n1819800365", + "n1819800379", + "n1819800255", + "n1819800264", + "n1819800186", + "n1819800183", + "n1819800317", + "n1819800211", + "n1819800241", + "n1819800360", + "n1819800258", + "n1819800369", + "n1819800296", + "n1819800288", + "n1819800310", + "n1819800204", + "n1819800375", + "n1819800216", + "n1819800377", + "n1819800248", + "n1819800227", + "n1819800368", + "n1819800231", + "n1819800188", + "n1819800325", + "n1819800232", + "n1819800304", + "n1819800271", + "n1819800213", + "n1819800266", + "n1819800221", + "n1819800294", + "n1819800362", + "n1819800199", + "n1819800230", + "n1819800218", + "n1819800352", + "n1819800324", + "n1819800272", + "n1819800261", + "n1819800229", + "n1819800245", + "n2139966626", + "n2139966621", + "n2139966622", + "n2139966623", + "n1819800319", + "n2139966625", + "n2139966629", + "n2139966624", + "n1819800349", + "n1819800328", + "n1819800291", + "n1819800206", + "n1819800237", + "n1819800336", + "n1819800318", + "n1819800354", + "n1819800182", + "n1819800363", + "n1819800297", + "n1819800268", + "n1819800223", + "n1819800209", + "n1819800233", + "n1819800201", + "n1819800343", + "n1819800333", + "n1819800347" + ] + }, + "r1": { + "tags": { + "waterway": "riverbank", + "type": "multipolygon" + }, + "members": [{ + "id": "w5", "role": "outer", "type": "way" + }], + "id": "r1" + }, + "n4": { + "id": "n4", + "loc": [-85.62276, 41.951784] + }, + "n5": { + "id": "n5", + "loc": [-85.622772, 41.951739] + }, + "n6": { + "id": "n6", + "loc": [-85.624908, 41.95064] + }, + "n7": { + "id": "n7", + "loc": [-85.622424, 41.939225] + }, + "n8": { + "id": "n8", + "loc": [-85.635241, 41.941948] + }, + "n9": { + "id": "n9", + "loc": [-85.635159, 41.941926] + }, + "n10": { + "id": "n10", + "loc": [-85.634733, 41.941588] + }, + "n11": { + "id": "n11", + "loc": [-85.634602, 41.941523] + }, + "n12": { + "id": "n12", + "loc": [-85.63359, 41.941093] + }, + "n13": { + "id": "n13", + "loc": [-85.633643, 41.941143] + }, + "n14": { + "id": "n14", + "loc": [-85.633643, 41.940122] + }, + "n15": { + "id": "n15", + "loc": [-85.633477, 41.940187] + }, + "n16": { + "id": "n16", + "loc": [-85.63341, 41.94032] + }, + "n17": { + "id": "n17", + "loc": [-85.633478, 41.94081] + }, + "n18": { + "id": "n18", + "loc": [-85.63345, 41.94071] + }, + "n19": { + "id": "n19", + "loc": [-85.633009, 41.942229] + }, + "n20": { + "id": "n20", + "loc": [-85.633013, 41.941438] + }, + "n21": { + "id": "n21", + "loc": [-85.634127, 41.942234] + }, + "n22": { + "id": "n22", + "loc": [-85.633531, 41.942357] + }, + "n23": { + "id": "n23", + "loc": [-85.633504, 41.942418] + }, + "n24": { + "id": "n24", + "loc": [-85.634346, 41.942792] + }, + "n25": { + "id": "n25", + "loc": [-85.634333, 41.942809] + }, + "n26": { + "id": "n26", + "loc": [-85.634346, 41.942744] + }, + "n27": { + "id": "n27", + "loc": [-85.634123, 41.943184] + }, + "n28": { + "id": "n28", + "loc": [-85.63821, 41.944308] + }, + "n29": { + "id": "n29", + "loc": [-85.637963, 41.944263] + }, + "n30": { + "id": "n30", + "loc": [-85.637882, 41.944205] + }, + "n31": { + "id": "n31", + "loc": [-85.63827, 41.944203] + }, + "n32": { + "id": "n32", + "loc": [-85.638273, 41.944246] + }, + "n33": { + "id": "n33", + "loc": [-85.638257, 41.944188] + }, + "n34": { + "id": "n34", + "loc": [-85.638176, 41.944312] + }, + "n35": { + "id": "n35", + "loc": [-85.637928, 41.944249] + }, + "n36": { + "id": "n36", + "loc": [-85.637894, 41.945551] + }, + "n37": { + "id": "n37", + "loc": [-85.637611, 41.945383] + }, + "n38": { + "id": "n38", + "loc": [-85.641974, 41.947577] + }, + "n39": { + "id": "n39", + "loc": [-85.638967, 41.948541] + }, + "n40": { + "id": "n40", + "loc": [-85.638786, 41.948323] + }, + "w6": { + "tags": { + "highway": "service" + }, + "id": "w6", + "nodes": ["n2139832710", "n185988971"] } } } From b7f9308e7f7828d0f52b07838586710118847de4 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Apr 2017 13:53:22 -0400 Subject: [PATCH 48/91] Add data for Buildings, footpaths etc, to intro_graph --- data/intro_graph.json | 5901 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 5312 insertions(+), 589 deletions(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index e6883ff63..863c71aae 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -2,7 +2,7 @@ "dataIntroGraph": { "n185964961": { "id": "n185964961", - "loc": [-85.640659, 41.942601] + "loc": [-85.640667, 41.942595] }, "n185964962": { "id": "n185964962", @@ -26,7 +26,7 @@ }, "n185973660": { "id": "n185973660", - "loc": [-85.640645, 41.941339] + "loc": [-85.640639, 41.941326] }, "n185973659": { "id": "n185973659", @@ -34,7 +34,7 @@ }, "n185974479": { "id": "n185974479", - "loc": [-85.639402, 41.941344] + "loc": [-85.639402, 41.941336] }, "n185974481": { "id": "n185974481", @@ -310,59 +310,59 @@ }, "n2189046053": { "id": "n2189046053", - "loc": [-85.638599, 41.942412] + "loc": [-85.638612, 41.942408] }, "n2189046054": { "id": "n2189046054", - "loc": [-85.638599, 41.942331] + "loc": [-85.638612, 41.942327] }, "n2189046055": { "id": "n2189046055", - "loc": [-85.638762, 41.942331] + "loc": [-85.638775, 41.942327] }, "n2189046056": { "id": "n2189046056", - "loc": [-85.638762, 41.942303] + "loc": [-85.638775, 41.942299] }, "n2189046058": { "id": "n2189046058", - "loc": [-85.638822, 41.942302] + "loc": [-85.638835, 41.942298] }, "n2189046059": { "id": "n2189046059", - "loc": [-85.638822, 41.942411] + "loc": [-85.638835, 41.942407] }, "n2189046060": { "id": "n2189046060", - "loc": [-85.63911, 41.942449] + "loc": [-85.639116, 41.942444] }, "n2189046061": { "id": "n2189046061", - "loc": [-85.639111, 41.942367] + "loc": [-85.639114, 41.942362] }, "n2189046063": { "id": "n2189046063", - "loc": [-85.639291, 41.942368] + "loc": [-85.639294, 41.94236] }, "n2189046065": { "id": "n2189046065", - "loc": [-85.63929, 41.94245] + "loc": [-85.639296, 41.942442] }, "n2189046067": { "id": "n2189046067", - "loc": [-85.639793, 41.942388] + "loc": [-85.639808, 41.942385] }, "n2189046069": { "id": "n2189046069", - "loc": [-85.63979, 41.942298] + "loc": [-85.639805, 41.942285] }, "n2189046070": { "id": "n2189046070", - "loc": [-85.63997, 41.942295] + "loc": [-85.639988, 41.942283] }, "n2189046072": { "id": "n2189046072", - "loc": [-85.639973, 41.942384] + "loc": [-85.63999, 41.942383] }, "n2189046074": { "id": "n2189046074", @@ -786,7 +786,7 @@ }, "n185948706": { "id": "n185948706", - "loc": [-85.636944, 41.940106] + "loc": [-85.636968, 41.940108] }, "n185949348": { "id": "n185949348", @@ -806,11 +806,11 @@ }, "n185958670": { "id": "n185958670", - "loc": [-85.637255, 41.940104] + "loc": [-85.637255, 41.940106] }, "n185958672": { "id": "n185958672", - "loc": [-85.636996, 41.941355] + "loc": [-85.637002, 41.941355] }, "n185960207": { "id": "n185960207", @@ -826,19 +826,15 @@ }, "n185964965": { "id": "n185964965", - "loc": [-85.637022, 41.942622] + "loc": [-85.637039, 41.942624] }, "n185964967": { "id": "n185964967", - "loc": [-85.636371, 41.942661] + "loc": [-85.636369, 41.94266] }, "n185964968": { "id": "n185964968", - "loc": [-85.635799, 41.942775] - }, - "n185964969": { - "id": "n185964969", - "loc": [-85.635541, 41.942847] + "loc": [-85.63582, 41.942771] }, "n185964970": { "id": "n185964970", @@ -914,7 +910,7 @@ }, "n185974477": { "id": "n185974477", - "loc": [-85.638206, 41.941331] + "loc": [-85.638206, 41.941345] }, "n185975928": { "id": "n185975928", @@ -972,13 +968,9 @@ "id": "n185985825", "loc": [-85.643219, 41.950829] }, - "n1475301385": { - "id": "n1475301385", - "loc": [-85.636061, 41.942704] - }, "n1475301397": { "id": "n1475301397", - "loc": [-85.636665, 41.942633] + "loc": [-85.636731, 41.94263] }, "n2139795830": { "id": "n2139795830", @@ -994,14 +986,14 @@ }, "n2139858932": { "id": "n2139858932", - "loc": [-85.635172, 41.942956], + "loc": [-85.63518, 41.942955], "tags": { "highway": "crossing" } }, "n2140019000": { "id": "n2140019000", - "loc": [-85.635993, 41.942722] + "loc": [-85.636152, 41.942695] }, "n2165942817": { "id": "n2165942817", @@ -1152,15 +1144,21 @@ "n185964959", "n185964960", "n185964961", + "n845", "n185964962", + "n816", "n185964963", + "n152", + "n149", "n185964965", "n1475301397", + "n878", "n185964967", - "n1475301385", "n2140019000", + "n42", "n185964968", - "n185964969", + "n61", + "n60", "n2139858932", "n185964970" ] @@ -1432,7 +1430,7 @@ "highway": "residential", "name": "South Hook Avenue" }, - "nodes": ["n185981482", "n185974479", "n185964962"] + "nodes": ["n185981482", "n185974479", "n858", "n185964962"] }, "w17966325": { "id": "w17966325", @@ -2078,7 +2076,7 @@ }, "n367813436": { "id": "n367813436", - "loc": [-85.636052, 41.943055], + "loc": [-85.63607, 41.943005], "tags": { "amenity": "fire_station", "name": "Three Rivers Fire Department" @@ -2086,7 +2084,7 @@ }, "n185948710": { "id": "n185948710", - "loc": [-85.637018, 41.941135] + "loc": [-85.637, 41.941236] }, "n185954691": { "id": "n185954691", @@ -2110,7 +2108,7 @@ }, "n185964971": { "id": "n185964971", - "loc": [-85.634681, 41.943102] + "loc": [-85.634692, 41.943098] }, "n1819805854": { "id": "n1819805854", @@ -2138,7 +2136,7 @@ }, "n1819848930": { "id": "n1819848930", - "loc": [-85.633868, 41.943125] + "loc": [-85.633974, 41.943219] }, "n1819858505": { "id": "n1819858505", @@ -2162,11 +2160,11 @@ }, "n1819858512": { "id": "n1819858512", - "loc": [-85.63433, 41.942303] + "loc": [-85.63436, 41.942358] }, "n1819858514": { "id": "n1819858514", - "loc": [-85.634324, 41.942207] + "loc": [-85.634327, 41.942247] }, "n1819858521": { "id": "n1819858521", @@ -2230,11 +2228,11 @@ }, "n2130304147": { "id": "n2130304147", - "loc": [-85.635123, 41.942153] + "loc": [-85.635129, 41.942144] }, "n2130304148": { "id": "n2130304148", - "loc": [-85.635526, 41.942155] + "loc": [-85.635531, 41.942143] }, "n2130304149": { "id": "n2130304149", @@ -2250,7 +2248,7 @@ }, "n2138493807": { "id": "n2138493807", - "loc": [-85.635092, 41.941522] + "loc": [-85.635087, 41.941508] }, "n2138493808": { "id": "n2138493808", @@ -2274,7 +2272,7 @@ }, "n2138493813": { "id": "n2138493813", - "loc": [-85.635562, 41.940978] + "loc": [-85.635555, 41.940976] }, "n2138493814": { "id": "n2138493814", @@ -2282,11 +2280,11 @@ }, "n2138493815": { "id": "n2138493815", - "loc": [-85.635383, 41.940922] + "loc": [-85.635392, 41.940922] }, "n2138493816": { "id": "n2138493816", - "loc": [-85.635299, 41.940966] + "loc": [-85.635276, 41.940974] }, "n2138493817": { "id": "n2138493817", @@ -2306,15 +2304,15 @@ }, "n2138493821": { "id": "n2138493821", - "loc": [-85.635022, 41.941667] + "loc": [-85.635028, 41.941659] }, "n2138493822": { "id": "n2138493822", - "loc": [-85.635124, 41.941631] + "loc": [-85.635118, 41.941621] }, "n2138493823": { "id": "n2138493823", - "loc": [-85.635086, 41.941562] + "loc": [-85.635085, 41.941558] }, "n2138493824": { "id": "n2138493824", @@ -2430,39 +2428,35 @@ }, "n2139858927": { "id": "n2139858927", - "loc": [-85.634578, 41.942222] + "loc": [-85.63457, 41.942202] }, "n2139858928": { "id": "n2139858928", - "loc": [-85.634877, 41.942781] + "loc": [-85.634869, 41.942769] }, "n2139858929": { "id": "n2139858929", - "loc": [-85.634949, 41.942799] - }, - "n2139858930": { - "id": "n2139858930", - "loc": [-85.635041, 41.942787] + "loc": [-85.634943, 41.942792] }, "n2139858931": { "id": "n2139858931", - "loc": [-85.635125, 41.942859] + "loc": [-85.635139, 41.942882] }, "n2139858978": { "id": "n2139858978", - "loc": [-85.634966, 41.943148] + "loc": [-85.634962, 41.943161] }, "n2139858979": { "id": "n2139858979", - "loc": [-85.635008, 41.943129] + "loc": [-85.635002, 41.943131] }, "n2139858980": { "id": "n2139858980", - "loc": [-85.634997, 41.9431] + "loc": [-85.635005, 41.943091] }, "n2139858981": { "id": "n2139858981", - "loc": [-85.635216, 41.943035] + "loc": [-85.635216, 41.943033] }, "n2139858982": { "id": "n2139858982", @@ -2586,7 +2580,7 @@ }, "n2139870407": { "id": "n2139870407", - "loc": [-85.634091, 41.943141] + "loc": [-85.634059, 41.943094] }, "n2139870408": { "id": "n2139870408", @@ -2682,19 +2676,19 @@ }, "n2139870431": { "id": "n2139870431", - "loc": [-85.634963, 41.942251] + "loc": [-85.634997, 41.942251] }, "n2139870432": { "id": "n2139870432", - "loc": [-85.634979, 41.942181] + "loc": [-85.635013, 41.942173] }, "n2139870433": { "id": "n2139870433", - "loc": [-85.634885, 41.942168] + "loc": [-85.634876, 41.942157] }, "n2139870434": { "id": "n2139870434", - "loc": [-85.634869, 41.942238] + "loc": [-85.634859, 41.942235] }, "n2139870435": { "id": "n2139870435", @@ -2754,7 +2748,7 @@ }, "n2139870449": { "id": "n2139870449", - "loc": [-85.634916, 41.942255] + "loc": [-85.634917, 41.942242] }, "n2139870450": { "id": "n2139870450", @@ -2830,27 +2824,27 @@ }, "n2139989353": { "id": "n2139989353", - "loc": [-85.63572, 41.940801] + "loc": [-85.635686, 41.940829] }, "n2139989355": { "id": "n2139989355", - "loc": [-85.635723, 41.942709] + "loc": [-85.635712, 41.942681] }, "n2139989357": { "id": "n2139989357", - "loc": [-85.633712, 41.942126] + "loc": [-85.633721, 41.942118] }, "n2139989359": { "id": "n2139989359", - "loc": [-85.633691, 41.942065] + "loc": [-85.633698, 41.942057] }, "n2139989360": { "id": "n2139989360", - "loc": [-85.633582, 41.942087] + "loc": [-85.633591, 41.942079] }, "n2139989362": { "id": "n2139989362", - "loc": [-85.633606, 41.942149] + "loc": [-85.633614, 41.94214] }, "n2139989364": { "id": "n2139989364", @@ -2882,7 +2876,7 @@ }, "n2140018997": { "id": "n2140018997", - "loc": [-85.636459, 41.942986], + "loc": [-85.636433, 41.942959], "tags": { "amenity": "townhall", "name": "Three Rivers City Hall" @@ -2890,75 +2884,75 @@ }, "n2140018998": { "id": "n2140018998", - "loc": [-85.637032, 41.942792] + "loc": [-85.637039, 41.942789] }, "n2140018999": { "id": "n2140018999", - "loc": [-85.636069, 41.942781] + "loc": [-85.636333, 41.94279] }, "n2199856288": { "id": "n2199856288", - "loc": [-85.634497, 41.940731] + "loc": [-85.634484, 41.940726] }, "n2199856289": { "id": "n2199856289", - "loc": [-85.634492, 41.940604] + "loc": [-85.634483, 41.940603] }, "n2199856290": { "id": "n2199856290", - "loc": [-85.634891, 41.9406] + "loc": [-85.634908, 41.940601] }, "n2199856291": { "id": "n2199856291", - "loc": [-85.634889, 41.940529] + "loc": [-85.634908, 41.94053] }, "n2199856292": { "id": "n2199856292", - "loc": [-85.634917, 41.94053] + "loc": [-85.634934, 41.94053] }, "n2199856293": { "id": "n2199856293", - "loc": [-85.634917, 41.940496] + "loc": [-85.634934, 41.940496] }, "n2199856294": { "id": "n2199856294", - "loc": [-85.635022, 41.940496] + "loc": [-85.63504, 41.940495] }, "n2199856295": { "id": "n2199856295", - "loc": [-85.635025, 41.94053] + "loc": [-85.63504, 41.940531] }, "n2199856296": { "id": "n2199856296", - "loc": [-85.635054, 41.940529] + "loc": [-85.635068, 41.940531] }, "n2199856297": { "id": "n2199856297", - "loc": [-85.63506, 41.94079] + "loc": [-85.635071, 41.940794] }, "n2199856298": { "id": "n2199856298", - "loc": [-85.63517, 41.940791] + "loc": [-85.635183, 41.940793] }, "n2199856299": { "id": "n2199856299", - "loc": [-85.635169, 41.940917] + "loc": [-85.635185, 41.940916] }, "n2199856300": { "id": "n2199856300", - "loc": [-85.634789, 41.940914] + "loc": [-85.634799, 41.940919] }, "n2199856301": { "id": "n2199856301", - "loc": [-85.634792, 41.94079] + "loc": [-85.634798, 41.940798] }, "n2199856302": { "id": "n2199856302", - "loc": [-85.634894, 41.940789] + "loc": [-85.634925, 41.940797] }, "n2199856303": { "id": "n2199856303", - "loc": [-85.634893, 41.940728] + "loc": [-85.634924, 41.940724] }, "n185951869": { "id": "n185951869", @@ -2990,7 +2984,7 @@ }, "n185964972": { "id": "n185964972", - "loc": [-85.63419, 41.943273] + "loc": [-85.634175, 41.943274] }, "n185971361": { "id": "n185971361", @@ -3220,14 +3214,6 @@ "id": "n185985225", "loc": [-85.637841, 41.943833] }, - "n185985227": { - "id": "n185985227", - "loc": [-85.637601, 41.943789] - }, - "n185985229": { - "id": "n185985229", - "loc": [-85.637449, 41.943754] - }, "n185985231": { "id": "n185985231", "loc": [-85.637342, 41.943734] @@ -3356,7 +3342,7 @@ }, "n1819805666": { "id": "n1819805666", - "loc": [-85.631475, 41.944266] + "loc": [-85.631525, 41.944303] }, "n1819805669": { "id": "n1819805669", @@ -3480,7 +3466,7 @@ }, "n1819805798": { "id": "n1819805798", - "loc": [-85.63125, 41.944306] + "loc": [-85.631259, 41.944349] }, "n1819805802": { "id": "n1819805802", @@ -3528,7 +3514,7 @@ }, "n1819805852": { "id": "n1819805852", - "loc": [-85.631379, 41.943915] + "loc": [-85.63139, 41.943941] }, "n1819805858": { "id": "n1819805858", @@ -3724,7 +3710,7 @@ }, "n1819849057": { "id": "n1819849057", - "loc": [-85.631355, 41.944288] + "loc": [-85.631385, 41.94433] }, "n1819849058": { "id": "n1819849058", @@ -3868,7 +3854,7 @@ }, "n1819858503": { "id": "n1819858503", - "loc": [-85.635007, 41.944034] + "loc": [-85.635005, 41.944041] }, "n1819858513": { "id": "n1819858513", @@ -3888,7 +3874,7 @@ }, "n1819858531": { "id": "n1819858531", - "loc": [-85.635038, 41.943827] + "loc": [-85.635026, 41.943829] }, "n1820937542": { "id": "n1820937542", @@ -4175,23 +4161,23 @@ }, "n2139858933": { "id": "n2139858933", - "loc": [-85.635312, 41.943265] + "loc": [-85.635295, 41.943225] }, "n2139858934": { "id": "n2139858934", - "loc": [-85.635395, 41.9433] + "loc": [-85.635393, 41.943293] }, "n2139858935": { "id": "n2139858935", - "loc": [-85.63565, 41.943326] + "loc": [-85.635645, 41.94332] }, "n2139858936": { "id": "n2139858936", - "loc": [-85.636313, 41.943337] + "loc": [-85.63629, 41.943328] }, "n2139858937": { "id": "n2139858937", - "loc": [-85.636547, 41.943378] + "loc": [-85.636554, 41.943372] }, "n2139858938": { "id": "n2139858938", @@ -4203,11 +4189,11 @@ }, "n2139858940": { "id": "n2139858940", - "loc": [-85.637237, 41.943773] + "loc": [-85.637268, 41.943773] }, "n2139858941": { "id": "n2139858941", - "loc": [-85.637476, 41.943817] + "loc": [-85.637483, 41.943821] }, "n2139858942": { "id": "n2139858942", @@ -4215,11 +4201,11 @@ }, "n2139858943": { "id": "n2139858943", - "loc": [-85.63775, 41.944138] + "loc": [-85.637752, 41.944114] }, "n2139858944": { "id": "n2139858944", - "loc": [-85.63842, 41.944314] + "loc": [-85.638399, 41.944308] }, "n2139858945": { "id": "n2139858945", @@ -4235,7 +4221,7 @@ }, "n2139858948": { "id": "n2139858948", - "loc": [-85.638709, 41.944798] + "loc": [-85.638715, 41.944809] }, "n2139858949": { "id": "n2139858949", @@ -4243,11 +4229,11 @@ }, "n2139858950": { "id": "n2139858950", - "loc": [-85.638777, 41.945145] + "loc": [-85.638773, 41.945136] }, "n2139858951": { "id": "n2139858951", - "loc": [-85.638709, 41.945263] + "loc": [-85.638705, 41.945251] }, "n2139858964": { "id": "n2139858964", @@ -4255,7 +4241,7 @@ }, "n2139858966": { "id": "n2139858966", - "loc": [-85.638472, 41.944361] + "loc": [-85.638474, 41.944352] }, "n2139858967": { "id": "n2139858967", @@ -4275,15 +4261,15 @@ }, "n2139858971": { "id": "n2139858971", - "loc": [-85.635156, 41.943891] + "loc": [-85.635192, 41.943876] }, "n2139858972": { "id": "n2139858972", - "loc": [-85.635138, 41.943888] + "loc": [-85.635129, 41.943857] }, "n2139858973": { "id": "n2139858973", - "loc": [-85.635151, 41.943803] + "loc": [-85.635122, 41.943764] }, "n2139858974": { "id": "n2139858974", @@ -4299,7 +4285,7 @@ }, "n2139858977": { "id": "n2139858977", - "loc": [-85.634964, 41.943205] + "loc": [-85.634972, 41.943197] }, "n2139858986": { "id": "n2139858986", @@ -4319,11 +4305,11 @@ }, "n2139870406": { "id": "n2139870406", - "loc": [-85.634226, 41.943261] + "loc": [-85.634216, 41.943255] }, "n2139877106": { "id": "n2139877106", - "loc": [-85.634632, 41.943875] + "loc": [-85.634559, 41.943791] }, "n2139982399": { "id": "n2139982399", @@ -4422,7 +4408,7 @@ }, "n2140006366": { "id": "n2140006366", - "loc": [-85.634346, 41.944157] + "loc": [-85.634357, 41.944153] }, "n2140006395": { "id": "n2140006395", @@ -4457,7 +4443,7 @@ "tags": { "highway": "footway" }, - "nodes": ["n2139870442", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n2139870452"] + "nodes": ["n2139870442", "n2139870457"] }, "w17963021": { "id": "w17963021", @@ -4473,7 +4459,7 @@ "building": "yes", "shelter_type": "picnic_shelter" }, - "nodes": ["n2139870431", "n2139870432", "n2139870433", "n2139870434", "n2139870431"] + "nodes": ["n2139870431", "n2139870432", "n739", "n2139870433", "n2139870434", "n2139870449", "n2139870431"] }, "w209816575": { "id": "w209816575", @@ -4577,32 +4563,54 @@ "n2139858927", "n2139858982", "n2139858928", + "n480", "n2139858929", - "n2139858930", + "n479", + "n478", + "n477", "n2139858931", "n2139858932", "n2139858981", "n2139858933", + "n619", + "n618", "n2139858934", "n2139858935", "n2139858936", + "n617", "n2139858937", + "n616", "n2139858938", + "n829", "n2139858939", + "n827", + "n828", "n2139858940", + "n830", "n2139858941", + "n826", "n2139858942", + "n831", "n2139858943", + "n832", + "n835", + "n834", "n2140006437", "n2139858964", "n2139858944", + "n833", "n2139858966", "n2139858945", + "n836", "n2139858946", + "n837", "n2139858947", + "n838", "n2139858948", "n2139858949", + "n839", "n2139858950", + "n840", "n2139858951" ] }, @@ -4625,6 +4633,7 @@ "n12", "n13", "n185954690", + "n485", "n185954691", "n11", "n10", @@ -4635,6 +4644,7 @@ "n9", "n8", "n185954693", + "n295", "n185954695" ] }, @@ -4644,7 +4654,7 @@ "highway": "residential", "name": "South Andrews Street" }, - "nodes": ["n185981999", "n185974477", "n185964963"] + "nodes": ["n185981999", "n185974477", "n865", "n157", "n185964963"] }, "w203974071": { "id": "w203974071", @@ -4680,7 +4690,9 @@ "n1819858508", "n1819858512", "n1819858514", + "n484", "n1819858528", + "n483", "n1819858509", "n1819858511", "n1819858507", @@ -4810,14 +4822,15 @@ "n185985223", "n185985225", "n2140006431", - "n185985227", - "n185985229", "n185985231", "n185985233", "n185985235", "n185985238", "n185985240", + "n751", + "n43", "n2140018998", + "n873", "n185964965" ] }, @@ -4829,7 +4842,7 @@ "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964971", "n2139870406", "n185964972"] + "nodes": ["n185964971", "n212", "n436", "n2139870406", "n185964972"] }, "w17966400": { "id": "w17966400", @@ -4837,7 +4850,7 @@ "highway": "tertiary", "name": "South Constantine Street" }, - "nodes": ["n185958672", "n185964965"] + "nodes": ["n185958672", "n611", "n144", "n602", "n185964965"] }, "w203974066": { "id": "w203974066", @@ -4919,7 +4932,10 @@ "n185972897", "n185972899", "n2130304159", + "n471", + "n324", "n1475284023", + "n332", "n185972903" ] }, @@ -4948,7 +4964,7 @@ "highway": "residential", "name": "Spring Street" }, - "nodes": ["n185971361", "n185971364", "n185971368", "n185954695", "n185964968"] + "nodes": ["n185971361", "n185971364", "n185971368", "n308", "n498", "n509", "n246", "n241", "n185954695", "n293", "n185964968"] }, "w203974070": { "id": "w203974070", @@ -4964,7 +4980,7 @@ "tags": { "highway": "service" }, - "nodes": ["n2140018998", "n2140018999", "n2140019000"] + "nodes": ["n2140018998", "n45", "n2140018999", "n877", "n41", "n2140019000"] }, "w203974062": { "id": "w203974062", @@ -5023,38 +5039,14 @@ "tags": { "highway": "path" }, - "nodes": ["n2139858982", "n2139858983", "n2139858984", "n2139858985", "n2139858927"] + "nodes": ["n2139858982", "n2139858983", "n2139858984", "n481", "n2139858985", "n482", "n2139858927"] }, "w203974065": { "id": "w203974065", "tags": { "highway": "service" }, - "nodes": [ - "n2139870406", - "n27", - "n2139870407", - "n2139870408", - "n2139870417", - "n2139870409", - "n25", - "n24", - "n2139870410", - "n26", - "n2139870411", - "n21", - "n2139870412", - "n2139870426", - "n2139870413", - "n22", - "n2139870414", - "n23", - "n2139870415", - "n2139870419", - "n2139870416", - "n2139870421", - "n2139870408" - ] + "nodes": ["n2139870406", "n27", "n330", "n2139870407", "n2139870408"] }, "w203972940": { "id": "w203972940", @@ -5068,7 +5060,10 @@ "n2139858968", "n2139858969", "n2139858970", + "n454", + "n455", "n2139858971", + "n456", "n2139858972", "n2139858973", "n2139858974", @@ -5076,9 +5071,11 @@ "n2139858976", "n2139858977", "n2139858978", + "n621", + "n620", "n2139858979", - "n2139858980", - "n2139858981" + "n622", + "n2139858980" ] }, "w203974072": { @@ -5114,19 +5111,30 @@ "n2138493810", "n2138493811", "n2138493812", + "n748", "n2138493813", + "n747", "n2138493814", + "n749", "n2138493815", + "n750", "n2138493816", "n2138493825", "n2138493817", "n2138493824", "n2138493818", + "n746", "n2138493819", + "n745", "n2138493820", + "n744", "n2138493821", + "n743", + "n742", "n2138493822", + "n741", "n2138493823", + "n740", "n2138493807" ] }, @@ -5186,7 +5194,7 @@ "highway": "residential", "name": "North Andrews Street" }, - "nodes": ["n185964963", "n185985217"] + "nodes": ["n185964963", "n876", "n821", "n185985217"] }, "w17964497": { "id": "w17964497", @@ -5768,23 +5776,31 @@ }, "n185963454": { "id": "n185963454", - "loc": [-85.633686, 41.946072] + "loc": [-85.633676, 41.946036] }, "n185963455": { "id": "n185963455", - "loc": [-85.633815, 41.946131] + "loc": [-85.633736, 41.946078] }, "n185963456": { "id": "n185963456", - "loc": [-85.633951, 41.946174] + "loc": [-85.633997, 41.946185] }, "n185978375": { "id": "n185978375", - "loc": [-85.634427, 41.945612] + "loc": [-85.634448, 41.945626], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "signal" + } }, "n185978377": { "id": "n185978377", - "loc": [-85.634544, 41.945725] + "loc": [-85.634561, 41.945732], + "tags": { + "highway": "crossing", + "crossing": "zebra" + } }, "n185978379": { "id": "n185978379", @@ -5792,35 +5808,35 @@ }, "n185978381": { "id": "n185978381", - "loc": [-85.634618, 41.945837] + "loc": [-85.634607, 41.945815] }, "n185978383": { "id": "n185978383", - "loc": [-85.634629, 41.945893] + "loc": [-85.634614, 41.945864] }, "n185984011": { "id": "n185984011", - "loc": [-85.636058, 41.946201] + "loc": [-85.636066, 41.946185] }, "n185984013": { "id": "n185984013", - "loc": [-85.636112, 41.946366] + "loc": [-85.636128, 41.946352] }, "n185984015": { "id": "n185984015", - "loc": [-85.636143, 41.946551] + "loc": [-85.636142, 41.946452] }, "n185988969": { "id": "n185988969", - "loc": [-85.635374, 41.945325] + "loc": [-85.635327, 41.945292] }, "n185988971": { "id": "n185988971", - "loc": [-85.635643, 41.945585] + "loc": [-85.635648, 41.94558] }, "n185988972": { "id": "n185988972", - "loc": [-85.635853, 41.94586] + "loc": [-85.635769, 41.945729] }, "n1475283992": { "id": "n1475283992", @@ -5856,15 +5872,15 @@ }, "n185964976": { "id": "n185964976", - "loc": [-85.633923, 41.943416] + "loc": [-85.633924, 41.943412] }, "n185964980": { "id": "n185964980", - "loc": [-85.633366, 41.943729] + "loc": [-85.633366, 41.943724] }, "n185978388": { "id": "n185978388", - "loc": [-85.634636, 41.946067] + "loc": [-85.634617, 41.946057] }, "n1819858504": { "id": "n1819858504", @@ -5884,19 +5900,19 @@ }, "n1819858527": { "id": "n1819858527", - "loc": [-85.63342, 41.945749] + "loc": [-85.633389, 41.945735] }, "n185963452": { "id": "n185963452", - "loc": [-85.633564, 41.945852] + "loc": [-85.633536, 41.94585] }, "n185963453": { "id": "n185963453", - "loc": [-85.633615, 41.94598] + "loc": [-85.63363, 41.945993] }, "n185963451": { "id": "n185963451", - "loc": [-85.633289, 41.945687] + "loc": [-85.633268, 41.94568] }, "n2130304152": { "id": "n2130304152", @@ -5916,15 +5932,15 @@ }, "n2130304156": { "id": "n2130304156", - "loc": [-85.634972, 41.944421] + "loc": [-85.634975, 41.944419] }, "n2130304157": { "id": "n2130304157", - "loc": [-85.63387, 41.943444] + "loc": [-85.633877, 41.943438] }, "n2130304158": { "id": "n2130304158", - "loc": [-85.635094, 41.945103] + "loc": [-85.63508, 41.945113] }, "n2130304160": { "id": "n2130304160", @@ -5948,107 +5964,91 @@ }, "n2139824683": { "id": "n2139824683", - "loc": [-85.633983, 41.944644] + "loc": [-85.634002, 41.944644] }, "n2139824689": { "id": "n2139824689", - "loc": [-85.634044, 41.944693] + "loc": [-85.63407, 41.944692] }, "n2139824702": { "id": "n2139824702", - "loc": [-85.634096, 41.944755] + "loc": [-85.634114, 41.944756] }, "n2139824705": { "id": "n2139824705", - "loc": [-85.633747, 41.944809] + "loc": [-85.633756, 41.94481] }, "n2139824707": { "id": "n2139824707", - "loc": [-85.63416, 41.944813] + "loc": [-85.634184, 41.944807] }, "n2139824710": { "id": "n2139824710", - "loc": [-85.634277, 41.944822] + "loc": [-85.634291, 41.944819] }, "n2139824712": { "id": "n2139824712", - "loc": [-85.634606, 41.944841] + "loc": [-85.634639, 41.944845] }, "n2139824713": { "id": "n2139824713", - "loc": [-85.633808, 41.944857] + "loc": [-85.63382, 41.944863] }, "n2139824714": { "id": "n2139824714", - "loc": [-85.634089, 41.944859] + "loc": [-85.63411, 41.944855] }, "n2139824716": { "id": "n2139824716", - "loc": [-85.634333, 41.944871] + "loc": [-85.63435, 41.944872] }, "n2139824717": { "id": "n2139824717", - "loc": [-85.634334, 41.944872] + "loc": [-85.63441, 41.944903] }, "n2139824720": { "id": "n2139824720", - "loc": [-85.633876, 41.944907] + "loc": [-85.633883, 41.944913] }, "n2139824721": { "id": "n2139824721", - "loc": [-85.634145, 41.944907] + "loc": [-85.634164, 41.944896] }, "n2139824724": { "id": "n2139824724", - "loc": [-85.633479, 41.944926] - }, - "n2139824726": { - "id": "n2139824726", - "loc": [-85.634712, 41.944933] + "loc": [-85.633487, 41.944926] }, "n2139824727": { "id": "n2139824727", - "loc": [-85.634717, 41.944942] - }, - "n2139824728": { - "id": "n2139824728", - "loc": [-85.634428, 41.944954] - }, - "n2139824729": { - "id": "n2139824729", - "loc": [-85.633934, 41.944957] + "loc": [-85.634736, 41.944929] }, "n2139824730": { "id": "n2139824730", - "loc": [-85.633918, 41.944968] + "loc": [-85.633944, 41.944965] }, "n2139824732": { "id": "n2139824732", - "loc": [-85.633547, 41.944989] + "loc": [-85.633555, 41.944983] }, "n2139824733": { "id": "n2139824733", - "loc": [-85.633974, 41.945016] + "loc": [-85.633995, 41.945013] }, "n2139824735": { "id": "n2139824735", - "loc": [-85.633603, 41.945042] + "loc": [-85.633614, 41.945037] }, "n2139824736": { "id": "n2139824736", - "loc": [-85.634832, 41.945043] + "loc": [-85.634848, 41.945031] }, "n2139824737": { "id": "n2139824737", - "loc": [-85.63403, 41.945065] + "loc": [-85.634049, 41.945061] }, "n2139824738": { "id": "n2139824738", - "loc": [-85.633661, 41.945095] - }, - "n2139824740": { - "id": "n2139824740", - "loc": [-85.633658, 41.945097] + "loc": [-85.633678, 41.945094] }, "n2139824744": { "id": "n2139824744", @@ -6056,31 +6056,23 @@ }, "n2139824745": { "id": "n2139824745", - "loc": [-85.633339, 41.945114] - }, - "n2139824746": { - "id": "n2139824746", - "loc": [-85.633713, 41.945134] + "loc": [-85.633357, 41.945103] }, "n2139824747": { "id": "n2139824747", - "loc": [-85.633702, 41.945137] + "loc": [-85.633728, 41.945136] }, "n2139824748": { "id": "n2139824748", - "loc": [-85.634124, 41.945147] + "loc": [-85.634146, 41.945148] }, "n2139824749": { "id": "n2139824749", - "loc": [-85.633395, 41.945166] - }, - "n2139824750": { - "id": "n2139824750", - "loc": [-85.633395, 41.945166] + "loc": [-85.633416, 41.945157] }, "n2139824751": { "id": "n2139824751", - "loc": [-85.634626, 41.945172] + "loc": [-85.634625, 41.945172] }, "n2139824752": { "id": "n2139824752", @@ -6090,117 +6082,81 @@ "id": "n2139824753", "loc": [-85.63469, 41.945185] }, - "n2139824754": { - "id": "n2139824754", - "loc": [-85.634661, 41.945203] - }, "n2139824755": { "id": "n2139824755", - "loc": [-85.634657, 41.945206] - }, - "n2139824756": { - "id": "n2139824756", - "loc": [-85.634561, 41.945213] + "loc": [-85.634661, 41.945203] }, "n2139824757": { "id": "n2139824757", - "loc": [-85.633453, 41.945219] + "loc": [-85.63348, 41.945214] }, "n2139824758": { "id": "n2139824758", - "loc": [-85.633551, 41.945228] + "loc": [-85.633584, 41.945217] }, "n2139824759": { "id": "n2139824759", "loc": [-85.634742, 41.945231] }, - "n2139824760": { - "id": "n2139824760", - "loc": [-85.634231, 41.945239] - }, "n2139824761": { "id": "n2139824761", - "loc": [-85.634232, 41.945245] + "loc": [-85.634251, 41.94525] }, "n2139824762": { "id": "n2139824762", - "loc": [-85.633497, 41.94526] - }, - "n2139824763": { - "id": "n2139824763", - "loc": [-85.63468, 41.945271] + "loc": [-85.633524, 41.945254] }, "n2139824764": { "id": "n2139824764", - "loc": [-85.634677, 41.945272] + "loc": [-85.63468, 41.945271] }, "n2139824765": { "id": "n2139824765", - "loc": [-85.633861, 41.945276] + "loc": [-85.633885, 41.945272] }, "n2139824766": { "id": "n2139824766", - "loc": [-85.634781, 41.945294] + "loc": [-85.634795, 41.945288] }, "n2139824767": { "id": "n2139824767", - "loc": [-85.634737, 41.945321] + "loc": [-85.634742, 41.94532] }, "n2139824768": { "id": "n2139824768", - "loc": [-85.633917, 41.94533] + "loc": [-85.633946, 41.945327] }, "n2139824769": { "id": "n2139824769", - "loc": [-85.634831, 41.945338] - }, - "n2139824770": { - "id": "n2139824770", - "loc": [-85.634707, 41.945341] - }, - "n2139824771": { - "id": "n2139824771", - "loc": [-85.634346, 41.945346] + "loc": [-85.634844, 41.945331] }, "n2139824772": { "id": "n2139824772", - "loc": [-85.634348, 41.945347] - }, - "n2139824773": { - "id": "n2139824773", - "loc": [-85.634805, 41.945354] + "loc": [-85.63435, 41.945349] }, "n2139824774": { "id": "n2139824774", - "loc": [-85.6337, 41.945369] + "loc": [-85.633733, 41.945357] }, "n2139824775": { "id": "n2139824775", - "loc": [-85.633971, 41.945382] - }, - "n2139824776": { - "id": "n2139824776", - "loc": [-85.633623, 41.945413] + "loc": [-85.633987, 41.945375] }, "n2139824777": { "id": "n2139824777", - "loc": [-85.634902, 41.945414] - }, - "n2139824778": { - "id": "n2139824778", - "loc": [-85.634885, 41.945425] + "loc": [-85.634911, 41.945419] }, "n2139824779": { "id": "n2139824779", - "loc": [-85.634029, 41.945437] + "loc": [-85.634049, 41.945431] }, "n2139824780": { "id": "n2139824780", - "loc": [-85.633696, 41.945457] + "loc": [-85.633705, 41.945461] }, "n2139824781": { "id": "n2139824781", - "loc": [-85.633679, 41.945467] + "loc": [-85.633642, 41.945408] }, "n2139824782": { "id": "n2139824782", @@ -6208,67 +6164,55 @@ }, "n2139824783": { "id": "n2139824783", - "loc": [-85.634085, 41.945492] + "loc": [-85.634106, 41.945484] }, "n2139824784": { "id": "n2139824784", - "loc": [-85.635004, 41.945503] + "loc": [-85.635008, 41.945505] }, "n2139824785": { "id": "n2139824785", - "loc": [-85.63375, 41.945509] - }, - "n2139824786": { - "id": "n2139824786", - "loc": [-85.63375, 41.945509] + "loc": [-85.633757, 41.945506] }, "n2139824787": { "id": "n2139824787", "loc": [-85.634542, 41.945519] }, - "n2139824788": { - "id": "n2139824788", - "loc": [-85.634146, 41.945537] - }, "n2139824789": { "id": "n2139824789", - "loc": [-85.634138, 41.945542] + "loc": [-85.634162, 41.945536] }, "n2139824790": { "id": "n2139824790", - "loc": [-85.633839, 41.945546] + "loc": [-85.633843, 41.945547] }, "n2139824791": { "id": "n2139824791", - "loc": [-85.634917, 41.945559] + "loc": [-85.634919, 41.94556] }, "n2139824792": { "id": "n2139824792", - "loc": [-85.633807, 41.945565] + "loc": [-85.633818, 41.945561] }, "n2139824793": { "id": "n2139824793", - "loc": [-85.634623, 41.945589] - }, - "n2139824794": { - "id": "n2139824794", - "loc": [-85.633898, 41.9456] + "loc": [-85.634638, 41.94559] }, "n2139824795": { "id": "n2139824795", - "loc": [-85.633896, 41.945601] + "loc": [-85.633901, 41.945598] }, "n2139824796": { "id": "n2139824796", - "loc": [-85.634248, 41.945635] + "loc": [-85.634257, 41.945626] }, "n2139824797": { "id": "n2139824797", - "loc": [-85.63395, 41.94565] + "loc": [-85.633967, 41.945652] }, "n2139824798": { "id": "n2139824798", - "loc": [-85.634724, 41.945679] + "loc": [-85.634735, 41.945676] }, "n2139824799": { "id": "n2139824799", @@ -6276,15 +6220,15 @@ }, "n2139824800": { "id": "n2139824800", - "loc": [-85.635287, 41.945706] + "loc": [-85.635296, 41.945703] }, "n2139824801": { "id": "n2139824801", - "loc": [-85.635075, 41.945707] + "loc": [-85.635112, 41.945703] }, "n2139824802": { "id": "n2139824802", - "loc": [-85.634775, 41.945725] + "loc": [-85.634782, 41.945729] }, "n2139824803": { "id": "n2139824803", @@ -6292,27 +6236,27 @@ }, "n2139824804": { "id": "n2139824804", - "loc": [-85.635288, 41.945761] + "loc": [-85.635296, 41.945757] }, "n2139824805": { "id": "n2139824805", - "loc": [-85.635294, 41.945761] + "loc": [-85.635314, 41.945757] }, "n2139824806": { "id": "n2139824806", - "loc": [-85.635076, 41.945762] + "loc": [-85.635112, 41.945761] }, "n2139824807": { "id": "n2139824807", - "loc": [-85.634819, 41.945764] + "loc": [-85.63484, 41.945778] }, "n2139824808": { "id": "n2139824808", - "loc": [-85.635296, 41.945943] + "loc": [-85.635314, 41.945938] }, "n2139824809": { "id": "n2139824809", - "loc": [-85.634821, 41.945946] + "loc": [-85.63484, 41.945922] }, "n2139832635": { "id": "n2139832635", @@ -6340,7 +6284,7 @@ }, "n2139832653": { "id": "n2139832653", - "loc": [-85.633364, 41.945629] + "loc": [-85.633376, 41.94563] }, "n2139832663": { "id": "n2139832663", @@ -6380,27 +6324,23 @@ }, "n2139832693": { "id": "n2139832693", - "loc": [-85.634355, 41.944327] + "loc": [-85.634374, 41.944327] }, "n2139832694": { "id": "n2139832694", - "loc": [-85.633634, 41.943709] + "loc": [-85.633648, 41.943697] }, "n2139832696": { "id": "n2139832696", - "loc": [-85.633532, 41.943771] - }, - "n2139832697": { - "id": "n2139832697", - "loc": [-85.633832, 41.944087] + "loc": [-85.633533, 41.943764] }, "n2139832698": { "id": "n2139832698", - "loc": [-85.634226, 41.944414] + "loc": [-85.634239, 41.944417] }, "n2139832700": { "id": "n2139832700", - "loc": [-85.634139, 41.944384] + "loc": [-85.634122, 41.944395] }, "n2139832701": { "id": "n2139832701", @@ -6416,11 +6356,11 @@ }, "n2139832704": { "id": "n2139832704", - "loc": [-85.634002, 41.943561] + "loc": [-85.634015, 41.943555] }, "n2139832706": { "id": "n2139832706", - "loc": [-85.63432, 41.943843] + "loc": [-85.63433, 41.943839] }, "n2139832708": { "id": "n2139832708", @@ -6428,11 +6368,11 @@ }, "n2139832709": { "id": "n2139832709", - "loc": [-85.635407, 41.946052] + "loc": [-85.635413, 41.946052] }, "n2139832710": { "id": "n2139832710", - "loc": [-85.635403, 41.945676] + "loc": [-85.635405, 41.94569] }, "n2139832711": { "id": "n2139832711", @@ -6444,7 +6384,7 @@ }, "n2139832713": { "id": "n2139832713", - "loc": [-85.635404, 41.945743] + "loc": [-85.635401, 41.945745] }, "n2139832714": { "id": "n2139832714", @@ -6456,7 +6396,7 @@ }, "n2139832716": { "id": "n2139832716", - "loc": [-85.633314, 41.943538] + "loc": [-85.633291, 41.943526] }, "n2139832717": { "id": "n2139832717", @@ -6488,15 +6428,15 @@ }, "n2139870373": { "id": "n2139870373", - "loc": [-85.635178, 41.943912] + "loc": [-85.635179, 41.943911] }, "n2139870374": { "id": "n2139870374", - "loc": [-85.635143, 41.943922] + "loc": [-85.635146, 41.943918] }, "n2139870375": { "id": "n2139870375", - "loc": [-85.634885, 41.943912] + "loc": [-85.634888, 41.943905] }, "n2139870376": { "id": "n2139870376", @@ -6508,7 +6448,7 @@ }, "n2139870378": { "id": "n2139870378", - "loc": [-85.634556, 41.944052] + "loc": [-85.634568, 41.94405] }, "n2140006403": { "id": "n2140006403", @@ -6604,23 +6544,23 @@ }, "n2168544780": { "id": "n2168544780", - "loc": [-85.633944, 41.945807] + "loc": [-85.633946, 41.945804] }, "n2168544781": { "id": "n2168544781", - "loc": [-85.634078, 41.945862] + "loc": [-85.634102, 41.945864] }, "n2168544782": { "id": "n2168544782", - "loc": [-85.633818, 41.945755] + "loc": [-85.633819, 41.945756] }, "n2168544783": { "id": "n2168544783", - "loc": [-85.633993, 41.945978] + "loc": [-85.634025, 41.945975] }, "n2168544784": { "id": "n2168544784", - "loc": [-85.633732, 41.94587] + "loc": [-85.633742, 41.945867] }, "n2168544785": { "id": "n2168544785", @@ -6628,11 +6568,11 @@ }, "n2168544786": { "id": "n2168544786", - "loc": [-85.633919, 41.94608] + "loc": [-85.633947, 41.946081] }, "n2168544787": { "id": "n2168544787", - "loc": [-85.633867, 41.945926] + "loc": [-85.633872, 41.945917] }, "n2168544788": { "id": "n2168544788", @@ -6644,99 +6584,95 @@ }, "n2168544790": { "id": "n2168544790", - "loc": [-85.634208, 41.94604] + "loc": [-85.634224, 41.946037] }, "n2168544791": { "id": "n2168544791", - "loc": [-85.634335, 41.94585] + "loc": [-85.634357, 41.945851] }, "n2168544792": { "id": "n2168544792", - "loc": [-85.634376, 41.945812] + "loc": [-85.634398, 41.945813] }, "n2168544793": { "id": "n2168544793", - "loc": [-85.634439, 41.945811] + "loc": [-85.634461, 41.945812] }, "n2168544795": { "id": "n2168544795", - "loc": [-85.634483, 41.945851] + "loc": [-85.634505, 41.945852] }, "n2168544797": { "id": "n2168544797", - "loc": [-85.634481, 41.945969] + "loc": [-85.634503, 41.94597] }, "n2168544798": { "id": "n2168544798", - "loc": [-85.63444, 41.94597] + "loc": [-85.634462, 41.945971] }, "n2168544799": { "id": "n2168544799", - "loc": [-85.634441, 41.946033] + "loc": [-85.634465, 41.946036] }, "n2168544800": { "id": "n2168544800", - "loc": [-85.634217, 41.94607] - }, - "n2168544801": { - "id": "n2168544801", - "loc": [-85.634216, 41.946039] + "loc": [-85.634235, 41.946072] }, "n2168544802": { "id": "n2168544802", - "loc": [-85.634425, 41.946035] + "loc": [-85.634447, 41.946036] }, "n2168544805": { "id": "n2168544805", - "loc": [-85.634426, 41.946051] + "loc": [-85.634448, 41.946052] }, "n2168544807": { "id": "n2168544807", - "loc": [-85.634472, 41.94605] + "loc": [-85.634494, 41.946051] }, "n2168544809": { "id": "n2168544809", - "loc": [-85.634475, 41.946143] + "loc": [-85.634497, 41.946144] }, "n2168544811": { "id": "n2168544811", - "loc": [-85.634431, 41.946143] + "loc": [-85.634453, 41.946144] }, "n2168544813": { "id": "n2168544813", - "loc": [-85.634432, 41.946159] + "loc": [-85.634454, 41.94616] }, "n2168544815": { "id": "n2168544815", - "loc": [-85.634371, 41.94616] + "loc": [-85.634393, 41.946161] }, "n2168544817": { "id": "n2168544817", - "loc": [-85.634372, 41.946179] + "loc": [-85.634394, 41.94618] }, "n2168544819": { "id": "n2168544819", - "loc": [-85.634323, 41.946179] + "loc": [-85.634345, 41.94618] }, "n2168544821": { "id": "n2168544821", - "loc": [-85.634322, 41.946161] + "loc": [-85.634344, 41.946162] }, "n2168544823": { "id": "n2168544823", - "loc": [-85.634248, 41.946162] + "loc": [-85.63427, 41.946163] }, "n2168544825": { "id": "n2168544825", - "loc": [-85.634244, 41.94607] + "loc": [-85.634266, 41.946071] }, "n2168544827": { "id": "n2168544827", - "loc": [-85.634138, 41.946163] + "loc": [-85.634148, 41.946163] }, "n2168544829": { "id": "n2168544829", - "loc": [-85.634202, 41.94607] + "loc": [-85.634213, 41.946072] }, "n2168544830": { "id": "n2168544830", @@ -6772,47 +6708,47 @@ }, "n2168544838": { "id": "n2168544838", - "loc": [-85.634168, 41.946417] + "loc": [-85.634176, 41.946415] }, "n2168544839": { "id": "n2168544839", - "loc": [-85.634171, 41.946341] + "loc": [-85.634179, 41.946339] }, "n2168544840": { "id": "n2168544840", - "loc": [-85.634447, 41.946347] + "loc": [-85.634455, 41.946345] }, "n2168544841": { "id": "n2168544841", - "loc": [-85.634444, 41.946424] + "loc": [-85.634452, 41.946422] }, "n2168544842": { "id": "n2168544842", - "loc": [-85.634362, 41.946423] + "loc": [-85.63437, 41.946421] }, "n2168544843": { "id": "n2168544843", - "loc": [-85.634359, 41.946499] + "loc": [-85.634367, 41.946497] }, "n2168544844": { "id": "n2168544844", - "loc": [-85.634281, 41.946497] + "loc": [-85.634289, 41.946495] }, "n2168544845": { "id": "n2168544845", - "loc": [-85.634283, 41.94645] + "loc": [-85.634291, 41.946448] }, "n2168544846": { "id": "n2168544846", - "loc": [-85.634261, 41.94645] + "loc": [-85.634269, 41.946448] }, "n2168544847": { "id": "n2168544847", - "loc": [-85.634262, 41.946419] + "loc": [-85.63427, 41.946417] }, "n2168544848": { "id": "n2168544848", - "loc": [-85.634841, 41.94634] + "loc": [-85.63484, 41.946328] }, "n2168544849": { "id": "n2168544849", @@ -6820,27 +6756,27 @@ }, "n2168544850": { "id": "n2168544850", - "loc": [-85.635119, 41.946184] + "loc": [-85.635148, 41.946186] }, "n2168544851": { "id": "n2168544851", - "loc": [-85.635119, 41.946211] + "loc": [-85.635148, 41.946216] }, "n2168544852": { "id": "n2168544852", - "loc": [-85.635192, 41.94621] + "loc": [-85.63521, 41.946216] }, "n2168544853": { "id": "n2168544853", - "loc": [-85.635194, 41.946351] + "loc": [-85.63521, 41.946348] }, "n2168544854": { "id": "n2168544854", - "loc": [-85.635105, 41.946352] + "loc": [-85.635154, 41.946348] }, "n2168544855": { "id": "n2168544855", - "loc": [-85.635105, 41.946337] + "loc": [-85.635153, 41.946327] }, "n2189153180": { "id": "n2189153180", @@ -6852,35 +6788,35 @@ }, "n2189153183": { "id": "n2189153183", - "loc": [-85.634811, 41.946547] + "loc": [-85.63481, 41.946543] }, "n2189153184": { "id": "n2189153184", - "loc": [-85.634811, 41.946457] + "loc": [-85.634809, 41.946459] }, "n2189153185": { "id": "n2189153185", - "loc": [-85.635143, 41.946455] + "loc": [-85.635154, 41.946458] }, "n2189153186": { "id": "n2189153186", - "loc": [-85.635144, 41.946545] + "loc": [-85.635155, 41.946554] }, "n2189153187": { "id": "n2189153187", - "loc": [-85.635008, 41.946546] + "loc": [-85.635022, 41.946547] }, "n2189153188": { "id": "n2189153188", - "loc": [-85.635008, 41.946572] + "loc": [-85.635022, 41.946573] }, "n2189153189": { "id": "n2189153189", - "loc": [-85.634896, 41.946573] + "loc": [-85.634909, 41.946574] }, "n2189153190": { "id": "n2189153190", - "loc": [-85.634896, 41.946546] + "loc": [-85.634909, 41.946561] }, "n2189153191": { "id": "n2189153191", @@ -6980,51 +6916,51 @@ }, "n2189153215": { "id": "n2189153215", - "loc": [-85.63463, 41.946838] + "loc": [-85.634649, 41.946841] }, "n2189153216": { "id": "n2189153216", - "loc": [-85.634303, 41.946845] + "loc": [-85.634331, 41.94684] }, "n2189153217": { "id": "n2189153217", - "loc": [-85.634201, 41.94683] + "loc": [-85.634183, 41.946809] }, "n2189153218": { "id": "n2189153218", - "loc": [-85.63367, 41.946592] + "loc": [-85.633699, 41.946607] }, "n2189153219": { "id": "n2189153219", - "loc": [-85.634466, 41.946664] + "loc": [-85.634487, 41.946664] }, "n2189153220": { "id": "n2189153220", - "loc": [-85.634464, 41.946601] + "loc": [-85.634486, 41.946598] }, "n2189153221": { "id": "n2189153221", - "loc": [-85.634228, 41.946607] + "loc": [-85.63423, 41.946599] }, "n2189153222": { "id": "n2189153222", - "loc": [-85.63423, 41.946659] + "loc": [-85.634231, 41.946662] }, "n2189153223": { "id": "n2189153223", - "loc": [-85.634284, 41.946658] + "loc": [-85.634284, 41.946662] }, "n2189153224": { "id": "n2189153224", - "loc": [-85.634285, 41.946679] + "loc": [-85.634284, 41.946679] }, "n2189153225": { "id": "n2189153225", - "loc": [-85.634348, 41.946678] + "loc": [-85.634365, 41.946679] }, "n2189153226": { "id": "n2189153226", - "loc": [-85.634347, 41.946666] + "loc": [-85.634365, 41.946664] }, "n2189153227": { "id": "n2189153227", @@ -7032,15 +6968,15 @@ }, "n2189153228": { "id": "n2189153228", - "loc": [-85.635443, 41.946801] + "loc": [-85.635442, 41.946801] }, "n2189153229": { "id": "n2189153229", - "loc": [-85.636028, 41.946801] + "loc": [-85.63603, 41.9468] }, "n2189153230": { "id": "n2189153230", - "loc": [-85.636027, 41.947015] + "loc": [-85.636028, 41.947016] }, "n2189153231": { "id": "n2189153231", @@ -7048,7 +6984,7 @@ }, "n2189153232": { "id": "n2189153232", - "loc": [-85.63545, 41.946218] + "loc": [-85.635455, 41.946211] }, "n2189153233": { "id": "n2189153233", @@ -7056,23 +6992,23 @@ }, "n2189153234": { "id": "n2189153234", - "loc": [-85.635716, 41.946801] + "loc": [-85.635716, 41.9468] }, "n2189153235": { "id": "n2189153235", - "loc": [-85.635954, 41.946797] + "loc": [-85.635969, 41.9468] }, "n2189153236": { "id": "n2189153236", - "loc": [-85.635956, 41.946304] + "loc": [-85.635973, 41.946295] }, "n2189153237": { "id": "n2189153237", - "loc": [-85.636013, 41.946479] + "loc": [-85.636019, 41.946484] }, "n2189153238": { "id": "n2189153238", - "loc": [-85.636015, 41.94639] + "loc": [-85.636022, 41.946388] }, "n2189153239": { "id": "n2189153239", @@ -7080,7 +7016,7 @@ }, "n2189153240": { "id": "n2189153240", - "loc": [-85.63569, 41.946223] + "loc": [-85.635713, 41.94621] }, "n2189153242": { "id": "n2189153242", @@ -7088,31 +7024,15 @@ }, "n2189153243": { "id": "n2189153243", - "loc": [-85.635755, 41.946221] - }, - "n2189153244": { - "id": "n2189153244", - "loc": [-85.635794, 41.946254] - }, - "n2189153245": { - "id": "n2189153245", - "loc": [-85.635872, 41.946705] + "loc": [-85.635759, 41.946203] }, "n2189153246": { "id": "n2189153246", - "loc": [-85.636149, 41.946757] + "loc": [-85.636153, 41.946747] }, "n2189153247": { "id": "n2189153247", - "loc": [-85.635417, 41.946908] - }, - "n2189153248": { - "id": "n2189153248", - "loc": [-85.635443, 41.946908] - }, - "n2189153249": { - "id": "n2189153249", - "loc": [-85.636027, 41.946909] + "loc": [-85.635417, 41.946915] }, "n2189153250": { "id": "n2189153250", @@ -7120,11 +7040,7 @@ }, "n2189153251": { "id": "n2189153251", - "loc": [-85.635865, 41.946484] - }, - "n2189153252": { - "id": "n2189153252", - "loc": [-85.635955, 41.94675] + "loc": [-85.635866, 41.946473] }, "n2189153253": { "id": "n2189153253", @@ -7132,19 +7048,19 @@ }, "n2189153254": { "id": "n2189153254", - "loc": [-85.635564, 41.946177] + "loc": [-85.635556, 41.946166] }, "n2189153255": { "id": "n2189153255", - "loc": [-85.635565, 41.946528] + "loc": [-85.63556, 41.946556] }, "n2189153256": { "id": "n2189153256", - "loc": [-85.635706, 41.946597] + "loc": [-85.635731, 41.946594] }, "n2189153257": { "id": "n2189153257", - "loc": [-85.635869, 41.946597] + "loc": [-85.635866, 41.946595] }, "n2189153259": { "id": "n2189153259", @@ -7168,31 +7084,31 @@ }, "n2189153264": { "id": "n2189153264", - "loc": [-85.636267, 41.946864] + "loc": [-85.636283, 41.946863] }, "n2189153265": { "id": "n2189153265", - "loc": [-85.636265, 41.946705] + "loc": [-85.63628, 41.946706] }, "n2189153266": { "id": "n2189153266", - "loc": [-85.636327, 41.946705] + "loc": [-85.636341, 41.946705] }, "n2189153267": { "id": "n2189153267", - "loc": [-85.636263, 41.946585] + "loc": [-85.636273, 41.946584] }, "n2189153268": { "id": "n2189153268", - "loc": [-85.636381, 41.946547] + "loc": [-85.636396, 41.946545] }, "n2189153269": { "id": "n2189153269", - "loc": [-85.63646, 41.946684] + "loc": [-85.636474, 41.946684] }, "n2189153270": { "id": "n2189153270", - "loc": [-85.63646, 41.946865] + "loc": [-85.636511, 41.946861] }, "n2199109756": { "id": "n2199109756", @@ -7232,11 +7148,15 @@ }, "n185964982": { "id": "n185964982", - "loc": [-85.632799, 41.944054] + "loc": [-85.632793, 41.94405], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "signal" + } }, "n185965289": { "id": "n185965289", - "loc": [-85.634621, 41.947323] + "loc": [-85.634648, 41.947325] }, "n185965291": { "id": "n185965291", @@ -7248,7 +7168,7 @@ }, "n185966937": { "id": "n185966937", - "loc": [-85.633183, 41.947315] + "loc": [-85.633195, 41.94734] }, "n185966948": { "id": "n185966948", @@ -7424,7 +7344,7 @@ }, "n1819858515": { "id": "n1819858515", - "loc": [-85.631851, 41.944641] + "loc": [-85.631775, 41.944636] }, "n1819858520": { "id": "n1819858520", @@ -7432,15 +7352,11 @@ }, "n1819858522": { "id": "n1819858522", - "loc": [-85.631905, 41.944741] + "loc": [-85.631959, 41.944827] }, "n1819858524": { "id": "n1819858524", - "loc": [-85.631772, 41.944367] - }, - "n1819858530": { - "id": "n1819858530", - "loc": [-85.632055, 41.944913] + "loc": [-85.631679, 41.94438] }, "n2139795768": { "id": "n2139795768", @@ -7488,11 +7404,11 @@ }, "n2139832719": { "id": "n2139832719", - "loc": [-85.632793, 41.943177] + "loc": [-85.632824, 41.943152] }, "n2139832720": { "id": "n2139832720", - "loc": [-85.632903, 41.943153] + "loc": [-85.632929, 41.94317] }, "n2139832727": { "id": "n2139832727", @@ -7524,25 +7440,18 @@ }, "n2189153277": { "id": "n2189153277", - "loc": [-85.632895, 41.946237] + "loc": [-85.632868, 41.946229] }, "n2199109755": { "id": "n2199109755", "loc": [-85.633673, 41.947242] }, - "w203970139": { - "id": "w203970139", - "tags": { - "building": "yes" - }, - "nodes": ["n2139824793", "n2139824787", "n2139824773", "n2139824778", "n2139824793"] - }, "w203970098": { "id": "w203970098", "tags": { "building": "yes" }, - "nodes": ["n2139824748", "n2139824712", "n2139824726", "n2139824760", "n2139824748"] + "nodes": ["n2139824748", "n681", "n680", "n679", "n2139824712", "n2139824727", "n2139824761", "n2139824748"] }, "w208643132": { "id": "w208643132", @@ -7561,14 +7470,10 @@ "n2139824753", "n2139824759", "n2139824764", - "n2139824763", "n2139824767", - "n2139824770", "n2139824782", "n2139824772", - "n2139824756", "n2139824751", - "n2139824754", "n2139824755" ] }, @@ -7581,12 +7486,10 @@ "n2189153231", "n2189153232", "n2189153240", - "n2189153244", "n2189153236", "n2189153238", "n2189153237", "n2189153239", - "n2189153252", "n2189153235", "n2189153234", "n2189153253", @@ -7607,7 +7510,7 @@ "name": "Rocky River", "waterway": "river" }, - "nodes": ["n1819849189", "n1819858519", "n1819858504", "n1819858525", "n1819858506", "n1819858513"] + "nodes": ["n1819858513", "n1819858506", "n1819858525", "n1819858504", "n1819858519", "n1819849189"] }, "w203970898": { "id": "w203970898", @@ -7621,7 +7524,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824796", "n2139824803", "n2139824797", "n2139824788", "n2139824796"] + "nodes": ["n2139824796", "n649", "n2139824803", "n2139824797", "n2139824789", "n2139824796"] }, "w203970104": { "id": "w203970104", @@ -7635,7 +7538,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2168544780", "n2168544781", "n2139824796", "n2139824803", "n2168544780"] + "nodes": ["n2168544780", "n2168544781", "n648", "n649", "n2139824803", "n2168544780"] }, "w206805252": { "id": "w206805252", @@ -7683,14 +7586,14 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824794", "n2139824783", "n2139824789", "n2139824797", "n2139824794"] + "nodes": ["n2139824795", "n2139824783", "n2139824789", "n2139824797", "n2139824795"] }, "w208643139": { "id": "w208643139", "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n2189153242", "n2189153247", "n2189153241"] + "nodes": ["n2139832709", "n2189153242", "n674", "n2189153247", "n2189153241"] }, "w203988297": { "id": "w203988297", @@ -7721,19 +7624,10 @@ "id": "w208643140", "tags": { "highway": "service", - "service": "parking_aisle" + "service": "parking_aisle", + "oneway": "yes" }, - "nodes": [ - "n2189153242", - "n2189153254", - "n2189153243", - "n2189153244", - "n2189153251", - "n2189153257", - "n2189153245", - "n2189153252", - "n2189153246" - ] + "nodes": ["n2189153242", "n2189153254", "n670", "n2189153243", "n669", "n668", "n2189153251", "n2189153257"] }, "w203974055": { "id": "w203974055", @@ -7755,33 +7649,28 @@ "id": "w17964996", "tags": { "highway": "residential", - "name": "Foster Street" + "name": "Foster Street", + "oneway": "yes" }, - "nodes": [ - "n1819858524", - "n1819858515", - "n1819858522", - "n1819858530", - "n2139832682", - "n1819858510", - "n1819858520", - "n1819858502", - "n2139832680", - "n185963451", - "n1819858527", - "n185963452", - "n185963453", - "n185963454", - "n185963455", - "n185963456" - ] + "nodes": ["n1819858524", "n1819858515", "n628", "n624", "n1819858522"] }, "w208643144": { "id": "w208643144", "tags": { "building": "yes" }, - "nodes": ["n2189153264", "n2189153265", "n2189153266", "n2189153267", "n2189153268", "n2189153269", "n2189153270", "n2189153264"] + "nodes": [ + "n2189153264", + "n2189153265", + "n2189153266", + "n2189153267", + "n2189153268", + "n2189153269", + "n663", + "n664", + "n2189153270", + "n2189153264" + ] }, "w203970914": { "id": "w203970914", @@ -7810,7 +7699,7 @@ "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139858971", "n2139870373", "n2139870374"] + "nodes": ["n2139858971", "n457", "n2139870373", "n458", "n2139870374"] }, "w203049595": { "id": "w203049595", @@ -7825,7 +7714,7 @@ "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832715", "n2139832716", "n2139832717", "n2139832718", "n2139832719", "n2139832720", "n2139832721", "n2139832716"] + "nodes": ["n2139832715", "n333", "n2139832716"] }, "w208643134": { "id": "w208643134", @@ -7862,7 +7751,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824761", "n2139824727", "n2139824736", "n2139824771", "n2139824761"] + "nodes": ["n2139824761", "n2139824727", "n2139824736", "n2139824751", "n2139824772", "n2139824761"] }, "w208643130": { "id": "w208643130", @@ -7874,10 +7763,14 @@ "n2189153184", "n2189153185", "n2189153186", + "n678", + "n677", "n2189153187", "n2189153188", "n2189153189", "n2189153190", + "n675", + "n676", "n2189153183" ] }, @@ -7893,14 +7786,14 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824729", "n2139824720", "n2139824702", "n2139824707", "n2139824729"] + "nodes": ["n2139824730", "n2139824720", "n2139824702", "n2139824707", "n2139824714", "n2139824730"] }, "w203970133": { "id": "w203970133", "tags": { "building": "yes" }, - "nodes": ["n2139824748", "n2139824737", "n2139824717", "n2139824728", "n2139824748"] + "nodes": ["n2139824748", "n2139824737", "n683", "n682", "n2139824717", "n681", "n2139824748"] }, "w203970907": { "id": "w203970907", @@ -7908,7 +7801,7 @@ "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832700", "n2139832701", "n2139832702"] + "nodes": ["n2139832700", "n473", "n2139832701", "n2139832702"] }, "w203974056": { "id": "w203974056", @@ -7932,21 +7825,21 @@ "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139870375", "n2139870376"] + "nodes": ["n2139870375", "n459", "n2139870376"] }, "w203049594": { "id": "w203049594", "tags": { "highway": "service" }, - "nodes": ["n2130304156", "n2139870378", "n2139832706", "n2139832704", "n2130304157"] + "nodes": ["n2130304156", "n2139870378", "n2139832706", "n442", "n2139832704", "n323", "n2130304157"] }, "w203970122": { "id": "w203970122", "tags": { "building": "yes" }, - "nodes": ["n2139824757", "n2139824740", "n2139824747", "n2139824762", "n2139824757"] + "nodes": ["n2139824757", "n2139824738", "n2139824747", "n2139824758", "n2139824762", "n2139824757"] }, "w208643136": { "id": "w208643136", @@ -7970,21 +7863,21 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824732", "n2139824752", "n2139824744", "n2139824724", "n2139824732"] + "nodes": ["n2139824732", "n2139824745", "n2139824752", "n2139824744", "n2139824724", "n2139824732"] }, "w203970097": { "id": "w203970097", "tags": { "building": "yes" }, - "nodes": ["n2139824737", "n2139824733", "n2139824710", "n2139824716", "n2139824737"] + "nodes": ["n2139824737", "n2139824733", "n2139824721", "n2139824710", "n2139824716", "n683", "n2139824737"] }, "w203970137": { "id": "w203970137", "tags": { "building": "yes" }, - "nodes": ["n2139824765", "n2139824774", "n2139824758", "n2139824746", "n2139824765"] + "nodes": ["n2139824765", "n2139824774", "n2139824758", "n2139824747", "n2139824765"] }, "w134150840": { "id": "w134150840", @@ -8022,7 +7915,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824768", "n2139824781", "n2139824776", "n2139824765", "n2139824768"] + "nodes": ["n2139824768", "n2139824780", "n2139824781", "n2139824774", "n2139824765", "n2139824768"] }, "w17967752": { "id": "w17967752", @@ -8030,14 +7923,30 @@ "highway": "residential", "name": "Railroad Drive" }, - "nodes": ["n185964980", "n2139832700", "n2130304158", "n185988969", "n185988971", "n185988972", "n1475284011"] + "nodes": [ + "n185964980", + "n360", + "n418", + "n397", + "n396", + "n2139832700", + "n646", + "n2130304158", + "n644", + "n185988969", + "n424", + "n640", + "n185988971", + "n185988972", + "n1475284011" + ] }, "w203970136": { "id": "w203970136", "tags": { "building": "yes" }, - "nodes": ["n2139824798", "n2139824793", "n2139824777", "n2139824784", "n2139824798"] + "nodes": ["n2139824798", "n2139824793", "n2139824777", "n2139824784", "n2139824791", "n2139824798"] }, "w203970142": { "id": "w203970142", @@ -8046,9 +7955,15 @@ }, "nodes": [ "n2139824808", + "n651", + "n650", "n2139824809", "n2139824807", + "n653", + "n652", + "n656", "n2139824806", + "n654", "n2139824801", "n2139824800", "n2139824804", @@ -8061,17 +7976,7 @@ "tags": { "amenity": "parking" }, - "nodes": [ - "n2189153227", - "n2189153248", - "n2189153228", - "n2189153234", - "n2189153235", - "n2189153229", - "n2189153249", - "n2189153230", - "n2189153227" - ] + "nodes": ["n2189153227", "n2189153228", "n2189153234", "n2189153235", "n2189153229", "n2189153230", "n2189153227"] }, "w208643129": { "id": "w208643129", @@ -8085,7 +7990,7 @@ "tags": { "amenity": "parking" }, - "nodes": ["n2139832703", "n2139832704", "n2139832706", "n2139832708", "n2139832703"] + "nodes": ["n2139832703", "n2139832704", "n442", "n2139832706", "n2139832708", "n2139832703"] }, "w203970905": { "id": "w203970905", @@ -8102,6 +8007,7 @@ }, "nodes": [ "n2140006431", + "n835", "n30", "n2140006433", "n35", @@ -8131,7 +8037,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824787", "n2139824782", "n2139824766", "n2139824769", "n2139824787"] + "nodes": ["n2139824787", "n2139824782", "n2139824767", "n2139824766", "n2139824769", "n2139824787"] }, "w208643131": { "id": "w208643131", @@ -8147,7 +8053,7 @@ }, "nodes": [ "n2168544800", - "n2168544801", + "n2168544790", "n2168544802", "n2168544805", "n2168544807", @@ -8182,6 +8088,9 @@ }, "nodes": [ "n185978375", + "n636", + "n730", + "n635", "n185963456", "n2189153218", "n185966937", @@ -8221,22 +8130,23 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824713", "n2139824705", "n2139824683", "n2139824689", "n2139824713"] + "nodes": ["n2139824713", "n2139824705", "n687", "n2139824683", "n2139824689", "n2139824713"] }, "w203970114": { "id": "w203970114", "tags": { "building": "yes" }, - "nodes": ["n2139824735", "n2139824750", "n2139824745", "n2139824732", "n2139824735"] + "nodes": ["n2139824735", "n2139824749", "n2139824745", "n2139824732", "n2139824735"] }, "w208643142": { "id": "w208643142", "tags": { "highway": "service", - "service": "parking_aisle" + "service": "parking_aisle", + "oneway": "yes" }, - "nodes": ["n2189153254", "n2189153255", "n2189153256", "n2189153257"] + "nodes": ["n2189153254", "n2189153255", "n673", "n672", "n671", "n2189153256", "n2189153257"] }, "w206805253": { "id": "w206805253", @@ -8296,6 +8206,10 @@ "n185978379", "n185978377", "n185978375", + "n720", + "n726", + "n370", + "n368", "n185964982" ] }, @@ -8307,15 +8221,14 @@ "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964976", "n2130304157", "n1475284023", "n2139832715", "n185964980", "n185964982"] + "nodes": ["n185964976", "n2130304157", "n343", "n1475284023", "n2139832715", "n185964980", "n363", "n185964982"] }, "w208643135": { "id": "w208643135", "tags": { - "highway": "service", - "service": "parking_aisle" + "highway": "service" }, - "nodes": ["n2189153215", "n2189153216", "n2189153217", "n2189153218"] + "nodes": ["n2189153215", "n2189153216", "n634", "n633", "n2189153217", "n2189153218"] }, "w17967183": { "id": "w17967183", @@ -8326,6 +8239,7 @@ "nodes": [ "n1475284011", "n185984011", + "n661", "n185984013", "n185984015", "n2189153246", @@ -8367,7 +8281,6 @@ "n2168544798", "n2168544799", "n2168544802", - "n2168544801", "n2168544790" ] }, @@ -8416,7 +8329,7 @@ "tags": { "amenity": "parking" }, - "nodes": ["n2139832693", "n2139832694", "n2139832696", "n2139832697", "n2139832698", "n2139832693"] + "nodes": ["n2139832693", "n2139832694", "n2139832696", "n395", "n2139832698", "n2139832693"] }, "w203049598": { "id": "w203049598", @@ -8431,14 +8344,14 @@ "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n2139832714", "n2139832713", "n2139832710"] + "nodes": ["n2139832709", "n2139832714", "n2139832713", "n659", "n2139832710", "n658", "n657", "n185988971"] }, "w203970105": { "id": "w203970105", "tags": { "building": "yes" }, - "nodes": ["n2139824779", "n2139824792", "n2139824786", "n2139824775", "n2139824779"] + "nodes": ["n2139824779", "n2139824790", "n2139824792", "n2139824785", "n2139824775", "n2139824779"] }, "w203988290": { "id": "w203988290", @@ -8478,7 +8391,7 @@ "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153247", "n2189153248", "n2189153249", "n2189153250"] + "nodes": ["n2189153247", "n2189153250"] }, "w203970903": { "id": "w203970903", @@ -8999,15 +8912,15 @@ }, "n185980391": { "id": "n185980391", - "loc": [-85.632299, 41.944277] + "loc": [-85.632286, 41.944257] }, "n185980393": { "id": "n185980393", - "loc": [-85.632492, 41.944214] + "loc": [-85.632523, 41.944179] }, "n185980389": { "id": "n185980389", - "loc": [-85.632027, 41.944328] + "loc": [-85.632141, 41.944293] }, "n185980388": { "id": "n185980388", @@ -9484,7 +9397,7 @@ "old_ref": "US 131", "ref": "M 86" }, - "nodes": ["n185977764", "n185964982"] + "nodes": ["n185977764", "n394", "n364", "n185964982"] }, "w208643146": { "id": "w208643146", @@ -9518,7 +9431,7 @@ "name_1": "State Highway 60", "ref": "M 60" }, - "nodes": ["n185980388", "n1819858524", "n185980389", "n185980391", "n185980393", "n185964982"] + "nodes": ["n185980388", "n1819858524", "n627", "n185980389", "n185980391", "n623", "n185980393", "n366", "n185964982"] }, "w17967734": { "id": "w17967734", @@ -9526,7 +9439,7 @@ "highway": "residential", "name": "Water Street" }, - "nodes": ["n185988896", "n185980391", "n1819858529"] + "nodes": ["n185988896", "n738", "n185980391", "n737", "n1819858529"] }, "w17965305": { "id": "w17965305", @@ -12836,7 +12749,7 @@ }, "n2208608827": { "id": "n2208608827", - "loc": [-85.633917, 41.947319] + "loc": [-85.633921, 41.947334] }, "n2199109749": { "id": "n2199109749", @@ -19115,10 +19028,9 @@ "n1819849189", "n1819858503", "n1819849065", - "n2139877106", - "n1819848909", - "n1819848930", - "n1819848888" + "n460", + "n453", + "n2139877106" ] }, "w2": { @@ -19399,7 +19311,7 @@ }, "n21": { "id": "n21", - "loc": [-85.634127, 41.942234] + "loc": [-85.634126, 41.942228] }, "n22": { "id": "n22", @@ -19423,7 +19335,7 @@ }, "n27": { "id": "n27", - "loc": [-85.634123, 41.943184] + "loc": [-85.634136, 41.943183] }, "n28": { "id": "n28", @@ -19477,12 +19389,4823 @@ "id": "n40", "loc": [-85.638786, 41.948323] }, - "w6": { + "n41": { + "id": "n41", + "loc": [-85.636233, 41.942764] + }, + "n42": { + "id": "n42", + "loc": [-85.635996, 41.942727] + }, + "n43": { + "loc": [-85.637047, 41.943054], + "id": "n43" + }, + "w7": { + "id": "w7", + "nodes": ["n43", "n44", "n45"], + "tags": { + "highway": "service" + } + }, + "n44": { + "loc": [-85.636799, 41.943055], + "id": "n44" + }, + "n45": { + "loc": [-85.636791, 41.942792], + "id": "n45" + }, + "n46": { + "loc": [-85.637131, 41.94307], + "id": "n46" + }, + "w8": { + "tags": { + "amenity": "parking" + }, + "id": "w8", + "nodes": ["n46", "n47", "n145", "n48", "n49", "n46"] + }, + "n47": { + "loc": [-85.636693, 41.943073], + "id": "n47" + }, + "n48": { + "loc": [-85.636689, 41.94276], + "id": "n48" + }, + "n49": { + "loc": [-85.637127, 41.942757], + "id": "n49" + }, + "n50": { + "loc": [-85.636673, 41.943143], + "id": "n50" + }, + "w9": { + "tags": { + "building": "yes" + }, + "id": "w9", + "nodes": ["n50", "n51", "n148", "n52", "n53", "n50"] + }, + "n51": { + "loc": [-85.636673, 41.942864], + "id": "n51" + }, + "n52": { + "loc": [-85.636227, 41.942864], + "id": "n52" + }, + "n53": { + "loc": [-85.636227, 41.943143], + "id": "n53" + }, + "n54": { + "loc": [-85.636198, 41.943119], + "id": "n54" + }, + "w10": { + "tags": { + "building": "yes" + }, + "id": "w10", + "nodes": ["n54", "n55", "n56", "n57", "n54"] + }, + "n55": { + "loc": [-85.635945, 41.94312], + "id": "n55" + }, + "n56": { + "loc": [-85.635943, 41.942909], + "id": "n56" + }, + "n57": { + "loc": [-85.636197, 41.942908], + "id": "n57" + }, + "n58": { + "loc": [-85.63627, 41.943175], + "id": "n58" + }, + "w11": { + "id": "w11", + "nodes": ["n58", "n63", "n59", "n315", "n60"], + "tags": { + "highway": "service" + } + }, + "n59": { + "loc": [-85.635531, 41.943176], + "id": "n59" + }, + "n60": { + "loc": [-85.63542, 41.942883], + "id": "n60" + }, + "n61": { + "loc": [-85.635701, 41.942802], + "id": "n61" + }, + "w12": { + "id": "w12", + "nodes": ["n61", "n314", "n70", "n62", "n63"], + "tags": { + "highway": "service" + } + }, + "n62": { + "loc": [-85.6358, 41.942997], + "id": "n62" + }, + "n63": { + "loc": [-85.635808, 41.943176], + "id": "n63" + }, + "n64": { + "loc": [-85.63631, 41.943253], + "id": "n64" + }, + "w13": { + "tags": { + "amenity": "parking" + }, + "id": "w13", + "nodes": ["n64", "n65", "n66", "n67", "n68", "n69", "n64"] + }, + "n65": { + "loc": [-85.635398, 41.943259], + "id": "n65" + }, + "n66": { + "loc": [-85.635336, 41.943036], + "id": "n66" + }, + "n67": { + "loc": [-85.635911, 41.942899], + "id": "n67" + }, + "n68": { + "loc": [-85.635915, 41.943156], + "id": "n68" + }, + "n69": { + "loc": [-85.63631, 41.943157], + "id": "n69" + }, + "n70": { + "id": "n70", + "loc": [-85.63579, 41.942967] + }, + "n71": { + "loc": [-85.637506, 41.942824], + "id": "n71" + }, + "w14": { + "tags": { + "building": "yes" + }, + "id": "w14", + "nodes": ["n71", "n72", "n73", "n74", "n71"] + }, + "n72": { + "loc": [-85.637511, 41.943056], + "id": "n72" + }, + "n73": { + "loc": [-85.637361, 41.943058], + "id": "n73" + }, + "n74": { + "loc": [-85.637356, 41.942825], + "id": "n74" + }, + "n75": { + "loc": [-85.638097, 41.942833], + "id": "n75" + }, + "w15": { + "tags": { + "building": "yes" + }, + "id": "w15", + "nodes": ["n75", "n76", "n77", "n78", "n75"] + }, + "n76": { + "loc": [-85.638098, 41.942912], + "id": "n76" + }, + "n77": { + "loc": [-85.637705, 41.942913], + "id": "n77" + }, + "n78": { + "loc": [-85.637705, 41.942834], + "id": "n78" + }, + "n79": { + "loc": [-85.638071, 41.942298], + "id": "n79" + }, + "w16": { + "tags": { + "building": "yes" + }, + "id": "w16", + "nodes": ["n79", "n80", "n81", "n82", "n83", "n84", "n85", "n86", "n79"] + }, + "n80": { + "loc": [-85.638074, 41.942431], + "id": "n80" + }, + "n81": { + "loc": [-85.637836, 41.942433], + "id": "n81" + }, + "n82": { + "loc": [-85.637835, 41.94242], + "id": "n82" + }, + "n83": { + "loc": [-85.63776, 41.942421], + "id": "n83" + }, + "n84": { + "loc": [-85.637758, 41.942339], + "id": "n84" + }, + "n85": { + "loc": [-85.637836, 41.942339], + "id": "n85" + }, + "n86": { + "loc": [-85.637835, 41.942301], + "id": "n86" + }, + "n87": { + "loc": [-85.637566, 41.942367], + "id": "n87" + }, + "w17": { + "tags": { + "building": "yes" + }, + "id": "w17", + "nodes": ["n87", "n88", "n89", "n90", "n87"] + }, + "n88": { + "loc": [-85.637566, 41.94241], + "id": "n88" + }, + "n89": { + "loc": [-85.637455, 41.94241], + "id": "n89" + }, + "n90": { + "loc": [-85.637454, 41.942367], + "id": "n90" + }, + "n91": { + "loc": [-85.637565, 41.942341], + "id": "n91" + }, + "w18": { + "tags": { + "building": "yes" + }, + "id": "w18", + "nodes": ["n91", "n92", "n93", "n94", "n91"] + }, + "n92": { + "loc": [-85.637481, 41.942341], + "id": "n92" + }, + "n93": { + "loc": [-85.637481, 41.94226], + "id": "n93" + }, + "n94": { + "loc": [-85.637565, 41.94226], + "id": "n94" + }, + "n95": { + "loc": [-85.637188, 41.942217], + "id": "n95" + }, + "w19": { + "tags": { + "building": "yes" + }, + "id": "w19", + "nodes": ["n95", "n96", "n97", "n98", "n99", "n100", "n101", "n102", "n95"] + }, + "n96": { + "loc": [-85.637189, 41.942303], + "id": "n96" + }, + "n97": { + "loc": [-85.637299, 41.942302], + "id": "n97" + }, + "n98": { + "loc": [-85.637299, 41.942314], + "id": "n98" + }, + "n99": { + "loc": [-85.637396, 41.942313], + "id": "n99" + }, + "n100": { + "loc": [-85.637395, 41.942252], + "id": "n100" + }, + "n101": { + "loc": [-85.637357, 41.942252], + "id": "n101" + }, + "n102": { + "loc": [-85.637357, 41.942216], + "id": "n102" + }, + "n103": { + "loc": [-85.637386, 41.942054], + "id": "n103" + }, + "w20": { + "tags": { + "building": "yes" + }, + "id": "w20", + "nodes": ["n103", "n104", "n105", "n106", "n107", "n108", "n109", "n110", "n111", "n112", "n113", "n114", "n103"] + }, + "n104": { + "loc": [-85.637387, 41.942125], + "id": "n104" + }, + "n105": { + "loc": [-85.637319, 41.942125], + "id": "n105" + }, + "n106": { + "loc": [-85.637319, 41.942137], + "id": "n106" + }, + "n107": { + "loc": [-85.637259, 41.942137], + "id": "n107" + }, + "n108": { + "loc": [-85.637259, 41.942126], + "id": "n108" + }, + "n109": { + "loc": [-85.637193, 41.942126], + "id": "n109" + }, + "n110": { + "loc": [-85.637192, 41.942053], + "id": "n110" + }, + "n111": { + "loc": [-85.637248, 41.942053], + "id": "n111" + }, + "n112": { + "loc": [-85.637248, 41.942042], + "id": "n112" + }, + "n113": { + "loc": [-85.637338, 41.942041], + "id": "n113" + }, + "n114": { + "loc": [-85.637338, 41.942055], + "id": "n114" + }, + "n115": { + "loc": [-85.637583, 41.941943], + "id": "n115" + }, + "w21": { + "tags": { + "building": "yes" + }, + "id": "w21", + "nodes": ["n115", "n116", "n117", "n118", "n115"] + }, + "n116": { + "loc": [-85.637584, 41.941983], + "id": "n116" + }, + "n117": { + "loc": [-85.63751, 41.941983], + "id": "n117" + }, + "n118": { + "loc": [-85.637509, 41.941944], + "id": "n118" + }, + "n119": { + "loc": [-85.637724, 41.941973], + "id": "n119" + }, + "w22": { + "tags": { + "building": "yes" + }, + "id": "w22", + "nodes": ["n119", "n120", "n121", "n122", "n119"] + }, + "n120": { + "loc": [-85.637633, 41.941973], + "id": "n120" + }, + "n121": { + "loc": [-85.637633, 41.941853], + "id": "n121" + }, + "n122": { + "loc": [-85.637724, 41.941853], + "id": "n122" + }, + "n123": { + "loc": [-85.637773, 41.941988], + "id": "n123" + }, + "w23": { + "tags": { + "building": "yes" + }, + "id": "w23", + "nodes": ["n123", "n124", "n125", "n126", "n123"] + }, + "n124": { + "loc": [-85.637773, 41.942046], + "id": "n124" + }, + "n125": { + "loc": [-85.637693, 41.942047], + "id": "n125" + }, + "n126": { + "loc": [-85.637692, 41.941988], + "id": "n126" + }, + "n127": { + "loc": [-85.637604, 41.941994], + "id": "n127" + }, + "w24": { + "tags": { + "building": "yes" + }, + "id": "w24", + "nodes": ["n127", "n128", "n129", "n130", "n127"] + }, + "n128": { + "loc": [-85.637604, 41.942057], + "id": "n128" + }, + "n129": { + "loc": [-85.63748, 41.942057], + "id": "n129" + }, + "n130": { + "loc": [-85.63748, 41.941994], + "id": "n130" + }, + "n131": { + "loc": [-85.637431, 41.941832], + "id": "n131" + }, + "w25": { + "tags": { + "building": "yes" + }, + "id": "w25", + "nodes": ["n131", "n132", "n133", "n134", "n135", "n136", "n137", "n138", "n139", "n140", "n141", "n142", "n131"] + }, + "n132": { + "loc": [-85.637432, 41.94189], + "id": "n132" + }, + "n133": { + "loc": [-85.637412, 41.94189], + "id": "n133" + }, + "n134": { + "loc": [-85.637413, 41.941938], + "id": "n134" + }, + "n135": { + "loc": [-85.637342, 41.941939], + "id": "n135" + }, + "n136": { + "loc": [-85.637342, 41.941914], + "id": "n136" + }, + "n137": { + "loc": [-85.637212, 41.941916], + "id": "n137" + }, + "n138": { + "loc": [-85.637211, 41.941835], + "id": "n138" + }, + "n139": { + "loc": [-85.637293, 41.941834], + "id": "n139" + }, + "n140": { + "loc": [-85.637293, 41.941823], + "id": "n140" + }, + "n141": { + "loc": [-85.637363, 41.941822], + "id": "n141" + }, + "n142": { + "id": "n142", + "loc": [-85.637364, 41.941833] + }, + "n143": { + "loc": [-85.637559, 41.942448], + "id": "n143" + }, + "w26": { + "id": "w26", + "nodes": ["n143", "n608", "n144"], + "tags": { + "highway": "service" + } + }, + "n144": { + "loc": [-85.637036, 41.942454], + "id": "n144" + }, + "n145": { + "loc": [-85.636692, 41.942828], + "id": "n145" + }, + "w27": { + "id": "w27", + "nodes": ["n145", "n147", "n146"], + "tags": { + "highway": "footway" + } + }, + "n146": { + "loc": [-85.635929, 41.942826], + "id": "n146" + }, + "n147": { + "loc": [-85.636433, 41.942828], + "id": "n147" + }, + "w28": { + "id": "w28", + "nodes": ["n147", "n148"], + "tags": { + "highway": "footway" + } + }, + "n148": { + "loc": [-85.636435, 41.942864], + "id": "n148", + "tags": { + "entrance": "yes" + } + }, + "n149": { + "loc": [-85.637235, 41.942622], + "id": "n149" + }, + "w29": { + "id": "w29", + "nodes": ["n149", "n874", "n150", "n151", "n875", "n152"], + "tags": { + "highway": "service", + "oneway": "yes" + } + }, + "n150": { + "loc": [-85.637247, 41.943116], + "id": "n150" + }, + "n151": { + "loc": [-85.637564, 41.943116], + "id": "n151" + }, + "n152": { + "loc": [-85.637552, 41.942619], + "id": "n152" + }, + "n153": { + "loc": [-85.63763, 41.942528], + "id": "n153" + }, + "w30": { + "tags": { + "amenity": "parking" + }, + "id": "w30", + "nodes": ["n153", "n154", "n155", "n156", "n153"] + }, + "n154": { + "loc": [-85.637151, 41.94253], + "id": "n154" + }, + "n155": { + "loc": [-85.63715, 41.942424], + "id": "n155" + }, + "n156": { + "loc": [-85.637629, 41.942422], + "id": "n156" + }, + "n157": { + "loc": [-85.638232, 41.942477], + "id": "n157" + }, + "w31": { + "id": "w31", + "nodes": ["n157", "n605", "n158"], + "tags": { + "highway": "service" + } + }, + "n158": { + "loc": [-85.637775, 41.942483], + "id": "n158" + }, + "n159": { + "loc": [-85.638107, 41.942512], + "id": "n159" + }, + "w32": { + "tags": { + "amenity": "parking" + }, + "id": "w32", + "nodes": ["n159", "n160", "n161", "n162", "n159"] + }, + "n160": { + "loc": [-85.637763, 41.942514], + "id": "n160" + }, + "n161": { + "loc": [-85.637763, 41.942445], + "id": "n161" + }, + "n162": { + "loc": [-85.638107, 41.942443], + "id": "n162" + }, + "w33": { + "id": "w33", + "nodes": ["n157", "n163"], + "tags": { + "highway": "service" + } + }, + "n163": { + "loc": [-85.638813, 41.942475], + "id": "n163" + }, + "n164": { + "loc": [-85.63883, 41.942422], + "id": "n164" + }, + "w34": { + "tags": { + "amenity": "parking" + }, + "id": "w34", + "nodes": ["n164", "n165", "n166", "n171", "n866", "n172", "n167", "n168", "n169", "n170", "n164"] + }, + "n165": { + "loc": [-85.63883, 41.942508], + "id": "n165" + }, + "n166": { + "loc": [-85.638364, 41.942508], + "id": "n166" + }, + "n167": { + "loc": [-85.638836, 41.942167], + "id": "n167" + }, + "n168": { + "loc": [-85.638836, 41.94229], + "id": "n168" + }, + "n169": { + "loc": [-85.638594, 41.94229], + "id": "n169" + }, + "n170": { + "loc": [-85.638594, 41.942422], + "id": "n170" + }, + "w35": { + "id": "w35", + "nodes": ["n168", "n167", "n172"], + "tags": { + "barrier": "fence" + } + }, + "n171": { + "loc": [-85.638364, 41.942356], + "id": "n171" + }, + "w36": { + "id": "w36", + "nodes": ["n171", "n866", "n172"], + "tags": { + "barrier": "fence" + } + }, + "n172": { + "loc": [-85.638364, 41.942167], + "id": "n172" + }, + "n173": { + "loc": [-85.639038, 41.942463], + "id": "n173" + }, + "w37": { + "tags": { + "building": "yes" + }, + "id": "w37", + "nodes": ["n173", "n174", "n175", "n176", "n177", "n178", "n179", "n180", "n173"] + }, + "n174": { + "loc": [-85.638897, 41.942464], + "id": "n174" + }, + "n175": { + "loc": [-85.638897, 41.942423], + "id": "n175" + }, + "n176": { + "loc": [-85.638853, 41.942423], + "id": "n176" + }, + "n177": { + "loc": [-85.638852, 41.94237], + "id": "n177" + }, + "n178": { + "loc": [-85.638892, 41.94237], + "id": "n178" + }, + "n179": { + "loc": [-85.638891, 41.942334], + "id": "n179" + }, + "n180": { + "loc": [-85.639037, 41.942334], + "id": "n180" + }, + "n181": { + "loc": [-85.638074, 41.941839], + "id": "n181" + }, + "w38": { + "tags": { + "building": "yes" + }, + "id": "w38", + "nodes": ["n181", "n182", "n183", "n185", "n184", "n181"] + }, + "n182": { + "loc": [-85.638076, 41.941942], + "id": "n182" + }, + "n183": { + "loc": [-85.637955, 41.941944], + "id": "n183" + }, + "n184": { + "loc": [-85.637953, 41.94184], + "id": "n184" + }, + "n185": { + "loc": [-85.637953, 41.941866], + "id": "n185" + }, + "w39": { + "id": "w39", + "nodes": ["n185", "n186", "n187"], + "tags": { + "barrier": "fence" + } + }, + "n186": { + "loc": [-85.637873, 41.941867], + "id": "n186" + }, + "n187": { + "loc": [-85.637877, 41.941975], + "id": "n187" + }, + "w40": { + "tags": { + "building": "yes" + }, + "id": "w40", + "nodes": ["n188", "n189", "n190", "n191", "n192", "n193", "n188"] + }, + "n188": { + "loc": [-85.636855, 41.942488], + "id": "n188" + }, + "n189": { + "loc": [-85.636702, 41.942488], + "id": "n189" + }, + "n190": { + "loc": [-85.636702, 41.942434], + "id": "n190" + }, + "n191": { + "loc": [-85.636761, 41.942434], + "id": "n191" + }, + "n192": { + "loc": [-85.636761, 41.942369], + "id": "n192" + }, + "n193": { + "loc": [-85.636855, 41.942369], + "id": "n193" + }, + "n194": { + "loc": [-85.636645, 41.94249], + "id": "n194" + }, + "w41": { + "tags": { + "building": "yes" + }, + "id": "w41", + "nodes": ["n194", "n195", "n196", "n197", "n198", "n199", "n200", "n201", "n202", "n203", "n204", "n205", "n194"] + }, + "n195": { + "loc": [-85.636565, 41.94249], + "id": "n195" + }, + "n196": { + "loc": [-85.636565, 41.942474], + "id": "n196" + }, + "n197": { + "loc": [-85.636514, 41.942474], + "id": "n197" + }, + "n198": { + "loc": [-85.636514, 41.942326], + "id": "n198" + }, + "n199": { + "loc": [-85.636561, 41.942326], + "id": "n199" + }, + "n200": { + "loc": [-85.636561, 41.942311], + "id": "n200" + }, + "n201": { + "loc": [-85.636621, 41.942311], + "id": "n201" + }, + "n202": { + "loc": [-85.636621, 41.942351], + "id": "n202" + }, + "n203": { + "loc": [-85.63666, 41.942351], + "id": "n203" + }, + "n204": { + "loc": [-85.63666, 41.942453], + "id": "n204" + }, + "n205": { + "loc": [-85.636645, 41.942453], + "id": "n205" + }, + "n206": { + "loc": [-85.636394, 41.942471], + "id": "n206" + }, + "w42": { + "tags": { + "building": "yes" + }, + "id": "w42", + "nodes": ["n206", "n207", "n208", "n209", "n210", "n211", "n206"] + }, + "n207": { + "loc": [-85.636262, 41.942472], + "id": "n207" + }, + "n208": { + "loc": [-85.636261, 41.94233], + "id": "n208" + }, + "n209": { + "loc": [-85.636353, 41.942329], + "id": "n209" + }, + "n210": { + "loc": [-85.636354, 41.94239], + "id": "n210" + }, + "n211": { + "loc": [-85.636393, 41.94239], + "id": "n211" + }, + "w43": { + "tags": { + "name": "Riverwalk Trail", + "highway": "footway", + "footway": "sidewalk" + }, + "id": "w43", + "nodes": ["n2139858980", "n2139858981"] + }, + "n212": { + "id": "n212", + "loc": [-85.63444, 41.943176] + }, + "n213": { + "loc": [-85.63375, 41.942814], + "id": "n213" + }, + "w44": { + "tags": { + "building": "yes" + }, + "id": "w44", + "nodes": ["n213", "n214", "n215", "n216", "n213"] + }, + "n214": { + "loc": [-85.633674, 41.942869], + "id": "n214" + }, + "n215": { + "loc": [-85.633542, 41.942768], + "id": "n215" + }, + "n216": { + "loc": [-85.633618, 41.942714], + "id": "n216" + }, + "n217": { + "loc": [-85.634001, 41.942336], + "id": "n217" + }, + "w45": { + "tags": { + "building": "yes" + }, + "id": "w45", + "nodes": ["n217", "n218", "n219", "n220", "n217"] + }, + "n218": { + "loc": [-85.633825, 41.942376], + "id": "n218" + }, + "n219": { + "loc": [-85.633807, 41.942334], + "id": "n219" + }, + "n220": { + "loc": [-85.633983, 41.942294], + "id": "n220" + }, + "n221": { + "loc": [-85.634182, 41.942495], + "id": "n221" + }, + "w46": { + "tags": { + "building": "yes" + }, + "id": "w46", + "nodes": ["n221", "n222", "n223", "n224", "n221"] + }, + "n222": { + "loc": [-85.634149, 41.942503], + "id": "n222" + }, + "n223": { + "loc": [-85.634098, 41.942373], + "id": "n223" + }, + "n224": { + "loc": [-85.634131, 41.942366], + "id": "n224" + }, + "w47": { "tags": { "highway": "service" }, - "id": "w6", - "nodes": ["n2139832710", "n185988971"] + "id": "w47", + "nodes": [ + "n2139870408", + "n2139870417", + "n2139870409", + "n25", + "n24", + "n2139870410", + "n26", + "n2139870411", + "n21", + "n2139870412", + "n2139870426", + "n2139870413", + "n22", + "n2139870414", + "n23", + "n2139870415", + "n2139870419", + "n2139870416", + "n2139870421", + "n2139870408" + ] + }, + "n225": { + "loc": [-85.635986, 41.94177], + "id": "n225" + }, + "w48": { + "tags": { + "building": "yes" + }, + "id": "w48", + "nodes": ["n225", "n237", "n226", "n227", "n228", "n229", "n230", "n231", "n232", "n233", "n234", "n235", "n236", "n225"] + }, + "n226": { + "loc": [-85.635982, 41.941523], + "id": "n226" + }, + "n227": { + "loc": [-85.636108, 41.941521], + "id": "n227" + }, + "n228": { + "loc": [-85.636109, 41.941559], + "id": "n228" + }, + "n229": { + "loc": [-85.636145, 41.941559], + "id": "n229" + }, + "n230": { + "loc": [-85.636145, 41.941551], + "id": "n230" + }, + "n231": { + "loc": [-85.636312, 41.941549], + "id": "n231" + }, + "n232": { + "loc": [-85.636314, 41.941649], + "id": "n232" + }, + "n233": { + "loc": [-85.636152, 41.94165], + "id": "n233" + }, + "n234": { + "loc": [-85.636152, 41.941628], + "id": "n234" + }, + "n235": { + "loc": [-85.63611, 41.941628], + "id": "n235" + }, + "n236": { + "loc": [-85.636113, 41.941768], + "id": "n236" + }, + "n237": { + "loc": [-85.635983, 41.941589], + "id": "n237", + "tags": { + "entrance": "yes" + } + }, + "w49": { + "id": "w49", + "nodes": ["n237", "n238"], + "tags": { + "highway": "footway" + } + }, + "n238": { + "loc": [-85.635906, 41.94159], + "id": "n238" + }, + "n239": { + "loc": [-85.635883, 41.940182], + "id": "n239" + }, + "w50": { + "id": "w50", + "nodes": ["n239", "n499", "n508", "n245", "n238", "n242", "n240"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n240": { + "loc": [-85.635916, 41.94264], + "id": "n240" + }, + "n241": { + "loc": [-85.635795, 41.941906], + "id": "n241" + }, + "w51": { + "id": "w51", + "nodes": ["n241", "n242", "n243", "n244"], + "tags": { + "highway": "service", + "surface": "unpaved" + } + }, + "n242": { + "loc": [-85.635909, 41.941906], + "id": "n242" + }, + "n243": { + "loc": [-85.636359, 41.941904], + "id": "n243" + }, + "n244": { + "loc": [-85.636351, 41.941438], + "id": "n244" + }, + "n245": { + "loc": [-85.635903, 41.941436], + "id": "n245" + }, + "n246": { + "loc": [-85.635788, 41.941436], + "id": "n246" + }, + "n247": { + "loc": [-85.635929, 41.941511], + "id": "n247" + }, + "w52": { + "tags": { + "amenity": "parking" + }, + "id": "w52", + "nodes": ["n247", "n248", "n249", "n250", "n247"] + }, + "n248": { + "loc": [-85.635929, 41.941317], + "id": "n248" + }, + "n249": { + "loc": [-85.636414, 41.941316], + "id": "n249" + }, + "n250": { + "loc": [-85.636414, 41.941511], + "id": "n250" + }, + "n251": { + "loc": [-85.636819, 41.941617], + "id": "n251" + }, + "w53": { + "tags": { + "building": "yes" + }, + "id": "w53", + "nodes": ["n251", "n252", "n253", "n254", "n255", "n256", "n257", "n258", "n259", "n260", "n261", "n262", "n251"] + }, + "n252": { + "loc": [-85.636718, 41.941619], + "id": "n252" + }, + "n253": { + "loc": [-85.636716, 41.941509], + "id": "n253" + }, + "n254": { + "loc": [-85.636732, 41.941509], + "id": "n254" + }, + "n255": { + "loc": [-85.636731, 41.941461], + "id": "n255" + }, + "n256": { + "loc": [-85.636799, 41.941461], + "id": "n256" + }, + "n257": { + "loc": [-85.6368, 41.9415], + "id": "n257" + }, + "n258": { + "loc": [-85.636814, 41.9415], + "id": "n258" + }, + "n259": { + "loc": [-85.636815, 41.941538], + "id": "n259" + }, + "n260": { + "loc": [-85.636827, 41.941538], + "id": "n260" + }, + "n261": { + "loc": [-85.636828, 41.941584], + "id": "n261" + }, + "n262": { + "loc": [-85.636819, 41.941585], + "id": "n262" + }, + "n263": { + "loc": [-85.636854, 41.941714], + "id": "n263" + }, + "w54": { + "tags": { + "building": "yes" + }, + "id": "w54", + "nodes": ["n263", "n264", "n265", "n266", "n267", "n268", "n269", "n270", "n271", "n272", "n273", "n274", "n275", "n276", "n263"] + }, + "n264": { + "loc": [-85.636855, 41.941774], + "id": "n264" + }, + "n265": { + "loc": [-85.636822, 41.941774], + "id": "n265" + }, + "n266": { + "loc": [-85.636822, 41.941778], + "id": "n266" + }, + "n267": { + "loc": [-85.636756, 41.941779], + "id": "n267" + }, + "n268": { + "loc": [-85.636756, 41.941774], + "id": "n268" + }, + "n269": { + "loc": [-85.636721, 41.941774], + "id": "n269" + }, + "n270": { + "loc": [-85.63672, 41.941714], + "id": "n270" + }, + "n271": { + "loc": [-85.636767, 41.941713], + "id": "n271" + }, + "n272": { + "loc": [-85.636767, 41.941706], + "id": "n272" + }, + "n273": { + "loc": [-85.636779, 41.941698], + "id": "n273" + }, + "n274": { + "loc": [-85.636798, 41.941697], + "id": "n274" + }, + "n275": { + "loc": [-85.63681, 41.941705], + "id": "n275" + }, + "n276": { + "loc": [-85.63681, 41.941714], + "id": "n276" + }, + "n277": { + "loc": [-85.636861, 41.942041], + "id": "n277" + }, + "w55": { + "tags": { + "building": "yes" + }, + "id": "w55", + "nodes": ["n277", "n278", "n279", "n280", "n281", "n282", "n283", "n284", "n277"] + }, + "n278": { + "loc": [-85.636862, 41.942099], + "id": "n278" + }, + "n279": { + "loc": [-85.636807, 41.942099], + "id": "n279" + }, + "n280": { + "loc": [-85.636807, 41.942126], + "id": "n280" + }, + "n281": { + "loc": [-85.636726, 41.942126], + "id": "n281" + }, + "n282": { + "loc": [-85.636726, 41.942098], + "id": "n282" + }, + "n283": { + "loc": [-85.636708, 41.942098], + "id": "n283" + }, + "n284": { + "loc": [-85.636708, 41.942041], + "id": "n284" + }, + "n285": { + "loc": [-85.635618, 41.941852], + "id": "n285" + }, + "w56": { + "id": "w56", + "nodes": ["n285", "n286", "n287", "n288", "n285"], + "tags": { + "amenity": "parking" + } + }, + "n286": { + "loc": [-85.635621, 41.94202], + "id": "n286" + }, + "n287": { + "loc": [-85.63524, 41.942023], + "id": "n287" + }, + "n288": { + "loc": [-85.635237, 41.941855], + "id": "n288" + }, + "n289": { + "loc": [-85.635568, 41.940475], + "id": "n289" + }, + "w57": { + "tags": { + "amenity": "parking" + }, + "id": "w57", + "nodes": ["n289", "n290", "n291", "n292", "n289"] + }, + "n290": { + "loc": [-85.634584, 41.940477], + "id": "n290" + }, + "n291": { + "loc": [-85.634583, 41.940203], + "id": "n291" + }, + "n292": { + "loc": [-85.635567, 41.940201], + "id": "n292" + }, + "w58": { + "id": "w58", + "nodes": ["n240", "n293", "n294"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n293": { + "loc": [-85.635816, 41.942673], + "id": "n293", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n294": { + "loc": [-85.635696, 41.942712], + "id": "n294" + }, + "w59": { + "id": "w59", + "nodes": ["n294", "n295", "n296", "n297", "n298", "n299", "n300", "n301", "n302", "n303", "n491", "n304", "n305", "n306", "n307"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n295": { + "loc": [-85.635679, 41.941962], + "id": "n295" + }, + "n296": { + "loc": [-85.635672, 41.941337], + "id": "n296" + }, + "n297": { + "loc": [-85.635658, 41.941284], + "id": "n297" + }, + "n298": { + "loc": [-85.635602, 41.941166], + "id": "n298" + }, + "n299": { + "loc": [-85.635598, 41.941138], + "id": "n299" + }, + "n300": { + "loc": [-85.635614, 41.941076], + "id": "n300" + }, + "n301": { + "loc": [-85.635659, 41.940956], + "id": "n301" + }, + "n302": { + "loc": [-85.635666, 41.940922], + "id": "n302" + }, + "n303": { + "loc": [-85.635667, 41.940877], + "id": "n303" + }, + "n304": { + "loc": [-85.635668, 41.940655], + "id": "n304" + }, + "n305": { + "loc": [-85.635628, 41.940617], + "id": "n305" + }, + "n306": { + "loc": [-85.635623, 41.940272], + "id": "n306" + }, + "n307": { + "loc": [-85.635651, 41.940183], + "id": "n307" + }, + "w60": { + "id": "w60", + "nodes": ["n239", "n308", "n307"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n308": { + "loc": [-85.63577, 41.940183], + "id": "n308", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n309": { + "loc": [-85.636939, 41.942544], + "id": "n309" + }, + "w61": { + "id": "w61", + "nodes": ["n309", "n310", "n311", "n312", "n313", "n240"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n310": { + "loc": [-85.636323, 41.942552], + "id": "n310" + }, + "n311": { + "loc": [-85.636257, 41.942555], + "id": "n311" + }, + "n312": { + "loc": [-85.636208, 41.942561], + "id": "n312" + }, + "n313": { + "loc": [-85.636159, 41.942573], + "id": "n313" + }, + "w62": { + "id": "w62", + "nodes": ["n876", "n875", "n874", "n873", "n872", "n871", "n870", "n869", "n41", "n868", "n146", "n314", "n315", "n2139858981"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n314": { + "loc": [-85.635743, 41.942881], + "id": "n314" + }, + "n315": { + "loc": [-85.635452, 41.942966], + "id": "n315" + }, + "w63": { + "id": "w63", + "nodes": ["n2139858980", "n316"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n316": { + "loc": [-85.634911, 41.943118], + "id": "n316" + }, + "w64": { + "id": "w64", + "nodes": ["n316", "n317"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "bridge": "yes", + "layer": "1" + } + }, + "n317": { + "loc": [-85.634743, 41.943167], + "id": "n317" + }, + "w65": { + "id": "w65", + "nodes": ["n317", "n318", "n319", "n320", "n321"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n318": { + "loc": [-85.634401, 41.94328], + "id": "n318" + }, + "n319": { + "loc": [-85.634345, 41.943299], + "id": "n319" + }, + "n320": { + "loc": [-85.634287, 41.943326], + "id": "n320" + }, + "n321": { + "loc": [-85.634233, 41.943354], + "id": "n321" + }, + "w66": { + "id": "w66", + "nodes": ["n321", "n322"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "layer": "1" + } + }, + "n322": { + "loc": [-85.634, 41.943484], + "id": "n322" + }, + "w67": { + "id": "w67", + "nodes": ["n322", "n323", "n475"], + "tags": { + "highway": "footway", + "footway": "crossing" + } + }, + "n323": { + "loc": [-85.633958, 41.943507], + "id": "n323", + "tags": { + "highway": "crossing" + } + }, + "n324": { + "loc": [-85.633698, 41.943651], + "id": "n324", + "tags": { + "railway": "crossing" + } + }, + "n325": { + "loc": [-85.633508, 41.943757], + "id": "n325" + }, + "w68": { + "id": "w68", + "nodes": ["n294", "n2139858931", "n326"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n326": { + "loc": [-85.634839, 41.942974], + "id": "n326" + }, + "w69": { + "id": "w69", + "nodes": ["n326", "n327"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "bridge": "yes", + "layer": "1" + } + }, + "n327": { + "loc": [-85.634657, 41.943028], + "id": "n327" + }, + "w70": { + "id": "w70", + "nodes": ["n327", "n328", "n27", "n329"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n328": { + "loc": [-85.634222, 41.943152], + "id": "n328" + }, + "n329": { + "loc": [-85.634076, 41.943217], + "id": "n329" + }, + "n330": { + "id": "n330", + "loc": [-85.634093, 41.943138] + }, + "w71": { + "id": "w71", + "nodes": ["n329", "n331"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "bridge": "yes", + "layer": "1" + } + }, + "n331": { + "loc": [-85.633876, 41.943327], + "id": "n331" + }, + "w72": { + "id": "w72", + "nodes": ["n331", "n344", "n332", "n333", "n334"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n332": { + "loc": [-85.633535, 41.943511], + "id": "n332", + "tags": { + "railway": "crossing" + } + }, + "n333": { + "loc": [-85.63339, 41.943596], + "id": "n333" + }, + "n334": { + "loc": [-85.632842, 41.943895], + "id": "n334" + }, + "n335": { + "loc": [-85.633856, 41.943315], + "id": "n335" + }, + "w73": { + "tags": { + "building": "yes" + }, + "id": "w73", + "nodes": ["n335", "n336", "n337", "n338", "n339", "n340", "n341", "n342", "n335"] + }, + "n336": { + "loc": [-85.633697, 41.943405], + "id": "n336" + }, + "n337": { + "loc": [-85.63347, 41.943181], + "id": "n337" + }, + "n338": { + "loc": [-85.633597, 41.943109], + "id": "n338" + }, + "n339": { + "loc": [-85.633673, 41.943184], + "id": "n339" + }, + "n340": { + "loc": [-85.633714, 41.94316], + "id": "n340" + }, + "n341": { + "loc": [-85.633811, 41.943256], + "id": "n341" + }, + "n342": { + "loc": [-85.633801, 41.943261], + "id": "n342" + }, + "n343": { + "loc": [-85.63374, 41.943514], + "id": "n343" + }, + "w74": { + "id": "w74", + "nodes": ["n343", "n344", "n345"], + "tags": { + "highway": "service" + } + }, + "n344": { + "loc": [-85.633665, 41.943441], + "id": "n344" + }, + "n345": { + "loc": [-85.633162, 41.942947], + "id": "n345" + }, + "n346": { + "loc": [-85.633598, 41.943083], + "id": "n346" + }, + "w75": { + "tags": { + "amenity": "parking" + }, + "id": "w75", + "nodes": ["n346", "n347", "n348", "n349", "n350", "n351", "n346"] + }, + "n347": { + "loc": [-85.63343, 41.943179], + "id": "n347" + }, + "n348": { + "loc": [-85.633669, 41.94341], + "id": "n348" + }, + "n349": { + "loc": [-85.633566, 41.943466], + "id": "n349" + }, + "n350": { + "loc": [-85.633031, 41.942986], + "id": "n350" + }, + "n351": { + "loc": [-85.633238, 41.94283], + "id": "n351" + }, + "w76": { + "tags": { + "highway": "service", + "service": "parking_aisle", + "oneway": "yes" + }, + "id": "w76", + "nodes": [ + "n2139832716", + "n359", + "n2139832721", + "n2139832720", + "n357", + "n356", + "n2139832719", + "n355", + "n354", + "n2139832718", + "n2139832717", + "n353", + "n352", + "n358", + "n2139832716" + ] + }, + "n352": { + "id": "n352", + "loc": [-85.633173, 41.943556] + }, + "n353": { + "id": "n353", + "loc": [-85.633127, 41.943552] + }, + "n354": { + "id": "n354", + "loc": [-85.632745, 41.943222] + }, + "n355": { + "id": "n355", + "loc": [-85.632756, 41.943199] + }, + "n356": { + "id": "n356", + "loc": [-85.632855, 41.943147] + }, + "n357": { + "id": "n357", + "loc": [-85.632888, 41.94315] + }, + "n358": { + "id": "n358", + "loc": [-85.633232, 41.943547] + }, + "n359": { + "id": "n359", + "loc": [-85.633302, 41.94351] + }, + "w77": { + "id": "w77", + "nodes": ["n325", "n360", "n361"], + "tags": { + "highway": "footway", + "footway": "crossing" + } + }, + "n360": { + "loc": [-85.633442, 41.943794], + "id": "n360", + "tags": { + "highway": "crossing" + } + }, + "n361": { + "loc": [-85.633381, 41.94383], + "id": "n361" + }, + "w78": { + "id": "w78", + "nodes": ["n361", "n362", "n369"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n362": { + "loc": [-85.632977, 41.944053], + "id": "n362" + }, + "w79": { + "id": "w79", + "nodes": ["n362", "n363", "n334"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n363": { + "loc": [-85.632915, 41.943981], + "id": "n363", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "w80": { + "id": "w80", + "nodes": ["n334", "n364", "n365"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n364": { + "loc": [-85.632724, 41.943969], + "id": "n364", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n365": { + "loc": [-85.632621, 41.944034], + "id": "n365" + }, + "w81": { + "id": "w81", + "nodes": ["n365", "n366", "n367"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n366": { + "loc": [-85.632684, 41.944109], + "id": "n366", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n367": { + "loc": [-85.632738, 41.944172], + "id": "n367" + }, + "w82": { + "id": "w82", + "nodes": ["n724", "n368", "n369"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n368": { + "loc": [-85.63287, 41.944135], + "id": "n368", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n369": { + "loc": [-85.63298, 41.944076], + "id": "n369" + }, + "n370": { + "id": "n370", + "loc": [-85.633191, 41.944471] + }, + "n371": { + "loc": [-85.633132, 41.94372], + "id": "n371" + }, + "w83": { + "tags": { + "building": "yes" + }, + "id": "w83", + "nodes": ["n371", "n372", "n373", "n374", "n371"] + }, + "n372": { + "loc": [-85.633011, 41.943788], + "id": "n372" + }, + "n373": { + "loc": [-85.632854, 41.943632], + "id": "n373" + }, + "n374": { + "loc": [-85.632974, 41.943565], + "id": "n374" + }, + "w84": { + "id": "w84", + "nodes": ["n374", "n375", "n376", "n377", "n373", "n374"], + "tags": { + "building": "yes" + } + }, + "n375": { + "loc": [-85.632741, 41.943351], + "id": "n375" + }, + "n376": { + "loc": [-85.63251, 41.943481], + "id": "n376" + }, + "n377": { + "loc": [-85.632706, 41.943715], + "id": "n377" + }, + "n378": { + "loc": [-85.632998, 41.943794], + "id": "n378" + }, + "w85": { + "tags": { + "building": "yes" + }, + "id": "w85", + "nodes": ["n378", "n379", "n380", "n381", "n382", "n383", "n378"] + }, + "n379": { + "loc": [-85.632855, 41.943874], + "id": "n379" + }, + "n380": { + "loc": [-85.632755, 41.943777], + "id": "n380" + }, + "n381": { + "loc": [-85.632781, 41.943762], + "id": "n381" + }, + "n382": { + "loc": [-85.632764, 41.943746], + "id": "n382" + }, + "n383": { + "loc": [-85.632881, 41.94368], + "id": "n383" + }, + "n384": { + "loc": [-85.632616, 41.944021], + "id": "n384" + }, + "w86": { + "tags": { + "building": "yes" + }, + "id": "w86", + "nodes": ["n384", "n385", "n386", "n387", "n384"] + }, + "n385": { + "loc": [-85.632319, 41.944172], + "id": "n385" + }, + "n386": { + "loc": [-85.63221, 41.944066], + "id": "n386" + }, + "n387": { + "loc": [-85.632524, 41.943912], + "id": "n387" + }, + "w87": { + "tags": { + "building": "yes" + }, + "id": "w87", + "nodes": ["n387", "n388", "n389", "n386", "n387"] + }, + "n388": { + "loc": [-85.632268, 41.943621], + "id": "n388" + }, + "n389": { + "loc": [-85.631951, 41.943773], + "id": "n389" + }, + "n390": { + "loc": [-85.631981, 41.943654], + "id": "n390" + }, + "w88": { + "tags": { + "building": "yes" + }, + "id": "w88", + "nodes": ["n390", "n391", "n392", "n393", "n390"] + }, + "n391": { + "loc": [-85.631886, 41.943699], + "id": "n391" + }, + "n392": { + "loc": [-85.631807, 41.943606], + "id": "n392" + }, + "n393": { + "loc": [-85.631902, 41.943561], + "id": "n393" + }, + "n394": { + "loc": [-85.63236, 41.943543], + "id": "n394" + }, + "w89": { + "id": "w89", + "nodes": ["n394", "n185988896"], + "tags": { + "highway": "service" + } + }, + "n395": { + "id": "n395", + "loc": [-85.633839, 41.944082] + }, + "n396": { + "id": "n396", + "loc": [-85.63376, 41.944097] + }, + "n397": { + "id": "n397", + "loc": [-85.63361, 41.943957] + }, + "n398": { + "loc": [-85.633309, 41.943886], + "id": "n398" + }, + "w90": { + "tags": { + "building": "yes" + }, + "id": "w90", + "nodes": [ + "n398", + "n399", + "n400", + "n401", + "n402", + "n403", + "n404", + "n405", + "n406", + "n407", + "n408", + "n409", + "n410", + "n411", + "n412", + "n413", + "n414", + "n415", + "n416", + "n417", + "n398" + ] + }, + "n399": { + "loc": [-85.633226, 41.943931], + "id": "n399" + }, + "n400": { + "loc": [-85.63326, 41.943966], + "id": "n400" + }, + "n401": { + "loc": [-85.63324, 41.943976], + "id": "n401" + }, + "n402": { + "loc": [-85.63327, 41.944006], + "id": "n402" + }, + "n403": { + "loc": [-85.633278, 41.944002], + "id": "n403" + }, + "n404": { + "loc": [-85.63331, 41.944036], + "id": "n404" + }, + "n405": { + "loc": [-85.633348, 41.944015], + "id": "n405" + }, + "n406": { + "loc": [-85.63338, 41.944048], + "id": "n406" + }, + "n407": { + "loc": [-85.633431, 41.94402], + "id": "n407" + }, + "n408": { + "loc": [-85.633425, 41.944014], + "id": "n408" + }, + "n409": { + "loc": [-85.633457, 41.943997], + "id": "n409" + }, + "n410": { + "loc": [-85.633429, 41.943969], + "id": "n410" + }, + "n411": { + "loc": [-85.633442, 41.943962], + "id": "n411" + }, + "n412": { + "loc": [-85.633411, 41.943932], + "id": "n412" + }, + "n413": { + "loc": [-85.633421, 41.943926], + "id": "n413" + }, + "n414": { + "loc": [-85.633376, 41.94388], + "id": "n414" + }, + "n415": { + "loc": [-85.633348, 41.943895], + "id": "n415" + }, + "n416": { + "loc": [-85.633341, 41.943888], + "id": "n416" + }, + "n417": { + "loc": [-85.633321, 41.943898], + "id": "n417" + }, + "n418": { + "loc": [-85.633547, 41.943896], + "id": "n418" + }, + "w91": { + "id": "w91", + "nodes": ["n418", "n423", "n419"], + "tags": { + "highway": "service" + } + }, + "n419": { + "loc": [-85.633467, 41.944075], + "id": "n419" + }, + "n420": { + "loc": [-85.633578, 41.944055], + "id": "n420" + }, + "w92": { + "tags": { + "amenity": "parking" + }, + "id": "w92", + "nodes": ["n420", "n421", "n422", "n423", "n420"] + }, + "n421": { + "loc": [-85.633462, 41.944125], + "id": "n421" + }, + "n422": { + "loc": [-85.633372, 41.944061], + "id": "n422" + }, + "n423": { + "loc": [-85.633509, 41.943981], + "id": "n423" + }, + "n424": { + "id": "n424", + "loc": [-85.635421, 41.945367] + }, + "w93": { + "tags": { + "name": "Rocky River", + "waterway": "river", + "tunnel": "building_passage" + }, + "id": "w93", + "nodes": ["n2139877106", "n1819848909", "n1819848930"] + }, + "w94": { + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "id": "w94", + "nodes": ["n1819848930", "n1819848888"] + }, + "n425": { + "loc": [-85.634425, 41.943552], + "id": "n425" + }, + "w95": { + "tags": { + "building": "yes" + }, + "id": "w95", + "nodes": ["n425", "n426", "n427", "n428", "n425"] + }, + "n426": { + "loc": [-85.634248, 41.943654], + "id": "n426" + }, + "n427": { + "loc": [-85.634177, 41.943585], + "id": "n427" + }, + "n428": { + "loc": [-85.634354, 41.943484], + "id": "n428" + }, + "n429": { + "loc": [-85.634325, 41.943465], + "id": "n429" + }, + "w96": { + "tags": { + "building": "yes" + }, + "id": "w96", + "nodes": ["n429", "n430", "n431", "n432", "n433", "n434", "n429"] + }, + "n430": { + "loc": [-85.634249, 41.943508], + "id": "n430" + }, + "n431": { + "loc": [-85.63423, 41.943489], + "id": "n431" + }, + "n432": { + "loc": [-85.634215, 41.943498], + "id": "n432" + }, + "n433": { + "loc": [-85.634145, 41.943428], + "id": "n433" + }, + "n434": { + "loc": [-85.634235, 41.943377], + "id": "n434" + }, + "n435": { + "loc": [-85.634427, 41.943533], + "id": "n435" + }, + "w97": { + "id": "w97", + "nodes": ["n435", "n451", "n321"], + "tags": { + "highway": "footway" + } + }, + "n436": { + "loc": [-85.634273, 41.943235], + "id": "n436" + }, + "w98": { + "id": "w98", + "nodes": ["n436", "n319", "n437", "n438", "n439", "n440", "n441", "n476", "n442"], + "tags": { + "highway": "service" + } + }, + "n437": { + "loc": [-85.634499, 41.943461], + "id": "n437" + }, + "n438": { + "loc": [-85.634514, 41.943486], + "id": "n438" + }, + "n439": { + "loc": [-85.63452, 41.943511], + "id": "n439" + }, + "n440": { + "loc": [-85.63451, 41.943534], + "id": "n440" + }, + "n441": { + "loc": [-85.634483, 41.943556], + "id": "n441" + }, + "n442": { + "loc": [-85.63419, 41.943713], + "id": "n442" + }, + "n443": { + "loc": [-85.634462, 41.943294], + "id": "n443" + }, + "w99": { + "tags": { + "amenity": "parking" + }, + "id": "w99", + "nodes": ["n443", "n444", "n445", "n446", "n447", "n448", "n449", "n450", "n443"] + }, + "n444": { + "loc": [-85.634298, 41.943389], + "id": "n444" + }, + "n445": { + "loc": [-85.634527, 41.943623], + "id": "n445" + }, + "n446": { + "loc": [-85.634608, 41.943577], + "id": "n446" + }, + "n447": { + "loc": [-85.634555, 41.943531], + "id": "n447" + }, + "n448": { + "loc": [-85.634555, 41.943482], + "id": "n448" + }, + "n449": { + "loc": [-85.634509, 41.943427], + "id": "n449" + }, + "n450": { + "loc": [-85.63453, 41.943365], + "id": "n450" + }, + "n451": { + "loc": [-85.634356, 41.943468], + "id": "n451" + }, + "w100": { + "id": "w100", + "nodes": ["n451", "n452"], + "tags": { + "highway": "footway" + } + }, + "n452": { + "loc": [-85.634123, 41.943596], + "id": "n452" + }, + "n453": { + "id": "n453", + "loc": [-85.634709, 41.943926] + }, + "n454": { + "id": "n454", + "loc": [-85.63525, 41.943855] + }, + "n455": { + "id": "n455", + "loc": [-85.635224, 41.943869] + }, + "n456": { + "id": "n456", + "loc": [-85.635152, 41.943868] + }, + "n457": { + "id": "n457", + "loc": [-85.635186, 41.943901] + }, + "n458": { + "id": "n458", + "loc": [-85.635162, 41.943917] + }, + "n459": { + "id": "n459", + "loc": [-85.634856, 41.943905] + }, + "n460": { + "id": "n460", + "loc": [-85.634811, 41.944007] + }, + "n461": { + "loc": [-85.634987, 41.943112], + "id": "n461" + }, + "w101": { + "id": "w101", + "nodes": ["n461", "n462", "n463", "n464", "n465", "n466"], + "tags": { + "barrier": "fence" + } + }, + "n462": { + "loc": [-85.634698, 41.943194], + "id": "n462" + }, + "n463": { + "loc": [-85.634632, 41.943219], + "id": "n463" + }, + "n464": { + "loc": [-85.63459, 41.943239], + "id": "n464" + }, + "n465": { + "loc": [-85.634555, 41.943263], + "id": "n465" + }, + "n466": { + "loc": [-85.634526, 41.943289], + "id": "n466" + }, + "n467": { + "loc": [-85.635163, 41.944985], + "id": "n467" + }, + "w102": { + "tags": { + "amenity": "parking" + }, + "id": "w102", + "nodes": ["n467", "n468", "n469", "n470", "n472", "n467"] + }, + "n468": { + "loc": [-85.635095, 41.945035], + "id": "n468" + }, + "n469": { + "loc": [-85.634269, 41.944431], + "id": "n469" + }, + "n470": { + "loc": [-85.634352, 41.944376], + "id": "n470" + }, + "w103": { + "id": "w103", + "nodes": ["n2166205688", "n2130304155", "n471", "n472"], + "tags": { + "highway": "footway" + } + }, + "n471": { + "loc": [-85.634747, 41.944561], + "id": "n471", + "tags": { + "railway": "crossing" + } + }, + "n472": { + "loc": [-85.634667, 41.944613], + "id": "n472" + }, + "n473": { + "loc": [-85.634161, 41.944371], + "id": "n473" + }, + "w104": { + "id": "w104", + "nodes": ["n473", "n474", "n325"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n474": { + "loc": [-85.633861, 41.944117], + "id": "n474" + }, + "n475": { + "id": "n475", + "loc": [-85.633906, 41.943535] + }, + "w105": { + "tags": { + "highway": "footway", + "footway": "sidewalk" + }, + "id": "w105", + "nodes": ["n475", "n324", "n325"] + }, + "w106": { + "id": "w106", + "nodes": ["n322", "n452", "n476"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n476": { + "loc": [-85.63423, 41.943692], + "id": "n476" + }, + "n477": { + "id": "n477", + "loc": [-85.635096, 41.942814] + }, + "n478": { + "id": "n478", + "loc": [-85.635058, 41.942795] + }, + "n479": { + "id": "n479", + "loc": [-85.635002, 41.94279] + }, + "n480": { + "id": "n480", + "loc": [-85.634908, 41.94279] + }, + "n481": { + "id": "n481", + "loc": [-85.634478, 41.942342] + }, + "n482": { + "id": "n482", + "loc": [-85.634521, 41.942254] + }, + "n483": { + "id": "n483", + "loc": [-85.63425, 41.941819] + }, + "n484": { + "id": "n484", + "loc": [-85.634324, 41.942131] + }, + "n485": { + "loc": [-85.634211, 41.941374], + "id": "n485" + }, + "w107": { + "id": "w107", + "nodes": ["n485", "n486", "n18"], + "tags": { + "highway": "service" + } + }, + "n486": { + "loc": [-85.634085, 41.940704], + "id": "n486" + }, + "w108": { + "id": "w108", + "nodes": ["n300", "n487", "n488", "n489", "n490"], + "tags": { + "highway": "footway" + } + }, + "n487": { + "loc": [-85.635567, 41.940944], + "id": "n487" + }, + "n488": { + "loc": [-85.635542, 41.940919], + "id": "n488" + }, + "n489": { + "loc": [-85.635514, 41.940906], + "id": "n489" + }, + "n490": { + "loc": [-85.635469, 41.940896], + "id": "n490" + }, + "w109": { + "id": "w109", + "nodes": ["n490", "n491"], + "tags": { + "highway": "footway" + } + }, + "n491": { + "loc": [-85.635667, 41.940826], + "id": "n491" + }, + "n492": { + "loc": [-85.636197, 41.940599], + "id": "n492" + }, + "w110": { + "tags": { + "building": "yes" + }, + "id": "w110", + "nodes": ["n492", "n493", "n494", "n495", "n496", "n497", "n492"] + }, + "n493": { + "loc": [-85.6362, 41.940686], + "id": "n493" + }, + "n494": { + "loc": [-85.635969, 41.94069], + "id": "n494" + }, + "n495": { + "loc": [-85.635965, 41.940561], + "id": "n495" + }, + "n496": { + "loc": [-85.636031, 41.94056], + "id": "n496" + }, + "n497": { + "loc": [-85.636032, 41.940602], + "id": "n497" + }, + "n498": { + "loc": [-85.635776, 41.940583], + "id": "n498" + }, + "w111": { + "id": "w111", + "nodes": ["n498", "n499", "n511"], + "tags": { + "highway": "service" + } + }, + "n499": { + "loc": [-85.63589, 41.940578], + "id": "n499" + }, + "n500": { + "loc": [-85.636198, 41.940578], + "id": "n500" + }, + "n501": { + "loc": [-85.636251, 41.940584], + "id": "n501" + }, + "n502": { + "loc": [-85.636279, 41.940605], + "id": "n502" + }, + "n503": { + "loc": [-85.636285, 41.940633], + "id": "n503" + }, + "n504": { + "loc": [-85.636281, 41.940662], + "id": "n504" + }, + "n505": { + "loc": [-85.636266, 41.940688], + "id": "n505" + }, + "n506": { + "loc": [-85.636236, 41.940701], + "id": "n506" + }, + "n507": { + "loc": [-85.63619, 41.940706], + "id": "n507" + }, + "n508": { + "loc": [-85.635892, 41.940707], + "id": "n508" + }, + "n509": { + "loc": [-85.635777, 41.9407], + "id": "n509" + }, + "n510": { + "id": "n510", + "loc": [-85.636044, 41.940578] + }, + "w112": { + "tags": { + "highway": "service" + }, + "id": "w112", + "nodes": ["n510", "n500", "n501", "n502", "n503", "n504", "n505", "n506", "n507", "n508", "n509"] + }, + "n511": { + "id": "n511", + "loc": [-85.635946, 41.940578] + }, + "w113": { + "tags": { + "highway": "service", + "covered": "yes" + }, + "id": "w113", + "nodes": ["n511", "n510"] + }, + "n512": { + "loc": [-85.636475, 41.940732], + "id": "n512" + }, + "w114": { + "tags": { + "building": "yes" + }, + "id": "w114", + "nodes": ["n512", "n513", "n514", "n515", "n512"] + }, + "n513": { + "loc": [-85.636475, 41.940777], + "id": "n513" + }, + "n514": { + "loc": [-85.636405, 41.940777], + "id": "n514" + }, + "n515": { + "loc": [-85.636405, 41.940732], + "id": "n515" + }, + "n516": { + "loc": [-85.636471, 41.940916], + "id": "n516" + }, + "w115": { + "tags": { + "building": "yes" + }, + "id": "w115", + "nodes": ["n516", "n517", "n518", "n519", "n516"] + }, + "n517": { + "loc": [-85.636471, 41.940961], + "id": "n517" + }, + "n518": { + "loc": [-85.636404, 41.940961], + "id": "n518" + }, + "n519": { + "loc": [-85.636404, 41.940916], + "id": "n519" + }, + "n520": { + "loc": [-85.636286, 41.941127], + "id": "n520" + }, + "w116": { + "tags": { + "building": "yes" + }, + "id": "w116", + "nodes": ["n520", "n521", "n522", "n523", "n520"] + }, + "n521": { + "loc": [-85.636203, 41.941126], + "id": "n521" + }, + "n522": { + "loc": [-85.636204, 41.941083], + "id": "n522" + }, + "n523": { + "loc": [-85.636287, 41.941083], + "id": "n523" + }, + "n524": { + "loc": [-85.636124, 41.941064], + "id": "n524" + }, + "w117": { + "tags": { + "building": "yes" + }, + "id": "w117", + "nodes": ["n524", "n525", "n526", "n527", "n528", "n529", "n530", "n531", "n532", "n533", "n534", "n535", "n524"] + }, + "n525": { + "loc": [-85.636, 41.941065], + "id": "n525" + }, + "n526": { + "loc": [-85.636, 41.940964], + "id": "n526" + }, + "n527": { + "loc": [-85.636045, 41.940964], + "id": "n527" + }, + "n528": { + "loc": [-85.636045, 41.940928], + "id": "n528" + }, + "n529": { + "loc": [-85.636111, 41.940928], + "id": "n529" + }, + "n530": { + "loc": [-85.636111, 41.940961], + "id": "n530" + }, + "n531": { + "loc": [-85.636123, 41.940961], + "id": "n531" + }, + "n532": { + "loc": [-85.636124, 41.940997], + "id": "n532" + }, + "n533": { + "loc": [-85.636164, 41.940997], + "id": "n533" + }, + "n534": { + "loc": [-85.636164, 41.941044], + "id": "n534" + }, + "n535": { + "loc": [-85.636124, 41.941044], + "id": "n535" + }, + "n536": { + "loc": [-85.636534, 41.941256], + "id": "n536" + }, + "w118": { + "tags": { + "building": "yes" + }, + "id": "w118", + "nodes": ["n536", "n537", "n538", "n539", "n536"] + }, + "n537": { + "loc": [-85.63645, 41.941246], + "id": "n537" + }, + "n538": { + "loc": [-85.636462, 41.941189], + "id": "n538" + }, + "n539": { + "loc": [-85.636546, 41.941199], + "id": "n539" + }, + "n540": { + "loc": [-85.636802, 41.941226], + "id": "n540" + }, + "w119": { + "tags": { + "building": "yes" + }, + "id": "w119", + "nodes": ["n540", "n541", "n542", "n543", "n544", "n545", "n546", "n547", "n540"] + }, + "n541": { + "loc": [-85.636701, 41.941215], + "id": "n541" + }, + "n542": { + "loc": [-85.636709, 41.941174], + "id": "n542" + }, + "n543": { + "loc": [-85.636656, 41.941168], + "id": "n543" + }, + "n544": { + "loc": [-85.636666, 41.941122], + "id": "n544" + }, + "n545": { + "loc": [-85.636781, 41.941136], + "id": "n545" + }, + "n546": { + "loc": [-85.636774, 41.94117], + "id": "n546" + }, + "n547": { + "loc": [-85.636812, 41.941175], + "id": "n547" + }, + "n548": { + "loc": [-85.636803, 41.941047], + "id": "n548" + }, + "w120": { + "tags": { + "building": "yes" + }, + "id": "w120", + "nodes": ["n548", "n549", "n550", "n551", "n552", "n553", "n554", "n555", "n556", "n557", "n548"] + }, + "n549": { + "loc": [-85.636785, 41.941047], + "id": "n549" + }, + "n550": { + "loc": [-85.636785, 41.941058], + "id": "n550" + }, + "n551": { + "loc": [-85.636644, 41.941059], + "id": "n551" + }, + "n552": { + "loc": [-85.636644, 41.941038], + "id": "n552" + }, + "n553": { + "loc": [-85.636581, 41.941039], + "id": "n553" + }, + "n554": { + "loc": [-85.636581, 41.940995], + "id": "n554" + }, + "n555": { + "loc": [-85.636746, 41.940995], + "id": "n555" + }, + "n556": { + "loc": [-85.636746, 41.940978], + "id": "n556" + }, + "n557": { + "loc": [-85.636803, 41.940978], + "id": "n557" + }, + "n558": { + "loc": [-85.636781, 41.940768], + "id": "n558" + }, + "w121": { + "tags": { + "building": "yes" + }, + "id": "w121", + "nodes": ["n558", "n559", "n560", "n561", "n562", "n563", "n564", "n565", "n558"] + }, + "n559": { + "loc": [-85.636783, 41.940828], + "id": "n559" + }, + "n560": { + "loc": [-85.636761, 41.940828], + "id": "n560" + }, + "n561": { + "loc": [-85.636762, 41.940857], + "id": "n561" + }, + "n562": { + "loc": [-85.636641, 41.940859], + "id": "n562" + }, + "n563": { + "loc": [-85.63664, 41.940805], + "id": "n563" + }, + "n564": { + "loc": [-85.636676, 41.940804], + "id": "n564" + }, + "n565": { + "loc": [-85.636675, 41.940769], + "id": "n565" + }, + "n566": { + "loc": [-85.636733, 41.94033], + "id": "n566" + }, + "w122": { + "tags": { + "building": "yes" + }, + "id": "w122", + "nodes": ["n566", "n567", "n568", "n569", "n566"] + }, + "n567": { + "loc": [-85.636471, 41.940334], + "id": "n567" + }, + "n568": { + "loc": [-85.636469, 41.940262], + "id": "n568" + }, + "n569": { + "loc": [-85.636731, 41.940257], + "id": "n569" + }, + "n570": { + "loc": [-85.636798, 41.940419], + "id": "n570" + }, + "w123": { + "tags": { + "building": "yes" + }, + "id": "w123", + "nodes": ["n570", "n571", "n572", "n573", "n570"] + }, + "n571": { + "loc": [-85.6368, 41.940524], + "id": "n571" + }, + "n572": { + "loc": [-85.63664, 41.940526], + "id": "n572" + }, + "n573": { + "loc": [-85.636638, 41.940421], + "id": "n573" + }, + "n574": { + "loc": [-85.636372, 41.940551], + "id": "n574" + }, + "w124": { + "tags": { + "building": "yes" + }, + "id": "w124", + "nodes": ["n574", "n575", "n576", "n577", "n574"] + }, + "n575": { + "loc": [-85.636338, 41.94055], + "id": "n575" + }, + "n576": { + "loc": [-85.636339, 41.940524], + "id": "n576" + }, + "n577": { + "loc": [-85.636373, 41.940525], + "id": "n577" + }, + "n578": { + "loc": [-85.636388, 41.940435], + "id": "n578" + }, + "w125": { + "tags": { + "building": "yes" + }, + "id": "w125", + "nodes": ["n578", "n579", "n580", "n581", "n578"] + }, + "n579": { + "loc": [-85.636222, 41.940436], + "id": "n579" + }, + "n580": { + "loc": [-85.636222, 41.940366], + "id": "n580" + }, + "n581": { + "loc": [-85.636387, 41.940365], + "id": "n581" + }, + "n582": { + "loc": [-85.636158, 41.940482], + "id": "n582" + }, + "w126": { + "tags": { + "building": "yes" + }, + "id": "w126", + "nodes": ["n582", "n583", "n584", "n585", "n582"] + }, + "n583": { + "loc": [-85.635963, 41.940484], + "id": "n583" + }, + "n584": { + "loc": [-85.635961, 41.940399], + "id": "n584" + }, + "n585": { + "loc": [-85.636156, 41.940397], + "id": "n585" + }, + "w127": { + "tags": { + "building": "yes" + }, + "id": "w127", + "nodes": ["n586", "n587", "n588", "n589", "n590", "n591", "n592", "n593", "n586"] + }, + "n586": { + "loc": [-85.635987, 41.940314], + "id": "n586" + }, + "n587": { + "loc": [-85.635987, 41.940268], + "id": "n587" + }, + "n588": { + "loc": [-85.635968, 41.940268], + "id": "n588" + }, + "n589": { + "loc": [-85.635967, 41.940212], + "id": "n589" + }, + "n590": { + "loc": [-85.636082, 41.940211], + "id": "n590" + }, + "n591": { + "loc": [-85.636083, 41.94027], + "id": "n591" + }, + "n592": { + "loc": [-85.636064, 41.94027], + "id": "n592" + }, + "n593": { + "loc": [-85.636064, 41.940313], + "id": "n593" + }, + "n594": { + "loc": [-85.638071, 41.941562], + "id": "n594" + }, + "w128": { + "tags": { + "building": "yes" + }, + "id": "w128", + "nodes": ["n594", "n595", "n596", "n597", "n598", "n599", "n600", "n601", "n594"] + }, + "n595": { + "loc": [-85.637953, 41.941562], + "id": "n595" + }, + "n596": { + "loc": [-85.637952, 41.941522], + "id": "n596" + }, + "n597": { + "loc": [-85.637876, 41.941523], + "id": "n597" + }, + "n598": { + "loc": [-85.637876, 41.941471], + "id": "n598" + }, + "n599": { + "loc": [-85.638035, 41.94147], + "id": "n599" + }, + "n600": { + "loc": [-85.638035, 41.941513], + "id": "n600" + }, + "n601": { + "loc": [-85.638071, 41.941512], + "id": "n601" + }, + "w129": { + "id": "w129", + "nodes": ["n309", "n602", "n603"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n602": { + "loc": [-85.637038, 41.942543], + "id": "n602", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n603": { + "loc": [-85.637134, 41.942542], + "id": "n603" + }, + "w130": { + "id": "w130", + "nodes": ["n603", "n604"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n604": { + "loc": [-85.638122, 41.942532], + "id": "n604" + }, + "w131": { + "id": "w131", + "nodes": ["n604", "n605", "n606"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n605": { + "loc": [-85.638121, 41.942478], + "id": "n605" + }, + "n606": { + "loc": [-85.638104, 41.941424], + "id": "n606" + }, + "w132": { + "id": "w132", + "nodes": ["n606", "n607"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n607": { + "loc": [-85.637115, 41.941438], + "id": "n607" + }, + "w133": { + "id": "w133", + "nodes": ["n607", "n610", "n608", "n603"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n608": { + "loc": [-85.637133, 41.942453], + "id": "n608" + }, + "n609": { + "loc": [-85.637429, 41.942004], + "id": "n609" + }, + "w134": { + "id": "w134", + "nodes": ["n609", "n610", "n611"], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "unpaved" + } + }, + "n610": { + "loc": [-85.637125, 41.942004], + "id": "n610" + }, + "n611": { + "loc": [-85.637022, 41.942004], + "id": "n611" + }, + "w135": { + "tags": { + "highway": "service" + }, + "id": "w135", + "nodes": ["n244", "n245", "n246"] + }, + "n612": { + "loc": [-85.635952, 41.943579], + "id": "n612" + }, + "w136": { + "tags": { + "amenity": "shelter" + }, + "id": "w136", + "nodes": ["n612", "n613", "n614", "n615", "n612"] + }, + "n613": { + "loc": [-85.635872, 41.943594], + "id": "n613" + }, + "n614": { + "loc": [-85.635857, 41.943551], + "id": "n614" + }, + "n615": { + "loc": [-85.635937, 41.943535], + "id": "n615" + }, + "n616": { + "id": "n616", + "loc": [-85.63671, 41.94344] + }, + "n617": { + "id": "n617", + "loc": [-85.636427, 41.94334] + }, + "n618": { + "id": "n618", + "loc": [-85.635353, 41.943279] + }, + "n619": { + "id": "n619", + "loc": [-85.635319, 41.943257] + }, + "n620": { + "id": "n620", + "loc": [-85.634983, 41.943139] + }, + "n621": { + "id": "n621", + "loc": [-85.634966, 41.943148] + }, + "n622": { + "id": "n622", + "loc": [-85.635012, 41.943119] + }, + "n623": { + "id": "n623", + "loc": [-85.632409, 41.944222] + }, + "w137": { + "tags": { + "highway": "residential", + "name": "Foster Street" + }, + "id": "w137", + "nodes": [ + "n1819858522", + "n2139832682", + "n1819858510", + "n1819858520", + "n1819858502", + "n2139832680", + "n185963451", + "n1819858527", + "n629", + "n185963452", + "n630", + "n185963453", + "n185963454", + "n185963455", + "n185963456" + ] + }, + "n624": { + "id": "n624", + "loc": [-85.631863, 41.944749] + }, + "w138": { + "id": "w138", + "nodes": ["n1819858522", "n625", "n626", "n627"], + "tags": { + "highway": "residential", + "name": "Foster Street", + "oneway": "yes" + } + }, + "n625": { + "loc": [-85.631915, 41.944722], + "id": "n625" + }, + "n626": { + "loc": [-85.631884, 41.94464], + "id": "n626" + }, + "n627": { + "loc": [-85.631792, 41.944359], + "id": "n627" + }, + "n628": { + "id": "n628", + "loc": [-85.631817, 41.944703] + }, + "n629": { + "id": "n629", + "loc": [-85.633464, 41.945787] + }, + "n630": { + "id": "n630", + "loc": [-85.633583, 41.945919] + }, + "w139": { + "id": "w139", + "nodes": ["n630", "n631", "n632", "n1819858527"], + "tags": { + "highway": "service" + } + }, + "n631": { + "loc": [-85.633798, 41.945718], + "id": "n631" + }, + "n632": { + "loc": [-85.633661, 41.945588], + "id": "n632" + }, + "n633": { + "id": "n633", + "loc": [-85.634217, 41.946824] + }, + "n634": { + "id": "n634", + "loc": [-85.634271, 41.946836] + }, + "n635": { + "id": "n635", + "loc": [-85.634319, 41.94573] + }, + "n636": { + "id": "n636", + "loc": [-85.634377, 41.945672] + }, + "n637": { + "loc": [-85.634909, 41.945354], + "id": "n637" + }, + "w140": { + "id": "w140", + "nodes": ["n643", "n637", "n715", "n185978375"], + "tags": { + "highway": "footway", + "name": "Mural Mall" + } + }, + "n638": { + "loc": [-85.634726, 41.945493], + "id": "n638", + "tags": { + "tourism": "artwork", + "artwork_type": "mural" + } + }, + "n639": { + "loc": [-85.63546, 41.945612], + "id": "n639" + }, + "w141": { + "id": "w141", + "nodes": ["n639", "n2139824799"], + "tags": { + "barrier": "wall" + } + }, + "n640": { + "loc": [-85.635561, 41.945493], + "id": "n640" + }, + "w142": { + "id": "w142", + "nodes": ["n640", "n641", "n645", "n642", "n660", "n643", "n644"], + "tags": { + "highway": "service" + } + }, + "n641": { + "loc": [-85.635417, 41.945565], + "id": "n641" + }, + "n642": { + "loc": [-85.635315, 41.945583], + "id": "n642" + }, + "n643": { + "loc": [-85.63506, 41.945383], + "id": "n643" + }, + "n644": { + "loc": [-85.635198, 41.945199], + "id": "n644" + }, + "n645": { + "id": "n645", + "loc": [-85.635361, 41.94558] + }, + "n646": { + "loc": [-85.635017, 41.945066], + "id": "n646" + }, + "w143": { + "id": "w143", + "nodes": ["n646", "n647"], + "tags": { + "highway": "service" + } + }, + "n647": { + "loc": [-85.634779, 41.945206], + "id": "n647" + }, + "n648": { + "loc": [-85.63425, 41.945655], + "id": "n648" + }, + "n649": { + "id": "n649", + "loc": [-85.634247, 41.945631] + }, + "n650": { + "id": "n650", + "loc": [-85.634889, 41.945921] + }, + "n651": { + "id": "n651", + "loc": [-85.634889, 41.945939] + }, + "n652": { + "id": "n652", + "loc": [-85.634889, 41.945761] + }, + "n653": { + "id": "n653", + "loc": [-85.634889, 41.945778] + }, + "n654": { + "loc": [-85.635112, 41.945715], + "id": "n654" + }, + "w144": { + "id": "w144", + "nodes": ["n654", "n655", "n656"], + "tags": { + "barrier": "wall" + } + }, + "n655": { + "loc": [-85.635025, 41.945714], + "id": "n655" + }, + "n656": { + "loc": [-85.635027, 41.945761], + "id": "n656" + }, + "n657": { + "id": "n657", + "loc": [-85.635438, 41.945665] + }, + "n658": { + "id": "n658", + "loc": [-85.635416, 41.945676] + }, + "n659": { + "id": "n659", + "loc": [-85.635401, 41.945709] + }, + "n660": { + "id": "n660", + "loc": [-85.635271, 41.945566] + }, + "n661": { + "id": "n661", + "loc": [-85.636106, 41.946268] + }, + "n662": { + "id": "n662", + "loc": [-85.635867, 41.946747] + }, + "n663": { + "id": "n663", + "loc": [-85.636476, 41.946797] + }, + "n664": { + "id": "n664", + "loc": [-85.63651, 41.946796] + }, + "n665": { + "loc": [-85.635367, 41.946389], + "id": "n665" + }, + "w145": { + "id": "w145", + "nodes": ["n665", "n666", "n667"], + "tags": { + "barrier": "wall" + } + }, + "n666": { + "loc": [-85.635367, 41.946437], + "id": "n666" + }, + "n667": { + "loc": [-85.634787, 41.946441], + "id": "n667" + }, + "w146": { + "tags": { + "highway": "service", + "service": "parking_aisle", + "oneway": "yes" + }, + "id": "w146", + "nodes": ["n2189153257", "n662", "n2189153246"] + }, + "n668": { + "loc": [-85.6358, 41.946243], + "id": "n668" + }, + "n669": { + "id": "n669", + "loc": [-85.635784, 41.94622] + }, + "n670": { + "id": "n670", + "loc": [-85.635727, 41.946195] + }, + "n671": { + "id": "n671", + "loc": [-85.635708, 41.946588] + }, + "n672": { + "id": "n672", + "loc": [-85.635648, 41.946561] + }, + "n673": { + "id": "n673", + "loc": [-85.635624, 41.946555] + }, + "w147": { + "id": "w147", + "nodes": ["n2189153255", "n674"], + "tags": { + "highway": "service", + "oneway": "yes" + } + }, + "n674": { + "loc": [-85.635417, 41.946559], + "id": "n674" + }, + "n675": { + "id": "n675", + "loc": [-85.634866, 41.946561] + }, + "n676": { + "id": "n676", + "loc": [-85.634866, 41.946543] + }, + "n677": { + "id": "n677", + "loc": [-85.635085, 41.946546] + }, + "n678": { + "id": "n678", + "loc": [-85.635085, 41.946554] + }, + "n679": { + "id": "n679", + "loc": [-85.634584, 41.94488] + }, + "n680": { + "id": "n680", + "loc": [-85.634557, 41.944882] + }, + "n681": { + "id": "n681", + "loc": [-85.634455, 41.944943] + }, + "n682": { + "id": "n682", + "loc": [-85.634305, 41.944968] + }, + "n683": { + "id": "n683", + "loc": [-85.634261, 41.944927] + }, + "w148": { + "tags": { + "building": "yes" + }, + "id": "w148", + "nodes": ["n2139824720", "n2139824713", "n2139824689", "n684", "n2139824702", "n2139824720"] + }, + "n684": { + "loc": [-85.634132, 41.944741], + "id": "n684" + }, + "w149": { + "tags": { + "building": "yes" + }, + "id": "w149", + "nodes": ["n2139824705", "n685", "n686", "n687", "n2139824705"] + }, + "n685": { + "loc": [-85.633705, 41.944759], + "id": "n685" + }, + "n686": { + "loc": [-85.633918, 41.944616], + "id": "n686" + }, + "n687": { + "loc": [-85.633974, 41.944663], + "id": "n687" + }, + "w150": { + "tags": { + "building": "yes" + }, + "id": "w150", + "nodes": ["n685", "n688", "n689", "n690", "n691", "n692", "n686", "n685"] + }, + "n688": { + "loc": [-85.6336, 41.944665], + "id": "n688" + }, + "n689": { + "loc": [-85.633817, 41.944528], + "id": "n689" + }, + "n690": { + "loc": [-85.633889, 41.944485], + "id": "n690" + }, + "n691": { + "loc": [-85.633931, 41.944525], + "id": "n691" + }, + "n692": { + "loc": [-85.633864, 41.944563], + "id": "n692" + }, + "w151": { + "tags": { + "building": "yes" + }, + "id": "w151", + "nodes": ["n688", "n693", "n694", "n689", "n688"] + }, + "n693": { + "loc": [-85.633456, 41.944524], + "id": "n693" + }, + "n694": { + "loc": [-85.633676, 41.944399], + "id": "n694" + }, + "w152": { + "tags": { + "building": "yes" + }, + "id": "w152", + "nodes": ["n693", "n695", "n702", "n696", "n697", "n694", "n693"] + }, + "n695": { + "loc": [-85.633352, 41.944415], + "id": "n695" + }, + "n696": { + "loc": [-85.633655, 41.944234], + "id": "n696" + }, + "n697": { + "loc": [-85.633761, 41.94435], + "id": "n697" + }, + "w153": { + "tags": { + "building": "yes" + }, + "id": "w153", + "nodes": ["n695", "n698", "n699", "n700", "n701", "n702", "n695"] + }, + "n698": { + "loc": [-85.633254, 41.944318], + "id": "n698" + }, + "n699": { + "loc": [-85.633472, 41.944188], + "id": "n699" + }, + "n700": { + "loc": [-85.633524, 41.944237], + "id": "n700" + }, + "n701": { + "loc": [-85.633583, 41.944202], + "id": "n701" + }, + "n702": { + "loc": [-85.633632, 41.944247], + "id": "n702" + }, + "w154": { + "tags": { + "building": "yes" + }, + "id": "w154", + "nodes": ["n698", "n703", "n707", "n704", "n699", "n698"] + }, + "n703": { + "loc": [-85.633165, 41.944228], + "id": "n703" + }, + "n704": { + "loc": [-85.633388, 41.944105], + "id": "n704" + }, + "w155": { + "tags": { + "building": "yes" + }, + "id": "w155", + "nodes": ["n703", "n705", "n706", "n707", "n703"] + }, + "n705": { + "loc": [-85.633117, 41.944175], + "id": "n705" + }, + "n706": { + "loc": [-85.633302, 41.944077], + "id": "n706" + }, + "n707": { + "loc": [-85.633352, 41.944126], + "id": "n707" + }, + "w156": { + "tags": { + "building": "yes" + }, + "id": "w156", + "nodes": ["n705", "n708", "n709", "n706", "n705"] + }, + "n708": { + "loc": [-85.633052, 41.944107], + "id": "n708" + }, + "n709": { + "loc": [-85.633237, 41.944009], + "id": "n709" + }, + "w157": { + "tags": { + "building": "yes" + }, + "id": "w157", + "nodes": ["n709", "n710", "n711", "n708", "n709"] + }, + "n710": { + "loc": [-85.633187, 41.943955], + "id": "n710" + }, + "n711": { + "loc": [-85.633, 41.944054], + "id": "n711" + }, + "w158": { + "id": "w158", + "nodes": ["n369", "n712", "n725", "n713", "n714", "n715", "n727", "n716", "n717", "n718", "n719"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n712": { + "loc": [-85.633155, 41.944265], + "id": "n712" + }, + "n713": { + "loc": [-85.633669, 41.944765], + "id": "n713" + }, + "n714": { + "loc": [-85.634468, 41.945503], + "id": "n714" + }, + "n715": { + "loc": [-85.63455, 41.945566], + "id": "n715" + }, + "n716": { + "loc": [-85.634737, 41.945729], + "id": "n716" + }, + "n717": { + "loc": [-85.634753, 41.945752], + "id": "n717" + }, + "n718": { + "loc": [-85.634756, 41.945781], + "id": "n718" + }, + "n719": { + "loc": [-85.634758, 41.945978], + "id": "n719" + }, + "w159": { + "id": "w159", + "nodes": ["n714", "n720", "n721"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n720": { + "loc": [-85.634363, 41.945548], + "id": "n720", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n721": { + "loc": [-85.634245, 41.945599], + "id": "n721" + }, + "w160": { + "id": "w160", + "nodes": ["n729", "n721", "n722", "n723", "n724"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n722": { + "loc": [-85.633474, 41.944889], + "id": "n722" + }, + "n723": { + "loc": [-85.632997, 41.944418], + "id": "n723" + }, + "n724": { + "loc": [-85.63278, 41.944183], + "id": "n724" + }, + "n725": { + "id": "n725", + "loc": [-85.63331, 41.944429] + }, + "w161": { + "id": "w161", + "nodes": ["n713", "n726", "n722"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n726": { + "loc": [-85.633575, 41.944824], + "id": "n726", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n727": { + "loc": [-85.634669, 41.94567], + "id": "n727" + }, + "w162": { + "id": "w162", + "nodes": ["n727", "n185978377", "n728"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n728": { + "loc": [-85.634469, 41.945784], + "id": "n728" + }, + "n729": { + "loc": [-85.634272, 41.945625], + "id": "n729" + }, + "w163": { + "id": "w163", + "nodes": ["n729", "n730", "n731"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n730": { + "loc": [-85.634345, 41.945699], + "id": "n730", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n731": { + "loc": [-85.634418, 41.945775], + "id": "n731" + }, + "w164": { + "id": "w164", + "nodes": ["n365", "n732", "n733", "n738"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n732": { + "loc": [-85.632425, 41.944137], + "id": "n732" + }, + "n733": { + "loc": [-85.632302, 41.944192], + "id": "n733" + }, + "w165": { + "id": "w165", + "nodes": ["n724", "n734", "n367", "n735", "n736", "n737"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n734": { + "loc": [-85.632762, 41.944174], + "id": "n734" + }, + "n735": { + "loc": [-85.632713, 41.944179], + "id": "n735" + }, + "n736": { + "loc": [-85.632411, 41.944327], + "id": "n736" + }, + "n737": { + "loc": [-85.632362, 41.944341], + "id": "n737" + }, + "n738": { + "loc": [-85.632236, 41.944204], + "id": "n738" + }, + "w166": { + "tags": { + "highway": "footway" + }, + "id": "w166", + "nodes": ["n739", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n2139870452"] + }, + "n739": { + "loc": [-85.634939, 41.942165], + "id": "n739" + }, + "n740": { + "id": "n740", + "loc": [-85.635079, 41.941535] + }, + "n741": { + "id": "n741", + "loc": [-85.635112, 41.941595] + }, + "n742": { + "id": "n742", + "loc": [-85.635113, 41.941633] + }, + "n743": { + "id": "n743", + "loc": [-85.635067, 41.941652] + }, + "n744": { + "id": "n744", + "loc": [-85.634989, 41.941651] + }, + "n745": { + "id": "n745", + "loc": [-85.634921, 41.941609] + }, + "n746": { + "id": "n746", + "loc": [-85.634881, 41.941544] + }, + "n747": { + "id": "n747", + "loc": [-85.635537, 41.940939] + }, + "n748": { + "id": "n748", + "loc": [-85.635573, 41.941048] + }, + "n749": { + "id": "n749", + "loc": [-85.635453, 41.94091] + }, + "n750": { + "id": "n750", + "loc": [-85.635319, 41.940943] + }, + "w167": { + "id": "w167", + "nodes": ["n150", "n751"], + "tags": { + "highway": "service" + } + }, + "n751": { + "loc": [-85.637057, 41.943224], + "id": "n751" + }, + "n752": { + "loc": [-85.636989, 41.943296], + "id": "n752" + }, + "w168": { + "tags": { + "building": "yes" + }, + "id": "w168", + "nodes": ["n752", "n753", "n754", "n755", "n752"] + }, + "n753": { + "loc": [-85.636851, 41.943299], + "id": "n753" + }, + "n754": { + "loc": [-85.636848, 41.94322], + "id": "n754" + }, + "n755": { + "loc": [-85.636986, 41.943217], + "id": "n755" + }, + "n756": { + "loc": [-85.637569, 41.943454], + "id": "n756" + }, + "w169": { + "tags": { + "building": "yes" + }, + "id": "w169", + "nodes": ["n756", "n757", "n758", "n759", "n756"] + }, + "n757": { + "loc": [-85.637437, 41.943458], + "id": "n757" + }, + "n758": { + "loc": [-85.637432, 41.943384], + "id": "n758" + }, + "n759": { + "loc": [-85.637564, 41.94338], + "id": "n759" + }, + "n760": { + "loc": [-85.637213, 41.943378], + "id": "n760" + }, + "w170": { + "tags": { + "building": "yes" + }, + "id": "w170", + "nodes": ["n760", "n761", "n762", "n763", "n764", "n765", "n760"] + }, + "n761": { + "loc": [-85.637217, 41.943435], + "id": "n761" + }, + "n762": { + "loc": [-85.637235, 41.943434], + "id": "n762" + }, + "n763": { + "loc": [-85.637237, 41.943465], + "id": "n763" + }, + "n764": { + "loc": [-85.637424, 41.943459], + "id": "n764" + }, + "n765": { + "loc": [-85.637418, 41.943371], + "id": "n765" + }, + "n766": { + "loc": [-85.638094, 41.943149], + "id": "n766" + }, + "w171": { + "tags": { + "building": "yes" + }, + "id": "w171", + "nodes": ["n766", "n767", "n768", "n769", "n770", "n771", "n772", "n773", "n774", "n775", "n776", "n777", "n766"] + }, + "n767": { + "loc": [-85.638096, 41.943201], + "id": "n767" + }, + "n768": { + "loc": [-85.638041, 41.943202], + "id": "n768" + }, + "n769": { + "loc": [-85.638042, 41.943216], + "id": "n769" + }, + "n770": { + "loc": [-85.637927, 41.943218], + "id": "n770" + }, + "n771": { + "loc": [-85.637926, 41.943201], + "id": "n771" + }, + "n772": { + "loc": [-85.637897, 41.943201], + "id": "n772" + }, + "n773": { + "loc": [-85.637896, 41.943155], + "id": "n773" + }, + "n774": { + "loc": [-85.637962, 41.943153], + "id": "n774" + }, + "n775": { + "loc": [-85.637962, 41.943134], + "id": "n775" + }, + "n776": { + "loc": [-85.638017, 41.943132], + "id": "n776" + }, + "n777": { + "loc": [-85.638018, 41.943151], + "id": "n777" + }, + "n778": { + "loc": [-85.638045, 41.943289], + "id": "n778" + }, + "w172": { + "tags": { + "building": "yes" + }, + "id": "w172", + "nodes": ["n778", "n779", "n780", "n781", "n782", "n783", "n784", "n785", "n778"] + }, + "n779": { + "loc": [-85.638048, 41.943363], + "id": "n779" + }, + "n780": { + "loc": [-85.637842, 41.943367], + "id": "n780" + }, + "n781": { + "loc": [-85.637839, 41.943296], + "id": "n781" + }, + "n782": { + "loc": [-85.637896, 41.943295], + "id": "n782" + }, + "n783": { + "loc": [-85.637897, 41.943314], + "id": "n783" + }, + "n784": { + "loc": [-85.637957, 41.943312], + "id": "n784" + }, + "n785": { + "loc": [-85.637957, 41.943291], + "id": "n785" + }, + "n786": { + "loc": [-85.637816, 41.943375], + "id": "n786" + }, + "w173": { + "tags": { + "building": "yes" + }, + "id": "w173", + "nodes": ["n786", "n787", "n788", "n789", "n786"] + }, + "n787": { + "loc": [-85.637815, 41.943416], + "id": "n787" + }, + "n788": { + "loc": [-85.637715, 41.943415], + "id": "n788" + }, + "n789": { + "loc": [-85.637716, 41.943374], + "id": "n789" + }, + "n790": { + "loc": [-85.637912, 41.943545], + "id": "n790" + }, + "w174": { + "tags": { + "building": "yes" + }, + "id": "w174", + "nodes": ["n790", "n791", "n792", "n793", "n794", "n795", "n796", "n797", "n798", "n799", "n800", "n801", "n790"] + }, + "n791": { + "loc": [-85.637909, 41.943479], + "id": "n791" + }, + "n792": { + "loc": [-85.637967, 41.943477], + "id": "n792" + }, + "n793": { + "loc": [-85.637967, 41.94346], + "id": "n793" + }, + "n794": { + "loc": [-85.638077, 41.943457], + "id": "n794" + }, + "n795": { + "loc": [-85.638078, 41.943473], + "id": "n795" + }, + "n796": { + "loc": [-85.638124, 41.943471], + "id": "n796" + }, + "n797": { + "loc": [-85.638126, 41.943514], + "id": "n797" + }, + "n798": { + "loc": [-85.638079, 41.943515], + "id": "n798" + }, + "n799": { + "loc": [-85.638079, 41.943532], + "id": "n799" + }, + "n800": { + "loc": [-85.638028, 41.943534], + "id": "n800" + }, + "n801": { + "loc": [-85.638028, 41.943542], + "id": "n801" + }, + "n802": { + "loc": [-85.638845, 41.942983], + "id": "n802" + }, + "w175": { + "tags": { + "building": "yes" + }, + "id": "w175", + "nodes": ["n802", "n803", "n804", "n805", "n802"] + }, + "n803": { + "loc": [-85.638846, 41.94305], + "id": "n803" + }, + "n804": { + "loc": [-85.638661, 41.943052], + "id": "n804" + }, + "n805": { + "loc": [-85.63866, 41.942984], + "id": "n805" + }, + "n806": { + "loc": [-85.638579, 41.942753], + "id": "n806" + }, + "w176": { + "tags": { + "building": "yes" + }, + "id": "w176", + "nodes": ["n806", "n807", "n808", "n809", "n810", "n811", "n812", "n813", "n814", "n815", "n806"] + }, + "n807": { + "loc": [-85.638445, 41.942755], + "id": "n807" + }, + "n808": { + "loc": [-85.638452, 41.942978], + "id": "n808" + }, + "n809": { + "loc": [-85.638545, 41.942976], + "id": "n809" + }, + "n810": { + "loc": [-85.638543, 41.942935], + "id": "n810" + }, + "n811": { + "loc": [-85.638571, 41.942934], + "id": "n811" + }, + "n812": { + "loc": [-85.63857, 41.942901], + "id": "n812" + }, + "n813": { + "loc": [-85.638611, 41.9429], + "id": "n813" + }, + "n814": { + "loc": [-85.638607, 41.942769], + "id": "n814" + }, + "n815": { + "loc": [-85.63858, 41.94277], + "id": "n815" + }, + "n816": { + "loc": [-85.638597, 41.942614], + "id": "n816" + }, + "w177": { + "id": "w177", + "nodes": ["n816", "n817", "n818", "n819", "n820", "n821"], + "tags": { + "highway": "service" + } + }, + "n817": { + "loc": [-85.638601, 41.94273], + "id": "n817" + }, + "n818": { + "loc": [-85.638686, 41.942731], + "id": "n818" + }, + "n819": { + "loc": [-85.638689, 41.942917], + "id": "n819" + }, + "n820": { + "loc": [-85.638558, 41.943018], + "id": "n820" + }, + "n821": { + "loc": [-85.638238, 41.943022], + "id": "n821" + }, + "n822": { + "loc": [-85.637536, 41.943887], + "id": "n822" + }, + "w178": { + "tags": { + "building": "yes" + }, + "id": "w178", + "nodes": ["n822", "n823", "n824", "n825", "n822"] + }, + "n823": { + "loc": [-85.63749, 41.943926], + "id": "n823" + }, + "n824": { + "loc": [-85.63743, 41.943886], + "id": "n824" + }, + "n825": { + "loc": [-85.637476, 41.943847], + "id": "n825" + }, + "n826": { + "id": "n826", + "loc": [-85.637527, 41.943846] + }, + "n827": { + "id": "n827", + "loc": [-85.637141, 41.943728] + }, + "n828": { + "id": "n828", + "loc": [-85.637201, 41.943755] + }, + "n829": { + "id": "n829", + "loc": [-85.636987, 41.943608] + }, + "n830": { + "id": "n830", + "loc": [-85.637441, 41.943807] + }, + "n831": { + "id": "n831", + "loc": [-85.637673, 41.94399] + }, + "n832": { + "id": "n832", + "loc": [-85.637783, 41.944137] + }, + "n833": { + "id": "n833", + "loc": [-85.63845, 41.944333] + }, + "n834": { + "id": "n834", + "loc": [-85.638159, 41.944248] + }, + "n835": { + "id": "n835", + "loc": [-85.637859, 41.94416] + }, + "n836": { + "id": "n836", + "loc": [-85.638685, 41.944542] + }, + "n837": { + "id": "n837", + "loc": [-85.638714, 41.944611] + }, + "n838": { + "id": "n838", + "loc": [-85.638711, 41.944757] + }, + "n839": { + "id": "n839", + "loc": [-85.638774, 41.945069] + }, + "n840": { + "id": "n840", + "loc": [-85.638742, 41.945205] + }, + "n841": { + "loc": [-85.640267, 41.942403], + "id": "n841" + }, + "w179": { + "tags": { + "building": "yes" + }, + "id": "w179", + "nodes": ["n841", "n842", "n843", "n844", "n841"] + }, + "n842": { + "loc": [-85.640154, 41.942404], + "id": "n842" + }, + "n843": { + "loc": [-85.640152, 41.942249], + "id": "n843" + }, + "n844": { + "loc": [-85.640266, 41.942248], + "id": "n844" + }, + "n845": { + "loc": [-85.640366, 41.942599], + "id": "n845" + }, + "w180": { + "id": "w180", + "nodes": ["n845", "n856", "n846"], + "tags": { + "highway": "service" + } + }, + "n846": { + "loc": [-85.640362, 41.942192], + "id": "n846" + }, + "w181": { + "id": "w181", + "nodes": ["n846", "n847", "n848", "n849", "n850", "n851", "n852", "n853", "n854", "n855", "n856"], + "tags": { + "highway": "service", + "service": "drive-through", + "oneway": "yes" + } + }, + "n847": { + "loc": [-85.640146, 41.942191], + "id": "n847" + }, + "n848": { + "loc": [-85.640122, 41.942196], + "id": "n848" + }, + "n849": { + "loc": [-85.640108, 41.942211], + "id": "n849" + }, + "n850": { + "loc": [-85.640101, 41.942236], + "id": "n850" + }, + "n851": { + "loc": [-85.640103, 41.94241], + "id": "n851" + }, + "n852": { + "loc": [-85.64011, 41.942435], + "id": "n852" + }, + "n853": { + "loc": [-85.640126, 41.942445], + "id": "n853" + }, + "n854": { + "loc": [-85.640153, 41.942451], + "id": "n854" + }, + "n855": { + "loc": [-85.640183, 41.942452], + "id": "n855" + }, + "n856": { + "loc": [-85.640364, 41.942452], + "id": "n856" + }, + "n857": { + "loc": [-85.640007, 41.942452], + "id": "n857" + }, + "w182": { + "id": "w182", + "nodes": ["n857", "n858"], + "tags": { + "highway": "service" + } + }, + "n858": { + "loc": [-85.639449, 41.942461], + "id": "n858" + }, + "n859": { + "loc": [-85.640049, 41.942391], + "id": "n859" + }, + "w183": { + "tags": { + "amenity": "parking" + }, + "id": "w183", + "nodes": ["n859", "n860", "n861", "n862", "n859"] + }, + "n860": { + "loc": [-85.640052, 41.942503], + "id": "n860" + }, + "n861": { + "loc": [-85.639575, 41.94251], + "id": "n861" + }, + "n862": { + "loc": [-85.639572, 41.942398], + "id": "n862" + }, + "n863": { + "loc": [-85.638782, 41.942227], + "id": "n863" + }, + "w184": { + "id": "w184", + "nodes": ["n863", "n864", "n867", "n866", "n865"], + "tags": { + "highway": "service" + } + }, + "n864": { + "loc": [-85.63843, 41.942226], + "id": "n864" + }, + "n865": { + "loc": [-85.63823, 41.942183], + "id": "n865" + }, + "n866": { + "id": "n866", + "loc": [-85.638363, 41.942216], + "tags": { + "barrier": "gate" + } + }, + "n867": { + "id": "n867", + "loc": [-85.6384, 41.942223] + }, + "n868": { + "loc": [-85.636042, 41.942797], + "id": "n868" + }, + "n869": { + "loc": [-85.636308, 41.942752], + "id": "n869" + }, + "n870": { + "loc": [-85.636516, 41.942729], + "id": "n870" + }, + "n871": { + "loc": [-85.636782, 41.942712], + "id": "n871" + }, + "n872": { + "loc": [-85.636944, 41.942706], + "id": "n872" + }, + "n873": { + "loc": [-85.63704, 41.942706], + "id": "n873" + }, + "n874": { + "loc": [-85.637237, 41.942703], + "id": "n874" + }, + "n875": { + "loc": [-85.637553, 41.9427], + "id": "n875" + }, + "n876": { + "loc": [-85.638236, 41.942697], + "id": "n876" + }, + "n877": { + "id": "n877", + "loc": [-85.636284, 41.942781] + }, + "n878": { + "id": "n878", + "loc": [-85.636551, 41.942641] } } } From ce642b72d0ee0b42646e5553d57ba14a07129ade Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Apr 2017 16:16:48 -0400 Subject: [PATCH 49/91] Add POIs, Addresses, Buildings, Sidewalks, etc (closes #3068) --- data/intro_graph.json | 9951 +++++++++++++++++++++-------------------- 1 file changed, 5191 insertions(+), 4760 deletions(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index 863c71aae..ef216e042 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -788,22 +788,10 @@ "id": "n185948706", "loc": [-85.636968, 41.940108] }, - "n185949348": { - "id": "n185949348", - "loc": [-85.640039, 41.931135] - }, - "n185949870": { - "id": "n185949870", - "loc": [-85.643197, 41.949261] - }, "n185954680": { "id": "n185954680", "loc": [-85.63378, 41.940114] }, - "n185954784": { - "id": "n185954784", - "loc": [-85.651284, 41.942549] - }, "n185958670": { "id": "n185958670", "loc": [-85.637255, 41.940106] @@ -816,10 +804,6 @@ "id": "n185960207", "loc": [-85.634992, 41.940118] }, - "n185964697": { - "id": "n185964697", - "loc": [-85.644384, 41.939941] - }, "n185964963": { "id": "n185964963", "loc": [-85.638235, 41.942615] @@ -834,7 +818,11 @@ }, "n185964968": { "id": "n185964968", - "loc": [-85.63582, 41.942771] + "loc": [-85.63582, 41.942771], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "emergency" + } }, "n185964970": { "id": "n185964970", @@ -856,22 +844,6 @@ "id": "n185967775", "loc": [-85.641922, 41.945121] }, - "n185967776": { - "id": "n185967776", - "loc": [-85.641955, 41.947508] - }, - "n185967777": { - "id": "n185967777", - "loc": [-85.642015, 41.947624] - }, - "n185969289": { - "id": "n185969289", - "loc": [-85.63928, 41.929221] - }, - "n185970602": { - "id": "n185970602", - "loc": [-85.641293, 41.931817] - }, "n185970906": { "id": "n185970906", "loc": [-85.639454, 41.943871] @@ -884,30 +856,6 @@ "id": "n185971368", "loc": [-85.635769, 41.940122] }, - "n185973633": { - "id": "n185973633", - "loc": [-85.639023, 41.92861] - }, - "n185973635": { - "id": "n185973635", - "loc": [-85.639153, 41.928969] - }, - "n185973637": { - "id": "n185973637", - "loc": [-85.639213, 41.929088] - }, - "n185973639": { - "id": "n185973639", - "loc": [-85.63935, 41.929396] - }, - "n185973641": { - "id": "n185973641", - "loc": [-85.640143, 41.931462] - }, - "n185973644": { - "id": "n185973644", - "loc": [-85.64019, 41.931788] - }, "n185974477": { "id": "n185974477", "loc": [-85.638206, 41.941345] @@ -920,34 +868,10 @@ "id": "n185975930", "loc": [-85.643139, 41.945103] }, - "n185976255": { - "id": "n185976255", - "loc": [-85.642424, 41.931817] - }, - "n185977452": { - "id": "n185977452", - "loc": [-85.64575, 41.939883] - }, - "n185978772": { - "id": "n185978772", - "loc": [-85.646656, 41.939869] - }, - "n185981472": { - "id": "n185981472", - "loc": [-85.638896, 41.932127] - }, - "n185981478": { - "id": "n185981478", - "loc": [-85.63876, 41.937002] - }, "n185981999": { "id": "n185981999", "loc": [-85.638194, 41.940094] }, - "n185982001": { - "id": "n185982001", - "loc": [-85.646302, 41.93988] - }, "n185982877": { "id": "n185982877", "loc": [-85.640688, 41.943861] @@ -960,30 +884,10 @@ "id": "n185985823", "loc": [-85.643121, 41.943841] }, - "n185985824": { - "id": "n185985824", - "loc": [-85.643174, 41.947641] - }, - "n185985825": { - "id": "n185985825", - "loc": [-85.643219, 41.950829] - }, "n1475301397": { "id": "n1475301397", "loc": [-85.636731, 41.94263] }, - "n2139795830": { - "id": "n2139795830", - "loc": [-85.644319, 41.939944] - }, - "n2139795834": { - "id": "n2139795834", - "loc": [-85.645351, 41.9399] - }, - "n2139795837": { - "id": "n2139795837", - "loc": [-85.645806, 41.939883] - }, "n2139858932": { "id": "n2139858932", "loc": [-85.63518, 41.942955], @@ -1058,14 +962,7 @@ "n185973659", "n185970607", "n185976259", - "n185976261", - "n2139795830", - "n185964697", - "n2139795834", - "n185977452", - "n2139795837", - "n185982001", - "n185978772" + "n185976261" ] }, "w208643105": { @@ -1140,7 +1037,6 @@ "access": "yes" }, "nodes": [ - "n185954784", "n185964959", "n185964960", "n185964961", @@ -1148,6 +1044,8 @@ "n185964962", "n816", "n185964963", + "n902", + "n905", "n152", "n149", "n185964965", @@ -1273,14 +1171,6 @@ }, "nodes": ["n2189046053", "n2189046054", "n2189046055", "n2189046056", "n2189046058", "n2189046059", "n2189046053"] }, - "w17966878": { - "id": "w17966878", - "tags": { - "highway": "residential", - "name": "South Hook Avenue" - }, - "nodes": ["n185981472", "n185981478", "n185981481"] - }, "w17966102": { "id": "w17966102", "tags": { @@ -1351,7 +1241,7 @@ "highway": "residential", "name": "North Grant Avenue" }, - "nodes": ["n185964960", "n185967774", "n185967775", "n185966958", "n185967776", "n38", "n185967777"] + "nodes": ["n185964960", "n185967774", "n185967775", "n185966958"] }, "w208631648": { "id": "w208631648", @@ -1432,21 +1322,13 @@ }, "nodes": ["n185981482", "n185974479", "n858", "n185964962"] }, - "w17966325": { - "id": "w17966325", - "tags": { - "highway": "residential", - "name": "South Douglas Avenue" - }, - "nodes": ["n185976255", "n185976259"] - }, "w17967390": { "id": "w17967390", "tags": { "highway": "residential", "name": "North Douglas Avenue" }, - "nodes": ["n185964959", "n185985823", "n185975930", "n185966960", "n185985824", "n185949870", "n185985825"] + "nodes": ["n185964959", "n185985823", "n185975930", "n185966960"] }, "w208631635": { "id": "w208631635", @@ -1489,24 +1371,6 @@ }, "nodes": ["n2189153044", "n2189153045"] }, - "w17966039": { - "id": "w17966039", - "tags": { - "highway": "residential", - "name": "South Lincoln Avenue" - }, - "nodes": [ - "n185973633", - "n185973635", - "n185973637", - "n185969289", - "n185973639", - "n185949348", - "n185973641", - "n185973644", - "n185973650" - ] - }, "w204003420": { "id": "w204003420", "tags": { @@ -1529,14 +1393,6 @@ }, "nodes": ["n2140155828", "n2140155829", "n2140155830", "n2140155831", "n2140155832", "n2140155833", "n2140155828"] }, - "w17965747": { - "id": "w17965747", - "tags": { - "highway": "residential", - "name": "South Grant Avenue" - }, - "nodes": ["n185970602", "n185970607"] - }, "w17967073": { "id": "w17967073", "tags": { @@ -1570,7 +1426,7 @@ "role": "forward" }, { - "id": "w143497377", + "id": "w228", "type": "way", "role": "" }, @@ -2079,7 +1935,12 @@ "loc": [-85.63607, 41.943005], "tags": { "amenity": "fire_station", - "name": "Three Rivers Fire Department" + "name": "Three Rivers Fire Department", + "addr:housenumber": "333", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" } }, "n185948710": { @@ -2136,7 +1997,7 @@ }, "n1819848930": { "id": "n1819848930", - "loc": [-85.633974, 41.943219] + "loc": [-85.634274, 41.943479] }, "n1819858505": { "id": "n1819858505", @@ -2692,19 +2553,19 @@ }, "n2139870435": { "id": "n2139870435", - "loc": [-85.634978, 41.941949] + "loc": [-85.634992, 41.941951] }, "n2139870436": { "id": "n2139870436", - "loc": [-85.634951, 41.941893] + "loc": [-85.634952, 41.941877] }, "n2139870437": { "id": "n2139870437", - "loc": [-85.634733, 41.94195] + "loc": [-85.634844, 41.94191] }, "n2139870438": { "id": "n2139870438", - "loc": [-85.634761, 41.942009] + "loc": [-85.634884, 41.941983] }, "n2139870439": { "id": "n2139870439", @@ -2752,19 +2613,19 @@ }, "n2139870450": { "id": "n2139870450", - "loc": [-85.634721, 41.941932] + "loc": [-85.634698, 41.941898] }, "n2139870451": { "id": "n2139870451", - "loc": [-85.634953, 41.941877] + "loc": [-85.634956, 41.941866] }, "n2139870452": { "id": "n2139870452", - "loc": [-85.635013, 41.941942] + "loc": [-85.635025, 41.941929] }, "n2139870453": { "id": "n2139870453", - "loc": [-85.634858, 41.9419] + "loc": [-85.634862, 41.941887] }, "n2139870454": { "id": "n2139870454", @@ -2879,7 +2740,12 @@ "loc": [-85.636433, 41.942959], "tags": { "amenity": "townhall", - "name": "Three Rivers City Hall" + "name": "Three Rivers City Hall", + "addr:housenumber": "333", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" } }, "n2140018998": { @@ -2954,217 +2820,17 @@ "id": "n2199856303", "loc": [-85.634924, 41.940724] }, - "n185951869": { - "id": "n185951869", - "loc": [-85.638764, 41.957288] - }, - "n185958643": { - "id": "n185958643", - "loc": [-85.636746, 41.929221] - }, - "n185958649": { - "id": "n185958649", - "loc": [-85.637669, 41.931667] - }, - "n185958651": { - "id": "n185958651", - "loc": [-85.637728, 41.931901] - }, - "n185958653": { - "id": "n185958653", - "loc": [-85.637724, 41.932187] - }, - "n185958664": { - "id": "n185958664", - "loc": [-85.637564, 41.937028] - }, "n185958668": { "id": "n185958668", - "loc": [-85.637424, 41.938692] + "loc": [-85.637448, 41.938233] }, "n185964972": { "id": "n185964972", - "loc": [-85.634175, 41.943274] - }, - "n185971361": { - "id": "n185971361", - "loc": [-85.635762, 41.938208] + "loc": [-85.634168, 41.943279] }, "n185971364": { "id": "n185971364", - "loc": [-85.635732, 41.9384] - }, - "n185972775": { - "id": "n185972775", - "loc": [-85.635638, 42.070357] - }, - "n185972777": { - "id": "n185972777", - "loc": [-85.635724, 42.069929] - }, - "n185972779": { - "id": "n185972779", - "loc": [-85.635804, 42.069248] - }, - "n185972781": { - "id": "n185972781", - "loc": [-85.635869, 42.068361] - }, - "n185972783": { - "id": "n185972783", - "loc": [-85.635883, 42.067582] - }, - "n185972785": { - "id": "n185972785", - "loc": [-85.635875, 42.067114] - }, - "n185972787": { - "id": "n185972787", - "loc": [-85.635778, 42.065359] - }, - "n185972788": { - "id": "n185972788", - "loc": [-85.635728, 42.063416] - }, - "n185972789": { - "id": "n185972789", - "loc": [-85.635665, 42.062491] - }, - "n185972790": { - "id": "n185972790", - "loc": [-85.635617, 42.061928] - }, - "n185972791": { - "id": "n185972791", - "loc": [-85.635614, 42.061898] - }, - "n185972793": { - "id": "n185972793", - "loc": [-85.635379, 42.060288] - }, - "n185972795": { - "id": "n185972795", - "loc": [-85.635092, 42.05799] - }, - "n185972797": { - "id": "n185972797", - "loc": [-85.634843, 42.055781] - }, - "n185972798": { - "id": "n185972798", - "loc": [-85.634817, 42.055549] - }, - "n185972800": { - "id": "n185972800", - "loc": [-85.634708, 42.053942] - }, - "n185972802": { - "id": "n185972802", - "loc": [-85.634447, 42.051809] - }, - "n185972805": { - "id": "n185972805", - "loc": [-85.634241, 42.04946] - }, - "n185972807": { - "id": "n185972807", - "loc": [-85.633787, 42.045926] - }, - "n185972809": { - "id": "n185972809", - "loc": [-85.633811, 42.045645] - }, - "n185972811": { - "id": "n185972811", - "loc": [-85.63373, 42.043626] - }, - "n185972813": { - "id": "n185972813", - "loc": [-85.633698, 42.042184] - }, - "n185972814": { - "id": "n185972814", - "loc": [-85.63369, 42.04181] - }, - "n185972815": { - "id": "n185972815", - "loc": [-85.633681, 42.040714] - }, - "n185972816": { - "id": "n185972816", - "loc": [-85.633571, 42.036322] - }, - "n185972817": { - "id": "n185972817", - "loc": [-85.633537, 42.034044] - }, - "n185972819": { - "id": "n185972819", - "loc": [-85.633481, 42.030785] - }, - "n185972821": { - "id": "n185972821", - "loc": [-85.633452, 42.027538] - }, - "n185972824": { - "id": "n185972824", - "loc": [-85.633438, 42.027427] - }, - "n185972826": { - "id": "n185972826", - "loc": [-85.633342, 42.022656] - }, - "n185972830": { - "id": "n185972830", - "loc": [-85.63327, 42.020724] - }, - "n185972832": { - "id": "n185972832", - "loc": [-85.633198, 42.019106] - }, - "n185972834": { - "id": "n185972834", - "loc": [-85.633249, 42.018363] - }, - "n185972835": { - "id": "n185972835", - "loc": [-85.633139, 42.012944] - }, - "n185972836": { - "id": "n185972836", - "loc": [-85.63309, 42.008284] - }, - "n185972839": { - "id": "n185972839", - "loc": [-85.63298, 42.00005] - }, - "n185972845": { - "id": "n185972845", - "loc": [-85.632537, 41.976496] - }, - "n185972847": { - "id": "n185972847", - "loc": [-85.632755, 41.975001] - }, - "n185972849": { - "id": "n185972849", - "loc": [-85.632937, 41.974253] - }, - "n185972851": { - "id": "n185972851", - "loc": [-85.633139, 41.973604] - }, - "n185972868": { - "id": "n185972868", - "loc": [-85.639363, 41.955172] - }, - "n185972878": { - "id": "n185972878", - "loc": [-85.639377, 41.95335] - }, - "n185972882": { - "id": "n185972882", - "loc": [-85.638918, 41.951694] + "loc": [-85.635744, 41.938248] }, "n185972885": { "id": "n185972885", @@ -3220,11 +2886,11 @@ }, "n185985233": { "id": "n185985233", - "loc": [-85.637218, 41.943703] + "loc": [-85.637232, 41.943707] }, "n185985235": { "id": "n185985235", - "loc": [-85.637151, 41.943663] + "loc": [-85.637163, 41.943668] }, "n185985238": { "id": "n185985238", @@ -3232,7 +2898,7 @@ }, "n185985240": { "id": "n185985240", - "loc": [-85.637073, 41.943494] + "loc": [-85.637078, 41.943494] }, "n185990434": { "id": "n185990434", @@ -3248,50 +2914,14 @@ "railway": "level_crossing" } }, - "n1475293222": { - "id": "n1475293222", - "loc": [-85.639404, 41.953658], - "tags": { - "railway": "level_crossing" - } - }, - "n1475293234": { - "id": "n1475293234", - "loc": [-85.639045, 41.956514] - }, "n1475293240": { "id": "n1475293240", "loc": [-85.636943, 41.947311] }, - "n1475293252": { - "id": "n1475293252", - "loc": [-85.639212, 41.9559] - }, - "n1475293254": { - "id": "n1475293254", - "loc": [-85.634893, 41.968513], - "tags": { - "railway": "level_crossing" - } - }, "n1475293260": { "id": "n1475293260", "loc": [-85.6376, 41.94854] }, - "n1475293261": { - "id": "n1475293261", - "loc": [-85.639126, 41.952382], - "tags": { - "railway": "level_crossing" - } - }, - "n1475293264": { - "id": "n1475293264", - "loc": [-85.639415, 41.954649], - "tags": { - "railway": "level_crossing" - } - }, "n1819805614": { "id": "n1819805614", "loc": [-85.634565, 41.93631] @@ -3332,10 +2962,6 @@ "id": "n1819805643", "loc": [-85.630038, 41.941808] }, - "n1819805645": { - "id": "n1819805645", - "loc": [-85.636529, 41.933668] - }, "n1819805647": { "id": "n1819805647", "loc": [-85.632016, 41.942922] @@ -3352,10 +2978,6 @@ "id": "n1819805673", "loc": [-85.629673, 41.94121] }, - "n1819805676": { - "id": "n1819805676", - "loc": [-85.635456, 41.932766] - }, "n1819805680": { "id": "n1819805680", "loc": [-85.632752, 41.943101] @@ -3364,10 +2986,6 @@ "id": "n1819805683", "loc": [-85.631147, 41.943201] }, - "n1819805687": { - "id": "n1819805687", - "loc": [-85.635284, 41.934394] - }, "n1819805690": { "id": "n1819805690", "loc": [-85.624974, 41.940579] @@ -3380,14 +2998,6 @@ "id": "n1819805698", "loc": [-85.632349, 41.942699] }, - "n1819805702": { - "id": "n1819805702", - "loc": [-85.634029, 41.937387] - }, - "n1819805707": { - "id": "n1819805707", - "loc": [-85.63537, 41.931633] - }, "n1819805711": { "id": "n1819805711", "loc": [-85.628418, 41.940356] @@ -3404,18 +3014,10 @@ "id": "n1819805722", "loc": [-85.632087, 41.940013] }, - "n1819805724": { - "id": "n1819805724", - "loc": [-85.635166, 41.932463] - }, "n1819805727": { "id": "n1819805727", "loc": [-85.634469, 41.935057] }, - "n1819805728": { - "id": "n1819805728", - "loc": [-85.635713, 41.933237] - }, "n1819805731": { "id": "n1819805731", "loc": [-85.629984, 41.943444] @@ -3432,26 +3034,10 @@ "id": "n1819805770", "loc": [-85.632632, 41.941217] }, - "n1819805774": { - "id": "n1819805774", - "loc": [-85.634705, 41.93121] - }, - "n1819805777": { - "id": "n1819805777", - "loc": [-85.636357, 41.933955] - }, "n1819805780": { "id": "n1819805780", "loc": [-85.632739, 41.941926] }, - "n1819805783": { - "id": "n1819805783", - "loc": [-85.635724, 41.933844] - }, - "n1819805786": { - "id": "n1819805786", - "loc": [-85.63566, 41.934658] - }, "n1819805789": { "id": "n1819805789", "loc": [-85.631647, 41.94366] @@ -3460,10 +3046,6 @@ "id": "n1819805792", "loc": [-85.635059, 41.935456] }, - "n1819805795": { - "id": "n1819805795", - "loc": [-85.636003, 41.932279] - }, "n1819805798": { "id": "n1819805798", "loc": [-85.631259, 41.944349] @@ -3476,14 +3058,6 @@ "id": "n1819805805", "loc": [-85.631507, 41.943875] }, - "n1819805808": { - "id": "n1819805808", - "loc": [-85.634001, 41.931605] - }, - "n1819805810": { - "id": "n1819805810", - "loc": [-85.634554, 41.932056] - }, "n1819805812": { "id": "n1819805812", "loc": [-85.625081, 41.940859] @@ -3496,10 +3070,6 @@ "id": "n1819805834", "loc": [-85.632641, 41.942436] }, - "n1819805838": { - "id": "n1819805838", - "loc": [-85.636561, 41.933436] - }, "n1819805842": { "id": "n1819805842", "loc": [-85.628825, 41.941034] @@ -3564,10 +3134,6 @@ "id": "n1819805887", "loc": [-85.632527, 41.938904] }, - "n1819805889": { - "id": "n1819805889", - "loc": [-85.636496, 41.933189] - }, "n1819805911": { "id": "n1819805911", "loc": [-85.624866, 41.94018] @@ -3604,22 +3170,10 @@ "id": "n1819848904", "loc": [-85.640198, 41.948623] }, - "n1819848909": { - "id": "n1819848909", - "loc": [-85.63434, 41.94358] - }, "n1819848915": { "id": "n1819848915", "loc": [-85.638953, 41.947099] }, - "n1819848918": { - "id": "n1819848918", - "loc": [-85.644078, 41.954569] - }, - "n1819848919": { - "id": "n1819848919", - "loc": [-85.643717, 41.954304] - }, "n1819848932": { "id": "n1819848932", "loc": [-85.640906, 41.950857] @@ -3660,14 +3214,6 @@ "id": "n1819848969", "loc": [-85.640584, 41.950147] }, - "n1819848976": { - "id": "n1819848976", - "loc": [-85.645273, 41.954607] - }, - "n1819848977": { - "id": "n1819848977", - "loc": [-85.644843, 41.954607] - }, "n1819848994": { "id": "n1819848994", "loc": [-85.637136, 41.94576] @@ -3692,10 +3238,6 @@ "id": "n1819849040", "loc": [-85.639758, 41.949014] }, - "n1819849042": { - "id": "n1819849042", - "loc": [-85.643663, 41.954065] - }, "n1819849047": { "id": "n1819849047", "loc": [-85.637769, 41.946095] @@ -3772,18 +3314,10 @@ "id": "n1819849133", "loc": [-85.639883, 41.948529] }, - "n1819849144": { - "id": "n1819849144", - "loc": [-85.644371, 41.954623] - }, "n1819849146": { "id": "n1819849146", "loc": [-85.641775, 41.951336] }, - "n1819849152": { - "id": "n1819849152", - "loc": [-85.643374, 41.953107] - }, "n1819849155": { "id": "n1819849155", "loc": [-85.640627, 41.95077] @@ -3796,10 +3330,6 @@ "id": "n1819849164", "loc": [-85.637297, 41.945992] }, - "n1819849166": { - "id": "n1819849166", - "loc": [-85.643642, 41.953745] - }, "n1819849174": { "id": "n1819849174", "loc": [-85.641432, 41.951209] @@ -3816,10 +3346,6 @@ "id": "n1819849185", "loc": [-85.64278, 41.952878] }, - "n1819849186": { - "id": "n1819849186", - "loc": [-85.643531, 41.953412] - }, "n1819849189": { "id": "n1819849189", "loc": [-85.635175, 41.94408] @@ -3844,10 +3370,6 @@ "id": "n1819849199", "loc": [-85.642623, 41.952708] }, - "n1819849200": { - "id": "n1819849200", - "loc": [-85.64391, 41.954504] - }, "n1819858501": { "id": "n1819858501", "loc": [-85.636126, 41.943713] @@ -3880,14 +3402,6 @@ "id": "n1820937542", "loc": [-85.632874, 41.941031] }, - "n1820937545": { - "id": "n1820937545", - "loc": [-85.61972, 41.942037] - }, - "n1820937575": { - "id": "n1820937575", - "loc": [-85.621823, 41.941861] - }, "n1820937602": { "id": "n1820937602", "loc": [-85.632531, 41.940233] @@ -3896,26 +3410,10 @@ "id": "n1820937727", "loc": [-85.634247, 41.936003] }, - "n1820937743": { - "id": "n1820937743", - "loc": [-85.614785, 41.942228] - }, - "n1820937766": { - "id": "n1820937766", - "loc": [-85.6339, 41.930937] - }, "n1820937790": { "id": "n1820937790", "loc": [-85.62929, 41.941127] }, - "n1820937806": { - "id": "n1820937806", - "loc": [-85.633475, 41.927463] - }, - "n1820937877": { - "id": "n1820937877", - "loc": [-85.612575, 41.941957] - }, "n1820937995": { "id": "n1820937995", "loc": [-85.630428, 41.943266] @@ -3928,10 +3426,6 @@ "id": "n1820938194", "loc": [-85.632316, 41.943042] }, - "n1820938302": { - "id": "n1820938302", - "loc": [-85.623948, 41.941191] - }, "n1820938329": { "id": "n1820938329", "loc": [-85.628711, 41.940744] @@ -3940,41 +3434,17 @@ "id": "n1820938374", "loc": [-85.627831, 41.940536] }, - "n1820938375": { - "id": "n1820938375", - "loc": [-85.635513, 41.934407] - }, - "n1820938376": { - "id": "n1820938376", - "loc": [-85.635642, 41.932475] - }, - "n1820938429": { - "id": "n1820938429", - "loc": [-85.616995, 41.942228] - }, - "n1820938479": { - "id": "n1820938479", - "loc": [-85.636157, 41.933337] - }, "n1820938505": { "id": "n1820938505", "loc": [-85.625514, 41.94052] }, "n1820938512": { "id": "n1820938512", - "loc": [-85.63105, 41.943553] - }, - "n1820938667": { - "id": "n1820938667", - "loc": [-85.634848, 41.931693] + "loc": [-85.631127, 41.943545] }, "n1820938671": { "id": "n1820938671", - "loc": [-85.632874, 41.942531] - }, - "n1820938868": { - "id": "n1820938868", - "loc": [-85.610258, 41.942084] + "loc": [-85.632909, 41.942531] }, "n1820938901": { "id": "n1820938901", @@ -3986,28 +3456,12 @@ }, "n1820938930": { "id": "n1820938930", - "loc": [-85.629999, 41.942771] - }, - "n1820939059": { - "id": "n1820939059", - "loc": [-85.608562, 41.942084] + "loc": [-85.630122, 41.942852] }, "n1820939069": { "id": "n1820939069", "loc": [-85.632509, 41.939674] }, - "n1820939306": { - "id": "n1820939306", - "loc": [-85.636028, 41.933848] - }, - "n1820939467": { - "id": "n1820939467", - "loc": [-85.633556, 41.930363] - }, - "n1820939567": { - "id": "n1820939567", - "loc": [-85.633707, 41.929501] - }, "n1820939569": { "id": "n1820939569", "loc": [-85.634762, 41.935237] @@ -4020,30 +3474,6 @@ "id": "n1820939735", "loc": [-85.629741, 41.941909] }, - "n2114807565": { - "id": "n2114807565", - "loc": [-85.638598, 41.957782] - }, - "n2114807568": { - "id": "n2114807568", - "loc": [-85.63251, 41.977571] - }, - "n2114807572": { - "id": "n2114807572", - "loc": [-85.6329, 41.998097] - }, - "n2114807578": { - "id": "n2114807578", - "loc": [-85.634482, 41.969696] - }, - "n2114807583": { - "id": "n2114807583", - "loc": [-85.632629, 41.975785] - }, - "n2114807593": { - "id": "n2114807593", - "loc": [-85.636083, 41.965067] - }, "n2130304159": { "id": "n2130304159", "loc": [-85.635254, 41.945001], @@ -4051,94 +3481,6 @@ "railway": "level_crossing" } }, - "n2139858882": { - "id": "n2139858882", - "loc": [-85.635178, 41.935616] - }, - "n2139858883": { - "id": "n2139858883", - "loc": [-85.63533, 41.935589] - }, - "n2139858884": { - "id": "n2139858884", - "loc": [-85.635382, 41.93556] - }, - "n2139858885": { - "id": "n2139858885", - "loc": [-85.635367, 41.935516] - }, - "n2139858886": { - "id": "n2139858886", - "loc": [-85.635317, 41.935497] - }, - "n2139858887": { - "id": "n2139858887", - "loc": [-85.635245, 41.935533] - }, - "n2139858888": { - "id": "n2139858888", - "loc": [-85.635018, 41.935785] - }, - "n2139858889": { - "id": "n2139858889", - "loc": [-85.634978, 41.935945] - }, - "n2139858890": { - "id": "n2139858890", - "loc": [-85.634772, 41.936152] - }, - "n2139858891": { - "id": "n2139858891", - "loc": [-85.634716, 41.936267] - }, - "n2139858892": { - "id": "n2139858892", - "loc": [-85.634699, 41.936431] - }, - "n2139858893": { - "id": "n2139858893", - "loc": [-85.634603, 41.936633] - }, - "n2139858894": { - "id": "n2139858894", - "loc": [-85.634597, 41.936749] - }, - "n2139858895": { - "id": "n2139858895", - "loc": [-85.634513, 41.936973] - }, - "n2139858896": { - "id": "n2139858896", - "loc": [-85.634478, 41.937192] - }, - "n2139858897": { - "id": "n2139858897", - "loc": [-85.634484, 41.937377] - }, - "n2139858898": { - "id": "n2139858898", - "loc": [-85.634624, 41.93753] - }, - "n2139858899": { - "id": "n2139858899", - "loc": [-85.634772, 41.937636] - }, - "n2139858900": { - "id": "n2139858900", - "loc": [-85.634761, 41.937779] - }, - "n2139858901": { - "id": "n2139858901", - "loc": [-85.63462, 41.937953] - }, - "n2139858902": { - "id": "n2139858902", - "loc": [-85.634418, 41.93801] - }, - "n2139858903": { - "id": "n2139858903", - "loc": [-85.634163, 41.938041] - }, "n2139858904": { "id": "n2139858904", "loc": [-85.634005, 41.938168] @@ -4287,29 +3629,17 @@ "id": "n2139858977", "loc": [-85.634972, 41.943197] }, - "n2139858986": { - "id": "n2139858986", - "loc": [-85.63412, 41.938075] - }, "n2139858995": { "id": "n2139858995", "loc": [-85.633978, 41.938227] }, - "n2139859003": { - "id": "n2139859003", - "loc": [-85.634048, 41.937349] - }, - "n2139859004": { - "id": "n2139859004", - "loc": [-85.633978, 41.937475] - }, "n2139870406": { "id": "n2139870406", "loc": [-85.634216, 41.943255] }, "n2139877106": { "id": "n2139877106", - "loc": [-85.634559, 41.943791] + "loc": [-85.634434, 41.943622] }, "n2139982399": { "id": "n2139982399", @@ -4364,15 +3694,15 @@ }, "n2140006342": { "id": "n2140006342", - "loc": [-85.639341, 41.945157] + "loc": [-85.639329, 41.945162] }, "n2140006344": { "id": "n2140006344", - "loc": [-85.63935, 41.945023] + "loc": [-85.639323, 41.945026] }, "n2140006346": { "id": "n2140006346", - "loc": [-85.638824, 41.945014] + "loc": [-85.638826, 41.945032] }, "n2140006348": { "id": "n2140006348", @@ -4408,7 +3738,7 @@ }, "n2140006366": { "id": "n2140006366", - "loc": [-85.634357, 41.944153] + "loc": [-85.63442, 41.944117] }, "n2140006395": { "id": "n2140006395", @@ -4416,7 +3746,7 @@ }, "n2140006397": { "id": "n2140006397", - "loc": [-85.635352, 41.945021] + "loc": [-85.635601, 41.945177] }, "n2140006399": { "id": "n2140006399", @@ -4424,7 +3754,7 @@ }, "n2140006401": { "id": "n2140006401", - "loc": [-85.634869, 41.944574] + "loc": [-85.635303, 41.944891] }, "n2140006431": { "id": "n2140006431", @@ -4503,117 +3833,6 @@ "n2138493826" ] }, - "w203972937": { - "id": "w203972937", - "tags": { - "highway": "path", - "name": "Riverwalk Trail", - "surface": "asphalt", - "width": "3" - }, - "nodes": [ - "n2139858882", - "n2139858883", - "n2139858884", - "n2139858885", - "n2139858886", - "n2139858887", - "n2139858882", - "n2139858888", - "n2139858889", - "n2139858890", - "n2139858891", - "n2139858892", - "n2139858893", - "n2139858894", - "n2139858895", - "n2139858896", - "n2139858897", - "n2139858898", - "n2139858899", - "n2139858900", - "n2139858901", - "n2139858902", - "n2139858903", - "n2139858986", - "n2139858904", - "n2139858995", - "n2139858905", - "n2139858906", - "n2139858907", - "n2139858908", - "n2139858909", - "n2139858910", - "n2139858911", - "n2139858912", - "n2139858913", - "n2139858914", - "n2139858915", - "n2139858916", - "n2139858917", - "n2139858918", - "n2139858919", - "n2139858920", - "n2139858921", - "n2139858922", - "n2139858923", - "n2139858924", - "n2139858925", - "n2139858926", - "n2139858927", - "n2139858982", - "n2139858928", - "n480", - "n2139858929", - "n479", - "n478", - "n477", - "n2139858931", - "n2139858932", - "n2139858981", - "n2139858933", - "n619", - "n618", - "n2139858934", - "n2139858935", - "n2139858936", - "n617", - "n2139858937", - "n616", - "n2139858938", - "n829", - "n2139858939", - "n827", - "n828", - "n2139858940", - "n830", - "n2139858941", - "n826", - "n2139858942", - "n831", - "n2139858943", - "n832", - "n835", - "n834", - "n2140006437", - "n2139858964", - "n2139858944", - "n833", - "n2139858966", - "n2139858945", - "n836", - "n2139858946", - "n837", - "n2139858947", - "n838", - "n2139858948", - "n2139858949", - "n839", - "n2139858950", - "n840", - "n2139858951" - ] - }, "w17964015": { "id": "w17964015", "tags": { @@ -4696,7 +3915,8 @@ "n1819858509", "n1819858511", "n1819858507", - "n1819858521" + "n1819858521", + "n1820937542" ] }, "w203986458": { @@ -4707,107 +3927,6 @@ }, "nodes": ["n2139989357", "n2139989359", "n2139989360", "n2139989362", "n2139989357"] }, - "w170844917": { - "id": "w170844917", - "tags": { - "waterway": "riverbank" - }, - "nodes": [ - "n1819805911", - "n1819805690", - "n1819805812", - "n1819805766", - "n1819805802", - "n1819805885", - "n1819805626", - "n1819805842", - "n1819805715", - "n1819805694", - "n1819805618", - "n1819805629", - "n1819805731", - "n1819805636", - "n1819805878", - "n1819805718", - "n1819805798", - "n1819849057", - "n1819805666", - "n1819805852", - "n1819805805", - "n1819805789", - "n1819805868", - "n1819805680", - "n1819805918", - "n1819848888", - "n1819805762", - "n2139989328", - "n1819805907", - "n2139989330", - "n1819805915", - "n1819858521", - "n1819805854", - "n1819805876", - "n1819805864", - "n1819805922", - "n2139859004", - "n1819805702", - "n2139859003", - "n1819805614", - "n1819805792", - "n1819805786", - "n1819805777", - "n1819805645", - "n1819805838", - "n1819805889", - "n1819805795", - "n1819805707", - "n1819805774", - "n1819805808", - "n1819805810", - "n1819805724", - "n1819805676", - "n1819805728", - "n1819805783", - "n1819805687", - "n1819805727", - "n2189123379", - "n1819805632", - "n1819805641", - "n1819805760", - "n1819805887", - "n1819805861", - "n1819805722", - "n1819805880", - "n2139982405", - "n2139982399", - "n2139982400", - "n1819805770", - "n2139982402", - "n2139982403", - "n2139982401", - "n1819805780", - "n1819805834", - "n2139982406", - "n1819805698", - "n1819805647", - "n1819805870", - "n1819805683", - "n1819805622", - "n1819805639", - "n1819805858", - "n1819805643", - "n1819805673", - "n1819805925", - "n1819805849", - "n1819805711", - "n1819805846", - "n1819805669", - "n1819805883", - "n1819805814", - "n1819805873", - "n1819805911" - ] - }, "w17967326": { "id": "w17967326", "tags": { @@ -4826,6 +3945,7 @@ "n185985233", "n185985235", "n185985238", + "n1174", "n185985240", "n751", "n43", @@ -4860,85 +3980,6 @@ }, "nodes": ["n2139870417", "n2139870418", "n2139870420", "n2139870419"] }, - "w17965998": { - "id": "w17965998", - "tags": { - "name": "Conrail Railroad", - "railway": "rail" - }, - "nodes": [ - "n185972775", - "n185972777", - "n185972779", - "n185972781", - "n185972783", - "n185972785", - "n185972787", - "n185972788", - "n185972789", - "n185972790", - "n185972791", - "n185972793", - "n185972795", - "n185972797", - "n185972798", - "n185972800", - "n185972802", - "n185972805", - "n185972807", - "n185972809", - "n185972811", - "n185972813", - "n185972814", - "n185972815", - "n185972816", - "n185972817", - "n185972819", - "n185972821", - "n185972824", - "n185972826", - "n185972830", - "n185972832", - "n185972834", - "n185972835", - "n185972836", - "n185972839", - "n185990434", - "n2114807572", - "n2114807568", - "n185972845", - "n2114807583", - "n185972847", - "n185972849", - "n185972851", - "n2114807578", - "n1475293254", - "n2114807593", - "n2114807565", - "n185951869", - "n1475293234", - "n1475293252", - "n185972868", - "n1475293264", - "n1475293222", - "n185972878", - "n1475293261", - "n185972882", - "n185972885", - "n1475293260", - "n1475293240", - "n185972891", - "n185972895", - "n185972897", - "n185972899", - "n2130304159", - "n471", - "n324", - "n1475284023", - "n332", - "n185972903" - ] - }, "w134150795": { "id": "w134150795", "tags": { @@ -4964,14 +4005,12 @@ "highway": "residential", "name": "Spring Street" }, - "nodes": ["n185971361", "n185971364", "n185971368", "n308", "n498", "n509", "n246", "n241", "n185954695", "n293", "n185964968"] + "nodes": ["n185971364", "n185971368", "n308", "n498", "n509", "n246", "n241", "n185954695", "n293", "n185964968"] }, "w203974070": { "id": "w203974070", "tags": { - "amenity": "shelter", - "building": "yes", - "shelter_type": "picnic_shelter" + "building": "yes" }, "nodes": ["n2139870435", "n2139870436", "n2139870437", "n2139870438", "n2139870435"] }, @@ -5016,7 +4055,13 @@ "tags": { "name": "Scidmore Park Petting Zoo", "tourism": "zoo", - "zoo": "petting_zoo" + "zoo": "petting_zoo", + "barrier": "fence", + "addr:housenumber": "112", + "addr:street": "Spring Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" }, "nodes": [ "n2130304133", @@ -5054,36 +4099,14 @@ "highway": "path", "name": "Riverwalk Trail" }, - "nodes": [ - "n2139858934", - "n2139858967", - "n2139858968", - "n2139858969", - "n2139858970", - "n454", - "n455", - "n2139858971", - "n456", - "n2139858972", - "n2139858973", - "n2139858974", - "n2139858975", - "n2139858976", - "n2139858977", - "n2139858978", - "n621", - "n620", - "n2139858979", - "n622", - "n2139858980" - ] + "nodes": ["n2139858934", "n2139858967", "n2139858968", "n2139858969", "n2139858970", "n454", "n455", "n2139858971"] }, "w203974072": { "id": "w203974072", "tags": { "highway": "footway" }, - "nodes": ["n2139858925", "n2139870450", "n2139870453", "n2139870451", "n2139870452", "n2139870441"] + "nodes": ["n2139858925", "n1624", "n1625", "n2139870450", "n2139870453", "n2139870451", "n2139870452", "n2139870441"] }, "w203974074": { "id": "w203974074", @@ -5169,7 +4192,12 @@ "id": "w203986457", "tags": { "leisure": "park", - "name": "Scidmore Park" + "name": "Scidmore Park", + "addr:housenumber": "112", + "addr:street": "Spring Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" }, "nodes": [ "n2139989333", @@ -5196,24 +4224,6 @@ }, "nodes": ["n185964963", "n876", "n821", "n185985217"] }, - "w17964497": { - "id": "w17964497", - "tags": { - "highway": "tertiary", - "name": "South Constantine Street" - }, - "nodes": [ - "n185958643", - "n185958649", - "n185958651", - "n185958653", - "n185958664", - "n185958668", - "n185958670", - "n185948710", - "n185958672" - ] - }, "w203974068": { "id": "w203974068", "tags": { @@ -5252,6 +4262,7 @@ "n2140006346", "n2140006348", "n2140006351", + "n1098", "n2140006353", "n2140006355", "n2140006357", @@ -5322,29 +4333,9 @@ "id": "n2189123365", "loc": [-85.638935, 41.946087] }, - "n185966962": { - "id": "n185966962", - "loc": [-85.644417, 41.946364] - }, - "n185975911": { - "id": "n185975911", - "loc": [-85.637532, 41.945828] - }, "n185975913": { "id": "n185975913", - "loc": [-85.637632, 41.945794] - }, - "n185979974": { - "id": "n185979974", - "loc": [-85.644381, 41.943831] - }, - "n2139795809": { - "id": "n2139795809", - "loc": [-85.646476, 41.945081] - }, - "n2139795810": { - "id": "n2139795810", - "loc": [-85.646665, 41.945174] + "loc": [-85.637535, 41.94584] }, "n2139858952": { "id": "n2139858952", @@ -5616,7 +4607,7 @@ "highway": "residential", "name": "French Street" }, - "nodes": ["n185970906", "n185982877", "n185967774", "n185985823", "n185979974"] + "nodes": ["n185970906", "n185982877", "n185967774", "n185985823"] }, "w203972939": { "id": "w203972939", @@ -5710,27 +4701,7 @@ "highway": "residential", "name": "Pealer Street" }, - "nodes": [ - "n185975911", - "n185975913", - "n185975925", - "n185970909", - "n1475284013", - "n1475283980", - "n185975928", - "n185967775", - "n185975930", - "n2139795809", - "n2139795810" - ] - }, - "w17965353": { - "id": "w17965353", - "tags": { - "highway": "residential", - "name": "Yauney Street" - }, - "nodes": ["n185966958", "n185966960", "n185966962"] + "nodes": ["n185975913", "n185975925", "n185970909", "n1475284013", "n1475283980", "n185975928", "n185967775", "n185975930"] }, "w203972938": { "id": "w203972938", @@ -5796,7 +4767,7 @@ }, "n185978377": { "id": "n185978377", - "loc": [-85.634561, 41.945732], + "loc": [-85.63456, 41.945731], "tags": { "highway": "crossing", "crossing": "zebra" @@ -5840,7 +4811,7 @@ }, "n1475283992": { "id": "n1475283992", - "loc": [-85.637297, 41.945901] + "loc": [-85.637349, 41.945897] }, "n1475284011": { "id": "n1475284011", @@ -5856,7 +4827,7 @@ }, "n185988243": { "id": "n185988243", - "loc": [-85.636616, 41.946028] + "loc": [-85.636669, 41.946025] }, "n185988244": { "id": "n185988244", @@ -5864,7 +4835,7 @@ }, "n185988245": { "id": "n185988245", - "loc": [-85.637013, 41.94597] + "loc": [-85.637039, 41.945968] }, "n185988241": { "id": "n185988241", @@ -5872,7 +4843,7 @@ }, "n185964976": { "id": "n185964976", - "loc": [-85.633924, 41.943412] + "loc": [-85.634005, 41.943367] }, "n185964980": { "id": "n185964980", @@ -5976,7 +4947,7 @@ }, "n2139824705": { "id": "n2139824705", - "loc": [-85.633756, 41.94481] + "loc": [-85.633762, 41.944809] }, "n2139824707": { "id": "n2139824707", @@ -5992,7 +4963,7 @@ }, "n2139824713": { "id": "n2139824713", - "loc": [-85.63382, 41.944863] + "loc": [-85.633822, 41.944861] }, "n2139824714": { "id": "n2139824714", @@ -6092,7 +5063,7 @@ }, "n2139824758": { "id": "n2139824758", - "loc": [-85.633584, 41.945217] + "loc": [-85.633578, 41.945221] }, "n2139824759": { "id": "n2139824759", @@ -6600,7 +5571,7 @@ }, "n2168544795": { "id": "n2168544795", - "loc": [-85.634505, 41.945852] + "loc": [-85.634501, 41.945852] }, "n2168544797": { "id": "n2168544797", @@ -7142,10 +6113,6 @@ "id": "n185961396", "loc": [-85.634767, 41.959009] }, - "n185962625": { - "id": "n185962625", - "loc": [-85.635175, 41.97201] - }, "n185964982": { "id": "n185964982", "loc": [-85.632793, 41.94405], @@ -7162,38 +6129,22 @@ "id": "n185965291", "loc": [-85.636166, 41.947296] }, - "n185965399": { - "id": "n185965399", - "loc": [-85.634776, 41.959834] - }, "n185966937": { "id": "n185966937", "loc": [-85.633195, 41.94734] }, "n185966948": { "id": "n185966948", - "loc": [-85.626406, 41.957188] + "loc": [-85.626447, 41.957168] }, "n185967422": { "id": "n185967422", "loc": [-85.632023, 41.949012] }, - "n185967917": { - "id": "n185967917", - "loc": [-85.634763, 41.958292] - }, - "n185967918": { - "id": "n185967918", - "loc": [-85.636271, 41.958311] - }, "n185968100": { "id": "n185968100", "loc": [-85.630835, 41.950656] }, - "n185970515": { - "id": "n185970515", - "loc": [-85.634832, 41.963866] - }, "n185971578": { "id": "n185971578", "loc": [-85.634641, 41.948627] @@ -7206,14 +6157,6 @@ "id": "n185971631", "loc": [-85.634729, 41.954667] }, - "n185971632": { - "id": "n185971632", - "loc": [-85.636236, 41.954656] - }, - "n185972155": { - "id": "n185972155", - "loc": [-85.623333, 41.961987] - }, "n185974583": { "id": "n185974583", "loc": [-85.634686, 41.951158] @@ -7222,14 +6165,6 @@ "id": "n185974585", "loc": [-85.636206, 41.951146] }, - "n185975064": { - "id": "n185975064", - "loc": [-85.636218, 41.953667] - }, - "n185975735": { - "id": "n185975735", - "loc": [-85.634923, 41.969269] - }, "n185978390": { "id": "n185978390", "loc": [-85.634668, 41.949875] @@ -7242,49 +6177,13 @@ "id": "n185978394", "loc": [-85.634726, 41.955921] }, - "n185978399": { - "id": "n185978399", - "loc": [-85.634786, 41.960661] - }, - "n185978402": { - "id": "n185978402", - "loc": [-85.634806, 41.961485] - }, - "n185978406": { - "id": "n185978406", - "loc": [-85.63483, 41.964783] - }, - "n185978410": { - "id": "n185978410", - "loc": [-85.634877, 41.967709] - }, - "n185978414": { - "id": "n185978414", - "loc": [-85.634938, 41.971566] - }, - "n185978415": { - "id": "n185978415", - "loc": [-85.634942, 41.971611] - }, - "n185978417": { - "id": "n185978417", - "loc": [-85.634952, 41.971655] - }, - "n185978419": { - "id": "n185978419", - "loc": [-85.634989, 41.971741] - }, - "n185978420": { - "id": "n185978420", - "loc": [-85.635063, 41.971864] - }, "n185978787": { "id": "n185978787", "loc": [-85.627936, 41.954693] }, "n185978790": { "id": "n185978790", - "loc": [-85.626832, 41.954677] + "loc": [-85.626832, 41.954698] }, "n185978967": { "id": "n185978967", @@ -7308,11 +6207,11 @@ }, "n185982196": { "id": "n185982196", - "loc": [-85.626336, 41.957291] + "loc": [-85.626375, 41.957279] }, "n185982197": { "id": "n185982197", - "loc": [-85.625578, 41.958664] + "loc": [-85.625525, 41.95864] }, "n185984017": { "id": "n185984017", @@ -7320,15 +6219,7 @@ }, "n185984020": { "id": "n185984020", - "loc": [-85.636188, 41.94988] - }, - "n185984022": { - "id": "n185984022", - "loc": [-85.636276, 41.955919] - }, - "n185984024": { - "id": "n185984024", - "loc": [-85.636279, 41.956901] + "loc": [-85.636188, 41.949874] }, "n185988036": { "id": "n185988036", @@ -7360,7 +6251,7 @@ }, "n2139795768": { "id": "n2139795768", - "loc": [-85.624302, 41.96061] + "loc": [-85.623684, 41.961482] }, "n2139832645": { "id": "n2139832645", @@ -7418,10 +6309,6 @@ "id": "n2139844839", "loc": [-85.632626, 41.943231] }, - "n2189015992": { - "id": "n2189015992", - "loc": [-85.634771, 41.959338] - }, "n2189153179": { "id": "n2189153179", "loc": [-85.634048, 41.947257] @@ -7572,7 +6459,7 @@ "highway": "residential", "name": "Water Street" }, - "nodes": ["n185963451", "n2189153277", "n185988036", "n185978790"] + "nodes": ["n185963451", "n2189153277", "n185988036", "n1"] }, "w208643133": { "id": "w208643133", @@ -7691,7 +6578,17 @@ "tags": { "amenity": "parking" }, - "nodes": ["n2130304152", "n2130304153", "n2140006403", "n2130304154", "n2130304156", "n2130304155", "n2130304160", "n2130304152"] + "nodes": [ + "n2130304152", + "n1170", + "n2130304153", + "n2140006403", + "n2130304154", + "n2130304156", + "n2130304155", + "n2130304160", + "n2130304152" + ] }, "w203974054": { "id": "w203974054", @@ -7863,7 +6760,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824732", "n2139824745", "n2139824752", "n2139824744", "n2139824724", "n2139824732"] + "nodes": ["n2139824732", "n2139824745", "n2139824752", "n2139824744", "n920", "n2139824724", "n2139824732"] }, "w203970097": { "id": "w203970097", @@ -7877,7 +6774,7 @@ "tags": { "building": "yes" }, - "nodes": ["n2139824765", "n2139824774", "n2139824758", "n2139824747", "n2139824765"] + "nodes": ["n2139824765", "n2139824774", "n994", "n997", "n998", "n996", "n995", "n2139824758", "n2139824747", "n2139824765"] }, "w134150840": { "id": "w134150840", @@ -7893,7 +6790,7 @@ "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185978388", "n2139832709", "n185988239"] + "nodes": ["n185978388", "n1026", "n2139832709", "n185988239"] }, "w203988292": { "id": "w203988292", @@ -8005,25 +6902,7 @@ "tags": { "highway": "service" }, - "nodes": [ - "n2140006431", - "n835", - "n30", - "n2140006433", - "n35", - "n29", - "n2140006435", - "n34", - "n28", - "n2140006436", - "n2140006437", - "n32", - "n2140006438", - "n31", - "n33", - "n2140006439", - "n2140006440" - ] + "nodes": ["n2140006431", "n1102"] }, "w203970106": { "id": "w203970106", @@ -8105,8 +6984,7 @@ "n185966948", "n185982196", "n185982197", - "n2139795768", - "n185972155" + "n2139795768" ] }, "w203988294": { @@ -8165,54 +7043,6 @@ "n2168544848" ] }, - "w143497377": { - "id": "w143497377", - "tags": { - "highway": "primary", - "name": "North Main Street", - "old_ref": "US 131", - "ref": "US 131 Business" - }, - "nodes": [ - "n185962625", - "n185978420", - "n185978419", - "n185978417", - "n185978415", - "n185978414", - "n185975735", - "n1475293254", - "n185978410", - "n185978406", - "n185970515", - "n185978402", - "n185978399", - "n185965399", - "n2189015992", - "n185961396", - "n185967917", - "n185978394", - "n185971631", - "n185960796", - "n185978392", - "n185974583", - "n185978390", - "n185971578", - "n185965289", - "n2189153215", - "n185978388", - "n185978383", - "n185978381", - "n185978379", - "n185978377", - "n185978375", - "n720", - "n726", - "n370", - "n368", - "n185964982" - ] - }, "w134150811": { "id": "w134150811", "tags": { @@ -8249,12 +7079,7 @@ "n185971580", "n185984020", "n185974585", - "n185982163", - "n185975064", - "n185971632", - "n185984022", - "n185984024", - "n185967918" + "n185982163" ] }, "w134150778": { @@ -8264,7 +7089,7 @@ "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185988245", "n1475283992", "n185975911"] + "nodes": ["n185988245", "n1152", "n1475283992", "n185975913"] }, "w206805248": { "id": "w206805248", @@ -8337,14 +7162,14 @@ "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2130304162", "n2130304163", "n2130304164", "n2130304165", "n2130304162"] + "nodes": ["n2130304162", "n2130304163", "n2130304164", "n2130304165", "n1162", "n2130304162"] }, "w203970911": { "id": "w203970911", "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n2139832714", "n2139832713", "n659", "n2139832710", "n658", "n657", "n185988971"] + "nodes": ["n2139832709", "n1160", "n2139832714", "n2139832713", "n659", "n2139832710", "n658", "n657", "n185988971"] }, "w203970105": { "id": "w203970105", @@ -8399,7 +7224,7 @@ "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832682", "n2139832688", "n2139832684", "n2139832678", "n2139832686"] + "nodes": ["n2139832682", "n2139832688", "n2139832684", "n989", "n2139832678", "n2139832686"] }, "n354002527": { "id": "n354002527", @@ -8647,7 +7472,7 @@ }, "n185978800": { "id": "n185978800", - "loc": [-85.623953, 41.954684] + "loc": [-85.62384, 41.95466] }, "n185980372": { "id": "n185980372", @@ -8869,6 +7694,8 @@ "n185983144", "n185983145", "n185983146", + "n1203", + "n1202", "n185978800" ] }, @@ -9530,7 +8357,8 @@ "n1819848925", "n1819848852", "n1819848998", - "n1819849057" + "n1819849057", + "n1820938512" ] }, "r270264": { @@ -9640,7 +8468,7 @@ "role": "" }, { - "id": "w17966462", + "id": "w227", "type": "way", "role": "" }, @@ -9669,62 +8497,10 @@ "id": "n185958034", "loc": [-85.627102, 41.939144] }, - "n185964331": { - "id": "n185964331", - "loc": [-85.623571, 41.940136] - }, - "n185972756": { - "id": "n185972756", - "loc": [-85.623802, 41.939102] - }, - "n185972757": { - "id": "n185972757", - "loc": [-85.623584, 41.93913] - }, - "n185975325": { - "id": "n185975325", - "loc": [-85.624835, 41.939318] - }, - "n185975326": { - "id": "n185975326", - "loc": [-85.624811, 41.939435] - }, - "n185975327": { - "id": "n185975327", - "loc": [-85.624635, 41.939703] - }, - "n185975328": { - "id": "n185975328", - "loc": [-85.624366, 41.940055] - }, - "n185975330": { - "id": "n185975330", - "loc": [-85.624287, 41.940113] - }, - "n185975332": { - "id": "n185975332", - "loc": [-85.624215, 41.940134] - }, "n185980088": { "id": "n185980088", "loc": [-85.627127, 41.940086] }, - "n185988943": { - "id": "n185988943", - "loc": [-85.622643, 41.940139] - }, - "n185990192": { - "id": "n185990192", - "loc": [-85.622933, 41.939224] - }, - "n185990194": { - "id": "n185990194", - "loc": [-85.621823, 41.939209] - }, - "n185991378": { - "id": "n185991378", - "loc": [-85.622643, 41.940635] - }, "n1475283999": { "id": "n1475283999", "loc": [-85.627116, 41.940843] @@ -9733,142 +8509,10 @@ "id": "n185980090", "loc": [-85.627132, 41.9402] }, - "n185958036": { - "id": "n185958036", - "loc": [-85.624837, 41.939161] - }, - "n1819800188": { - "id": "n1819800188", - "loc": [-85.624695, 41.940164] - }, - "n1819800199": { - "id": "n1819800199", - "loc": [-85.623369, 41.94309] - }, - "n1819800204": { - "id": "n1819800204", - "loc": [-85.622324, 41.940859] - }, - "n1819800213": { - "id": "n1819800213", - "loc": [-85.624753, 41.941414] - }, - "n1819800216": { - "id": "n1819800216", - "loc": [-85.623096, 41.940715] - }, - "n1819800218": { - "id": "n1819800218", - "loc": [-85.621991, 41.942934] - }, - "n1819800221": { - "id": "n1819800221", - "loc": [-85.624609, 41.942471] - }, - "n1819800227": { - "id": "n1819800227", - "loc": [-85.624137, 41.940308] - }, - "n1819800230": { - "id": "n1819800230", - "loc": [-85.622678, 41.943101] - }, - "n1819800231": { - "id": "n1819800231", - "loc": [-85.624373, 41.940164] - }, - "n1819800232": { - "id": "n1819800232", - "loc": [-85.624963, 41.940891] - }, - "n1819800248": { - "id": "n1819800248", - "loc": [-85.623869, 41.940556] - }, - "n1819800266": { - "id": "n1819800266", - "loc": [-85.624688, 41.941837] - }, - "n1819800271": { - "id": "n1819800271", - "loc": [-85.62492, 41.94137] - }, - "n1819800294": { - "id": "n1819800294", - "loc": [-85.624356, 41.942746] - }, - "n1819800304": { - "id": "n1819800304", - "loc": [-85.625145, 41.94117] - }, - "n1819800325": { - "id": "n1819800325", - "loc": [-85.624823, 41.940571] - }, - "n1819800362": { - "id": "n1819800362", - "loc": [-85.623954, 41.942942] - }, - "n1819800368": { - "id": "n1819800368", - "loc": [-85.624341, 41.940228] - }, - "n1819800375": { - "id": "n1819800375", - "loc": [-85.622656, 41.940755] - }, - "n1819800377": { - "id": "n1819800377", - "loc": [-85.623203, 41.940651] - }, - "n185945133": { - "id": "n185945133", - "loc": [-85.623501, 41.933232] - }, - "n185957831": { - "id": "n185957831", - "loc": [-85.625041, 41.938662] - }, - "n185958030": { - "id": "n185958030", - "loc": [-85.629033, 41.93913] - }, - "n185958032": { - "id": "n185958032", - "loc": [-85.628429, 41.939135] - }, - "n185958498": { - "id": "n185958498", - "loc": [-85.621605, 41.940143] - }, - "n185963099": { - "id": "n185963099", - "loc": [-85.620446, 41.940147] - }, "n185963698": { "id": "n185963698", "loc": [-85.629734, 41.940078] }, - "n185967077": { - "id": "n185967077", - "loc": [-85.617359, 41.940157] - }, - "n185972752": { - "id": "n185972752", - "loc": [-85.624582, 41.938848] - }, - "n185972754": { - "id": "n185972754", - "loc": [-85.6242, 41.939008] - }, - "n185973251": { - "id": "n185973251", - "loc": [-85.602727, 41.936012] - }, - "n185975315": { - "id": "n185975315", - "loc": [-85.624671, 41.925708] - }, "n185977754": { "id": "n185977754", "loc": [-85.6276, 41.937412] @@ -9901,10 +8545,6 @@ "id": "n185980085", "loc": [-85.627101, 41.938699] }, - "n185981173": { - "id": "n185981173", - "loc": [-85.606345, 41.940211] - }, "n185987021": { "id": "n185987021", "loc": [-85.628311, 41.942261] @@ -9913,146 +8553,6 @@ "id": "n185988963", "loc": [-85.628439, 41.940082] }, - "n185990195": { - "id": "n185990195", - "loc": [-85.621187, 41.939149] - }, - "n185990196": { - "id": "n185990196", - "loc": [-85.620553, 41.939056] - }, - "n1819800182": { - "id": "n1819800182", - "loc": [-85.61314, 41.942702] - }, - "n1819800183": { - "id": "n1819800183", - "loc": [-85.617152, 41.941681] - }, - "n1819800185": { - "id": "n1819800185", - "loc": [-85.61093, 41.941058] - }, - "n1819800186": { - "id": "n1819800186", - "loc": [-85.616573, 41.9418] - }, - "n1819800201": { - "id": "n1819800201", - "loc": [-85.610114, 41.943341] - }, - "n1819800206": { - "id": "n1819800206", - "loc": [-85.615436, 41.94275] - }, - "n1819800209": { - "id": "n1819800209", - "loc": [-85.611369, 41.943189] - }, - "n1819800211": { - "id": "n1819800211", - "loc": [-85.618032, 41.941641] - }, - "n1819800223": { - "id": "n1819800223", - "loc": [-85.611717, 41.943002] - }, - "n1819800229": { - "id": "n1819800229", - "loc": [-85.62034, 41.94256] - }, - "n1819800233": { - "id": "n1819800233", - "loc": [-85.610758, 41.943301] - }, - "n1819800237": { - "id": "n1819800237", - "loc": [-85.615161, 41.942866] - }, - "n1819800241": { - "id": "n1819800241", - "loc": [-85.618633, 41.941649] - }, - "n1819800245": { - "id": "n1819800245", - "loc": [-85.620206, 41.942571] - }, - "n1819800255": { - "id": "n1819800255", - "loc": [-85.615704, 41.941673] - }, - "n1819800256": { - "id": "n1819800256", - "loc": [-85.608033, 41.941098] - }, - "n1819800258": { - "id": "n1819800258", - "loc": [-85.619255, 41.941489] - }, - "n1819800260": { - "id": "n1819800260", - "loc": [-85.610425, 41.94117] - }, - "n1819800261": { - "id": "n1819800261", - "loc": [-85.62045, 41.942571] - }, - "n1819800264": { - "id": "n1819800264", - "loc": [-85.616176, 41.941824] - }, - "n1819800268": { - "id": "n1819800268", - "loc": [-85.612088, 41.94267] - }, - "n1819800272": { - "id": "n1819800272", - "loc": [-85.620918, 41.942503] - }, - "n1819800274": { - "id": "n1819800274", - "loc": [-85.612281, 41.941282] - }, - "n1819800288": { - "id": "n1819800288", - "loc": [-85.621229, 41.941298] - }, - "n1819800291": { - "id": "n1819800291", - "loc": [-85.616283, 41.94271] - }, - "n1819800293": { - "id": "n1819800293", - "loc": [-85.608644, 41.941146] - }, - "n1819800296": { - "id": "n1819800296", - "loc": [-85.620468, 41.941378] - }, - "n1819800297": { - "id": "n1819800297", - "loc": [-85.612496, 41.942495] - }, - "n1819800303": { - "id": "n1819800303", - "loc": [-85.611477, 41.94117] - }, - "n1819800310": { - "id": "n1819800310", - "loc": [-85.621894, 41.941106] - }, - "n1819800311": { - "id": "n1819800311", - "loc": [-85.609782, 41.941162] - }, - "n1819800317": { - "id": "n1819800317", - "loc": [-85.617635, 41.941577] - }, - "n1819800318": { - "id": "n1819800318", - "loc": [-85.613783, 41.943085] - }, "n1819800319": { "id": "n1819800319", "loc": [-85.619538, 41.942622], @@ -10060,70 +8560,6 @@ "leisure": "slipway" } }, - "n1819800324": { - "id": "n1819800324", - "loc": [-85.62124, 41.942591] - }, - "n1819800328": { - "id": "n1819800328", - "loc": [-85.617936, 41.942854] - }, - "n1819800333": { - "id": "n1819800333", - "loc": [-85.608891, 41.943181] - }, - "n1819800336": { - "id": "n1819800336", - "loc": [-85.615049, 41.942966] - }, - "n1819800343": { - "id": "n1819800343", - "loc": [-85.60961, 41.943333] - }, - "n1819800347": { - "id": "n1819800347", - "loc": [-85.608036, 41.942915] - }, - "n1819800349": { - "id": "n1819800349", - "loc": [-85.618762, 41.942662] - }, - "n1819800352": { - "id": "n1819800352", - "loc": [-85.621487, 41.942838] - }, - "n1819800354": { - "id": "n1819800354", - "loc": [-85.61338, 41.94293] - }, - "n1819800360": { - "id": "n1819800360", - "loc": [-85.618654, 41.941465] - }, - "n1819800363": { - "id": "n1819800363", - "loc": [-85.612861, 41.942566] - }, - "n1819800365": { - "id": "n1819800365", - "loc": [-85.614234, 41.941298] - }, - "n1819800367": { - "id": "n1819800367", - "loc": [-85.608966, 41.94109] - }, - "n1819800369": { - "id": "n1819800369", - "loc": [-85.619738, 41.94137] - }, - "n1819800379": { - "id": "n1819800379", - "loc": [-85.61506, 41.941513] - }, - "n1819800380": { - "id": "n1819800380", - "loc": [-85.613215, 41.941234] - }, "n2139966621": { "id": "n2139966621", "loc": [-85.619872, 41.942618] @@ -10136,18 +8572,10 @@ "id": "n2139966623", "loc": [-85.619647, 41.942628] }, - "n2139966624": { - "id": "n2139966624", - "loc": [-85.619152, 41.942622] - }, "n2139966625": { "id": "n2139966625", "loc": [-85.619415, 41.942626] }, - "n2139966626": { - "id": "n2139966626", - "loc": [-85.62005, 41.942581] - }, "n2139966629": { "id": "n2139966629", "loc": [-85.619212, 41.942623] @@ -10168,22 +8596,6 @@ }, "nodes": ["n185980088", "n185988963", "n185963698"] }, - "w17965088": { - "id": "w17965088", - "tags": { - "highway": "residential", - "name": "9th Street" - }, - "nodes": ["n185945133", "n185964331"] - }, - "w17964467": { - "id": "w17964467", - "tags": { - "highway": "residential", - "name": "Mechanic Street" - }, - "nodes": ["n185958030", "n185958032", "n185958034", "n185958036"] - }, "w134150842": { "id": "w134150842", "tags": { @@ -10213,29 +8625,6 @@ "n185980090" ] }, - "w170844765": { - "id": "w170844765", - "tags": { - "waterway": "dam" - }, - "nodes": ["n1819800304", "n1819800232", "n1819800325", "n1819800188"] - }, - "w17967745": { - "id": "w17967745", - "tags": { - "highway": "residential", - "name": "River Street" - }, - "nodes": ["n185981173", "n185967077", "n185963099", "n185958498", "n185988943", "n185964331", "n185975332"] - }, - "w17968113": { - "id": "w17968113", - "tags": { - "highway": "residential", - "name": "Green Street" - }, - "nodes": ["n185988943", "n185991378"] - }, "w134150833": { "id": "w134150833", "tags": { @@ -10244,41 +8633,9 @@ }, "nodes": ["n185980093", "n1475283999", "n185963392"] }, - "w17967935": { - "id": "w17967935", - "tags": { - "name": "Michigan Central Railroad", - "railway": "abandoned" - }, - "nodes": ["n185972757", "n185990192", "n7", "n185990194", "n185990195", "n185990196", "n185973251"] - }, - "w17965993": { - "id": "w17965993", - "tags": { - "name": "Conrail Railroad", - "railway": "abandoned" - }, - "nodes": ["n185957831", "n185972752", "n185972754", "n185972756", "n185972757"] - }, - "w17966211": { - "id": "w17966211", - "tags": { - "highway": "residential", - "name": "8th Street" - }, - "nodes": ["n185975315", "n185958036", "n185975325", "n185975326", "n185975327", "n185975328", "n185975330", "n185975332"] - }, - "n1875654132": { - "id": "n1875654132", - "loc": [-85.629744, 41.939808] - }, - "n1475293263": { - "id": "n1475293263", - "loc": [-85.629623, 41.939922] - }, "n185947850": { "id": "n185947850", - "loc": [-85.631594, 41.942613] + "loc": [-85.631485, 41.942472] }, "n185952745": { "id": "n185952745", @@ -10292,10 +8649,6 @@ "id": "n185972911", "loc": [-85.630972, 41.941162] }, - "n185972915": { - "id": "n185972915", - "loc": [-85.629597, 41.939267] - }, "n1475293223": { "id": "n1475293223", "loc": [-85.631396, 41.941611], @@ -10574,38 +8927,6 @@ "id": "n2168544779", "loc": [-85.630485, 41.942524] }, - "n2189099387": { - "id": "n2189099387", - "loc": [-85.631203, 41.939337] - }, - "n2189099404": { - "id": "n2189099404", - "loc": [-85.630196, 41.939136] - }, - "n2189099405": { - "id": "n2189099405", - "loc": [-85.630445, 41.939135] - }, - "n2189099406": { - "id": "n2189099406", - "loc": [-85.630446, 41.939339] - }, - "n2189099407": { - "id": "n2189099407", - "loc": [-85.630843, 41.939337] - }, - "n2189099408": { - "id": "n2189099408", - "loc": [-85.630842, 41.939125] - }, - "n2189099409": { - "id": "n2189099409", - "loc": [-85.631093, 41.939124] - }, - "n2189099410": { - "id": "n2189099410", - "loc": [-85.631095, 41.939338] - }, "n2189112720": { "id": "n2189112720", "loc": [-85.631468, 41.941233] @@ -10926,86 +9247,6 @@ "id": "n2189123415", "loc": [-85.631648, 41.940043] }, - "n185945401": { - "id": "n185945401", - "loc": [-85.626983, 41.930531] - }, - "n185956891": { - "id": "n185956891", - "loc": [-85.625226, 41.925703] - }, - "n185963655": { - "id": "n185963655", - "loc": [-85.629611, 41.927395] - }, - "n185972917": { - "id": "n185972917", - "loc": [-85.629376, 41.93886] - }, - "n185972919": { - "id": "n185972919", - "loc": [-85.629034, 41.938023] - }, - "n185972921": { - "id": "n185972921", - "loc": [-85.628424, 41.936212] - }, - "n185972923": { - "id": "n185972923", - "loc": [-85.628367, 41.936029] - }, - "n185977728": { - "id": "n185977728", - "loc": [-85.62555, 41.925713] - }, - "n185977734": { - "id": "n185977734", - "loc": [-85.627012, 41.930687] - }, - "n185977736": { - "id": "n185977736", - "loc": [-85.627029, 41.930817] - }, - "n185977738": { - "id": "n185977738", - "loc": [-85.627041, 41.930946] - }, - "n185977744": { - "id": "n185977744", - "loc": [-85.627084, 41.936804] - }, - "n185977746": { - "id": "n185977746", - "loc": [-85.627104, 41.936914] - }, - "n185977748": { - "id": "n185977748", - "loc": [-85.627156, 41.937026] - }, - "n185977750": { - "id": "n185977750", - "loc": [-85.627241, 41.937167] - }, - "n185977752": { - "id": "n185977752", - "loc": [-85.627317, 41.93723] - }, - "n185977753": { - "id": "n185977753", - "loc": [-85.627422, 41.937312] - }, - "n185977755": { - "id": "n185977755", - "loc": [-85.627754, 41.937504] - }, - "n185977757": { - "id": "n185977757", - "loc": [-85.627883, 41.937623] - }, - "n185977761": { - "id": "n185977761", - "loc": [-85.627984, 41.93773] - }, "n1475283996": { "id": "n1475283996", "loc": [-85.627051, 41.931712], @@ -11048,74 +9289,6 @@ "railway": "level_crossing" } }, - "n1475293245": { - "id": "n1475293245", - "loc": [-85.628605, 41.936788] - }, - "n2189099388": { - "id": "n2189099388", - "loc": [-85.631201, 41.938999] - }, - "n2189099389": { - "id": "n2189099389", - "loc": [-85.6311, 41.938999] - }, - "n2189099390": { - "id": "n2189099390", - "loc": [-85.631099, 41.938785] - }, - "n2189099391": { - "id": "n2189099391", - "loc": [-85.631216, 41.938784] - }, - "n2189099392": { - "id": "n2189099392", - "loc": [-85.631215, 41.938586] - }, - "n2189099393": { - "id": "n2189099393", - "loc": [-85.631088, 41.938586] - }, - "n2189099394": { - "id": "n2189099394", - "loc": [-85.631086, 41.938316] - }, - "n2189099395": { - "id": "n2189099395", - "loc": [-85.6302, 41.93832] - }, - "n2189099396": { - "id": "n2189099396", - "loc": [-85.630201, 41.938447] - }, - "n2189099397": { - "id": "n2189099397", - "loc": [-85.630102, 41.938448] - }, - "n2189099398": { - "id": "n2189099398", - "loc": [-85.630103, 41.938542] - }, - "n2189099399": { - "id": "n2189099399", - "loc": [-85.629927, 41.938543] - }, - "n2189099400": { - "id": "n2189099400", - "loc": [-85.62993, 41.938865] - }, - "n2189099401": { - "id": "n2189099401", - "loc": [-85.630107, 41.938865] - }, - "n2189099402": { - "id": "n2189099402", - "loc": [-85.630108, 41.938991] - }, - "n2189099403": { - "id": "n2189099403", - "loc": [-85.630195, 41.93899] - }, "n2189123382": { "id": "n2189123382", "loc": [-85.633628, 41.935437] @@ -11256,26 +9429,7 @@ "name": "Conrail Railroad", "railway": "rail" }, - "nodes": [ - "n185972905", - "n185972907", - "n1475293223", - "n185972911", - "n1475293241", - "n1475293246", - "n185972915", - "n185972917", - "n185972919", - "n1475293245", - "n185972921", - "n185972923", - "n1475284027", - "n1475284004", - "n1475284017", - "n1475283996", - "n1475284035", - "n185956891" - ] + "nodes": ["n185972905", "n185972907", "n1475293223", "n185972911", "n1475293241", "n1475293246"] }, "w208639443": { "id": "w208639443", @@ -11284,39 +9438,6 @@ }, "nodes": ["n2189112720", "n2189112721", "n2189112722", "n2189112723", "n2189112720"] }, - "w17966462": { - "id": "w17966462", - "tags": { - "highway": "secondary", - "name": "South Main Street", - "old_ref": "US 131", - "ref": "M 86" - }, - "nodes": [ - "n185977728", - "n185945401", - "n185977734", - "n185977736", - "n185977738", - "n1475283996", - "n185977744", - "n185977746", - "n185977748", - "n185977750", - "n185977752", - "n185977753", - "n185977754", - "n185977755", - "n185977757", - "n185977761", - "n185958030", - "n1475293263", - "n185963698", - "n185952745", - "n185947850", - "n185977762" - ] - }, "w203985741": { "id": "w203985741", "tags": { @@ -11442,39 +9563,6 @@ }, "nodes": ["n2189112740", "n2189112741", "n2189112742", "n2189112743", "n2189112740"] }, - "w208637859": { - "id": "w208637859", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2189099387", - "n2189099388", - "n2189099389", - "n2189099390", - "n2189099391", - "n2189099392", - "n2189099393", - "n2189099394", - "n2189099395", - "n2189099396", - "n2189099397", - "n2189099398", - "n2189099399", - "n2189099400", - "n2189099401", - "n2189099402", - "n2189099403", - "n2189099404", - "n2189099405", - "n2189099406", - "n2189099407", - "n2189099408", - "n2189099409", - "n2189099410", - "n2189099387" - ] - }, "w208639453": { "id": "w208639453", "tags": { @@ -11496,14 +9584,6 @@ }, "nodes": ["n2189112728", "n2189112729", "n2189112730", "n2189112731", "n2189112728"] }, - "w17967776": { - "id": "w17967776", - "tags": { - "highway": "residential", - "name": "5th Street" - }, - "nodes": ["n185958032", "n185988963"] - }, "w208639461": { "id": "w208639461", "tags": { @@ -11571,14 +9651,6 @@ "n2139982411" ] }, - "w17965023": { - "id": "w17965023", - "tags": { - "highway": "residential", - "name": "4th Street" - }, - "nodes": ["n185963655", "n1475284021", "n1475293246", "n1875654132", "n1475293263"] - }, "w206805242": { "id": "w206805242", "tags": { @@ -11646,7 +9718,7 @@ }, "n185967424": { "id": "n185967424", - "loc": [-85.632034, 41.949911] + "loc": [-85.632034, 41.949905] }, "n185968101": { "id": "n185968101", @@ -11662,11 +9734,7 @@ }, "n185961391": { "id": "n185961391", - "loc": [-85.632151, 41.959025] - }, - "n185965395": { - "id": "n185965395", - "loc": [-85.632161, 41.959859] + "loc": [-85.632151, 41.959028] }, "n185966953": { "id": "n185966953", @@ -11678,23 +9746,15 @@ }, "n185967430": { "id": "n185967430", - "loc": [-85.632067, 41.952453] + "loc": [-85.632072, 41.95244] }, "n185967432": { "id": "n185967432", - "loc": [-85.632095, 41.954685] + "loc": [-85.632095, 41.954677] }, "n185967434": { "id": "n185967434", - "loc": [-85.632111, 41.955907] - }, - "n185967438": { - "id": "n185967438", - "loc": [-85.632172, 41.960681] - }, - "n185967440": { - "id": "n185967440", - "loc": [-85.632182, 41.961493] + "loc": [-85.632111, 41.955916] }, "n185968102": { "id": "n185968102", @@ -11702,28 +9762,16 @@ }, "n185968104": { "id": "n185968104", - "loc": [-85.630869, 41.953714] + "loc": [-85.630869, 41.953713] }, "n185968106": { "id": "n185968106", - "loc": [-85.63088, 41.954692] + "loc": [-85.63088, 41.954682] }, "n185968108": { "id": "n185968108", "loc": [-85.630894, 41.955913] }, - "n185968112": { - "id": "n185968112", - "loc": [-85.630947, 41.960667] - }, - "n185968114": { - "id": "n185968114", - "loc": [-85.630957, 41.961495] - }, - "n185968116": { - "id": "n185968116", - "loc": [-85.630962, 41.961967] - }, "n185978969": { "id": "n185978969", "loc": [-85.633214, 41.948618] @@ -11734,7 +9782,7 @@ }, "n185986155": { "id": "n185986155", - "loc": [-85.633258, 41.949893] + "loc": [-85.633258, 41.949891] }, "n2208608826": { "id": "n2208608826", @@ -11762,19 +9810,7 @@ "highway": "residential", "name": "Elm Street" }, - "nodes": [ - "n185968100", - "n185968101", - "n185968102", - "n185968104", - "n185968106", - "n185968108", - "n185966953", - "n185961389", - "n185968112", - "n185968114", - "n185968116" - ] + "nodes": ["n185968100", "n185968101", "n185968102", "n185968104", "n185968106", "n185968108", "n185966953", "n185961389", "n1032"] }, "w17967844": { "id": "w17967844", @@ -11808,9 +9844,7 @@ "n185967434", "n185966955", "n185961391", - "n185965395", - "n185967438", - "n185967440" + "n1033" ] }, "n2199093506": { @@ -12228,108 +10262,17 @@ }, "nodes": ["n2199093481", "n2199093482", "n2199093483", "n2199093484", "n2199093481"] }, - "n185949872": { - "id": "n185949872", - "loc": [-85.643009, 41.949264] - }, - "n185949875": { - "id": "n185949875", - "loc": [-85.642598, 41.94929] - }, - "n185949877": { - "id": "n185949877", - "loc": [-85.642127, 41.949382] - }, - "n185949881": { - "id": "n185949881", - "loc": [-85.64169, 41.949936] - }, - "n185988165": { - "id": "n185988165", - "loc": [-85.642093, 41.94765] - }, - "n185988169": { - "id": "n185988169", - "loc": [-85.642166, 41.947657] - }, - "n185965019": { - "id": "n185965019", - "loc": [-85.638508, 41.951127] - }, - "n1475293248": { - "id": "n1475293248", - "loc": [-85.63861, 41.951221] - }, "n185964355": { "id": "n185964355", "loc": [-85.637412, 41.951136] }, - "n185965021": { - "id": "n185965021", - "loc": [-85.638661, 41.952386] - }, - "n185965023": { - "id": "n185965023", - "loc": [-85.638654, 41.953665] - }, - "n185965025": { - "id": "n185965025", - "loc": [-85.638694, 41.954649] - }, - "n185965027": { - "id": "n185965027", - "loc": [-85.638724, 41.955913] - }, - "n185971420": { - "id": "n185971420", - "loc": [-85.649248, 41.949191] - }, - "n185979975": { - "id": "n185979975", - "loc": [-85.644429, 41.947633] - }, - "n185988171": { - "id": "n185988171", - "loc": [-85.645377, 41.947622] - }, - "w17963211": { - "id": "w17963211", - "tags": { - "highway": "residential" - }, - "nodes": ["n185949870", "n185949872", "n185949875", "n185949877", "n185949881"] - }, - "w17965839": { - "id": "w17965839", - "tags": { - "highway": "residential", - "name": "Arnold Street" - }, - "nodes": ["n185949870", "n185971420"] - }, - "w17967618": { - "id": "w17967618", - "tags": { - "highway": "residential", - "name": "Pierson Street" - }, - "nodes": ["n185967777", "n185988165", "n185988169", "n185985824", "n185979975", "n185988171"] - }, - "w17965149": { - "id": "w17965149", - "tags": { - "highway": "residential", - "name": "Oak Street" - }, - "nodes": ["n185965019", "n1475293248", "n185965021", "n185965023", "n185965025", "n185965027"] - }, "w17966118": { "id": "w17966118", "tags": { "highway": "residential", "name": "West Armitage Street" }, - "nodes": ["n185974583", "n185974585", "n185964355", "n185965019"] + "nodes": ["n185974583", "n185974585", "n185964355"] }, "n2208608800": { "id": "n2208608800", @@ -12625,7 +10568,7 @@ }, "n2208608795": { "id": "n2208608795", - "loc": [-85.635459, 41.949878] + "loc": [-85.635459, 41.949874] }, "n2199109638": { "id": "n2199109638", @@ -12725,7 +10668,7 @@ }, "n185964353": { "id": "n185964353", - "loc": [-85.637409, 41.949875] + "loc": [-85.637409, 41.949873] }, "n1819849180": { "id": "n1819849180", @@ -12743,10 +10686,6 @@ "id": "n1819848885", "loc": [-85.635458, 41.951058] }, - "n185984281": { - "id": "n185984281", - "loc": [-85.638075, 41.949872] - }, "n2208608827": { "id": "n2208608827", "loc": [-85.633921, 41.947334] @@ -12873,41 +10812,21 @@ "id": "n185964357", "loc": [-85.637432, 41.952399] }, - "n185964358": { - "id": "n185964358", - "loc": [-85.637452, 41.953665] - }, - "n185964359": { - "id": "n185964359", - "loc": [-85.63746, 41.954658] - }, - "n185964360": { - "id": "n185964360", - "loc": [-85.637473, 41.95592] - }, - "n185964361": { - "id": "n185964361", - "loc": [-85.637468, 41.956906] - }, - "n185964362": { - "id": "n185964362", - "loc": [-85.637483, 41.958313] - }, "n185966957": { "id": "n185966957", "loc": [-85.633361, 41.957422] }, "n185975351": { "id": "n185975351", - "loc": [-85.63334, 41.9559] + "loc": [-85.63334, 41.955918] }, "n185978784": { "id": "n185978784", - "loc": [-85.633311, 41.954679] + "loc": [-85.633311, 41.954673] }, "n185986157": { "id": "n185986157", - "loc": [-85.633287, 41.952426] + "loc": [-85.633292, 41.952426] }, "n185986158": { "id": "n185986158", @@ -13069,18 +10988,7 @@ "highway": "residential", "name": "Maple Street" }, - "nodes": [ - "n185964351", - "n185964352", - "n185964353", - "n185964355", - "n185964357", - "n185964358", - "n185964359", - "n185964360", - "n185964361", - "n185964362" - ] + "nodes": ["n185964351", "n185964352", "n185964353", "n185964355", "n185964357"] }, "w17965856": { "id": "w17965856", @@ -13131,7 +11039,7 @@ "highway": "residential", "name": "West Bennett Street" }, - "nodes": ["n185978390", "n2208608795", "n185984020", "n185964353", "n185984281"] + "nodes": ["n185978390", "n2208608795", "n185984020", "n185964353"] }, "w17965349": { "id": "w17965349", @@ -13226,22 +11134,6 @@ }, "nodes": ["n2208608806", "n2208608808", "n2208608811", "n2208608821", "n2208608823", "n2208608825", "n2208608806"] }, - "n185954965": { - "id": "n185954965", - "loc": [-85.619119, 41.944192] - }, - "n185954968": { - "id": "n185954968", - "loc": [-85.619438, 41.94424] - }, - "n185954970": { - "id": "n185954970", - "loc": [-85.619654, 41.944325] - }, - "n185954972": { - "id": "n185954972", - "loc": [-85.619786, 41.944454] - }, "n354002931": { "id": "n354002931", "loc": [-85.619899, 41.945527] @@ -13263,98 +11155,6 @@ "name": "George Washington Carver Community Center" } }, - "n185947331": { - "id": "n185947331", - "loc": [-85.618779, 41.943269] - }, - "n185947333": { - "id": "n185947333", - "loc": [-85.618795, 41.943511] - }, - "n185947336": { - "id": "n185947336", - "loc": [-85.618711, 41.94413] - }, - "n185947338": { - "id": "n185947338", - "loc": [-85.618704, 41.944189] - }, - "n185947339": { - "id": "n185947339", - "loc": [-85.618597, 41.944337] - }, - "n185947340": { - "id": "n185947340", - "loc": [-85.618485, 41.944528] - }, - "n185947343": { - "id": "n185947343", - "loc": [-85.618442, 41.944716] - }, - "n185947345": { - "id": "n185947345", - "loc": [-85.618457, 41.945107] - }, - "n185947347": { - "id": "n185947347", - "loc": [-85.618296, 41.945338] - }, - "n185947374": { - "id": "n185947374", - "loc": [-85.616748, 41.944453] - }, - "n185947375": { - "id": "n185947375", - "loc": [-85.616813, 41.944646] - }, - "n185947376": { - "id": "n185947376", - "loc": [-85.616859, 41.945196] - }, - "n185947377": { - "id": "n185947377", - "loc": [-85.616941, 41.945352] - }, - "n185947406": { - "id": "n185947406", - "loc": [-85.618184, 41.944227] - }, - "n185947409": { - "id": "n185947409", - "loc": [-85.617911, 41.943875] - }, - "n185947410": { - "id": "n185947410", - "loc": [-85.617579, 41.943682] - }, - "n185947411": { - "id": "n185947411", - "loc": [-85.61713, 41.943589] - }, - "n185947412": { - "id": "n185947412", - "loc": [-85.616549, 41.943559] - }, - "n185947414": { - "id": "n185947414", - "loc": [-85.616482, 41.943556] - }, - "n185947464": { - "id": "n185947464", - "loc": [-85.616526, 41.943788] - }, - "n185947466": { - "id": "n185947466", - "loc": [-85.616504, 41.944002] - }, - "n185948863": { - "id": "n185948863", - "loc": [-85.619017, 41.943391] - }, - "n185948865": { - "id": "n185948865", - "loc": [-85.619059, 41.943368] - }, "n185955022": { "id": "n185955022", "loc": [-85.620088, 41.945571] @@ -13423,22 +11223,6 @@ "id": "n1475283972", "loc": [-85.619899, 41.943718] }, - "n1475283982": { - "id": "n1475283982", - "loc": [-85.619502, 41.943346] - }, - "n1475284007": { - "id": "n1475284007", - "loc": [-85.619304, 41.943338] - }, - "n1475284040": { - "id": "n1475284040", - "loc": [-85.619733, 41.943412] - }, - "n1475284044": { - "id": "n1475284044", - "loc": [-85.619876, 41.943536] - }, "n1475284050": { "id": "n1475284050", "loc": [-85.619969, 41.943211] @@ -13447,10 +11231,6 @@ "id": "n1475284053", "loc": [-85.619894, 41.943292] }, - "n185954974": { - "id": "n185954974", - "loc": [-85.61983, 41.94473] - }, "n185954977": { "id": "n185954977", "loc": [-85.620047, 41.944738] @@ -13583,158 +11363,6 @@ "id": "n2196831397", "loc": [-85.61804, 41.946418] }, - "n185947303": { - "id": "n185947303", - "loc": [-85.611074, 41.943389] - }, - "n185947304": { - "id": "n185947304", - "loc": [-85.611332, 41.943267] - }, - "n185947305": { - "id": "n185947305", - "loc": [-85.611635, 41.943218] - }, - "n185947306": { - "id": "n185947306", - "loc": [-85.612762, 41.943311] - }, - "n185947308": { - "id": "n185947308", - "loc": [-85.613027, 41.943327] - }, - "n185947310": { - "id": "n185947310", - "loc": [-85.615377, 41.942996] - }, - "n185947312": { - "id": "n185947312", - "loc": [-85.615701, 41.943007] - }, - "n185947314": { - "id": "n185947314", - "loc": [-85.61604, 41.943067] - }, - "n185947315": { - "id": "n185947315", - "loc": [-85.61626, 41.943083] - }, - "n185947316": { - "id": "n185947316", - "loc": [-85.616507, 41.943048] - }, - "n185947319": { - "id": "n185947319", - "loc": [-85.616702, 41.94299] - }, - "n185947321": { - "id": "n185947321", - "loc": [-85.617078, 41.942918] - }, - "n185947322": { - "id": "n185947322", - "loc": [-85.617366, 41.942973] - }, - "n185947323": { - "id": "n185947323", - "loc": [-85.617601, 41.943033] - }, - "n185947325": { - "id": "n185947325", - "loc": [-85.617799, 41.943027] - }, - "n185947327": { - "id": "n185947327", - "loc": [-85.618264, 41.942961] - }, - "n185947328": { - "id": "n185947328", - "loc": [-85.618508, 41.942972] - }, - "n185947329": { - "id": "n185947329", - "loc": [-85.618707, 41.943076] - }, - "n185947361": { - "id": "n185947361", - "loc": [-85.615356, 41.944922] - }, - "n185947363": { - "id": "n185947363", - "loc": [-85.61536, 41.944893] - }, - "n185947365": { - "id": "n185947365", - "loc": [-85.615406, 41.944547] - }, - "n185947367": { - "id": "n185947367", - "loc": [-85.61548, 41.944351] - }, - "n185947369": { - "id": "n185947369", - "loc": [-85.615805, 41.94419] - }, - "n185947371": { - "id": "n185947371", - "loc": [-85.616166, 41.944156] - }, - "n185947373": { - "id": "n185947373", - "loc": [-85.616411, 41.944197] - }, - "n185947416": { - "id": "n185947416", - "loc": [-85.616335, 41.94343] - }, - "n185947417": { - "id": "n185947417", - "loc": [-85.616069, 41.943293] - }, - "n185947419": { - "id": "n185947419", - "loc": [-85.615803, 41.943249] - }, - "n185947420": { - "id": "n185947420", - "loc": [-85.615524, 41.943342] - }, - "n185947421": { - "id": "n185947421", - "loc": [-85.615311, 41.94353] - }, - "n185947422": { - "id": "n185947422", - "loc": [-85.614338, 41.943558] - }, - "n185947423": { - "id": "n185947423", - "loc": [-85.61422, 41.94369] - }, - "n185947425": { - "id": "n185947425", - "loc": [-85.614221, 41.944224] - }, - "n185947427": { - "id": "n185947427", - "loc": [-85.614198, 41.944888] - }, - "n185947429": { - "id": "n185947429", - "loc": [-85.614221, 41.945439] - }, - "n185947468": { - "id": "n185947468", - "loc": [-85.615908, 41.944756] - }, - "n185947470": { - "id": "n185947470", - "loc": [-85.615871, 41.944888] - }, - "n185947472": { - "id": "n185947472", - "loc": [-85.615878, 41.94507] - }, "n185960690": { "id": "n185960690", "loc": [-85.620141, 41.951901] @@ -13892,23 +11520,6 @@ "n1475284038" ] }, - "w17962834": { - "id": "w17962834", - "tags": { - "highway": "service" - }, - "nodes": [ - "n185947316", - "n185947414", - "n185947464", - "n185947466", - "n185947373", - "n185947468", - "n185947470", - "n185947472", - "n185947474" - ] - }, "w209470310": { "id": "w209470310", "tags": { @@ -13916,70 +11527,6 @@ }, "nodes": ["n2196831393", "n2196831394", "n2196831395", "n2196831397", "n2196831393"] }, - "w17963058": { - "id": "w17963058", - "tags": { - "highway": "service" - }, - "nodes": ["n185947333", "n185948863", "n185948865", "n1475284007", "n1475283982", "n1475284040", "n1475284044"] - }, - "w17962823": { - "id": "w17962823", - "tags": { - "highway": "service" - }, - "nodes": [ - "n185947359", - "n185947361", - "n185947363", - "n185947365", - "n185947367", - "n185947369", - "n185947371", - "n185947373", - "n185947374", - "n185947375", - "n185947376", - "n185947377", - "n185947378" - ] - }, - "w17962821": { - "id": "w17962821", - "tags": { - "highway": "service" - }, - "nodes": [ - "n185947303", - "n185947304", - "n185947305", - "n185947306", - "n185947308", - "n185947310", - "n185947312", - "n185947314", - "n185947315", - "n185947316", - "n185947319", - "n185947321", - "n185947322", - "n185947323", - "n185947325", - "n185947327", - "n185947328", - "n185947329", - "n185947331", - "n185947333", - "n185947336", - "n185947338", - "n185947339", - "n185947340", - "n185947343", - "n185947345", - "n185947347", - "n185947349" - ] - }, "w134150798": { "id": "w134150798", "tags": { @@ -14003,13 +11550,6 @@ "n354002931" ] }, - "w17964040": { - "id": "w17964040", - "tags": { - "highway": "service" - }, - "nodes": ["n185947336", "n185954965", "n185954968", "n185954970", "n185954972", "n185954974", "n185954977"] - }, "w209470308": { "id": "w209470308", "tags": { @@ -14017,31 +11557,6 @@ }, "nodes": ["n2196831365", "n2196831366", "n2196831367", "n2196831368", "n2196831369", "n2196831370", "n2196831365"] }, - "w17962828": { - "id": "w17962828", - "tags": { - "highway": "service" - }, - "nodes": [ - "n185947340", - "n185947406", - "n185947409", - "n185947410", - "n185947411", - "n185947412", - "n185947414", - "n185947416", - "n185947417", - "n185947419", - "n185947420", - "n185947421", - "n185947422", - "n185947423", - "n185947425", - "n185947427", - "n185947429" - ] - }, "w209470309": { "id": "w209470309", "tags": { @@ -14116,14 +11631,6 @@ }, "nodes": ["n185954977", "n185980371", "n185980372"] }, - "n185958500": { - "id": "n185958500", - "loc": [-85.621591, 41.941075] - }, - "n185963110": { - "id": "n185963110", - "loc": [-85.620442, 41.940888] - }, "n2139966628": { "id": "n2139966628", "loc": [-85.619643, 41.942647], @@ -14135,170 +11642,6 @@ "id": "n2139966630", "loc": [-85.619935, 41.942962] }, - "n2199127051": { - "id": "n2199127051", - "loc": [-85.617056, 41.939696] - }, - "n2199127052": { - "id": "n2199127052", - "loc": [-85.617054, 41.939291] - }, - "n2199127053": { - "id": "n2199127053", - "loc": [-85.617207, 41.93929] - }, - "n2199127054": { - "id": "n2199127054", - "loc": [-85.617206, 41.939185] - }, - "n2199127055": { - "id": "n2199127055", - "loc": [-85.617148, 41.939185] - }, - "n2199127060": { - "id": "n2199127060", - "loc": [-85.616739, 41.93929] - }, - "n2199127061": { - "id": "n2199127061", - "loc": [-85.616873, 41.939289] - }, - "n2199127062": { - "id": "n2199127062", - "loc": [-85.616875, 41.939696] - }, - "n2199127071": { - "id": "n2199127071", - "loc": [-85.620196, 41.939945] - }, - "n2199127072": { - "id": "n2199127072", - "loc": [-85.620193, 41.939732] - }, - "n2199127073": { - "id": "n2199127073", - "loc": [-85.620038, 41.939733] - }, - "n2199127074": { - "id": "n2199127074", - "loc": [-85.620041, 41.939946] - }, - "n2199127075": { - "id": "n2199127075", - "loc": [-85.620361, 41.939994] - }, - "n2199127076": { - "id": "n2199127076", - "loc": [-85.620553, 41.939992] - }, - "n2199127077": { - "id": "n2199127077", - "loc": [-85.620548, 41.939712] - }, - "n2199127078": { - "id": "n2199127078", - "loc": [-85.620413, 41.939712] - }, - "n2199127079": { - "id": "n2199127079", - "loc": [-85.620414, 41.939634] - }, - "n2199127080": { - "id": "n2199127080", - "loc": [-85.62057, 41.939632] - }, - "n2199127081": { - "id": "n2199127081", - "loc": [-85.620572, 41.939498] - }, - "n2199127082": { - "id": "n2199127082", - "loc": [-85.620406, 41.9395] - }, - "n2199127083": { - "id": "n2199127083", - "loc": [-85.620409, 41.939561] - }, - "n2199127084": { - "id": "n2199127084", - "loc": [-85.62031, 41.939562] - }, - "n2199127085": { - "id": "n2199127085", - "loc": [-85.620308, 41.939607] - }, - "n2199127086": { - "id": "n2199127086", - "loc": [-85.620035, 41.939609] - }, - "n2199127087": { - "id": "n2199127087", - "loc": [-85.620038, 41.939714] - }, - "n2199127088": { - "id": "n2199127088", - "loc": [-85.620226, 41.939715] - }, - "n2199127089": { - "id": "n2199127089", - "loc": [-85.620227, 41.939918] - }, - "n2199127090": { - "id": "n2199127090", - "loc": [-85.62036, 41.93992] - }, - "n2199127091": { - "id": "n2199127091", - "loc": [-85.621234, 41.939688] - }, - "n2199127092": { - "id": "n2199127092", - "loc": [-85.621233, 41.939595] - }, - "n2199127093": { - "id": "n2199127093", - "loc": [-85.620881, 41.939597] - }, - "n2199127094": { - "id": "n2199127094", - "loc": [-85.620881, 41.93969] - }, - "n2199127095": { - "id": "n2199127095", - "loc": [-85.620868, 41.939687] - }, - "n2199127096": { - "id": "n2199127096", - "loc": [-85.620858, 41.939354] - }, - "n2199127097": { - "id": "n2199127097", - "loc": [-85.620701, 41.939356] - }, - "n2199127098": { - "id": "n2199127098", - "loc": [-85.62071, 41.93969] - }, - "n2199127056": { - "id": "n2199127056", - "loc": [-85.617147, 41.938962] - }, - "n2199127057": { - "id": "n2199127057", - "loc": [-85.617214, 41.938961] - }, - "n2199127058": { - "id": "n2199127058", - "loc": [-85.617212, 41.938691] - }, - "n2199127059": { - "id": "n2199127059", - "loc": [-85.616736, 41.938692] - }, - "n2203921041": { - "id": "n2203921041", - "loc": [-85.617302, 41.934637] - }, "w203983952": { "id": "w203983952", "tags": { @@ -14306,50 +11649,6 @@ }, "nodes": ["n2139966627", "n1819800319"] }, - "w209718301": { - "id": "w209718301", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2199127051", - "n2199127052", - "n2199127053", - "n2199127054", - "n2199127055", - "n2199127056", - "n2199127057", - "n2199127058", - "n2199127059", - "n2199127060", - "n2199127061", - "n2199127062", - "n2199127051" - ] - }, - "w209718304": { - "id": "w209718304", - "tags": { - "building": "yes" - }, - "nodes": ["n2199127071", "n2199127072", "n2199127073", "n2199127074", "n2199127071"] - }, - "w17964961": { - "id": "w17964961", - "tags": { - "highway": "residential", - "name": "Whipple Street" - }, - "nodes": ["n185963099", "n185963110"] - }, - "w17964489": { - "id": "w17964489", - "tags": { - "highway": "residential", - "name": "Jackson Street" - }, - "nodes": ["n185958498", "n185958500"] - }, "w203983953": { "id": "w203983953", "tags": { @@ -14370,60 +11669,13 @@ "n1475283994" ] }, - "w17965366": { - "id": "w17965366", - "tags": { - "highway": "residential", - "name": "14th Street" - }, - "nodes": ["n2203921041", "n185967077"] - }, - "w209718306": { - "id": "w209718306", - "tags": { - "building": "yes" - }, - "nodes": ["n2199127091", "n2199127092", "n2199127093", "n2199127094", "n2199127091"] - }, - "w209718307": { - "id": "w209718307", - "tags": { - "building": "yes" - }, - "nodes": ["n2199127095", "n2199127096", "n2199127097", "n2199127098", "n2199127095"] - }, - "w209718305": { - "id": "w209718305", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2199127075", - "n2199127076", - "n2199127077", - "n2199127078", - "n2199127079", - "n2199127080", - "n2199127081", - "n2199127082", - "n2199127083", - "n2199127084", - "n2199127085", - "n2199127086", - "n2199127087", - "n2199127088", - "n2199127089", - "n2199127090", - "n2199127075" - ] - }, "n185960199": { "id": "n185960199", - "loc": [-85.62965, 41.95469] + "loc": [-85.62965, 41.954687] }, "n185980737": { "id": "n185980737", - "loc": [-85.629083, 41.953725] + "loc": [-85.629083, 41.953723] }, "n2114807561": { "id": "n2114807561", @@ -14435,7 +11687,7 @@ }, "n185960197": { "id": "n185960197", - "loc": [-85.629676, 41.953731] + "loc": [-85.629676, 41.95372] }, "n185978791": { "id": "n185978791", @@ -14455,7 +11707,7 @@ "highway": "residential", "name": "East Hoffman Street" }, - "nodes": ["n185971631", "n185978784", "n185967432", "n185968106", "n185960199", "n185978787", "n185978790", "n185978791"] + "nodes": ["n185971631", "n185978784", "n185967432", "n185968106", "n185960199", "n1629", "n185978787", "n185978790", "n185978791"] }, "w17966787": { "id": "w17966787", @@ -14497,26 +11749,6 @@ "id": "n1819848997", "loc": [-85.633439, 41.954596] }, - "n2189015861": { - "id": "n2189015861", - "loc": [-85.637591, 41.954836] - }, - "n2189015865": { - "id": "n2189015865", - "loc": [-85.638331, 41.954829] - }, - "n2189015867": { - "id": "n2189015867", - "loc": [-85.638334, 41.955007] - }, - "n2189015868": { - "id": "n2189015868", - "loc": [-85.638099, 41.955009] - }, - "n2189015869": { - "id": "n2189015869", - "loc": [-85.6381, 41.955123] - }, "n2199109808": { "id": "n2199109808", "loc": [-85.63727, 41.952289] @@ -14533,111 +11765,6 @@ "id": "n2199109814", "loc": [-85.636953, 41.952293] }, - "n185952156": { - "id": "n185952156", - "loc": [-85.640983, 41.954656] - }, - "n185953423": { - "id": "n185953423", - "loc": [-85.641871, 41.954652] - }, - "n185971637": { - "id": "n185971637", - "loc": [-85.641583, 41.95465] - }, - "n185971639": { - "id": "n185971639", - "loc": [-85.642134, 41.954644] - }, - "n185971642": { - "id": "n185971642", - "loc": [-85.642826, 41.954561] - }, - "n185971648": { - "id": "n185971648", - "loc": [-85.643602, 41.954426] - }, - "n185975066": { - "id": "n185975066", - "loc": [-85.640532, 41.953638] - }, - "n185975067": { - "id": "n185975067", - "loc": [-85.64079, 41.953638] - }, - "n185982166": { - "id": "n185982166", - "loc": [-85.639901, 41.952382] - }, - "n2189015858": { - "id": "n2189015858", - "loc": [-85.63761, 41.956014] - }, - "n2189015870": { - "id": "n2189015870", - "loc": [-85.638679, 41.955117] - }, - "n2189015871": { - "id": "n2189015871", - "loc": [-85.638682, 41.955256] - }, - "n2189015873": { - "id": "n2189015873", - "loc": [-85.638544, 41.955257] - }, - "n2189015876": { - "id": "n2189015876", - "loc": [-85.638555, 41.955928] - }, - "n2189015879": { - "id": "n2189015879", - "loc": [-85.638495, 41.955928] - }, - "n2189015882": { - "id": "n2189015882", - "loc": [-85.638497, 41.955993] - }, - "n2189015885": { - "id": "n2189015885", - "loc": [-85.638353, 41.955995] - }, - "n2189015888": { - "id": "n2189015888", - "loc": [-85.638351, 41.955861] - }, - "n2189015891": { - "id": "n2189015891", - "loc": [-85.638218, 41.955862] - }, - "n2189015894": { - "id": "n2189015894", - "loc": [-85.63822, 41.956008] - }, - "w208627223": { - "id": "w208627223", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2189015858", - "n2189015861", - "n2189015865", - "n2189015867", - "n2189015868", - "n2189015869", - "n2189015870", - "n2189015871", - "n2189015873", - "n2189015876", - "n2189015879", - "n2189015882", - "n2189015885", - "n2189015888", - "n2189015891", - "n2189015894", - "n2189015858" - ] - }, "w170848328": { "id": "w170848328", "tags": { @@ -14646,26 +11773,6 @@ }, "nodes": ["n1819848935", "n1819848973", "n1819848997", "n1819848862", "n1819848935"] }, - "w17965866": { - "id": "w17965866", - "tags": { - "highway": "residential", - "name": "West Hoffman Street" - }, - "nodes": [ - "n185971631", - "n185971632", - "n185964359", - "n185965025", - "n1475293264", - "n185952156", - "n185971637", - "n185953423", - "n185971639", - "n185971642", - "n185971648" - ] - }, "w209717051": { "id": "w209717051", "tags": { @@ -14677,21 +11784,13 @@ }, "nodes": ["n2199109808", "n2199109810", "n2199109812", "n2199109814", "n2199109808"] }, - "w17966172": { - "id": "w17966172", - "tags": { - "highway": "residential", - "name": "West Cushman Street" - }, - "nodes": ["n185960796", "n185975064", "n185964358", "n185965023", "n1475293222", "n185975066", "n185975067"] - }, "w17966975": { "id": "w17966975", "tags": { "highway": "residential", "name": "West Wheeler Street" }, - "nodes": ["n185978392", "n185982163", "n185964357", "n185965021", "n1475293261", "n185982166"] + "nodes": ["n185978392", "n185982163", "n185964357"] }, "n185960684": { "id": "n185960684", @@ -14699,7 +11798,7 @@ }, "n185978795": { "id": "n185978795", - "loc": [-85.624099, 41.954708] + "loc": [-85.624105, 41.954704] }, "n185978803": { "id": "n185978803", @@ -14823,7 +11922,7 @@ }, "n185955747": { "id": "n185955747", - "loc": [-85.620674, 41.954709] + "loc": [-85.620627, 41.954682] }, "n185960688": { "id": "n185960688", @@ -14835,7 +11934,7 @@ }, "n185978814": { "id": "n185978814", - "loc": [-85.620171, 41.95474] + "loc": [-85.620229, 41.95472] }, "n1819790532": { "id": "n1819790532", @@ -15458,6 +12557,7 @@ }, "nodes": [ "n185978795", + "n1204", "n185978800", "n185978803", "n185978806", @@ -15666,166 +12766,6 @@ "n1819848944" ] }, - "n185953421": { - "id": "n185953421", - "loc": [-85.641876, 41.954946] - }, - "n185953417": { - "id": "n185953417", - "loc": [-85.641831, 41.95516] - }, - "n185977233": { - "id": "n185977233", - "loc": [-85.642987, 41.95486] - }, - "n185977232": { - "id": "n185977232", - "loc": [-85.642894, 41.954784] - }, - "n1475293244": { - "id": "n1475293244", - "loc": [-85.63974, 41.952154] - }, - "n1819848890": { - "id": "n1819848890", - "loc": [-85.641, 41.955282] - }, - "n1819848965": { - "id": "n1819848965", - "loc": [-85.64098, 41.955389] - }, - "n2189015846": { - "id": "n2189015846", - "loc": [-85.642046, 41.954953] - }, - "n2189015849": { - "id": "n2189015849", - "loc": [-85.642587, 41.955139] - }, - "n2189015852": { - "id": "n2189015852", - "loc": [-85.642688, 41.954977] - }, - "n2199109816": { - "id": "n2199109816", - "loc": [-85.639921, 41.954093] - }, - "n2199109818": { - "id": "n2199109818", - "loc": [-85.639918, 41.953824] - }, - "n2199109820": { - "id": "n2199109820", - "loc": [-85.64022, 41.953822] - }, - "n2199109822": { - "id": "n2199109822", - "loc": [-85.640222, 41.953977] - }, - "n2199109825": { - "id": "n2199109825", - "loc": [-85.64029, 41.953977] - }, - "n2199109827": { - "id": "n2199109827", - "loc": [-85.640292, 41.95409] - }, - "n2199109829": { - "id": "n2199109829", - "loc": [-85.639584, 41.954463] - }, - "n2199109831": { - "id": "n2199109831", - "loc": [-85.639579, 41.954067] - }, - "n2199109833": { - "id": "n2199109833", - "loc": [-85.639717, 41.954066] - }, - "n2199109835": { - "id": "n2199109835", - "loc": [-85.639723, 41.954462] - }, - "n2199109837": { - "id": "n2199109837", - "loc": [-85.639964, 41.954506] - }, - "n2199109839": { - "id": "n2199109839", - "loc": [-85.639964, 41.954186] - }, - "n2199109841": { - "id": "n2199109841", - "loc": [-85.64011, 41.954186] - }, - "n2199109843": { - "id": "n2199109843", - "loc": [-85.64011, 41.954327] - }, - "n2199109845": { - "id": "n2199109845", - "loc": [-85.640078, 41.954327] - }, - "n2199109847": { - "id": "n2199109847", - "loc": [-85.640079, 41.954506] - }, - "n2199109853": { - "id": "n2199109853", - "loc": [-85.639618, 41.955405] - }, - "n2199109855": { - "id": "n2199109855", - "loc": [-85.639683, 41.955371] - }, - "n185949745": { - "id": "n185949745", - "loc": [-85.644273, 41.955311] - }, - "n185949748": { - "id": "n185949748", - "loc": [-85.64488, 41.955524] - }, - "n185949755": { - "id": "n185949755", - "loc": [-85.642001, 41.960354] - }, - "n185949763": { - "id": "n185949763", - "loc": [-85.640884, 41.955582] - }, - "n185949765": { - "id": "n185949765", - "loc": [-85.641455, 41.955775] - }, - "n185952158": { - "id": "n185952158", - "loc": [-85.640066, 41.956854] - }, - "n185952160": { - "id": "n185952160", - "loc": [-85.639848, 41.957229] - }, - "n185952161": { - "id": "n185952161", - "loc": [-85.639609, 41.957619] - }, - "n185952163": { - "id": "n185952163", - "loc": [-85.63892, 41.957957] - }, - "n185953413": { - "id": "n185953413", - "loc": [-85.64162, 41.955475] - }, - "n185971651": { - "id": "n185971651", - "loc": [-85.644077, 41.954346] - }, - "n185977234": { - "id": "n185977234", - "loc": [-85.645044, 41.955581] - }, "n394490414": { "id": "n394490414", "loc": [-85.651578, 41.942534] @@ -15852,55 +12792,7 @@ }, "n394490446": { "id": "n394490446", - "loc": [-85.637001, 41.969253] - }, - "n394490450": { - "id": "n394490450", - "loc": [-85.630835, 41.969274] - }, - "n394490451": { - "id": "n394490451", - "loc": [-85.630834, 41.968348] - }, - "n394490452": { - "id": "n394490452", - "loc": [-85.630857, 41.968179] - }, - "n394490453": { - "id": "n394490453", - "loc": [-85.630924, 41.968044] - }, - "n394490454": { - "id": "n394490454", - "loc": [-85.631004, 41.967925] - }, - "n394490455": { - "id": "n394490455", - "loc": [-85.631143, 41.967811] - }, - "n394490456": { - "id": "n394490456", - "loc": [-85.631311, 41.967736] - }, - "n394490457": { - "id": "n394490457", - "loc": [-85.631595, 41.967693] - }, - "n394490458": { - "id": "n394490458", - "loc": [-85.63325, 41.967702] - }, - "n394490459": { - "id": "n394490459", - "loc": [-85.633247, 41.967021] - }, - "n394490460": { - "id": "n394490460", - "loc": [-85.634858, 41.967021] - }, - "n394490465": { - "id": "n394490465", - "loc": [-85.63481, 41.961899] + "loc": [-85.641802, 41.961801] }, "n394490487": { "id": "n394490487", @@ -16042,105 +12934,6 @@ "id": "n394490718", "loc": [-85.651425, 41.925406] }, - "n1475293233": { - "id": "n1475293233", - "loc": [-85.638552, 41.958517] - }, - "n1475293256": { - "id": "n1475293256", - "loc": [-85.638737, 41.958158] - }, - "n2189015728": { - "id": "n2189015728", - "loc": [-85.638396, 41.959058] - }, - "n2189015838": { - "id": "n2189015838", - "loc": [-85.643514, 41.95637] - }, - "n2189015842": { - "id": "n2189015842", - "loc": [-85.641578, 41.955703] - }, - "n2189015855": { - "id": "n2189015855", - "loc": [-85.644083, 41.955458] - }, - "n2199109849": { - "id": "n2199109849", - "loc": [-85.639343, 41.956559] - }, - "n2199109851": { - "id": "n2199109851", - "loc": [-85.639321, 41.9565] - }, - "n2199109857": { - "id": "n2199109857", - "loc": [-85.640199, 41.955545] - }, - "n2199109859": { - "id": "n2199109859", - "loc": [-85.640236, 41.955587] - }, - "n2199109861": { - "id": "n2199109861", - "loc": [-85.639596, 41.956567] - }, - "n2199109863": { - "id": "n2199109863", - "loc": [-85.639528, 41.956601] - }, - "w209717053": { - "id": "w209717053", - "tags": { - "building": "yes" - }, - "nodes": ["n2199109829", "n2199109831", "n2199109833", "n2199109835", "n2199109829"] - }, - "w17966415": { - "id": "w17966415", - "tags": { - "access": "private", - "highway": "service", - "name": "Manufacturing Way" - }, - "nodes": ["n185971642", "n185977232", "n185977233", "n185949745", "n185949748", "n185977234"] - }, - "w209717054": { - "id": "w209717054", - "tags": { - "building": "yes" - }, - "nodes": ["n2199109837", "n2199109839", "n2199109841", "n2199109843", "n2199109845", "n2199109847", "n2199109837"] - }, - "w208627214": { - "id": "w208627214", - "tags": { - "highway": "service" - }, - "nodes": [ - "n185949755", - "n2189015728", - "n1475293233", - "n1475293256", - "n185952163", - "n185952161", - "n185952160", - "n185952158", - "n185949763", - "n1819848965", - "n1819848890", - "n185952156" - ] - }, - "w17963817": { - "id": "w17963817", - "tags": { - "access": "private", - "highway": "service" - }, - "nodes": ["n185949765", "n185953413", "n185953417", "n185953421", "n185953423"] - }, "w34369809": { "id": "w34369809", "tags": { @@ -16156,18 +12949,6 @@ "n394490424", "n394490427", "n394490446", - "n394490450", - "n394490451", - "n394490452", - "n394490453", - "n394490454", - "n394490455", - "n394490456", - "n394490457", - "n394490458", - "n394490459", - "n394490460", - "n394490465", "n394490487", "n394490494", "n394490498", @@ -16206,54 +12987,6 @@ "n394490414" ] }, - "w208627221": { - "id": "w208627221", - "tags": { - "amenity": "parking" - }, - "nodes": ["n2189015838", "n2189015842", "n2189015846", "n2189015849", "n2189015852", "n2189015855", "n2189015838"] - }, - "w209717052": { - "id": "w209717052", - "tags": { - "building": "yes" - }, - "nodes": ["n2199109816", "n2199109818", "n2199109820", "n2199109822", "n2199109825", "n2199109827", "n2199109816"] - }, - "w134151784": { - "id": "w134151784", - "tags": { - "bridge": "yes", - "highway": "residential", - "name": "West Hoffman Street" - }, - "nodes": ["n185971648", "n185971651"] - }, - "w209717055": { - "id": "w209717055", - "tags": { - "landuse": "basin" - }, - "nodes": [ - "n2199109849", - "n2199109851", - "n2199109853", - "n2199109855", - "n2199109857", - "n2199109859", - "n2199109861", - "n2199109863", - "n2199109849" - ] - }, - "w17967763": { - "id": "w17967763", - "tags": { - "highway": "residential", - "name": "Rock River Avenue" - }, - "nodes": ["n1475293244", "n185982166", "n185975067", "n185971637"] - }, "r134949": { "id": "r134949", "tags": { @@ -16307,138 +13040,6 @@ } ] }, - "n1819848881": { - "id": "n1819848881", - "loc": [-85.638562, 41.956997] - }, - "n1819848947": { - "id": "n1819848947", - "loc": [-85.638435, 41.957656] - }, - "n1819849044": { - "id": "n1819849044", - "loc": [-85.638575, 41.957335] - }, - "n2114807547": { - "id": "n2114807547", - "loc": [-85.638463, 41.958376] - }, - "n2114807564": { - "id": "n2114807564", - "loc": [-85.638535, 41.958128] - }, - "n2189015691": { - "id": "n2189015691", - "loc": [-85.643558, 41.956524] - }, - "n2189015696": { - "id": "n2189015696", - "loc": [-85.64358, 41.956605] - }, - "n2189015722": { - "id": "n2189015722", - "loc": [-85.643503, 41.956744] - }, - "n2189015744": { - "id": "n2189015744", - "loc": [-85.643799, 41.956958] - }, - "n2189015747": { - "id": "n2189015747", - "loc": [-85.643304, 41.956774] - }, - "n2189015750": { - "id": "n2189015750", - "loc": [-85.643383, 41.956684] - }, - "n2189015753": { - "id": "n2189015753", - "loc": [-85.643045, 41.956559] - }, - "n2189015756": { - "id": "n2189015756", - "loc": [-85.643111, 41.956451] - }, - "n2189015759": { - "id": "n2189015759", - "loc": [-85.642025, 41.956083] - }, - "n2189015760": { - "id": "n2189015760", - "loc": [-85.641994, 41.956137] - }, - "n2189015764": { - "id": "n2189015764", - "loc": [-85.641373, 41.955894] - }, - "n2189015766": { - "id": "n2189015766", - "loc": [-85.641288, 41.956061] - }, - "n2189015770": { - "id": "n2189015770", - "loc": [-85.64118, 41.956011] - }, - "n2189015771": { - "id": "n2189015771", - "loc": [-85.641065, 41.956213] - }, - "n2189015774": { - "id": "n2189015774", - "loc": [-85.64095, 41.956173] - }, - "n2189015778": { - "id": "n2189015778", - "loc": [-85.6408, 41.956424] - }, - "n2189015781": { - "id": "n2189015781", - "loc": [-85.640689, 41.956389] - }, - "n2189015785": { - "id": "n2189015785", - "loc": [-85.640486, 41.956702] - }, - "n2189015789": { - "id": "n2189015789", - "loc": [-85.640691, 41.956788] - }, - "n2189015793": { - "id": "n2189015793", - "loc": [-85.640564, 41.957017] - }, - "n2189015796": { - "id": "n2189015796", - "loc": [-85.641536, 41.957371] - }, - "n2189015800": { - "id": "n2189015800", - "loc": [-85.641174, 41.95795] - }, - "n2189015804": { - "id": "n2189015804", - "loc": [-85.641112, 41.957921] - }, - "n2189015808": { - "id": "n2189015808", - "loc": [-85.640319, 41.959175] - }, - "n2189015909": { - "id": "n2189015909", - "loc": [-85.638929, 41.956464] - }, - "n2189015926": { - "id": "n2189015926", - "loc": [-85.638543, 41.956462] - }, - "n2189015929": { - "id": "n2189015929", - "loc": [-85.638546, 41.956182] - }, - "n2189015932": { - "id": "n2189015932", - "loc": [-85.638932, 41.956184] - }, "n2199109865": { "id": "n2199109865", "loc": [-85.640077, 41.956776] @@ -16455,13 +13056,6 @@ "id": "n2199109871", "loc": [-85.640179, 41.956614] }, - "n2199109873": { - "id": "n2199109873", - "loc": [-85.639932, 41.956451], - "tags": { - "man_made": "water_tower" - } - }, "n2199109876": { "id": "n2199109876", "loc": [-85.639769, 41.957235] @@ -16502,80 +13096,6 @@ "id": "n2199109891", "loc": [-85.639239, 41.956997] }, - "n1819848900": { - "id": "n1819848900", - "loc": [-85.638281, 41.957658] - }, - "n1819848978": { - "id": "n1819848978", - "loc": [-85.637719, 41.958087] - }, - "n1819849039": { - "id": "n1819849039", - "loc": [-85.638422, 41.957341] - }, - "n1819849050": { - "id": "n1819849050", - "loc": [-85.637701, 41.957004] - }, - "n1819849088": { - "id": "n1819849088", - "loc": [-85.638288, 41.958082] - }, - "n2114807549": { - "id": "n2114807549", - "loc": [-85.636255, 41.96473] - }, - "n2114807587": { - "id": "n2114807587", - "loc": [-85.636869, 41.962983] - }, - "n2189015725": { - "id": "n2189015725", - "loc": [-85.644156, 41.956975] - }, - "n2189015741": { - "id": "n2189015741", - "loc": [-85.641982, 41.959763] - }, - "w208627217": { - "id": "w208627217", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2189015741", - "n2189015744", - "n2189015747", - "n2189015750", - "n2189015753", - "n2189015756", - "n2189015759", - "n2189015760", - "n2189015764", - "n2189015766", - "n2189015770", - "n2189015771", - "n2189015774", - "n2189015778", - "n2189015781", - "n2189015785", - "n2189015789", - "n2189015793", - "n2189015796", - "n2189015800", - "n2189015804", - "n2189015808", - "n2189015741" - ] - }, - "w208627212": { - "id": "w208627212", - "tags": { - "highway": "service" - }, - "nodes": ["n2189015691", "n2189015696", "n2189015722", "n2189015725"] - }, "w209717057": { "id": "w209717057", "tags": { @@ -16590,45 +13110,6 @@ }, "nodes": ["n2199109865", "n2199109867", "n2199109869", "n2199109871", "n2199109865"] }, - "w208627231": { - "id": "w208627231", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015909", "n2189015926", "n2189015929", "n2189015932", "n2189015909"] - }, - "w170848326": { - "id": "w170848326", - "tags": { - "building": "yes" - }, - "nodes": [ - "n1819848881", - "n1819849050", - "n1819848978", - "n1819849088", - "n1819848900", - "n1819848947", - "n1819849039", - "n1819849044", - "n1819848881" - ] - }, - "w17963182": { - "id": "w17963182", - "tags": { - "highway": "service" - }, - "nodes": ["n185949763", "n185949765", "n2189015691", "n185949745"] - }, - "w201484340": { - "id": "w201484340", - "tags": { - "railway": "rail", - "service": "siding" - }, - "nodes": ["n2114807565", "n2114807564", "n2114807547", "n2114807587", "n2114807549", "n2114807593"] - }, "w209717058": { "id": "w209717058", "tags": { @@ -16638,11 +13119,11 @@ }, "n185954650": { "id": "n185954650", - "loc": [-85.627331, 41.957439] + "loc": [-85.627415, 41.957442] }, "n185966949": { "id": "n185966949", - "loc": [-85.626868, 41.957314] + "loc": [-85.627019, 41.957369] }, "n185989335": { "id": "n185989335", @@ -16716,16 +13197,6 @@ "id": "n185989368", "loc": [-85.626044, 41.957394] }, - "n354031352": { - "id": "n354031352", - "loc": [-85.625278, 41.958611], - "tags": { - "amenity": "place_of_worship", - "denomination": "baptist", - "name": "First Baptist Church", - "religion": "christian" - } - }, "n2199109892": { "id": "n2199109892", "loc": [-85.626158, 41.958996] @@ -16760,7 +13231,18 @@ "highway": "residential", "name": "Flower Street" }, - "nodes": ["n185966948", "n185966949", "n185954650", "n185966951", "n185966953", "n185966955", "n185966957"] + "nodes": [ + "n185966948", + "n185966949", + "n1420", + "n1421", + "n1422", + "n185954650", + "n185966951", + "n185966953", + "n185966955", + "n185966957" + ] }, "w17967809": { "id": "w17967809", @@ -16798,381 +13280,22 @@ }, "nodes": ["n2199109892", "n2199109893", "n2199109894", "n2199109895", "n2199109896", "n2199109898", "n2199109892"] }, - "n185961390": { - "id": "n185961390", - "loc": [-85.63137, 41.959033] - }, - "n185961393": { - "id": "n185961393", - "loc": [-85.634315, 41.959017] - }, - "w17966214": { - "id": "w17966214", - "tags": { - "highway": "residential", - "name": "East Adams Street" - }, - "nodes": ["n185975351", "n185967434", "n185968108"] - }, "w17964793": { "id": "w17964793", "tags": { "highway": "residential", - "name": "Morris Avenue" + "name": "Morris Avenue", + "surface": "unpaved" }, - "nodes": ["n185961389", "n185961390", "n185961391", "n185961393", "n185961396"] - }, - "n185952166": { - "id": "n185952166", - "loc": [-85.638174, 41.95831] - }, - "n2114807552": { - "id": "n2114807552", - "loc": [-85.638353, 41.959379] - }, - "n2114807591": { - "id": "n2114807591", - "loc": [-85.638374, 41.959397] - }, - "n2189015731": { - "id": "n2189015731", - "loc": [-85.63684, 41.959279] - }, - "n2189015734": { - "id": "n2189015734", - "loc": [-85.63684, 41.958592] - }, - "n2189015737": { - "id": "n2189015737", - "loc": [-85.637601, 41.958592] - }, - "n2189015738": { - "id": "n2189015738", - "loc": [-85.637601, 41.959279] - }, - "n2189015897": { - "id": "n2189015897", - "loc": [-85.637684, 41.956614] - }, - "n2189015900": { - "id": "n2189015900", - "loc": [-85.637683, 41.956486] - }, - "n2189015903": { - "id": "n2189015903", - "loc": [-85.638116, 41.956485] - }, - "n2189015906": { - "id": "n2189015906", - "loc": [-85.638117, 41.956612] - }, - "n2189015937": { - "id": "n2189015937", - "loc": [-85.636479, 41.959063] - }, - "n2189015940": { - "id": "n2189015940", - "loc": [-85.636114, 41.959067] - }, - "n2189015943": { - "id": "n2189015943", - "loc": [-85.636117, 41.959403] - }, - "n2189015945": { - "id": "n2189015945", - "loc": [-85.636346, 41.959402] - }, - "n2189015952": { - "id": "n2189015952", - "loc": [-85.636112, 41.958892] - }, - "n2189015955": { - "id": "n2189015955", - "loc": [-85.636476, 41.958889] - }, - "n2189015957": { - "id": "n2189015957", - "loc": [-85.636473, 41.958675] - }, - "n2189015958": { - "id": "n2189015958", - "loc": [-85.63611, 41.958677] - }, - "n2189015959": { - "id": "n2189015959", - "loc": [-85.636472, 41.958556] - }, - "n2189015960": { - "id": "n2189015960", - "loc": [-85.636109, 41.958558] - }, - "n2189015961": { - "id": "n2189015961", - "loc": [-85.635549, 41.95864] - }, - "n2189015962": { - "id": "n2189015962", - "loc": [-85.635549, 41.958471] - }, - "n2189015963": { - "id": "n2189015963", - "loc": [-85.635183, 41.958472] - }, - "n2189015964": { - "id": "n2189015964", - "loc": [-85.635183, 41.958641] - }, - "n2189015966": { - "id": "n2189015966", - "loc": [-85.635958, 41.958636] - }, - "n2189015968": { - "id": "n2189015968", - "loc": [-85.635956, 41.958546] - }, - "n2189015971": { - "id": "n2189015971", - "loc": [-85.635548, 41.958551] - }, - "n2189015974": { - "id": "n2189015974", - "loc": [-85.635952, 41.959293] - }, - "n2189015977": { - "id": "n2189015977", - "loc": [-85.635949, 41.95867] - }, - "n2189015980": { - "id": "n2189015980", - "loc": [-85.635133, 41.958672] - }, - "n2189015983": { - "id": "n2189015983", - "loc": [-85.635132, 41.958395] - }, - "n2189015986": { - "id": "n2189015986", - "loc": [-85.634915, 41.958395] - }, - "n2189015989": { - "id": "n2189015989", - "loc": [-85.634919, 41.959296] - }, - "n2189015995": { - "id": "n2189015995", - "loc": [-85.636017, 41.959329] - }, - "n2189015998": { - "id": "n2189015998", - "loc": [-85.636028, 41.958308] - }, - "n2114807550": { - "id": "n2114807550", - "loc": [-85.638339, 41.95954] - }, - "n2114807551": { - "id": "n2114807551", - "loc": [-85.637586, 41.961611] - }, - "n2114807559": { - "id": "n2114807559", - "loc": [-85.637398, 41.962127] - }, - "n2114807562": { - "id": "n2114807562", - "loc": [-85.637336, 41.962261] - }, - "n2114807563": { - "id": "n2114807563", - "loc": [-85.637647, 41.961395] - }, - "n2114807574": { - "id": "n2114807574", - "loc": [-85.636974, 41.96277] - }, - "n2114807589": { - "id": "n2114807589", - "loc": [-85.638302, 41.9595] - }, - "n2114807592": { - "id": "n2114807592", - "loc": [-85.637717, 41.961349] - }, - "n2114807595": { - "id": "n2114807595", - "loc": [-85.637108, 41.962574] - }, - "n2189015934": { - "id": "n2189015934", - "loc": [-85.636486, 41.95951] - }, - "n2189015949": { - "id": "n2189015949", - "loc": [-85.636347, 41.959511] - }, - "w208627244": { - "id": "w208627244", - "tags": { - "highway": "service" - }, - "nodes": ["n2189015992", "n2189015995", "n2189015998"] - }, - "w208627240": { - "id": "w208627240", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015961", "n2189015971", "n2189015962", "n2189015963", "n2189015964", "n2189015961"] - }, - "w17967437": { - "id": "w17967437", - "tags": { - "highway": "residential", - "name": "Lyman Street" - }, - "nodes": ["n185964361", "n185984024"] - }, - "w208627237": { - "id": "w208627237", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015955", "n2189015957", "n2189015958", "n2189015952", "n2189015955"] - }, - "w17967465": { - "id": "w17967465", - "tags": { - "highway": "residential", - "name": "West Adams Street" - }, - "nodes": ["n185978394", "n185984022", "n185964360"] - }, - "w208627228": { - "id": "w208627228", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015897", "n2189015900", "n2189015903", "n2189015906", "n2189015897"] - }, - "w201484351": { - "id": "w201484351", - "tags": { - "railway": "rail", - "service": "siding" - }, - "nodes": [ - "n2114807587", - "n2114807574", - "n2114807595", - "n2114807562", - "n2114807559", - "n2114807551", - "n2114807563", - "n2114807589", - "n2114807552" - ] - }, - "w208627239": { - "id": "w208627239", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015957", "n2189015959", "n2189015960", "n2189015958", "n2189015957"] - }, - "w208627233": { - "id": "w208627233", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015934", "n2189015937", "n2189015940", "n2189015943", "n2189015945", "n2189015949", "n2189015934"] - }, - "w208627241": { - "id": "w208627241", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015961", "n2189015966", "n2189015968", "n2189015971", "n2189015961"] + "nodes": ["n185961389", "n185961391"] }, "w17967970": { "id": "w17967970", "tags": { "highway": "residential", - "name": "Adams Street" + "name": "East Adams Street" }, - "nodes": ["n185975351", "n185978394"] - }, - "w208627235": { - "id": "w208627235", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015940", "n2189015952", "n2189015955", "n2189015937", "n2189015940"] - }, - "w17965468": { - "id": "w17965468", - "tags": { - "highway": "residential", - "name": "Armstrong Blvd" - }, - "nodes": ["n185967917", "n2189015998", "n185967918", "n185964362", "n185952166"] - }, - "w201484346": { - "id": "w201484346", - "tags": { - "railway": "rail", - "service": "siding" - }, - "nodes": ["n2114807551", "n2114807592", "n2114807550", "n2114807591"] - }, - "w208627242": { - "id": "w208627242", - "tags": { - "amenity": "parking" - }, - "nodes": ["n2189015974", "n2189015977", "n2189015980", "n2189015983", "n2189015986", "n2189015989", "n2189015974"] - }, - "w208627216": { - "id": "w208627216", - "tags": { - "building": "yes" - }, - "nodes": ["n2189015731", "n2189015734", "n2189015737", "n2189015738", "n2189015731"] - }, - "n185984309": { - "id": "n185984309", - "loc": [-85.631421, 41.961494] - }, - "n185987987": { - "id": "n185987987", - "loc": [-85.631456, 41.960673] - }, - "n185965397": { - "id": "n185965397", - "loc": [-85.634603, 41.959838] - }, - "w17965196": { - "id": "w17965196", - "tags": { - "highway": "residential", - "name": "Burke Avenue" - }, - "nodes": ["n185965395", "n185965397", "n185965399"] - }, - "w17967215": { - "id": "w17967215", - "tags": { - "highway": "residential", - "name": "Kellogg Avenue" - }, - "nodes": ["n185968114", "n185984309", "n185967440", "n185978402"] - }, - "w17967597": { - "id": "w17967597", - "tags": { - "highway": "residential", - "name": "Barnard Avenue" - }, - "nodes": ["n185968112", "n185987987", "n185967438", "n185978399"] + "nodes": ["n185968108", "n185967434", "n185975351", "n185978394"] }, "n1057629869": { "id": "n1057629869", @@ -17182,54 +13305,6 @@ "id": "n1057629937", "loc": [-85.638003, 41.961614] }, - "n2189016014": { - "id": "n2189016014", - "loc": [-85.636037, 41.96265] - }, - "n2189016017": { - "id": "n2189016017", - "loc": [-85.636037, 41.962323] - }, - "n2189016020": { - "id": "n2189016020", - "loc": [-85.636756, 41.962324] - }, - "n2189016022": { - "id": "n2189016022", - "loc": [-85.636757, 41.961992] - }, - "n2189016025": { - "id": "n2189016025", - "loc": [-85.635179, 41.961989] - }, - "n2189016028": { - "id": "n2189016028", - "loc": [-85.635179, 41.962201] - }, - "n2189016031": { - "id": "n2189016031", - "loc": [-85.635086, 41.962201] - }, - "n2189016034": { - "id": "n2189016034", - "loc": [-85.635085, 41.962527] - }, - "n2189016037": { - "id": "n2189016037", - "loc": [-85.635273, 41.962527] - }, - "n2189016039": { - "id": "n2189016039", - "loc": [-85.635274, 41.962318] - }, - "n2189016042": { - "id": "n2189016042", - "loc": [-85.635771, 41.962319] - }, - "n2189016044": { - "id": "n2189016044", - "loc": [-85.63577, 41.962649] - }, "n1057629880": { "id": "n1057629880", "loc": [-85.638817, 41.961902] @@ -17245,27 +13320,6 @@ }, "nodes": ["n1057629923", "n1057629869", "n1057629937", "n1057629880", "n1057629923"] }, - "w208627248": { - "id": "w208627248", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2189016014", - "n2189016017", - "n2189016020", - "n2189016022", - "n2189016025", - "n2189016028", - "n2189016031", - "n2189016034", - "n2189016037", - "n2189016039", - "n2189016042", - "n2189016044", - "n2189016014" - ] - }, "n185972055": { "id": "n185972055", "loc": [-85.61859, 41.956821] @@ -17323,7 +13377,7 @@ }, "n185955748": { "id": "n185955748", - "loc": [-85.620722, 41.954858] + "loc": [-85.620692, 41.954969] }, "n185955751": { "id": "n185955751", @@ -17377,7 +13431,8 @@ "w17964176": { "id": "w17964176", "tags": { - "highway": "residential" + "highway": "service", + "surface": "unpaved" }, "nodes": ["n185955747", "n185955748", "n185955751", "n185955753", "n185955755"] }, @@ -17433,56 +13488,6 @@ }, "nodes": ["n185971565", "n185971570", "n185971572", "n185971574"] }, - "n2139795769": { - "id": "n2139795769", - "loc": [-85.62508, 41.96088] - }, - "n2139795770": { - "id": "n2139795770", - "loc": [-85.624998, 41.961332] - }, - "n2139795778": { - "id": "n2139795778", - "loc": [-85.624956, 41.961253] - }, - "n2139795779": { - "id": "n2139795779", - "loc": [-85.624985, 41.961025] - }, - "n2139795780": { - "id": "n2139795780", - "loc": [-85.626907, 41.959965], - "tags": { - "highway": "turning_circle" - } - }, - "n2139795781": { - "id": "n2139795781", - "loc": [-85.625916, 41.959971] - }, - "n2139795782": { - "id": "n2139795782", - "loc": [-85.625719, 41.960019] - }, - "n2139795783": { - "id": "n2139795783", - "loc": [-85.625551, 41.960121] - }, - "w203968015": { - "id": "w203968015", - "tags": { - "highway": "residential" - }, - "nodes": ["n2139795768", "n2139795769"] - }, - "w203968017": { - "id": "w203968017", - "tags": { - "highway": "residential", - "name": "Oklahoma Drive" - }, - "nodes": ["n2139795780", "n2139795781", "n2139795782", "n2139795783", "n2139795769"] - }, "n1819790528": { "id": "n1819790528", "loc": [-85.618483, 41.960025] @@ -18617,242 +14622,6 @@ "n2138439326" ] }, - "n185958835": { - "id": "n185958835", - "loc": [-85.611615, 41.953704] - }, - "n185958837": { - "id": "n185958837", - "loc": [-85.611636, 41.953938] - }, - "n185958842": { - "id": "n185958842", - "loc": [-85.611187, 41.951686] - }, - "n185958844": { - "id": "n185958844", - "loc": [-85.611087, 41.951741] - }, - "n185958845": { - "id": "n185958845", - "loc": [-85.611034, 41.951852] - }, - "n185958847": { - "id": "n185958847", - "loc": [-85.611016, 41.95196] - }, - "n185958849": { - "id": "n185958849", - "loc": [-85.610989, 41.95328] - }, - "n185958851": { - "id": "n185958851", - "loc": [-85.611021, 41.953484] - }, - "n185958852": { - "id": "n185958852", - "loc": [-85.611091, 41.953603] - }, - "n185958853": { - "id": "n185958853", - "loc": [-85.6112, 41.953661] - }, - "n185958855": { - "id": "n185958855", - "loc": [-85.611364, 41.953686] - }, - "n185965031": { - "id": "n185965031", - "loc": [-85.614204, 41.953696] - }, - "n185965032": { - "id": "n185965032", - "loc": [-85.6142, 41.953978] - }, - "n185965062": { - "id": "n185965062", - "loc": [-85.614617, 41.951639] - }, - "n185965064": { - "id": "n185965064", - "loc": [-85.61463, 41.951852] - }, - "n185965066": { - "id": "n185965066", - "loc": [-85.614642, 41.953436] - }, - "n185965068": { - "id": "n185965068", - "loc": [-85.6146, 41.953551] - }, - "n185965071": { - "id": "n185965071", - "loc": [-85.614487, 41.95363] - }, - "n185965073": { - "id": "n185965073", - "loc": [-85.614354, 41.953672] - }, - "n185966288": { - "id": "n185966288", - "loc": [-85.61179, 41.953695] - }, - "n185966290": { - "id": "n185966290", - "loc": [-85.612232, 41.953685] - }, - "n185966293": { - "id": "n185966293", - "loc": [-85.613438, 41.953677] - }, - "n185966349": { - "id": "n185966349", - "loc": [-85.611323, 41.951653] - }, - "n185966351": { - "id": "n185966351", - "loc": [-85.611892, 41.951642] - }, - "n185966352": { - "id": "n185966352", - "loc": [-85.612216, 41.951641] - }, - "n185966353": { - "id": "n185966353", - "loc": [-85.613111, 41.951639] - }, - "n185966354": { - "id": "n185966354", - "loc": [-85.613396, 41.95164] - }, - "n185966355": { - "id": "n185966355", - "loc": [-85.614221, 41.95164] - }, - "n185973839": { - "id": "n185973839", - "loc": [-85.61341, 41.951919] - }, - "n185973840": { - "id": "n185973840", - "loc": [-85.613438, 41.953308] - }, - "n185980222": { - "id": "n185980222", - "loc": [-85.613781, 41.955164] - }, - "n185980223": { - "id": "n185980223", - "loc": [-85.613815, 41.955237] - }, - "n185980225": { - "id": "n185980225", - "loc": [-85.613837, 41.955316] - }, - "n185990345": { - "id": "n185990345", - "loc": [-85.612211, 41.951977] - }, - "n185955743": { - "id": "n185955743", - "loc": [-85.613873, 41.95635] - }, - "n185980227": { - "id": "n185980227", - "loc": [-85.613851, 41.955415] - }, - "n185980229": { - "id": "n185980229", - "loc": [-85.613918, 41.957134] - }, - "w17965307": { - "id": "w17965307", - "tags": { - "highway": "residential", - "name": "Bates Avenue" - }, - "nodes": ["n185958842", "n185966349", "n185966351", "n185966352", "n185966353", "n185966354", "n185966355", "n185965062"] - }, - "w17967957": { - "id": "w17967957", - "tags": { - "highway": "residential", - "name": "Krum Avenue" - }, - "nodes": ["n185966352", "n185990345", "n185966290"] - }, - "w17964508": { - "id": "w17964508", - "tags": { - "highway": "residential", - "name": "Blossom Drive" - }, - "nodes": [ - "n185958842", - "n185958844", - "n185958845", - "n185958847", - "n185958849", - "n185958851", - "n185958852", - "n185958853", - "n185958855", - "n185958835" - ] - }, - "w17964507": { - "id": "w17964507", - "tags": { - "highway": "residential", - "name": "Blossom Drive" - }, - "nodes": ["n185958835", "n185958837", "n185958839"] - }, - "w17965302": { - "id": "w17965302", - "tags": { - "highway": "residential", - "name": "Clausen Avenue" - }, - "nodes": ["n185958835", "n185966288", "n185966290", "n185966293", "n185965031"] - }, - "w17965156": { - "id": "w17965156", - "tags": { - "highway": "residential", - "name": "Orchard Drive" - }, - "nodes": ["n185965062", "n185965064", "n185965066", "n185965068", "n185965071", "n185965073", "n185965031"] - }, - "w17965151": { - "id": "w17965151", - "tags": { - "highway": "residential", - "name": "Orchard Drive" - }, - "nodes": ["n185965031", "n185965032", "n185965033"] - }, - "w17966756": { - "id": "w17966756", - "tags": { - "access": "private", - "highway": "service", - "name": "Lockport Drive" - }, - "nodes": ["n185978828", "n185980222", "n185980223", "n185980225", "n185980227", "n185955743", "n185980229"] - }, - "w17966056": { - "id": "w17966056", - "tags": { - "highway": "residential", - "name": "Angell Avenue" - }, - "nodes": ["n185966354", "n185973839", "n185973840", "n185966293"] - }, - "n185955744": { - "id": "n185955744", - "loc": [-85.611753, 41.956208] - }, "n185988932": { "id": "n185988932", "loc": [-85.6159, 41.956336] @@ -18868,58 +14637,6 @@ "highway": "turning_circle" } }, - "n2138447007": { - "id": "n2138447007", - "loc": [-85.613078, 41.959069] - }, - "n2138447008": { - "id": "n2138447008", - "loc": [-85.613333, 41.959381] - }, - "n2138447004": { - "id": "n2138447004", - "loc": [-85.610265, 41.956604] - }, - "n2138447005": { - "id": "n2138447005", - "loc": [-85.610325, 41.956882] - }, - "n2138447006": { - "id": "n2138447006", - "loc": [-85.610564, 41.957138] - }, - "n2138447009": { - "id": "n2138447009", - "loc": [-85.613595, 41.959948] - }, - "n2138447010": { - "id": "n2138447010", - "loc": [-85.613607, 41.962937] - }, - "n2138447011": { - "id": "n2138447011", - "loc": [-85.613439, 41.963318] - }, - "n2138447012": { - "id": "n2138447012", - "loc": [-85.613015, 41.963607] - }, - "n2138447013": { - "id": "n2138447013", - "loc": [-85.612273, 41.963712] - }, - "n2138447014": { - "id": "n2138447014", - "loc": [-85.605668, 41.963752] - }, - "w17964174": { - "id": "w17964174", - "tags": { - "access": "private", - "highway": "service" - }, - "nodes": ["n185955743", "n185955744"] - }, "w17967743": { "id": "w17967743", "tags": { @@ -18929,27 +14646,6 @@ }, "nodes": ["n185971574", "n185988932", "n185971407", "n185981301", "n185967987", "n185988934", "n185988935"] }, - "w203839666": { - "id": "w203839666", - "tags": { - "highway": "residential", - "name": "Hov Aire Drive" - }, - "nodes": [ - "n185978830", - "n2138447004", - "n2138447005", - "n2138447006", - "n2138447007", - "n2138447008", - "n2138447009", - "n2138447010", - "n2138447011", - "n2138447012", - "n2138447013", - "n2138447014" - ] - }, "w1": { "tags": { "name": "Rocky River", @@ -18957,16 +14653,6 @@ }, "id": "w1", "nodes": [ - "n1819848976", - "n1819848977", - "n1819849144", - "n1819848918", - "n1819849200", - "n1819848919", - "n1819849042", - "n1819849166", - "n1819849186", - "n1819849152", "n1819849058", "n1819849185", "n1819849199", @@ -19076,171 +14762,6 @@ "n1819790913" ] }, - "w3": { - "tags": { - "highway": "residential", - "name": "New Jersey Court" - }, - "id": "w3", - "nodes": ["n3", "n2139795770", "n2139795778", "n2", "n1", "n2139795779", "n2139795769"] - }, - "n1": { - "id": "n1", - "loc": [-85.624955, 41.961107] - }, - "n2": { - "id": "n2", - "loc": [-85.624947, 41.961196] - }, - "n3": { - "loc": [-85.625105, 41.96146], - "id": "n3", - "tags": { - "highway": "turning_circle" - } - }, - "w4": { - "tags": { - "name": "Saint Joseph River", - "waterway": "river" - }, - "id": "w4", - "nodes": [ - "n1820939059", - "n1820938868", - "n1820937877", - "n1820937743", - "n1820938429", - "n1820937545", - "n1820937575", - "n1820938302", - "n1820938505", - "n1820938916", - "n1820938374", - "n1820938329", - "n1820937790", - "n1820939735", - "n1820938930", - "n1820937995", - "n1820938512", - "n1820938130", - "n1820938194", - "n1820938671", - "n19", - "n1820938802", - "n20", - "n1820937542", - "n1820937602", - "n1820939069", - "n1820938901", - "n1820939654", - "n1820937727", - "n1820939569", - "n1820938375", - "n1820939306", - "n1820938479", - "n1820938376", - "n1820938667", - "n1820937766", - "n1820939467", - "n1820939567", - "n1820937806" - ] - }, - "w5": { - "id": "w5", - "nodes": [ - "n1819800347", - "n1819800256", - "n1819800293", - "n1819800367", - "n1819800311", - "n1819800260", - "n1819800185", - "n1819800303", - "n1819800274", - "n1819800380", - "n1819800365", - "n1819800379", - "n1819800255", - "n1819800264", - "n1819800186", - "n1819800183", - "n1819800317", - "n1819800211", - "n1819800241", - "n1819800360", - "n1819800258", - "n1819800369", - "n1819800296", - "n1819800288", - "n1819800310", - "n1819800204", - "n1819800375", - "n1819800216", - "n1819800377", - "n1819800248", - "n1819800227", - "n1819800368", - "n1819800231", - "n1819800188", - "n1819800325", - "n1819800232", - "n1819800304", - "n1819800271", - "n1819800213", - "n1819800266", - "n1819800221", - "n1819800294", - "n1819800362", - "n1819800199", - "n1819800230", - "n1819800218", - "n1819800352", - "n1819800324", - "n1819800272", - "n1819800261", - "n1819800229", - "n1819800245", - "n2139966626", - "n2139966621", - "n2139966622", - "n2139966623", - "n1819800319", - "n2139966625", - "n2139966629", - "n2139966624", - "n1819800349", - "n1819800328", - "n1819800291", - "n1819800206", - "n1819800237", - "n1819800336", - "n1819800318", - "n1819800354", - "n1819800182", - "n1819800363", - "n1819800297", - "n1819800268", - "n1819800223", - "n1819800209", - "n1819800233", - "n1819800201", - "n1819800343", - "n1819800333", - "n1819800347" - ] - }, - "r1": { - "tags": { - "waterway": "riverbank", - "type": "multipolygon" - }, - "members": [{ - "id": "w5", "role": "outer", "type": "way" - }], - "id": "r1" - }, "n4": { "id": "n4", "loc": [-85.62276, 41.951784] @@ -19253,10 +14774,6 @@ "id": "n6", "loc": [-85.624908, 41.95064] }, - "n7": { - "id": "n7", - "loc": [-85.622424, 41.939225] - }, "n8": { "id": "n8", "loc": [-85.635241, 41.941948] @@ -19377,10 +14894,6 @@ "id": "n37", "loc": [-85.637611, 41.945383] }, - "n38": { - "id": "n38", - "loc": [-85.641974, 41.947577] - }, "n39": { "id": "n39", "loc": [-85.638967, 41.948541] @@ -19448,7 +14961,7 @@ "building": "yes" }, "id": "w9", - "nodes": ["n50", "n51", "n148", "n52", "n53", "n50"] + "nodes": ["n50", "n51", "n148", "n52", "n57", "n891", "n53", "n50"] }, "n51": { "loc": [-85.636673, 41.942864], @@ -19471,7 +14984,7 @@ "building": "yes" }, "id": "w10", - "nodes": ["n54", "n55", "n56", "n57", "n54"] + "nodes": ["n54", "n55", "n56", "n57", "n891", "n890", "n54"] }, "n55": { "loc": [-85.635945, 41.94312], @@ -19482,7 +14995,7 @@ "id": "n56" }, "n57": { - "loc": [-85.636197, 41.942908], + "loc": [-85.636227, 41.942909], "id": "n57" }, "n58": { @@ -19984,7 +15497,7 @@ }, "w29": { "id": "w29", - "nodes": ["n149", "n874", "n150", "n151", "n875", "n152"], + "nodes": ["n149", "n874", "n150", "n151", "n897", "n898", "n875", "n152"], "tags": { "highway": "service", "oneway": "yes" @@ -20083,7 +15596,7 @@ "amenity": "parking" }, "id": "w34", - "nodes": ["n164", "n165", "n166", "n171", "n866", "n172", "n167", "n168", "n169", "n170", "n164"] + "nodes": ["n164", "n165", "n166", "n171", "n866", "n172", "n167", "n168", "n169", "n910", "n170", "n164"] }, "n165": { "loc": [-85.63883, 41.942508], @@ -20113,7 +15626,8 @@ "id": "w35", "nodes": ["n168", "n167", "n172"], "tags": { - "barrier": "fence" + "barrier": "fence", + "fence_type": "chain_link" } }, "n171": { @@ -20122,9 +15636,10 @@ }, "w36": { "id": "w36", - "nodes": ["n171", "n866", "n172"], + "nodes": ["n910", "n171", "n866", "n172"], "tags": { - "barrier": "fence" + "barrier": "fence", + "fence_type": "chain_link" } }, "n172": { @@ -20214,7 +15729,7 @@ }, "w40": { "tags": { - "building": "yes" + "building": "house" }, "id": "w40", "nodes": ["n188", "n189", "n190", "n191", "n192", "n193", "n188"] @@ -20249,7 +15764,7 @@ }, "w41": { "tags": { - "building": "yes" + "building": "house" }, "id": "w41", "nodes": ["n194", "n195", "n196", "n197", "n198", "n199", "n200", "n201", "n202", "n203", "n204", "n205", "n194"] @@ -20304,7 +15819,7 @@ }, "w42": { "tags": { - "building": "yes" + "building": "house" }, "id": "w42", "nodes": ["n206", "n207", "n208", "n209", "n210", "n211", "n206"] @@ -20371,7 +15886,8 @@ }, "w45": { "tags": { - "building": "yes" + "amenity": "shelter", + "shelter_type": "picnic_shelter" }, "id": "w45", "nodes": ["n217", "n218", "n219", "n220", "n217"] @@ -20394,7 +15910,8 @@ }, "w46": { "tags": { - "building": "yes" + "amenity": "shelter", + "shelter_type": "picnic_shelter" }, "id": "w46", "nodes": ["n221", "n222", "n223", "n224", "n221"] @@ -20914,7 +16431,24 @@ }, "w62": { "id": "w62", - "nodes": ["n876", "n875", "n874", "n873", "n872", "n871", "n870", "n869", "n41", "n868", "n146", "n314", "n315", "n2139858981"], + "nodes": [ + "n876", + "n906", + "n904", + "n875", + "n874", + "n873", + "n872", + "n871", + "n870", + "n869", + "n41", + "n868", + "n146", + "n314", + "n315", + "n2139858981" + ], "tags": { "highway": "footway", "footway": "sidewalk" @@ -20984,16 +16518,17 @@ "tags": { "highway": "footway", "footway": "sidewalk", - "layer": "1" + "layer": "1", + "bridge": "yes" } }, "n322": { - "loc": [-85.634, 41.943484], + "loc": [-85.634099, 41.943429], "id": "n322" }, "w67": { "id": "w67", - "nodes": ["n322", "n323", "n475"], + "nodes": ["n322", "n886", "n323", "n475"], "tags": { "highway": "footway", "footway": "crossing" @@ -21056,7 +16591,7 @@ "id": "n328" }, "n329": { - "loc": [-85.634076, 41.943217], + "loc": [-85.634099, 41.943202], "id": "n329" }, "n330": { @@ -21074,7 +16609,7 @@ } }, "n331": { - "loc": [-85.633876, 41.943327], + "loc": [-85.633938, 41.943291], "id": "n331" }, "w72": { @@ -21403,37 +16938,6 @@ "loc": [-85.632706, 41.943715], "id": "n377" }, - "n378": { - "loc": [-85.632998, 41.943794], - "id": "n378" - }, - "w85": { - "tags": { - "building": "yes" - }, - "id": "w85", - "nodes": ["n378", "n379", "n380", "n381", "n382", "n383", "n378"] - }, - "n379": { - "loc": [-85.632855, 41.943874], - "id": "n379" - }, - "n380": { - "loc": [-85.632755, 41.943777], - "id": "n380" - }, - "n381": { - "loc": [-85.632781, 41.943762], - "id": "n381" - }, - "n382": { - "loc": [-85.632764, 41.943746], - "id": "n382" - }, - "n383": { - "loc": [-85.632881, 41.94368], - "id": "n383" - }, "n384": { "loc": [-85.632616, 41.944021], "id": "n384" @@ -21676,7 +17180,7 @@ "tunnel": "building_passage" }, "id": "w93", - "nodes": ["n2139877106", "n1819848909", "n1819848930"] + "nodes": ["n2139877106", "n1819848930"] }, "w94": { "tags": { @@ -21684,7 +17188,7 @@ "waterway": "river" }, "id": "w94", - "nodes": ["n1819848930", "n1819848888"] + "nodes": ["n1819848930", "n885", "n1819848888", "n1820938671"] }, "n425": { "loc": [-85.634425, 41.943552], @@ -21695,7 +17199,7 @@ "building": "yes" }, "id": "w95", - "nodes": ["n425", "n426", "n427", "n428", "n425"] + "nodes": ["n425", "n426", "n427", "n914", "n428", "n913", "n425"] }, "n426": { "loc": [-85.634248, 41.943654], @@ -21709,50 +17213,19 @@ "loc": [-85.634354, 41.943484], "id": "n428" }, - "n429": { - "loc": [-85.634325, 41.943465], - "id": "n429" - }, - "w96": { - "tags": { - "building": "yes" - }, - "id": "w96", - "nodes": ["n429", "n430", "n431", "n432", "n433", "n434", "n429"] - }, - "n430": { - "loc": [-85.634249, 41.943508], - "id": "n430" - }, - "n431": { - "loc": [-85.63423, 41.943489], - "id": "n431" - }, - "n432": { - "loc": [-85.634215, 41.943498], - "id": "n432" - }, - "n433": { - "loc": [-85.634145, 41.943428], - "id": "n433" - }, - "n434": { - "loc": [-85.634235, 41.943377], - "id": "n434" - }, "n435": { "loc": [-85.634427, 41.943533], "id": "n435" }, "w97": { "id": "w97", - "nodes": ["n435", "n451", "n321"], + "nodes": ["n435", "n912", "n451", "n321"], "tags": { "highway": "footway" } }, "n436": { - "loc": [-85.634273, 41.943235], + "loc": [-85.63428, 41.943229], "id": "n436" }, "w98": { @@ -21831,7 +17304,7 @@ }, "w100": { "id": "w100", - "nodes": ["n451", "n452"], + "nodes": ["n451", "n915", "n452"], "tags": { "highway": "footway" } @@ -21852,10 +17325,6 @@ "id": "n455", "loc": [-85.635224, 41.943869] }, - "n456": { - "id": "n456", - "loc": [-85.635152, 41.943868] - }, "n457": { "id": "n457", "loc": [-85.635186, 41.943901] @@ -21974,7 +17443,7 @@ }, "w106": { "id": "w106", - "nodes": ["n322", "n452", "n476"], + "nodes": ["n886", "n452", "n476"], "tags": { "highway": "footway", "footway": "sidewalk" @@ -22779,13 +18248,9 @@ "id": "n619", "loc": [-85.635319, 41.943257] }, - "n620": { - "id": "n620", - "loc": [-85.634983, 41.943139] - }, "n621": { "id": "n621", - "loc": [-85.634966, 41.943148] + "loc": [-85.634957, 41.943146] }, "n622": { "id": "n622", @@ -22864,11 +18329,11 @@ } }, "n631": { - "loc": [-85.633798, 41.945718], + "loc": [-85.63382, 41.945698], "id": "n631" }, "n632": { - "loc": [-85.633661, 41.945588], + "loc": [-85.633681, 41.945571], "id": "n632" }, "n633": { @@ -23384,7 +18849,7 @@ }, "w160": { "id": "w160", - "nodes": ["n729", "n721", "n722", "n723", "n724"], + "nodes": ["n729", "n721", "n722", "n964", "n723", "n724"], "tags": { "highway": "footway", "footway": "sidewalk" @@ -23437,7 +18902,7 @@ } }, "n728": { - "loc": [-85.634469, 41.945784], + "loc": [-85.634462, 41.945787], "id": "n728" }, "n729": { @@ -23454,7 +18919,7 @@ } }, "n730": { - "loc": [-85.634345, 41.945699], + "loc": [-85.634344, 41.945699], "id": "n730", "tags": { "highway": "crossing", @@ -23462,7 +18927,7 @@ } }, "n731": { - "loc": [-85.634418, 41.945775], + "loc": [-85.634426, 41.945783], "id": "n731" }, "w164": { @@ -23514,7 +18979,7 @@ "highway": "footway" }, "id": "w166", - "nodes": ["n739", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n2139870452"] + "nodes": ["n739", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n1623", "n2139870452"] }, "n739": { "loc": [-85.634939, 41.942165], @@ -23900,7 +19365,7 @@ }, "w177": { "id": "w177", - "nodes": ["n816", "n817", "n818", "n819", "n820", "n821"], + "nodes": ["n816", "n1140", "n817", "n818", "n819", "n820", "n821"], "tags": { "highway": "service" } @@ -23922,7 +19387,7 @@ "id": "n820" }, "n821": { - "loc": [-85.638238, 41.943022], + "loc": [-85.638243, 41.943019], "id": "n821" }, "n822": { @@ -24206,6 +19671,4972 @@ "n878": { "id": "n878", "loc": [-85.636551, 41.942641] + }, + "n879": { + "loc": [-85.633914, 41.943693], + "id": "n879" + }, + "w6": { + "tags": { + "building": "shed" + }, + "id": "w6", + "nodes": ["n879", "n880", "n881", "n882", "n879"] + }, + "n880": { + "loc": [-85.63389, 41.943708], + "id": "n880" + }, + "n881": { + "loc": [-85.633866, 41.943686], + "id": "n881" + }, + "n882": { + "loc": [-85.63389, 41.943671], + "id": "n882" + }, + "n883": { + "loc": [-85.633857, 41.943609], + "id": "n883" + }, + "w185": { + "id": "w185", + "nodes": ["n883", "n884"], + "tags": { + "barrier": "fence" + } + }, + "n884": { + "loc": [-85.634858, 41.944474], + "id": "n884" + }, + "n885": { + "id": "n885", + "loc": [-85.633988, 41.943234] + }, + "n886": { + "loc": [-85.633999, 41.943485], + "id": "n886" + }, + "n887": { + "loc": [-85.634109, 41.943449], + "id": "n887", + "tags": { + "emergency": "fire_hydrant" + } + }, + "w186": { + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + }, + "id": "w186", + "nodes": ["n2139858979", "n622", "n2139858980"] + }, + "w187": { + "tags": { + "name": "Riverwalk Trail", + "highway": "steps", + "incline": "up", + "surface": "wood" + }, + "id": "w187", + "nodes": ["n621", "n2139858979"] + }, + "w188": { + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "wood" + }, + "id": "w188", + "nodes": ["n2139858972", "n2139858973", "n2139858974", "n2139858975", "n2139858976", "n2139858977", "n2139858978", "n621"] + }, + "w189": { + "tags": { + "name": "Riverwalk Trail", + "surface": "wood", + "highway": "steps", + "incline": "down" + }, + "id": "w189", + "nodes": ["n2139858971", "n2139858972"] + }, + "n888": { + "loc": [-85.635728, 41.942655], + "id": "n888", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n889": { + "loc": [-85.636499, 41.942845], + "id": "n889", + "tags": { + "man_made": "flagpole" + } + }, + "n890": { + "id": "n890", + "loc": [-85.636197, 41.943073] + }, + "n891": { + "id": "n891", + "loc": [-85.636227, 41.943073] + }, + "n892": { + "loc": [-85.637433, 41.942933], + "id": "n892", + "tags": { + "name": "Pizza Hut", + "cuisine": "pizza", + "amenity": "restaurant", + "addr:housenumber": "401", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n893": { + "loc": [-85.637907, 41.942879], + "id": "n893", + "tags": { + "amenity": "car_wash" + } + }, + "w190": { + "id": "w190", + "nodes": ["n821", "n894", "n900", "n903", "n901"], + "tags": { + "highway": "service" + } + }, + "n894": { + "loc": [-85.637661, 41.943018], + "id": "n894" + }, + "n895": { + "loc": [-85.636933, 41.942733], + "id": "n895", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n896": { + "loc": [-85.637661, 41.94304], + "id": "n896" + }, + "w191": { + "tags": { + "amenity": "parking" + }, + "id": "w191", + "nodes": ["n896", "n897", "n898", "n899", "n900", "n894", "n896"] + }, + "n897": { + "loc": [-85.637562, 41.943041], + "id": "n897" + }, + "n898": { + "loc": [-85.637556, 41.942725], + "id": "n898" + }, + "n899": { + "loc": [-85.637656, 41.942724], + "id": "n899" + }, + "n900": { + "loc": [-85.637657, 41.942779], + "id": "n900" + }, + "n901": { + "loc": [-85.637983, 41.942777], + "id": "n901" + }, + "n902": { + "loc": [-85.637982, 41.942616], + "id": "n902" + }, + "n903": { + "loc": [-85.637777, 41.942778], + "id": "n903" + }, + "w192": { + "id": "w192", + "nodes": ["n903", "n904", "n905"], + "tags": { + "highway": "service" + } + }, + "n904": { + "loc": [-85.637775, 41.942699], + "id": "n904" + }, + "n905": { + "loc": [-85.637772, 41.942618], + "id": "n905" + }, + "w193": { + "tags": { + "highway": "service" + }, + "id": "w193", + "nodes": ["n901", "n906", "n902"] + }, + "n906": { + "id": "n906", + "loc": [-85.637982, 41.942698] + }, + "n907": { + "loc": [-85.637941, 41.942378], + "id": "n907", + "tags": { + "shop": "pawnbroker", + "name": "Hock It To Me", + "addr:housenumber": "416", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n908": { + "loc": [-85.637515, 41.942394], + "id": "n908", + "tags": { + "shop": "car", + "second_hand": "only" + } + }, + "n909": { + "loc": [-85.638743, 41.942374], + "id": "n909", + "tags": { + "shop": "car_repair", + "name": "Brokers Service", + "addr:housenumber": "500", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093", + "service:vehicle:towing": "yes", + "service:vehicle:tyres": "yes" + } + }, + "n910": { + "loc": [-85.638594, 41.942357], + "id": "n910" + }, + "n911": { + "loc": [-85.634312, 41.943562], + "id": "n911", + "tags": { + "amenity": "cafe", + "cuisine": "coffee_shop", + "name": "L.A.'s Coffee Cafe", + "addr:housenumber": "145", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093", + "outdoor_seating": "yes" + } + }, + "n912": { + "loc": [-85.634404, 41.943512], + "id": "n912" + }, + "w194": { + "id": "w194", + "nodes": ["n912", "n913"], + "tags": { + "highway": "footway" + } + }, + "n913": { + "loc": [-85.634391, 41.943519], + "id": "n913", + "tags": { + "entrance": "yes" + } + }, + "n914": { + "loc": [-85.634259, 41.943538], + "id": "n914", + "tags": { + "entrance": "yes" + } + }, + "w195": { + "id": "w195", + "nodes": ["n914", "n915"], + "tags": { + "highway": "footway" + } + }, + "n915": { + "loc": [-85.634247, 41.943528], + "id": "n915" + }, + "n916": { + "loc": [-85.633747, 41.943322], + "id": "n916", + "tags": { + "office": "insurance", + "name": "Preferred Insurance Services", + "addr:housenumber": "132", + "addr:street": "West Michigan Avenue", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n917": { + "loc": [-85.63299, 41.943686], + "id": "n917", + "tags": { + "shop": "car_repair", + "name": "Lynn's Garage", + "addr:housenumber": "101", + "addr:street": "South Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093", + "service:vehicle:tyres": "yes" + } + }, + "w196": { + "tags": { + "building": "yes" + }, + "id": "w196", + "nodes": ["n2139824724", "n918", "n919", "n920", "n2139824724"] + }, + "n918": { + "loc": [-85.633438, 41.944883], + "id": "n918" + }, + "n919": { + "loc": [-85.633265, 41.944983], + "id": "n919" + }, + "n920": { + "loc": [-85.633315, 41.945027], + "id": "n920" + }, + "w197": { + "tags": { + "building": "yes" + }, + "id": "w197", + "nodes": ["n918", "n921", "n922", "n919", "n918"] + }, + "n921": { + "loc": [-85.633376, 41.944827], + "id": "n921" + }, + "n922": { + "loc": [-85.633199, 41.944922], + "id": "n922" + }, + "n923": { + "loc": [-85.633316, 41.944772], + "id": "n923" + }, + "n924": { + "loc": [-85.633147, 41.944867], + "id": "n924" + }, + "w198": { + "tags": { + "building": "yes" + }, + "id": "w198", + "nodes": ["n923", "n925", "n926", "n924", "n923"] + }, + "n925": { + "loc": [-85.633261, 41.944719], + "id": "n925" + }, + "n926": { + "loc": [-85.633096, 41.944812], + "id": "n926" + }, + "w199": { + "tags": { + "building": "yes" + }, + "id": "w199", + "nodes": ["n925", "n927", "n932", "n928", "n929", "n926", "n925"] + }, + "n927": { + "loc": [-85.633191, 41.944645], + "id": "n927" + }, + "n928": { + "loc": [-85.632981, 41.94476], + "id": "n928" + }, + "n929": { + "loc": [-85.633062, 41.94483], + "id": "n929" + }, + "w200": { + "tags": { + "building": "yes" + }, + "id": "w200", + "nodes": ["n927", "n930", "n931", "n932", "n927"] + }, + "n930": { + "loc": [-85.633146, 41.944602], + "id": "n930" + }, + "n931": { + "loc": [-85.632969, 41.944703], + "id": "n931" + }, + "n932": { + "loc": [-85.633008, 41.944745], + "id": "n932" + }, + "w201": { + "tags": { + "building": "yes" + }, + "id": "w201", + "nodes": ["n930", "n933", "n934", "n935", "n931", "n930"] + }, + "n933": { + "loc": [-85.633088, 41.944545], + "id": "n933" + }, + "n934": { + "loc": [-85.632868, 41.944655], + "id": "n934" + }, + "n935": { + "loc": [-85.632941, 41.944718], + "id": "n935" + }, + "w202": { + "tags": { + "building": "yes" + }, + "id": "w202", + "nodes": ["n933", "n936", "n937", "n934", "n933"] + }, + "n936": { + "loc": [-85.633028, 41.944483], + "id": "n936" + }, + "n937": { + "loc": [-85.632817, 41.944605], + "id": "n937" + }, + "w203": { + "tags": { + "building": "yes" + }, + "id": "w203", + "nodes": ["n936", "n938", "n942", "n939", "n954", "n937", "n936"] + }, + "n938": { + "loc": [-85.632923, 41.944373], + "id": "n938" + }, + "n939": { + "loc": [-85.632692, 41.944485], + "id": "n939" + }, + "w204": { + "tags": { + "building": "yes" + }, + "id": "w204", + "nodes": ["n938", "n940", "n941", "n942", "n938"] + }, + "n940": { + "loc": [-85.632871, 41.944316], + "id": "n940" + }, + "n941": { + "loc": [-85.632655, 41.944421], + "id": "n941" + }, + "n942": { + "loc": [-85.632711, 41.944478], + "id": "n942" + }, + "w205": { + "tags": { + "building": "yes" + }, + "id": "w205", + "nodes": ["n940", "n943", "n944", "n941", "n940"] + }, + "n943": { + "loc": [-85.632825, 41.94426], + "id": "n943" + }, + "n944": { + "loc": [-85.632606, 41.944363], + "id": "n944" + }, + "w206": { + "tags": { + "building": "yes" + }, + "id": "w206", + "nodes": ["n943", "n945", "n946", "n947", "n948", "n944", "n943"] + }, + "n945": { + "loc": [-85.63275, 41.94418], + "id": "n945" + }, + "n946": { + "loc": [-85.632588, 41.944256], + "id": "n946" + }, + "n947": { + "loc": [-85.632611, 41.944279], + "id": "n947" + }, + "n948": { + "loc": [-85.632548, 41.944306], + "id": "n948" + }, + "w207": { + "tags": { + "building": "yes" + }, + "id": "w207", + "nodes": ["n944", "n949", "n950", "n951", "n941", "n944"] + }, + "n949": { + "loc": [-85.632512, 41.944406], + "id": "n949" + }, + "n950": { + "loc": [-85.632565, 41.944463], + "id": "n950" + }, + "w208": { + "tags": { + "building": "yes" + }, + "id": "w208", + "nodes": ["n941", "n951", "n952", "n939", "n942", "n941"] + }, + "n951": { + "loc": [-85.632579, 41.944456], + "id": "n951" + }, + "n952": { + "loc": [-85.632634, 41.944518], + "id": "n952" + }, + "w209": { + "tags": { + "building": "yes" + }, + "id": "w209", + "nodes": ["n952", "n953", "n954", "n939", "n952"] + }, + "n953": { + "loc": [-85.632686, 41.944569], + "id": "n953" + }, + "n954": { + "loc": [-85.632745, 41.944537], + "id": "n954" + }, + "w210": { + "tags": { + "building": "yes" + }, + "id": "w210", + "nodes": ["n953", "n955", "n956", "n934", "n937", "n954", "n953"] + }, + "n955": { + "loc": [-85.632659, 41.944587], + "id": "n955" + }, + "n956": { + "loc": [-85.632778, 41.944705], + "id": "n956" + }, + "n957": { + "loc": [-85.632815, 41.944301], + "id": "n957", + "tags": { + "office": "employment_agency", + "name": "Access Point", + "addr:housenumber": "5", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n958": { + "loc": [-85.6332, 41.944174], + "id": "n958", + "tags": { + "shop": "second_hand", + "name": "The Pink Paisley Poppy Emporium", + "addr:housenumber": "6", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n959": { + "loc": [-85.633578, 41.944568], + "id": "n959", + "tags": { + "shop": "books", + "name": "Lowry's Books & More", + "addr:housenumber": "22", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n960": { + "loc": [-85.63344, 41.944443], + "id": "n960", + "tags": { + "name": "Paisano's Bar and Grill", + "amenity": "restaurant", + "cuisine": "pizza", + "addr:housenumber": "16", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n961": { + "loc": [-85.633009, 41.944542], + "id": "n961", + "tags": { + "amenity": "cafe", + "name": "Main Street Cafe", + "cuisine": "american", + "internet_access": "yes", + "addr:housenumber": "13", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n962": { + "loc": [-85.633674, 41.944682], + "id": "n962", + "tags": { + "leisure": "fitness_centre", + "name": "Main Street Fit-Ness", + "addr:housenumber": "28", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n963": { + "loc": [-85.633376, 41.944868], + "id": "n963", + "tags": { + "leisure": "fitness_centre", + "name": "Main Street Bar-Bell", + "addr:housenumber": "27", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n964": { + "loc": [-85.633366, 41.944783], + "id": "n964" + }, + "w211": { + "id": "w211", + "nodes": ["n964", "n965"], + "tags": { + "highway": "footway" + } + }, + "n965": { + "loc": [-85.633296, 41.94482], + "id": "n965" + }, + "n966": { + "loc": [-85.633214, 41.94487], + "id": "n966" + }, + "w212": { + "id": "w212", + "nodes": ["n966", "n983", "n967", "n989"], + "tags": { + "highway": "footway" + } + }, + "n967": { + "loc": [-85.633005, 41.944988], + "id": "n967" + }, + "w213": { + "id": "w213", + "nodes": ["n965", "n968", "n969", "n966", "n970", "n971", "n965"], + "tags": { + "highway": "footway" + } + }, + "n968": { + "loc": [-85.633269, 41.944816], + "id": "n968" + }, + "n969": { + "loc": [-85.633215, 41.944842], + "id": "n969" + }, + "n970": { + "loc": [-85.633245, 41.944871], + "id": "n970" + }, + "n971": { + "loc": [-85.633296, 41.944845], + "id": "n971" + }, + "n972": { + "loc": [-85.633254, 41.944845], + "id": "n972", + "tags": { + "natural": "tree" + } + }, + "n973": { + "loc": [-85.633557, 41.945515], + "id": "n973" + }, + "w214": { + "id": "w214", + "nodes": [ + "n973", + "n999", + "n992", + "n974", + "n975", + "n976", + "n993", + "n977", + "n978", + "n979", + "n980", + "n967", + "n981", + "n1000", + "n1001", + "n1002", + "n1003", + "n1004", + "n1005", + "n1006", + "n1007", + "n1008", + "n1009" + ], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n974": { + "loc": [-85.633279, 41.945246], + "id": "n974" + }, + "n975": { + "loc": [-85.63324, 41.945226], + "id": "n975" + }, + "n976": { + "loc": [-85.6332, 41.945213], + "id": "n976" + }, + "n977": { + "loc": [-85.633133, 41.945164], + "id": "n977" + }, + "n978": { + "loc": [-85.63312, 41.945132], + "id": "n978" + }, + "n979": { + "loc": [-85.633095, 41.945081], + "id": "n979" + }, + "n980": { + "loc": [-85.633064, 41.945047], + "id": "n980" + }, + "n981": { + "loc": [-85.632739, 41.944742], + "id": "n981" + }, + "w215": { + "id": "w215", + "nodes": ["n978", "n982", "n983", "n984", "n985", "n986", "n987", "n988", "n981"], + "tags": { + "highway": "footway" + } + }, + "n982": { + "loc": [-85.633281, 41.945026], + "id": "n982" + }, + "n983": { + "loc": [-85.633155, 41.944903], + "id": "n983" + }, + "n984": { + "loc": [-85.633079, 41.944829], + "id": "n984" + }, + "n985": { + "loc": [-85.63304, 41.944853], + "id": "n985" + }, + "n986": { + "loc": [-85.632949, 41.944776], + "id": "n986" + }, + "n987": { + "loc": [-85.632921, 41.944725], + "id": "n987" + }, + "n988": { + "loc": [-85.632859, 41.944673], + "id": "n988" + }, + "n989": { + "loc": [-85.632895, 41.94505], + "id": "n989" + }, + "w216": { + "id": "w216", + "nodes": ["n976", "n990", "n991", "n992"], + "tags": { + "highway": "footway" + } + }, + "n990": { + "loc": [-85.633336, 41.945138], + "id": "n990" + }, + "n991": { + "loc": [-85.633466, 41.945265], + "id": "n991" + }, + "n992": { + "loc": [-85.633367, 41.945327], + "id": "n992" + }, + "n993": { + "id": "n993", + "loc": [-85.633163, 41.945189] + }, + "n994": { + "id": "n994", + "loc": [-85.633678, 41.945309] + }, + "n995": { + "id": "n995", + "loc": [-85.633619, 41.945261] + }, + "n996": { + "id": "n996", + "loc": [-85.63355, 41.945301] + }, + "n997": { + "id": "n997", + "loc": [-85.633607, 41.945352] + }, + "n998": { + "loc": [-85.633579, 41.945327], + "id": "n998", + "tags": { + "entrance": "yes" + } + }, + "w217": { + "id": "w217", + "nodes": ["n998", "n999"], + "tags": { + "highway": "footway" + } + }, + "n999": { + "loc": [-85.633445, 41.945404], + "id": "n999" + }, + "n1000": { + "loc": [-85.632699, 41.944763], + "id": "n1000" + }, + "n1001": { + "loc": [-85.632685, 41.944763], + "id": "n1001" + }, + "n1002": { + "loc": [-85.632673, 41.944755], + "id": "n1002" + }, + "n1003": { + "loc": [-85.632595, 41.944682], + "id": "n1003" + }, + "n1004": { + "loc": [-85.632576, 41.944673], + "id": "n1004" + }, + "n1005": { + "loc": [-85.632551, 41.944667], + "id": "n1005" + }, + "n1006": { + "loc": [-85.63253, 41.944667], + "id": "n1006" + }, + "n1007": { + "loc": [-85.632502, 41.944669], + "id": "n1007" + }, + "n1008": { + "loc": [-85.632483, 41.944677], + "id": "n1008" + }, + "n1009": { + "loc": [-85.632383, 41.944731], + "id": "n1009" + }, + "n1010": { + "loc": [-85.63349, 41.944976], + "id": "n1010", + "tags": { + "shop": "paint", + "name": "Sherwin-Williams", + "addr:housenumber": "31", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1011": { + "loc": [-85.633548, 41.945034], + "id": "n1011", + "tags": { + "shop": "jewelry", + "name": "UniQ Jewelry", + "addr:housenumber": "33", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1012": { + "loc": [-85.633683, 41.945129], + "id": "n1012", + "tags": { + "shop": "gift", + "name": "World Fare", + "addr:housenumber": "37", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1013": { + "loc": [-85.634563, 41.945469], + "id": "n1013", + "tags": { + "shop": "frame", + "name": "Golden Finch Frame & Gallery", + "addr:housenumber": "62", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1014": { + "loc": [-85.634469, 41.945379], + "id": "n1014", + "tags": { + "shop": "second_hand", + "name": "Centsible Treasures", + "addr:housenumber": "58", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1015": { + "loc": [-85.634227, 41.945159], + "id": "n1015", + "tags": { + "amenity": "theatre", + "name": "Riviera Theatre", + "addr:housenumber": "48", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1016": { + "loc": [-85.634057, 41.945012], + "id": "n1016", + "tags": { + "shop": "appliance", + "name": "River City Appliance", + "addr:housenumber": "42", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1017": { + "loc": [-85.633879, 41.945325], + "id": "n1017", + "tags": { + "shop": "tattoo", + "name": "Paparazzi Tattoo", + "addr:housenumber": "45", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1018": { + "loc": [-85.634914, 41.945839], + "id": "n1018", + "tags": { + "amenity": "bank", + "name": "Southern Michigan Bank & Trust", + "addr:housenumber": "88", + "addr:street": "North Main Street", + "addr:city": "Three Rivers", + "addr:state": "MI", + "addr:postcode": "49093" + } + }, + "n1019": { + "loc": [-85.634514, 41.946176], + "id": "n1019" + }, + "w218": { + "id": "w218", + "nodes": ["n1019", "n1020", "n1021", "n1022", "n731", "n728", "n1023", "n1025", "n1024", "n1019"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1020": { + "loc": [-85.634087, 41.946178], + "id": "n1020" + }, + "n1021": { + "loc": [-85.634357, 41.945805], + "id": "n1021" + }, + "n1022": { + "loc": [-85.634389, 41.945788], + "id": "n1022" + }, + "n1023": { + "loc": [-85.634491, 41.94581], + "id": "n1023" + }, + "n1024": { + "loc": [-85.634513, 41.945853], + "id": "n1024" + }, + "n1025": { + "id": "n1025", + "loc": [-85.634506, 41.94583] + }, + "w219": { + "id": "w219", + "nodes": ["n719", "n1026", "n1027"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n1026": { + "loc": [-85.634762, 41.946056], + "id": "n1026", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "n1027": { + "loc": [-85.634767, 41.946172], + "id": "n1027" + }, + "w220": { + "id": "w220", + "nodes": ["n1027", "n1028", "n1019"], + "tags": { + "highway": "footway", + "footway": "crossing", + "crossing": "zebra" + } + }, + "n1028": { + "loc": [-85.634622, 41.946175], + "id": "n1028", + "tags": { + "highway": "crossing", + "crossing": "zebra" + } + }, + "w221": { + "tags": { + "highway": "tertiary", + "name": "South Constantine Street" + }, + "id": "w221", + "nodes": ["n185958668", "n185958670", "n185948710", "n185958672"] + }, + "n1029": { + "id": "n1029", + "loc": [-85.638727, 41.938172] + }, + "w222": { + "tags": { + "highway": "residential", + "name": "South Hook Avenue" + }, + "id": "w222", + "nodes": ["n1029", "n185981481"] + }, + "n1030": { + "id": "n1030", + "loc": [-85.639991, 41.938176] + }, + "w223": { + "tags": { + "highway": "residential", + "name": "South Lincoln Avenue" + }, + "id": "w223", + "nodes": ["n1030", "n185973650"] + }, + "n1031": { + "id": "n1031", + "loc": [-85.64114, 41.938145] + }, + "w224": { + "tags": { + "highway": "residential", + "name": "South Grant Avenue" + }, + "id": "w224", + "nodes": ["n1031", "n185970607"] + }, + "w225": { + "id": "w225", + "nodes": [ + "n1819805792", + "n1819805727", + "n2189123379", + "n1819805632", + "n1819805641", + "n1819805760", + "n1819805887", + "n1819805861", + "n1819805722", + "n1819805880", + "n2139982405", + "n2139982399", + "n2139982400", + "n1819805770", + "n2139982402", + "n2139982403", + "n2139982401", + "n1819805780", + "n1819805834", + "n2139982406", + "n1819805698", + "n1819805647", + "n1819805870", + "n1819805683", + "n1819805622", + "n1819805639", + "n1819805858", + "n1819805643", + "n1819805673", + "n1819805925", + "n1819805849", + "n1819805711", + "n1819805846", + "n1819805669", + "n1819805883", + "n1819805814", + "n1819805873", + "n1819805911", + "n1819805690", + "n1819805812", + "n1819805766", + "n1819805802", + "n1819805885", + "n1819805626", + "n1819805842", + "n1819805715", + "n1819805694", + "n1819805618", + "n1819805629", + "n1819805731", + "n1819805636", + "n1819805878", + "n1819805718", + "n1819805798", + "n1819849057", + "n1819805666", + "n1819805852", + "n1819805805", + "n1819805789", + "n1819805868", + "n1819805680", + "n1819805918", + "n1819848888", + "n1819805762", + "n2139989328", + "n1819805907", + "n2139989330", + "n1819805915", + "n1819858521", + "n1819805854", + "n1819805876", + "n1819805864", + "n1819805922", + "n1819805614", + "n1819805792" + ] + }, + "r2": { + "tags": { + "waterway": "riverbank", + "type": "multipolygon" + }, + "members": [{ + "id": "w225", "role": "outer", "type": "way" + }], + "id": "r2" + }, + "w226": { + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "asphalt", + "width": "3" + }, + "id": "w226", + "nodes": [ + "n2139858904", + "n2139858995", + "n2139858905", + "n2139858906", + "n2139858907", + "n2139858908", + "n2139858909", + "n2139858910", + "n2139858911", + "n2139858912", + "n2139858913", + "n2139858914", + "n2139858915", + "n2139858916", + "n2139858917", + "n2139858918", + "n2139858919", + "n2139858920", + "n2139858921", + "n2139858922", + "n2139858923", + "n2139858924", + "n2139858925" + ] + }, + "w227": { + "tags": { + "highway": "secondary", + "name": "South Main Street", + "old_ref": "US 131", + "ref": "M 86" + }, + "id": "w227", + "nodes": ["n185963698", "n185952745", "n185947850", "n185977762"] + }, + "w228": { + "tags": { + "highway": "primary", + "name": "North Main Street", + "old_ref": "US 131", + "ref": "US 131 Business" + }, + "id": "w228", + "nodes": [ + "n185961396", + "n185978394", + "n185971631", + "n185960796", + "n185978392", + "n185974583", + "n185978390", + "n185971578", + "n185965289", + "n2189153215", + "n1028", + "n185978388", + "n185978383", + "n185978381", + "n185978379", + "n185978377", + "n185978375", + "n720", + "n726", + "n370", + "n368", + "n185964982" + ] + }, + "w229": { + "tags": { + "name": "Conrail Railroad", + "railway": "rail" + }, + "id": "w229", + "nodes": [ + "n185972885", + "n1475293260", + "n1475293240", + "n185972891", + "n185972895", + "n185972897", + "n185972899", + "n2130304159", + "n471", + "n324", + "n1475284023", + "n332", + "n185972903" + ] + }, + "n1032": { + "loc": [-85.630957, 41.960953], + "id": "n1032" + }, + "n1033": { + "loc": [-85.632178, 41.960694], + "id": "n1033" + }, + "w230": { + "tags": { + "name": "Saint Joseph River", + "waterway": "river" + }, + "id": "w230", + "nodes": [ + "n1820938505", + "n1820938916", + "n1820938374", + "n1820938329", + "n1820937790", + "n1820939735", + "n1820938930", + "n1820937995", + "n1182", + "n1820938512", + "n1820938130", + "n1820938194", + "n1183", + "n1820938671", + "n19", + "n1820938802", + "n20", + "n1820937542", + "n1820937602", + "n1820939069", + "n1820938901", + "n1820939654", + "n1820937727", + "n1820939569" + ] + }, + "n7": { + "loc": [-85.638791, 41.943231], + "id": "n7" + }, + "w4": { + "tags": { + "building": "yes" + }, + "id": "w4", + "nodes": ["n7", "n38", "n378", "n379", "n7"] + }, + "n38": { + "loc": [-85.63879, 41.943295], + "id": "n38" + }, + "n378": { + "loc": [-85.638683, 41.943295], + "id": "n378" + }, + "n379": { + "loc": [-85.638684, 41.94323], + "id": "n379" + }, + "n380": { + "loc": [-85.638627, 41.94322], + "id": "n380" + }, + "w5": { + "tags": { + "building": "yes" + }, + "id": "w5", + "nodes": ["n380", "n381", "n382", "n383", "n429", "n430", "n380"] + }, + "n381": { + "loc": [-85.638624, 41.943294], + "id": "n381" + }, + "n382": { + "loc": [-85.638437, 41.943291], + "id": "n382" + }, + "n383": { + "loc": [-85.63844, 41.943209], + "id": "n383" + }, + "n429": { + "loc": [-85.638577, 41.943212], + "id": "n429" + }, + "n430": { + "loc": [-85.638576, 41.943219], + "id": "n430" + }, + "n431": { + "loc": [-85.638653, 41.943078], + "id": "n431" + }, + "w85": { + "tags": { + "building": "yes" + }, + "id": "w85", + "nodes": ["n431", "n432", "n1038", "n433", "n434", "n1040", "n431"] + }, + "n432": { + "loc": [-85.638654, 41.943148], + "id": "n432" + }, + "n433": { + "loc": [-85.638387, 41.943151], + "id": "n433" + }, + "n434": { + "loc": [-85.638386, 41.94308], + "id": "n434" + }, + "n456": { + "loc": [-85.638854, 41.943104], + "id": "n456" + }, + "w96": { + "tags": { + "building": "yes" + }, + "id": "w96", + "nodes": ["n456", "n620", "n1034", "n1035", "n456"] + }, + "n620": { + "loc": [-85.638786, 41.943105], + "id": "n620" + }, + "n1034": { + "loc": [-85.638785, 41.943066], + "id": "n1034" + }, + "n1035": { + "loc": [-85.638853, 41.943065], + "id": "n1035" + }, + "w231": { + "id": "w231", + "nodes": ["n456", "n1036", "n1037", "n1038"], + "tags": { + "barrier": "wall" + } + }, + "n1036": { + "loc": [-85.638855, 41.943183], + "id": "n1036" + }, + "n1037": { + "loc": [-85.638552, 41.943189], + "id": "n1037" + }, + "n1038": { + "loc": [-85.63855, 41.943149], + "id": "n1038" + }, + "w232": { + "id": "w232", + "nodes": ["n1034", "n1039", "n1040"], + "tags": { + "barrier": "wall" + } + }, + "n1039": { + "loc": [-85.638638, 41.943068], + "id": "n1039" + }, + "n1040": { + "loc": [-85.638638, 41.943078], + "id": "n1040" + }, + "n1041": { + "loc": [-85.638813, 41.943163], + "id": "n1041" + }, + "w233": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w233", + "nodes": ["n1041", "n1042", "n1043", "n1044", "n1045", "n1046", "n1041"] + }, + "n1042": { + "loc": [-85.638684, 41.943165], + "id": "n1042" + }, + "n1043": { + "loc": [-85.638682, 41.943105], + "id": "n1043" + }, + "n1044": { + "loc": [-85.638706, 41.943105], + "id": "n1044" + }, + "n1045": { + "loc": [-85.638707, 41.943117], + "id": "n1045" + }, + "n1046": { + "loc": [-85.638812, 41.943115], + "id": "n1046" + }, + "n1047": { + "loc": [-85.638769, 41.943407], + "id": "n1047" + }, + "w234": { + "id": "w234", + "nodes": ["n1047", "n1048"], + "tags": { + "barrier": "hedge" + } + }, + "n1048": { + "loc": [-85.638549, 41.943407], + "id": "n1048" + }, + "n1049": { + "loc": [-85.638567, 41.943555], + "id": "n1049" + }, + "w235": { + "tags": { + "building": "yes" + }, + "id": "w235", + "nodes": ["n1049", "n1050", "n1051", "n1052", "n1049"] + }, + "n1050": { + "loc": [-85.638426, 41.943554], + "id": "n1050" + }, + "n1051": { + "loc": [-85.638427, 41.94346], + "id": "n1051" + }, + "n1052": { + "loc": [-85.638568, 41.943461], + "id": "n1052" + }, + "n1053": { + "loc": [-85.639264, 41.943415], + "id": "n1053" + }, + "w236": { + "tags": { + "building": "yes" + }, + "id": "w236", + "nodes": ["n1053", "n1054", "n1055", "n1056", "n1057", "n1058", "n1059", "n1060", "n1053"] + }, + "n1054": { + "loc": [-85.639082, 41.943417], + "id": "n1054" + }, + "n1055": { + "loc": [-85.63908, 41.943331], + "id": "n1055" + }, + "n1056": { + "loc": [-85.639136, 41.94333], + "id": "n1056" + }, + "n1057": { + "loc": [-85.639158, 41.943312], + "id": "n1057" + }, + "n1058": { + "loc": [-85.639188, 41.943313], + "id": "n1058" + }, + "n1059": { + "loc": [-85.639211, 41.943331], + "id": "n1059" + }, + "n1060": { + "loc": [-85.639262, 41.943331], + "id": "n1060" + }, + "n1061": { + "loc": [-85.638986, 41.943515], + "id": "n1061" + }, + "w237": { + "tags": { + "building": "yes" + }, + "id": "w237", + "nodes": ["n1061", "n1062", "n1063", "n1064", "n1065", "n1061"] + }, + "n1062": { + "loc": [-85.63888, 41.943521], + "id": "n1062" + }, + "n1063": { + "loc": [-85.638871, 41.943436], + "id": "n1063" + }, + "n1064": { + "loc": [-85.638958, 41.943431], + "id": "n1064" + }, + "n1065": { + "loc": [-85.638979, 41.943443], + "id": "n1065" + }, + "n1066": { + "loc": [-85.63926, 41.943703], + "id": "n1066" + }, + "w238": { + "tags": { + "building": "yes" + }, + "id": "w238", + "nodes": ["n1066", "n1067", "n1068", "n1069", "n1070", "n1071", "n1066"] + }, + "n1067": { + "loc": [-85.639152, 41.943704], + "id": "n1067" + }, + "n1068": { + "loc": [-85.639152, 41.943691], + "id": "n1068" + }, + "n1069": { + "loc": [-85.639063, 41.943691], + "id": "n1069" + }, + "n1070": { + "loc": [-85.639062, 41.943613], + "id": "n1070" + }, + "n1071": { + "loc": [-85.639259, 41.943611], + "id": "n1071" + }, + "n1072": { + "loc": [-85.639117, 41.943726], + "id": "n1072" + }, + "w239": { + "tags": { + "building": "yes" + }, + "id": "w239", + "nodes": ["n1072", "n1073", "n1074", "n1075", "n1072"] + }, + "n1073": { + "loc": [-85.639118, 41.943767], + "id": "n1073" + }, + "n1074": { + "loc": [-85.639051, 41.943768], + "id": "n1074" + }, + "n1075": { + "loc": [-85.63905, 41.943727], + "id": "n1075" + }, + "n1076": { + "loc": [-85.638627, 41.943716], + "id": "n1076" + }, + "w240": { + "tags": { + "building": "yes" + }, + "id": "w240", + "nodes": ["n1076", "n1077", "n1078", "n1079", "n1080", "n1081", "n1076"] + }, + "n1077": { + "loc": [-85.63863, 41.943634], + "id": "n1077" + }, + "n1078": { + "loc": [-85.63844, 41.943631], + "id": "n1078" + }, + "n1079": { + "loc": [-85.638437, 41.943729], + "id": "n1079" + }, + "n1080": { + "loc": [-85.638533, 41.94373], + "id": "n1080" + }, + "n1081": { + "loc": [-85.638534, 41.943715], + "id": "n1081" + }, + "n1082": { + "loc": [-85.638678, 41.943941], + "id": "n1082" + }, + "w241": { + "tags": { + "building": "yes" + }, + "id": "w241", + "nodes": ["n1082", "n1083", "n1084", "n1085", "n1082"] + }, + "n1083": { + "loc": [-85.638522, 41.943944], + "id": "n1083" + }, + "n1084": { + "loc": [-85.63852, 41.943864], + "id": "n1084" + }, + "n1085": { + "loc": [-85.638676, 41.943861], + "id": "n1085" + }, + "n1086": { + "loc": [-85.638663, 41.944059], + "id": "n1086" + }, + "w242": { + "tags": { + "building": "yes" + }, + "id": "w242", + "nodes": ["n1086", "n1087", "n1088", "n1089", "n1086"] + }, + "n1087": { + "loc": [-85.638513, 41.944061], + "id": "n1087" + }, + "n1088": { + "loc": [-85.638511, 41.943991], + "id": "n1088" + }, + "n1089": { + "loc": [-85.638661, 41.943989], + "id": "n1089" + }, + "n1090": { + "loc": [-85.63865, 41.944134], + "id": "n1090" + }, + "w243": { + "tags": { + "building": "yes" + }, + "id": "w243", + "nodes": ["n1090", "n1091", "n1092", "n1093", "n1094", "n1095", "n1096", "n1097", "n1090"] + }, + "n1091": { + "loc": [-85.638429, 41.944144], + "id": "n1091" + }, + "n1092": { + "loc": [-85.638426, 41.944106], + "id": "n1092" + }, + "n1093": { + "loc": [-85.638476, 41.944104], + "id": "n1093" + }, + "n1094": { + "loc": [-85.638475, 41.94409], + "id": "n1094" + }, + "n1095": { + "loc": [-85.638594, 41.944084], + "id": "n1095" + }, + "n1096": { + "loc": [-85.638595, 41.944101], + "id": "n1096" + }, + "n1097": { + "loc": [-85.638647, 41.944099], + "id": "n1097" + }, + "n1098": { + "loc": [-85.63829, 41.944154], + "id": "n1098" + }, + "w244": { + "id": "w244", + "nodes": ["n1098", "n1099", "n1100", "n1101"], + "tags": { + "barrier": "fence" + } + }, + "n1099": { + "loc": [-85.638558, 41.944155], + "id": "n1099" + }, + "n1100": { + "loc": [-85.638558, 41.944338], + "id": "n1100" + }, + "n1101": { + "loc": [-85.638851, 41.944408], + "id": "n1101" + }, + "n1102": { + "loc": [-85.637771, 41.943989], + "id": "n1102" + }, + "w245": { + "tags": { + "highway": "service" + }, + "id": "w245", + "nodes": [ + "n1102", + "n835", + "n30", + "n2140006433", + "n35", + "n29", + "n2140006435", + "n34", + "n28", + "n2140006436", + "n2140006437", + "n32", + "n2140006438", + "n31", + "n33", + "n2140006439", + "n2140006440", + "n1102" + ] + }, + "n1103": { + "loc": [-85.639345, 41.943964], + "id": "n1103" + }, + "w246": { + "id": "w246", + "nodes": ["n1103", "n1139", "n1104"], + "tags": { + "barrier": "fence" + } + }, + "n1104": { + "loc": [-85.638515, 41.94397], + "id": "n1104" + }, + "n1105": { + "loc": [-85.639256, 41.943928], + "id": "n1105" + }, + "w247": { + "tags": { + "building": "yes" + }, + "id": "w247", + "nodes": ["n1105", "n1106", "n1107", "n1108", "n1109", "n1110", "n1111", "n1112", "n1113", "n1114", "n1105"] + }, + "n1106": { + "loc": [-85.639157, 41.943929], + "id": "n1106" + }, + "n1107": { + "loc": [-85.639156, 41.9439], + "id": "n1107" + }, + "n1108": { + "loc": [-85.639118, 41.9439], + "id": "n1108" + }, + "n1109": { + "loc": [-85.639116, 41.94382], + "id": "n1109" + }, + "n1110": { + "loc": [-85.639202, 41.943819], + "id": "n1110" + }, + "n1111": { + "loc": [-85.639202, 41.943837], + "id": "n1111" + }, + "n1112": { + "loc": [-85.639293, 41.943836], + "id": "n1112" + }, + "n1113": { + "loc": [-85.639295, 41.943898], + "id": "n1113" + }, + "n1114": { + "loc": [-85.639255, 41.943898], + "id": "n1114" + }, + "n1115": { + "loc": [-85.639296, 41.944083], + "id": "n1115" + }, + "w248": { + "tags": { + "building": "yes" + }, + "id": "w248", + "nodes": ["n1115", "n1116", "n1117", "n1118", "n1119", "n1120", "n1115"] + }, + "n1116": { + "loc": [-85.639144, 41.944084], + "id": "n1116" + }, + "n1117": { + "loc": [-85.639143, 41.944026], + "id": "n1117" + }, + "n1118": { + "loc": [-85.639162, 41.944026], + "id": "n1118" + }, + "n1119": { + "loc": [-85.639162, 41.944], + "id": "n1119" + }, + "n1120": { + "loc": [-85.639295, 41.943999], + "id": "n1120" + }, + "n1121": { + "loc": [-85.639131, 41.944139], + "id": "n1121" + }, + "w249": { + "tags": { + "building": "yes" + }, + "id": "w249", + "nodes": ["n1121", "n1122", "n1123", "n1124", "n1121"] + }, + "n1122": { + "loc": [-85.63901, 41.94414], + "id": "n1122" + }, + "n1123": { + "loc": [-85.63901, 41.944076], + "id": "n1123" + }, + "n1124": { + "loc": [-85.63913, 41.944075], + "id": "n1124" + }, + "n1125": { + "loc": [-85.639092, 41.944155], + "id": "n1125" + }, + "w250": { + "tags": { + "building": "yes" + }, + "id": "w250", + "nodes": ["n1125", "n1126", "n1127", "n1128", "n1129", "n1130", "n1131", "n1132", "n1133", "n1134", "n1135", "n1136", "n1125"] + }, + "n1126": { + "loc": [-85.639093, 41.944308], + "id": "n1126" + }, + "n1127": { + "loc": [-85.639225, 41.944308], + "id": "n1127" + }, + "n1128": { + "loc": [-85.639225, 41.94429], + "id": "n1128" + }, + "n1129": { + "loc": [-85.639253, 41.944289], + "id": "n1129" + }, + "n1130": { + "loc": [-85.639253, 41.944269], + "id": "n1130" + }, + "n1131": { + "loc": [-85.639243, 41.944269], + "id": "n1131" + }, + "n1132": { + "loc": [-85.639243, 41.944229], + "id": "n1132" + }, + "n1133": { + "loc": [-85.639224, 41.944229], + "id": "n1133" + }, + "n1134": { + "loc": [-85.639224, 41.944196], + "id": "n1134" + }, + "n1135": { + "loc": [-85.639195, 41.944196], + "id": "n1135" + }, + "n1136": { + "loc": [-85.639195, 41.944155], + "id": "n1136" + }, + "n1137": { + "loc": [-85.639072, 41.944154], + "id": "n1137" + }, + "w251": { + "id": "w251", + "nodes": ["n1137", "n1138", "n1139"], + "tags": { + "barrier": "fence" + } + }, + "n1138": { + "loc": [-85.638865, 41.944154], + "id": "n1138" + }, + "n1139": { + "loc": [-85.638863, 41.943967], + "id": "n1139" + }, + "w252": { + "id": "w252", + "nodes": ["n876", "n1140", "n1141"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1140": { + "loc": [-85.6386, 41.942698], + "id": "n1140" + }, + "n1141": { + "loc": [-85.639348, 41.942698], + "id": "n1141" + }, + "w253": { + "id": "w253", + "nodes": ["n1141", "n1142", "n1143", "n1144", "n1145", "n1146"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1142": { + "loc": [-85.639377, 41.944984], + "id": "n1142" + }, + "n1143": { + "loc": [-85.63937, 41.945013], + "id": "n1143" + }, + "n1144": { + "loc": [-85.639357, 41.945033], + "id": "n1144" + }, + "n1145": { + "loc": [-85.639353, 41.945053], + "id": "n1145" + }, + "n1146": { + "loc": [-85.639352, 41.945084], + "id": "n1146" + }, + "w254": { + "id": "w254", + "nodes": ["n1146", "n1147", "n1148"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1147": { + "loc": [-85.638278, 41.945516], + "id": "n1147" + }, + "n1148": { + "loc": [-85.637505, 41.945801], + "id": "n1148" + }, + "w255": { + "id": "w255", + "nodes": ["n1148", "n1149", "n1150", "n1151"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "bridge": "yes", + "layer": "1" + } + }, + "n1149": { + "loc": [-85.637327, 41.945857], + "id": "n1149" + }, + "n1150": { + "loc": [-85.637168, 41.945899], + "id": "n1150" + }, + "n1151": { + "loc": [-85.637017, 41.94593], + "id": "n1151" + }, + "n1152": { + "id": "n1152", + "loc": [-85.637185, 41.945938] + }, + "w256": { + "id": "w256", + "nodes": ["n1151", "n1153", "n1154", "n1155"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1153": { + "loc": [-85.63682, 41.945963], + "id": "n1153" + }, + "n1154": { + "loc": [-85.636639, 41.945984], + "id": "n1154" + }, + "n1155": { + "loc": [-85.636439, 41.945999], + "id": "n1155" + }, + "w257": { + "id": "w257", + "nodes": ["n1155", "n1156"], + "tags": { + "highway": "footway", + "footway": "sidewalk", + "bridge": "yes", + "layer": "1" + } + }, + "n1156": { + "loc": [-85.635801, 41.945999], + "id": "n1156" + }, + "n1157": { + "loc": [-85.635769, 41.945908], + "id": "n1157" + }, + "w258": { + "id": "w258", + "nodes": ["n1157", "n1158"], + "tags": { + "barrier": "retaining_wall" + } + }, + "n1158": { + "loc": [-85.635953, 41.946154], + "id": "n1158" + }, + "w259": { + "id": "w259", + "nodes": ["n1156", "n1161", "n1159", "n1160", "n719"], + "tags": { + "highway": "footway", + "footway": "sidewalk" + } + }, + "n1159": { + "loc": [-85.635472, 41.94598], + "id": "n1159" + }, + "n1160": { + "loc": [-85.635409, 41.945981], + "id": "n1160" + }, + "n1161": { + "id": "n1161", + "loc": [-85.635583, 41.945987] + }, + "n1162": { + "loc": [-85.636452, 41.945805], + "id": "n1162" + }, + "w260": { + "id": "w260", + "nodes": ["n1162", "n1163", "n1164", "n1165", "n1166", "n1167", "n1168", "n1169", "n1170", "n2139832636"], + "tags": { + "highway": "footway" + } + }, + "n1163": { + "loc": [-85.636425, 41.94582], + "id": "n1163" + }, + "n1164": { + "loc": [-85.636396, 41.945817], + "id": "n1164" + }, + "n1165": { + "loc": [-85.636368, 41.945797], + "id": "n1165" + }, + "n1166": { + "loc": [-85.636346, 41.945767], + "id": "n1166" + }, + "n1167": { + "loc": [-85.636307, 41.945745], + "id": "n1167" + }, + "n1168": { + "loc": [-85.636194, 41.94565], + "id": "n1168" + }, + "n1169": { + "loc": [-85.636121, 41.945579], + "id": "n1169" + }, + "n1170": { + "loc": [-85.635995, 41.945432], + "id": "n1170" + }, + "n1171": { + "loc": [-85.637564, 41.943538], + "id": "n1171" + }, + "w261": { + "id": "w261", + "nodes": ["n1171", "n1172", "n1173"], + "tags": { + "barrier": "wall" + } + }, + "n1172": { + "loc": [-85.63756, 41.943505], + "id": "n1172" + }, + "n1173": { + "loc": [-85.637435, 41.943489], + "id": "n1173" + }, + "n1174": { + "id": "n1174", + "loc": [-85.637093, 41.943556] + }, + "n1175": { + "loc": [-85.634836, 41.941574], + "id": "n1175" + }, + "w262": { + "tags": { + "natural": "wood" + }, + "id": "w262", + "nodes": ["n1175", "n1176", "n1177", "n1178", "n1179", "n1180", "n1181", "n1175"] + }, + "n1176": { + "loc": [-85.634692, 41.9415], + "id": "n1176" + }, + "n1177": { + "loc": [-85.634261, 41.941337], + "id": "n1177" + }, + "n1178": { + "loc": [-85.634208, 41.940962], + "id": "n1178" + }, + "n1179": { + "loc": [-85.635247, 41.940968], + "id": "n1179" + }, + "n1180": { + "loc": [-85.63514, 41.941205], + "id": "n1180" + }, + "n1181": { + "loc": [-85.634858, 41.941511], + "id": "n1181" + }, + "n1182": { + "id": "n1182", + "loc": [-85.630725, 41.943465] + }, + "n1183": { + "id": "n1183", + "loc": [-85.632591, 41.942826] + }, + "n1184": { + "id": "n1184", + "loc": [-85.634487, 41.941928] + }, + "n1185": { + "id": "n1185", + "loc": [-85.634499, 41.942056] + }, + "w263": { + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "asphalt", + "width": "3" + }, + "id": "w263", + "nodes": [ + "n2139858925", + "n1184", + "n2139858926", + "n1185", + "n2139858927", + "n2139858982", + "n2139858928", + "n480", + "n2139858929", + "n479", + "n478", + "n477", + "n2139858931", + "n2139858932", + "n2139858981", + "n2139858933", + "n619", + "n618", + "n2139858934", + "n2139858935", + "n2139858936", + "n617", + "n2139858937", + "n616", + "n2139858938", + "n829", + "n2139858939", + "n827", + "n828", + "n2139858940", + "n830", + "n2139858941", + "n826", + "n2139858942", + "n831", + "n2139858943", + "n832", + "n835", + "n834", + "n2140006437", + "n2139858964", + "n2139858944", + "n833", + "n2139858966", + "n2139858945", + "n836", + "n2139858946", + "n837", + "n2139858947", + "n838", + "n2139858948", + "n2139858949", + "n839", + "n2139858950", + "n840", + "n2139858951" + ] + }, + "n1186": { + "loc": [-85.63433, 41.943102], + "id": "n1186" + }, + "w264": { + "tags": { + "building": "yes" + }, + "id": "w264", + "nodes": ["n1186", "n1187", "n1188", "n1189", "n1186"] + }, + "n1187": { + "loc": [-85.634158, 41.943151], + "id": "n1187" + }, + "n1188": { + "loc": [-85.634107, 41.94305], + "id": "n1188" + }, + "n1189": { + "loc": [-85.634279, 41.943002], + "id": "n1189" + }, + "n1190": { + "loc": [-85.634362, 41.943762], + "id": "n1190" + }, + "w265": { + "tags": { + "building": "yes" + }, + "id": "w265", + "nodes": ["n1190", "n1191", "n1192", "n1193", "n1190"] + }, + "n1191": { + "loc": [-85.634331, 41.943731], + "id": "n1191" + }, + "n1192": { + "loc": [-85.634396, 41.943695], + "id": "n1192" + }, + "n1193": { + "loc": [-85.634426, 41.943726], + "id": "n1193" + }, + "n1194": { + "loc": [-85.621569, 41.956021], + "id": "n1194" + }, + "w266": { + "tags": { + "building": "yes" + }, + "id": "w266", + "nodes": ["n1194", "n1195", "n1196", "n1197", "n1198", "n1199", "n1200", "n1201", "n1194"] + }, + "n1195": { + "loc": [-85.621574, 41.956164], + "id": "n1195" + }, + "n1196": { + "loc": [-85.621489, 41.956165], + "id": "n1196" + }, + "n1197": { + "loc": [-85.621488, 41.956136], + "id": "n1197" + }, + "n1198": { + "loc": [-85.621372, 41.956139], + "id": "n1198" + }, + "n1199": { + "loc": [-85.621369, 41.956049], + "id": "n1199" + }, + "n1200": { + "loc": [-85.621493, 41.956047], + "id": "n1200" + }, + "n1201": { + "loc": [-85.621492, 41.956022], + "id": "n1201" + }, + "n1202": { + "id": "n1202", + "loc": [-85.623885, 41.954527] + }, + "n1203": { + "id": "n1203", + "loc": [-85.623905, 41.954415] + }, + "n1204": { + "id": "n1204", + "loc": [-85.623984, 41.95469] + }, + "n1205": { + "loc": [-85.630159, 41.958208], + "id": "n1205" + }, + "w267": { + "tags": { + "building": "house" + }, + "id": "w267", + "nodes": ["n1205", "n1206", "n1207", "n1208", "n1209", "n1210", "n1205"] + }, + "n1206": { + "loc": [-85.63002, 41.958208], + "id": "n1206" + }, + "n1207": { + "loc": [-85.630021, 41.95814], + "id": "n1207" + }, + "n1208": { + "loc": [-85.63, 41.95814], + "id": "n1208" + }, + "n1209": { + "loc": [-85.63, 41.958043], + "id": "n1209" + }, + "n1210": { + "loc": [-85.630159, 41.958043], + "id": "n1210" + }, + "n1211": { + "loc": [-85.630304, 41.957566], + "id": "n1211" + }, + "w268": { + "tags": { + "building": "house" + }, + "id": "w268", + "nodes": ["n1211", "n1212", "n1213", "n1214", "n1215", "n1216", "n1217", "n1218", "n1219", "n1220", "n1211"] + }, + "n1212": { + "loc": [-85.630303, 41.957684], + "id": "n1212" + }, + "n1213": { + "loc": [-85.630073, 41.957683], + "id": "n1213" + }, + "n1214": { + "loc": [-85.630072, 41.957721], + "id": "n1214" + }, + "n1215": { + "loc": [-85.629993, 41.95772], + "id": "n1215" + }, + "n1216": { + "loc": [-85.629993, 41.95768], + "id": "n1216" + }, + "n1217": { + "loc": [-85.629968, 41.95768], + "id": "n1217" + }, + "n1218": { + "loc": [-85.629969, 41.957588], + "id": "n1218" + }, + "n1219": { + "loc": [-85.630219, 41.95759], + "id": "n1219" + }, + "n1220": { + "loc": [-85.630219, 41.957566], + "id": "n1220" + }, + "n1221": { + "loc": [-85.630717, 41.957744], + "id": "n1221" + }, + "w269": { + "tags": { + "building": "house" + }, + "id": "w269", + "nodes": ["n1221", "n1225", "n1222", "n1223", "n1224", "n1221"] + }, + "n1222": { + "loc": [-85.630596, 41.957745], + "id": "n1222" + }, + "n1223": { + "loc": [-85.630598, 41.957553], + "id": "n1223" + }, + "n1224": { + "loc": [-85.630717, 41.957555], + "id": "n1224" + }, + "n1225": { + "loc": [-85.630609, 41.957745], + "id": "n1225" + }, + "w270": { + "id": "w270", + "nodes": ["n1225", "n1226", "n1227", "n1229", "n1228"], + "tags": { + "barrier": "fence" + } + }, + "n1226": { + "loc": [-85.63061, 41.957789], + "id": "n1226" + }, + "n1227": { + "loc": [-85.630327, 41.957791], + "id": "n1227" + }, + "n1228": { + "loc": [-85.630324, 41.95752], + "id": "n1228" + }, + "n1229": { + "loc": [-85.630325, 41.95756], + "id": "n1229" + }, + "w271": { + "id": "w271", + "nodes": ["n1229", "n1230"], + "tags": { + "barrier": "fence" + } + }, + "n1230": { + "loc": [-85.63057, 41.95756], + "id": "n1230" + }, + "n1231": { + "loc": [-85.63069, 41.958016], + "id": "n1231" + }, + "w272": { + "tags": { + "building": "house" + }, + "id": "w272", + "nodes": ["n1231", "n1232", "n1233", "n1234", "n1235", "n1236", "n1237", "n1238", "n1231"] + }, + "n1232": { + "loc": [-85.630586, 41.958017], + "id": "n1232" + }, + "n1233": { + "loc": [-85.630584, 41.957956], + "id": "n1233" + }, + "n1234": { + "loc": [-85.630614, 41.957956], + "id": "n1234" + }, + "n1235": { + "loc": [-85.630611, 41.957835], + "id": "n1235" + }, + "n1236": { + "loc": [-85.630737, 41.957833], + "id": "n1236" + }, + "n1237": { + "loc": [-85.630739, 41.957921], + "id": "n1237" + }, + "n1238": { + "loc": [-85.630688, 41.957922], + "id": "n1238" + }, + "n1239": { + "loc": [-85.630719, 41.958291], + "id": "n1239" + }, + "w273": { + "tags": { + "building": "house" + }, + "id": "w273", + "nodes": ["n1239", "n1240", "n1241", "n1242", "n1243", "n1244", "n1245", "n1246", "n1239"] + }, + "n1240": { + "loc": [-85.630592, 41.958291], + "id": "n1240" + }, + "n1241": { + "loc": [-85.630593, 41.958108], + "id": "n1241" + }, + "n1242": { + "loc": [-85.630701, 41.958109], + "id": "n1242" + }, + "n1243": { + "loc": [-85.6307, 41.958173], + "id": "n1243" + }, + "n1244": { + "loc": [-85.630711, 41.958173], + "id": "n1244" + }, + "n1245": { + "loc": [-85.630711, 41.958233], + "id": "n1245" + }, + "n1246": { + "loc": [-85.630719, 41.958233], + "id": "n1246" + }, + "n1247": { + "loc": [-85.630523, 41.958329], + "id": "n1247" + }, + "w274": { + "tags": { + "building": "house" + }, + "id": "w274", + "nodes": ["n1247", "n1248", "n1249", "n1250", "n1247"] + }, + "n1248": { + "loc": [-85.630388, 41.958329], + "id": "n1248" + }, + "n1249": { + "loc": [-85.630387, 41.958262], + "id": "n1249" + }, + "n1250": { + "loc": [-85.630523, 41.958261], + "id": "n1250" + }, + "n1251": { + "loc": [-85.63072, 41.958636], + "id": "n1251" + }, + "w275": { + "tags": { + "building": "house" + }, + "id": "w275", + "nodes": ["n1251", "n1252", "n1253", "n1254", "n1255", "n1256", "n1251"] + }, + "n1252": { + "loc": [-85.630721, 41.958709], + "id": "n1252" + }, + "n1253": { + "loc": [-85.630503, 41.958712], + "id": "n1253" + }, + "n1254": { + "loc": [-85.630498, 41.958511], + "id": "n1254" + }, + "n1255": { + "loc": [-85.630635, 41.95851], + "id": "n1255" + }, + "n1256": { + "loc": [-85.630638, 41.958636], + "id": "n1256" + }, + "n1257": { + "loc": [-85.630437, 41.958822], + "id": "n1257" + }, + "w276": { + "tags": { + "building": "shed" + }, + "id": "w276", + "nodes": ["n1257", "n1258", "n1259", "n1260", "n1257"] + }, + "n1258": { + "loc": [-85.630437, 41.958849], + "id": "n1258" + }, + "n1259": { + "loc": [-85.630393, 41.958849], + "id": "n1259" + }, + "n1260": { + "loc": [-85.630393, 41.958822], + "id": "n1260" + }, + "n1261": { + "loc": [-85.630605, 41.959102], + "id": "n1261" + }, + "w277": { + "tags": { + "building": "house" + }, + "id": "w277", + "nodes": ["n1261", "n1262", "n1263", "n1264", "n1265", "n1266", "n1267", "n1268", "n1261"] + }, + "n1262": { + "loc": [-85.63049, 41.959104], + "id": "n1262" + }, + "n1263": { + "loc": [-85.630487, 41.958996], + "id": "n1263" + }, + "n1264": { + "loc": [-85.630462, 41.958996], + "id": "n1264" + }, + "n1265": { + "loc": [-85.63046, 41.958922], + "id": "n1265" + }, + "n1266": { + "loc": [-85.630562, 41.958921], + "id": "n1266" + }, + "n1267": { + "loc": [-85.630564, 41.958992], + "id": "n1267" + }, + "n1268": { + "loc": [-85.630602, 41.958992], + "id": "n1268" + }, + "n1269": { + "loc": [-85.630126, 41.957096], + "id": "n1269" + }, + "w278": { + "tags": { + "building": "house" + }, + "id": "w278", + "nodes": ["n1269", "n1270", "n1271", "n1272", "n1273", "n1274", "n1284", "n1269"] + }, + "n1270": { + "loc": [-85.630129, 41.957283], + "id": "n1270" + }, + "n1271": { + "loc": [-85.629993, 41.957284], + "id": "n1271" + }, + "n1272": { + "loc": [-85.629992, 41.957216], + "id": "n1272" + }, + "n1273": { + "loc": [-85.630015, 41.957215], + "id": "n1273" + }, + "n1274": { + "loc": [-85.630013, 41.957097], + "id": "n1274" + }, + "n1275": { + "loc": [-85.630211, 41.956592], + "id": "n1275" + }, + "w279": { + "tags": { + "building": "house" + }, + "id": "w279", + "nodes": ["n1275", "n1276", "n1277", "n1278", "n1279", "n1280", "n1275"] + }, + "n1276": { + "loc": [-85.630211, 41.956676], + "id": "n1276" + }, + "n1277": { + "loc": [-85.630162, 41.956676], + "id": "n1277" + }, + "n1278": { + "loc": [-85.630162, 41.95676], + "id": "n1278" + }, + "n1279": { + "loc": [-85.630037, 41.956761], + "id": "n1279" + }, + "n1280": { + "loc": [-85.630037, 41.956592], + "id": "n1280" + }, + "n1281": { + "loc": [-85.630309, 41.95653], + "id": "n1281" + }, + "w280": { + "id": "w280", + "nodes": ["n1281", "n1282", "n1283", "n1284"], + "tags": { + "barrier": "fence" + } + }, + "n1282": { + "loc": [-85.630326, 41.957065], + "id": "n1282" + }, + "n1283": { + "loc": [-85.630118, 41.957065], + "id": "n1283" + }, + "n1284": { + "loc": [-85.630119, 41.957096], + "id": "n1284" + }, + "n1285": { + "loc": [-85.63067, 41.957307], + "id": "n1285" + }, + "w281": { + "tags": { + "building": "house" + }, + "id": "w281", + "nodes": ["n1285", "n1286", "n1287", "n1288", "n1285"] + }, + "n1286": { + "loc": [-85.630536, 41.957308], + "id": "n1286" + }, + "n1287": { + "loc": [-85.630533, 41.957111], + "id": "n1287" + }, + "n1288": { + "loc": [-85.630667, 41.95711], + "id": "n1288" + }, + "n1289": { + "loc": [-85.630676, 41.956808], + "id": "n1289" + }, + "w282": { + "tags": { + "building": "house" + }, + "id": "w282", + "nodes": ["n1289", "n1290", "n1291", "n1292", "n1293", "n1294", "n1295", "n1296", "n1289"] + }, + "n1290": { + "loc": [-85.630551, 41.956808], + "id": "n1290" + }, + "n1291": { + "loc": [-85.630552, 41.956982], + "id": "n1291" + }, + "n1292": { + "loc": [-85.63059, 41.956982], + "id": "n1292" + }, + "n1293": { + "loc": [-85.63059, 41.957001], + "id": "n1293" + }, + "n1294": { + "loc": [-85.630692, 41.957001], + "id": "n1294" + }, + "n1295": { + "loc": [-85.630692, 41.956936], + "id": "n1295" + }, + "n1296": { + "loc": [-85.630676, 41.956936], + "id": "n1296" + }, + "n1297": { + "loc": [-85.630496, 41.956889], + "id": "n1297" + }, + "w283": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w283", + "nodes": ["n1297", "n1298", "n1299", "n1300", "n1301", "n1302", "n1297"] + }, + "n1298": { + "loc": [-85.630501, 41.956947], + "id": "n1298" + }, + "n1299": { + "loc": [-85.630377, 41.956953], + "id": "n1299" + }, + "n1300": { + "loc": [-85.630359, 41.956938], + "id": "n1300" + }, + "n1301": { + "loc": [-85.630359, 41.956912], + "id": "n1301" + }, + "n1302": { + "loc": [-85.63038, 41.956894], + "id": "n1302" + }, + "n1303": { + "loc": [-85.630679, 41.956747], + "id": "n1303" + }, + "w284": { + "tags": { + "building": "house" + }, + "id": "w284", + "nodes": ["n1303", "n1304", "n1305", "n1306", "n1307", "n1308", "n1309", "n1310", "n1311", "n1312", "n1303"] + }, + "n1304": { + "loc": [-85.630572, 41.956748], + "id": "n1304" + }, + "n1305": { + "loc": [-85.63057, 41.956668], + "id": "n1305" + }, + "n1306": { + "loc": [-85.630501, 41.956669], + "id": "n1306" + }, + "n1307": { + "loc": [-85.630499, 41.95659], + "id": "n1307" + }, + "n1308": { + "loc": [-85.630565, 41.956589], + "id": "n1308" + }, + "n1309": { + "loc": [-85.630564, 41.956541], + "id": "n1309" + }, + "n1310": { + "loc": [-85.630686, 41.956539], + "id": "n1310" + }, + "n1311": { + "loc": [-85.630688, 41.956631], + "id": "n1311" + }, + "n1312": { + "loc": [-85.630676, 41.956631], + "id": "n1312" + }, + "n1313": { + "loc": [-85.630686, 41.956487], + "id": "n1313" + }, + "w285": { + "tags": { + "building": "house" + }, + "id": "w285", + "nodes": ["n1313", "n1314", "n1315", "n1316", "n1313"] + }, + "n1314": { + "loc": [-85.63059, 41.956487], + "id": "n1314" + }, + "n1315": { + "loc": [-85.63059, 41.956396], + "id": "n1315" + }, + "n1316": { + "loc": [-85.630686, 41.956396], + "id": "n1316" + }, + "n1317": { + "loc": [-85.630643, 41.9563], + "id": "n1317" + }, + "w286": { + "tags": { + "building": "house" + }, + "id": "w286", + "nodes": [ + "n1317", + "n1318", + "n1319", + "n1320", + "n1321", + "n1322", + "n1323", + "n1324", + "n1325", + "n1326", + "n1327", + "n1328", + "n1329", + "n1330", + "n1317" + ] + }, + "n1318": { + "loc": [-85.630548, 41.956301], + "id": "n1318" + }, + "n1319": { + "loc": [-85.630545, 41.956217], + "id": "n1319" + }, + "n1320": { + "loc": [-85.630529, 41.956214], + "id": "n1320" + }, + "n1321": { + "loc": [-85.630521, 41.956202], + "id": "n1321" + }, + "n1322": { + "loc": [-85.63052, 41.95618], + "id": "n1322" + }, + "n1323": { + "loc": [-85.630527, 41.956169], + "id": "n1323" + }, + "n1324": { + "loc": [-85.630544, 41.956163], + "id": "n1324" + }, + "n1325": { + "loc": [-85.630543, 41.956094], + "id": "n1325" + }, + "n1326": { + "loc": [-85.630641, 41.956093], + "id": "n1326" + }, + "n1327": { + "loc": [-85.630642, 41.956134], + "id": "n1327" + }, + "n1328": { + "loc": [-85.630656, 41.956134], + "id": "n1328" + }, + "n1329": { + "loc": [-85.630657, 41.956252], + "id": "n1329" + }, + "n1330": { + "loc": [-85.630643, 41.956252], + "id": "n1330" + }, + "n1331": { + "loc": [-85.630409, 41.956044], + "id": "n1331" + }, + "w287": { + "tags": { + "building": "yes" + }, + "id": "w287", + "nodes": ["n1331", "n1332", "n1333", "n1334", "n1465", "n1335", "n1336", "n1331"] + }, + "n1332": { + "loc": [-85.630409, 41.956075], + "id": "n1332" + }, + "n1333": { + "loc": [-85.630195, 41.956078], + "id": "n1333" + }, + "n1334": { + "loc": [-85.630195, 41.9561], + "id": "n1334" + }, + "n1335": { + "loc": [-85.630088, 41.956101], + "id": "n1335" + }, + "n1336": { + "loc": [-85.630087, 41.956048], + "id": "n1336" + }, + "n1337": { + "loc": [-85.630345, 41.956114], + "id": "n1337" + }, + "w288": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w288", + "nodes": [ + "n1349", + "n1350", + "n1351", + "n1352", + "n1353", + "n1354", + "n1355", + "n1337", + "n1338", + "n1341", + "n1342", + "n1343", + "n1344", + "n1345", + "n1346", + "n1347", + "n1348", + "n1339", + "n1340", + "n1349" + ] + }, + "n1338": { + "loc": [-85.630328, 41.956113], + "id": "n1338" + }, + "n1339": { + "loc": [-85.63034, 41.956189], + "id": "n1339" + }, + "n1340": { + "loc": [-85.630355, 41.956185], + "id": "n1340" + }, + "n1341": { + "loc": [-85.630311, 41.956117], + "id": "n1341" + }, + "n1342": { + "loc": [-85.630297, 41.956125], + "id": "n1342" + }, + "n1343": { + "loc": [-85.630287, 41.956136], + "id": "n1343" + }, + "n1344": { + "loc": [-85.630283, 41.956149], + "id": "n1344" + }, + "n1345": { + "loc": [-85.630285, 41.956162], + "id": "n1345" + }, + "n1346": { + "loc": [-85.630293, 41.956174], + "id": "n1346" + }, + "n1347": { + "loc": [-85.630306, 41.956183], + "id": "n1347" + }, + "n1348": { + "loc": [-85.630322, 41.956188], + "id": "n1348" + }, + "n1349": { + "loc": [-85.630368, 41.956179], + "id": "n1349" + }, + "n1350": { + "loc": [-85.630378, 41.95617], + "id": "n1350" + }, + "n1351": { + "loc": [-85.630384, 41.956159], + "id": "n1351" + }, + "n1352": { + "loc": [-85.630385, 41.956147], + "id": "n1352" + }, + "n1353": { + "loc": [-85.630381, 41.956136], + "id": "n1353" + }, + "n1354": { + "loc": [-85.630372, 41.956126], + "id": "n1354" + }, + "n1355": { + "loc": [-85.63036, 41.956118], + "id": "n1355" + }, + "n1356": { + "loc": [-85.630776, 41.956041], + "id": "n1356" + }, + "w289": { + "id": "w289", + "nodes": ["n1356", "n1331"], + "tags": { + "barrier": "fence" + } + }, + "n1357": { + "loc": [-85.630195, 41.956036], + "id": "n1357" + }, + "w290": { + "tags": { + "building": "shed" + }, + "id": "w290", + "nodes": ["n1357", "n1358", "n1359", "n1360", "n1357"] + }, + "n1358": { + "loc": [-85.630137, 41.956037], + "id": "n1358" + }, + "n1359": { + "loc": [-85.630136, 41.956006], + "id": "n1359" + }, + "n1360": { + "loc": [-85.630194, 41.956005], + "id": "n1360" + }, + "w291": { + "id": "w291", + "nodes": ["n1358", "n1361", "n1362"], + "tags": { + "barrier": "fence" + } + }, + "n1361": { + "loc": [-85.629864, 41.956039], + "id": "n1361" + }, + "n1362": { + "loc": [-85.629864, 41.955862], + "id": "n1362" + }, + "n1363": { + "loc": [-85.629541, 41.958291], + "id": "n1363" + }, + "w292": { + "tags": { + "building": "house" + }, + "id": "w292", + "nodes": ["n1363", "n1364", "n1365", "n1366", "n1367", "n1368", "n1363"] + }, + "n1364": { + "loc": [-85.629419, 41.958292], + "id": "n1364" + }, + "n1365": { + "loc": [-85.629417, 41.958168], + "id": "n1365" + }, + "n1366": { + "loc": [-85.629445, 41.958168], + "id": "n1366" + }, + "n1367": { + "loc": [-85.629444, 41.958109], + "id": "n1367" + }, + "n1368": { + "loc": [-85.629537, 41.958108], + "id": "n1368" + }, + "n1369": { + "loc": [-85.629351, 41.958136], + "id": "n1369" + }, + "w293": { + "tags": { + "leisure": "swimming_pool" + }, + "id": "w293", + "nodes": ["n1369", "n1370", "n1371", "n1372", "n1373", "n1374", "n1369"] + }, + "n1370": { + "loc": [-85.629352, 41.958202], + "id": "n1370" + }, + "n1371": { + "loc": [-85.629365, 41.958202], + "id": "n1371" + }, + "n1372": { + "loc": [-85.629365, 41.958223], + "id": "n1372" + }, + "n1373": { + "loc": [-85.629291, 41.958224], + "id": "n1373" + }, + "n1374": { + "loc": [-85.62929, 41.958137], + "id": "n1374" + }, + "w294": { + "id": "w294", + "nodes": ["n1367", "n1375", "n1376", "n1377"], + "tags": { + "barrier": "fence" + } + }, + "n1375": { + "loc": [-85.629443, 41.958073], + "id": "n1375" + }, + "n1376": { + "loc": [-85.629252, 41.958075], + "id": "n1376" + }, + "n1377": { + "loc": [-85.629253, 41.95827], + "id": "n1377" + }, + "n1378": { + "loc": [-85.629566, 41.957585], + "id": "n1378" + }, + "w295": { + "tags": { + "building": "house" + }, + "id": "w295", + "nodes": ["n1378", "n1379", "n1380", "n1381", "n1378"] + }, + "n1379": { + "loc": [-85.629566, 41.957692], + "id": "n1379" + }, + "n1380": { + "loc": [-85.629281, 41.957693], + "id": "n1380" + }, + "n1381": { + "loc": [-85.62928, 41.957585], + "id": "n1381" + }, + "n1382": { + "loc": [-85.629004, 41.957599], + "id": "n1382" + }, + "w296": { + "tags": { + "building": "house" + }, + "id": "w296", + "nodes": ["n1382", "n1383", "n1384", "n1385", "n1386", "n1387", "n1382"] + }, + "n1383": { + "loc": [-85.629004, 41.957682], + "id": "n1383" + }, + "n1384": { + "loc": [-85.628902, 41.957682], + "id": "n1384" + }, + "n1385": { + "loc": [-85.628902, 41.957723], + "id": "n1385" + }, + "n1386": { + "loc": [-85.628731, 41.957724], + "id": "n1386" + }, + "n1387": { + "loc": [-85.628731, 41.9576], + "id": "n1387" + }, + "n1388": { + "loc": [-85.62836, 41.957679], + "id": "n1388" + }, + "w297": { + "tags": { + "building": "house" + }, + "id": "w297", + "nodes": ["n1388", "n1389", "n1390", "n1391", "n1392", "n1393", "n1388"] + }, + "n1389": { + "loc": [-85.628359, 41.957759], + "id": "n1389" + }, + "n1390": { + "loc": [-85.628062, 41.957757], + "id": "n1390" + }, + "n1391": { + "loc": [-85.628063, 41.957657], + "id": "n1391" + }, + "n1392": { + "loc": [-85.628198, 41.957657], + "id": "n1392" + }, + "n1393": { + "loc": [-85.628198, 41.957678], + "id": "n1393" + }, + "n1394": { + "loc": [-85.627775, 41.958095], + "id": "n1394" + }, + "w298": { + "tags": { + "building": "house" + }, + "id": "w298", + "nodes": ["n1394", "n1395", "n1396", "n1397", "n1394"] + }, + "n1395": { + "loc": [-85.627608, 41.958095], + "id": "n1395" + }, + "n1396": { + "loc": [-85.627606, 41.957829], + "id": "n1396" + }, + "n1397": { + "loc": [-85.627774, 41.957829], + "id": "n1397" + }, + "n1398": { + "loc": [-85.626816, 41.957636], + "id": "n1398" + }, + "w299": { + "tags": { + "leisure": "swimming_pool", + "access": "private3" + }, + "id": "w299", + "nodes": ["n1398", "n1399", "n1400", "n1401", "n1398"] + }, + "n1399": { + "loc": [-85.626787, 41.957681], + "id": "n1399" + }, + "n1400": { + "loc": [-85.626673, 41.95764], + "id": "n1400" + }, + "n1401": { + "loc": [-85.626703, 41.957594], + "id": "n1401" + }, + "n1402": { + "loc": [-85.62694, 41.95752], + "id": "n1402" + }, + "w300": { + "tags": { + "building": "house" + }, + "id": "w300", + "nodes": ["n1402", "n1403", "n1404", "n1405", "n1406", "n1407", "n1408", "n1409", "n1410", "n1411", "n1412", "n1413", "n1402"] + }, + "n1403": { + "loc": [-85.62688, 41.957611], + "id": "n1403" + }, + "n1404": { + "loc": [-85.626798, 41.957582], + "id": "n1404" + }, + "n1405": { + "loc": [-85.626793, 41.95759], + "id": "n1405" + }, + "n1406": { + "loc": [-85.626657, 41.95754], + "id": "n1406" + }, + "n1407": { + "loc": [-85.626666, 41.957526], + "id": "n1407" + }, + "n1408": { + "loc": [-85.626584, 41.957497], + "id": "n1408" + }, + "n1409": { + "loc": [-85.626638, 41.957415], + "id": "n1409" + }, + "n1410": { + "loc": [-85.626731, 41.957449], + "id": "n1410" + }, + "n1411": { + "loc": [-85.626725, 41.957457], + "id": "n1411" + }, + "n1412": { + "loc": [-85.626843, 41.9575], + "id": "n1412" + }, + "n1413": { + "loc": [-85.626851, 41.957487], + "id": "n1413" + }, + "n1414": { + "loc": [-85.626579, 41.957521], + "id": "n1414" + }, + "w301": { + "tags": { + "building": "garage" + }, + "id": "w301", + "nodes": ["n1414", "n1415", "n1416", "n1417", "n1414"] + }, + "n1415": { + "loc": [-85.626537, 41.957587], + "id": "n1415" + }, + "n1416": { + "loc": [-85.626427, 41.957551], + "id": "n1416" + }, + "n1417": { + "loc": [-85.626468, 41.957483], + "id": "n1417" + }, + "w302": { + "id": "w302", + "nodes": ["n1406", "n1418", "n1419", "n1403"], + "tags": { + "barrier": "fence" + } + }, + "n1418": { + "loc": [-85.626592, 41.957639], + "id": "n1418" + }, + "n1419": { + "loc": [-85.626807, 41.957713], + "id": "n1419" + }, + "n1420": { + "id": "n1420", + "loc": [-85.627129, 41.957401] + }, + "n1421": { + "id": "n1421", + "loc": [-85.627209, 41.95742] + }, + "n1422": { + "id": "n1422", + "loc": [-85.627302, 41.957435] + }, + "n1423": { + "loc": [-85.629566, 41.957048], + "id": "n1423" + }, + "w303": { + "tags": { + "building": "house" + }, + "id": "w303", + "nodes": ["n1423", "n1424", "n1425", "n1426", "n1427", "n1428", "n1429", "n1430", "n1431", "n1432", "n1423"] + }, + "n1424": { + "loc": [-85.629568, 41.957215], + "id": "n1424" + }, + "n1425": { + "loc": [-85.629383, 41.957216], + "id": "n1425" + }, + "n1426": { + "loc": [-85.629384, 41.95727], + "id": "n1426" + }, + "n1427": { + "loc": [-85.629231, 41.957271], + "id": "n1427" + }, + "n1428": { + "loc": [-85.62923, 41.957198], + "id": "n1428" + }, + "n1429": { + "loc": [-85.629322, 41.957198], + "id": "n1429" + }, + "n1430": { + "loc": [-85.629321, 41.957108], + "id": "n1430" + }, + "n1431": { + "loc": [-85.629441, 41.957108], + "id": "n1431" + }, + "n1432": { + "loc": [-85.62944, 41.957049], + "id": "n1432" + }, + "n1433": { + "loc": [-85.629337, 41.957018], + "id": "n1433" + }, + "w304": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w304", + "nodes": [ + "n1433", + "n1434", + "n1435", + "n1446", + "n1436", + "n1437", + "n1438", + "n1439", + "n1444", + "n1440", + "n1441", + "n1445", + "n1442", + "n1443", + "n1433" + ] + }, + "n1434": { + "loc": [-85.629366, 41.957028], + "id": "n1434" + }, + "n1435": { + "loc": [-85.629375, 41.957044], + "id": "n1435" + }, + "n1436": { + "loc": [-85.629354, 41.957071], + "id": "n1436" + }, + "n1437": { + "loc": [-85.629317, 41.957071], + "id": "n1437" + }, + "n1438": { + "loc": [-85.62929, 41.957074], + "id": "n1438" + }, + "n1439": { + "loc": [-85.62927, 41.957084], + "id": "n1439" + }, + "n1440": { + "loc": [-85.629232, 41.957081], + "id": "n1440" + }, + "n1441": { + "loc": [-85.629222, 41.957057], + "id": "n1441" + }, + "n1442": { + "loc": [-85.629259, 41.957025], + "id": "n1442" + }, + "n1443": { + "loc": [-85.629293, 41.957017], + "id": "n1443" + }, + "n1444": { + "id": "n1444", + "loc": [-85.629251, 41.957085] + }, + "n1445": { + "id": "n1445", + "loc": [-85.629235, 41.957041] + }, + "n1446": { + "id": "n1446", + "loc": [-85.62937, 41.95706] + }, + "n1447": { + "loc": [-85.629531, 41.956909], + "id": "n1447" + }, + "w305": { + "tags": { + "building": "house" + }, + "id": "w305", + "nodes": ["n1447", "n1448", "n1452", "n1453", "n1454", "n1451", "n1449", "n1450", "n1447"] + }, + "n1448": { + "loc": [-85.629408, 41.956909], + "id": "n1448" + }, + "n1449": { + "loc": [-85.629402, 41.956681], + "id": "n1449" + }, + "n1450": { + "loc": [-85.62953, 41.956681], + "id": "n1450" + }, + "n1451": { + "id": "n1451", + "loc": [-85.629402, 41.956728] + }, + "n1452": { + "id": "n1452", + "loc": [-85.629408, 41.956845] + }, + "n1453": { + "id": "n1453", + "loc": [-85.629385, 41.956845] + }, + "n1454": { + "id": "n1454", + "loc": [-85.629384, 41.956728] + }, + "n1455": { + "loc": [-85.629063, 41.956973], + "id": "n1455" + }, + "w306": { + "tags": { + "building": "shed" + }, + "id": "w306", + "nodes": ["n1455", "n1456", "n1457", "n1458", "n1455"] + }, + "n1456": { + "loc": [-85.629064, 41.957009], + "id": "n1456" + }, + "n1457": { + "loc": [-85.62902, 41.957009], + "id": "n1457" + }, + "n1458": { + "loc": [-85.629019, 41.956973], + "id": "n1458" + }, + "n1459": { + "loc": [-85.629136, 41.956633], + "id": "n1459" + }, + "w307": { + "tags": { + "building": "shed" + }, + "id": "w307", + "nodes": ["n1459", "n1460", "n1461", "n1462", "n1459"] + }, + "n1460": { + "loc": [-85.629084, 41.956632], + "id": "n1460" + }, + "n1461": { + "loc": [-85.629084, 41.956605], + "id": "n1461" + }, + "n1462": { + "loc": [-85.629136, 41.956605], + "id": "n1462" + }, + "n1463": { + "loc": [-85.629153, 41.956657], + "id": "n1463" + }, + "w308": { + "id": "w308", + "nodes": ["n1463", "n1464"], + "tags": { + "barrier": "fence" + } + }, + "n1464": { + "loc": [-85.627914, 41.956661], + "id": "n1464" + }, + "n1465": { + "loc": [-85.630096, 41.956101], + "id": "n1465" + }, + "w309": { + "id": "w309", + "nodes": ["n1465", "n1466", "n1467", "n1468"], + "tags": { + "barrier": "fence" + } + }, + "n1466": { + "loc": [-85.630097, 41.95612], + "id": "n1466" + }, + "n1467": { + "loc": [-85.630011, 41.956121], + "id": "n1467" + }, + "n1468": { + "loc": [-85.630015, 41.956374], + "id": "n1468" + }, + "n1469": { + "loc": [-85.629148, 41.95626], + "id": "n1469" + }, + "w310": { + "id": "w310", + "nodes": ["n1469", "n1481", "n1463"], + "tags": { + "barrier": "hedge" + } + }, + "n1470": { + "loc": [-85.629527, 41.956591], + "id": "n1470" + }, + "w311": { + "tags": { + "building": "house" + }, + "id": "w311", + "nodes": ["n1470", "n1471", "n1472", "n1473", "n1474", "n1475", "n1480", "n1476", "n1477", "n1478", "n1479", "n1470"] + }, + "n1471": { + "loc": [-85.629405, 41.956591], + "id": "n1471" + }, + "n1472": { + "loc": [-85.629405, 41.956459], + "id": "n1472" + }, + "n1473": { + "loc": [-85.629369, 41.956459], + "id": "n1473" + }, + "n1474": { + "loc": [-85.629369, 41.956424], + "id": "n1474" + }, + "n1475": { + "loc": [-85.629413, 41.956424], + "id": "n1475" + }, + "n1476": { + "loc": [-85.629414, 41.956326], + "id": "n1476" + }, + "n1477": { + "loc": [-85.629522, 41.956326], + "id": "n1477" + }, + "n1478": { + "loc": [-85.629522, 41.956487], + "id": "n1478" + }, + "n1479": { + "loc": [-85.629527, 41.956487], + "id": "n1479" + }, + "n1480": { + "loc": [-85.629414, 41.95634], + "id": "n1480" + }, + "w312": { + "id": "w312", + "nodes": ["n1480", "n1481"], + "tags": { + "barrier": "wall" + } + }, + "n1481": { + "loc": [-85.629149, 41.956338], + "id": "n1481" + }, + "n1482": { + "loc": [-85.62931, 41.956531], + "id": "n1482" + }, + "w313": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w313", + "nodes": ["n1482", "n1483", "n1484", "n1485", "n1486", "n1487", "n1488", "n1489", "n1490", "n1491", "n1482"] + }, + "n1483": { + "loc": [-85.629291, 41.95655], + "id": "n1483" + }, + "n1484": { + "loc": [-85.629255, 41.95655], + "id": "n1484" + }, + "n1485": { + "loc": [-85.629236, 41.956533], + "id": "n1485" + }, + "n1486": { + "loc": [-85.629237, 41.956461], + "id": "n1486" + }, + "n1487": { + "loc": [-85.629257, 41.956445], + "id": "n1487" + }, + "n1488": { + "loc": [-85.629257, 41.956428], + "id": "n1488" + }, + "n1489": { + "loc": [-85.629287, 41.956428], + "id": "n1489" + }, + "n1490": { + "loc": [-85.629287, 41.956445], + "id": "n1490" + }, + "n1491": { + "loc": [-85.62931, 41.95646], + "id": "n1491" + }, + "n1492": { + "loc": [-85.629049, 41.956425], + "id": "n1492" + }, + "w314": { + "tags": { + "building": "house" + }, + "id": "w314", + "nodes": [ + "n1492", + "n1493", + "n1494", + "n1495", + "n1496", + "n1497", + "n1498", + "n1499", + "n1500", + "n1501", + "n1502", + "n1503", + "n1504", + "n1505", + "n1492" + ] + }, + "n1493": { + "loc": [-85.628907, 41.956427], + "id": "n1493" + }, + "n1494": { + "loc": [-85.628907, 41.956455], + "id": "n1494" + }, + "n1495": { + "loc": [-85.628841, 41.956455], + "id": "n1495" + }, + "n1496": { + "loc": [-85.62884, 41.956424], + "id": "n1496" + }, + "n1497": { + "loc": [-85.628764, 41.956425], + "id": "n1497" + }, + "n1498": { + "loc": [-85.628762, 41.956323], + "id": "n1498" + }, + "n1499": { + "loc": [-85.628808, 41.956323], + "id": "n1499" + }, + "n1500": { + "loc": [-85.628808, 41.956314], + "id": "n1500" + }, + "n1501": { + "loc": [-85.628911, 41.956313], + "id": "n1501" + }, + "n1502": { + "loc": [-85.628911, 41.956322], + "id": "n1502" + }, + "n1503": { + "loc": [-85.62896, 41.956322], + "id": "n1503" + }, + "n1504": { + "loc": [-85.62896, 41.956348], + "id": "n1504" + }, + "n1505": { + "loc": [-85.629047, 41.956347], + "id": "n1505" + }, + "n1506": { + "loc": [-85.628893, 41.957263], + "id": "n1506" + }, + "w315": { + "tags": { + "building": "house" + }, + "id": "w315", + "nodes": ["n1506", "n1507", "n1508", "n1509", "n1510", "n1511", "n1512", "n1513", "n1514", "n1515", "n1506"] + }, + "n1507": { + "loc": [-85.628788, 41.957264], + "id": "n1507" + }, + "n1508": { + "loc": [-85.628786, 41.95711], + "id": "n1508" + }, + "n1509": { + "loc": [-85.628894, 41.957109], + "id": "n1509" + }, + "n1510": { + "loc": [-85.628893, 41.957075], + "id": "n1510" + }, + "n1511": { + "loc": [-85.628965, 41.957075], + "id": "n1511" + }, + "n1512": { + "loc": [-85.628965, 41.957111], + "id": "n1512" + }, + "n1513": { + "loc": [-85.629035, 41.95711], + "id": "n1513" + }, + "n1514": { + "loc": [-85.629036, 41.957209], + "id": "n1514" + }, + "n1515": { + "loc": [-85.628893, 41.95721], + "id": "n1515" + }, + "n1516": { + "loc": [-85.631348, 41.95773], + "id": "n1516" + }, + "w316": { + "tags": { + "building": "house" + }, + "id": "w316", + "nodes": ["n1516", "n1517", "n1518", "n1519", "n1520", "n1521", "n1522", "n1523", "n1516"] + }, + "n1517": { + "loc": [-85.631101, 41.957732], + "id": "n1517" + }, + "n1518": { + "loc": [-85.631099, 41.957558], + "id": "n1518" + }, + "n1519": { + "loc": [-85.63123, 41.957557], + "id": "n1519" + }, + "n1520": { + "loc": [-85.631231, 41.957618], + "id": "n1520" + }, + "n1521": { + "loc": [-85.63129, 41.957618], + "id": "n1521" + }, + "n1522": { + "loc": [-85.63129, 41.957651], + "id": "n1522" + }, + "n1523": { + "loc": [-85.631346, 41.957651], + "id": "n1523" + }, + "n1524": { + "loc": [-85.631366, 41.95802], + "id": "n1524" + }, + "w317": { + "tags": { + "building": "house" + }, + "id": "w317", + "nodes": ["n1524", "n1525", "n1526", "n1527", "n1528", "n1529", "n1530", "n1531", "n1524"] + }, + "n1525": { + "loc": [-85.631141, 41.958021], + "id": "n1525" + }, + "n1526": { + "loc": [-85.63114, 41.957943], + "id": "n1526" + }, + "n1527": { + "loc": [-85.631167, 41.957943], + "id": "n1527" + }, + "n1528": { + "loc": [-85.631166, 41.957808], + "id": "n1528" + }, + "n1529": { + "loc": [-85.631301, 41.957807], + "id": "n1529" + }, + "n1530": { + "loc": [-85.631302, 41.95789], + "id": "n1530" + }, + "n1531": { + "loc": [-85.631364, 41.95789], + "id": "n1531" + }, + "n1532": { + "loc": [-85.631539, 41.957754], + "id": "n1532" + }, + "w318": { + "id": "w318", + "nodes": ["n1532", "n1533"], + "tags": { + "barrier": "fence" + } + }, + "n1533": { + "loc": [-85.631069, 41.957756], + "id": "n1533" + }, + "n1534": { + "loc": [-85.631536, 41.957518], + "id": "n1534" + }, + "w319": { + "id": "w319", + "nodes": ["n1534", "n1532", "n1535"], + "tags": { + "barrier": "fence" + } + }, + "n1535": { + "loc": [-85.631543, 41.957995], + "id": "n1535" + }, + "n1536": { + "loc": [-85.631531, 41.957748], + "id": "n1536" + }, + "w320": { + "tags": { + "building": "shed" + }, + "id": "w320", + "nodes": ["n1536", "n1537", "n1538", "n1539", "n1536"] + }, + "n1537": { + "loc": [-85.631485, 41.957748], + "id": "n1537" + }, + "n1538": { + "loc": [-85.631484, 41.957698], + "id": "n1538" + }, + "n1539": { + "loc": [-85.631531, 41.957698], + "id": "n1539" + }, + "n1540": { + "loc": [-85.631586, 41.957742], + "id": "n1540" + }, + "w321": { + "tags": { + "building": "shed" + }, + "id": "w321", + "nodes": ["n1540", "n1541", "n1542", "n1543", "n1540"] + }, + "n1541": { + "loc": [-85.63155, 41.957742], + "id": "n1541" + }, + "n1542": { + "loc": [-85.631551, 41.957702], + "id": "n1542" + }, + "n1543": { + "loc": [-85.631587, 41.957702], + "id": "n1543" + }, + "n1544": { + "loc": [-85.631534, 41.95807], + "id": "n1544" + }, + "w322": { + "tags": { + "building": "shed" + }, + "id": "w322", + "nodes": ["n1544", "n1545", "n1546", "n1547", "n1544"] + }, + "n1545": { + "loc": [-85.631534, 41.958097], + "id": "n1545" + }, + "n1546": { + "loc": [-85.631491, 41.958097], + "id": "n1546" + }, + "n1547": { + "loc": [-85.631491, 41.95807], + "id": "n1547" + }, + "n1548": { + "loc": [-85.631304, 41.958861], + "id": "n1548" + }, + "w323": { + "tags": { + "building": "house" + }, + "id": "w323", + "nodes": ["n1548", "n1549", "n1550", "n1551", "n1548"] + }, + "n1549": { + "loc": [-85.631186, 41.958862], + "id": "n1549" + }, + "n1550": { + "loc": [-85.631182, 41.958653], + "id": "n1550" + }, + "n1551": { + "loc": [-85.6313, 41.958651], + "id": "n1551" + }, + "n1552": { + "loc": [-85.631293, 41.95854], + "id": "n1552" + }, + "w324": { + "tags": { + "building": "house" + }, + "id": "w324", + "nodes": ["n1552", "n1553", "n1554", "n1555", "n1556", "n1557", "n1558", "n1559", "n1552"] + }, + "n1553": { + "loc": [-85.631176, 41.958539], + "id": "n1553" + }, + "n1554": { + "loc": [-85.631176, 41.958377], + "id": "n1554" + }, + "n1555": { + "loc": [-85.631297, 41.958377], + "id": "n1555" + }, + "n1556": { + "loc": [-85.631297, 41.958422], + "id": "n1556" + }, + "n1557": { + "loc": [-85.631333, 41.958422], + "id": "n1557" + }, + "n1558": { + "loc": [-85.631333, 41.958479], + "id": "n1558" + }, + "n1559": { + "loc": [-85.631293, 41.958479], + "id": "n1559" + }, + "n1560": { + "loc": [-85.631951, 41.958908], + "id": "n1560" + }, + "w325": { + "tags": { + "building": "house" + }, + "id": "w325", + "nodes": ["n1560", "n1561", "n1562", "n1563", "n1564", "n1565", "n1566", "n1567", "n1560"] + }, + "n1561": { + "loc": [-85.631838, 41.958909], + "id": "n1561" + }, + "n1562": { + "loc": [-85.631837, 41.958847], + "id": "n1562" + }, + "n1563": { + "loc": [-85.631859, 41.958847], + "id": "n1563" + }, + "n1564": { + "loc": [-85.631858, 41.958746], + "id": "n1564" + }, + "n1565": { + "loc": [-85.631961, 41.958745], + "id": "n1565" + }, + "n1566": { + "loc": [-85.631962, 41.958812], + "id": "n1566" + }, + "n1567": { + "loc": [-85.631949, 41.958813], + "id": "n1567" + }, + "w326": { + "id": "w326", + "nodes": ["n1561", "n1568", "n1569", "n1570"], + "tags": { + "barrier": "wall" + } + }, + "n1568": { + "loc": [-85.631579, 41.958913], + "id": "n1568" + }, + "n1569": { + "loc": [-85.631567, 41.95864], + "id": "n1569" + }, + "n1570": { + "loc": [-85.631942, 41.958639], + "id": "n1570" + }, + "n1571": { + "loc": [-85.631543, 41.958594], + "id": "n1571" + }, + "w327": { + "id": "w327", + "nodes": ["n1571", "n1572"], + "tags": { + "barrier": "fence" + } + }, + "n1572": { + "loc": [-85.631543, 41.958065], + "id": "n1572" + }, + "n1573": { + "loc": [-85.631888, 41.958546], + "id": "n1573" + }, + "w328": { + "tags": { + "building": "house" + }, + "id": "w328", + "nodes": ["n1573", "n1574", "n1575", "n1576", "n1573"] + }, + "n1574": { + "loc": [-85.631804, 41.958546], + "id": "n1574" + }, + "n1575": { + "loc": [-85.631803, 41.95841], + "id": "n1575" + }, + "n1576": { + "loc": [-85.631886, 41.958409], + "id": "n1576" + }, + "n1577": { + "loc": [-85.631897, 41.958125], + "id": "n1577" + }, + "w329": { + "tags": { + "building": "house" + }, + "id": "w329", + "nodes": ["n1577", "n1578", "n1579", "n1580", "n1581", "n1582", "n1583", "n1584", "n1585", "n1586", "n1577"] + }, + "n1578": { + "loc": [-85.631755, 41.958126], + "id": "n1578" + }, + "n1579": { + "loc": [-85.631756, 41.958174], + "id": "n1579" + }, + "n1580": { + "loc": [-85.63178, 41.958174], + "id": "n1580" + }, + "n1581": { + "loc": [-85.631782, 41.958272], + "id": "n1581" + }, + "n1582": { + "loc": [-85.631922, 41.958271], + "id": "n1582" + }, + "n1583": { + "loc": [-85.631922, 41.958244], + "id": "n1583" + }, + "n1584": { + "loc": [-85.631883, 41.958245], + "id": "n1584" + }, + "n1585": { + "loc": [-85.631882, 41.958175], + "id": "n1585" + }, + "n1586": { + "loc": [-85.631898, 41.958175], + "id": "n1586" + }, + "n1587": { + "loc": [-85.631924, 41.958032], + "id": "n1587" + }, + "w330": { + "tags": { + "building": "house" + }, + "id": "w330", + "nodes": ["n1587", "n1588", "n1589", "n1590", "n1591", "n1592", "n1593", "n1594", "n1587"] + }, + "n1588": { + "loc": [-85.631762, 41.958032], + "id": "n1588" + }, + "n1589": { + "loc": [-85.63176, 41.957827], + "id": "n1589" + }, + "n1590": { + "loc": [-85.631888, 41.957826], + "id": "n1590" + }, + "n1591": { + "loc": [-85.631888, 41.957892], + "id": "n1591" + }, + "n1592": { + "loc": [-85.631871, 41.957892], + "id": "n1592" + }, + "n1593": { + "loc": [-85.631872, 41.957949], + "id": "n1593" + }, + "n1594": { + "loc": [-85.631923, 41.957949], + "id": "n1594" + }, + "n1595": { + "loc": [-85.631695, 41.95795], + "id": "n1595" + }, + "w331": { + "tags": { + "leisure": "swimming_pool", + "access": "private" + }, + "id": "w331", + "nodes": ["n1595", "n1596", "n1597", "n1598", "n1599", "n1600", "n1601", "n1595"] + }, + "n1596": { + "loc": [-85.631666, 41.957975], + "id": "n1596" + }, + "n1597": { + "loc": [-85.63163, 41.957975], + "id": "n1597" + }, + "n1598": { + "loc": [-85.6316, 41.957951], + "id": "n1598" + }, + "n1599": { + "loc": [-85.6316, 41.95785], + "id": "n1599" + }, + "n1600": { + "loc": [-85.63166, 41.95785], + "id": "n1600" + }, + "n1601": { + "loc": [-85.631696, 41.957873], + "id": "n1601" + }, + "n1602": { + "loc": [-85.631924, 41.957762], + "id": "n1602" + }, + "w332": { + "tags": { + "building": "house" + }, + "id": "w332", + "nodes": ["n1602", "n1603", "n1604", "n1605", "n1606", "n1607", "n1608", "n1609", "n1611", "n1610", "n1612", "n1613", "n1602"] + }, + "n1603": { + "loc": [-85.631762, 41.957762], + "id": "n1603" + }, + "n1604": { + "loc": [-85.631762, 41.957708], + "id": "n1604" + }, + "n1605": { + "loc": [-85.631785, 41.957708], + "id": "n1605" + }, + "n1606": { + "loc": [-85.631785, 41.957606], + "id": "n1606" + }, + "n1607": { + "loc": [-85.631734, 41.957606], + "id": "n1607" + }, + "n1608": { + "loc": [-85.631734, 41.957538], + "id": "n1608" + }, + "n1609": { + "id": "n1609", + "loc": [-85.631821, 41.957538] + }, + "n1610": { + "id": "n1610", + "loc": [-85.631935, 41.957545] + }, + "n1611": { + "id": "n1611", + "loc": [-85.631821, 41.957544] + }, + "n1612": { + "id": "n1612", + "loc": [-85.631935, 41.957645] + }, + "n1613": { + "id": "n1613", + "loc": [-85.631924, 41.957645] + }, + "n1615": { + "loc": [-85.633517, 41.941353], + "id": "n1615", + "tags": { + "man_made": "lighthouse" + } + }, + "n1616": { + "loc": [-85.633659, 41.942041], + "id": "n1616", + "tags": { + "amenity": "bbq" + } + }, + "n1617": { + "loc": [-85.63662, 41.942911], + "id": "n1617", + "tags": { + "amenity": "toilets" + } + }, + "n1618": { + "loc": [-85.63749, 41.94389], + "id": "n1618", + "tags": { + "amenity": "toilets" + } + }, + "n1619": { + "loc": [-85.634917, 41.941929], + "id": "n1619", + "tags": { + "amenity": "toilets" + } + }, + "n1620": { + "loc": [-85.632427, 41.941678], + "id": "n1620", + "tags": { + "amenity": "bbq" + } + }, + "n1621": { + "loc": [-85.638033, 41.944568], + "id": "n1621", + "tags": { + "amenity": "bbq" + } + }, + "n1622": { + "loc": [-85.638052, 41.944522], + "id": "n1622", + "tags": { + "amenity": "bbq" + } + }, + "n1623": { + "id": "n1623", + "loc": [-85.635001, 41.941965] + }, + "n1624": { + "id": "n1624", + "loc": [-85.634635, 41.941884] + }, + "n1625": { + "id": "n1625", + "loc": [-85.634667, 41.941894] + }, + "w333": { + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + }, + "id": "w333", + "nodes": ["n2139870438", "n1626", "n1627", "n2139870437", "n2139870438"] + }, + "n1626": { + "loc": [-85.634791, 41.942011], + "id": "n1626" + }, + "n1627": { + "loc": [-85.634749, 41.941938], + "id": "n1627" + }, + "n2367": { + "loc": [-85.631063, 41.957478], + "id": "n2367", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2368": { + "loc": [-85.630996, 41.955857], + "id": "n2368", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2369": { + "loc": [-85.630964, 41.954612], + "id": "n2369", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2376": { + "loc": [-85.628174, 41.95456], + "id": "n2376", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2379": { + "loc": [-85.627276, 41.953987], + "id": "n2379", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2384": { + "loc": [-85.62736, 41.955964], + "id": "n2384", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2385": { + "loc": [-85.626307, 41.957198], + "id": "n2385", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2387": { + "loc": [-85.62747, 41.957509], + "id": "n2387", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2388": { + "loc": [-85.628665, 41.957492], + "id": "n2388", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2394": { + "loc": [-85.630864, 41.959046], + "id": "n2394", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2395": { + "loc": [-85.632249, 41.958969], + "id": "n2395", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2398": { + "loc": [-85.632232, 41.95859], + "id": "n2398", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2399": { + "loc": [-85.632071, 41.958345], + "id": "n2399", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2400": { + "loc": [-85.632228, 41.9573], + "id": "n2400", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2422": { + "loc": [-85.632211, 41.95596], + "id": "n2422", + "tags": { + "emergency": "fire_hydrant" + } + }, + "n1": { + "id": "n1", + "loc": [-85.631039, 41.948829] + }, + "w3": { + "tags": { + "name": "Water Street", + "highway": "track" + }, + "id": "w3", + "nodes": ["n1", "n2"] + }, + "n2": { + "id": "n2", + "loc": [-85.627421, 41.953877] + }, + "w334": { + "tags": { + "name": "Water Street", + "highway": "service" + }, + "id": "w334", + "nodes": ["n2", "n3", "n185978790"] + }, + "n3": { + "loc": [-85.627345, 41.953983], + "id": "n3" + }, + "w335": { + "id": "w335", + "nodes": ["n3", "n1628", "n1614"], + "tags": { + "highway": "service" + } + }, + "n1614": { + "loc": [-85.627135, 41.953828], + "id": "n1614" + }, + "n1628": { + "id": "n1628", + "loc": [-85.627295, 41.953946], + "tags": { + "barrier": "gate" + } + }, + "w336": { + "tags": { + "highway": "residential", + "name": "Morris Avenue" + }, + "id": "w336", + "nodes": ["n185961391", "n185961396"] + }, + "n1629": { + "loc": [-85.629076, 41.954689], + "id": "n1629" + }, + "w337": { + "id": "w337", + "nodes": ["n1629", "n185980737"], + "tags": { + "highway": "service", + "service": "alley", + "surface": "unpaved" + } } } } From d3bff9e3ee5180394ae441e5576aa9390fc423c0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 00:53:15 -0400 Subject: [PATCH 50/91] Renumber introGraph to shrink it even more --- data/core.yaml | 2 +- data/intro_graph.json | 14704 +++++++++++++++---------------- modules/ui/intro/intro.js | 1 + modules/ui/intro/line.js | 2 +- modules/ui/intro/navigation.js | 4 +- modules/ui/intro/point.js | 9 +- 6 files changed, 7026 insertions(+), 7696 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index c3e509a5c..78437166b 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -878,7 +878,7 @@ en: square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" retry_square: "You didn't click the Square button. Try again." done_square: "See how the corners of the building moved into place? Let's learn another useful trick." - add_tank: "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**" + add_tank: "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**" search_tank: "**Search for '{name}'**" diff --git a/data/intro_graph.json b/data/intro_graph.json index ef216e042..4c48f0c8d 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -1,1034 +1,1010 @@ { "dataIntroGraph": { - "n185964961": { - "id": "n185964961", + "n1630": { + "id": "n1630", "loc": [-85.640667, 41.942595] }, - "n185964962": { - "id": "n185964962", + "n1631": { + "id": "n1631", "loc": [-85.639455, 41.94261] }, - "n185970607": { - "id": "n185970607", + "n1632": { + "id": "n1632", "loc": [-85.641094, 41.94006] }, - "n185970614": { - "id": "n185970614", + "n1633": { + "id": "n1633", "loc": [-85.641825, 41.941316] }, - "n185970616": { - "id": "n185970616", + "n1634": { + "id": "n1634", "loc": [-85.641838, 41.941556] }, - "n185973650": { - "id": "n185973650", + "n1635": { + "id": "n1635", "loc": [-85.639932, 41.940067] }, - "n185973660": { - "id": "n185973660", + "n1636": { + "id": "n1636", "loc": [-85.640639, 41.941326] }, - "n185973659": { - "id": "n185973659", + "n1637": { + "id": "n1637", "loc": [-85.640612, 41.940066] }, - "n185974479": { - "id": "n185974479", + "n1638": { + "id": "n1638", "loc": [-85.639402, 41.941336] }, - "n185974481": { - "id": "n185974481", + "n1639": { + "id": "n1639", "loc": [-85.643071, 41.941288] }, - "n185976259": { - "id": "n185976259", + "n1640": { + "id": "n1640", "loc": [-85.642213, 41.940043] }, - "n185976261": { - "id": "n185976261", + "n1641": { + "id": "n1641", "loc": [-85.643056, 41.94001] }, - "n185964959": { - "id": "n185964959", + "n1642": { + "id": "n1642", "loc": [-85.643103, 41.942575] }, - "n185964960": { - "id": "n185964960", + "n1643": { + "id": "n1643", "loc": [-85.641875, 41.942586] }, - "n185981481": { - "id": "n185981481", + "n1644": { + "id": "n1644", "loc": [-85.638673, 41.940083] }, - "n185981482": { - "id": "n185981482", + "n1645": { + "id": "n1645", "loc": [-85.639362, 41.940072] }, - "n2138493844": { - "id": "n2138493844", + "n1646": { + "id": "n1646", "loc": [-85.642797, 41.940522] }, - "n2138493845": { - "id": "n2138493845", + "n1647": { + "id": "n1647", "loc": [-85.642589, 41.940523] }, - "n2138493846": { - "id": "n2138493846", + "n1648": { + "id": "n1648", "loc": [-85.642587, 41.940287] }, - "n2138493847": { - "id": "n2138493847", + "n1649": { + "id": "n1649", "loc": [-85.642797, 41.940286] }, - "n2138493848": { - "id": "n2138493848", + "n1650": { + "id": "n1650", "loc": [-85.642571, 41.940523] }, - "n2138493849": { - "id": "n2138493849", + "n1651": { + "id": "n1651", "loc": [-85.642568, 41.940286] }, - "n2138493850": { - "id": "n2138493850", + "n1652": { + "id": "n1652", "loc": [-85.642316, 41.940289] }, - "n2138493851": { - "id": "n2138493851", + "n1653": { + "id": "n1653", "loc": [-85.642321, 41.940436] }, - "n2138493852": { - "id": "n2138493852", + "n1654": { + "id": "n1654", "loc": [-85.642292, 41.940458] }, - "n2138493853": { - "id": "n2138493853", + "n1655": { + "id": "n1655", "loc": [-85.642287, 41.940483] }, - "n2138493854": { - "id": "n2138493854", + "n1656": { + "id": "n1656", "loc": [-85.642323, 41.940509] }, - "n2138493855": { - "id": "n2138493855", + "n1657": { + "id": "n1657", "loc": [-85.642385, 41.940511] }, - "n2138493856": { - "id": "n2138493856", + "n1658": { + "id": "n1658", "loc": [-85.642408, 41.940526] }, - "n2140155811": { - "id": "n2140155811", + "n1659": { + "id": "n1659", "loc": [-85.641955, 41.941096] }, - "n2140155814": { - "id": "n2140155814", + "n1660": { + "id": "n1660", "loc": [-85.642758, 41.941088] }, - "n2140155816": { - "id": "n2140155816", + "n1661": { + "id": "n1661", "loc": [-85.642754, 41.941005] }, - "n2140155818": { - "id": "n2140155818", + "n1662": { + "id": "n1662", "loc": [-85.642806, 41.941003] }, - "n2140155821": { - "id": "n2140155821", + "n1663": { + "id": "n1663", "loc": [-85.642799, 41.940734] }, - "n2140155823": { - "id": "n2140155823", + "n1664": { + "id": "n1664", "loc": [-85.642738, 41.940734] }, - "n2140155825": { - "id": "n2140155825", + "n1665": { + "id": "n1665", "loc": [-85.642742, 41.940644] }, - "n2140155827": { - "id": "n2140155827", + "n1666": { + "id": "n1666", "loc": [-85.641952, 41.940648] }, - "n2140155828": { - "id": "n2140155828", + "n1667": { + "id": "n1667", "loc": [-85.642937, 41.941241] }, - "n2140155829": { - "id": "n2140155829", + "n1668": { + "id": "n1668", "loc": [-85.641776, 41.941253] }, - "n2140155830": { - "id": "n2140155830", + "n1669": { + "id": "n1669", "loc": [-85.641766, 41.940598] }, - "n2140155831": { - "id": "n2140155831", + "n1670": { + "id": "n1670", "loc": [-85.64198, 41.940598] }, - "n2140155832": { - "id": "n2140155832", + "n1671": { + "id": "n1671", "loc": [-85.641961, 41.940137] }, - "n2140155833": { - "id": "n2140155833", + "n1672": { + "id": "n1672", "loc": [-85.642934, 41.94012] }, - "n2140155834": { - "id": "n2140155834", + "n1673": { + "id": "n1673", "loc": [-85.64307, 41.941173] }, - "n2140155835": { - "id": "n2140155835", + "n1674": { + "id": "n1674", "loc": [-85.642841, 41.940997] }, - "n2140155837": { - "id": "n2140155837", + "n1675": { + "id": "n1675", "loc": [-85.642839, 41.940721] }, - "n2140155839": { - "id": "n2140155839", + "n1676": { + "id": "n1676", "loc": [-85.643062, 41.940552] }, - "n2140155840": { - "id": "n2140155840", + "n1677": { + "id": "n1677", "loc": [-85.642732, 41.94124] }, - "n2140155842": { - "id": "n2140155842", + "n1678": { + "id": "n1678", "loc": [-85.641815, 41.941246] }, - "n2140155844": { - "id": "n2140155844", + "n1679": { + "id": "n1679", "loc": [-85.641813, 41.941132] }, - "n2140155845": { - "id": "n2140155845", + "n1680": { + "id": "n1680", "loc": [-85.641839, 41.941111] }, - "n2140155847": { - "id": "n2140155847", + "n1681": { + "id": "n1681", "loc": [-85.641884, 41.941098] }, - "n2140155849": { - "id": "n2140155849", + "n1682": { + "id": "n1682", "loc": [-85.642732, 41.941092] }, - "n2140155851": { - "id": "n2140155851", + "n1683": { + "id": "n1683", "loc": [-85.64278, 41.941294] }, - "n2140155852": { - "id": "n2140155852", + "n1684": { + "id": "n1684", "loc": [-85.64277, 41.941178] }, - "n2140155854": { - "id": "n2140155854", + "n1685": { + "id": "n1685", "loc": [-85.642732, 41.941157] }, - "n2140155856": { - "id": "n2140155856", + "n1686": { + "id": "n1686", "loc": [-85.641848, 41.941167] }, - "n2165942818": { - "id": "n2165942818", + "n1687": { + "id": "n1687", "loc": [-85.643753, 41.941503] }, - "n2165942819": { - "id": "n2165942819", + "n1688": { + "id": "n1688", "loc": [-85.643762, 41.942119] }, - "n2168510551": { - "id": "n2168510551", + "n1689": { + "id": "n1689", "loc": [-85.64238, 41.942262] }, - "n2168510552": { - "id": "n2168510552", + "n1690": { + "id": "n1690", "loc": [-85.642374, 41.941944] }, - "n2168510553": { - "id": "n2168510553", + "n1691": { + "id": "n1691", "loc": [-85.642518, 41.941943] }, - "n2168510554": { - "id": "n2168510554", + "n1692": { + "id": "n1692", "loc": [-85.642519, 41.94198] }, - "n2168510555": { - "id": "n2168510555", + "n1693": { + "id": "n1693", "loc": [-85.642831, 41.941977] }, - "n2168510556": { - "id": "n2168510556", + "n1694": { + "id": "n1694", "loc": [-85.642837, 41.942312] }, - "n2168510557": { - "id": "n2168510557", + "n1695": { + "id": "n1695", "loc": [-85.642495, 41.942315] }, - "n2168510558": { - "id": "n2168510558", + "n1696": { + "id": "n1696", "loc": [-85.642494, 41.942261] }, - "n2189046007": { - "id": "n2189046007", + "n1697": { + "id": "n1697", "loc": [-85.641087, 41.942433] }, - "n2189046009": { - "id": "n2189046009", + "n1698": { + "id": "n1698", "loc": [-85.641081, 41.942006] }, - "n2189046011": { - "id": "n2189046011", + "n1699": { + "id": "n1699", "loc": [-85.641244, 41.942005] }, - "n2189046012": { - "id": "n2189046012", + "n1700": { + "id": "n1700", "loc": [-85.64125, 41.942431] }, - "n2189046014": { - "id": "n2189046014", + "n1701": { + "id": "n1701", "loc": [-85.641331, 41.942968] }, - "n2189046016": { - "id": "n2189046016", + "n1702": { + "id": "n1702", "loc": [-85.641328, 41.942713] }, - "n2189046018": { - "id": "n2189046018", + "n1703": { + "id": "n1703", "loc": [-85.641521, 41.942712] }, - "n2189046021": { - "id": "n2189046021", + "n1704": { + "id": "n1704", "loc": [-85.641523, 41.942924] }, - "n2189046022": { - "id": "n2189046022", + "n1705": { + "id": "n1705", "loc": [-85.641504, 41.942924] }, - "n2189046025": { - "id": "n2189046025", + "n1706": { + "id": "n1706", "loc": [-85.641505, 41.942967] }, - "n2189046053": { - "id": "n2189046053", + "n1707": { + "id": "n1707", "loc": [-85.638612, 41.942408] }, - "n2189046054": { - "id": "n2189046054", + "n1708": { + "id": "n1708", "loc": [-85.638612, 41.942327] }, - "n2189046055": { - "id": "n2189046055", + "n1709": { + "id": "n1709", "loc": [-85.638775, 41.942327] }, - "n2189046056": { - "id": "n2189046056", + "n1710": { + "id": "n1710", "loc": [-85.638775, 41.942299] }, - "n2189046058": { - "id": "n2189046058", + "n1711": { + "id": "n1711", "loc": [-85.638835, 41.942298] }, - "n2189046059": { - "id": "n2189046059", + "n1712": { + "id": "n1712", "loc": [-85.638835, 41.942407] }, - "n2189046060": { - "id": "n2189046060", + "n1713": { + "id": "n1713", "loc": [-85.639116, 41.942444] }, - "n2189046061": { - "id": "n2189046061", + "n1714": { + "id": "n1714", "loc": [-85.639114, 41.942362] }, - "n2189046063": { - "id": "n2189046063", + "n1715": { + "id": "n1715", "loc": [-85.639294, 41.94236] }, - "n2189046065": { - "id": "n2189046065", + "n1716": { + "id": "n1716", "loc": [-85.639296, 41.942442] }, - "n2189046067": { - "id": "n2189046067", + "n1717": { + "id": "n1717", "loc": [-85.639808, 41.942385] }, - "n2189046069": { - "id": "n2189046069", + "n1718": { + "id": "n1718", "loc": [-85.639805, 41.942285] }, - "n2189046070": { - "id": "n2189046070", + "n1719": { + "id": "n1719", "loc": [-85.639988, 41.942283] }, - "n2189046072": { - "id": "n2189046072", + "n1720": { + "id": "n1720", "loc": [-85.63999, 41.942383] }, - "n2189046074": { - "id": "n2189046074", + "n1721": { + "id": "n1721", "loc": [-85.639633, 41.943023] }, - "n2189046075": { - "id": "n2189046075", + "n1722": { + "id": "n1722", "loc": [-85.639867, 41.943019] }, - "n2189046077": { - "id": "n2189046077", + "n1723": { + "id": "n1723", "loc": [-85.639866, 41.942964] }, - "n2189046079": { - "id": "n2189046079", + "n1724": { + "id": "n1724", "loc": [-85.639888, 41.942963] }, - "n2189046082": { - "id": "n2189046082", + "n1725": { + "id": "n1725", "loc": [-85.639883, 41.942779] }, - "n2189046083": { - "id": "n2189046083", + "n1726": { + "id": "n1726", "loc": [-85.639851, 41.94278] }, - "n2189046085": { - "id": "n2189046085", + "n1727": { + "id": "n1727", "loc": [-85.63985, 41.94274] }, - "n2189046087": { - "id": "n2189046087", + "n1728": { + "id": "n1728", "loc": [-85.639789, 41.942741] }, - "n2189046089": { - "id": "n2189046089", + "n1729": { + "id": "n1729", "loc": [-85.639789, 41.942753] }, - "n2189046090": { - "id": "n2189046090", + "n1730": { + "id": "n1730", "loc": [-85.639698, 41.942754] }, - "n2189046092": { - "id": "n2189046092", + "n1731": { + "id": "n1731", "loc": [-85.639699, 41.942788] }, - "n2189046094": { - "id": "n2189046094", + "n1732": { + "id": "n1732", "loc": [-85.639675, 41.942789] }, - "n2189046096": { - "id": "n2189046096", + "n1733": { + "id": "n1733", "loc": [-85.639676, 41.94283] }, - "n2189046097": { - "id": "n2189046097", + "n1734": { + "id": "n1734", "loc": [-85.639701, 41.942829] }, - "n2189046099": { - "id": "n2189046099", + "n1735": { + "id": "n1735", "loc": [-85.639702, 41.942869] }, - "n2189046103": { - "id": "n2189046103", + "n1736": { + "id": "n1736", "loc": [-85.639629, 41.94287] }, - "n2189046112": { - "id": "n2189046112", + "n1737": { + "id": "n1737", "loc": [-85.643568, 41.942946] }, - "n2189046113": { - "id": "n2189046113", + "n1738": { + "id": "n1738", "loc": [-85.643568, 41.942777] }, - "n2189046115": { - "id": "n2189046115", + "n1739": { + "id": "n1739", "loc": [-85.643401, 41.942777] }, - "n2189046116": { - "id": "n2189046116", + "n1740": { + "id": "n1740", "loc": [-85.643401, 41.942863] }, - "n2189046117": { - "id": "n2189046117", + "n1741": { + "id": "n1741", "loc": [-85.643448, 41.942863] }, - "n2189046118": { - "id": "n2189046118", + "n1742": { + "id": "n1742", "loc": [-85.643448, 41.942946] }, - "n2189046119": { - "id": "n2189046119", + "n1743": { + "id": "n1743", "loc": [-85.642836, 41.942981] }, - "n2189046120": { - "id": "n2189046120", + "n1744": { + "id": "n1744", "loc": [-85.642917, 41.942979] }, - "n2189046121": { - "id": "n2189046121", + "n1745": { + "id": "n1745", "loc": [-85.642914, 41.942904] }, - "n2189046122": { - "id": "n2189046122", + "n1746": { + "id": "n1746", "loc": [-85.642938, 41.942903] }, - "n2189046123": { - "id": "n2189046123", + "n1747": { + "id": "n1747", "loc": [-85.642935, 41.942813] }, - "n2189046124": { - "id": "n2189046124", + "n1748": { + "id": "n1748", "loc": [-85.642775, 41.942816] }, - "n2189046125": { - "id": "n2189046125", + "n1749": { + "id": "n1749", "loc": [-85.642778, 41.942906] }, - "n2189046126": { - "id": "n2189046126", + "n1750": { + "id": "n1750", "loc": [-85.642833, 41.942905] }, - "n2189046127": { - "id": "n2189046127", + "n1751": { + "id": "n1751", "loc": [-85.642302, 41.942886] }, - "n2189046128": { - "id": "n2189046128", + "n1752": { + "id": "n1752", "loc": [-85.642299, 41.942721] }, - "n2189046130": { - "id": "n2189046130", + "n1753": { + "id": "n1753", "loc": [-85.642422, 41.94272] }, - "n2189046131": { - "id": "n2189046131", + "n1754": { + "id": "n1754", "loc": [-85.642425, 41.942868] }, - "n2189046132": { - "id": "n2189046132", + "n1755": { + "id": "n1755", "loc": [-85.642385, 41.942869] }, - "n2189046133": { - "id": "n2189046133", + "n1756": { + "id": "n1756", "loc": [-85.642385, 41.942885] }, - "n2189046134": { - "id": "n2189046134", + "n1757": { + "id": "n1757", "loc": [-85.641533, 41.942939] }, - "n2189046135": { - "id": "n2189046135", + "n1758": { + "id": "n1758", "loc": [-85.64161, 41.942877] }, - "n2189046137": { - "id": "n2189046137", + "n1759": { + "id": "n1759", "loc": [-85.641676, 41.942922] }, - "n2189046138": { - "id": "n2189046138", + "n1760": { + "id": "n1760", "loc": [-85.6416, 41.942985] }, - "n2189046139": { - "id": "n2189046139", + "n1761": { + "id": "n1761", "loc": [-85.64206, 41.942802] }, - "n2189046140": { - "id": "n2189046140", + "n1762": { + "id": "n1762", "loc": [-85.642059, 41.942741] }, - "n2189046141": { - "id": "n2189046141", + "n1763": { + "id": "n1763", "loc": [-85.642196, 41.942741] }, - "n2189046142": { - "id": "n2189046142", + "n1764": { + "id": "n1764", "loc": [-85.642196, 41.942818] }, - "n2189046143": { - "id": "n2189046143", + "n1765": { + "id": "n1765", "loc": [-85.642128, 41.942819] }, - "n2189046144": { - "id": "n2189046144", + "n1766": { + "id": "n1766", "loc": [-85.642128, 41.942801] }, - "n2189046145": { - "id": "n2189046145", + "n1767": { + "id": "n1767", "loc": [-85.640943, 41.942934] }, - "n2189046146": { - "id": "n2189046146", + "n1768": { + "id": "n1768", "loc": [-85.641035, 41.942933] }, - "n2189046147": { - "id": "n2189046147", + "n1769": { + "id": "n1769", "loc": [-85.641032, 41.942797] }, - "n2189046148": { - "id": "n2189046148", + "n1770": { + "id": "n1770", "loc": [-85.640997, 41.942798] }, - "n2189046149": { - "id": "n2189046149", + "n1771": { + "id": "n1771", "loc": [-85.640996, 41.942764] }, - "n2189046150": { - "id": "n2189046150", + "n1772": { + "id": "n1772", "loc": [-85.640861, 41.942766] }, - "n2189046152": { - "id": "n2189046152", + "n1773": { + "id": "n1773", "loc": [-85.640862, 41.942848] }, - "n2189046153": { - "id": "n2189046153", + "n1774": { + "id": "n1774", "loc": [-85.640941, 41.942847] }, - "n2189152992": { - "id": "n2189152992", + "n1775": { + "id": "n1775", "loc": [-85.643766, 41.942226] }, - "n2189152993": { - "id": "n2189152993", + "n1776": { + "id": "n1776", "loc": [-85.643768, 41.942407] }, - "n2189152994": { - "id": "n2189152994", + "n1777": { + "id": "n1777", "loc": [-85.643218, 41.94177] }, - "n2189152995": { - "id": "n2189152995", + "n1778": { + "id": "n1778", "loc": [-85.64321, 41.941327] }, - "n2189152996": { - "id": "n2189152996", + "n1779": { + "id": "n1779", "loc": [-85.643649, 41.941323] }, - "n2189152997": { - "id": "n2189152997", + "n1780": { + "id": "n1780", "loc": [-85.643656, 41.941716] }, - "n2189152998": { - "id": "n2189152998", + "n1781": { + "id": "n1781", "loc": [-85.64358, 41.941717] }, - "n2189152999": { - "id": "n2189152999", + "n1782": { + "id": "n1782", "loc": [-85.64358, 41.941767] }, - "n2189153000": { - "id": "n2189153000", + "n1783": { + "id": "n1783", "loc": [-85.64382, 41.941495] }, - "n2189153001": { - "id": "n2189153001", + "n1784": { + "id": "n1784", "loc": [-85.643817, 41.941317] }, - "n2189153004": { - "id": "n2189153004", + "n1785": { + "id": "n1785", "loc": [-85.643254, 41.941847] }, - "n2189153005": { - "id": "n2189153005", + "n1786": { + "id": "n1786", "loc": [-85.643394, 41.94186] }, - "n2189153006": { - "id": "n2189153006", + "n1787": { + "id": "n1787", "loc": [-85.643483, 41.941899] }, - "n2189153007": { - "id": "n2189153007", + "n1788": { + "id": "n1788", "loc": [-85.643568, 41.941977] }, - "n2189153008": { - "id": "n2189153008", + "n1789": { + "id": "n1789", "loc": [-85.643599, 41.942028] }, - "n2189153009": { - "id": "n2189153009", + "n1790": { + "id": "n1790", "loc": [-85.643438, 41.941957] }, - "n2189153010": { - "id": "n2189153010", + "n1791": { + "id": "n1791", "loc": [-85.643528, 41.942468] }, - "n2189153011": { - "id": "n2189153011", + "n1792": { + "id": "n1792", "loc": [-85.643621, 41.942363] }, - "n2189153012": { - "id": "n2189153012", + "n1793": { + "id": "n1793", "loc": [-85.643496, 41.942297] }, - "n2189153013": { - "id": "n2189153013", + "n1794": { + "id": "n1794", "loc": [-85.643446, 41.942246] }, - "n2189153014": { - "id": "n2189153014", + "n1795": { + "id": "n1795", "loc": [-85.643398, 41.942177] }, - "n2189153015": { - "id": "n2189153015", + "n1796": { + "id": "n1796", "loc": [-85.643386, 41.942079] }, - "n2189153016": { - "id": "n2189153016", + "n1797": { + "id": "n1797", "loc": [-85.643377, 41.942031] }, - "n2189153017": { - "id": "n2189153017", + "n1798": { + "id": "n1798", "loc": [-85.643221, 41.942028] }, - "n2189153018": { - "id": "n2189153018", + "n1799": { + "id": "n1799", "loc": [-85.643225, 41.942276] }, - "n2189153019": { - "id": "n2189153019", + "n1800": { + "id": "n1800", "loc": [-85.643265, 41.942347] }, - "n2189153020": { - "id": "n2189153020", + "n1801": { + "id": "n1801", "loc": [-85.643323, 41.942413] }, - "n2189153021": { - "id": "n2189153021", + "n1802": { + "id": "n1802", "loc": [-85.643411, 41.94247] }, - "n2189153022": { - "id": "n2189153022", + "n1803": { + "id": "n1803", "loc": [-85.643459, 41.942435] }, - "n2189153025": { - "id": "n2189153025", + "n1804": { + "id": "n1804", "loc": [-85.643767, 41.942307] }, - "n2189153026": { - "id": "n2189153026", + "n1805": { + "id": "n1805", "loc": [-85.643661, 41.942293] }, - "n2189153027": { - "id": "n2189153027", + "n1806": { + "id": "n1806", "loc": [-85.643578, 41.942247] }, - "n2189153028": { - "id": "n2189153028", + "n1807": { + "id": "n1807", "loc": [-85.643524, 41.942144] }, - "n2189153029": { - "id": "n2189153029", + "n1808": { + "id": "n1808", "loc": [-85.643515, 41.942061] }, - "n2189153030": { - "id": "n2189153030", + "n1809": { + "id": "n1809", "loc": [-85.643353, 41.941927] }, - "n2189153031": { - "id": "n2189153031", + "n1810": { + "id": "n1810", "loc": [-85.643254, 41.941919] }, - "n2189153032": { - "id": "n2189153032", + "n1811": { + "id": "n1811", "loc": [-85.643087, 41.94192] }, - "n2189153033": { - "id": "n2189153033", + "n1812": { + "id": "n1812", "loc": [-85.643489, 41.942003] }, - "n2189153034": { - "id": "n2189153034", + "n1813": { + "id": "n1813", "loc": [-85.643297, 41.941922] }, - "n2189153035": { - "id": "n2189153035", + "n1814": { + "id": "n1814", "loc": [-85.643305, 41.942163] }, - "n2189153036": { - "id": "n2189153036", + "n1815": { + "id": "n1815", "loc": [-85.643354, 41.942285] }, - "n2189153037": { - "id": "n2189153037", + "n1816": { + "id": "n1816", "loc": [-85.643472, 41.942389] }, - "n2189153038": { - "id": "n2189153038", + "n1817": { + "id": "n1817", "loc": [-85.643613, 41.942267] }, - "n2189153040": { - "id": "n2189153040", + "n1818": { + "id": "n1818", "loc": [-85.643876, 41.941402] }, - "n2189153041": { - "id": "n2189153041", + "n1819": { + "id": "n1819", "loc": [-85.643818, 41.941369] }, - "n2189153042": { - "id": "n2189153042", + "n1820": { + "id": "n1820", "loc": [-85.643682, 41.941304] }, - "n2189153043": { - "id": "n2189153043", + "n1821": { + "id": "n1821", "loc": [-85.64359, 41.941286] }, - "n2189153044": { - "id": "n2189153044", + "n1822": { + "id": "n1822", "loc": [-85.643317, 41.941727] }, - "n2189153045": { - "id": "n2189153045", + "n1823": { + "id": "n1823", "loc": [-85.643301, 41.941286] }, - "n2189153046": { - "id": "n2189153046", + "n1824": { + "id": "n1824", "loc": [-85.643553, 41.941698] }, - "n2189153047": { - "id": "n2189153047", + "n1825": { + "id": "n1825", "loc": [-85.643543, 41.941286] }, - "n185948706": { - "id": "n185948706", + "n1826": { + "id": "n1826", "loc": [-85.636968, 41.940108] }, - "n185954680": { - "id": "n185954680", + "n1827": { + "id": "n1827", "loc": [-85.63378, 41.940114] }, - "n185958670": { - "id": "n185958670", + "n1828": { + "id": "n1828", "loc": [-85.637255, 41.940106] }, - "n185958672": { - "id": "n185958672", + "n1829": { + "id": "n1829", "loc": [-85.637002, 41.941355] }, - "n185960207": { - "id": "n185960207", + "n1830": { + "id": "n1830", "loc": [-85.634992, 41.940118] }, - "n185964963": { - "id": "n185964963", + "n1831": { + "id": "n1831", "loc": [-85.638235, 41.942615] }, - "n185964965": { - "id": "n185964965", + "n1832": { + "id": "n1832", "loc": [-85.637039, 41.942624] }, - "n185964967": { - "id": "n185964967", + "n1833": { + "id": "n1833", "loc": [-85.636369, 41.94266] }, - "n185964968": { - "id": "n185964968", + "n1834": { + "id": "n1834", "loc": [-85.63582, 41.942771], "tags": { "highway": "traffic_signals", "traffic_signals": "emergency" } }, - "n185964970": { - "id": "n185964970", + "n1835": { + "id": "n1835", "loc": [-85.634873, 41.943044] }, - "n185966958": { - "id": "n185966958", + "n1836": { + "id": "n1836", "loc": [-85.641946, 41.946413] }, - "n185966960": { - "id": "n185966960", + "n1837": { + "id": "n1837", "loc": [-85.643157, 41.946389] }, - "n185967774": { - "id": "n185967774", + "n1838": { + "id": "n1838", "loc": [-85.641889, 41.943851] }, - "n185967775": { - "id": "n185967775", + "n1839": { + "id": "n1839", "loc": [-85.641922, 41.945121] }, - "n185970906": { - "id": "n185970906", + "n1840": { + "id": "n1840", "loc": [-85.639454, 41.943871] }, - "n185970909": { - "id": "n185970909", + "n1841": { + "id": "n1841", "loc": [-85.639491, 41.945191] }, - "n185971368": { - "id": "n185971368", + "n1842": { + "id": "n1842", "loc": [-85.635769, 41.940122] }, - "n185974477": { - "id": "n185974477", + "n1843": { + "id": "n1843", "loc": [-85.638206, 41.941345] }, - "n185975928": { - "id": "n185975928", + "n1844": { + "id": "n1844", "loc": [-85.640721, 41.94513] }, - "n185975930": { - "id": "n185975930", + "n1845": { + "id": "n1845", "loc": [-85.643139, 41.945103] }, - "n185981999": { - "id": "n185981999", + "n1846": { + "id": "n1846", "loc": [-85.638194, 41.940094] }, - "n185982877": { - "id": "n185982877", + "n1847": { + "id": "n1847", "loc": [-85.640688, 41.943861] }, - "n185982879": { - "id": "n185982879", + "n1848": { + "id": "n1848", "loc": [-85.640734, 41.945887] }, - "n185985823": { - "id": "n185985823", + "n1849": { + "id": "n1849", "loc": [-85.643121, 41.943841] }, - "n1475301397": { - "id": "n1475301397", + "n1850": { + "id": "n1850", "loc": [-85.636731, 41.94263] }, - "n2139858932": { - "id": "n2139858932", + "n1851": { + "id": "n1851", "loc": [-85.63518, 41.942955], "tags": { "highway": "crossing" } }, - "n2140019000": { - "id": "n2140019000", + "n1852": { + "id": "n1852", "loc": [-85.636152, 41.942695] }, - "n2165942817": { - "id": "n2165942817", + "n1853": { + "id": "n1853", "loc": [-85.644202, 41.941499] }, - "n2165942820": { - "id": "n2165942820", + "n1854": { + "id": "n1854", "loc": [-85.644211, 41.942116] }, - "n2189152990": { - "id": "n2189152990", + "n1855": { + "id": "n1855", "loc": [-85.644233, 41.942404] }, - "n2189152991": { - "id": "n2189152991", + "n1856": { + "id": "n1856", "loc": [-85.644231, 41.942223] }, - "n2189153002": { - "id": "n2189153002", + "n1857": { + "id": "n1857", "loc": [-85.644133, 41.941315] }, - "n2189153003": { - "id": "n2189153003", + "n1858": { + "id": "n1858", "loc": [-85.644136, 41.941493] }, - "n2189153023": { - "id": "n2189153023", + "n1859": { + "id": "n1859", "loc": [-85.644345, 41.942307] }, - "n2189153024": { - "id": "n2189153024", + "n1860": { + "id": "n1860", "loc": [-85.644232, 41.942304] }, - "n2189153039": { - "id": "n2189153039", + "n1861": { + "id": "n1861", "loc": [-85.644134, 41.941403] }, - "w208643102": { - "id": "w208643102", + "w338": { + "id": "w338", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153034", "n2189153035", "n2189153036", "n2189153037", "n2189153038"] + "nodes": ["n1813", "n1814", "n1815", "n1816", "n1817"] }, - "w17966942": { - "id": "w17966942", + "w339": { + "id": "w339", "tags": { "highway": "residential", "name": "Millard Street" }, - "nodes": [ - "n185954680", - "n185960207", - "n185971368", - "n185948706", - "n185958670", - "n185981999", - "n185981481", - "n185981482", - "n185973650", - "n185973659", - "n185970607", - "n185976259", - "n185976261" - ] + "nodes": ["n1827", "n1830", "n1842", "n1826", "n1828", "n1846", "n1644", "n1645", "n1635", "n1637", "n1632", "n1640", "n1641"] }, - "w208643105": { - "id": "w208643105", + "w340": { + "id": "w340", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153046", "n2189153047"] + "nodes": ["n1824", "n1825"] }, - "w208631637": { - "id": "w208631637", + "w341": { + "id": "w341", "tags": { "building": "yes" }, - "nodes": ["n2189046014", "n2189046016", "n2189046018", "n2189046021", "n2189046022", "n2189046025", "n2189046014"] + "nodes": ["n1701", "n1702", "n1703", "n1704", "n1705", "n1706", "n1701"] }, - "w208643096": { - "id": "w208643096", + "w342": { + "id": "w342", "tags": { "amenity": "parking", "fee": "no" }, - "nodes": ["n2189152990", "n2189153024", "n2189152991", "n2189152992", "n2189153025", "n2189152993", "n2189152990"] + "nodes": ["n1855", "n1860", "n1856", "n1775", "n1804", "n1776", "n1855"] }, - "w208631656": { - "id": "w208631656", + "w343": { + "id": "w343", "tags": { "building": "yes" }, - "nodes": ["n2189046134", "n2189046135", "n2189046137", "n2189046138", "n2189046134"] + "nodes": ["n1757", "n1758", "n1759", "n1760", "n1757"] }, - "w204003417": { - "id": "w204003417", + "w344": { + "id": "w344", "tags": { "building": "school" }, - "nodes": [ - "n2140155811", - "n2140155814", - "n2140155816", - "n2140155818", - "n2140155821", - "n2140155823", - "n2140155825", - "n2140155827", - "n2140155811" - ] + "nodes": ["n1659", "n1660", "n1661", "n1662", "n1663", "n1664", "n1665", "n1666", "n1659"] }, - "w208631654": { - "id": "w208631654", + "w345": { + "id": "w345", "tags": { "building": "yes" }, - "nodes": ["n2189046127", "n2189046128", "n2189046130", "n2189046131", "n2189046132", "n2189046133", "n2189046127"] + "nodes": ["n1751", "n1752", "n1753", "n1754", "n1755", "n1756", "n1751"] }, - "w17966327": { - "id": "w17966327", + "w346": { + "id": "w346", "tags": { "highway": "residential", "name": "South Douglas Avenue" }, - "nodes": ["n185976261", "n2140155839", "n2140155834", "n185974481", "n2189153032", "n185964959"] + "nodes": ["n1641", "n1676", "n1673", "n1639", "n1811", "n1642"] }, - "w41785752": { - "id": "w41785752", + "w347": { + "id": "w347", "tags": { "highway": "primary", "name": "West Michigan Avenue", @@ -1037,380 +1013,327 @@ "access": "yes" }, "nodes": [ - "n185964959", - "n185964960", - "n185964961", + "n1642", + "n1643", + "n1630", "n845", - "n185964962", + "n1631", "n816", - "n185964963", + "n1831", "n902", "n905", "n152", "n149", - "n185964965", - "n1475301397", + "n1832", + "n1850", "n878", - "n185964967", - "n2140019000", + "n1833", + "n1852", "n42", - "n185964968", + "n1834", "n61", "n60", - "n2139858932", - "n185964970" + "n1851", + "n1835" ] }, - "w203841842": { - "id": "w203841842", + "w348": { + "id": "w348", "tags": { "leisure": "playground" }, - "nodes": [ - "n2138493848", - "n2138493849", - "n2138493850", - "n2138493851", - "n2138493852", - "n2138493853", - "n2138493854", - "n2138493855", - "n2138493856", - "n2138493848" - ] + "nodes": ["n1650", "n1651", "n1652", "n1653", "n1654", "n1655", "n1656", "n1657", "n1658", "n1650"] }, - "w208643103": { - "id": "w208643103", + "w349": { + "id": "w349", "tags": { "highway": "service" }, - "nodes": ["n2189153039", "n2189153040", "n2189153041", "n2189153042", "n2189153043", "n2189153047", "n2189153045", "n185974481"] + "nodes": ["n1861", "n1818", "n1819", "n1820", "n1821", "n1825", "n1823", "n1639"] }, - "w208643098": { - "id": "w208643098", + "w350": { + "id": "w350", "tags": { "amenity": "parking" }, - "nodes": ["n2189153000", "n2189153041", "n2189153001", "n2189153002", "n2189153039", "n2189153003", "n2189153000"] + "nodes": ["n1783", "n1819", "n1784", "n1857", "n1861", "n1858", "n1783"] }, - "w208631646": { - "id": "w208631646", + "w351": { + "id": "w351", "tags": { "building": "yes" }, - "nodes": ["n2189046067", "n2189046069", "n2189046070", "n2189046072", "n2189046067"] + "nodes": ["n1717", "n1718", "n1719", "n1720", "n1717"] }, - "w208631653": { - "id": "w208631653", + "w352": { + "id": "w352", "tags": { "building": "yes" }, - "nodes": [ - "n2189046119", - "n2189046120", - "n2189046121", - "n2189046122", - "n2189046123", - "n2189046124", - "n2189046125", - "n2189046126", - "n2189046119" - ] + "nodes": ["n1743", "n1744", "n1745", "n1746", "n1747", "n1748", "n1749", "n1750", "n1743"] }, - "w17966041": { - "id": "w17966041", + "w353": { + "id": "w353", "tags": { "highway": "residential", "name": "South Lincoln Avenue" }, - "nodes": ["n185973659", "n185973660", "n185964961"] + "nodes": ["n1637", "n1636", "n1630"] }, - "w208631645": { - "id": "w208631645", + "w354": { + "id": "w354", "tags": { "building": "yes" }, - "nodes": ["n2189046060", "n2189046061", "n2189046063", "n2189046065", "n2189046060"] + "nodes": ["n1713", "n1714", "n1715", "n1716", "n1713"] }, - "w206803397": { - "id": "w206803397", + "w355": { + "id": "w355", "tags": { "building": "yes" }, - "nodes": [ - "n2168510551", - "n2168510552", - "n2168510553", - "n2168510554", - "n2168510555", - "n2168510556", - "n2168510557", - "n2168510558", - "n2168510551" - ] + "nodes": ["n1689", "n1690", "n1691", "n1692", "n1693", "n1694", "n1695", "n1696", "n1689"] }, - "w17965792": { - "id": "w17965792", + "w356": { + "id": "w356", "tags": { "highway": "residential", "name": "North Hook Avenue" }, - "nodes": ["n185964962", "n185970906", "n185970909"] + "nodes": ["n1631", "n1840", "n1841"] }, - "w208631651": { - "id": "w208631651", + "w357": { + "id": "w357", "tags": { "building": "yes" }, - "nodes": ["n2189046112", "n2189046113", "n2189046115", "n2189046116", "n2189046117", "n2189046118", "n2189046112"] + "nodes": ["n1737", "n1738", "n1739", "n1740", "n1741", "n1742", "n1737"] }, - "w208631643": { - "id": "w208631643", + "w358": { + "id": "w358", "tags": { "building": "yes" }, - "nodes": ["n2189046053", "n2189046054", "n2189046055", "n2189046056", "n2189046058", "n2189046059", "n2189046053"] + "nodes": ["n1707", "n1708", "n1709", "n1710", "n1711", "n1712", "n1707"] }, - "w17966102": { - "id": "w17966102", + "w359": { + "id": "w359", "tags": { "highway": "residential", "name": "South Street" }, - "nodes": ["n185958672", "n185974477", "n185974479", "n185973660", "n185970614"] + "nodes": ["n1829", "n1843", "n1638", "n1636", "n1633"] }, - "w208631660": { - "id": "w208631660", + "w360": { + "id": "w360", "tags": { "building": "yes" }, - "nodes": [ - "n2189046145", - "n2189046146", - "n2189046147", - "n2189046148", - "n2189046149", - "n2189046150", - "n2189046152", - "n2189046153", - "n2189046145" - ] + "nodes": ["n1767", "n1768", "n1769", "n1770", "n1771", "n1772", "n1773", "n1774", "n1767"] }, - "w208643101": { - "id": "w208643101", + "w361": { + "id": "w361", "tags": { "highway": "service" }, "nodes": [ - "n2189153023", - "n2189153024", - "n2189153025", - "n2189153026", - "n2189153038", - "n2189153027", - "n2189153028", - "n2189153029", - "n2189153033", - "n2189153009", - "n2189153030", - "n2189153034", - "n2189153031", - "n2189153032" + "n1859", + "n1860", + "n1804", + "n1805", + "n1817", + "n1806", + "n1807", + "n1808", + "n1812", + "n1790", + "n1809", + "n1813", + "n1810", + "n1811" ] }, - "w204000205": { - "id": "w204000205", + "w362": { + "id": "w362", "tags": { "highway": "residential", "name": "South Street", "oneway": "yes" }, - "nodes": ["n185974481", "n2140155851", "n185970614"] + "nodes": ["n1639", "n1683", "n1633"] }, - "w203841841": { - "id": "w203841841", + "w363": { + "id": "w363", "tags": { "leisure": "pitch", "pitch": "basketball" }, - "nodes": ["n2138493844", "n2138493845", "n2138493846", "n2138493847", "n2138493844"] + "nodes": ["n1646", "n1647", "n1648", "n1649", "n1646"] }, - "w17965444": { - "id": "w17965444", + "w364": { + "id": "w364", "tags": { "highway": "residential", "name": "North Grant Avenue" }, - "nodes": ["n185964960", "n185967774", "n185967775", "n185966958"] + "nodes": ["n1643", "n1838", "n1839", "n1836"] }, - "w208631648": { - "id": "w208631648", + "w365": { + "id": "w365", "tags": { "building": "yes" }, "nodes": [ - "n2189046074", - "n2189046075", - "n2189046077", - "n2189046079", - "n2189046082", - "n2189046083", - "n2189046085", - "n2189046087", - "n2189046089", - "n2189046090", - "n2189046092", - "n2189046094", - "n2189046096", - "n2189046097", - "n2189046099", - "n2189046103", - "n2189046074" + "n1721", + "n1722", + "n1723", + "n1724", + "n1725", + "n1726", + "n1727", + "n1728", + "n1729", + "n1730", + "n1731", + "n1732", + "n1733", + "n1734", + "n1735", + "n1736", + "n1721" ] }, - "w208643100": { - "id": "w208643100", + "w366": { + "id": "w366", "tags": { "amenity": "parking" }, "nodes": [ - "n2189153010", - "n2189153011", - "n2189153012", - "n2189153013", - "n2189153014", - "n2189153015", - "n2189153016", - "n2189153017", - "n2189153018", - "n2189153019", - "n2189153020", - "n2189153021", - "n2189153022", - "n2189153010" + "n1791", + "n1792", + "n1793", + "n1794", + "n1795", + "n1796", + "n1797", + "n1798", + "n1799", + "n1800", + "n1801", + "n1802", + "n1803", + "n1791" ] }, - "w17965749": { - "id": "w17965749", + "w367": { + "id": "w367", "tags": { "highway": "residential", "name": "South Grant Avenue" }, - "nodes": ["n185970614", "n185970616", "n185964960"] + "nodes": ["n1633", "n1634", "n1643"] }, - "w206574482": { - "id": "w206574482", + "w368": { + "id": "w368", "tags": { "amenity": "library", "building": "yes", "name": "Three Rivers Public Library" }, - "nodes": ["n2165942817", "n2165942818", "n2165942819", "n2165942820", "n2165942817"] + "nodes": ["n1853", "n1687", "n1688", "n1854", "n1853"] }, - "w208643097": { - "id": "w208643097", + "w369": { + "id": "w369", "tags": { "amenity": "parking" }, - "nodes": ["n2189152994", "n2189152995", "n2189152996", "n2189152997", "n2189152998", "n2189152999", "n2189152994"] + "nodes": ["n1777", "n1778", "n1779", "n1780", "n1781", "n1782", "n1777"] }, - "w17966879": { - "id": "w17966879", + "w370": { + "id": "w370", "tags": { "highway": "residential", "name": "South Hook Avenue" }, - "nodes": ["n185981482", "n185974479", "n858", "n185964962"] + "nodes": ["n1645", "n1638", "n858", "n1631"] }, - "w17967390": { - "id": "w17967390", + "w371": { + "id": "w371", "tags": { "highway": "residential", "name": "North Douglas Avenue" }, - "nodes": ["n185964959", "n185985823", "n185975930", "n185966960"] + "nodes": ["n1642", "n1849", "n1845", "n1837"] }, - "w208631635": { - "id": "w208631635", + "w372": { + "id": "w372", "tags": { "building": "yes" }, - "nodes": ["n2189046007", "n2189046009", "n2189046011", "n2189046012", "n2189046007"] + "nodes": ["n1697", "n1698", "n1699", "n1700", "n1697"] }, - "w208643099": { - "id": "w208643099", + "w373": { + "id": "w373", "tags": { "amenity": "parking" }, - "nodes": [ - "n2189153031", - "n2189153004", - "n2189153005", - "n2189153006", - "n2189153007", - "n2189153008", - "n2189153029", - "n2189153033", - "n2189153009", - "n2189153030", - "n2189153031" - ] + "nodes": ["n1810", "n1785", "n1786", "n1787", "n1788", "n1789", "n1808", "n1812", "n1790", "n1809", "n1810"] }, - "w208631658": { - "id": "w208631658", + "w374": { + "id": "w374", "tags": { "building": "yes" }, - "nodes": ["n2189046139", "n2189046140", "n2189046141", "n2189046142", "n2189046143", "n2189046144", "n2189046139"] + "nodes": ["n1761", "n1762", "n1763", "n1764", "n1765", "n1766", "n1761"] }, - "w208643104": { - "id": "w208643104", + "w375": { + "id": "w375", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153044", "n2189153045"] + "nodes": ["n1822", "n1823"] }, - "w204003420": { - "id": "w204003420", + "w376": { + "id": "w376", "tags": { "amenity": "parking" }, - "nodes": ["n2140155840", "n2140155842", "n2140155844", "n2140155845", "n2140155847", "n2140155849", "n2140155854", "n2140155840"] + "nodes": ["n1677", "n1678", "n1679", "n1680", "n1681", "n1682", "n1685", "n1677"] }, - "w204003419": { - "id": "w204003419", + "w377": { + "id": "w377", "tags": { "highway": "service" }, - "nodes": ["n2140155834", "n2140155835", "n2140155837", "n2140155839"] + "nodes": ["n1673", "n1674", "n1675", "n1676"] }, - "w204003418": { - "id": "w204003418", + "w378": { + "id": "w378", "tags": { "amenity": "school", "name": "Andrews Elementary School" }, - "nodes": ["n2140155828", "n2140155829", "n2140155830", "n2140155831", "n2140155832", "n2140155833", "n2140155828"] + "nodes": ["n1667", "n1668", "n1669", "n1670", "n1671", "n1672", "n1667"] }, - "w17967073": { - "id": "w17967073", + "w379": { + "id": "w379", "tags": { "highway": "residential", "name": "North Lincoln Avenue" }, - "nodes": ["n185964961", "n185982877", "n185975928", "n185982879"] + "nodes": ["n1630", "n1847", "n1844", "n1848"] }, - "w204003421": { - "id": "w204003421", + "w380": { + "id": "w380", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2140155851", "n2140155852", "n2140155854", "n2140155856"] + "nodes": ["n1683", "n1684", "n1685", "n1686"] }, - "r1943857": { - "id": "r1943857", + "r1": { + "id": "r1", "tags": { "modifier": "Business", "name": "US 131 Business (Three Rivers, MI)", @@ -1431,27 +1354,27 @@ "role": "" }, { - "id": "w134150811", + "id": "w497", "type": "way", "role": "" }, { - "id": "w134150800", + "id": "w489", "type": "way", "role": "" }, { - "id": "w134150789", + "id": "w392", "type": "way", "role": "" }, { - "id": "w134150795", + "id": "w395", "type": "way", "role": "" }, { - "id": "w41785752", + "id": "w347", "type": "way", "role": "" }, @@ -1467,8 +1390,8 @@ } ] }, - "r270277": { - "id": "r270277", + "r3": { + "id": "r3", "tags": { "network": "US:MI", "ref": "60", @@ -1589,57 +1512,57 @@ "role": "west" }, { - "id": "w41785752", + "id": "w347", "type": "way", "role": "" }, { - "id": "w134150795", + "id": "w395", "type": "way", "role": "" }, { - "id": "w134150789", + "id": "w392", "type": "way", "role": "" }, { - "id": "w134150800", + "id": "w489", "type": "way", "role": "" }, { - "id": "w134150811", + "id": "w497", "type": "way", "role": "" }, { - "id": "w134150836", + "id": "w536", "type": "way", "role": "" }, { - "id": "w134150802", + "id": "w529", "type": "way", "role": "" }, { - "id": "w41074896", + "id": "w517", "type": "way", "role": "" }, { - "id": "w17966773", + "id": "w619", "type": "way", "role": "" }, { - "id": "w17967415", + "id": "w625", "type": "way", "role": "" }, { - "id": "w41074899", + "id": "w670", "type": "way", "role": "" }, @@ -1930,8 +1853,8 @@ } ] }, - "n367813436": { - "id": "n367813436", + "n1862": { + "id": "n1862", "loc": [-85.63607, 41.943005], "tags": { "amenity": "fire_station", @@ -1943,800 +1866,800 @@ "addr:postcode": "49093" } }, - "n185948710": { - "id": "n185948710", + "n1863": { + "id": "n1863", "loc": [-85.637, 41.941236] }, - "n185954691": { - "id": "n185954691", + "n1864": { + "id": "n1864", "loc": [-85.634476, 41.941475] }, - "n185954692": { - "id": "n185954692", + "n1865": { + "id": "n1865", "loc": [-85.635036, 41.941858] }, - "n185954693": { - "id": "n185954693", + "n1866": { + "id": "n1866", "loc": [-85.635362, 41.941962] }, - "n185954695": { - "id": "n185954695", + "n1867": { + "id": "n1867", "loc": [-85.635796, 41.941962] }, - "n185972903": { - "id": "n185972903", + "n1868": { + "id": "n1868", "loc": [-85.63295, 41.943006] }, - "n185964971": { - "id": "n185964971", + "n1869": { + "id": "n1869", "loc": [-85.634692, 41.943098] }, - "n1819805854": { - "id": "n1819805854", + "n1870": { + "id": "n1870", "loc": [-85.633128, 41.940484] }, - "n1819805918": { - "id": "n1819805918", + "n1871": { + "id": "n1871", "loc": [-85.633117, 41.942798] }, - "n1819805762": { - "id": "n1819805762", + "n1872": { + "id": "n1872", "loc": [-85.633303, 41.942412] }, - "n1819805907": { - "id": "n1819805907", + "n1873": { + "id": "n1873", "loc": [-85.633482, 41.941912] }, - "n1819805915": { - "id": "n1819805915", + "n1874": { + "id": "n1874", "loc": [-85.633455, 41.941359] }, - "n1819848888": { - "id": "n1819848888", + "n1875": { + "id": "n1875", "loc": [-85.633162, 41.942679] }, - "n1819848930": { - "id": "n1819848930", + "n1876": { + "id": "n1876", "loc": [-85.634274, 41.943479] }, - "n1819858505": { - "id": "n1819858505", + "n1877": { + "id": "n1877", "loc": [-85.634678, 41.942909] }, - "n1819858507": { - "id": "n1819858507", + "n1878": { + "id": "n1878", "loc": [-85.6339, 41.941453] }, - "n1819858508": { - "id": "n1819858508", + "n1879": { + "id": "n1879", "loc": [-85.634571, 41.942774] }, - "n1819858509": { - "id": "n1819858509", + "n1880": { + "id": "n1880", "loc": [-85.63419, 41.941732] }, - "n1819858511": { - "id": "n1819858511", + "n1881": { + "id": "n1881", "loc": [-85.634067, 41.941565] }, - "n1819858512": { - "id": "n1819858512", + "n1882": { + "id": "n1882", "loc": [-85.63436, 41.942358] }, - "n1819858514": { - "id": "n1819858514", + "n1883": { + "id": "n1883", "loc": [-85.634327, 41.942247] }, - "n1819858521": { - "id": "n1819858521", + "n1884": { + "id": "n1884", "loc": [-85.633391, 41.941231] }, - "n1819858528": { - "id": "n1819858528", + "n1885": { + "id": "n1885", "loc": [-85.634303, 41.941972] }, - "n185954683": { - "id": "n185954683", + "n1886": { + "id": "n1886", "loc": [-85.633541, 41.940147] }, - "n185954685": { - "id": "n185954685", + "n1887": { + "id": "n1887", "loc": [-85.633433, 41.940252] }, - "n185954687": { - "id": "n185954687", + "n1888": { + "id": "n1888", "loc": [-85.633402, 41.940411] }, - "n185954689": { - "id": "n185954689", + "n1889": { + "id": "n1889", "loc": [-85.633551, 41.941023] }, - "n185954690": { - "id": "n185954690", + "n1890": { + "id": "n1890", "loc": [-85.633719, 41.941186] }, - "n1820938802": { - "id": "n1820938802", + "n1891": { + "id": "n1891", "loc": [-85.633067, 41.941845] }, - "n2130304133": { - "id": "n2130304133", + "n1892": { + "id": "n1892", "loc": [-85.634902, 41.942766] }, - "n2130304136": { - "id": "n2130304136", + "n1893": { + "id": "n1893", "loc": [-85.634603, 41.942202] }, - "n2130304138": { - "id": "n2130304138", + "n1894": { + "id": "n1894", "loc": [-85.634858, 41.942152] }, - "n2130304140": { - "id": "n2130304140", + "n1895": { + "id": "n1895", "loc": [-85.634842, 41.942269] }, - "n2130304142": { - "id": "n2130304142", + "n1896": { + "id": "n1896", "loc": [-85.634907, 41.942313] }, - "n2130304144": { - "id": "n2130304144", + "n1897": { + "id": "n1897", "loc": [-85.635049, 41.942331] }, - "n2130304146": { - "id": "n2130304146", + "n1898": { + "id": "n1898", "loc": [-85.635101, 41.942281] }, - "n2130304147": { - "id": "n2130304147", + "n1899": { + "id": "n1899", "loc": [-85.635129, 41.942144] }, - "n2130304148": { - "id": "n2130304148", + "n1900": { + "id": "n1900", "loc": [-85.635531, 41.942143] }, - "n2130304149": { - "id": "n2130304149", + "n1901": { + "id": "n1901", "loc": [-85.635534, 41.942577] }, - "n2130304150": { - "id": "n2130304150", + "n1902": { + "id": "n1902", "loc": [-85.635158, 41.942656] }, - "n2130304151": { - "id": "n2130304151", + "n1903": { + "id": "n1903", "loc": [-85.635121, 41.942703] }, - "n2138493807": { - "id": "n2138493807", + "n1904": { + "id": "n1904", "loc": [-85.635087, 41.941508] }, - "n2138493808": { - "id": "n2138493808", + "n1905": { + "id": "n1905", "loc": [-85.63536, 41.941106] }, - "n2138493809": { - "id": "n2138493809", + "n1906": { + "id": "n1906", "loc": [-85.635442, 41.941094] }, - "n2138493810": { - "id": "n2138493810", + "n1907": { + "id": "n1907", "loc": [-85.635508, 41.941104] }, - "n2138493811": { - "id": "n2138493811", + "n1908": { + "id": "n1908", "loc": [-85.635569, 41.941125] }, - "n2138493812": { - "id": "n2138493812", + "n1909": { + "id": "n1909", "loc": [-85.635583, 41.941106] }, - "n2138493813": { - "id": "n2138493813", + "n1910": { + "id": "n1910", "loc": [-85.635555, 41.940976] }, - "n2138493814": { - "id": "n2138493814", + "n1911": { + "id": "n1911", "loc": [-85.635501, 41.940915] }, - "n2138493815": { - "id": "n2138493815", + "n1912": { + "id": "n1912", "loc": [-85.635392, 41.940922] }, - "n2138493816": { - "id": "n2138493816", + "n1913": { + "id": "n1913", "loc": [-85.635276, 41.940974] }, - "n2138493817": { - "id": "n2138493817", + "n1914": { + "id": "n1914", "loc": [-85.63517, 41.941204] }, - "n2138493818": { - "id": "n2138493818", + "n1915": { + "id": "n1915", "loc": [-85.634888, 41.941517] }, - "n2138493819": { - "id": "n2138493819", + "n1916": { + "id": "n1916", "loc": [-85.634897, 41.941576] }, - "n2138493820": { - "id": "n2138493820", + "n1917": { + "id": "n1917", "loc": [-85.634961, 41.94164] }, - "n2138493821": { - "id": "n2138493821", + "n1918": { + "id": "n1918", "loc": [-85.635028, 41.941659] }, - "n2138493822": { - "id": "n2138493822", + "n1919": { + "id": "n1919", "loc": [-85.635118, 41.941621] }, - "n2138493823": { - "id": "n2138493823", + "n1920": { + "id": "n1920", "loc": [-85.635085, 41.941558] }, - "n2138493824": { - "id": "n2138493824", + "n1921": { + "id": "n1921", "loc": [-85.63504, 41.94136] }, - "n2138493825": { - "id": "n2138493825", + "n1922": { + "id": "n1922", "loc": [-85.635221, 41.941077] }, - "n2138493826": { - "id": "n2138493826", + "n1923": { + "id": "n1923", "loc": [-85.634387, 41.941559] }, - "n2138493827": { - "id": "n2138493827", + "n1924": { + "id": "n1924", "loc": [-85.634351, 41.941587] }, - "n2138493828": { - "id": "n2138493828", + "n1925": { + "id": "n1925", "loc": [-85.634416, 41.941756] }, - "n2138493829": { - "id": "n2138493829", + "n1926": { + "id": "n1926", "loc": [-85.634461, 41.941797] }, - "n2138493830": { - "id": "n2138493830", + "n1927": { + "id": "n1927", "loc": [-85.634501, 41.941819] }, - "n2138493831": { - "id": "n2138493831", + "n1928": { + "id": "n1928", "loc": [-85.634597, 41.941816] }, - "n2138493832": { - "id": "n2138493832", + "n1929": { + "id": "n1929", "loc": [-85.634732, 41.941724] }, - "n2138493833": { - "id": "n2138493833", + "n1930": { + "id": "n1930", "loc": [-85.634672, 41.941775] }, - "n2139858909": { - "id": "n2139858909", + "n1931": { + "id": "n1931", "loc": [-85.633403, 41.939101] }, - "n2139858910": { - "id": "n2139858910", + "n1932": { + "id": "n1932", "loc": [-85.633297, 41.939397] }, - "n2139858911": { - "id": "n2139858911", + "n1933": { + "id": "n1933", "loc": [-85.633205, 41.939674] }, - "n2139858912": { - "id": "n2139858912", + "n1934": { + "id": "n1934", "loc": [-85.63322, 41.939777] }, - "n2139858913": { - "id": "n2139858913", + "n1935": { + "id": "n1935", "loc": [-85.633345, 41.939936] }, - "n2139858914": { - "id": "n2139858914", + "n1936": { + "id": "n1936", "loc": [-85.633376, 41.940002] }, - "n2139858915": { - "id": "n2139858915", + "n1937": { + "id": "n1937", "loc": [-85.63328, 41.940225] }, - "n2139858916": { - "id": "n2139858916", + "n1938": { + "id": "n1938", "loc": [-85.633236, 41.940352] }, - "n2139858917": { - "id": "n2139858917", + "n1939": { + "id": "n1939", "loc": [-85.633284, 41.940583] }, - "n2139858918": { - "id": "n2139858918", + "n1940": { + "id": "n1940", "loc": [-85.633364, 41.940874] }, - "n2139858919": { - "id": "n2139858919", + "n1941": { + "id": "n1941", "loc": [-85.633439, 41.941052] }, - "n2139858920": { - "id": "n2139858920", + "n1942": { + "id": "n1942", "loc": [-85.633582, 41.941172] }, - "n2139858921": { - "id": "n2139858921", + "n1943": { + "id": "n1943", "loc": [-85.633748, 41.941273] }, - "n2139858922": { - "id": "n2139858922", + "n1944": { + "id": "n1944", "loc": [-85.634317, 41.941527] }, - "n2139858923": { - "id": "n2139858923", + "n1945": { + "id": "n1945", "loc": [-85.634389, 41.94174] }, - "n2139858924": { - "id": "n2139858924", + "n1946": { + "id": "n1946", "loc": [-85.634441, 41.941801] }, - "n2139858925": { - "id": "n2139858925", + "n1947": { + "id": "n1947", "loc": [-85.634514, 41.941837] }, - "n2139858926": { - "id": "n2139858926", + "n1948": { + "id": "n1948", "loc": [-85.634485, 41.942005] }, - "n2139858927": { - "id": "n2139858927", + "n1949": { + "id": "n1949", "loc": [-85.63457, 41.942202] }, - "n2139858928": { - "id": "n2139858928", + "n1950": { + "id": "n1950", "loc": [-85.634869, 41.942769] }, - "n2139858929": { - "id": "n2139858929", + "n1951": { + "id": "n1951", "loc": [-85.634943, 41.942792] }, - "n2139858931": { - "id": "n2139858931", + "n1952": { + "id": "n1952", "loc": [-85.635139, 41.942882] }, - "n2139858978": { - "id": "n2139858978", + "n1953": { + "id": "n1953", "loc": [-85.634962, 41.943161] }, - "n2139858979": { - "id": "n2139858979", + "n1954": { + "id": "n1954", "loc": [-85.635002, 41.943131] }, - "n2139858980": { - "id": "n2139858980", + "n1955": { + "id": "n1955", "loc": [-85.635005, 41.943091] }, - "n2139858981": { - "id": "n2139858981", + "n1956": { + "id": "n1956", "loc": [-85.635216, 41.943033] }, - "n2139858982": { - "id": "n2139858982", + "n1957": { + "id": "n1957", "loc": [-85.634817, 41.94267] }, - "n2139858983": { - "id": "n2139858983", + "n1958": { + "id": "n1958", "loc": [-85.634614, 41.942599] }, - "n2139858984": { - "id": "n2139858984", + "n1959": { + "id": "n1959", "loc": [-85.634494, 41.942381] }, - "n2139858985": { - "id": "n2139858985", + "n1960": { + "id": "n1960", "loc": [-85.634486, 41.9423] }, - "n2139870380": { - "id": "n2139870380", + "n1961": { + "id": "n1961", "loc": [-85.634671, 41.941795] }, - "n2139870381": { - "id": "n2139870381", + "n1962": { + "id": "n1962", "loc": [-85.634595, 41.941831] }, - "n2139870382": { - "id": "n2139870382", + "n1963": { + "id": "n1963", "loc": [-85.634332, 41.941866] }, - "n2139870383": { - "id": "n2139870383", + "n1964": { + "id": "n1964", "loc": [-85.634207, 41.941885] }, - "n2139870384": { - "id": "n2139870384", + "n1965": { + "id": "n1965", "loc": [-85.634133, 41.941892] }, - "n2139870385": { - "id": "n2139870385", + "n1966": { + "id": "n1966", "loc": [-85.634131, 41.942203] }, - "n2139870386": { - "id": "n2139870386", + "n1967": { + "id": "n1967", "loc": [-85.634047, 41.942327] }, - "n2139870387": { - "id": "n2139870387", + "n1968": { + "id": "n1968", "loc": [-85.634219, 41.942793] }, - "n2139870388": { - "id": "n2139870388", + "n1969": { + "id": "n1969", "loc": [-85.634061, 41.942392] }, - "n2139870389": { - "id": "n2139870389", + "n1970": { + "id": "n1970", "loc": [-85.633989, 41.942407] }, - "n2139870390": { - "id": "n2139870390", + "n1971": { + "id": "n1971", "loc": [-85.633971, 41.942356] }, - "n2139870391": { - "id": "n2139870391", + "n1972": { + "id": "n1972", "loc": [-85.63361, 41.942423] }, - "n2139870392": { - "id": "n2139870392", + "n1973": { + "id": "n1973", "loc": [-85.633714, 41.942682] }, - "n2139870393": { - "id": "n2139870393", + "n1974": { + "id": "n1974", "loc": [-85.633698, 41.942863] }, - "n2139870394": { - "id": "n2139870394", + "n1975": { + "id": "n1975", "loc": [-85.633882, 41.942865] }, - "n2139870395": { - "id": "n2139870395", + "n1976": { + "id": "n1976", "loc": [-85.633941, 41.943007] }, - "n2139870396": { - "id": "n2139870396", + "n1977": { + "id": "n1977", "loc": [-85.633887, 41.943035] }, - "n2139870397": { - "id": "n2139870397", + "n1978": { + "id": "n1978", "loc": [-85.633768, 41.942815] }, - "n2139870398": { - "id": "n2139870398", + "n1979": { + "id": "n1979", "loc": [-85.633682, 41.942351] }, - "n2139870399": { - "id": "n2139870399", + "n1980": { + "id": "n1980", "loc": [-85.634037, 41.942273] }, - "n2139870400": { - "id": "n2139870400", + "n1981": { + "id": "n1981", "loc": [-85.634029, 41.942252] }, - "n2139870401": { - "id": "n2139870401", + "n1982": { + "id": "n1982", "loc": [-85.633673, 41.942331] }, - "n2139870402": { - "id": "n2139870402", + "n1983": { + "id": "n1983", "loc": [-85.634219, 41.942571] }, - "n2139870403": { - "id": "n2139870403", + "n1984": { + "id": "n1984", "loc": [-85.634252, 41.942565] }, - "n2139870404": { - "id": "n2139870404", + "n1985": { + "id": "n1985", "loc": [-85.634144, 41.942299] }, - "n2139870405": { - "id": "n2139870405", + "n1986": { + "id": "n1986", "loc": [-85.634115, 41.942306] }, - "n2139870407": { - "id": "n2139870407", + "n1987": { + "id": "n1987", "loc": [-85.634059, 41.943094] }, - "n2139870408": { - "id": "n2139870408", + "n1988": { + "id": "n1988", "loc": [-85.633944, 41.942903] }, - "n2139870409": { - "id": "n2139870409", + "n1989": { + "id": "n1989", "loc": [-85.634311, 41.942821] }, - "n2139870410": { - "id": "n2139870410", + "n1990": { + "id": "n1990", "loc": [-85.634351, 41.94277] }, - "n2139870411": { - "id": "n2139870411", + "n1991": { + "id": "n1991", "loc": [-85.634153, 41.942254] }, - "n2139870412": { - "id": "n2139870412", + "n1992": { + "id": "n1992", "loc": [-85.634092, 41.94222] }, - "n2139870413": { - "id": "n2139870413", + "n1993": { + "id": "n1993", "loc": [-85.633571, 41.942336] }, - "n2139870414": { - "id": "n2139870414", + "n1994": { + "id": "n1994", "loc": [-85.633513, 41.942387] }, - "n2139870415": { - "id": "n2139870415", + "n1995": { + "id": "n1995", "loc": [-85.633509, 41.942455] }, - "n2139870416": { - "id": "n2139870416", + "n1996": { + "id": "n1996", "loc": [-85.63363, 41.942665] }, - "n2139870417": { - "id": "n2139870417", + "n1997": { + "id": "n1997", "loc": [-85.63414, 41.94286] }, - "n2139870418": { - "id": "n2139870418", + "n1998": { + "id": "n1998", "loc": [-85.63397, 41.942449] }, - "n2139870419": { - "id": "n2139870419", + "n1999": { + "id": "n1999", "loc": [-85.633551, 41.942529] }, - "n2139870420": { - "id": "n2139870420", + "n2000": { + "id": "n2000", "loc": [-85.633741, 41.942493] }, - "n2139870421": { - "id": "n2139870421", + "n2001": { + "id": "n2001", "loc": [-85.633894, 41.942869] }, - "n2139870422": { - "id": "n2139870422", + "n2002": { + "id": "n2002", "loc": [-85.634132, 41.941954] }, - "n2139870423": { - "id": "n2139870423", + "n2003": { + "id": "n2003", "loc": [-85.634032, 41.942038] }, - "n2139870424": { - "id": "n2139870424", + "n2004": { + "id": "n2004", "loc": [-85.633765, 41.942238] }, - "n2139870425": { - "id": "n2139870425", + "n2005": { + "id": "n2005", "loc": [-85.63376, 41.942268] }, - "n2139870426": { - "id": "n2139870426", + "n2006": { + "id": "n2006", "loc": [-85.633768, 41.942293] }, - "n2139870427": { - "id": "n2139870427", + "n2007": { + "id": "n2007", "loc": [-85.633808, 41.942386] }, - "n2139870428": { - "id": "n2139870428", + "n2008": { + "id": "n2008", "loc": [-85.634946, 41.941663] }, - "n2139870429": { - "id": "n2139870429", + "n2009": { + "id": "n2009", "loc": [-85.63511, 41.941697] }, - "n2139870430": { - "id": "n2139870430", + "n2010": { + "id": "n2010", "loc": [-85.635337, 41.94168] }, - "n2139870431": { - "id": "n2139870431", + "n2011": { + "id": "n2011", "loc": [-85.634997, 41.942251] }, - "n2139870432": { - "id": "n2139870432", + "n2012": { + "id": "n2012", "loc": [-85.635013, 41.942173] }, - "n2139870433": { - "id": "n2139870433", + "n2013": { + "id": "n2013", "loc": [-85.634876, 41.942157] }, - "n2139870434": { - "id": "n2139870434", + "n2014": { + "id": "n2014", "loc": [-85.634859, 41.942235] }, - "n2139870435": { - "id": "n2139870435", + "n2015": { + "id": "n2015", "loc": [-85.634992, 41.941951] }, - "n2139870436": { - "id": "n2139870436", + "n2016": { + "id": "n2016", "loc": [-85.634952, 41.941877] }, - "n2139870437": { - "id": "n2139870437", + "n2017": { + "id": "n2017", "loc": [-85.634844, 41.94191] }, - "n2139870438": { - "id": "n2139870438", + "n2018": { + "id": "n2018", "loc": [-85.634884, 41.941983] }, - "n2139870439": { - "id": "n2139870439", + "n2019": { + "id": "n2019", "loc": [-85.635189, 41.941691] }, - "n2139870440": { - "id": "n2139870440", + "n2020": { + "id": "n2020", "loc": [-85.635089, 41.941896] }, - "n2139870441": { - "id": "n2139870441", + "n2021": { + "id": "n2021", "loc": [-85.635077, 41.941964] }, - "n2139870442": { - "id": "n2139870442", + "n2022": { + "id": "n2022", "loc": [-85.635058, 41.942147] }, - "n2139870443": { - "id": "n2139870443", + "n2023": { + "id": "n2023", "loc": [-85.635099, 41.942161] }, - "n2139870444": { - "id": "n2139870444", + "n2024": { + "id": "n2024", "loc": [-85.635099, 41.942213] }, - "n2139870445": { - "id": "n2139870445", + "n2025": { + "id": "n2025", "loc": [-85.635079, 41.942285] }, - "n2139870446": { - "id": "n2139870446", + "n2026": { + "id": "n2026", "loc": [-85.635047, 41.942316] }, - "n2139870447": { - "id": "n2139870447", + "n2027": { + "id": "n2027", "loc": [-85.634925, 41.9423] }, - "n2139870448": { - "id": "n2139870448", + "n2028": { + "id": "n2028", "loc": [-85.634911, 41.942276] }, - "n2139870449": { - "id": "n2139870449", + "n2029": { + "id": "n2029", "loc": [-85.634917, 41.942242] }, - "n2139870450": { - "id": "n2139870450", + "n2030": { + "id": "n2030", "loc": [-85.634698, 41.941898] }, - "n2139870451": { - "id": "n2139870451", + "n2031": { + "id": "n2031", "loc": [-85.634956, 41.941866] }, - "n2139870452": { - "id": "n2139870452", + "n2032": { + "id": "n2032", "loc": [-85.635025, 41.941929] }, - "n2139870453": { - "id": "n2139870453", + "n2033": { + "id": "n2033", "loc": [-85.634862, 41.941887] }, - "n2139870454": { - "id": "n2139870454", + "n2034": { + "id": "n2034", "loc": [-85.634811, 41.94181] }, - "n2139870455": { - "id": "n2139870455", + "n2035": { + "id": "n2035", "loc": [-85.634731, 41.941745] }, - "n2139870456": { - "id": "n2139870456", + "n2036": { + "id": "n2036", "loc": [-85.634933, 41.94176] }, - "n2139870457": { - "id": "n2139870457", + "n2037": { + "id": "n2037", "loc": [-85.634942, 41.942145] }, - "n2139870458": { - "id": "n2139870458", + "n2038": { + "id": "n2038", "loc": [-85.634944, 41.942065] }, - "n2139870459": { - "id": "n2139870459", + "n2039": { + "id": "n2039", "loc": [-85.634914, 41.941996] }, - "n2139870460": { - "id": "n2139870460", + "n2040": { + "id": "n2040", "loc": [-85.634981, 41.941979] }, - "n2139989328": { - "id": "n2139989328", + "n2041": { + "id": "n2041", "loc": [-85.633419, 41.942172] }, - "n2139989330": { - "id": "n2139989330", + "n2042": { + "id": "n2042", "loc": [-85.633509, 41.941631] }, - "n2139989335": { - "id": "n2139989335", + "n2043": { + "id": "n2043", "loc": [-85.633686, 41.942937] }, - "n2139989337": { - "id": "n2139989337", + "n2044": { + "id": "n2044", "loc": [-85.633371, 41.942722] }, - "n2139989339": { - "id": "n2139989339", + "n2045": { + "id": "n2045", "loc": [-85.633291, 41.942538] }, - "n2139989341": { - "id": "n2139989341", + "n2046": { + "id": "n2046", "loc": [-85.633902, 41.940941] }, - "n2139989351": { - "id": "n2139989351", + "n2047": { + "id": "n2047", "loc": [-85.635254, 41.940939] }, - "n2139989353": { - "id": "n2139989353", + "n2048": { + "id": "n2048", "loc": [-85.635686, 41.940829] }, - "n2139989355": { - "id": "n2139989355", + "n2049": { + "id": "n2049", "loc": [-85.635712, 41.942681] }, - "n2139989357": { - "id": "n2139989357", + "n2050": { + "id": "n2050", "loc": [-85.633721, 41.942118] }, - "n2139989359": { - "id": "n2139989359", + "n2051": { + "id": "n2051", "loc": [-85.633698, 41.942057] }, - "n2139989360": { - "id": "n2139989360", + "n2052": { + "id": "n2052", "loc": [-85.633591, 41.942079] }, - "n2139989362": { - "id": "n2139989362", + "n2053": { + "id": "n2053", "loc": [-85.633614, 41.94214] }, - "n2139989364": { - "id": "n2139989364", + "n2054": { + "id": "n2054", "loc": [-85.633968, 41.941099] }, - "n2139989366": { - "id": "n2139989366", + "n2055": { + "id": "n2055", "loc": [-85.633907, 41.941138] }, - "n2139989368": { - "id": "n2139989368", + "n2056": { + "id": "n2056", "loc": [-85.633968, 41.941197] }, - "n2139989370": { - "id": "n2139989370", + "n2057": { + "id": "n2057", "loc": [-85.63404, 41.941162] }, - "n2139870379": { - "id": "n2139870379", + "n2058": { + "id": "n2058", "loc": [-85.634839, 41.941665] }, - "n2140006363": { - "id": "n2140006363", + "n2059": { + "id": "n2059", "loc": [-85.635314, 41.943035] }, - "n2140006364": { - "id": "n2140006364", + "n2060": { + "id": "n2060", "loc": [-85.634919, 41.943142] }, - "n2140018997": { - "id": "n2140018997", + "n2061": { + "id": "n2061", "loc": [-85.636433, 41.942959], "tags": { "amenity": "townhall", @@ -2748,1240 +2671,1218 @@ "addr:postcode": "49093" } }, - "n2140018998": { - "id": "n2140018998", + "n2062": { + "id": "n2062", "loc": [-85.637039, 41.942789] }, - "n2140018999": { - "id": "n2140018999", + "n2063": { + "id": "n2063", "loc": [-85.636333, 41.94279] }, - "n2199856288": { - "id": "n2199856288", + "n2064": { + "id": "n2064", "loc": [-85.634484, 41.940726] }, - "n2199856289": { - "id": "n2199856289", + "n2065": { + "id": "n2065", "loc": [-85.634483, 41.940603] }, - "n2199856290": { - "id": "n2199856290", + "n2066": { + "id": "n2066", "loc": [-85.634908, 41.940601] }, - "n2199856291": { - "id": "n2199856291", + "n2067": { + "id": "n2067", "loc": [-85.634908, 41.94053] }, - "n2199856292": { - "id": "n2199856292", + "n2068": { + "id": "n2068", "loc": [-85.634934, 41.94053] }, - "n2199856293": { - "id": "n2199856293", + "n2069": { + "id": "n2069", "loc": [-85.634934, 41.940496] }, - "n2199856294": { - "id": "n2199856294", + "n2070": { + "id": "n2070", "loc": [-85.63504, 41.940495] }, - "n2199856295": { - "id": "n2199856295", + "n2071": { + "id": "n2071", "loc": [-85.63504, 41.940531] }, - "n2199856296": { - "id": "n2199856296", + "n2072": { + "id": "n2072", "loc": [-85.635068, 41.940531] }, - "n2199856297": { - "id": "n2199856297", + "n2073": { + "id": "n2073", "loc": [-85.635071, 41.940794] }, - "n2199856298": { - "id": "n2199856298", + "n2074": { + "id": "n2074", "loc": [-85.635183, 41.940793] }, - "n2199856299": { - "id": "n2199856299", + "n2075": { + "id": "n2075", "loc": [-85.635185, 41.940916] }, - "n2199856300": { - "id": "n2199856300", + "n2076": { + "id": "n2076", "loc": [-85.634799, 41.940919] }, - "n2199856301": { - "id": "n2199856301", + "n2077": { + "id": "n2077", "loc": [-85.634798, 41.940798] }, - "n2199856302": { - "id": "n2199856302", + "n2078": { + "id": "n2078", "loc": [-85.634925, 41.940797] }, - "n2199856303": { - "id": "n2199856303", + "n2079": { + "id": "n2079", "loc": [-85.634924, 41.940724] }, - "n185958668": { - "id": "n185958668", + "n2080": { + "id": "n2080", "loc": [-85.637448, 41.938233] }, - "n185964972": { - "id": "n185964972", + "n2081": { + "id": "n2081", "loc": [-85.634168, 41.943279] }, - "n185971364": { - "id": "n185971364", + "n2082": { + "id": "n2082", "loc": [-85.635744, 41.938248] }, - "n185972885": { - "id": "n185972885", + "n2083": { + "id": "n2083", "loc": [-85.638744, 41.951211] }, - "n185972891": { - "id": "n185972891", + "n2084": { + "id": "n2084", "loc": [-85.636421, 41.946392] }, - "n185972895": { - "id": "n185972895", + "n2085": { + "id": "n2085", "loc": [-85.635965, 41.945809] }, - "n185972897": { - "id": "n185972897", + "n2086": { + "id": "n2086", "loc": [-85.635683, 41.945449] }, - "n185972899": { - "id": "n185972899", + "n2087": { + "id": "n2087", "loc": [-85.635281, 41.945025] }, - "n185972905": { - "id": "n185972905", + "n2088": { + "id": "n2088", "loc": [-85.632443, 41.942574] }, - "n185985217": { - "id": "n185985217", + "n2089": { + "id": "n2089", "loc": [-85.638243, 41.943674] }, - "n185985219": { - "id": "n185985219", + "n2090": { + "id": "n2090", "loc": [-85.638228, 41.943747] }, - "n185985221": { - "id": "n185985221", + "n2091": { + "id": "n2091", "loc": [-85.638163, 41.943797] }, - "n185985222": { - "id": "n185985222", + "n2092": { + "id": "n2092", "loc": [-85.638089, 41.943832] }, - "n185985223": { - "id": "n185985223", + "n2093": { + "id": "n2093", "loc": [-85.637969, 41.943841] }, - "n185985225": { - "id": "n185985225", + "n2094": { + "id": "n2094", "loc": [-85.637841, 41.943833] }, - "n185985231": { - "id": "n185985231", + "n2095": { + "id": "n2095", "loc": [-85.637342, 41.943734] }, - "n185985233": { - "id": "n185985233", + "n2096": { + "id": "n2096", "loc": [-85.637232, 41.943707] }, - "n185985235": { - "id": "n185985235", + "n2097": { + "id": "n2097", "loc": [-85.637163, 41.943668] }, - "n185985238": { - "id": "n185985238", + "n2098": { + "id": "n2098", "loc": [-85.637118, 41.943615] }, - "n185985240": { - "id": "n185985240", + "n2099": { + "id": "n2099", "loc": [-85.637078, 41.943494] }, - "n185990434": { - "id": "n185990434", + "n2100": { + "id": "n2100", "loc": [-85.632903, 41.998429], "tags": { "railway": "level_crossing" } }, - "n1475284023": { - "id": "n1475284023", + "n2101": { + "id": "n2101", "loc": [-85.633616, 41.943581], "tags": { "railway": "level_crossing" } }, - "n1475293240": { - "id": "n1475293240", + "n2102": { + "id": "n2102", "loc": [-85.636943, 41.947311] }, - "n1475293260": { - "id": "n1475293260", + "n2103": { + "id": "n2103", "loc": [-85.6376, 41.94854] }, - "n1819805614": { - "id": "n1819805614", + "n2104": { + "id": "n2104", "loc": [-85.634565, 41.93631] }, - "n1819805618": { - "id": "n1819805618", + "n2105": { + "id": "n2105", "loc": [-85.629533, 41.942686] }, - "n1819805622": { - "id": "n1819805622", + "n2106": { + "id": "n2106", "loc": [-85.630821, 41.943077] }, - "n1819805626": { - "id": "n1819805626", + "n2107": { + "id": "n2107", "loc": [-85.627473, 41.940659] }, - "n1819805629": { - "id": "n1819805629", + "n2108": { + "id": "n2108", "loc": [-85.629694, 41.943053] }, - "n1819805632": { - "id": "n1819805632", + "n2109": { + "id": "n2109", "loc": [-85.634093, 41.935448] }, - "n1819805636": { - "id": "n1819805636", + "n2110": { + "id": "n2110", "loc": [-85.630413, 41.94366] }, - "n1819805639": { - "id": "n1819805639", + "n2111": { + "id": "n2111", "loc": [-85.630488, 41.942662] }, - "n1819805641": { - "id": "n1819805641", + "n2112": { + "id": "n2112", "loc": [-85.63361, 41.936749] }, - "n1819805643": { - "id": "n1819805643", + "n2113": { + "id": "n2113", "loc": [-85.630038, 41.941808] }, - "n1819805647": { - "id": "n1819805647", + "n2114": { + "id": "n2114", "loc": [-85.632016, 41.942922] }, - "n1819805666": { - "id": "n1819805666", + "n2115": { + "id": "n2115", "loc": [-85.631525, 41.944303] }, - "n1819805669": { - "id": "n1819805669", + "n2116": { + "id": "n2116", "loc": [-85.626862, 41.94022] }, - "n1819805673": { - "id": "n1819805673", + "n2117": { + "id": "n2117", "loc": [-85.629673, 41.94121] }, - "n1819805680": { - "id": "n1819805680", + "n2118": { + "id": "n2118", "loc": [-85.632752, 41.943101] }, - "n1819805683": { - "id": "n1819805683", + "n2119": { + "id": "n2119", "loc": [-85.631147, 41.943201] }, - "n1819805690": { - "id": "n1819805690", + "n2120": { + "id": "n2120", "loc": [-85.624974, 41.940579] }, - "n1819805694": { - "id": "n1819805694", + "n2121": { + "id": "n2121", "loc": [-85.629415, 41.941792] }, - "n1819805698": { - "id": "n1819805698", + "n2122": { + "id": "n2122", "loc": [-85.632349, 41.942699] }, - "n1819805711": { - "id": "n1819805711", + "n2123": { + "id": "n2123", "loc": [-85.628418, 41.940356] }, - "n1819805715": { - "id": "n1819805715", + "n2124": { + "id": "n2124", "loc": [-85.629147, 41.94129] }, - "n1819805718": { - "id": "n1819805718", + "n2125": { + "id": "n2125", "loc": [-85.631111, 41.943979] }, - "n1819805722": { - "id": "n1819805722", + "n2126": { + "id": "n2126", "loc": [-85.632087, 41.940013] }, - "n1819805727": { - "id": "n1819805727", + "n2127": { + "id": "n2127", "loc": [-85.634469, 41.935057] }, - "n1819805731": { - "id": "n1819805731", + "n2128": { + "id": "n2128", "loc": [-85.629984, 41.943444] }, - "n1819805760": { - "id": "n1819805760", + "n2129": { + "id": "n2129", "loc": [-85.6331, 41.937878] }, - "n1819805766": { - "id": "n1819805766", + "n2130": { + "id": "n2130", "loc": [-85.625274, 41.941114] }, - "n1819805770": { - "id": "n1819805770", + "n2131": { + "id": "n2131", "loc": [-85.632632, 41.941217] }, - "n1819805780": { - "id": "n1819805780", + "n2132": { + "id": "n2132", "loc": [-85.632739, 41.941926] }, - "n1819805789": { - "id": "n1819805789", + "n2133": { + "id": "n2133", "loc": [-85.631647, 41.94366] }, - "n1819805792": { - "id": "n1819805792", + "n2134": { + "id": "n2134", "loc": [-85.635059, 41.935456] }, - "n1819805798": { - "id": "n1819805798", + "n2135": { + "id": "n2135", "loc": [-85.631259, 41.944349] }, - "n1819805802": { - "id": "n1819805802", + "n2136": { + "id": "n2136", "loc": [-85.626336, 41.940811] }, - "n1819805805": { - "id": "n1819805805", + "n2137": { + "id": "n2137", "loc": [-85.631507, 41.943875] }, - "n1819805812": { - "id": "n1819805812", + "n2138": { + "id": "n2138", "loc": [-85.625081, 41.940859] }, - "n1819805814": { - "id": "n1819805814", + "n2139": { + "id": "n2139", "loc": [-85.625778, 41.940093] }, - "n1819805834": { - "id": "n1819805834", + "n2140": { + "id": "n2140", "loc": [-85.632641, 41.942436] }, - "n1819805842": { - "id": "n1819805842", + "n2141": { + "id": "n2141", "loc": [-85.628825, 41.941034] }, - "n1819805846": { - "id": "n1819805846", + "n2142": { + "id": "n2142", "loc": [-85.627913, 41.940292] }, - "n1819805849": { - "id": "n1819805849", + "n2143": { + "id": "n2143", "loc": [-85.628943, 41.940516] }, - "n1819805852": { - "id": "n1819805852", + "n2144": { + "id": "n2144", "loc": [-85.63139, 41.943941] }, - "n1819805858": { - "id": "n1819805858", + "n2145": { + "id": "n2145", "loc": [-85.630081, 41.94204] }, - "n1819805861": { - "id": "n1819805861", + "n2146": { + "id": "n2146", "loc": [-85.632194, 41.93963] }, - "n1819805864": { - "id": "n1819805864", + "n2147": { + "id": "n2147", "loc": [-85.632913, 41.93939] }, - "n1819805868": { - "id": "n1819805868", + "n2148": { + "id": "n2148", "loc": [-85.632001, 41.943492] }, - "n1819805870": { - "id": "n1819805870", + "n2149": { + "id": "n2149", "loc": [-85.63149, 41.943154] }, - "n1819805873": { - "id": "n1819805873", + "n2150": { + "id": "n2150", "loc": [-85.625167, 41.940117] }, - "n1819805876": { - "id": "n1819805876", + "n2151": { + "id": "n2151", "loc": [-85.63287, 41.939941] }, - "n1819805878": { - "id": "n1819805878", + "n2152": { + "id": "n2152", "loc": [-85.630789, 41.943732] }, - "n1819805880": { - "id": "n1819805880", + "n2153": { + "id": "n2153", "loc": [-85.632173, 41.940348] }, - "n1819805883": { - "id": "n1819805883", + "n2154": { + "id": "n2154", "loc": [-85.626587, 41.940113] }, - "n1819805885": { - "id": "n1819805885", + "n2155": { + "id": "n2155", "loc": [-85.62684, 41.940667] }, - "n1819805887": { - "id": "n1819805887", + "n2156": { + "id": "n2156", "loc": [-85.632527, 41.938904] }, - "n1819805911": { - "id": "n1819805911", + "n2157": { + "id": "n2157", "loc": [-85.624866, 41.94018] }, - "n1819805922": { - "id": "n1819805922", + "n2158": { + "id": "n2158", "loc": [-85.633267, 41.93872] }, - "n1819805925": { - "id": "n1819805925", + "n2159": { + "id": "n2159", "loc": [-85.62934, 41.940843] }, - "n1819848860": { - "id": "n1819848860", + "n2160": { + "id": "n2160", "loc": [-85.640505, 41.949279] }, - "n1819848865": { - "id": "n1819848865", + "n2161": { + "id": "n2161", "loc": [-85.640688, 41.949511] }, - "n1819848871": { - "id": "n1819848871", + "n2162": { + "id": "n2162", "loc": [-85.637225, 41.944128] }, - "n1819848894": { - "id": "n1819848894", + "n2163": { + "id": "n2163", "loc": [-85.64043, 41.950285] }, - "n1819848901": { - "id": "n1819848901", + "n2164": { + "id": "n2164", "loc": [-85.635441, 41.943989] }, - "n1819848904": { - "id": "n1819848904", + "n2165": { + "id": "n2165", "loc": [-85.640198, 41.948623] }, - "n1819848915": { - "id": "n1819848915", + "n2166": { + "id": "n2166", "loc": [-85.638953, 41.947099] }, - "n1819848932": { - "id": "n1819848932", + "n2167": { + "id": "n2167", "loc": [-85.640906, 41.950857] }, - "n1819848939": { - "id": "n1819848939", + "n2168": { + "id": "n2168", "loc": [-85.638996, 41.947825] }, - "n1819848941": { - "id": "n1819848941", + "n2169": { + "id": "n2169", "loc": [-85.637469, 41.944579] }, - "n1819848943": { - "id": "n1819848943", + "n2170": { + "id": "n2170", "loc": [-85.63688, 41.943935] }, - "n1819848946": { - "id": "n1819848946", + "n2171": { + "id": "n2171", "loc": [-85.638263, 41.946367] }, - "n1819848959": { - "id": "n1819848959", + "n2172": { + "id": "n2172", "loc": [-85.640108, 41.948545] }, - "n1819848964": { - "id": "n1819848964", + "n2173": { + "id": "n2173", "loc": [-85.64037, 41.950459] }, - "n1819848966": { - "id": "n1819848966", + "n2174": { + "id": "n2174", "loc": [-85.639898, 41.94915] }, - "n1819848967": { - "id": "n1819848967", + "n2175": { + "id": "n2175", "loc": [-85.641245, 41.951019] }, - "n1819848969": { - "id": "n1819848969", + "n2176": { + "id": "n2176", "loc": [-85.640584, 41.950147] }, - "n1819848994": { - "id": "n1819848994", + "n2177": { + "id": "n2177", "loc": [-85.637136, 41.94576] }, - "n1819849000": { - "id": "n1819849000", + "n2178": { + "id": "n2178", "loc": [-85.639183, 41.948593] }, - "n1819849022": { - "id": "n1819849022", + "n2179": { + "id": "n2179", "loc": [-85.637129, 41.945415] }, - "n1819849029": { - "id": "n1819849029", + "n2180": { + "id": "n2180", "loc": [-85.637473, 41.94607] }, - "n1819849032": { - "id": "n1819849032", + "n2181": { + "id": "n2181", "loc": [-85.638777, 41.948204] }, - "n1819849040": { - "id": "n1819849040", + "n2182": { + "id": "n2182", "loc": [-85.639758, 41.949014] }, - "n1819849047": { - "id": "n1819849047", + "n2183": { + "id": "n2183", "loc": [-85.637769, 41.946095] }, - "n1819849053": { - "id": "n1819849053", + "n2184": { + "id": "n2184", "loc": [-85.642501, 41.952287] }, - "n1819849055": { - "id": "n1819849055", + "n2185": { + "id": "n2185", "loc": [-85.640863, 41.94994] }, - "n1819849057": { - "id": "n1819849057", + "n2186": { + "id": "n2186", "loc": [-85.631385, 41.94433] }, - "n1819849058": { - "id": "n1819849058", + "n2187": { + "id": "n2187", "loc": [-85.643266, 41.95298] }, - "n1819849063": { - "id": "n1819849063", + "n2188": { + "id": "n2188", "loc": [-85.637308, 41.944882] }, - "n1819849065": { - "id": "n1819849065", + "n2189": { + "id": "n2189", "loc": [-85.634898, 41.944041] }, - "n1819849068": { - "id": "n1819849068", + "n2190": { + "id": "n2190", "loc": [-85.642011, 41.951503] }, - "n1819849069": { - "id": "n1819849069", + "n2191": { + "id": "n2191", "loc": [-85.639797, 41.948888] }, - "n1819849072": { - "id": "n1819849072", + "n2192": { + "id": "n2192", "loc": [-85.639039, 41.947466] }, - "n1819849077": { - "id": "n1819849077", + "n2193": { + "id": "n2193", "loc": [-85.640155, 41.948719] }, - "n1819849078": { - "id": "n1819849078", + "n2194": { + "id": "n2194", "loc": [-85.639937, 41.948785] }, - "n1819849082": { - "id": "n1819849082", + "n2195": { + "id": "n2195", "loc": [-85.640205, 41.949183] }, - "n1819849085": { - "id": "n1819849085", + "n2196": { + "id": "n2196", "loc": [-85.637435, 41.944342] }, - "n1819849089": { - "id": "n1819849089", + "n2197": { + "id": "n2197", "loc": [-85.639443, 41.948593] }, - "n1819849097": { - "id": "n1819849097", + "n2198": { + "id": "n2198", "loc": [-85.638835, 41.948049] }, - "n1819849124": { - "id": "n1819849124", + "n2199": { + "id": "n2199", "loc": [-85.638842, 41.948441] }, - "n1819849126": { - "id": "n1819849126", + "n2200": { + "id": "n2200", "loc": [-85.637169, 41.945098] }, - "n1819849133": { - "id": "n1819849133", + "n2201": { + "id": "n2201", "loc": [-85.639883, 41.948529] }, - "n1819849146": { - "id": "n1819849146", + "n2202": { + "id": "n2202", "loc": [-85.641775, 41.951336] }, - "n1819849155": { - "id": "n1819849155", + "n2203": { + "id": "n2203", "loc": [-85.640627, 41.95077] }, - "n1819849159": { - "id": "n1819849159", + "n2204": { + "id": "n2204", "loc": [-85.635894, 41.943719] }, - "n1819849164": { - "id": "n1819849164", + "n2205": { + "id": "n2205", "loc": [-85.637297, 41.945992] }, - "n1819849174": { - "id": "n1819849174", + "n2206": { + "id": "n2206", "loc": [-85.641432, 41.951209] }, - "n1819849179": { - "id": "n1819849179", + "n2207": { + "id": "n2207", "loc": [-85.640863, 41.949756] }, - "n1819849184": { - "id": "n1819849184", + "n2208": { + "id": "n2208", "loc": [-85.640788, 41.950052] }, - "n1819849185": { - "id": "n1819849185", + "n2209": { + "id": "n2209", "loc": [-85.64278, 41.952878] }, - "n1819849189": { - "id": "n1819849189", + "n2210": { + "id": "n2210", "loc": [-85.635175, 41.94408] }, - "n1819849192": { - "id": "n1819849192", + "n2211": { + "id": "n2211", "loc": [-85.636381, 41.943761] }, - "n1819849194": { - "id": "n1819849194", + "n2212": { + "id": "n2212", "loc": [-85.642329, 41.952008] }, - "n1819849196": { - "id": "n1819849196", + "n2213": { + "id": "n2213", "loc": [-85.638578, 41.946644] }, - "n1819849198": { - "id": "n1819849198", + "n2214": { + "id": "n2214", "loc": [-85.640434, 41.95065] }, - "n1819849199": { - "id": "n1819849199", + "n2215": { + "id": "n2215", "loc": [-85.642623, 41.952708] }, - "n1819858501": { - "id": "n1819858501", + "n2216": { + "id": "n2216", "loc": [-85.636126, 41.943713] }, - "n1819858503": { - "id": "n1819858503", + "n2217": { + "id": "n2217", "loc": [-85.635005, 41.944041] }, - "n1819858513": { - "id": "n1819858513", + "n2218": { + "id": "n2218", "loc": [-85.63714, 41.945328] }, - "n1819858518": { - "id": "n1819858518", + "n2219": { + "id": "n2219", "loc": [-85.634871, 41.943292] }, - "n1819858523": { - "id": "n1819858523", + "n2220": { + "id": "n2220", "loc": [-85.635705, 41.943799] }, - "n1819858526": { - "id": "n1819858526", + "n2221": { + "id": "n2221", "loc": [-85.634995, 41.943576] }, - "n1819858531": { - "id": "n1819858531", + "n2222": { + "id": "n2222", "loc": [-85.635026, 41.943829] }, - "n1820937542": { - "id": "n1820937542", + "n2223": { + "id": "n2223", "loc": [-85.632874, 41.941031] }, - "n1820937602": { - "id": "n1820937602", + "n2224": { + "id": "n2224", "loc": [-85.632531, 41.940233] }, - "n1820937727": { - "id": "n1820937727", + "n2225": { + "id": "n2225", "loc": [-85.634247, 41.936003] }, - "n1820937790": { - "id": "n1820937790", + "n2226": { + "id": "n2226", "loc": [-85.62929, 41.941127] }, - "n1820937995": { - "id": "n1820937995", + "n2227": { + "id": "n2227", "loc": [-85.630428, 41.943266] }, - "n1820938130": { - "id": "n1820938130", + "n2228": { + "id": "n2228", "loc": [-85.631608, 41.943425] }, - "n1820938194": { - "id": "n1820938194", + "n2229": { + "id": "n2229", "loc": [-85.632316, 41.943042] }, - "n1820938329": { - "id": "n1820938329", + "n2230": { + "id": "n2230", "loc": [-85.628711, 41.940744] }, - "n1820938374": { - "id": "n1820938374", + "n2231": { + "id": "n2231", "loc": [-85.627831, 41.940536] }, - "n1820938505": { - "id": "n1820938505", + "n2232": { + "id": "n2232", "loc": [-85.625514, 41.94052] }, - "n1820938512": { - "id": "n1820938512", + "n2233": { + "id": "n2233", "loc": [-85.631127, 41.943545] }, - "n1820938671": { - "id": "n1820938671", + "n2234": { + "id": "n2234", "loc": [-85.632909, 41.942531] }, - "n1820938901": { - "id": "n1820938901", + "n2235": { + "id": "n2235", "loc": [-85.632917, 41.938796] }, - "n1820938916": { - "id": "n1820938916", + "n2236": { + "id": "n2236", "loc": [-85.626716, 41.94044] }, - "n1820938930": { - "id": "n1820938930", + "n2237": { + "id": "n2237", "loc": [-85.630122, 41.942852] }, - "n1820939069": { - "id": "n1820939069", + "n2238": { + "id": "n2238", "loc": [-85.632509, 41.939674] }, - "n1820939569": { - "id": "n1820939569", + "n2239": { + "id": "n2239", "loc": [-85.634762, 41.935237] }, - "n1820939654": { - "id": "n1820939654", + "n2240": { + "id": "n2240", "loc": [-85.63384, 41.937025] }, - "n1820939735": { - "id": "n1820939735", + "n2241": { + "id": "n2241", "loc": [-85.629741, 41.941909] }, - "n2130304159": { - "id": "n2130304159", + "n2242": { + "id": "n2242", "loc": [-85.635254, 41.945001], "tags": { "railway": "level_crossing" } }, - "n2139858904": { - "id": "n2139858904", + "n2243": { + "id": "n2243", "loc": [-85.634005, 41.938168] }, - "n2139858905": { - "id": "n2139858905", + "n2244": { + "id": "n2244", "loc": [-85.63393, 41.938335] }, - "n2139858906": { - "id": "n2139858906", + "n2245": { + "id": "n2245", "loc": [-85.633859, 41.93846] }, - "n2139858907": { - "id": "n2139858907", + "n2246": { + "id": "n2246", "loc": [-85.633663, 41.938776] }, - "n2139858908": { - "id": "n2139858908", + "n2247": { + "id": "n2247", "loc": [-85.633513, 41.938936] }, - "n2139858933": { - "id": "n2139858933", + "n2248": { + "id": "n2248", "loc": [-85.635295, 41.943225] }, - "n2139858934": { - "id": "n2139858934", + "n2249": { + "id": "n2249", "loc": [-85.635393, 41.943293] }, - "n2139858935": { - "id": "n2139858935", + "n2250": { + "id": "n2250", "loc": [-85.635645, 41.94332] }, - "n2139858936": { - "id": "n2139858936", + "n2251": { + "id": "n2251", "loc": [-85.63629, 41.943328] }, - "n2139858937": { - "id": "n2139858937", + "n2252": { + "id": "n2252", "loc": [-85.636554, 41.943372] }, - "n2139858938": { - "id": "n2139858938", + "n2253": { + "id": "n2253", "loc": [-85.636869, 41.943526] }, - "n2139858939": { - "id": "n2139858939", + "n2254": { + "id": "n2254", "loc": [-85.637099, 41.943704] }, - "n2139858940": { - "id": "n2139858940", + "n2255": { + "id": "n2255", "loc": [-85.637268, 41.943773] }, - "n2139858941": { - "id": "n2139858941", + "n2256": { + "id": "n2256", "loc": [-85.637483, 41.943821] }, - "n2139858942": { - "id": "n2139858942", + "n2257": { + "id": "n2257", "loc": [-85.637616, 41.943929] }, - "n2139858943": { - "id": "n2139858943", + "n2258": { + "id": "n2258", "loc": [-85.637752, 41.944114] }, - "n2139858944": { - "id": "n2139858944", + "n2259": { + "id": "n2259", "loc": [-85.638399, 41.944308] }, - "n2139858945": { - "id": "n2139858945", + "n2260": { + "id": "n2260", "loc": [-85.638573, 41.944451] }, - "n2139858946": { - "id": "n2139858946", + "n2261": { + "id": "n2261", "loc": [-85.638702, 41.944574] }, - "n2139858947": { - "id": "n2139858947", + "n2262": { + "id": "n2262", "loc": [-85.638718, 41.944652] }, - "n2139858948": { - "id": "n2139858948", + "n2263": { + "id": "n2263", "loc": [-85.638715, 41.944809] }, - "n2139858949": { - "id": "n2139858949", + "n2264": { + "id": "n2264", "loc": [-85.638766, 41.944988] }, - "n2139858950": { - "id": "n2139858950", + "n2265": { + "id": "n2265", "loc": [-85.638773, 41.945136] }, - "n2139858951": { - "id": "n2139858951", + "n2266": { + "id": "n2266", "loc": [-85.638705, 41.945251] }, - "n2139858964": { - "id": "n2139858964", + "n2267": { + "id": "n2267", "loc": [-85.638335, 41.944291] }, - "n2139858966": { - "id": "n2139858966", + "n2268": { + "id": "n2268", "loc": [-85.638474, 41.944352] }, - "n2139858967": { - "id": "n2139858967", + "n2269": { + "id": "n2269", "loc": [-85.635408, 41.943429] }, - "n2139858968": { - "id": "n2139858968", + "n2270": { + "id": "n2270", "loc": [-85.635271, 41.943654] }, - "n2139858969": { - "id": "n2139858969", + "n2271": { + "id": "n2271", "loc": [-85.635266, 41.943744] }, - "n2139858970": { - "id": "n2139858970", + "n2272": { + "id": "n2272", "loc": [-85.635271, 41.943819] }, - "n2139858971": { - "id": "n2139858971", + "n2273": { + "id": "n2273", "loc": [-85.635192, 41.943876] }, - "n2139858972": { - "id": "n2139858972", + "n2274": { + "id": "n2274", "loc": [-85.635129, 41.943857] }, - "n2139858973": { - "id": "n2139858973", + "n2275": { + "id": "n2275", "loc": [-85.635122, 41.943764] }, - "n2139858974": { - "id": "n2139858974", + "n2276": { + "id": "n2276", "loc": [-85.635124, 41.943664] }, - "n2139858975": { - "id": "n2139858975", + "n2277": { + "id": "n2277", "loc": [-85.63515, 41.943611] }, - "n2139858976": { - "id": "n2139858976", + "n2278": { + "id": "n2278", "loc": [-85.635106, 41.943534] }, - "n2139858977": { - "id": "n2139858977", + "n2279": { + "id": "n2279", "loc": [-85.634972, 41.943197] }, - "n2139858995": { - "id": "n2139858995", + "n2280": { + "id": "n2280", "loc": [-85.633978, 41.938227] }, - "n2139870406": { - "id": "n2139870406", + "n2281": { + "id": "n2281", "loc": [-85.634216, 41.943255] }, - "n2139877106": { - "id": "n2139877106", + "n2282": { + "id": "n2282", "loc": [-85.634434, 41.943622] }, - "n2139982399": { - "id": "n2139982399", + "n2283": { + "id": "n2283", "loc": [-85.632406, 41.940854] }, - "n2139982400": { - "id": "n2139982400", + "n2284": { + "id": "n2284", "loc": [-85.632488, 41.941063], "tags": { "leisure": "slipway" } }, - "n2139982401": { - "id": "n2139982401", + "n2285": { + "id": "n2285", "loc": [-85.632726, 41.941537] }, - "n2139982402": { - "id": "n2139982402", + "n2286": { + "id": "n2286", "loc": [-85.632639, 41.94136] }, - "n2139982403": { - "id": "n2139982403", + "n2287": { + "id": "n2287", "loc": [-85.632704, 41.941439] }, - "n2139982405": { - "id": "n2139982405", + "n2288": { + "id": "n2288", "loc": [-85.632289, 41.940601] }, - "n2139982406": { - "id": "n2139982406", + "n2289": { + "id": "n2289", "loc": [-85.632541, 41.942526] }, - "n2139989333": { - "id": "n2139989333", + "n2290": { + "id": "n2290", "loc": [-85.634058, 41.943173] }, - "n2140006331": { - "id": "n2140006331", + "n2291": { + "id": "n2291", "loc": [-85.636175, 41.945974] }, - "n2140006334": { - "id": "n2140006334", + "n2292": { + "id": "n2292", "loc": [-85.636528, 41.945975] }, - "n2140006336": { - "id": "n2140006336", + "n2293": { + "id": "n2293", "loc": [-85.637092, 41.945893] }, - "n2140006338": { - "id": "n2140006338", + "n2294": { + "id": "n2294", "loc": [-85.637881, 41.945647] }, - "n2140006342": { - "id": "n2140006342", + "n2295": { + "id": "n2295", "loc": [-85.639329, 41.945162] }, - "n2140006344": { - "id": "n2140006344", + "n2296": { + "id": "n2296", "loc": [-85.639323, 41.945026] }, - "n2140006346": { - "id": "n2140006346", + "n2297": { + "id": "n2297", "loc": [-85.638826, 41.945032] }, - "n2140006348": { - "id": "n2140006348", + "n2298": { + "id": "n2298", "loc": [-85.638817, 41.944174] }, - "n2140006351": { - "id": "n2140006351", + "n2299": { + "id": "n2299", "loc": [-85.638291, 41.94418] }, - "n2140006353": { - "id": "n2140006353", + "n2300": { + "id": "n2300", "loc": [-85.63828, 41.943811] }, - "n2140006355": { - "id": "n2140006355", + "n2301": { + "id": "n2301", "loc": [-85.638195, 41.943601] }, - "n2140006357": { - "id": "n2140006357", + "n2302": { + "id": "n2302", "loc": [-85.63719, 41.943592] }, - "n2140006359": { - "id": "n2140006359", + "n2303": { + "id": "n2303", "loc": [-85.636697, 41.943273] }, - "n2140006361": { - "id": "n2140006361", + "n2304": { + "id": "n2304", "loc": [-85.635375, 41.943274] }, - "n2140006365": { - "id": "n2140006365", + "n2305": { + "id": "n2305", "loc": [-85.635091, 41.943547] }, - "n2140006366": { - "id": "n2140006366", + "n2306": { + "id": "n2306", "loc": [-85.63442, 41.944117] }, - "n2140006395": { - "id": "n2140006395", + "n2307": { + "id": "n2307", "loc": [-85.635117, 41.943717] }, - "n2140006397": { - "id": "n2140006397", + "n2308": { + "id": "n2308", "loc": [-85.635601, 41.945177] }, - "n2140006399": { - "id": "n2140006399", + "n2309": { + "id": "n2309", "loc": [-85.635819, 41.945494] }, - "n2140006401": { - "id": "n2140006401", + "n2310": { + "id": "n2310", "loc": [-85.635303, 41.944891] }, - "n2140006431": { - "id": "n2140006431", + "n2311": { + "id": "n2311", "loc": [-85.637674, 41.943802] }, - "n2140006437": { - "id": "n2140006437", + "n2312": { + "id": "n2312", "loc": [-85.638263, 41.944272] }, - "n2189123379": { - "id": "n2189123379", + "n2313": { + "id": "n2313", "loc": [-85.634267, 41.935266] }, - "w203974076": { - "id": "w203974076", + "w381": { + "id": "w381", "tags": { "highway": "footway" }, - "nodes": ["n2139870442", "n2139870457"] + "nodes": ["n2022", "n2037"] }, - "w17963021": { - "id": "w17963021", + "w382": { + "id": "w382", "tags": { "highway": "residential" }, - "nodes": ["n185948706", "n185948710"] + "nodes": ["n1826", "n1863"] }, - "w203974069": { - "id": "w203974069", + "w383": { + "id": "w383", "tags": { "amenity": "shelter", "building": "yes", "shelter_type": "picnic_shelter" }, - "nodes": ["n2139870431", "n2139870432", "n739", "n2139870433", "n2139870434", "n2139870449", "n2139870431"] + "nodes": ["n2011", "n2012", "n739", "n2013", "n2014", "n2029", "n2011"] }, - "w209816575": { - "id": "w209816575", + "w384": { + "id": "w384", "tags": { "building": "yes" }, "nodes": [ - "n2199856288", - "n2199856289", - "n2199856290", - "n2199856291", - "n2199856292", - "n2199856293", - "n2199856294", - "n2199856295", - "n2199856296", - "n2199856297", - "n2199856298", - "n2199856299", - "n2199856300", - "n2199856301", - "n2199856302", - "n2199856303", - "n2199856288" + "n2064", + "n2065", + "n2066", + "n2067", + "n2068", + "n2069", + "n2070", + "n2071", + "n2072", + "n2073", + "n2074", + "n2075", + "n2076", + "n2077", + "n2078", + "n2079", + "n2064" ] }, - "w203841838": { - "id": "w203841838", + "w385": { + "id": "w385", "tags": { "natural": "water" }, - "nodes": [ - "n2138493826", - "n2138493827", - "n2138493828", - "n2138493829", - "n2138493830", - "n2138493831", - "n2138493833", - "n2138493832", - "n2138493826" - ] + "nodes": ["n1923", "n1924", "n1925", "n1926", "n1927", "n1928", "n1930", "n1929", "n1923"] }, - "w17964015": { - "id": "w17964015", + "w386": { + "id": "w386", "tags": { "highway": "service" }, "nodes": [ - "n185954680", + "n1827", "n14", - "n185954683", + "n1886", "n15", - "n185954685", + "n1887", "n16", - "n185954687", + "n1888", "n18", "n17", - "n185954689", + "n1889", "n12", "n13", - "n185954690", + "n1890", "n485", - "n185954691", + "n1864", "n11", "n10", - "n2139870379", - "n2139870456", - "n185954692", - "n2139870440", + "n2058", + "n2036", + "n1865", + "n2020", "n9", "n8", - "n185954693", + "n1866", "n295", - "n185954695" + "n1867" ] }, - "w17967315": { - "id": "w17967315", + "w387": { + "id": "w387", "tags": { "highway": "residential", "name": "South Andrews Street" }, - "nodes": ["n185981999", "n185974477", "n865", "n157", "n185964963"] + "nodes": ["n1846", "n1843", "n865", "n157", "n1831"] }, - "w203974071": { - "id": "w203974071", + "w388": { + "id": "w388", "tags": { "highway": "footway" }, - "nodes": [ - "n2139870439", - "n2139870440", - "n2139870441", - "n2139870442", - "n2139870443", - "n2139870444", - "n2139870445", - "n2139870446", - "n2139870447", - "n2139870448", - "n2139870449" - ] + "nodes": ["n2019", "n2020", "n2021", "n2022", "n2023", "n2024", "n2025", "n2026", "n2027", "n2028", "n2029"] }, - "w170848824": { - "id": "w170848824", + "w389": { + "id": "w389", "tags": { "name": "Rocky River", "waterway": "river" }, "nodes": [ - "n1819858503", - "n1819858531", - "n1819858526", - "n1819858518", - "n1819858505", - "n1819858508", - "n1819858512", - "n1819858514", + "n2217", + "n2222", + "n2221", + "n2219", + "n1877", + "n1879", + "n1882", + "n1883", "n484", - "n1819858528", + "n1885", "n483", - "n1819858509", - "n1819858511", - "n1819858507", - "n1819858521", - "n1820937542" + "n1880", + "n1881", + "n1878", + "n1884", + "n2223" ] }, - "w203986458": { - "id": "w203986458", + "w390": { + "id": "w390", "tags": { "amenity": "shelter", "shelter_type": "picnic_shelter" }, - "nodes": ["n2139989357", "n2139989359", "n2139989360", "n2139989362", "n2139989357"] + "nodes": ["n2050", "n2051", "n2052", "n2053", "n2050"] }, - "w17967326": { - "id": "w17967326", + "w391": { + "id": "w391", "tags": { "highway": "residential", "name": "North Constantine Street" }, "nodes": [ - "n185985217", - "n185985219", - "n185985221", - "n185985222", - "n185985223", - "n185985225", - "n2140006431", - "n185985231", - "n185985233", - "n185985235", - "n185985238", + "n2089", + "n2090", + "n2091", + "n2092", + "n2093", + "n2094", + "n2311", + "n2095", + "n2096", + "n2097", + "n2098", "n1174", - "n185985240", + "n2099", "n751", "n43", - "n2140018998", + "n2062", "n873", - "n185964965" + "n1832" ] }, - "w134150789": { - "id": "w134150789", + "w392": { + "id": "w392", "tags": { "highway": "primary", "name": "West Michigan Avenue", "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964971", "n212", "n436", "n2139870406", "n185964972"] + "nodes": ["n1869", "n212", "n436", "n2281", "n2081"] }, - "w17966400": { - "id": "w17966400", + "w393": { + "id": "w393", "tags": { "highway": "tertiary", "name": "South Constantine Street" }, - "nodes": ["n185958672", "n611", "n144", "n602", "n185964965"] + "nodes": ["n1829", "n611", "n144", "n602", "n1832"] }, - "w203974066": { - "id": "w203974066", + "w394": { + "id": "w394", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139870417", "n2139870418", "n2139870420", "n2139870419"] + "nodes": ["n1997", "n1998", "n2000", "n1999"] }, - "w134150795": { - "id": "w134150795", + "w395": { + "id": "w395", "tags": { "bridge": "yes", "highway": "primary", @@ -3989,69 +3890,55 @@ "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964970", "n185964971"] + "nodes": ["n1835", "n1869"] }, - "w203974067": { - "id": "w203974067", + "w396": { + "id": "w396", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139870420", "n2139870421"] + "nodes": ["n2000", "n2001"] }, - "w17965834": { - "id": "w17965834", + "w397": { + "id": "w397", "tags": { "highway": "residential", "name": "Spring Street" }, - "nodes": ["n185971364", "n185971368", "n308", "n498", "n509", "n246", "n241", "n185954695", "n293", "n185964968"] + "nodes": ["n2082", "n1842", "n308", "n498", "n509", "n246", "n241", "n1867", "n293", "n1834"] }, - "w203974070": { - "id": "w203974070", + "w398": { + "id": "w398", "tags": { "building": "yes" }, - "nodes": ["n2139870435", "n2139870436", "n2139870437", "n2139870438", "n2139870435"] + "nodes": ["n2015", "n2016", "n2017", "n2018", "n2015"] }, - "w203989879": { - "id": "w203989879", + "w399": { + "id": "w399", "tags": { "highway": "service" }, - "nodes": ["n2140018998", "n45", "n2140018999", "n877", "n41", "n2140019000"] + "nodes": ["n2062", "n45", "n2063", "n877", "n41", "n1852"] }, - "w203974062": { - "id": "w203974062", + "w400": { + "id": "w400", "tags": { "amenity": "parking" }, - "nodes": [ - "n2139870387", - "n2139870388", - "n2139870389", - "n2139870390", - "n2139870427", - "n2139870391", - "n2139870392", - "n2139870397", - "n2139870393", - "n2139870396", - "n2139870395", - "n2139870394", - "n2139870387" - ] + "nodes": ["n1968", "n1969", "n1970", "n1971", "n2007", "n1972", "n1973", "n1978", "n1974", "n1977", "n1976", "n1975", "n1968"] }, - "w203974061": { - "id": "w203974061", + "w401": { + "id": "w401", "tags": { "bridge": "yes", "highway": "footway" }, - "nodes": ["n2139870382", "n2139870383"] + "nodes": ["n1963", "n1964"] }, - "w203049587": { - "id": "w203049587", + "w402": { + "id": "w402", "tags": { "name": "Scidmore Park Petting Zoo", "tourism": "zoo", @@ -4063,133 +3950,108 @@ "addr:state": "MI", "addr:postcode": "49093" }, - "nodes": [ - "n2130304133", - "n2130304136", - "n2130304138", - "n2130304140", - "n2130304142", - "n2130304144", - "n2130304146", - "n2130304147", - "n2130304148", - "n2130304149", - "n2130304150", - "n2130304151", - "n2130304133" - ] + "nodes": ["n1892", "n1893", "n1894", "n1895", "n1896", "n1897", "n1898", "n1899", "n1900", "n1901", "n1902", "n1903", "n1892"] }, - "w203972941": { - "id": "w203972941", + "w403": { + "id": "w403", "tags": { "highway": "path" }, - "nodes": ["n2139858982", "n2139858983", "n2139858984", "n481", "n2139858985", "n482", "n2139858927"] + "nodes": ["n1957", "n1958", "n1959", "n481", "n1960", "n482", "n1949"] }, - "w203974065": { - "id": "w203974065", + "w404": { + "id": "w404", "tags": { "highway": "service" }, - "nodes": ["n2139870406", "n27", "n330", "n2139870407", "n2139870408"] + "nodes": ["n2281", "n27", "n330", "n1987", "n1988"] }, - "w203972940": { - "id": "w203972940", + "w405": { + "id": "w405", "tags": { "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139858934", "n2139858967", "n2139858968", "n2139858969", "n2139858970", "n454", "n455", "n2139858971"] + "nodes": ["n2249", "n2269", "n2270", "n2271", "n2272", "n454", "n455", "n2273"] }, - "w203974072": { - "id": "w203974072", + "w406": { + "id": "w406", "tags": { "highway": "footway" }, - "nodes": ["n2139858925", "n1624", "n1625", "n2139870450", "n2139870453", "n2139870451", "n2139870452", "n2139870441"] + "nodes": ["n1947", "n1624", "n1625", "n2030", "n2033", "n2031", "n2032", "n2021"] }, - "w203974074": { - "id": "w203974074", + "w407": { + "id": "w407", "tags": { "highway": "footway" }, - "nodes": ["n2139870454", "n2139870456", "n2139870429"] + "nodes": ["n2034", "n2036", "n2009"] }, - "w203974060": { - "id": "w203974060", + "w408": { + "id": "w408", "tags": { "highway": "footway" }, - "nodes": ["n2139870383", "n2139870384", "n2139870422", "n2139870385", "n21", "n2139870386", "n2139870388"] + "nodes": ["n1964", "n1965", "n2002", "n1966", "n21", "n1967", "n1969"] }, - "w203841837": { - "id": "w203841837", + "w409": { + "id": "w409", "tags": { "natural": "water" }, "nodes": [ - "n2138493807", - "n2138493808", - "n2138493809", - "n2138493810", - "n2138493811", - "n2138493812", + "n1904", + "n1905", + "n1906", + "n1907", + "n1908", + "n1909", "n748", - "n2138493813", + "n1910", "n747", - "n2138493814", + "n1911", "n749", - "n2138493815", + "n1912", "n750", - "n2138493816", - "n2138493825", - "n2138493817", - "n2138493824", - "n2138493818", + "n1913", + "n1922", + "n1914", + "n1921", + "n1915", "n746", - "n2138493819", + "n1916", "n745", - "n2138493820", + "n1917", "n744", - "n2138493821", + "n1918", "n743", "n742", - "n2138493822", + "n1919", "n741", - "n2138493823", + "n1920", "n740", - "n2138493807" + "n1904" ] }, - "w134150845": { - "id": "w134150845", + "w410": { + "id": "w410", "tags": { "bridge": "yes", "name": "Conrail Railroad", "railway": "rail" }, - "nodes": ["n185972903", "n185972905"] + "nodes": ["n1868", "n2088"] }, - "w203974059": { - "id": "w203974059", + "w411": { + "id": "w411", "tags": { "highway": "footway" }, - "nodes": [ - "n2139870430", - "n2139870439", - "n2139870429", - "n2139870428", - "n2139870379", - "n2139870455", - "n2139870380", - "n2139870381", - "n2139858925", - "n2139870382" - ] + "nodes": ["n2010", "n2019", "n2009", "n2008", "n2058", "n2035", "n1961", "n1962", "n1947", "n1963"] }, - "w203986457": { - "id": "w203986457", + "w412": { + "id": "w412", "tags": { "leisure": "park", "name": "Scidmore Park", @@ -4200,2756 +4062,2651 @@ "addr:postcode": "49093" }, "nodes": [ - "n2139989333", - "n2139989335", - "n2139989337", - "n2139989339", - "n1819805762", - "n2139989328", - "n1819805907", - "n2139989330", - "n1819805915", - "n2139989341", - "n2139989351", - "n2139989353", - "n2139989355", - "n2139989333" + "n2290", + "n2043", + "n2044", + "n2045", + "n1872", + "n2041", + "n1873", + "n2042", + "n1874", + "n2046", + "n2047", + "n2048", + "n2049", + "n2290" ] }, - "w17967397": { - "id": "w17967397", + "w413": { + "id": "w413", "tags": { "highway": "residential", "name": "North Andrews Street" }, - "nodes": ["n185964963", "n876", "n821", "n185985217"] + "nodes": ["n1831", "n876", "n821", "n2089"] }, - "w203974068": { - "id": "w203974068", + "w414": { + "id": "w414", "tags": { "highway": "footway" }, - "nodes": ["n2139870422", "n2139870423", "n2139870424", "n2139870425", "n2139870426", "n2139870427"] + "nodes": ["n2002", "n2003", "n2004", "n2005", "n2006", "n2007"] }, - "w203974063": { - "id": "w203974063", + "w415": { + "id": "w415", "tags": { "amenity": "parking" }, - "nodes": ["n2139870398", "n2139870399", "n2139870400", "n2139870401", "n2139870398"] + "nodes": ["n1979", "n1980", "n1981", "n1982", "n1979"] }, - "w203986459": { - "id": "w203986459", + "w416": { + "id": "w416", "tags": { "amenity": "shelter", "shelter_type": "picnic_shelter" }, - "nodes": ["n2139989364", "n2139989366", "n2139989368", "n2139989370", "n2139989364"] + "nodes": ["n2054", "n2055", "n2056", "n2057", "n2054"] }, - "w203988286": { - "id": "w203988286", + "w417": { + "id": "w417", "tags": { "leisure": "park", "name": "Memory Isle Park" }, "nodes": [ - "n2140006331", - "n2140006334", - "n2140006336", - "n2140006338", - "n2140006342", - "n2140006344", - "n2140006346", - "n2140006348", - "n2140006351", + "n2291", + "n2292", + "n2293", + "n2294", + "n2295", + "n2296", + "n2297", + "n2298", + "n2299", "n1098", - "n2140006353", - "n2140006355", - "n2140006357", - "n2140006359", - "n2140006361", - "n2140006363", - "n2140006364", - "n2140006365", - "n2140006395", - "n2140006366", - "n2140006401", - "n2140006397", - "n2140006399", - "n2140006331" + "n2300", + "n2301", + "n2302", + "n2303", + "n2304", + "n2059", + "n2060", + "n2305", + "n2307", + "n2306", + "n2310", + "n2308", + "n2309", + "n2291" ] }, - "w203974073": { - "id": "w203974073", + "w418": { + "id": "w418", "tags": { "highway": "footway" }, - "nodes": ["n2139870453", "n2139870454", "n2139870455"] + "nodes": ["n2033", "n2034", "n2035"] }, - "w203974064": { - "id": "w203974064", + "w419": { + "id": "w419", "tags": { "amenity": "parking" }, - "nodes": ["n2139870402", "n2139870403", "n2139870404", "n2139870405", "n2139870402"] + "nodes": ["n1983", "n1984", "n1985", "n1986", "n1983"] }, - "n1475283980": { - "id": "n1475283980", + "n2314": { + "id": "n2314", "loc": [-85.639788, 41.945152] }, - "n1475284013": { - "id": "n1475284013", + "n2315": { + "id": "n2315", "loc": [-85.639645, 41.945167] }, - "n185975925": { - "id": "n185975925", + "n2316": { + "id": "n2316", "loc": [-85.639362, 41.945233] }, - "n2140006369": { - "id": "n2140006369", + "n2317": { + "id": "n2317", "loc": [-85.638616, 41.945163] }, - "n2140006370": { - "id": "n2140006370", + "n2318": { + "id": "n2318", "loc": [-85.638514, 41.944936] }, - "n2140006417": { - "id": "n2140006417", + "n2319": { + "id": "n2319", "loc": [-85.638578, 41.94503] }, - "n2140006419": { - "id": "n2140006419", + "n2320": { + "id": "n2320", "loc": [-85.638578, 41.945215] }, - "n2189123361": { - "id": "n2189123361", + "n2321": { + "id": "n2321", "loc": [-85.640495, 41.947015] }, - "n2189123363": { - "id": "n2189123363", + "n2322": { + "id": "n2322", "loc": [-85.639577, 41.946495] }, - "n2189123365": { - "id": "n2189123365", + "n2323": { + "id": "n2323", "loc": [-85.638935, 41.946087] }, - "n185975913": { - "id": "n185975913", + "n2324": { + "id": "n2324", "loc": [-85.637535, 41.94584] }, - "n2139858952": { - "id": "n2139858952", + "n2325": { + "id": "n2325", "loc": [-85.638357, 41.945404] }, - "n2139858953": { - "id": "n2139858953", + "n2326": { + "id": "n2326", "loc": [-85.638051, 41.94553] }, - "n2139858954": { - "id": "n2139858954", + "n2327": { + "id": "n2327", "loc": [-85.637732, 41.945555] }, - "n2139858955": { - "id": "n2139858955", + "n2328": { + "id": "n2328", "loc": [-85.637657, 41.945524] }, - "n2139858956": { - "id": "n2139858956", + "n2329": { + "id": "n2329", "loc": [-85.637598, 41.945467] }, - "n2139858957": { - "id": "n2139858957", + "n2330": { + "id": "n2330", "loc": [-85.637669, 41.945318] }, - "n2139858958": { - "id": "n2139858958", + "n2331": { + "id": "n2331", "loc": [-85.637894, 41.945171] }, - "n2139858959": { - "id": "n2139858959", + "n2332": { + "id": "n2332", "loc": [-85.637923, 41.945082] }, - "n2139858960": { - "id": "n2139858960", + "n2333": { + "id": "n2333", "loc": [-85.63793, 41.944756] }, - "n2139858961": { - "id": "n2139858961", + "n2334": { + "id": "n2334", "loc": [-85.637976, 41.944696] }, - "n2139858962": { - "id": "n2139858962", + "n2335": { + "id": "n2335", "loc": [-85.638044, 41.944671] }, - "n2139858963": { - "id": "n2139858963", + "n2336": { + "id": "n2336", "loc": [-85.638129, 41.944597] }, - "n2139858965": { - "id": "n2139858965", + "n2337": { + "id": "n2337", "loc": [-85.638252, 41.944413] }, - "n2140006367": { - "id": "n2140006367", + "n2338": { + "id": "n2338", "loc": [-85.638092, 41.945442] }, - "n2140006368": { - "id": "n2140006368", + "n2339": { + "id": "n2339", "loc": [-85.638409, 41.945315] }, - "n2140006372": { - "id": "n2140006372", + "n2340": { + "id": "n2340", "loc": [-85.638325, 41.944771] }, - "n2140006374": { - "id": "n2140006374", + "n2341": { + "id": "n2341", "loc": [-85.638103, 41.944744] }, - "n2140006376": { - "id": "n2140006376", + "n2342": { + "id": "n2342", "loc": [-85.637976, 41.944781] }, - "n2140006378": { - "id": "n2140006378", + "n2343": { + "id": "n2343", "loc": [-85.637983, 41.944865] }, - "n2140006380": { - "id": "n2140006380", + "n2344": { + "id": "n2344", "loc": [-85.638063, 41.945074] }, - "n2140006382": { - "id": "n2140006382", + "n2345": { + "id": "n2345", "loc": [-85.638041, 41.945206] }, - "n2140006389": { - "id": "n2140006389", + "n2346": { + "id": "n2346", "loc": [-85.637907, 41.945309] }, - "n2140006391": { - "id": "n2140006391", + "n2347": { + "id": "n2347", "loc": [-85.637925, 41.94539] }, - "n2140006393": { - "id": "n2140006393", + "n2348": { + "id": "n2348", "loc": [-85.637998, 41.94545] }, - "n2189123275": { - "id": "n2189123275", + "n2349": { + "id": "n2349", "loc": [-85.637135, 41.946254] }, - "n2189123278": { - "id": "n2189123278", + "n2350": { + "id": "n2350", "loc": [-85.636837, 41.946615] }, - "n2189123280": { - "id": "n2189123280", + "n2351": { + "id": "n2351", "loc": [-85.637954, 41.948909] }, - "n2189123282": { - "id": "n2189123282", + "n2352": { + "id": "n2352", "loc": [-85.638382, 41.949786] }, - "n2189123285": { - "id": "n2189123285", + "n2353": { + "id": "n2353", "loc": [-85.639367, 41.951242] }, - "n2189123287": { - "id": "n2189123287", + "n2354": { + "id": "n2354", "loc": [-85.640554, 41.951777] }, - "n2189123289": { - "id": "n2189123289", + "n2355": { + "id": "n2355", "loc": [-85.6411, 41.952234] }, - "n2189123291": { - "id": "n2189123291", + "n2356": { + "id": "n2356", "loc": [-85.641742, 41.952657] }, - "n2189123293": { - "id": "n2189123293", + "n2357": { + "id": "n2357", "loc": [-85.642321, 41.952941] }, - "n2189123295": { - "id": "n2189123295", + "n2358": { + "id": "n2358", "loc": [-85.64277, 41.953228] }, - "n2189123297": { - "id": "n2189123297", + "n2359": { + "id": "n2359", "loc": [-85.643333, 41.953825] }, - "n2189123300": { - "id": "n2189123300", + "n2360": { + "id": "n2360", "loc": [-85.643579, 41.954365] }, - "n2189123301": { - "id": "n2189123301", + "n2361": { + "id": "n2361", "loc": [-85.644439, 41.954105] }, - "n2189123303": { - "id": "n2189123303", + "n2362": { + "id": "n2362", "loc": [-85.64506, 41.954] }, - "n2189123312": { - "id": "n2189123312", + "n2363": { + "id": "n2363", "loc": [-85.645483, 41.953911] }, - "n2189123314": { - "id": "n2189123314", + "n2364": { + "id": "n2364", "loc": [-85.646046, 41.953853] }, - "n2189123315": { - "id": "n2189123315", + "n2365": { + "id": "n2365", "loc": [-85.646318, 41.953717] }, - "n2189123316": { - "id": "n2189123316", + "n2366": { + "id": "n2366", "loc": [-85.646276, 41.953414] }, - "n2189123317": { - "id": "n2189123317", + "n2370": { + "id": "n2370", "loc": [-85.646, 41.953154] }, - "n2189123318": { - "id": "n2189123318", + "n2371": { + "id": "n2371", "loc": [-85.645222, 41.953193] }, - "n2189123319": { - "id": "n2189123319", + "n2372": { + "id": "n2372", "loc": [-85.644732, 41.953181] }, - "n2189123320": { - "id": "n2189123320", + "n2373": { + "id": "n2373", "loc": [-85.644064, 41.953298] }, - "n2189123321": { - "id": "n2189123321", + "n2374": { + "id": "n2374", "loc": [-85.643818, 41.953177] }, - "n2189123322": { - "id": "n2189123322", + "n2375": { + "id": "n2375", "loc": [-85.644001, 41.95284] }, - "n2189123323": { - "id": "n2189123323", + "n2377": { + "id": "n2377", "loc": [-85.644267, 41.952591] }, - "n2189123324": { - "id": "n2189123324", + "n2378": { + "id": "n2378", "loc": [-85.644288, 41.952328] }, - "n2189123326": { - "id": "n2189123326", + "n2380": { + "id": "n2380", "loc": [-85.644262, 41.952153] }, - "n2189123328": { - "id": "n2189123328", + "n2381": { + "id": "n2381", "loc": [-85.644168, 41.95204] }, - "n2189123330": { - "id": "n2189123330", + "n2382": { + "id": "n2382", "loc": [-85.64421, 41.951749] }, - "n2189123333": { - "id": "n2189123333", + "n2383": { + "id": "n2383", "loc": [-85.64385, 41.951586] }, - "n2189123336": { - "id": "n2189123336", + "n2386": { + "id": "n2386", "loc": [-85.643589, 41.951323] }, - "n2189123339": { - "id": "n2189123339", + "n2389": { + "id": "n2389", "loc": [-85.642535, 41.951031] }, - "n2189123342": { - "id": "n2189123342", + "n2390": { + "id": "n2390", "loc": [-85.642269, 41.95088] }, - "n2189123345": { - "id": "n2189123345", + "n2391": { + "id": "n2391", "loc": [-85.641878, 41.950814] }, - "n2189123348": { - "id": "n2189123348", + "n2392": { + "id": "n2392", "loc": [-85.641549, 41.950806] }, - "n2189123351": { - "id": "n2189123351", + "n2393": { + "id": "n2393", "loc": [-85.641103, 41.950549] }, - "n2189123353": { - "id": "n2189123353", + "n2396": { + "id": "n2396", "loc": [-85.641037, 41.949821] }, - "n2189123355": { - "id": "n2189123355", + "n2397": { + "id": "n2397", "loc": [-85.641006, 41.949433] }, - "n2189123357": { - "id": "n2189123357", + "n2401": { + "id": "n2401", "loc": [-85.641152, 41.948257] }, - "n2189123359": { - "id": "n2189123359", + "n2402": { + "id": "n2402", "loc": [-85.641055, 41.947304] }, - "n2189123368": { - "id": "n2189123368", + "n2403": { + "id": "n2403", "loc": [-85.638022, 41.945897] }, - "n2189123370": { - "id": "n2189123370", + "n2404": { + "id": "n2404", "loc": [-85.638672, 41.950778] }, - "w17968193": { - "id": "w17968193", + "w420": { + "id": "w420", "tags": { "highway": "residential", "name": "French Street" }, - "nodes": ["n185970906", "n185982877", "n185967774", "n185985823"] + "nodes": ["n1840", "n1847", "n1838", "n1849"] }, - "w203972939": { - "id": "w203972939", + "w421": { + "id": "w421", "tags": { "highway": "path" }, - "nodes": ["n2139858965", "n2139858966"] + "nodes": ["n2337", "n2268"] }, - "w203988289": { - "id": "w203988289", + "w422": { + "id": "w422", "tags": { "natural": "water" }, "nodes": [ - "n2140006367", - "n2140006368", - "n2140006419", - "n2140006369", - "n2140006417", - "n2140006370", - "n2140006372", - "n2140006374", - "n2140006376", - "n2140006378", - "n2140006380", - "n2140006382", - "n2140006389", - "n2140006391", - "n2140006393", - "n2140006367" + "n2338", + "n2339", + "n2320", + "n2317", + "n2319", + "n2318", + "n2340", + "n2341", + "n2342", + "n2343", + "n2344", + "n2345", + "n2346", + "n2347", + "n2348", + "n2338" ] }, - "w208640157": { - "id": "w208640157", + "w423": { + "id": "w423", "tags": { "natural": "wetland" }, "nodes": [ - "n1819849029", - "n2189123275", - "n2189123278", - "n2189123280", - "n2189123282", - "n2189123370", - "n2189123285", - "n2189123287", - "n2189123289", - "n2189123291", - "n2189123293", - "n2189123295", - "n2189123297", - "n2189123300", - "n2189123301", - "n2189123303", - "n2189123312", - "n2189123314", - "n2189123315", - "n2189123316", - "n2189123317", - "n2189123318", - "n2189123319", - "n2189123320", - "n2189123321", - "n2189123322", - "n2189123323", - "n2189123324", - "n2189123326", - "n2189123328", - "n2189123330", - "n2189123333", - "n2189123336", - "n2189123339", - "n2189123342", - "n2189123345", - "n2189123348", - "n2189123351", - "n2189123353", - "n2189123355", - "n2189123357", - "n2189123359", - "n2189123361", - "n2189123363", - "n2189123365", - "n2189123368", - "n1819849029" + "n2180", + "n2349", + "n2350", + "n2351", + "n2352", + "n2404", + "n2353", + "n2354", + "n2355", + "n2356", + "n2357", + "n2358", + "n2359", + "n2360", + "n2361", + "n2362", + "n2363", + "n2364", + "n2365", + "n2366", + "n2370", + "n2371", + "n2372", + "n2373", + "n2374", + "n2375", + "n2377", + "n2378", + "n2380", + "n2381", + "n2382", + "n2383", + "n2386", + "n2389", + "n2390", + "n2391", + "n2392", + "n2393", + "n2396", + "n2397", + "n2401", + "n2402", + "n2321", + "n2322", + "n2323", + "n2403", + "n2180" ] }, - "w17966281": { - "id": "w17966281", + "w424": { + "id": "w424", "tags": { "highway": "residential", "name": "Pealer Street" }, - "nodes": ["n185975913", "n185975925", "n185970909", "n1475284013", "n1475283980", "n185975928", "n185967775", "n185975930"] + "nodes": ["n2324", "n2316", "n1841", "n2315", "n2314", "n1844", "n1839", "n1845"] }, - "w203972938": { - "id": "w203972938", + "w425": { + "id": "w425", "tags": { "highway": "path", "name": "Riverwalk Trail" }, "nodes": [ - "n2139858964", - "n2139858965", - "n2139858963", - "n2139858962", - "n2139858961", - "n2139858960", - "n2139858959", - "n2139858958", - "n2139858957", + "n2267", + "n2337", + "n2336", + "n2335", + "n2334", + "n2333", + "n2332", + "n2331", + "n2330", "n37", - "n2139858956", - "n2139858955", - "n2139858954", + "n2329", + "n2328", + "n2327", "n36", - "n2139858953", - "n2139858952", - "n2139858951" + "n2326", + "n2325", + "n2266" ] }, - "n354002665": { - "id": "n354002665", + "n2405": { + "id": "n2405", "loc": [-85.63666, 41.944492], "tags": { "name": "Memory Isle", "place": "island" } }, - "n354031301": { - "id": "n354031301", + "n2406": { + "id": "n2406", "loc": [-85.635, 41.946389], "tags": { "amenity": "post_office", "name": "Three Rivers Post Office" } }, - "n185963454": { - "id": "n185963454", + "n2407": { + "id": "n2407", "loc": [-85.633676, 41.946036] }, - "n185963455": { - "id": "n185963455", + "n2408": { + "id": "n2408", "loc": [-85.633736, 41.946078] }, - "n185963456": { - "id": "n185963456", + "n2409": { + "id": "n2409", "loc": [-85.633997, 41.946185] }, - "n185978375": { - "id": "n185978375", + "n2410": { + "id": "n2410", "loc": [-85.634448, 41.945626], "tags": { "highway": "traffic_signals", "traffic_signals": "signal" } }, - "n185978377": { - "id": "n185978377", + "n2411": { + "id": "n2411", "loc": [-85.63456, 41.945731], "tags": { "highway": "crossing", "crossing": "zebra" } }, - "n185978379": { - "id": "n185978379", + "n2412": { + "id": "n2412", "loc": [-85.634592, 41.94578] }, - "n185978381": { - "id": "n185978381", + "n2413": { + "id": "n2413", "loc": [-85.634607, 41.945815] }, - "n185978383": { - "id": "n185978383", + "n2414": { + "id": "n2414", "loc": [-85.634614, 41.945864] }, - "n185984011": { - "id": "n185984011", + "n2415": { + "id": "n2415", "loc": [-85.636066, 41.946185] }, - "n185984013": { - "id": "n185984013", + "n2416": { + "id": "n2416", "loc": [-85.636128, 41.946352] }, - "n185984015": { - "id": "n185984015", + "n2417": { + "id": "n2417", "loc": [-85.636142, 41.946452] }, - "n185988969": { - "id": "n185988969", + "n2418": { + "id": "n2418", "loc": [-85.635327, 41.945292] }, - "n185988971": { - "id": "n185988971", + "n2419": { + "id": "n2419", "loc": [-85.635648, 41.94558] }, - "n185988972": { - "id": "n185988972", + "n2420": { + "id": "n2420", "loc": [-85.635769, 41.945729] }, - "n1475283992": { - "id": "n1475283992", + "n2421": { + "id": "n2421", "loc": [-85.637349, 41.945897] }, - "n1475284011": { - "id": "n1475284011", + "n2423": { + "id": "n2423", "loc": [-85.635942, 41.94598] }, - "n1475284019": { - "id": "n1475284019", + "n2424": { + "id": "n2424", "loc": [-85.636443, 41.946042] }, - "n185988239": { - "id": "n185988239", + "n2425": { + "id": "n2425", "loc": [-85.635819, 41.946052] }, - "n185988243": { - "id": "n185988243", + "n2426": { + "id": "n2426", "loc": [-85.636669, 41.946025] }, - "n185988244": { - "id": "n185988244", + "n2427": { + "id": "n2427", "loc": [-85.636832, 41.946005] }, - "n185988245": { - "id": "n185988245", + "n2428": { + "id": "n2428", "loc": [-85.637039, 41.945968] }, - "n185988241": { - "id": "n185988241", + "n2429": { + "id": "n2429", "loc": [-85.636291, 41.946046] }, - "n185964976": { - "id": "n185964976", + "n2430": { + "id": "n2430", "loc": [-85.634005, 41.943367] }, - "n185964980": { - "id": "n185964980", + "n2431": { + "id": "n2431", "loc": [-85.633366, 41.943724] }, - "n185978388": { - "id": "n185978388", + "n2432": { + "id": "n2432", "loc": [-85.634617, 41.946057] }, - "n1819858504": { - "id": "n1819858504", + "n2433": { + "id": "n2433", "loc": [-85.636534, 41.944793] }, - "n1819858506": { - "id": "n1819858506", + "n2434": { + "id": "n2434", "loc": [-85.637055, 41.945188] }, - "n1819858519": { - "id": "n1819858519", + "n2435": { + "id": "n2435", "loc": [-85.636153, 41.944618] }, - "n1819858525": { - "id": "n1819858525", + "n2436": { + "id": "n2436", "loc": [-85.636803, 41.944944] }, - "n1819858527": { - "id": "n1819858527", + "n2437": { + "id": "n2437", "loc": [-85.633389, 41.945735] }, - "n185963452": { - "id": "n185963452", + "n2438": { + "id": "n2438", "loc": [-85.633536, 41.94585] }, - "n185963453": { - "id": "n185963453", + "n2439": { + "id": "n2439", "loc": [-85.63363, 41.945993] }, - "n185963451": { - "id": "n185963451", + "n2440": { + "id": "n2440", "loc": [-85.633268, 41.94568] }, - "n2130304152": { - "id": "n2130304152", + "n2441": { + "id": "n2441", "loc": [-85.635947, 41.94546] }, - "n2130304153": { - "id": "n2130304153", + "n2442": { + "id": "n2442", "loc": [-85.636277, 41.945268] }, - "n2130304154": { - "id": "n2130304154", + "n2443": { + "id": "n2443", "loc": [-85.635203, 41.944287] }, - "n2130304155": { - "id": "n2130304155", + "n2444": { + "id": "n2444", "loc": [-85.634876, 41.944477] }, - "n2130304156": { - "id": "n2130304156", + "n2445": { + "id": "n2445", "loc": [-85.634975, 41.944419] }, - "n2130304157": { - "id": "n2130304157", + "n2446": { + "id": "n2446", "loc": [-85.633877, 41.943438] }, - "n2130304158": { - "id": "n2130304158", + "n2447": { + "id": "n2447", "loc": [-85.63508, 41.945113] }, - "n2130304160": { - "id": "n2130304160", + "n2448": { + "id": "n2448", "loc": [-85.635372, 41.944932] }, - "n2130304162": { - "id": "n2130304162", + "n2449": { + "id": "n2449", "loc": [-85.636594, 41.945935] }, - "n2130304163": { - "id": "n2130304163", + "n2450": { + "id": "n2450", "loc": [-85.636901, 41.945747] }, - "n2130304164": { - "id": "n2130304164", + "n2451": { + "id": "n2451", "loc": [-85.636329, 41.945228] }, - "n2130304165": { - "id": "n2130304165", + "n2452": { + "id": "n2452", "loc": [-85.636025, 41.945417] }, - "n2139824683": { - "id": "n2139824683", + "n2453": { + "id": "n2453", "loc": [-85.634002, 41.944644] }, - "n2139824689": { - "id": "n2139824689", + "n2454": { + "id": "n2454", "loc": [-85.63407, 41.944692] }, - "n2139824702": { - "id": "n2139824702", + "n2455": { + "id": "n2455", "loc": [-85.634114, 41.944756] }, - "n2139824705": { - "id": "n2139824705", + "n2456": { + "id": "n2456", "loc": [-85.633762, 41.944809] }, - "n2139824707": { - "id": "n2139824707", + "n2457": { + "id": "n2457", "loc": [-85.634184, 41.944807] }, - "n2139824710": { - "id": "n2139824710", + "n2458": { + "id": "n2458", "loc": [-85.634291, 41.944819] }, - "n2139824712": { - "id": "n2139824712", + "n2459": { + "id": "n2459", "loc": [-85.634639, 41.944845] }, - "n2139824713": { - "id": "n2139824713", + "n2460": { + "id": "n2460", "loc": [-85.633822, 41.944861] }, - "n2139824714": { - "id": "n2139824714", + "n2461": { + "id": "n2461", "loc": [-85.63411, 41.944855] }, - "n2139824716": { - "id": "n2139824716", + "n2462": { + "id": "n2462", "loc": [-85.63435, 41.944872] }, - "n2139824717": { - "id": "n2139824717", + "n2463": { + "id": "n2463", "loc": [-85.63441, 41.944903] }, - "n2139824720": { - "id": "n2139824720", + "n2464": { + "id": "n2464", "loc": [-85.633883, 41.944913] }, - "n2139824721": { - "id": "n2139824721", + "n2465": { + "id": "n2465", "loc": [-85.634164, 41.944896] }, - "n2139824724": { - "id": "n2139824724", + "n2466": { + "id": "n2466", "loc": [-85.633487, 41.944926] }, - "n2139824727": { - "id": "n2139824727", + "n2467": { + "id": "n2467", "loc": [-85.634736, 41.944929] }, - "n2139824730": { - "id": "n2139824730", + "n2468": { + "id": "n2468", "loc": [-85.633944, 41.944965] }, - "n2139824732": { - "id": "n2139824732", + "n2469": { + "id": "n2469", "loc": [-85.633555, 41.944983] }, - "n2139824733": { - "id": "n2139824733", + "n2470": { + "id": "n2470", "loc": [-85.633995, 41.945013] }, - "n2139824735": { - "id": "n2139824735", + "n2471": { + "id": "n2471", "loc": [-85.633614, 41.945037] }, - "n2139824736": { - "id": "n2139824736", + "n2472": { + "id": "n2472", "loc": [-85.634848, 41.945031] }, - "n2139824737": { - "id": "n2139824737", + "n2473": { + "id": "n2473", "loc": [-85.634049, 41.945061] }, - "n2139824738": { - "id": "n2139824738", + "n2474": { + "id": "n2474", "loc": [-85.633678, 41.945094] }, - "n2139824744": { - "id": "n2139824744", + "n2475": { + "id": "n2475", "loc": [-85.63317, 41.945111] }, - "n2139824745": { - "id": "n2139824745", + "n2476": { + "id": "n2476", "loc": [-85.633357, 41.945103] }, - "n2139824747": { - "id": "n2139824747", + "n2477": { + "id": "n2477", "loc": [-85.633728, 41.945136] }, - "n2139824748": { - "id": "n2139824748", + "n2478": { + "id": "n2478", "loc": [-85.634146, 41.945148] }, - "n2139824749": { - "id": "n2139824749", + "n2479": { + "id": "n2479", "loc": [-85.633416, 41.945157] }, - "n2139824751": { - "id": "n2139824751", + "n2480": { + "id": "n2480", "loc": [-85.634625, 41.945172] }, - "n2139824752": { - "id": "n2139824752", + "n2481": { + "id": "n2481", "loc": [-85.633239, 41.945174] }, - "n2139824753": { - "id": "n2139824753", + "n2482": { + "id": "n2482", "loc": [-85.63469, 41.945185] }, - "n2139824755": { - "id": "n2139824755", + "n2483": { + "id": "n2483", "loc": [-85.634661, 41.945203] }, - "n2139824757": { - "id": "n2139824757", + "n2484": { + "id": "n2484", "loc": [-85.63348, 41.945214] }, - "n2139824758": { - "id": "n2139824758", + "n2485": { + "id": "n2485", "loc": [-85.633578, 41.945221] }, - "n2139824759": { - "id": "n2139824759", + "n2486": { + "id": "n2486", "loc": [-85.634742, 41.945231] }, - "n2139824761": { - "id": "n2139824761", + "n2487": { + "id": "n2487", "loc": [-85.634251, 41.94525] }, - "n2139824762": { - "id": "n2139824762", + "n2488": { + "id": "n2488", "loc": [-85.633524, 41.945254] }, - "n2139824764": { - "id": "n2139824764", + "n2489": { + "id": "n2489", "loc": [-85.63468, 41.945271] }, - "n2139824765": { - "id": "n2139824765", + "n2490": { + "id": "n2490", "loc": [-85.633885, 41.945272] }, - "n2139824766": { - "id": "n2139824766", + "n2491": { + "id": "n2491", "loc": [-85.634795, 41.945288] }, - "n2139824767": { - "id": "n2139824767", + "n2492": { + "id": "n2492", "loc": [-85.634742, 41.94532] }, - "n2139824768": { - "id": "n2139824768", + "n2493": { + "id": "n2493", "loc": [-85.633946, 41.945327] }, - "n2139824769": { - "id": "n2139824769", + "n2494": { + "id": "n2494", "loc": [-85.634844, 41.945331] }, - "n2139824772": { - "id": "n2139824772", + "n2495": { + "id": "n2495", "loc": [-85.63435, 41.945349] }, - "n2139824774": { - "id": "n2139824774", + "n2496": { + "id": "n2496", "loc": [-85.633733, 41.945357] }, - "n2139824775": { - "id": "n2139824775", + "n2497": { + "id": "n2497", "loc": [-85.633987, 41.945375] }, - "n2139824777": { - "id": "n2139824777", + "n2498": { + "id": "n2498", "loc": [-85.634911, 41.945419] }, - "n2139824779": { - "id": "n2139824779", + "n2499": { + "id": "n2499", "loc": [-85.634049, 41.945431] }, - "n2139824780": { - "id": "n2139824780", + "n2500": { + "id": "n2500", "loc": [-85.633705, 41.945461] }, - "n2139824781": { - "id": "n2139824781", + "n2501": { + "id": "n2501", "loc": [-85.633642, 41.945408] }, - "n2139824782": { - "id": "n2139824782", + "n2502": { + "id": "n2502", "loc": [-85.634493, 41.945475] }, - "n2139824783": { - "id": "n2139824783", + "n2503": { + "id": "n2503", "loc": [-85.634106, 41.945484] }, - "n2139824784": { - "id": "n2139824784", + "n2504": { + "id": "n2504", "loc": [-85.635008, 41.945505] }, - "n2139824785": { - "id": "n2139824785", + "n2505": { + "id": "n2505", "loc": [-85.633757, 41.945506] }, - "n2139824787": { - "id": "n2139824787", + "n2506": { + "id": "n2506", "loc": [-85.634542, 41.945519] }, - "n2139824789": { - "id": "n2139824789", + "n2507": { + "id": "n2507", "loc": [-85.634162, 41.945536] }, - "n2139824790": { - "id": "n2139824790", + "n2508": { + "id": "n2508", "loc": [-85.633843, 41.945547] }, - "n2139824791": { - "id": "n2139824791", + "n2509": { + "id": "n2509", "loc": [-85.634919, 41.94556] }, - "n2139824792": { - "id": "n2139824792", + "n2510": { + "id": "n2510", "loc": [-85.633818, 41.945561] }, - "n2139824793": { - "id": "n2139824793", + "n2511": { + "id": "n2511", "loc": [-85.634638, 41.94559] }, - "n2139824795": { - "id": "n2139824795", + "n2512": { + "id": "n2512", "loc": [-85.633901, 41.945598] }, - "n2139824796": { - "id": "n2139824796", + "n2513": { + "id": "n2513", "loc": [-85.634257, 41.945626] }, - "n2139824797": { - "id": "n2139824797", + "n2514": { + "id": "n2514", "loc": [-85.633967, 41.945652] }, - "n2139824798": { - "id": "n2139824798", + "n2515": { + "id": "n2515", "loc": [-85.634735, 41.945676] }, - "n2139824799": { - "id": "n2139824799", + "n2516": { + "id": "n2516", "loc": [-85.635057, 41.945683] }, - "n2139824800": { - "id": "n2139824800", + "n2517": { + "id": "n2517", "loc": [-85.635296, 41.945703] }, - "n2139824801": { - "id": "n2139824801", + "n2518": { + "id": "n2518", "loc": [-85.635112, 41.945703] }, - "n2139824802": { - "id": "n2139824802", + "n2519": { + "id": "n2519", "loc": [-85.634782, 41.945729] }, - "n2139824803": { - "id": "n2139824803", + "n2520": { + "id": "n2520", "loc": [-85.634052, 41.945747] }, - "n2139824804": { - "id": "n2139824804", + "n2521": { + "id": "n2521", "loc": [-85.635296, 41.945757] }, - "n2139824805": { - "id": "n2139824805", + "n2522": { + "id": "n2522", "loc": [-85.635314, 41.945757] }, - "n2139824806": { - "id": "n2139824806", + "n2523": { + "id": "n2523", "loc": [-85.635112, 41.945761] }, - "n2139824807": { - "id": "n2139824807", + "n2524": { + "id": "n2524", "loc": [-85.63484, 41.945778] }, - "n2139824808": { - "id": "n2139824808", + "n2525": { + "id": "n2525", "loc": [-85.635314, 41.945938] }, - "n2139824809": { - "id": "n2139824809", + "n2526": { + "id": "n2526", "loc": [-85.63484, 41.945922] }, - "n2139832635": { - "id": "n2139832635", + "n2527": { + "id": "n2527", "loc": [-85.635461, 41.944879] }, - "n2139832636": { - "id": "n2139832636", + "n2528": { + "id": "n2528", "loc": [-85.636024, 41.945384] }, - "n2139832637": { - "id": "n2139832637", + "n2529": { + "id": "n2529", "loc": [-85.636145, 41.945312] }, - "n2139832639": { - "id": "n2139832639", + "n2530": { + "id": "n2530", "loc": [-85.6356, 41.944797] }, - "n2139832641": { - "id": "n2139832641", + "n2531": { + "id": "n2531", "loc": [-85.635135, 41.944354] }, - "n2139832647": { - "id": "n2139832647", + "n2532": { + "id": "n2532", "loc": [-85.632988, 41.945369] }, - "n2139832653": { - "id": "n2139832653", + "n2533": { + "id": "n2533", "loc": [-85.633376, 41.94563] }, - "n2139832663": { - "id": "n2139832663", + "n2534": { + "id": "n2534", "loc": [-85.633539, 41.945534] }, - "n2139832665": { - "id": "n2139832665", + "n2535": { + "id": "n2535", "loc": [-85.633238, 41.945248] }, - "n2139832667": { - "id": "n2139832667", + "n2536": { + "id": "n2536", "loc": [-85.633166, 41.945216] }, - "n2139832669": { - "id": "n2139832669", + "n2537": { + "id": "n2537", "loc": [-85.633114, 41.945188] }, - "n2139832671": { - "id": "n2139832671", + "n2538": { + "id": "n2538", "loc": [-85.633078, 41.945127] }, - "n2139832673": { - "id": "n2139832673", + "n2539": { + "id": "n2539", "loc": [-85.633066, 41.94508] }, - "n2139832678": { - "id": "n2139832678", + "n2540": { + "id": "n2540", "loc": [-85.633222, 41.945358] }, - "n2139832686": { - "id": "n2139832686", + "n2541": { + "id": "n2541", "loc": [-85.633425, 41.945541] }, - "n2139832691": { - "id": "n2139832691", + "n2542": { + "id": "n2542", "loc": [-85.63299, 41.9455] }, - "n2139832693": { - "id": "n2139832693", + "n2543": { + "id": "n2543", "loc": [-85.634374, 41.944327] }, - "n2139832694": { - "id": "n2139832694", + "n2544": { + "id": "n2544", "loc": [-85.633648, 41.943697] }, - "n2139832696": { - "id": "n2139832696", + "n2545": { + "id": "n2545", "loc": [-85.633533, 41.943764] }, - "n2139832698": { - "id": "n2139832698", + "n2546": { + "id": "n2546", "loc": [-85.634239, 41.944417] }, - "n2139832700": { - "id": "n2139832700", + "n2547": { + "id": "n2547", "loc": [-85.634122, 41.944395] }, - "n2139832701": { - "id": "n2139832701", + "n2548": { + "id": "n2548", "loc": [-85.634235, 41.944326] }, - "n2139832702": { - "id": "n2139832702", + "n2549": { + "id": "n2549", "loc": [-85.633613, 41.943787] }, - "n2139832703": { - "id": "n2139832703", + "n2550": { + "id": "n2550", "loc": [-85.633915, 41.943613] }, - "n2139832704": { - "id": "n2139832704", + "n2551": { + "id": "n2551", "loc": [-85.634015, 41.943555] }, - "n2139832706": { - "id": "n2139832706", + "n2552": { + "id": "n2552", "loc": [-85.63433, 41.943839] }, - "n2139832708": { - "id": "n2139832708", + "n2553": { + "id": "n2553", "loc": [-85.634236, 41.943894] }, - "n2139832709": { - "id": "n2139832709", + "n2554": { + "id": "n2554", "loc": [-85.635413, 41.946052] }, - "n2139832710": { - "id": "n2139832710", + "n2555": { + "id": "n2555", "loc": [-85.635405, 41.94569] }, - "n2139832711": { - "id": "n2139832711", + "n2556": { + "id": "n2556", "loc": [-85.635684, 41.945925] }, - "n2139832712": { - "id": "n2139832712", + "n2557": { + "id": "n2557", "loc": [-85.635614, 41.945742] }, - "n2139832713": { - "id": "n2139832713", + "n2558": { + "id": "n2558", "loc": [-85.635401, 41.945745] }, - "n2139832714": { - "id": "n2139832714", + "n2559": { + "id": "n2559", "loc": [-85.635406, 41.945928] }, - "n2139832715": { - "id": "n2139832715", + "n2560": { + "id": "n2560", "loc": [-85.633478, 41.943663] }, - "n2139832716": { - "id": "n2139832716", + "n2561": { + "id": "n2561", "loc": [-85.633291, 41.943526] }, - "n2139832717": { - "id": "n2139832717", + "n2562": { + "id": "n2562", "loc": [-85.633094, 41.943541] }, - "n2139832721": { - "id": "n2139832721", + "n2563": { + "id": "n2563", "loc": [-85.633302, 41.943492] }, - "n2139832722": { - "id": "n2139832722", + "n2564": { + "id": "n2564", "loc": [-85.633047, 41.943623] }, - "n2139832723": { - "id": "n2139832723", + "n2565": { + "id": "n2565", "loc": [-85.633275, 41.943562] }, - "n2139832724": { - "id": "n2139832724", + "n2566": { + "id": "n2566", "loc": [-85.633351, 41.943518] }, - "n2139832725": { - "id": "n2139832725", + "n2567": { + "id": "n2567", "loc": [-85.633224, 41.9434] }, - "n2139832726": { - "id": "n2139832726", + "n2568": { + "id": "n2568", "loc": [-85.633235, 41.943369] }, - "n2139870373": { - "id": "n2139870373", + "n2569": { + "id": "n2569", "loc": [-85.635179, 41.943911] }, - "n2139870374": { - "id": "n2139870374", + "n2570": { + "id": "n2570", "loc": [-85.635146, 41.943918] }, - "n2139870375": { - "id": "n2139870375", + "n2571": { + "id": "n2571", "loc": [-85.634888, 41.943905] }, - "n2139870376": { - "id": "n2139870376", + "n2572": { + "id": "n2572", "loc": [-85.634832, 41.943911] }, - "n2139870377": { - "id": "n2139870377", + "n2573": { + "id": "n2573", "loc": [-85.634638, 41.944007] }, - "n2139870378": { - "id": "n2139870378", + "n2574": { + "id": "n2574", "loc": [-85.634568, 41.94405] }, - "n2140006403": { - "id": "n2140006403", + "n2575": { + "id": "n2575", "loc": [-85.635994, 41.94501] }, - "n2140006405": { - "id": "n2140006405", + "n2576": { + "id": "n2576", "loc": [-85.636388, 41.944608] }, - "n2140006407": { - "id": "n2140006407", + "n2577": { + "id": "n2577", "loc": [-85.636215, 41.944787] }, - "n2140006409": { - "id": "n2140006409", + "n2578": { + "id": "n2578", "loc": [-85.637948, 41.944587] }, - "n2140006411": { - "id": "n2140006411", + "n2579": { + "id": "n2579", "loc": [-85.637849, 41.944567] }, - "n2140006413": { - "id": "n2140006413", + "n2580": { + "id": "n2580", "loc": [-85.637895, 41.944455] }, - "n2140006415": { - "id": "n2140006415", + "n2581": { + "id": "n2581", "loc": [-85.637996, 41.944477] }, - "n2140006421": { - "id": "n2140006421", + "n2582": { + "id": "n2582", "loc": [-85.635525, 41.94337] }, - "n2140006423": { - "id": "n2140006423", + "n2583": { + "id": "n2583", "loc": [-85.637847, 41.943923] }, - "n2140006425": { - "id": "n2140006425", + "n2584": { + "id": "n2584", "loc": [-85.637891, 41.944124] }, - "n2140006426": { - "id": "n2140006426", + "n2585": { + "id": "n2585", "loc": [-85.638167, 41.944229] }, - "n2140006427": { - "id": "n2140006427", + "n2586": { + "id": "n2586", "loc": [-85.638236, 41.944097] }, - "n2140006428": { - "id": "n2140006428", + "n2587": { + "id": "n2587", "loc": [-85.638207, 41.944025] }, - "n2140006429": { - "id": "n2140006429", + "n2588": { + "id": "n2588", "loc": [-85.638141, 41.943997] }, - "n2140006430": { - "id": "n2140006430", + "n2589": { + "id": "n2589", "loc": [-85.638057, 41.944015] }, - "n2140006433": { - "id": "n2140006433", + "n2590": { + "id": "n2590", "loc": [-85.637902, 41.944231] }, - "n2140006435": { - "id": "n2140006435", + "n2591": { + "id": "n2591", "loc": [-85.638134, 41.944307] }, - "n2140006436": { - "id": "n2140006436", + "n2592": { + "id": "n2592", "loc": [-85.638242, 41.944294] }, - "n2140006438": { - "id": "n2140006438", + "n2593": { + "id": "n2593", "loc": [-85.638274, 41.944222] }, - "n2140006439": { - "id": "n2140006439", + "n2594": { + "id": "n2594", "loc": [-85.638236, 41.944174] }, - "n2140006440": { - "id": "n2140006440", + "n2595": { + "id": "n2595", "loc": [-85.638207, 41.944157] }, - "n2140006441": { - "id": "n2140006441", + "n2596": { + "id": "n2596", "loc": [-85.637818, 41.943984] }, - "n2166205688": { - "id": "n2166205688", + "n2597": { + "id": "n2597", "loc": [-85.634996, 41.944439] }, - "n2168544780": { - "id": "n2168544780", + "n2598": { + "id": "n2598", "loc": [-85.633946, 41.945804] }, - "n2168544781": { - "id": "n2168544781", + "n2599": { + "id": "n2599", "loc": [-85.634102, 41.945864] }, - "n2168544782": { - "id": "n2168544782", + "n2600": { + "id": "n2600", "loc": [-85.633819, 41.945756] }, - "n2168544783": { - "id": "n2168544783", + "n2601": { + "id": "n2601", "loc": [-85.634025, 41.945975] }, - "n2168544784": { - "id": "n2168544784", + "n2602": { + "id": "n2602", "loc": [-85.633742, 41.945867] }, - "n2168544785": { - "id": "n2168544785", + "n2603": { + "id": "n2603", "loc": [-85.63373, 41.946004] }, - "n2168544786": { - "id": "n2168544786", + "n2604": { + "id": "n2604", "loc": [-85.633947, 41.946081] }, - "n2168544787": { - "id": "n2168544787", + "n2605": { + "id": "n2605", "loc": [-85.633872, 41.945917] }, - "n2168544788": { - "id": "n2168544788", + "n2606": { + "id": "n2606", "loc": [-85.633825, 41.945985] }, - "n2168544789": { - "id": "n2168544789", + "n2607": { + "id": "n2607", "loc": [-85.633762, 41.94596] }, - "n2168544790": { - "id": "n2168544790", + "n2608": { + "id": "n2608", "loc": [-85.634224, 41.946037] }, - "n2168544791": { - "id": "n2168544791", + "n2609": { + "id": "n2609", "loc": [-85.634357, 41.945851] }, - "n2168544792": { - "id": "n2168544792", + "n2610": { + "id": "n2610", "loc": [-85.634398, 41.945813] }, - "n2168544793": { - "id": "n2168544793", + "n2611": { + "id": "n2611", "loc": [-85.634461, 41.945812] }, - "n2168544795": { - "id": "n2168544795", + "n2612": { + "id": "n2612", "loc": [-85.634501, 41.945852] }, - "n2168544797": { - "id": "n2168544797", + "n2613": { + "id": "n2613", "loc": [-85.634503, 41.94597] }, - "n2168544798": { - "id": "n2168544798", + "n2614": { + "id": "n2614", "loc": [-85.634462, 41.945971] }, - "n2168544799": { - "id": "n2168544799", + "n2615": { + "id": "n2615", "loc": [-85.634465, 41.946036] }, - "n2168544800": { - "id": "n2168544800", + "n2616": { + "id": "n2616", "loc": [-85.634235, 41.946072] }, - "n2168544802": { - "id": "n2168544802", + "n2617": { + "id": "n2617", "loc": [-85.634447, 41.946036] }, - "n2168544805": { - "id": "n2168544805", + "n2618": { + "id": "n2618", "loc": [-85.634448, 41.946052] }, - "n2168544807": { - "id": "n2168544807", + "n2619": { + "id": "n2619", "loc": [-85.634494, 41.946051] }, - "n2168544809": { - "id": "n2168544809", + "n2620": { + "id": "n2620", "loc": [-85.634497, 41.946144] }, - "n2168544811": { - "id": "n2168544811", + "n2621": { + "id": "n2621", "loc": [-85.634453, 41.946144] }, - "n2168544813": { - "id": "n2168544813", + "n2622": { + "id": "n2622", "loc": [-85.634454, 41.94616] }, - "n2168544815": { - "id": "n2168544815", + "n2623": { + "id": "n2623", "loc": [-85.634393, 41.946161] }, - "n2168544817": { - "id": "n2168544817", + "n2624": { + "id": "n2624", "loc": [-85.634394, 41.94618] }, - "n2168544819": { - "id": "n2168544819", + "n2625": { + "id": "n2625", "loc": [-85.634345, 41.94618] }, - "n2168544821": { - "id": "n2168544821", + "n2626": { + "id": "n2626", "loc": [-85.634344, 41.946162] }, - "n2168544823": { - "id": "n2168544823", + "n2627": { + "id": "n2627", "loc": [-85.63427, 41.946163] }, - "n2168544825": { - "id": "n2168544825", + "n2628": { + "id": "n2628", "loc": [-85.634266, 41.946071] }, - "n2168544827": { - "id": "n2168544827", + "n2629": { + "id": "n2629", "loc": [-85.634148, 41.946163] }, - "n2168544829": { - "id": "n2168544829", + "n2630": { + "id": "n2630", "loc": [-85.634213, 41.946072] }, - "n2168544830": { - "id": "n2168544830", + "n2631": { + "id": "n2631", "loc": [-85.633293, 41.946309] }, - "n2168544831": { - "id": "n2168544831", + "n2632": { + "id": "n2632", "loc": [-85.633122, 41.946239] }, - "n2168544832": { - "id": "n2168544832", + "n2633": { + "id": "n2633", "loc": [-85.633295, 41.946005] }, - "n2168544833": { - "id": "n2168544833", + "n2634": { + "id": "n2634", "loc": [-85.633395, 41.946047] }, - "n2168544834": { - "id": "n2168544834", + "n2635": { + "id": "n2635", "loc": [-85.633404, 41.946035] }, - "n2168544835": { - "id": "n2168544835", + "n2636": { + "id": "n2636", "loc": [-85.633459, 41.946057] }, - "n2168544836": { - "id": "n2168544836", + "n2637": { + "id": "n2637", "loc": [-85.633387, 41.946154] }, - "n2168544837": { - "id": "n2168544837", + "n2638": { + "id": "n2638", "loc": [-85.633403, 41.946161] }, - "n2168544838": { - "id": "n2168544838", + "n2639": { + "id": "n2639", "loc": [-85.634176, 41.946415] }, - "n2168544839": { - "id": "n2168544839", + "n2640": { + "id": "n2640", "loc": [-85.634179, 41.946339] }, - "n2168544840": { - "id": "n2168544840", + "n2641": { + "id": "n2641", "loc": [-85.634455, 41.946345] }, - "n2168544841": { - "id": "n2168544841", + "n2642": { + "id": "n2642", "loc": [-85.634452, 41.946422] }, - "n2168544842": { - "id": "n2168544842", + "n2643": { + "id": "n2643", "loc": [-85.63437, 41.946421] }, - "n2168544843": { - "id": "n2168544843", + "n2644": { + "id": "n2644", "loc": [-85.634367, 41.946497] }, - "n2168544844": { - "id": "n2168544844", + "n2645": { + "id": "n2645", "loc": [-85.634289, 41.946495] }, - "n2168544845": { - "id": "n2168544845", + "n2646": { + "id": "n2646", "loc": [-85.634291, 41.946448] }, - "n2168544846": { - "id": "n2168544846", + "n2647": { + "id": "n2647", "loc": [-85.634269, 41.946448] }, - "n2168544847": { - "id": "n2168544847", + "n2648": { + "id": "n2648", "loc": [-85.63427, 41.946417] }, - "n2168544848": { - "id": "n2168544848", + "n2649": { + "id": "n2649", "loc": [-85.63484, 41.946328] }, - "n2168544849": { - "id": "n2168544849", + "n2650": { + "id": "n2650", "loc": [-85.634839, 41.946187] }, - "n2168544850": { - "id": "n2168544850", + "n2651": { + "id": "n2651", "loc": [-85.635148, 41.946186] }, - "n2168544851": { - "id": "n2168544851", + "n2652": { + "id": "n2652", "loc": [-85.635148, 41.946216] }, - "n2168544852": { - "id": "n2168544852", + "n2653": { + "id": "n2653", "loc": [-85.63521, 41.946216] }, - "n2168544853": { - "id": "n2168544853", + "n2654": { + "id": "n2654", "loc": [-85.63521, 41.946348] }, - "n2168544854": { - "id": "n2168544854", + "n2655": { + "id": "n2655", "loc": [-85.635154, 41.946348] }, - "n2168544855": { - "id": "n2168544855", + "n2656": { + "id": "n2656", "loc": [-85.635153, 41.946327] }, - "n2189153180": { - "id": "n2189153180", + "n2657": { + "id": "n2657", "loc": [-85.634037, 41.946957] }, - "n2189153181": { - "id": "n2189153181", + "n2658": { + "id": "n2658", "loc": [-85.634253, 41.946953] }, - "n2189153183": { - "id": "n2189153183", + "n2659": { + "id": "n2659", "loc": [-85.63481, 41.946543] }, - "n2189153184": { - "id": "n2189153184", + "n2660": { + "id": "n2660", "loc": [-85.634809, 41.946459] }, - "n2189153185": { - "id": "n2189153185", + "n2661": { + "id": "n2661", "loc": [-85.635154, 41.946458] }, - "n2189153186": { - "id": "n2189153186", + "n2662": { + "id": "n2662", "loc": [-85.635155, 41.946554] }, - "n2189153187": { - "id": "n2189153187", + "n2663": { + "id": "n2663", "loc": [-85.635022, 41.946547] }, - "n2189153188": { - "id": "n2189153188", + "n2664": { + "id": "n2664", "loc": [-85.635022, 41.946573] }, - "n2189153189": { - "id": "n2189153189", + "n2665": { + "id": "n2665", "loc": [-85.634909, 41.946574] }, - "n2189153190": { - "id": "n2189153190", + "n2666": { + "id": "n2666", "loc": [-85.634909, 41.946561] }, - "n2189153191": { - "id": "n2189153191", + "n2667": { + "id": "n2667", "loc": [-85.634896, 41.947159] }, - "n2189153192": { - "id": "n2189153192", + "n2668": { + "id": "n2668", "loc": [-85.634894, 41.947032] }, - "n2189153193": { - "id": "n2189153193", + "n2669": { + "id": "n2669", "loc": [-85.635024, 41.947031] }, - "n2189153194": { - "id": "n2189153194", + "n2670": { + "id": "n2670", "loc": [-85.635026, 41.947158] }, - "n2189153195": { - "id": "n2189153195", + "n2671": { + "id": "n2671", "loc": [-85.635233, 41.947105] }, - "n2189153196": { - "id": "n2189153196", + "n2672": { + "id": "n2672", "loc": [-85.635236, 41.946991] }, - "n2189153197": { - "id": "n2189153197", + "n2673": { + "id": "n2673", "loc": [-85.635369, 41.946993] }, - "n2189153198": { - "id": "n2189153198", + "n2674": { + "id": "n2674", "loc": [-85.635366, 41.947107] }, - "n2189153199": { - "id": "n2189153199", + "n2675": { + "id": "n2675", "loc": [-85.634824, 41.946929] }, - "n2189153200": { - "id": "n2189153200", + "n2676": { + "id": "n2676", "loc": [-85.634825, 41.946818] }, - "n2189153201": { - "id": "n2189153201", + "n2677": { + "id": "n2677", "loc": [-85.63512, 41.946819] }, - "n2189153202": { - "id": "n2189153202", + "n2678": { + "id": "n2678", "loc": [-85.635119, 41.94693] }, - "n2189153203": { - "id": "n2189153203", + "n2679": { + "id": "n2679", "loc": [-85.634796, 41.946806] }, - "n2189153204": { - "id": "n2189153204", + "n2680": { + "id": "n2680", "loc": [-85.634792, 41.946604] }, - "n2189153205": { - "id": "n2189153205", + "n2681": { + "id": "n2681", "loc": [-85.634948, 41.946602] }, - "n2189153206": { - "id": "n2189153206", + "n2682": { + "id": "n2682", "loc": [-85.634949, 41.946645] }, - "n2189153207": { - "id": "n2189153207", + "n2683": { + "id": "n2683", "loc": [-85.634975, 41.946644] }, - "n2189153208": { - "id": "n2189153208", + "n2684": { + "id": "n2684", "loc": [-85.634974, 41.946599] }, - "n2189153209": { - "id": "n2189153209", + "n2685": { + "id": "n2685", "loc": [-85.635117, 41.946598] }, - "n2189153210": { - "id": "n2189153210", + "n2686": { + "id": "n2686", "loc": [-85.635122, 41.946801] }, - "n2189153211": { - "id": "n2189153211", + "n2687": { + "id": "n2687", "loc": [-85.634981, 41.946803] }, - "n2189153212": { - "id": "n2189153212", + "n2688": { + "id": "n2688", "loc": [-85.634979, 41.946752] }, - "n2189153213": { - "id": "n2189153213", + "n2689": { + "id": "n2689", "loc": [-85.634952, 41.946752] }, - "n2189153214": { - "id": "n2189153214", + "n2690": { + "id": "n2690", "loc": [-85.634953, 41.946804] }, - "n2189153215": { - "id": "n2189153215", + "n2691": { + "id": "n2691", "loc": [-85.634649, 41.946841] }, - "n2189153216": { - "id": "n2189153216", + "n2692": { + "id": "n2692", "loc": [-85.634331, 41.94684] }, - "n2189153217": { - "id": "n2189153217", + "n2693": { + "id": "n2693", "loc": [-85.634183, 41.946809] }, - "n2189153218": { - "id": "n2189153218", + "n2694": { + "id": "n2694", "loc": [-85.633699, 41.946607] }, - "n2189153219": { - "id": "n2189153219", + "n2695": { + "id": "n2695", "loc": [-85.634487, 41.946664] }, - "n2189153220": { - "id": "n2189153220", + "n2696": { + "id": "n2696", "loc": [-85.634486, 41.946598] }, - "n2189153221": { - "id": "n2189153221", + "n2697": { + "id": "n2697", "loc": [-85.63423, 41.946599] }, - "n2189153222": { - "id": "n2189153222", + "n2698": { + "id": "n2698", "loc": [-85.634231, 41.946662] }, - "n2189153223": { - "id": "n2189153223", + "n2699": { + "id": "n2699", "loc": [-85.634284, 41.946662] }, - "n2189153224": { - "id": "n2189153224", + "n2700": { + "id": "n2700", "loc": [-85.634284, 41.946679] }, - "n2189153225": { - "id": "n2189153225", + "n2701": { + "id": "n2701", "loc": [-85.634365, 41.946679] }, - "n2189153226": { - "id": "n2189153226", + "n2702": { + "id": "n2702", "loc": [-85.634365, 41.946664] }, - "n2189153227": { - "id": "n2189153227", + "n2703": { + "id": "n2703", "loc": [-85.635443, 41.947015] }, - "n2189153228": { - "id": "n2189153228", + "n2704": { + "id": "n2704", "loc": [-85.635442, 41.946801] }, - "n2189153229": { - "id": "n2189153229", + "n2705": { + "id": "n2705", "loc": [-85.63603, 41.9468] }, - "n2189153230": { - "id": "n2189153230", + "n2706": { + "id": "n2706", "loc": [-85.636028, 41.947016] }, - "n2189153231": { - "id": "n2189153231", + "n2707": { + "id": "n2707", "loc": [-85.635457, 41.946582] }, - "n2189153232": { - "id": "n2189153232", + "n2708": { + "id": "n2708", "loc": [-85.635455, 41.946211] }, - "n2189153233": { - "id": "n2189153233", + "n2709": { + "id": "n2709", "loc": [-85.635636, 41.946579] }, - "n2189153234": { - "id": "n2189153234", + "n2710": { + "id": "n2710", "loc": [-85.635716, 41.9468] }, - "n2189153235": { - "id": "n2189153235", + "n2711": { + "id": "n2711", "loc": [-85.635969, 41.9468] }, - "n2189153236": { - "id": "n2189153236", + "n2712": { + "id": "n2712", "loc": [-85.635973, 41.946295] }, - "n2189153237": { - "id": "n2189153237", + "n2713": { + "id": "n2713", "loc": [-85.636019, 41.946484] }, - "n2189153238": { - "id": "n2189153238", + "n2714": { + "id": "n2714", "loc": [-85.636022, 41.946388] }, - "n2189153239": { - "id": "n2189153239", + "n2715": { + "id": "n2715", "loc": [-85.635961, 41.946493] }, - "n2189153240": { - "id": "n2189153240", + "n2716": { + "id": "n2716", "loc": [-85.635713, 41.94621] }, - "n2189153242": { - "id": "n2189153242", + "n2717": { + "id": "n2717", "loc": [-85.635416, 41.946142] }, - "n2189153243": { - "id": "n2189153243", + "n2718": { + "id": "n2718", "loc": [-85.635759, 41.946203] }, - "n2189153246": { - "id": "n2189153246", + "n2719": { + "id": "n2719", "loc": [-85.636153, 41.946747] }, - "n2189153247": { - "id": "n2189153247", + "n2720": { + "id": "n2720", "loc": [-85.635417, 41.946915] }, - "n2189153250": { - "id": "n2189153250", + "n2721": { + "id": "n2721", "loc": [-85.636154, 41.946915] }, - "n2189153251": { - "id": "n2189153251", + "n2722": { + "id": "n2722", "loc": [-85.635866, 41.946473] }, - "n2189153253": { - "id": "n2189153253", + "n2723": { + "id": "n2723", "loc": [-85.635717, 41.946633] }, - "n2189153254": { - "id": "n2189153254", + "n2724": { + "id": "n2724", "loc": [-85.635556, 41.946166] }, - "n2189153255": { - "id": "n2189153255", + "n2725": { + "id": "n2725", "loc": [-85.63556, 41.946556] }, - "n2189153256": { - "id": "n2189153256", + "n2726": { + "id": "n2726", "loc": [-85.635731, 41.946594] }, - "n2189153257": { - "id": "n2189153257", + "n2727": { + "id": "n2727", "loc": [-85.635866, 41.946595] }, - "n2189153259": { - "id": "n2189153259", + "n2728": { + "id": "n2728", "loc": [-85.635456, 41.947028] }, - "n2189153260": { - "id": "n2189153260", + "n2729": { + "id": "n2729", "loc": [-85.635796, 41.947023] }, - "n2189153261": { - "id": "n2189153261", + "n2730": { + "id": "n2730", "loc": [-85.635798, 41.947091] }, - "n2189153262": { - "id": "n2189153262", + "n2731": { + "id": "n2731", "loc": [-85.63573, 41.947092] }, - "n2189153263": { - "id": "n2189153263", + "n2732": { + "id": "n2732", "loc": [-85.635733, 41.947233] }, - "n2189153264": { - "id": "n2189153264", + "n2733": { + "id": "n2733", "loc": [-85.636283, 41.946863] }, - "n2189153265": { - "id": "n2189153265", + "n2734": { + "id": "n2734", "loc": [-85.63628, 41.946706] }, - "n2189153266": { - "id": "n2189153266", + "n2735": { + "id": "n2735", "loc": [-85.636341, 41.946705] }, - "n2189153267": { - "id": "n2189153267", + "n2736": { + "id": "n2736", "loc": [-85.636273, 41.946584] }, - "n2189153268": { - "id": "n2189153268", + "n2737": { + "id": "n2737", "loc": [-85.636396, 41.946545] }, - "n2189153269": { - "id": "n2189153269", + "n2738": { + "id": "n2738", "loc": [-85.636474, 41.946684] }, - "n2189153270": { - "id": "n2189153270", + "n2739": { + "id": "n2739", "loc": [-85.636511, 41.946861] }, - "n2199109756": { - "id": "n2199109756", + "n2740": { + "id": "n2740", "loc": [-85.633713, 41.947184] }, - "n2199109757": { - "id": "n2199109757", + "n2741": { + "id": "n2741", "loc": [-85.633651, 41.94716] }, - "n2199109758": { - "id": "n2199109758", + "n2742": { + "id": "n2742", "loc": [-85.633704, 41.947085] }, - "n2199109759": { - "id": "n2199109759", + "n2743": { + "id": "n2743", "loc": [-85.6336, 41.947044] }, - "n2199109760": { - "id": "n2199109760", + "n2744": { + "id": "n2744", "loc": [-85.633506, 41.947177] }, - "n185960195": { - "id": "n185960195", + "n2745": { + "id": "n2745", "loc": [-85.629599, 41.952435] }, - "n185960796": { - "id": "n185960796", + "n2746": { + "id": "n2746", "loc": [-85.634723, 41.953681] }, - "n185961396": { - "id": "n185961396", + "n2747": { + "id": "n2747", "loc": [-85.634767, 41.959009] }, - "n185964982": { - "id": "n185964982", + "n2748": { + "id": "n2748", "loc": [-85.632793, 41.94405], "tags": { "highway": "traffic_signals", "traffic_signals": "signal" } }, - "n185965289": { - "id": "n185965289", + "n2749": { + "id": "n2749", "loc": [-85.634648, 41.947325] }, - "n185965291": { - "id": "n185965291", + "n2750": { + "id": "n2750", "loc": [-85.636166, 41.947296] }, - "n185966937": { - "id": "n185966937", + "n2751": { + "id": "n2751", "loc": [-85.633195, 41.94734] }, - "n185966948": { - "id": "n185966948", + "n2752": { + "id": "n2752", "loc": [-85.626447, 41.957168] }, - "n185967422": { - "id": "n185967422", + "n2753": { + "id": "n2753", "loc": [-85.632023, 41.949012] }, - "n185968100": { - "id": "n185968100", + "n2754": { + "id": "n2754", "loc": [-85.630835, 41.950656] }, - "n185971578": { - "id": "n185971578", + "n2755": { + "id": "n2755", "loc": [-85.634641, 41.948627] }, - "n185971580": { - "id": "n185971580", + "n2756": { + "id": "n2756", "loc": [-85.636182, 41.948614] }, - "n185971631": { - "id": "n185971631", + "n2757": { + "id": "n2757", "loc": [-85.634729, 41.954667] }, - "n185974583": { - "id": "n185974583", + "n2758": { + "id": "n2758", "loc": [-85.634686, 41.951158] }, - "n185974585": { - "id": "n185974585", + "n2759": { + "id": "n2759", "loc": [-85.636206, 41.951146] }, - "n185978390": { - "id": "n185978390", + "n2760": { + "id": "n2760", "loc": [-85.634668, 41.949875] }, - "n185978392": { - "id": "n185978392", + "n2761": { + "id": "n2761", "loc": [-85.634686, 41.952415] }, - "n185978394": { - "id": "n185978394", + "n2762": { + "id": "n2762", "loc": [-85.634726, 41.955921] }, - "n185978787": { - "id": "n185978787", + "n2763": { + "id": "n2763", "loc": [-85.627936, 41.954693] }, - "n185978790": { - "id": "n185978790", + "n2764": { + "id": "n2764", "loc": [-85.626832, 41.954698] }, - "n185978967": { - "id": "n185978967", + "n2765": { + "id": "n2765", "loc": [-85.632278, 41.948613] }, - "n185980735": { - "id": "n185980735", + "n2766": { + "id": "n2766", "loc": [-85.628639, 41.953725] }, - "n185982163": { - "id": "n185982163", + "n2767": { + "id": "n2767", "loc": [-85.636233, 41.952398] }, - "n185982193": { - "id": "n185982193", + "n2768": { + "id": "n2768", "loc": [-85.631385, 41.949913] }, - "n185982195": { - "id": "n185982195", + "n2769": { + "id": "n2769", "loc": [-85.630486, 41.951194] }, - "n185982196": { - "id": "n185982196", + "n2770": { + "id": "n2770", "loc": [-85.626375, 41.957279] }, - "n185982197": { - "id": "n185982197", + "n2771": { + "id": "n2771", "loc": [-85.625525, 41.95864] }, - "n185984017": { - "id": "n185984017", + "n2772": { + "id": "n2772", "loc": [-85.636163, 41.947382] }, - "n185984020": { - "id": "n185984020", + "n2773": { + "id": "n2773", "loc": [-85.636188, 41.949874] }, - "n185988036": { - "id": "n185988036", + "n2774": { + "id": "n2774", "loc": [-85.631422, 41.948294] }, - "n1819858502": { - "id": "n1819858502", + "n2775": { + "id": "n2775", "loc": [-85.632844, 41.945547] }, - "n1819858510": { - "id": "n1819858510", + "n2776": { + "id": "n2776", "loc": [-85.632484, 41.945344] }, - "n1819858515": { - "id": "n1819858515", + "n2777": { + "id": "n2777", "loc": [-85.631775, 41.944636] }, - "n1819858520": { - "id": "n1819858520", + "n2778": { + "id": "n2778", "loc": [-85.632656, 41.945471] }, - "n1819858522": { - "id": "n1819858522", + "n2779": { + "id": "n2779", "loc": [-85.631959, 41.944827] }, - "n1819858524": { - "id": "n1819858524", + "n2780": { + "id": "n2780", "loc": [-85.631679, 41.94438] }, - "n2139795768": { - "id": "n2139795768", + "n2781": { + "id": "n2781", "loc": [-85.623684, 41.961482] }, - "n2139832645": { - "id": "n2139832645", + "n2782": { + "id": "n2782", "loc": [-85.632446, 41.944861] }, - "n2139832649": { - "id": "n2139832649", + "n2783": { + "id": "n2783", "loc": [-85.632804, 41.945477] }, - "n2139832651": { - "id": "n2139832651", + "n2784": { + "id": "n2784", "loc": [-85.632255, 41.944962] }, - "n2139832675": { - "id": "n2139832675", + "n2785": { + "id": "n2785", "loc": [-85.632736, 41.944757] }, - "n2139832677": { - "id": "n2139832677", + "n2786": { + "id": "n2786", "loc": [-85.632543, 41.94486] }, - "n2139832680": { - "id": "n2139832680", + "n2787": { + "id": "n2787", "loc": [-85.632889, 41.945561] }, - "n2139832682": { - "id": "n2139832682", + "n2788": { + "id": "n2788", "loc": [-85.632091, 41.944949] }, - "n2139832684": { - "id": "n2139832684", + "n2789": { + "id": "n2789", "loc": [-85.632537, 41.944713] }, - "n2139832688": { - "id": "n2139832688", + "n2790": { + "id": "n2790", "loc": [-85.632279, 41.94485] }, - "n2139832718": { - "id": "n2139832718", + "n2791": { + "id": "n2791", "loc": [-85.632749, 41.943247] }, - "n2139832719": { - "id": "n2139832719", + "n2792": { + "id": "n2792", "loc": [-85.632824, 41.943152] }, - "n2139832720": { - "id": "n2139832720", + "n2793": { + "id": "n2793", "loc": [-85.632929, 41.94317] }, - "n2139832727": { - "id": "n2139832727", + "n2794": { + "id": "n2794", "loc": [-85.632897, 41.943078] }, - "n2139844839": { - "id": "n2139844839", + "n2795": { + "id": "n2795", "loc": [-85.632626, 41.943231] }, - "n2189153179": { - "id": "n2189153179", + "n2796": { + "id": "n2796", "loc": [-85.634048, 41.947257] }, - "n2189153182": { - "id": "n2189153182", + "n2797": { + "id": "n2797", "loc": [-85.634264, 41.947252] }, - "n2189153241": { - "id": "n2189153241", + "n2798": { + "id": "n2798", "loc": [-85.635418, 41.947309] }, - "n2189153258": { - "id": "n2189153258", + "n2799": { + "id": "n2799", "loc": [-85.635461, 41.947237] }, - "n2189153277": { - "id": "n2189153277", + "n2800": { + "id": "n2800", "loc": [-85.632868, 41.946229] }, - "n2199109755": { - "id": "n2199109755", + "n2801": { + "id": "n2801", "loc": [-85.633673, 41.947242] }, - "w203970098": { - "id": "w203970098", + "w426": { + "id": "w426", "tags": { "building": "yes" }, - "nodes": ["n2139824748", "n681", "n680", "n679", "n2139824712", "n2139824727", "n2139824761", "n2139824748"] + "nodes": ["n2478", "n681", "n680", "n679", "n2459", "n2467", "n2487", "n2478"] }, - "w208643132": { - "id": "w208643132", + "w427": { + "id": "w427", "tags": { "building": "yes" }, - "nodes": ["n2189153195", "n2189153196", "n2189153197", "n2189153198", "n2189153195"] + "nodes": ["n2671", "n2672", "n2673", "n2674", "n2671"] }, - "w203970094": { - "id": "w203970094", + "w428": { + "id": "w428", "tags": { "building": "yes" }, - "nodes": [ - "n2139824755", - "n2139824753", - "n2139824759", - "n2139824764", - "n2139824767", - "n2139824782", - "n2139824772", - "n2139824751", - "n2139824755" - ] + "nodes": ["n2483", "n2482", "n2486", "n2489", "n2492", "n2502", "n2495", "n2480", "n2483"] }, - "w208643138": { - "id": "w208643138", + "w429": { + "id": "w429", "tags": { "amenity": "parking" }, - "nodes": [ - "n2189153231", - "n2189153232", - "n2189153240", - "n2189153236", - "n2189153238", - "n2189153237", - "n2189153239", - "n2189153235", - "n2189153234", - "n2189153253", - "n2189153233", - "n2189153231" - ] + "nodes": ["n2707", "n2708", "n2716", "n2712", "n2714", "n2713", "n2715", "n2711", "n2710", "n2723", "n2709", "n2707"] }, - "w203970125": { - "id": "w203970125", + "w430": { + "id": "w430", "tags": { "building": "yes" }, - "nodes": ["n2139824735", "n2139824738", "n2139824757", "n2139824749", "n2139824735"] + "nodes": ["n2471", "n2474", "n2484", "n2479", "n2471"] }, - "w170848823": { - "id": "w170848823", + "w431": { + "id": "w431", "tags": { "name": "Rocky River", "waterway": "river" }, - "nodes": ["n1819858513", "n1819858506", "n1819858525", "n1819858504", "n1819858519", "n1819849189"] + "nodes": ["n2218", "n2434", "n2436", "n2433", "n2435", "n2210"] }, - "w203970898": { - "id": "w203970898", + "w432": { + "id": "w432", "tags": { "amenity": "parking" }, - "nodes": ["n2139832645", "n2139832647", "n2139832649", "n2139832651", "n2139832645"] + "nodes": ["n2782", "n2532", "n2783", "n2784", "n2782"] }, - "w203970134": { - "id": "w203970134", + "w433": { + "id": "w433", "tags": { "building": "yes" }, - "nodes": ["n2139824796", "n649", "n2139824803", "n2139824797", "n2139824789", "n2139824796"] + "nodes": ["n2513", "n649", "n2520", "n2514", "n2507", "n2513"] }, - "w203970104": { - "id": "w203970104", + "w434": { + "id": "w434", "tags": { "building": "yes" }, - "nodes": ["n2139824733", "n2139824730", "n2139824714", "n2139824721", "n2139824733"] + "nodes": ["n2470", "n2468", "n2461", "n2465", "n2470"] }, - "w206805245": { - "id": "w206805245", + "w435": { + "id": "w435", "tags": { "building": "yes" }, - "nodes": ["n2168544780", "n2168544781", "n648", "n649", "n2139824803", "n2168544780"] + "nodes": ["n2598", "n2599", "n648", "n649", "n2520", "n2598"] }, - "w206805252": { - "id": "w206805252", + "w436": { + "id": "w436", "tags": { "building": "yes" }, - "nodes": [ - "n2168544838", - "n2168544839", - "n2168544840", - "n2168544841", - "n2168544842", - "n2168544843", - "n2168544844", - "n2168544845", - "n2168544846", - "n2168544847", - "n2168544838" - ] + "nodes": ["n2639", "n2640", "n2641", "n2642", "n2643", "n2644", "n2645", "n2646", "n2647", "n2648", "n2639"] }, - "w203970099": { - "id": "w203970099", + "w437": { + "id": "w437", "tags": { "building": "yes" }, - "nodes": ["n2139824783", "n2139824795", "n2139824790", "n2139824779", "n2139824783"] + "nodes": ["n2503", "n2512", "n2508", "n2499", "n2503"] }, - "w17967730": { - "id": "w17967730", + "w438": { + "id": "w438", "tags": { "highway": "residential", "name": "Water Street" }, - "nodes": ["n185963451", "n2189153277", "n185988036", "n1"] + "nodes": ["n2440", "n2800", "n2774", "n1"] }, - "w208643133": { - "id": "w208643133", + "w439": { + "id": "w439", "tags": { "building": "yes" }, - "nodes": ["n2189153199", "n2189153200", "n2189153201", "n2189153202", "n2189153199"] + "nodes": ["n2675", "n2676", "n2677", "n2678", "n2675"] }, - "w203970127": { - "id": "w203970127", + "w440": { + "id": "w440", "tags": { "building": "yes" }, - "nodes": ["n2139824795", "n2139824783", "n2139824789", "n2139824797", "n2139824795"] + "nodes": ["n2512", "n2503", "n2507", "n2514", "n2512"] }, - "w208643139": { - "id": "w208643139", + "w441": { + "id": "w441", "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n2189153242", "n674", "n2189153247", "n2189153241"] + "nodes": ["n2554", "n2717", "n674", "n2720", "n2798"] }, - "w203988297": { - "id": "w203988297", + "w442": { + "id": "w442", "tags": { "amenity": "parking" }, - "nodes": [ - "n2140006423", - "n2140006441", - "n2140006425", - "n2140006426", - "n2140006440", - "n2140006427", - "n2140006428", - "n2140006429", - "n2140006430", - "n2140006423" - ] + "nodes": ["n2583", "n2596", "n2584", "n2585", "n2595", "n2586", "n2587", "n2588", "n2589", "n2583"] }, - "w206805250": { - "id": "w206805250", + "w443": { + "id": "w443", "tags": { "building": "yes" }, - "nodes": ["n2168544827", "n2168544823", "n2168544825", "n2168544800", "n2168544829", "n2168544827"] + "nodes": ["n2629", "n2627", "n2628", "n2616", "n2630", "n2629"] }, - "w208643140": { - "id": "w208643140", + "w444": { + "id": "w444", "tags": { "highway": "service", "service": "parking_aisle", "oneway": "yes" }, - "nodes": ["n2189153242", "n2189153254", "n670", "n2189153243", "n669", "n668", "n2189153251", "n2189153257"] + "nodes": ["n2717", "n2724", "n670", "n2718", "n669", "n668", "n2722", "n2727"] }, - "w203974055": { - "id": "w203974055", + "w445": { + "id": "w445", "tags": { "bridge": "yes", "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139870376", "n2139870377"] + "nodes": ["n2572", "n2573"] }, - "w206805247": { - "id": "w206805247", + "w446": { + "id": "w446", "tags": { "building": "yes" }, - "nodes": ["n2168544785", "n2168544786", "n2168544783", "n2168544787", "n2168544788", "n2168544789", "n2168544785"] + "nodes": ["n2603", "n2604", "n2601", "n2605", "n2606", "n2607", "n2603"] }, - "w17964996": { - "id": "w17964996", + "w447": { + "id": "w447", "tags": { "highway": "residential", "name": "Foster Street", "oneway": "yes" }, - "nodes": ["n1819858524", "n1819858515", "n628", "n624", "n1819858522"] + "nodes": ["n2780", "n2777", "n628", "n624", "n2779"] }, - "w208643144": { - "id": "w208643144", + "w448": { + "id": "w448", "tags": { "building": "yes" }, - "nodes": [ - "n2189153264", - "n2189153265", - "n2189153266", - "n2189153267", - "n2189153268", - "n2189153269", - "n663", - "n664", - "n2189153270", - "n2189153264" - ] + "nodes": ["n2733", "n2734", "n2735", "n2736", "n2737", "n2738", "n663", "n664", "n2739", "n2733"] }, - "w203970914": { - "id": "w203970914", + "w449": { + "id": "w449", "tags": { "amenity": "parking" }, - "nodes": ["n2139832722", "n2139832723", "n2139832724", "n2139832725", "n2139832726", "n2139832727", "n2139844839", "n2139832722"] + "nodes": ["n2564", "n2565", "n2566", "n2567", "n2568", "n2794", "n2795", "n2564"] }, - "w208643143": { - "id": "w208643143", + "w450": { + "id": "w450", "tags": { "building": "yes" }, - "nodes": ["n2189153258", "n2189153259", "n2189153260", "n2189153261", "n2189153262", "n2189153263", "n2189153258"] + "nodes": ["n2799", "n2728", "n2729", "n2730", "n2731", "n2732", "n2799"] }, - "w203049590": { - "id": "w203049590", + "w451": { + "id": "w451", "tags": { "amenity": "parking" }, - "nodes": [ - "n2130304152", - "n1170", - "n2130304153", - "n2140006403", - "n2130304154", - "n2130304156", - "n2130304155", - "n2130304160", - "n2130304152" - ] + "nodes": ["n2441", "n1170", "n2442", "n2575", "n2443", "n2445", "n2444", "n2448", "n2441"] }, - "w203974054": { - "id": "w203974054", + "w452": { + "id": "w452", "tags": { "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139858971", "n457", "n2139870373", "n458", "n2139870374"] + "nodes": ["n2273", "n457", "n2569", "n458", "n2570"] }, - "w203049595": { - "id": "w203049595", + "w453": { + "id": "w453", "tags": { "highway": "service" }, - "nodes": ["n2130304158", "n2130304159", "n2130304160", "n2139832635", "n2139832639"] + "nodes": ["n2447", "n2242", "n2448", "n2527", "n2530"] }, - "w203970913": { - "id": "w203970913", + "w454": { + "id": "w454", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832715", "n333", "n2139832716"] + "nodes": ["n2560", "n333", "n2561"] }, - "w208643134": { - "id": "w208643134", + "w455": { + "id": "w455", "tags": { "building": "yes" }, - "nodes": [ - "n2189153203", - "n2189153204", - "n2189153205", - "n2189153206", - "n2189153207", - "n2189153208", - "n2189153209", - "n2189153210", - "n2189153211", - "n2189153212", - "n2189153213", - "n2189153214", - "n2189153203" - ] + "nodes": ["n2679", "n2680", "n2681", "n2682", "n2683", "n2684", "n2685", "n2686", "n2687", "n2688", "n2689", "n2690", "n2679"] }, - "w134150808": { - "id": "w134150808", + "w456": { + "id": "w456", "tags": { "bridge": "yes", "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185988239", "n185988241", "n1475284019"] + "nodes": ["n2425", "n2429", "n2424"] }, - "w203970115": { - "id": "w203970115", + "w457": { + "id": "w457", "tags": { "building": "yes" }, - "nodes": ["n2139824761", "n2139824727", "n2139824736", "n2139824751", "n2139824772", "n2139824761"] + "nodes": ["n2487", "n2467", "n2472", "n2480", "n2495", "n2487"] }, - "w208643130": { - "id": "w208643130", + "w458": { + "id": "w458", "tags": { "building": "yes" }, - "nodes": [ - "n2189153183", - "n2189153184", - "n2189153185", - "n2189153186", - "n678", - "n677", - "n2189153187", - "n2189153188", - "n2189153189", - "n2189153190", - "n675", - "n676", - "n2189153183" - ] + "nodes": ["n2659", "n2660", "n2661", "n2662", "n678", "n677", "n2663", "n2664", "n2665", "n2666", "n675", "n676", "n2659"] }, - "w206805246": { - "id": "w206805246", + "w459": { + "id": "w459", "tags": { "building": "yes" }, - "nodes": ["n2168544782", "n2168544780", "n2168544781", "n2168544783", "n2168544787", "n2168544784", "n2168544782"] + "nodes": ["n2600", "n2598", "n2599", "n2601", "n2605", "n2602", "n2600"] }, - "w203970138": { - "id": "w203970138", + "w460": { + "id": "w460", "tags": { "building": "yes" }, - "nodes": ["n2139824730", "n2139824720", "n2139824702", "n2139824707", "n2139824714", "n2139824730"] + "nodes": ["n2468", "n2464", "n2455", "n2457", "n2461", "n2468"] }, - "w203970133": { - "id": "w203970133", + "w461": { + "id": "w461", "tags": { "building": "yes" }, - "nodes": ["n2139824748", "n2139824737", "n683", "n682", "n2139824717", "n681", "n2139824748"] + "nodes": ["n2478", "n2473", "n683", "n682", "n2463", "n681", "n2478"] }, - "w203970907": { - "id": "w203970907", + "w462": { + "id": "w462", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832700", "n473", "n2139832701", "n2139832702"] + "nodes": ["n2547", "n473", "n2548", "n2549"] }, - "w203974056": { - "id": "w203974056", + "w463": { + "id": "w463", "tags": { "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139870377", "n2139870378"] + "nodes": ["n2573", "n2574"] }, - "w203970897": { - "id": "w203970897", + "w464": { + "id": "w464", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2130304156", "n2166205688", "n2139832635", "n2139832636", "n2139832637", "n2139832639", "n2139832641", "n2166205688"] + "nodes": ["n2445", "n2597", "n2527", "n2528", "n2529", "n2530", "n2531", "n2597"] }, - "w203974057": { - "id": "w203974057", + "w465": { + "id": "w465", "tags": { "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139870375", "n459", "n2139870376"] + "nodes": ["n2571", "n459", "n2572"] }, - "w203049594": { - "id": "w203049594", + "w466": { + "id": "w466", "tags": { "highway": "service" }, - "nodes": ["n2130304156", "n2139870378", "n2139832706", "n442", "n2139832704", "n323", "n2130304157"] + "nodes": ["n2445", "n2574", "n2552", "n442", "n2551", "n323", "n2446"] }, - "w203970122": { - "id": "w203970122", + "w467": { + "id": "w467", "tags": { "building": "yes" }, - "nodes": ["n2139824757", "n2139824738", "n2139824747", "n2139824758", "n2139824762", "n2139824757"] + "nodes": ["n2484", "n2474", "n2477", "n2485", "n2488", "n2484"] }, - "w208643136": { - "id": "w208643136", + "w468": { + "id": "w468", "tags": { "building": "yes" }, - "nodes": [ - "n2189153219", - "n2189153220", - "n2189153221", - "n2189153222", - "n2189153223", - "n2189153224", - "n2189153225", - "n2189153226", - "n2189153219" - ] + "nodes": ["n2695", "n2696", "n2697", "n2698", "n2699", "n2700", "n2701", "n2702", "n2695"] }, - "w203970128": { - "id": "w203970128", + "w469": { + "id": "w469", "tags": { "building": "yes" }, - "nodes": ["n2139824732", "n2139824745", "n2139824752", "n2139824744", "n920", "n2139824724", "n2139824732"] + "nodes": ["n2469", "n2476", "n2481", "n2475", "n920", "n2466", "n2469"] }, - "w203970097": { - "id": "w203970097", + "w470": { + "id": "w470", "tags": { "building": "yes" }, - "nodes": ["n2139824737", "n2139824733", "n2139824721", "n2139824710", "n2139824716", "n683", "n2139824737"] + "nodes": ["n2473", "n2470", "n2465", "n2458", "n2462", "n683", "n2473"] }, - "w203970137": { - "id": "w203970137", + "w471": { + "id": "w471", "tags": { "building": "yes" }, - "nodes": ["n2139824765", "n2139824774", "n994", "n997", "n998", "n996", "n995", "n2139824758", "n2139824747", "n2139824765"] + "nodes": ["n2490", "n2496", "n994", "n997", "n998", "n996", "n995", "n2485", "n2477", "n2490"] }, - "w134150840": { - "id": "w134150840", + "w472": { + "id": "w472", "tags": { "highway": "residential", "name": "Moore Street" }, - "nodes": ["n1475284019", "n185988243", "n185988244", "n185988245"] + "nodes": ["n2424", "n2426", "n2427", "n2428"] }, - "w17967628": { - "id": "w17967628", + "w473": { + "id": "w473", "tags": { "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185978388", "n1026", "n2139832709", "n185988239"] + "nodes": ["n2432", "n1026", "n2554", "n2425"] }, - "w203988292": { - "id": "w203988292", + "w474": { + "id": "w474", "tags": { "bridge": "yes", "highway": "footway" }, - "nodes": ["n2140006407", "n2140006405"] + "nodes": ["n2577", "n2576"] }, - "w203970118": { - "id": "w203970118", + "w475": { + "id": "w475", "tags": { "building": "yes" }, - "nodes": ["n2139824775", "n2139824785", "n2139824780", "n2139824768", "n2139824775"] + "nodes": ["n2497", "n2505", "n2500", "n2493", "n2497"] }, - "w203970121": { - "id": "w203970121", + "w476": { + "id": "w476", "tags": { "building": "yes" }, - "nodes": ["n2139824768", "n2139824780", "n2139824781", "n2139824774", "n2139824765", "n2139824768"] + "nodes": ["n2493", "n2500", "n2501", "n2496", "n2490", "n2493"] }, - "w17967752": { - "id": "w17967752", + "w477": { + "id": "w477", "tags": { "highway": "residential", "name": "Railroad Drive" }, "nodes": [ - "n185964980", + "n2431", "n360", "n418", "n397", "n396", - "n2139832700", + "n2547", "n646", - "n2130304158", + "n2447", "n644", - "n185988969", + "n2418", "n424", "n640", - "n185988971", - "n185988972", - "n1475284011" + "n2419", + "n2420", + "n2423" ] }, - "w203970136": { - "id": "w203970136", + "w478": { + "id": "w478", "tags": { "building": "yes" }, - "nodes": ["n2139824798", "n2139824793", "n2139824777", "n2139824784", "n2139824791", "n2139824798"] + "nodes": ["n2515", "n2511", "n2498", "n2504", "n2509", "n2515"] }, - "w203970142": { - "id": "w203970142", + "w479": { + "id": "w479", "tags": { "building": "yes" }, "nodes": [ - "n2139824808", + "n2525", "n651", "n650", - "n2139824809", - "n2139824807", + "n2526", + "n2524", "n653", "n652", "n656", - "n2139824806", + "n2523", "n654", - "n2139824801", - "n2139824800", - "n2139824804", - "n2139824805", - "n2139824808" + "n2518", + "n2517", + "n2521", + "n2522", + "n2525" ] }, - "w208643137": { - "id": "w208643137", + "w480": { + "id": "w480", "tags": { "amenity": "parking" }, - "nodes": ["n2189153227", "n2189153228", "n2189153234", "n2189153235", "n2189153229", "n2189153230", "n2189153227"] + "nodes": ["n2703", "n2704", "n2710", "n2711", "n2705", "n2706", "n2703"] }, - "w208643129": { - "id": "w208643129", + "w481": { + "id": "w481", "tags": { "building": "yes" }, - "nodes": ["n2189153179", "n2189153180", "n2189153181", "n2189153182", "n2189153179"] + "nodes": ["n2796", "n2657", "n2658", "n2797", "n2796"] }, - "w203970909": { - "id": "w203970909", + "w482": { + "id": "w482", "tags": { "amenity": "parking" }, - "nodes": ["n2139832703", "n2139832704", "n442", "n2139832706", "n2139832708", "n2139832703"] + "nodes": ["n2550", "n2551", "n442", "n2552", "n2553", "n2550"] }, - "w203970905": { - "id": "w203970905", + "w483": { + "id": "w483", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832688", "n2139832691"] + "nodes": ["n2790", "n2542"] }, - "w203988298": { - "id": "w203988298", + "w484": { + "id": "w484", "tags": { "highway": "service" }, - "nodes": ["n2140006431", "n1102"] + "nodes": ["n2311", "n1102"] }, - "w203970106": { - "id": "w203970106", + "w485": { + "id": "w485", "tags": { "building": "yes" }, - "nodes": ["n2139824798", "n2139824791", "n2139824799", "n2139824802", "n2139824798"] + "nodes": ["n2515", "n2509", "n2516", "n2519", "n2515"] }, - "w203970129": { - "id": "w203970129", + "w486": { + "id": "w486", "tags": { "building": "yes" }, - "nodes": ["n2139824787", "n2139824782", "n2139824767", "n2139824766", "n2139824769", "n2139824787"] + "nodes": ["n2506", "n2502", "n2492", "n2491", "n2494", "n2506"] }, - "w208643131": { - "id": "w208643131", + "w487": { + "id": "w487", "tags": { "building": "yes" }, - "nodes": ["n2189153191", "n2189153192", "n2189153193", "n2189153194", "n2189153191"] + "nodes": ["n2667", "n2668", "n2669", "n2670", "n2667"] }, - "w206805249": { - "id": "w206805249", + "w488": { + "id": "w488", "tags": { "building": "yes" }, "nodes": [ - "n2168544800", - "n2168544790", - "n2168544802", - "n2168544805", - "n2168544807", - "n2168544809", - "n2168544811", - "n2168544813", - "n2168544815", - "n2168544817", - "n2168544819", - "n2168544821", - "n2168544823", - "n2168544825", - "n2168544800" + "n2616", + "n2608", + "n2617", + "n2618", + "n2619", + "n2620", + "n2621", + "n2622", + "n2623", + "n2624", + "n2625", + "n2626", + "n2627", + "n2628", + "n2616" ] }, - "w134150800": { - "id": "w134150800", + "w489": { + "id": "w489", "tags": { "bridge": "yes", "highway": "primary", @@ -6957,804 +6714,703 @@ "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964972", "n185964976"] + "nodes": ["n2081", "n2430"] }, - "w17966984": { - "id": "w17966984", + "w490": { + "id": "w490", "tags": { "highway": "residential", "name": "Portage Avenue" }, "nodes": [ - "n185978375", + "n2410", "n636", "n730", "n635", - "n185963456", - "n2189153218", - "n185966937", - "n185978967", - "n185967422", - "n185982193", - "n185968100", - "n185982195", - "n185960195", - "n185980735", - "n185978787", - "n185966948", - "n185982196", - "n185982197", - "n2139795768" + "n2409", + "n2694", + "n2751", + "n2765", + "n2753", + "n2768", + "n2754", + "n2769", + "n2745", + "n2766", + "n2763", + "n2752", + "n2770", + "n2771", + "n2781" ] }, - "w203988294": { - "id": "w203988294", + "w491": { + "id": "w491", "tags": { "amenity": "shelter", "building": "yes", "shelter_type": "picnic_shelter" }, - "nodes": ["n2140006409", "n2140006411", "n2140006413", "n2140006415", "n2140006409"] + "nodes": ["n2578", "n2579", "n2580", "n2581", "n2578"] }, - "w203970912": { - "id": "w203970912", + "w492": { + "id": "w492", "tags": { "amenity": "parking" }, - "nodes": ["n2139832711", "n2139832712", "n2139832713", "n2139832714", "n2139832711"] + "nodes": ["n2556", "n2557", "n2558", "n2559", "n2556"] }, - "w203970119": { - "id": "w203970119", + "w493": { + "id": "w493", "tags": { "building": "yes" }, - "nodes": ["n2139824713", "n2139824705", "n687", "n2139824683", "n2139824689", "n2139824713"] + "nodes": ["n2460", "n2456", "n687", "n2453", "n2454", "n2460"] }, - "w203970114": { - "id": "w203970114", + "w494": { + "id": "w494", "tags": { "building": "yes" }, - "nodes": ["n2139824735", "n2139824749", "n2139824745", "n2139824732", "n2139824735"] + "nodes": ["n2471", "n2479", "n2476", "n2469", "n2471"] }, - "w208643142": { - "id": "w208643142", + "w495": { + "id": "w495", "tags": { "highway": "service", "service": "parking_aisle", "oneway": "yes" }, - "nodes": ["n2189153254", "n2189153255", "n673", "n672", "n671", "n2189153256", "n2189153257"] + "nodes": ["n2724", "n2725", "n673", "n672", "n671", "n2726", "n2727"] }, - "w206805253": { - "id": "w206805253", + "w496": { + "id": "w496", "tags": { "building": "yes" }, - "nodes": [ - "n2168544848", - "n2168544849", - "n2168544850", - "n2168544851", - "n2168544852", - "n2168544853", - "n2168544854", - "n2168544855", - "n2168544848" - ] + "nodes": ["n2649", "n2650", "n2651", "n2652", "n2653", "n2654", "n2655", "n2656", "n2649"] }, - "w134150811": { - "id": "w134150811", + "w497": { + "id": "w497", "tags": { "highway": "primary", "name": "West Michigan Avenue", "old_ref": "US 131", "ref": "US 131 Business;M 60" }, - "nodes": ["n185964976", "n2130304157", "n343", "n1475284023", "n2139832715", "n185964980", "n363", "n185964982"] + "nodes": ["n2430", "n2446", "n343", "n2101", "n2560", "n2431", "n363", "n2748"] }, - "w208643135": { - "id": "w208643135", + "w498": { + "id": "w498", "tags": { "highway": "service" }, - "nodes": ["n2189153215", "n2189153216", "n634", "n633", "n2189153217", "n2189153218"] + "nodes": ["n2691", "n2692", "n634", "n633", "n2693", "n2694"] }, - "w17967183": { - "id": "w17967183", + "w499": { + "id": "w499", "tags": { "highway": "residential", "name": "West Street" }, - "nodes": [ - "n1475284011", - "n185984011", - "n661", - "n185984013", - "n185984015", - "n2189153246", - "n2189153250", - "n185965291", - "n185984017", - "n185971580", - "n185984020", - "n185974585", - "n185982163" - ] + "nodes": ["n2423", "n2415", "n661", "n2416", "n2417", "n2719", "n2721", "n2750", "n2772", "n2756", "n2773", "n2759", "n2767"] }, - "w134150778": { - "id": "w134150778", + "w500": { + "id": "w500", "tags": { "bridge": "yes", "highway": "residential", "name": "Moore Street" }, - "nodes": ["n185988245", "n1152", "n1475283992", "n185975913"] + "nodes": ["n2428", "n1152", "n2421", "n2324"] }, - "w206805248": { - "id": "w206805248", + "w501": { + "id": "w501", "tags": { "building": "yes" }, - "nodes": [ - "n2168544790", - "n2168544791", - "n2168544792", - "n2168544793", - "n2168544795", - "n2168544797", - "n2168544798", - "n2168544799", - "n2168544802", - "n2168544790" - ] + "nodes": ["n2608", "n2609", "n2610", "n2611", "n2612", "n2613", "n2614", "n2615", "n2617", "n2608"] }, - "w203974058": { - "id": "w203974058", + "w502": { + "id": "w502", "tags": { "bridge": "yes", "highway": "path", "name": "Riverwalk Trail" }, - "nodes": ["n2139870374", "n2139870375"] + "nodes": ["n2570", "n2571"] }, - "w203970902": { - "id": "w203970902", + "w503": { + "id": "w503", "tags": { "highway": "service" }, - "nodes": ["n2139832678", "n2139832691", "n2139832680"] + "nodes": ["n2540", "n2542", "n2787"] }, - "w203988296": { - "id": "w203988296", + "w504": { + "id": "w504", "tags": { "highway": "path" }, - "nodes": ["n2139858967", "n2140006421", "n2139858935"] + "nodes": ["n2269", "n2582", "n2250"] }, - "w206805251": { - "id": "w206805251", + "w505": { + "id": "w505", "tags": { "building": "yes" }, - "nodes": [ - "n2168544830", - "n2168544831", - "n2168544832", - "n2168544833", - "n2168544834", - "n2168544835", - "n2168544836", - "n2168544837", - "n2168544830" - ] + "nodes": ["n2631", "n2632", "n2633", "n2634", "n2635", "n2636", "n2637", "n2638", "n2631"] }, - "w203970906": { - "id": "w203970906", + "w506": { + "id": "w506", "tags": { "amenity": "parking" }, - "nodes": ["n2139832693", "n2139832694", "n2139832696", "n395", "n2139832698", "n2139832693"] + "nodes": ["n2543", "n2544", "n2545", "n395", "n2546", "n2543"] }, - "w203049598": { - "id": "w203049598", + "w507": { + "id": "w507", "tags": { "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2130304162", "n2130304163", "n2130304164", "n2130304165", "n1162", "n2130304162"] + "nodes": ["n2449", "n2450", "n2451", "n2452", "n1162", "n2449"] }, - "w203970911": { - "id": "w203970911", + "w508": { + "id": "w508", "tags": { "highway": "service" }, - "nodes": ["n2139832709", "n1160", "n2139832714", "n2139832713", "n659", "n2139832710", "n658", "n657", "n185988971"] + "nodes": ["n2554", "n1160", "n2559", "n2558", "n659", "n2555", "n658", "n657", "n2419"] }, - "w203970105": { - "id": "w203970105", + "w509": { + "id": "w509", "tags": { "building": "yes" }, - "nodes": ["n2139824779", "n2139824790", "n2139824792", "n2139824785", "n2139824775", "n2139824779"] + "nodes": ["n2499", "n2508", "n2510", "n2505", "n2497", "n2499"] }, - "w203988290": { - "id": "w203988290", + "w510": { + "id": "w510", "tags": { "highway": "footway" }, - "nodes": ["n2140006403", "n2140006407"] + "nodes": ["n2575", "n2577"] }, - "w203970900": { - "id": "w203970900", + "w511": { + "id": "w511", "tags": { "amenity": "parking" }, - "nodes": [ - "n2139832653", - "n2139832663", - "n2139832665", - "n2139832667", - "n2139832669", - "n2139832671", - "n2139832673", - "n2139832675", - "n2139832677", - "n2139832653" - ] + "nodes": ["n2533", "n2534", "n2535", "n2536", "n2537", "n2538", "n2539", "n2785", "n2786", "n2533"] }, - "w209717048": { - "id": "w209717048", + "w512": { + "id": "w512", "tags": { "building": "yes" }, - "nodes": ["n2199109755", "n2199109756", "n2199109757", "n2199109758", "n2199109759", "n2199109760", "n2199109755"] + "nodes": ["n2801", "n2740", "n2741", "n2742", "n2743", "n2744", "n2801"] }, - "w208643141": { - "id": "w208643141", + "w513": { + "id": "w513", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153247", "n2189153250"] + "nodes": ["n2720", "n2721"] }, - "w203970903": { - "id": "w203970903", + "w514": { + "id": "w514", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2139832682", "n2139832688", "n2139832684", "n989", "n2139832678", "n2139832686"] + "nodes": ["n2788", "n2790", "n2789", "n989", "n2540", "n2541"] }, - "n354002527": { - "id": "n354002527", + "n2802": { + "id": "n2802", "loc": [-85.623604, 41.945881], "tags": { "amenity": "school", "name": "Barrows School" } }, - "n185963396": { - "id": "n185963396", + "n2803": { + "id": "n2803", "loc": [-85.627401, 41.943496] }, - "n185963397": { - "id": "n185963397", + "n2804": { + "id": "n2804", "loc": [-85.627403, 41.943625] }, - "n185965101": { - "id": "n185965101", + "n2805": { + "id": "n2805", "loc": [-85.626409, 41.943215] }, - "n185971474": { - "id": "n185971474", + "n2806": { + "id": "n2806", "loc": [-85.624884, 41.943508] }, - "n185971475": { - "id": "n185971475", + "n2807": { + "id": "n2807", "loc": [-85.625191, 41.943509] }, - "n185971482": { - "id": "n185971482", + "n2808": { + "id": "n2808", "loc": [-85.624882, 41.94382] }, - "n185983135": { - "id": "n185983135", + "n2809": { + "id": "n2809", "loc": [-85.624893, 41.945618] }, - "n185983137": { - "id": "n185983137", + "n2810": { + "id": "n2810", "loc": [-85.624912, 41.946524] }, - "n185988027": { - "id": "n185988027", + "n2811": { + "id": "n2811", "loc": [-85.622721, 41.946535] }, - "n185963398": { - "id": "n185963398", + "n2812": { + "id": "n2812", "loc": [-85.627399, 41.94469] }, - "n185983238": { - "id": "n185983238", + "n2813": { + "id": "n2813", "loc": [-85.622716, 41.945622] }, - "n185980374": { - "id": "n185980374", + "n2814": { + "id": "n2814", "loc": [-85.624886, 41.944724] }, - "n185980373": { - "id": "n185980373", + "n2815": { + "id": "n2815", "loc": [-85.622674, 41.944737] }, - "n2196831342": { - "id": "n2196831342", + "n2816": { + "id": "n2816", "loc": [-85.625092, 41.945063] }, - "n2196831343": { - "id": "n2196831343", + "n2817": { + "id": "n2817", "loc": [-85.625233, 41.945064] }, - "n2196831344": { - "id": "n2196831344", + "n2818": { + "id": "n2818", "loc": [-85.625229, 41.944871] }, - "n2196831345": { - "id": "n2196831345", + "n2819": { + "id": "n2819", "loc": [-85.625066, 41.944871] }, - "n2196831346": { - "id": "n2196831346", + "n2820": { + "id": "n2820", "loc": [-85.625024, 41.944901] }, - "n2196831347": { - "id": "n2196831347", + "n2821": { + "id": "n2821", "loc": [-85.625025, 41.944924] }, - "n2196831348": { - "id": "n2196831348", + "n2822": { + "id": "n2822", "loc": [-85.625087, 41.944926] }, - "n2196831349": { - "id": "n2196831349", + "n2823": { + "id": "n2823", "loc": [-85.625349, 41.944506] }, - "n2196831350": { - "id": "n2196831350", + "n2824": { + "id": "n2824", "loc": [-85.625347, 41.944388] }, - "n2196831351": { - "id": "n2196831351", + "n2825": { + "id": "n2825", "loc": [-85.625152, 41.94439] }, - "n2196831352": { - "id": "n2196831352", + "n2826": { + "id": "n2826", "loc": [-85.625152, 41.944431] }, - "n2196831353": { - "id": "n2196831353", + "n2827": { + "id": "n2827", "loc": [-85.625134, 41.944431] }, - "n2196831354": { - "id": "n2196831354", + "n2828": { + "id": "n2828", "loc": [-85.625136, 41.944508] }, - "n2196831355": { - "id": "n2196831355", + "n2829": { + "id": "n2829", "loc": [-85.623236, 41.946341] }, - "n2196831356": { - "id": "n2196831356", + "n2830": { + "id": "n2830", "loc": [-85.623241, 41.946067] }, - "n2196831357": { - "id": "n2196831357", + "n2831": { + "id": "n2831", "loc": [-85.623207, 41.946067] }, - "n2196831358": { - "id": "n2196831358", + "n2832": { + "id": "n2832", "loc": [-85.623212, 41.945827] }, - "n2196831359": { - "id": "n2196831359", + "n2833": { + "id": "n2833", "loc": [-85.622981, 41.945825] }, - "n2196831360": { - "id": "n2196831360", + "n2834": { + "id": "n2834", "loc": [-85.622976, 41.946063] }, - "n2196831361": { - "id": "n2196831361", + "n2835": { + "id": "n2835", "loc": [-85.623006, 41.946063] }, - "n2196831362": { - "id": "n2196831362", + "n2836": { + "id": "n2836", "loc": [-85.623002, 41.946256] }, - "n2196831363": { - "id": "n2196831363", + "n2837": { + "id": "n2837", "loc": [-85.623075, 41.946256] }, - "n2196831364": { - "id": "n2196831364", + "n2838": { + "id": "n2838", "loc": [-85.623074, 41.946339] }, - "n185947349": { - "id": "n185947349", + "n2839": { + "id": "n2839", "loc": [-85.618327, 41.945631] }, - "n185947359": { - "id": "n185947359", + "n2840": { + "id": "n2840", "loc": [-85.615453, 41.945637] }, - "n185947378": { - "id": "n185947378", + "n2841": { + "id": "n2841", "loc": [-85.617231, 41.945633] }, - "n185947474": { - "id": "n185947474", + "n2842": { + "id": "n2842", "loc": [-85.616136, 41.945635] }, - "n185948972": { - "id": "n185948972", + "n2843": { + "id": "n2843", "loc": [-85.615273, 41.945637] }, - "n185955019": { - "id": "n185955019", + "n2844": { + "id": "n2844", "loc": [-85.620172, 41.945627] }, - "n185960682": { - "id": "n185960682", + "n2845": { + "id": "n2845", "loc": [-85.622731, 41.951834] }, - "n185961369": { - "id": "n185961369", + "n2846": { + "id": "n2846", "loc": [-85.622758, 41.947422] }, - "n185961371": { - "id": "n185961371", + "n2847": { + "id": "n2847", "loc": [-85.624908, 41.947416] }, - "n185963392": { - "id": "n185963392", + "n2848": { + "id": "n2848", "loc": [-85.627046, 41.940995] }, - "n185963393": { - "id": "n185963393", + "n2849": { + "id": "n2849", "loc": [-85.627295, 41.941304] }, - "n185963394": { - "id": "n185963394", + "n2850": { + "id": "n2850", "loc": [-85.627352, 41.94148] }, - "n185963395": { - "id": "n185963395", + "n2851": { + "id": "n2851", "loc": [-85.62737, 41.942261] }, - "n185965099": { - "id": "n185965099", + "n2852": { + "id": "n2852", "loc": [-85.6264, 41.942263] }, - "n185965108": { - "id": "n185965108", + "n2853": { + "id": "n2853", "loc": [-85.622769, 41.949238] }, - "n185965110": { - "id": "n185965110", + "n2854": { + "id": "n2854", "loc": [-85.624937, 41.949237] }, - "n185966295": { - "id": "n185966295", + "n2855": { + "id": "n2855", "loc": [-85.629994, 41.944669] }, - "n185966342": { - "id": "n185966342", + "n2856": { + "id": "n2856", "loc": [-85.624873, 41.942022] }, - "n185970222": { - "id": "n185970222", + "n2857": { + "id": "n2857", "loc": [-85.622761, 41.948333] }, - "n185970224": { - "id": "n185970224", + "n2858": { + "id": "n2858", "loc": [-85.624924, 41.948334] }, - "n185971477": { - "id": "n185971477", + "n2859": { + "id": "n2859", "loc": [-85.620051, 41.94383] }, - "n185973866": { - "id": "n185973866", + "n2860": { + "id": "n2860", "loc": [-85.627629, 41.946498] }, - "n185974699": { - "id": "n185974699", + "n2861": { + "id": "n2861", "loc": [-85.622769, 41.950119] }, - "n185978800": { - "id": "n185978800", + "n2862": { + "id": "n2862", "loc": [-85.62384, 41.95466] }, - "n185980372": { - "id": "n185980372", + "n2863": { + "id": "n2863", "loc": [-85.621459, 41.944756] }, - "n185980378": { - "id": "n185980378", + "n2864": { + "id": "n2864", "loc": [-85.628637, 41.944676] }, - "n185980380": { - "id": "n185980380", + "n2865": { + "id": "n2865", "loc": [-85.630139, 41.944661] }, - "n185980382": { - "id": "n185980382", + "n2866": { + "id": "n2866", "loc": [-85.630298, 41.944635] }, - "n185980384": { - "id": "n185980384", + "n2867": { + "id": "n2867", "loc": [-85.630759, 41.94454] }, - "n185980386": { - "id": "n185980386", + "n2868": { + "id": "n2868", "loc": [-85.631237, 41.944455] }, - "n185983133": { - "id": "n185983133", + "n2869": { + "id": "n2869", "loc": [-85.624867, 41.94159] }, - "n185983139": { - "id": "n185983139", + "n2870": { + "id": "n2870", "loc": [-85.624958, 41.950322] }, - "n185983140": { - "id": "n185983140", + "n2871": { + "id": "n2871", "loc": [-85.624948, 41.950484] }, - "n185983141": { - "id": "n185983141", + "n2872": { + "id": "n2872", "loc": [-85.624813, 41.950983] }, - "n185983143": { - "id": "n185983143", + "n2873": { + "id": "n2873", "loc": [-85.624623, 41.951591] }, - "n185983144": { - "id": "n185983144", + "n2874": { + "id": "n2874", "loc": [-85.623908, 41.953916] }, - "n185983145": { - "id": "n185983145", + "n2875": { + "id": "n2875", "loc": [-85.62389, 41.954096] }, - "n185983146": { - "id": "n185983146", + "n2876": { + "id": "n2876", "loc": [-85.623898, 41.95431] }, - "n185983236": { - "id": "n185983236", + "n2877": { + "id": "n2877", "loc": [-85.628481, 41.945611] }, - "n185985914": { - "id": "n185985914", + "n2878": { + "id": "n2878", "loc": [-85.620072, 41.946538] }, - "n185986812": { - "id": "n185986812", + "n2879": { + "id": "n2879", "loc": [-85.622778, 41.95099] }, - "n185988028": { - "id": "n185988028", + "n2880": { + "id": "n2880", "loc": [-85.62814, 41.946963] }, - "n185988030": { - "id": "n185988030", + "n2881": { + "id": "n2881", "loc": [-85.628245, 41.947031] }, - "n185988032": { - "id": "n185988032", + "n2882": { + "id": "n2882", "loc": [-85.628331, 41.947066] }, - "w17964989": { - "id": "w17964989", + "w515": { + "id": "w515", "tags": { "highway": "residential", "name": "Middle Street" }, - "nodes": ["n185963392", "n185963393", "n185963394", "n185963395", "n185963396", "n185963397", "n185963398"] + "nodes": ["n2848", "n2849", "n2850", "n2851", "n2803", "n2804", "n2812"] }, - "w17965158": { - "id": "w17965158", + "w516": { + "id": "w516", "tags": { "access": "private", "highway": "service", "name": "Battle Street" }, - "nodes": ["n185965099", "n185965101"] + "nodes": ["n2852", "n2805"] }, - "w41074896": { - "id": "w41074896", + "w517": { + "id": "w517", "tags": { "highway": "secondary", "name": "East Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" }, - "nodes": [ - "n185980372", - "n185980373", - "n185980374", - "n185963398", - "n185980378", - "n185966295", - "n185980380", - "n185980382", - "n185980384", - "n185980386" - ] + "nodes": ["n2863", "n2815", "n2814", "n2812", "n2864", "n2855", "n2865", "n2866", "n2867", "n2868"] }, - "w17965846": { - "id": "w17965846", + "w518": { + "id": "w518", "tags": { "highway": "residential", "name": "2nd Avenue" }, - "nodes": ["n185971477", "n185971482"] + "nodes": ["n2859", "n2808"] }, - "w209470306": { - "id": "w209470306", + "w519": { + "id": "w519", "tags": { "building": "yes" }, - "nodes": ["n2196831349", "n2196831350", "n2196831351", "n2196831352", "n2196831353", "n2196831354", "n2196831349"] + "nodes": ["n2823", "n2824", "n2825", "n2826", "n2827", "n2828", "n2823"] }, - "w17965845": { - "id": "w17965845", + "w520": { + "id": "w520", "tags": { "highway": "residential", "name": "2nd Avenue" }, - "nodes": ["n185971474", "n185971475", "n185963396"] + "nodes": ["n2806", "n2807", "n2803"] }, - "w209470307": { - "id": "w209470307", + "w521": { + "id": "w521", "tags": { "building": "yes" }, - "nodes": [ - "n2196831355", - "n2196831356", - "n2196831357", - "n2196831358", - "n2196831359", - "n2196831360", - "n2196831361", - "n2196831362", - "n2196831363", - "n2196831364", - "n2196831355" - ] + "nodes": ["n2829", "n2830", "n2831", "n2832", "n2833", "n2834", "n2835", "n2836", "n2837", "n2838", "n2829"] }, - "w17968192": { - "id": "w17968192", + "w522": { + "id": "w522", "tags": { "highway": "residential", "name": "Washington Street" }, - "nodes": [ - "n185980373", - "n185983238", - "n185988027", - "n185961369", - "n185970222", - "n185965108", - "n185974699", - "n185986812", - "n5", - "n4", - "n185960682" - ] + "nodes": ["n2815", "n2813", "n2811", "n2846", "n2857", "n2853", "n2861", "n2879", "n5", "n4", "n2845"] }, - "w17967603": { - "id": "w17967603", + "w523": { + "id": "w523", "tags": { "highway": "residential", "name": "5th Avenue" }, - "nodes": ["n185985914", "n185988027", "n185983137", "n185973866", "n185988028", "n185988030", "n185988032"] + "nodes": ["n2878", "n2811", "n2810", "n2860", "n2880", "n2881", "n2882"] }, - "w209470305": { - "id": "w209470305", + "w524": { + "id": "w524", "tags": { "building": "yes" }, - "nodes": ["n2196831342", "n2196831343", "n2196831344", "n2196831345", "n2196831346", "n2196831347", "n2196831348", "n2196831342"] + "nodes": ["n2816", "n2817", "n2818", "n2819", "n2820", "n2821", "n2822", "n2816"] }, - "w17967092": { - "id": "w17967092", + "w525": { + "id": "w525", "tags": { "highway": "residential", "name": "Wood Street" }, "nodes": [ - "n185983133", - "n185966342", - "n185971474", - "n185971482", - "n185980374", - "n185983135", - "n185983137", - "n185961371", - "n185970224", - "n185965110", - "n185983139", - "n185983140", + "n2869", + "n2856", + "n2806", + "n2808", + "n2814", + "n2809", + "n2810", + "n2847", + "n2858", + "n2854", + "n2870", + "n2871", "n6", - "n185983141", - "n185983143", - "n185983144", - "n185983145", - "n185983146", + "n2872", + "n2873", + "n2874", + "n2875", + "n2876", "n1203", "n1202", - "n185978800" + "n2862" ] }, - "w17967107": { - "id": "w17967107", + "w526": { + "id": "w526", "tags": { "highway": "residential", "name": "4th Avenue" }, - "nodes": [ - "n185983236", - "n185983135", - "n185983238", - "n185955019", - "n185947349", - "n185947378", - "n185947474", - "n185947359", - "n185948972" - ] + "nodes": ["n2877", "n2809", "n2813", "n2844", "n2839", "n2841", "n2842", "n2840", "n2843"] }, - "n354030330": { - "id": "n354030330", + "n2883": { + "id": "n2883", "loc": [-85.629722, 41.944444], "tags": { "leisure": "park", "name": "Scouter Park" } }, - "n185966296": { - "id": "n185966296", + "n2884": { + "id": "n2884", "loc": [-85.629998, 41.944078] }, - "n185966298": { - "id": "n185966298", + "n2885": { + "id": "n2885", "loc": [-85.629972, 41.943927] }, - "n185966300": { - "id": "n185966300", + "n2886": { + "id": "n2886", "loc": [-85.629948, 41.943783] }, - "n185980391": { - "id": "n185980391", + "n2887": { + "id": "n2887", "loc": [-85.632286, 41.944257] }, - "n185980393": { - "id": "n185980393", + "n2888": { + "id": "n2888", "loc": [-85.632523, 41.944179] }, - "n185980389": { - "id": "n185980389", + "n2889": { + "id": "n2889", "loc": [-85.632141, 41.944293] }, - "n185980388": { - "id": "n185980388", + "n2890": { + "id": "n2890", "loc": [-85.631578, 41.944396] }, - "n354031320": { - "id": "n354031320", + "n2891": { + "id": "n2891", "loc": [-85.628056, 41.944722], "tags": { "amenity": "place_of_worship", @@ -7762,411 +7418,411 @@ "religion": "christian" } }, - "n185987309": { - "id": "n185987309", + "n2892": { + "id": "n2892", "loc": [-85.62865, 41.945353] }, - "n185987311": { - "id": "n185987311", + "n2893": { + "id": "n2893", "loc": [-85.628594, 41.945481] }, - "n185988034": { - "id": "n185988034", + "n2894": { + "id": "n2894", "loc": [-85.628581, 41.947169] }, - "n185988896": { - "id": "n185988896", + "n2895": { + "id": "n2895", "loc": [-85.631843, 41.943793] }, - "n185977764": { - "id": "n185977764", + "n2896": { + "id": "n2896", "loc": [-85.632299, 41.943472] }, - "n1819848852": { - "id": "n1819848852", + "n2897": { + "id": "n2897", "loc": [-85.631519, 41.944881] }, - "n1819848912": { - "id": "n1819848912", + "n2898": { + "id": "n2898", "loc": [-85.628429, 41.947219] }, - "n1819848925": { - "id": "n1819848925", + "n2899": { + "id": "n2899", "loc": [-85.63145, 41.945162] }, - "n1819848949": { - "id": "n1819848949", + "n2900": { + "id": "n2900", "loc": [-85.630939, 41.945519] }, - "n1819848951": { - "id": "n1819848951", + "n2901": { + "id": "n2901", "loc": [-85.62903, 41.945719] }, - "n1819848963": { - "id": "n1819848963", + "n2902": { + "id": "n2902", "loc": [-85.630521, 41.945559] }, - "n1819848981": { - "id": "n1819848981", + "n2903": { + "id": "n2903", "loc": [-85.629294, 41.945585] }, - "n1819848989": { - "id": "n1819848989", + "n2904": { + "id": "n2904", "loc": [-85.629845, 41.945543] }, - "n1819848998": { - "id": "n1819848998", + "n2905": { + "id": "n2905", "loc": [-85.631497, 41.944625] }, - "n1819849018": { - "id": "n1819849018", + "n2906": { + "id": "n2906", "loc": [-85.630281, 41.945553] }, - "n1819849043": { - "id": "n1819849043", + "n2907": { + "id": "n2907", "loc": [-85.628553, 41.946973] }, - "n1819849087": { - "id": "n1819849087", + "n2908": { + "id": "n2908", "loc": [-85.631383, 41.945338] }, - "n1819849090": { - "id": "n1819849090", + "n2909": { + "id": "n2909", "loc": [-85.628843, 41.946103] }, - "n1819849109": { - "id": "n1819849109", + "n2910": { + "id": "n2910", "loc": [-85.631193, 41.945473] }, - "n1819849116": { - "id": "n1819849116", + "n2911": { + "id": "n2911", "loc": [-85.628897, 41.945944] }, - "n1819849177": { - "id": "n1819849177", + "n2912": { + "id": "n2912", "loc": [-85.628789, 41.946454] }, - "n1819858529": { - "id": "n1819858529", + "n2913": { + "id": "n2913", "loc": [-85.632548, 41.944563] }, - "n2189112797": { - "id": "n2189112797", + "n2914": { + "id": "n2914", "loc": [-85.627527, 41.944555] }, - "n2189112798": { - "id": "n2189112798", + "n2915": { + "id": "n2915", "loc": [-85.62752, 41.943726] }, - "n2189112799": { - "id": "n2189112799", + "n2916": { + "id": "n2916", "loc": [-85.627894, 41.943723] }, - "n2189112800": { - "id": "n2189112800", + "n2917": { + "id": "n2917", "loc": [-85.627897, 41.943919] }, - "n2189112801": { - "id": "n2189112801", + "n2918": { + "id": "n2918", "loc": [-85.627991, 41.943934] }, - "n2189112802": { - "id": "n2189112802", + "n2919": { + "id": "n2919", "loc": [-85.628082, 41.943966] }, - "n2189112803": { - "id": "n2189112803", + "n2920": { + "id": "n2920", "loc": [-85.628177, 41.944015] }, - "n2189112804": { - "id": "n2189112804", + "n2921": { + "id": "n2921", "loc": [-85.628193, 41.944048] }, - "n2189112805": { - "id": "n2189112805", + "n2922": { + "id": "n2922", "loc": [-85.628167, 41.944054] }, - "n2189112806": { - "id": "n2189112806", + "n2923": { + "id": "n2923", "loc": [-85.628193, 41.944094] }, - "n2189112807": { - "id": "n2189112807", + "n2924": { + "id": "n2924", "loc": [-85.628213, 41.944144] }, - "n2189112808": { - "id": "n2189112808", + "n2925": { + "id": "n2925", "loc": [-85.628214, 41.944199] }, - "n2189112809": { - "id": "n2189112809", + "n2926": { + "id": "n2926", "loc": [-85.62833, 41.944196] }, - "n2189112810": { - "id": "n2189112810", + "n2927": { + "id": "n2927", "loc": [-85.628328, 41.944262] }, - "n2189112811": { - "id": "n2189112811", + "n2928": { + "id": "n2928", "loc": [-85.628173, 41.944262] }, - "n2189112812": { - "id": "n2189112812", + "n2929": { + "id": "n2929", "loc": [-85.628171, 41.944293] }, - "n2189112813": { - "id": "n2189112813", + "n2930": { + "id": "n2930", "loc": [-85.628039, 41.944296] }, - "n2189112814": { - "id": "n2189112814", + "n2931": { + "id": "n2931", "loc": [-85.62804, 41.944329] }, - "n2189112815": { - "id": "n2189112815", + "n2932": { + "id": "n2932", "loc": [-85.627829, 41.944335] }, - "n2189112816": { - "id": "n2189112816", + "n2933": { + "id": "n2933", "loc": [-85.627835, 41.94455] }, - "n2189153271": { - "id": "n2189153271", + "n2934": { + "id": "n2934", "loc": [-85.632105, 41.946034] }, - "n2189153272": { - "id": "n2189153272", + "n2935": { + "id": "n2935", "loc": [-85.632278, 41.945784] }, - "n2189153273": { - "id": "n2189153273", + "n2936": { + "id": "n2936", "loc": [-85.632823, 41.945994] }, - "n2189153274": { - "id": "n2189153274", + "n2937": { + "id": "n2937", "loc": [-85.632684, 41.946196] }, - "n2189153275": { - "id": "n2189153275", + "n2938": { + "id": "n2938", "loc": [-85.632566, 41.946151] }, - "n2189153276": { - "id": "n2189153276", + "n2939": { + "id": "n2939", "loc": [-85.632532, 41.946198] }, - "n2189153278": { - "id": "n2189153278", + "n2940": { + "id": "n2940", "loc": [-85.632192, 41.945973] }, - "n2189153279": { - "id": "n2189153279", + "n2941": { + "id": "n2941", "loc": [-85.63226, 41.94587] }, - "n2189153280": { - "id": "n2189153280", + "n2942": { + "id": "n2942", "loc": [-85.632721, 41.946036] }, - "n2189153281": { - "id": "n2189153281", + "n2943": { + "id": "n2943", "loc": [-85.632641, 41.946142] }, - "n185959079": { - "id": "n185959079", + "n2944": { + "id": "n2944", "loc": [-85.62937, 41.947467] }, - "n185966301": { - "id": "n185966301", + "n2945": { + "id": "n2945", "loc": [-85.629692, 41.943136] }, - "n185966304": { - "id": "n185966304", + "n2946": { + "id": "n2946", "loc": [-85.629565, 41.942916] }, - "n185966308": { - "id": "n185966308", + "n2947": { + "id": "n2947", "loc": [-85.629501, 41.942751] }, - "n185966315": { - "id": "n185966315", + "n2948": { + "id": "n2948", "loc": [-85.629472, 41.942578] }, - "n185966319": { - "id": "n185966319", + "n2949": { + "id": "n2949", "loc": [-85.629444, 41.942414] }, - "n185966321": { - "id": "n185966321", + "n2950": { + "id": "n2950", "loc": [-85.629391, 41.94205] }, - "n185966323": { - "id": "n185966323", + "n2951": { + "id": "n2951", "loc": [-85.629369, 41.941858] }, - "n185966327": { - "id": "n185966327", + "n2952": { + "id": "n2952", "loc": [-85.629297, 41.941604] }, - "n185966331": { - "id": "n185966331", + "n2953": { + "id": "n2953", "loc": [-85.629233, 41.941549] }, - "n185966336": { - "id": "n185966336", + "n2954": { + "id": "n2954", "loc": [-85.628504, 41.941364] }, - "n185966338": { - "id": "n185966338", + "n2955": { + "id": "n2955", "loc": [-85.628275, 41.941303] }, - "n185966340": { - "id": "n185966340", + "n2956": { + "id": "n2956", "loc": [-85.626904, 41.941098] }, - "n185973867": { - "id": "n185973867", + "n2957": { + "id": "n2957", "loc": [-85.626843, 41.947333] }, - "n185977762": { - "id": "n185977762", + "n2958": { + "id": "n2958", "loc": [-85.631844, 41.942945] }, - "n1819848853": { - "id": "n1819848853", + "n2959": { + "id": "n2959", "loc": [-85.625854, 41.949222] }, - "n1819848861": { - "id": "n1819848861", + "n2960": { + "id": "n2960", "loc": [-85.625146, 41.955238] }, - "n1819848874": { - "id": "n1819848874", + "n2961": { + "id": "n2961", "loc": [-85.626745, 41.948296] }, - "n1819848882": { - "id": "n1819848882", + "n2962": { + "id": "n2962", "loc": [-85.625721, 41.95524] }, - "n1819848883": { - "id": "n1819848883", + "n2963": { + "id": "n2963", "loc": [-85.624706, 41.952317] }, - "n1819848907": { - "id": "n1819848907", + "n2964": { + "id": "n2964", "loc": [-85.62609, 41.956147] }, - "n1819848908": { - "id": "n1819848908", + "n2965": { + "id": "n2965", "loc": [-85.624401, 41.954928] }, - "n1819848911": { - "id": "n1819848911", + "n2966": { + "id": "n2966", "loc": [-85.626558, 41.955367] }, - "n1819848923": { - "id": "n1819848923", + "n2967": { + "id": "n2967", "loc": [-85.62468, 41.955096] }, - "n1819848936": { - "id": "n1819848936", + "n2968": { + "id": "n2968", "loc": [-85.624159, 41.953929] }, - "n1819848940": { - "id": "n1819848940", + "n2969": { + "id": "n2969", "loc": [-85.62506, 41.951113] }, - "n1819848944": { - "id": "n1819848944", + "n2970": { + "id": "n2970", "loc": [-85.624942, 41.951591] }, - "n1819848950": { - "id": "n1819848950", + "n2971": { + "id": "n2971", "loc": [-85.627399, 41.947546] }, - "n1819848957": { - "id": "n1819848957", + "n2972": { + "id": "n2972", "loc": [-85.627695, 41.947404] }, - "n1819849009": { - "id": "n1819849009", + "n2973": { + "id": "n2973", "loc": [-85.625925, 41.94896] }, - "n1819849037": { - "id": "n1819849037", + "n2974": { + "id": "n2974", "loc": [-85.625725, 41.950211] }, - "n1819849061": { - "id": "n1819849061", + "n2975": { + "id": "n2975", "loc": [-85.627008, 41.947963] }, - "n1819849073": { - "id": "n1819849073", + "n2976": { + "id": "n2976", "loc": [-85.624373, 41.953458] }, - "n1819849091": { - "id": "n1819849091", + "n2977": { + "id": "n2977", "loc": [-85.624137, 41.954392] }, - "n1819849130": { - "id": "n1819849130", + "n2978": { + "id": "n2978", "loc": [-85.628257, 41.947307] }, - "n1819849143": { - "id": "n1819849143", + "n2979": { + "id": "n2979", "loc": [-85.625281, 41.95066] }, - "n1819849153": { - "id": "n1819849153", + "n2980": { + "id": "n2980", "loc": [-85.625865, 41.949804] }, - "n1819849168": { - "id": "n1819849168", + "n2981": { + "id": "n2981", "loc": [-85.626508, 41.955932] }, - "n1819849173": { - "id": "n1819849173", + "n2982": { + "id": "n2982", "loc": [-85.626333, 41.955216] }, - "n1819849175": { - "id": "n1819849175", + "n2983": { + "id": "n2983", "loc": [-85.626637, 41.955676] }, - "n1819849178": { - "id": "n1819849178", + "n2984": { + "id": "n2984", "loc": [-85.624223, 41.954599] }, - "n1819849181": { - "id": "n1819849181", + "n2985": { + "id": "n2985", "loc": [-85.626219, 41.948671] }, - "n1819849188": { - "id": "n1819849188", + "n2986": { + "id": "n2986", "loc": [-85.624556, 41.953043] }, - "n1819849190": { - "id": "n1819849190", + "n2987": { + "id": "n2987", "loc": [-85.625598, 41.956302] }, - "n2168544738": { - "id": "n2168544738", + "n2988": { + "id": "n2988", "loc": [-85.624571, 41.952971] }, - "w208643145": { - "id": "w208643145", + "w527": { + "id": "w527", "tags": { "amenity": "parking" }, - "nodes": ["n2189153271", "n2189153272", "n2189153273", "n2189153274", "n2189153275", "n2189153276", "n2189153271"] + "nodes": ["n2934", "n2935", "n2936", "n2937", "n2938", "n2939", "n2934"] }, - "w17967561": { - "id": "w17967561", + "w528": { + "id": "w528", "tags": { "highway": "residential", "name": "Garden Street" }, - "nodes": ["n185980378", "n185987309", "n185987311", "n185983236", "n185973866"] + "nodes": ["n2864", "n2892", "n2893", "n2877", "n2860"] }, - "w134150802": { - "id": "w134150802", + "w529": { + "id": "w529", "tags": { "bridge": "yes", "highway": "secondary", @@ -8174,39 +7830,39 @@ "name_1": "State Highway 60", "ref": "M 60" }, - "nodes": ["n185980386", "n185980388"] + "nodes": ["n2868", "n2890"] }, - "w208639462": { - "id": "w208639462", + "w530": { + "id": "w530", "tags": { "building": "yes" }, "nodes": [ - "n2189112797", - "n2189112798", - "n2189112799", - "n2189112800", - "n2189112801", - "n2189112802", - "n2189112803", - "n2189112804", - "n2189112805", - "n2189112806", - "n2189112807", - "n2189112808", - "n2189112809", - "n2189112810", - "n2189112811", - "n2189112812", - "n2189112813", - "n2189112814", - "n2189112815", - "n2189112816", - "n2189112797" + "n2914", + "n2915", + "n2916", + "n2917", + "n2918", + "n2919", + "n2920", + "n2921", + "n2922", + "n2923", + "n2924", + "n2925", + "n2926", + "n2927", + "n2928", + "n2929", + "n2930", + "n2931", + "n2932", + "n2933", + "n2914" ] }, - "w134150830": { - "id": "w134150830", + "w531": { + "id": "w531", "tags": { "bridge": "yes", "highway": "secondary", @@ -8214,155 +7870,155 @@ "old_ref": "US 131", "ref": "M 86" }, - "nodes": ["n185977762", "n185977764"] + "nodes": ["n2958", "n2896"] }, - "w134150801": { - "id": "w134150801", + "w532": { + "id": "w532", "tags": { "highway": "secondary", "name": "South Main Street", "old_ref": "US 131", "ref": "M 86" }, - "nodes": ["n185977764", "n394", "n364", "n185964982"] + "nodes": ["n2896", "n394", "n364", "n2748"] }, - "w208643146": { - "id": "w208643146", + "w533": { + "id": "w533", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2189153277", "n2189153281", "n2189153278", "n2189153279", "n2189153280", "n2189153281"] + "nodes": ["n2800", "n2943", "n2940", "n2941", "n2942", "n2943"] }, - "w17966061": { - "id": "w17966061", + "w534": { + "id": "w534", "tags": { "highway": "residential", "name": "John Glenn Court" }, - "nodes": ["n185973866", "n185973867"] + "nodes": ["n2860", "n2957"] }, - "w134150772": { - "id": "w134150772", + "w535": { + "id": "w535", "tags": { "highway": "residential", "name": "5th Avenue" }, - "nodes": ["n185988034", "n185959079", "n185988036", "n185978967"] + "nodes": ["n2894", "n2944", "n2774", "n2765"] }, - "w134150836": { - "id": "w134150836", + "w536": { + "id": "w536", "tags": { "highway": "secondary", "name": "East Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" }, - "nodes": ["n185980388", "n1819858524", "n627", "n185980389", "n185980391", "n623", "n185980393", "n366", "n185964982"] + "nodes": ["n2890", "n2780", "n627", "n2889", "n2887", "n623", "n2888", "n366", "n2748"] }, - "w17967734": { - "id": "w17967734", + "w537": { + "id": "w537", "tags": { "highway": "residential", "name": "Water Street" }, - "nodes": ["n185988896", "n738", "n185980391", "n737", "n1819858529"] + "nodes": ["n2895", "n738", "n2887", "n737", "n2913"] }, - "w17965305": { - "id": "w17965305", + "w538": { + "id": "w538", "tags": { "highway": "residential", "name": "River Drive" }, "nodes": [ - "n185966295", - "n185966296", - "n185966298", - "n185966300", - "n185966301", - "n185966304", - "n185966308", - "n185966315", - "n185966319", - "n185966321", - "n185966323", - "n185966327", - "n185966331", - "n185966336", - "n185966338", - "n185963392", - "n185966340", - "n185966342" + "n2855", + "n2884", + "n2885", + "n2886", + "n2945", + "n2946", + "n2947", + "n2948", + "n2949", + "n2950", + "n2951", + "n2952", + "n2953", + "n2954", + "n2955", + "n2848", + "n2956", + "n2856" ] }, - "w134150826": { - "id": "w134150826", + "w539": { + "id": "w539", "tags": { "bridge": "yes", "highway": "residential", "name": "5th Avenue" }, - "nodes": ["n185988032", "n185988034"] + "nodes": ["n2882", "n2894"] }, - "w170848330": { - "id": "w170848330", + "w540": { + "id": "w540", "tags": { "name": "Portage River", "waterway": "river" }, "nodes": [ - "n1819849190", - "n1819848907", - "n1819849168", - "n1819849175", - "n1819848911", - "n1819849173", - "n1819848882", - "n1819848861", - "n1819848923", - "n1819848908", - "n1819849178", - "n1819849091", - "n1819848936", - "n1819849073", - "n1819849188", - "n2168544738", - "n1819848883", - "n1819848944", - "n1819848940", - "n1819849143", - "n1819849037", - "n1819849153", - "n1819848853", - "n1819849009", - "n1819849181", - "n1819848874", - "n1819849061", - "n1819848950", - "n1819848957", - "n1819849130", - "n1819848912", - "n1819849043", - "n1819849177", - "n1819849090", - "n1819849116", - "n1819848951", - "n1819848981", - "n1819848989", - "n1819849018", - "n1819848963", - "n1819848949", - "n1819849109", - "n1819849087", - "n1819848925", - "n1819848852", - "n1819848998", - "n1819849057", - "n1820938512" + "n2987", + "n2964", + "n2981", + "n2983", + "n2966", + "n2982", + "n2962", + "n2960", + "n2967", + "n2965", + "n2984", + "n2977", + "n2968", + "n2976", + "n2986", + "n2988", + "n2963", + "n2970", + "n2969", + "n2979", + "n2974", + "n2980", + "n2959", + "n2973", + "n2985", + "n2961", + "n2975", + "n2971", + "n2972", + "n2978", + "n2898", + "n2907", + "n2912", + "n2909", + "n2911", + "n2901", + "n2903", + "n2904", + "n2906", + "n2902", + "n2900", + "n2910", + "n2908", + "n2899", + "n2897", + "n2905", + "n2186", + "n2233" ] }, - "r270264": { - "id": "r270264", + "r4": { + "id": "r4", "tags": { "network": "US:MI", "ref": "86", @@ -8473,12 +8129,12 @@ "role": "" }, { - "id": "w134150830", + "id": "w531", "type": "way", "role": "" }, { - "id": "w134150801", + "id": "w532", "type": "way", "role": "" }, @@ -8489,2249 +8145,2158 @@ } ] }, - "n185980093": { - "id": "n185980093", + "n2989": { + "id": "n2989", "loc": [-85.627141, 41.940727] }, - "n185958034": { - "id": "n185958034", + "n2990": { + "id": "n2990", "loc": [-85.627102, 41.939144] }, - "n185980088": { - "id": "n185980088", + "n2991": { + "id": "n2991", "loc": [-85.627127, 41.940086] }, - "n1475283999": { - "id": "n1475283999", + "n2992": { + "id": "n2992", "loc": [-85.627116, 41.940843] }, - "n185980090": { - "id": "n185980090", + "n2993": { + "id": "n2993", "loc": [-85.627132, 41.9402] }, - "n185963698": { - "id": "n185963698", + "n2994": { + "id": "n2994", "loc": [-85.629734, 41.940078] }, - "n185977754": { - "id": "n185977754", + "n2995": { + "id": "n2995", "loc": [-85.6276, 41.937412] }, - "n185980075": { - "id": "n185980075", + "n2996": { + "id": "n2996", "loc": [-85.627451, 41.937549] }, - "n185980077": { - "id": "n185980077", + "n2997": { + "id": "n2997", "loc": [-85.627375, 41.937618] }, - "n185980078": { - "id": "n185980078", + "n2998": { + "id": "n2998", "loc": [-85.627278, 41.937728] }, - "n185980079": { - "id": "n185980079", + "n2999": { + "id": "n2999", "loc": [-85.627199, 41.937842] }, - "n185980081": { - "id": "n185980081", + "n3000": { + "id": "n3000", "loc": [-85.627141, 41.937981] }, - "n185980083": { - "id": "n185980083", + "n3001": { + "id": "n3001", "loc": [-85.627109, 41.938153] }, - "n185980085": { - "id": "n185980085", + "n3002": { + "id": "n3002", "loc": [-85.627101, 41.938699] }, - "n185987021": { - "id": "n185987021", + "n3003": { + "id": "n3003", "loc": [-85.628311, 41.942261] }, - "n185988963": { - "id": "n185988963", + "n3004": { + "id": "n3004", "loc": [-85.628439, 41.940082] }, - "n1819800319": { - "id": "n1819800319", + "n3005": { + "id": "n3005", "loc": [-85.619538, 41.942622], "tags": { "leisure": "slipway" } }, - "n2139966621": { - "id": "n2139966621", + "n3006": { + "id": "n3006", "loc": [-85.619872, 41.942618] }, - "n2139966622": { - "id": "n2139966622", + "n3007": { + "id": "n3007", "loc": [-85.619755, 41.942612] }, - "n2139966623": { - "id": "n2139966623", + "n3008": { + "id": "n3008", "loc": [-85.619647, 41.942628] }, - "n2139966625": { - "id": "n2139966625", + "n3009": { + "id": "n3009", "loc": [-85.619415, 41.942626] }, - "n2139966629": { - "id": "n2139966629", + "n3010": { + "id": "n3010", "loc": [-85.619212, 41.942623] }, - "w17967539": { - "id": "w17967539", + "w541": { + "id": "w541", "tags": { "highway": "residential", "name": "1st Avenue" }, - "nodes": ["n185965099", "n185963395", "n185987021"] + "nodes": ["n2852", "n2851", "n3003"] }, - "w17967751": { - "id": "w17967751", + "w542": { + "id": "w542", "tags": { "highway": "residential", "name": "River Street" }, - "nodes": ["n185980088", "n185988963", "n185963698"] + "nodes": ["n2991", "n3004", "n2994"] }, - "w134150842": { - "id": "w134150842", + "w543": { + "id": "w543", "tags": { "bridge": "yes", "highway": "residential", "name": "6th Street" }, - "nodes": ["n185980090", "n185980093"] + "nodes": ["n2993", "n2989"] }, - "w17966740": { - "id": "w17966740", + "w544": { + "id": "w544", "tags": { "highway": "residential", "name": "6th Street" }, - "nodes": [ - "n185977754", - "n185980075", - "n185980077", - "n185980078", - "n185980079", - "n185980081", - "n185980083", - "n185980085", - "n185958034", - "n185980088", - "n185980090" - ] + "nodes": ["n2995", "n2996", "n2997", "n2998", "n2999", "n3000", "n3001", "n3002", "n2990", "n2991", "n2993"] }, - "w134150833": { - "id": "w134150833", + "w545": { + "id": "w545", "tags": { "highway": "residential", "name": "6th Street" }, - "nodes": ["n185980093", "n1475283999", "n185963392"] + "nodes": ["n2989", "n2992", "n2848"] }, - "n185947850": { - "id": "n185947850", + "n3011": { + "id": "n3011", "loc": [-85.631485, 41.942472] }, - "n185952745": { - "id": "n185952745", + "n3012": { + "id": "n3012", "loc": [-85.630986, 41.941786] }, - "n185972907": { - "id": "n185972907", + "n3013": { + "id": "n3013", "loc": [-85.631797, 41.942006] }, - "n185972911": { - "id": "n185972911", + "n3014": { + "id": "n3014", "loc": [-85.630972, 41.941162] }, - "n1475293223": { - "id": "n1475293223", + "n3015": { + "id": "n3015", "loc": [-85.631396, 41.941611], "tags": { "railway": "level_crossing" } }, - "n1475293231": { - "id": "n1475293231", + "n3016": { + "id": "n3016", "loc": [-85.631878, 41.941545] }, - "n1475293241": { - "id": "n1475293241", + "n3017": { + "id": "n3017", "loc": [-85.630461, 41.94055] }, - "n1475293246": { - "id": "n1475293246", + "n3018": { + "id": "n3018", "loc": [-85.629751, 41.939539], "tags": { "railway": "level_crossing" } }, - "n1475293251": { - "id": "n1475293251", + "n3019": { + "id": "n3019", "loc": [-85.631663, 41.941513] }, - "n2139982404": { - "id": "n2139982404", + "n3020": { + "id": "n3020", "loc": [-85.631328, 41.941375] }, - "n2139982407": { - "id": "n2139982407", + "n3021": { + "id": "n3021", "loc": [-85.632554, 41.941779] }, - "n2139982408": { - "id": "n2139982408", + "n3022": { + "id": "n3022", "loc": [-85.63245, 41.941769] }, - "n2139982409": { - "id": "n2139982409", + "n3023": { + "id": "n3023", "loc": [-85.632475, 41.941644] }, - "n2139982410": { - "id": "n2139982410", + "n3024": { + "id": "n3024", "loc": [-85.632581, 41.941654] }, - "n2139982411": { - "id": "n2139982411", + "n3025": { + "id": "n3025", "loc": [-85.631957, 41.941352] }, - "n2139982412": { - "id": "n2139982412", + "n3026": { + "id": "n3026", "loc": [-85.632293, 41.941139] }, - "n2139982413": { - "id": "n2139982413", + "n3027": { + "id": "n3027", "loc": [-85.632315, 41.941153] }, - "n2139982414": { - "id": "n2139982414", + "n3028": { + "id": "n3028", "loc": [-85.632302, 41.941262] }, - "n2139982415": { - "id": "n2139982415", + "n3029": { + "id": "n3029", "loc": [-85.63237, 41.941267] }, - "n2139982416": { - "id": "n2139982416", + "n3030": { + "id": "n3030", "loc": [-85.632356, 41.941538] }, - "n2139982417": { - "id": "n2139982417", + "n3031": { + "id": "n3031", "loc": [-85.632134, 41.941678] }, - "n2139982418": { - "id": "n2139982418", + "n3032": { + "id": "n3032", "loc": [-85.631942, 41.941687] }, - "n2139982419": { - "id": "n2139982419", + "n3033": { + "id": "n3033", "loc": [-85.63203, 41.941694] }, - "n2139982420": { - "id": "n2139982420", + "n3034": { + "id": "n3034", "loc": [-85.632166, 41.941555] }, - "n2139982421": { - "id": "n2139982421", + "n3035": { + "id": "n3035", "loc": [-85.632412, 41.941416] }, - "n2139982422": { - "id": "n2139982422", + "n3036": { + "id": "n3036", "loc": [-85.63248, 41.941342] }, - "n2139982423": { - "id": "n2139982423", + "n3037": { + "id": "n3037", "loc": [-85.632502, 41.941259] }, - "n2139982424": { - "id": "n2139982424", + "n3038": { + "id": "n3038", "loc": [-85.632453, 41.941161] }, - "n2139982425": { - "id": "n2139982425", + "n3039": { + "id": "n3039", "loc": [-85.63235, 41.941103] }, - "n2139982426": { - "id": "n2139982426", + "n3040": { + "id": "n3040", "loc": [-85.632236, 41.941118] }, - "n2139982427": { - "id": "n2139982427", + "n3041": { + "id": "n3041", "loc": [-85.631894, 41.941355] }, - "n2139982428": { - "id": "n2139982428", + "n3042": { + "id": "n3042", "loc": [-85.631859, 41.941411] }, - "n2139982429": { - "id": "n2139982429", + "n3043": { + "id": "n3043", "loc": [-85.632011, 41.941587] }, - "n2139982430": { - "id": "n2139982430", + "n3044": { + "id": "n3044", "loc": [-85.632446, 41.941379] }, - "n2139982431": { - "id": "n2139982431", + "n3045": { + "id": "n3045", "loc": [-85.632511, 41.941416] }, - "n2139982432": { - "id": "n2139982432", + "n3046": { + "id": "n3046", "loc": [-85.632545, 41.941634] }, - "n2139982433": { - "id": "n2139982433", + "n3047": { + "id": "n3047", "loc": [-85.632612, 41.94164] }, - "n2139982434": { - "id": "n2139982434", + "n3048": { + "id": "n3048", "loc": [-85.632595, 41.942197] }, - "n2139982435": { - "id": "n2139982435", + "n3049": { + "id": "n3049", "loc": [-85.632565, 41.942241] }, - "n2139982436": { - "id": "n2139982436", + "n3050": { + "id": "n3050", "loc": [-85.632515, 41.942256] }, - "n2139982437": { - "id": "n2139982437", + "n3051": { + "id": "n3051", "loc": [-85.63245, 41.94223] }, - "n2139982438": { - "id": "n2139982438", + "n3052": { + "id": "n3052", "loc": [-85.632401, 41.942174] }, - "n2139982439": { - "id": "n2139982439", + "n3053": { + "id": "n3053", "loc": [-85.632391, 41.942115] }, - "n2139982440": { - "id": "n2139982440", + "n3054": { + "id": "n3054", "loc": [-85.632029, 41.941859] }, - "n2139982441": { - "id": "n2139982441", + "n3055": { + "id": "n3055", "loc": [-85.631828, 41.941639] }, - "n1475293258": { - "id": "n1475293258", + "n3056": { + "id": "n3056", "loc": [-85.631829, 41.941508] }, - "n2168544754": { - "id": "n2168544754", + "n3057": { + "id": "n3057", "loc": [-85.631281, 41.94312] }, - "n2168544755": { - "id": "n2168544755", + "n3058": { + "id": "n3058", "loc": [-85.631421, 41.943065] }, - "n2168544756": { - "id": "n2168544756", + "n3059": { + "id": "n3059", "loc": [-85.631339, 41.942949] }, - "n2168544757": { - "id": "n2168544757", + "n3060": { + "id": "n3060", "loc": [-85.631199, 41.943004] }, - "n2168544758": { - "id": "n2168544758", + "n3061": { + "id": "n3061", "loc": [-85.631102, 41.942931] }, - "n2168544759": { - "id": "n2168544759", + "n3062": { + "id": "n3062", "loc": [-85.631009, 41.942809] }, - "n2168544760": { - "id": "n2168544760", + "n3063": { + "id": "n3063", "loc": [-85.631383, 41.94265] }, - "n2168544761": { - "id": "n2168544761", + "n3064": { + "id": "n3064", "loc": [-85.631477, 41.942773] }, - "n2168544762": { - "id": "n2168544762", + "n3065": { + "id": "n3065", "loc": [-85.630638, 41.942809] }, - "n2168544763": { - "id": "n2168544763", + "n3066": { + "id": "n3066", "loc": [-85.630738, 41.942943] }, - "n2168544764": { - "id": "n2168544764", + "n3067": { + "id": "n3067", "loc": [-85.630841, 41.9429] }, - "n2168544765": { - "id": "n2168544765", + "n3068": { + "id": "n3068", "loc": [-85.630741, 41.942766] }, - "n2168544766": { - "id": "n2168544766", + "n3069": { + "id": "n3069", "loc": [-85.63054, 41.942603] }, - "n2168544767": { - "id": "n2168544767", + "n3070": { + "id": "n3070", "loc": [-85.630498, 41.942619] }, - "n2168544768": { - "id": "n2168544768", + "n3071": { + "id": "n3071", "loc": [-85.630567, 41.942718] }, - "n2168544769": { - "id": "n2168544769", + "n3072": { + "id": "n3072", "loc": [-85.630616, 41.942698] }, - "n2168544770": { - "id": "n2168544770", + "n3073": { + "id": "n3073", "loc": [-85.630642, 41.94273] }, - "n2168544771": { - "id": "n2168544771", + "n3074": { + "id": "n3074", "loc": [-85.630686, 41.942714] }, - "n2168544772": { - "id": "n2168544772", + "n3075": { + "id": "n3075", "loc": [-85.630715, 41.942754] }, - "n2168544773": { - "id": "n2168544773", + "n3076": { + "id": "n3076", "loc": [-85.6309, 41.942681] }, - "n2168544774": { - "id": "n2168544774", + "n3077": { + "id": "n3077", "loc": [-85.630843, 41.942605] }, - "n2168544775": { - "id": "n2168544775", + "n3078": { + "id": "n3078", "loc": [-85.6309, 41.942581] }, - "n2168544776": { - "id": "n2168544776", + "n3079": { + "id": "n3079", "loc": [-85.630832, 41.942487] }, - "n2168544777": { - "id": "n2168544777", + "n3080": { + "id": "n3080", "loc": [-85.630773, 41.942509] }, - "n2168544778": { - "id": "n2168544778", + "n3081": { + "id": "n3081", "loc": [-85.630718, 41.942436] }, - "n2168544779": { - "id": "n2168544779", + "n3082": { + "id": "n3082", "loc": [-85.630485, 41.942524] }, - "n2189112720": { - "id": "n2189112720", + "n3083": { + "id": "n3083", "loc": [-85.631468, 41.941233] }, - "n2189112721": { - "id": "n2189112721", + "n3084": { + "id": "n3084", "loc": [-85.631334, 41.94114] }, - "n2189112722": { - "id": "n2189112722", + "n3085": { + "id": "n3085", "loc": [-85.632052, 41.940568] }, - "n2189112723": { - "id": "n2189112723", + "n3086": { + "id": "n3086", "loc": [-85.63219, 41.940663] }, - "n2189112724": { - "id": "n2189112724", + "n3087": { + "id": "n3087", "loc": [-85.631323, 41.940834] }, - "n2189112725": { - "id": "n2189112725", + "n3088": { + "id": "n3088", "loc": [-85.631122, 41.941002] }, - "n2189112726": { - "id": "n2189112726", + "n3089": { + "id": "n3089", "loc": [-85.631321, 41.941133] }, - "n2189112727": { - "id": "n2189112727", + "n3090": { + "id": "n3090", "loc": [-85.631521, 41.940966] }, - "n2189112728": { - "id": "n2189112728", + "n3091": { + "id": "n3091", "loc": [-85.631103, 41.940253] }, - "n2189112729": { - "id": "n2189112729", + "n3092": { + "id": "n3092", "loc": [-85.631226, 41.940211] }, - "n2189112730": { - "id": "n2189112730", + "n3093": { + "id": "n3093", "loc": [-85.631597, 41.940805] }, - "n2189112731": { - "id": "n2189112731", + "n3094": { + "id": "n3094", "loc": [-85.631474, 41.940847] }, - "n2189112732": { - "id": "n2189112732", + "n3095": { + "id": "n3095", "loc": [-85.631811, 41.940534] }, - "n2189112733": { - "id": "n2189112733", + "n3096": { + "id": "n3096", "loc": [-85.631588, 41.94061] }, - "n2189112734": { - "id": "n2189112734", + "n3097": { + "id": "n3097", "loc": [-85.631438, 41.940366] }, - "n2189112735": { - "id": "n2189112735", + "n3098": { + "id": "n3098", "loc": [-85.631661, 41.94029] }, - "n2189112736": { - "id": "n2189112736", + "n3099": { + "id": "n3099", "loc": [-85.630621, 41.940041] }, - "n2189112737": { - "id": "n2189112737", + "n3100": { + "id": "n3100", "loc": [-85.630436, 41.939773] }, - "n2189112738": { - "id": "n2189112738", + "n3101": { + "id": "n3101", "loc": [-85.63059, 41.939714] }, - "n2189112739": { - "id": "n2189112739", + "n3102": { + "id": "n3102", "loc": [-85.630775, 41.939983] }, - "n2189112740": { - "id": "n2189112740", + "n3103": { + "id": "n3103", "loc": [-85.63047, 41.940167] }, - "n2189112741": { - "id": "n2189112741", + "n3104": { + "id": "n3104", "loc": [-85.63013, 41.939686] }, - "n2189112742": { - "id": "n2189112742", + "n3105": { + "id": "n3105", "loc": [-85.630302, 41.939618] }, - "n2189112743": { - "id": "n2189112743", + "n3106": { + "id": "n3106", "loc": [-85.630641, 41.9401] }, - "n2189112744": { - "id": "n2189112744", + "n3107": { + "id": "n3107", "loc": [-85.630966, 41.940619] }, - "n2189112745": { - "id": "n2189112745", + "n3108": { + "id": "n3108", "loc": [-85.630874, 41.940493] }, - "n2189112746": { - "id": "n2189112746", + "n3109": { + "id": "n3109", "loc": [-85.630933, 41.940469] }, - "n2189112747": { - "id": "n2189112747", + "n3110": { + "id": "n3110", "loc": [-85.630763, 41.940236] }, - "n2189112748": { - "id": "n2189112748", + "n3111": { + "id": "n3111", "loc": [-85.63088, 41.940189] }, - "n2189112749": { - "id": "n2189112749", + "n3112": { + "id": "n3112", "loc": [-85.631142, 41.940548] }, - "n2189112750": { - "id": "n2189112750", + "n3113": { + "id": "n3113", "loc": [-85.630958, 41.940871] }, - "n2189112751": { - "id": "n2189112751", + "n3114": { + "id": "n3114", "loc": [-85.630874, 41.940778] }, - "n2189112752": { - "id": "n2189112752", + "n3115": { + "id": "n3115", "loc": [-85.631062, 41.940684] }, - "n2189112753": { - "id": "n2189112753", + "n3116": { + "id": "n3116", "loc": [-85.631146, 41.940777] }, - "n2189112754": { - "id": "n2189112754", + "n3117": { + "id": "n3117", "loc": [-85.632031, 41.940575] }, - "n2189112755": { - "id": "n2189112755", + "n3118": { + "id": "n3118", "loc": [-85.631777, 41.940186] }, - "n2189112756": { - "id": "n2189112756", + "n3119": { + "id": "n3119", "loc": [-85.631346, 41.940179] }, - "n2189112757": { - "id": "n2189112757", + "n3120": { + "id": "n3120", "loc": [-85.631342, 41.94012] }, - "n2189112758": { - "id": "n2189112758", + "n3121": { + "id": "n3121", "loc": [-85.631831, 41.940118] }, - "n2189112759": { - "id": "n2189112759", + "n3122": { + "id": "n3122", "loc": [-85.632115, 41.940543] }, - "n2189112760": { - "id": "n2189112760", + "n3123": { + "id": "n3123", "loc": [-85.631031, 41.941683] }, - "n2189112761": { - "id": "n2189112761", + "n3124": { + "id": "n3124", "loc": [-85.630981, 41.941608] }, - "n2189112762": { - "id": "n2189112762", + "n3125": { + "id": "n3125", "loc": [-85.631209, 41.941516] }, - "n2189112763": { - "id": "n2189112763", + "n3126": { + "id": "n3126", "loc": [-85.631264, 41.941586] }, - "n2189112764": { - "id": "n2189112764", + "n3127": { + "id": "n3127", "loc": [-85.630938, 41.94155] }, - "n2189112765": { - "id": "n2189112765", + "n3128": { + "id": "n3128", "loc": [-85.631156, 41.941462] }, - "n2189112766": { - "id": "n2189112766", + "n3129": { + "id": "n3129", "loc": [-85.631197, 41.94152] }, - "n2189112767": { - "id": "n2189112767", + "n3130": { + "id": "n3130", "loc": [-85.630895, 41.941485] }, - "n2189112768": { - "id": "n2189112768", + "n3131": { + "id": "n3131", "loc": [-85.630824, 41.941389] }, - "n2189112769": { - "id": "n2189112769", + "n3132": { + "id": "n3132", "loc": [-85.630986, 41.941323] }, - "n2189112770": { - "id": "n2189112770", + "n3133": { + "id": "n3133", "loc": [-85.631057, 41.941419] }, - "n2189112771": { - "id": "n2189112771", + "n3134": { + "id": "n3134", "loc": [-85.630777, 41.941328] }, - "n2189112772": { - "id": "n2189112772", + "n3135": { + "id": "n3135", "loc": [-85.630907, 41.941274] }, - "n2189112773": { - "id": "n2189112773", + "n3136": { + "id": "n3136", "loc": [-85.630953, 41.941335] }, - "n2189112774": { - "id": "n2189112774", + "n3137": { + "id": "n3137", "loc": [-85.630797, 41.941247] }, - "n2189112775": { - "id": "n2189112775", + "n3138": { + "id": "n3138", "loc": [-85.630701, 41.94117] }, - "n2189112776": { - "id": "n2189112776", + "n3139": { + "id": "n3139", "loc": [-85.630829, 41.941113] }, - "n2189112777": { - "id": "n2189112777", + "n3140": { + "id": "n3140", "loc": [-85.6309, 41.941201] }, - "n2189112778": { - "id": "n2189112778", + "n3141": { + "id": "n3141", "loc": [-85.630765, 41.941206] }, - "n2189112779": { - "id": "n2189112779", + "n3142": { + "id": "n3142", "loc": [-85.630739, 41.941218] }, - "n2189112780": { - "id": "n2189112780", + "n3143": { + "id": "n3143", "loc": [-85.630582, 41.941039] }, - "n2189112781": { - "id": "n2189112781", + "n3144": { + "id": "n3144", "loc": [-85.630412, 41.940818] }, - "n2189112782": { - "id": "n2189112782", + "n3145": { + "id": "n3145", "loc": [-85.630509, 41.940777] }, - "n2189112783": { - "id": "n2189112783", + "n3146": { + "id": "n3146", "loc": [-85.630678, 41.941004] }, - "n2189112784": { - "id": "n2189112784", + "n3147": { + "id": "n3147", "loc": [-85.630773, 41.942166] }, - "n2189112785": { - "id": "n2189112785", + "n3148": { + "id": "n3148", "loc": [-85.630708, 41.942074] }, - "n2189112786": { - "id": "n2189112786", + "n3149": { + "id": "n3149", "loc": [-85.630863, 41.942013] }, - "n2189112787": { - "id": "n2189112787", + "n3150": { + "id": "n3150", "loc": [-85.630928, 41.942105] }, - "n2189112788": { - "id": "n2189112788", + "n3151": { + "id": "n3151", "loc": [-85.630701, 41.942026] }, - "n2189112789": { - "id": "n2189112789", + "n3152": { + "id": "n3152", "loc": [-85.630665, 41.941971] }, - "n2189112790": { - "id": "n2189112790", + "n3153": { + "id": "n3153", "loc": [-85.630793, 41.941918] }, - "n2189112791": { - "id": "n2189112791", + "n3154": { + "id": "n3154", "loc": [-85.630837, 41.94197] }, - "n2189112792": { - "id": "n2189112792", + "n3155": { + "id": "n3155", "loc": [-85.630757, 41.941871] }, - "n2189112793": { - "id": "n2189112793", + "n3156": { + "id": "n3156", "loc": [-85.630629, 41.941923] }, - "n2189112794": { - "id": "n2189112794", + "n3157": { + "id": "n3157", "loc": [-85.630694, 41.941783] }, - "n2189112795": { - "id": "n2189112795", + "n3158": { + "id": "n3158", "loc": [-85.630534, 41.941847] }, - "n2189112796": { - "id": "n2189112796", + "n3159": { + "id": "n3159", "loc": [-85.630598, 41.941935] }, - "n2189123410": { - "id": "n2189123410", + "n3160": { + "id": "n3160", "loc": [-85.631548, 41.93938] }, - "n2189123412": { - "id": "n2189123412", + "n3161": { + "id": "n3161", "loc": [-85.631525, 41.939919] }, - "n2189123415": { - "id": "n2189123415", + "n3162": { + "id": "n3162", "loc": [-85.631648, 41.940043] }, - "n1475283996": { - "id": "n1475283996", + "n3163": { + "id": "n3163", "loc": [-85.627051, 41.931712], "tags": { "railway": "level_crossing" } }, - "n1475284004": { - "id": "n1475284004", + "n3164": { + "id": "n3164", "loc": [-85.627818, 41.934212], "tags": { "railway": "level_crossing" } }, - "n1475284017": { - "id": "n1475284017", + "n3165": { + "id": "n3165", "loc": [-85.627499, 41.933182], "tags": { "railway": "level_crossing" } }, - "n1475284021": { - "id": "n1475284021", + "n3166": { + "id": "n3166", "loc": [-85.629711, 41.935394], "tags": { "railway": "level_crossing" } }, - "n1475284027": { - "id": "n1475284027", + "n3167": { + "id": "n3167", "loc": [-85.62811, 41.935198], "tags": { "railway": "level_crossing" } }, - "n1475284035": { - "id": "n1475284035", + "n3168": { + "id": "n3168", "loc": [-85.626888, 41.931176], "tags": { "railway": "level_crossing" } }, - "n2189123382": { - "id": "n2189123382", + "n3169": { + "id": "n3169", "loc": [-85.633628, 41.935437] }, - "n2189123384": { - "id": "n2189123384", + "n3170": { + "id": "n3170", "loc": [-85.632849, 41.935518] }, - "n2189123387": { - "id": "n2189123387", + "n3171": { + "id": "n3171", "loc": [-85.632376, 41.93574] }, - "n2189123388": { - "id": "n2189123388", + "n3172": { + "id": "n3172", "loc": [-85.631517, 41.935897] }, - "n2189123389": { - "id": "n2189123389", + "n3173": { + "id": "n3173", "loc": [-85.630433, 41.936124] }, - "n2189123390": { - "id": "n2189123390", + "n3174": { + "id": "n3174", "loc": [-85.630207, 41.936427] }, - "n2189123391": { - "id": "n2189123391", + "n3175": { + "id": "n3175", "loc": [-85.630346, 41.936795] }, - "n2189123392": { - "id": "n2189123392", + "n3176": { + "id": "n3176", "loc": [-85.62996, 41.936974] }, - "n2189123393": { - "id": "n2189123393", + "n3177": { + "id": "n3177", "loc": [-85.629916, 41.937488] }, - "n2189123394": { - "id": "n2189123394", + "n3178": { + "id": "n3178", "loc": [-85.629946, 41.937802] }, - "n2189123395": { - "id": "n2189123395", + "n3179": { + "id": "n3179", "loc": [-85.629977, 41.937905] }, - "n2189123396": { - "id": "n2189123396", + "n3180": { + "id": "n3180", "loc": [-85.63016, 41.937909] }, - "n2189123397": { - "id": "n2189123397", + "n3181": { + "id": "n3181", "loc": [-85.630804, 41.937791] }, - "n2189123398": { - "id": "n2189123398", + "n3182": { + "id": "n3182", "loc": [-85.631688, 41.937808] }, - "n2189123399": { - "id": "n2189123399", + "n3183": { + "id": "n3183", "loc": [-85.631685, 41.938008] }, - "n2189123400": { - "id": "n2189123400", + "n3184": { + "id": "n3184", "loc": [-85.631845, 41.938116] }, - "n2189123401": { - "id": "n2189123401", + "n3185": { + "id": "n3185", "loc": [-85.63207, 41.938181] }, - "n2189123402": { - "id": "n2189123402", + "n3186": { + "id": "n3186", "loc": [-85.632143, 41.938371] }, - "n2189123404": { - "id": "n2189123404", + "n3187": { + "id": "n3187", "loc": [-85.632056, 41.938435] }, - "n2189123406": { - "id": "n2189123406", + "n3188": { + "id": "n3188", "loc": [-85.631787, 41.938457] }, - "n2189123409": { - "id": "n2189123409", + "n3189": { + "id": "n3189", "loc": [-85.631657, 41.938728] }, - "n2189123417": { - "id": "n2189123417", + "n3190": { + "id": "n3190", "loc": [-85.631595, 41.93775] }, - "n2189123419": { - "id": "n2189123419", + "n3191": { + "id": "n3191", "loc": [-85.630264, 41.937839] }, - "w208640158": { - "id": "w208640158", + "w546": { + "id": "w546", "tags": { "natural": "wetland" }, "nodes": [ - "n2189123379", - "n2189123382", - "n2189123384", - "n2189123387", - "n2189123388", - "n2189123389", - "n2189123390", - "n2189123391", - "n2189123392", - "n2189123393", - "n2189123394", - "n2189123395", - "n2189123396", - "n2189123419", - "n2189123397", - "n2189123417", - "n2189123398", - "n2189123399", - "n2189123400", - "n2189123401", - "n2189123402", - "n2189123404", - "n2189123406", - "n2189123409", - "n2189123410", - "n2189123412", - "n2189123415", - "n1819805722", - "n1819805861", - "n1819805887", - "n1819805760", - "n1819805641", - "n1819805632", - "n2189123379" + "n2313", + "n3169", + "n3170", + "n3171", + "n3172", + "n3173", + "n3174", + "n3175", + "n3176", + "n3177", + "n3178", + "n3179", + "n3180", + "n3191", + "n3181", + "n3190", + "n3182", + "n3183", + "n3184", + "n3185", + "n3186", + "n3187", + "n3188", + "n3189", + "n3160", + "n3161", + "n3162", + "n2126", + "n2146", + "n2156", + "n2129", + "n2112", + "n2109", + "n2313" ] }, - "w134150787": { - "id": "w134150787", + "w547": { + "id": "w547", "tags": { "name": "Conrail Railroad", "railway": "rail" }, - "nodes": ["n185972905", "n185972907", "n1475293223", "n185972911", "n1475293241", "n1475293246"] + "nodes": ["n2088", "n3013", "n3015", "n3014", "n3017", "n3018"] }, - "w208639443": { - "id": "w208639443", + "w548": { + "id": "w548", "tags": { "building": "yes" }, - "nodes": ["n2189112720", "n2189112721", "n2189112722", "n2189112723", "n2189112720"] + "nodes": ["n3083", "n3084", "n3085", "n3086", "n3083"] }, - "w203985741": { - "id": "w203985741", + "w549": { + "id": "w549", "tags": { "leisure": "park", "name": "Conservation Park" }, - "nodes": [ - "n2139982404", - "n2139982405", - "n2139982399", - "n2139982400", - "n1819805770", - "n2139982402", - "n2139982403", - "n2139982401", - "n1819805780", - "n1819805834", - "n2139982406", - "n2139982404" - ] + "nodes": ["n3020", "n2288", "n2283", "n2284", "n2131", "n2286", "n2287", "n2285", "n2132", "n2140", "n2289", "n3020"] }, - "w17963676": { - "id": "w17963676", + "w550": { + "id": "w550", "tags": { "highway": "service" }, "nodes": [ - "n1475293258", - "n2139982428", - "n2139982427", - "n2139982426", - "n2139982425", - "n2139982424", - "n2139982423", - "n2139982422", - "n2139982430", - "n2139982421", - "n2139982420", - "n2139982429", - "n1475293231", - "n1475293258", - "n1475293251", - "n1475293223", - "n185952745" + "n3056", + "n3042", + "n3041", + "n3040", + "n3039", + "n3038", + "n3037", + "n3036", + "n3044", + "n3035", + "n3034", + "n3043", + "n3016", + "n3056", + "n3019", + "n3015", + "n3012" ] }, - "w203985745": { - "id": "w203985745", + "w551": { + "id": "w551", "tags": { "highway": "footway" }, - "nodes": [ - "n2139982430", - "n2139982431", - "n2139982432", - "n2139982433", - "n2139982434", - "n2139982435", - "n2139982436", - "n2139982437", - "n2139982438", - "n2139982439", - "n2139982440", - "n2139982441", - "n1475293231" - ] + "nodes": ["n3044", "n3045", "n3046", "n3047", "n3048", "n3049", "n3050", "n3051", "n3052", "n3053", "n3054", "n3055", "n3016"] }, - "w208639451": { - "id": "w208639451", + "w552": { + "id": "w552", "tags": { "building": "yes" }, - "nodes": ["n2189112754", "n2189112755", "n2189112756", "n2189112757", "n2189112758", "n2189112759", "n2189112754"] + "nodes": ["n3117", "n3118", "n3119", "n3120", "n3121", "n3122", "n3117"] }, - "w208639452": { - "id": "w208639452", + "w553": { + "id": "w553", "tags": { "building": "yes" }, - "nodes": ["n2189112760", "n2189112761", "n2189112766", "n2189112762", "n2189112763", "n2189112760"] + "nodes": ["n3123", "n3124", "n3129", "n3125", "n3126", "n3123"] }, - "w206805244": { - "id": "w206805244", + "w554": { + "id": "w554", "tags": { "building": "yes" }, "nodes": [ - "n2168544766", - "n2168544767", - "n2168544768", - "n2168544769", - "n2168544770", - "n2168544771", - "n2168544772", - "n2168544773", - "n2168544774", - "n2168544775", - "n2168544776", - "n2168544777", - "n2168544778", - "n2168544779", - "n2168544766" + "n3069", + "n3070", + "n3071", + "n3072", + "n3073", + "n3074", + "n3075", + "n3076", + "n3077", + "n3078", + "n3079", + "n3080", + "n3081", + "n3082", + "n3069" ] }, - "w208639444": { - "id": "w208639444", + "w555": { + "id": "w555", "tags": { "building": "yes" }, - "nodes": ["n2189112724", "n2189112725", "n2189112726", "n2189112727", "n2189112724"] + "nodes": ["n3087", "n3088", "n3089", "n3090", "n3087"] }, - "w208639450": { - "id": "w208639450", + "w556": { + "id": "w556", "tags": { "building": "yes" }, - "nodes": ["n2189112750", "n2189112751", "n2189112752", "n2189112753", "n2189112750"] + "nodes": ["n3113", "n3114", "n3115", "n3116", "n3113"] }, - "w208639448": { - "id": "w208639448", + "w557": { + "id": "w557", "tags": { "building": "yes" }, - "nodes": ["n2189112740", "n2189112741", "n2189112742", "n2189112743", "n2189112740"] + "nodes": ["n3103", "n3104", "n3105", "n3106", "n3103"] }, - "w208639453": { - "id": "w208639453", + "w558": { + "id": "w558", "tags": { "building": "yes" }, - "nodes": ["n2189112764", "n2189112765", "n2189112766", "n2189112761", "n2189112764"] + "nodes": ["n3127", "n3128", "n3129", "n3124", "n3127"] }, - "w208639456": { - "id": "w208639456", + "w559": { + "id": "w559", "tags": { "building": "yes" }, - "nodes": ["n2189112774", "n2189112778", "n2189112779", "n2189112775", "n2189112776", "n2189112777", "n2189112774"] + "nodes": ["n3137", "n3141", "n3142", "n3138", "n3139", "n3140", "n3137"] }, - "w208639445": { - "id": "w208639445", + "w560": { + "id": "w560", "tags": { "building": "yes" }, - "nodes": ["n2189112728", "n2189112729", "n2189112730", "n2189112731", "n2189112728"] + "nodes": ["n3091", "n3092", "n3093", "n3094", "n3091"] }, - "w208639461": { - "id": "w208639461", + "w561": { + "id": "w561", "tags": { "building": "yes" }, - "nodes": ["n2189112792", "n2189112794", "n2189112795", "n2189112796", "n2189112793", "n2189112792"] + "nodes": ["n3155", "n3157", "n3158", "n3159", "n3156", "n3155"] }, - "w206805241": { - "id": "w206805241", + "w562": { + "id": "w562", "tags": { "building": "yes" }, - "nodes": ["n2168544754", "n2168544755", "n2168544756", "n2168544757", "n2168544754"] + "nodes": ["n3057", "n3058", "n3059", "n3060", "n3057"] }, - "w208639449": { - "id": "w208639449", + "w563": { + "id": "w563", "tags": { "building": "yes" }, - "nodes": ["n2189112744", "n2189112745", "n2189112746", "n2189112747", "n2189112748", "n2189112749", "n2189112744"] + "nodes": ["n3107", "n3108", "n3109", "n3110", "n3111", "n3112", "n3107"] }, - "w208639455": { - "id": "w208639455", + "w564": { + "id": "w564", "tags": { "building": "yes" }, - "nodes": ["n2189112771", "n2189112772", "n2189112773", "n2189112768", "n2189112771"] + "nodes": ["n3134", "n3135", "n3136", "n3131", "n3134"] }, - "w208639457": { - "id": "w208639457", + "w565": { + "id": "w565", "tags": { "building": "yes" }, - "nodes": ["n2189112780", "n2189112781", "n2189112782", "n2189112783", "n2189112780"] + "nodes": ["n3143", "n3144", "n3145", "n3146", "n3143"] }, - "w208639446": { - "id": "w208639446", + "w566": { + "id": "w566", "tags": { "building": "yes" }, - "nodes": ["n2189112732", "n2189112733", "n2189112734", "n2189112735", "n2189112732"] + "nodes": ["n3095", "n3096", "n3097", "n3098", "n3095"] }, - "w208639454": { - "id": "w208639454", + "w567": { + "id": "w567", "tags": { "building": "yes" }, - "nodes": ["n2189112767", "n2189112768", "n2189112773", "n2189112769", "n2189112770", "n2189112767"] + "nodes": ["n3130", "n3131", "n3136", "n3132", "n3133", "n3130"] }, - "w203985743": { - "id": "w203985743", + "w568": { + "id": "w568", "tags": { "amenity": "parking" }, - "nodes": [ - "n2139982411", - "n2139982412", - "n2139982413", - "n2139982414", - "n2139982415", - "n2139982416", - "n2139982417", - "n2139982419", - "n2139982418", - "n2139982411" - ] + "nodes": ["n3025", "n3026", "n3027", "n3028", "n3029", "n3030", "n3031", "n3033", "n3032", "n3025"] }, - "w206805242": { - "id": "w206805242", + "w569": { + "id": "w569", "tags": { "building": "yes" }, - "nodes": ["n2168544758", "n2168544759", "n2168544760", "n2168544761", "n2168544758"] + "nodes": ["n3061", "n3062", "n3063", "n3064", "n3061"] }, - "w208639460": { - "id": "w208639460", + "w570": { + "id": "w570", "tags": { "building": "yes" }, - "nodes": ["n2189112792", "n2189112793", "n2189112789", "n2189112790", "n2189112792"] + "nodes": ["n3155", "n3156", "n3152", "n3153", "n3155"] }, - "w208639447": { - "id": "w208639447", + "w571": { + "id": "w571", "tags": { "building": "yes" }, - "nodes": ["n2189112736", "n2189112737", "n2189112738", "n2189112739", "n2189112736"] + "nodes": ["n3099", "n3100", "n3101", "n3102", "n3099"] }, - "w208639458": { - "id": "w208639458", + "w572": { + "id": "w572", "tags": { "building": "yes" }, - "nodes": ["n2189112784", "n2189112785", "n2189112786", "n2189112787", "n2189112784"] + "nodes": ["n3147", "n3148", "n3149", "n3150", "n3147"] }, - "w203985744": { - "id": "w203985744", + "w573": { + "id": "w573", "tags": { "highway": "service" }, - "nodes": ["n2139982425", "n2139982400"] + "nodes": ["n3039", "n2284"] }, - "w208639459": { - "id": "w208639459", + "w574": { + "id": "w574", "tags": { "building": "yes" }, - "nodes": ["n2189112788", "n2189112789", "n2189112790", "n2189112791", "n2189112788"] + "nodes": ["n3151", "n3152", "n3153", "n3154", "n3151"] }, - "w203985742": { - "id": "w203985742", + "w575": { + "id": "w575", "tags": { "amenity": "shelter", "shelter_type": "picnic_shelter" }, - "nodes": ["n2139982407", "n2139982408", "n2139982409", "n2139982410", "n2139982407"] + "nodes": ["n3021", "n3022", "n3023", "n3024", "n3021"] }, - "w206805243": { - "id": "w206805243", + "w576": { + "id": "w576", "tags": { "building": "yes" }, - "nodes": ["n2168544762", "n2168544763", "n2168544764", "n2168544765", "n2168544762"] + "nodes": ["n3065", "n3066", "n3067", "n3068", "n3065"] }, - "n185959081": { - "id": "n185959081", + "n3192": { + "id": "n3192", "loc": [-85.628469, 41.948674] }, - "n185967427": { - "id": "n185967427", + "n3193": { + "id": "n3193", "loc": [-85.63205, 41.951174] }, - "n185967424": { - "id": "n185967424", + "n3194": { + "id": "n3194", "loc": [-85.632034, 41.949905] }, - "n185968101": { - "id": "n185968101", + "n3195": { + "id": "n3195", "loc": [-85.630841, 41.951197] }, - "n185960792": { - "id": "n185960792", + "n3196": { + "id": "n3196", "loc": [-85.632083, 41.953707] }, - "n185961389": { - "id": "n185961389", + "n3197": { + "id": "n3197", "loc": [-85.630929, 41.959037] }, - "n185961391": { - "id": "n185961391", + "n3198": { + "id": "n3198", "loc": [-85.632151, 41.959028] }, - "n185966953": { - "id": "n185966953", + "n3199": { + "id": "n3199", "loc": [-85.630911, 41.957428] }, - "n185966955": { - "id": "n185966955", + "n3200": { + "id": "n3200", "loc": [-85.63213, 41.957427] }, - "n185967430": { - "id": "n185967430", + "n3201": { + "id": "n3201", "loc": [-85.632072, 41.95244] }, - "n185967432": { - "id": "n185967432", + "n3202": { + "id": "n3202", "loc": [-85.632095, 41.954677] }, - "n185967434": { - "id": "n185967434", + "n3203": { + "id": "n3203", "loc": [-85.632111, 41.955916] }, - "n185968102": { - "id": "n185968102", + "n3204": { + "id": "n3204", "loc": [-85.630855, 41.952452] }, - "n185968104": { - "id": "n185968104", + "n3205": { + "id": "n3205", "loc": [-85.630869, 41.953713] }, - "n185968106": { - "id": "n185968106", + "n3206": { + "id": "n3206", "loc": [-85.63088, 41.954682] }, - "n185968108": { - "id": "n185968108", + "n3207": { + "id": "n3207", "loc": [-85.630894, 41.955913] }, - "n185978969": { - "id": "n185978969", + "n3208": { + "id": "n3208", "loc": [-85.633214, 41.948618] }, - "n185985812": { - "id": "n185985812", + "n3209": { + "id": "n3209", "loc": [-85.633274, 41.951159] }, - "n185986155": { - "id": "n185986155", + "n3210": { + "id": "n3210", "loc": [-85.633258, 41.949891] }, - "n2208608826": { - "id": "n2208608826", + "n3211": { + "id": "n3211", "loc": [-85.633922, 41.948622] }, - "w17964531": { - "id": "w17964531", + "w577": { + "id": "w577", "tags": { "highway": "residential", "name": "Willow Drive" }, - "nodes": ["n185959079", "n185959081"] + "nodes": ["n2944", "n3192"] }, - "w17967386": { - "id": "w17967386", + "w578": { + "id": "w578", "tags": { "highway": "residential", "name": "East Armitage Street" }, - "nodes": ["n185982195", "n185968101", "n185967427", "n185985812", "n185974583"] + "nodes": ["n2769", "n3195", "n3193", "n3209", "n2758"] }, - "w17965502": { - "id": "w17965502", + "w579": { + "id": "w579", "tags": { "highway": "residential", "name": "Elm Street" }, - "nodes": ["n185968100", "n185968101", "n185968102", "n185968104", "n185968106", "n185968108", "n185966953", "n185961389", "n1032"] + "nodes": ["n2754", "n3195", "n3204", "n3205", "n3206", "n3207", "n3199", "n3197", "n1032"] }, - "w17967844": { - "id": "w17967844", + "w580": { + "id": "w580", "tags": { "highway": "residential", "name": "East Bennett Street" }, - "nodes": ["n185982193", "n185967424", "n185986155", "n185978390"] + "nodes": ["n2768", "n3194", "n3210", "n2760"] }, - "w17966581": { - "id": "w17966581", + "w581": { + "id": "w581", "tags": { "highway": "residential", "name": "East Kelsey Street" }, - "nodes": ["n185978967", "n185978969", "n2208608826", "n185971578"] + "nodes": ["n2765", "n3208", "n3211", "n2755"] }, - "w17965402": { - "id": "w17965402", + "w582": { + "id": "w582", "tags": { "highway": "residential", "name": "Walnut Street" }, - "nodes": [ - "n185967422", - "n185967424", - "n185967427", - "n185967430", - "n185960792", - "n185967432", - "n185967434", - "n185966955", - "n185961391", - "n1033" - ] + "nodes": ["n2753", "n3194", "n3193", "n3201", "n3196", "n3202", "n3203", "n3200", "n3198", "n1033"] }, - "n2199093506": { - "id": "n2199093506", + "n3212": { + "id": "n3212", "loc": [-85.625188, 41.947832] }, - "n2199093505": { - "id": "n2199093505", + "n3213": { + "id": "n3213", "loc": [-85.625208, 41.947775] }, - "n2199093504": { - "id": "n2199093504", + "n3214": { + "id": "n3214", "loc": [-85.625229, 41.94776] }, - "n2199093503": { - "id": "n2199093503", + "n3215": { + "id": "n3215", "loc": [-85.625201, 41.947749] }, - "n2199093502": { - "id": "n2199093502", + "n3216": { + "id": "n3216", "loc": [-85.625168, 41.947707] }, - "n2199093501": { - "id": "n2199093501", + "n3217": { + "id": "n3217", "loc": [-85.625171, 41.947609] }, - "n2199093500": { - "id": "n2199093500", + "n3218": { + "id": "n3218", "loc": [-85.625213, 41.947564] }, - "n2199093499": { - "id": "n2199093499", + "n3219": { + "id": "n3219", "loc": [-85.62529, 41.94756] }, - "n2199093498": { - "id": "n2199093498", + "n3220": { + "id": "n3220", "loc": [-85.625303, 41.947533] }, - "n2199093497": { - "id": "n2199093497", + "n3221": { + "id": "n3221", "loc": [-85.625344, 41.947482] }, - "n2199093496": { - "id": "n2199093496", + "n3222": { + "id": "n3222", "loc": [-85.625442, 41.947468] }, - "n2199093495": { - "id": "n2199093495", + "n3223": { + "id": "n3223", "loc": [-85.62565, 41.947494] }, - "n2199093494": { - "id": "n2199093494", + "n3224": { + "id": "n3224", "loc": [-85.625726, 41.947613] }, - "n2199093493": { - "id": "n2199093493", + "n3225": { + "id": "n3225", "loc": [-85.625703, 41.947728] }, - "n2199093492": { - "id": "n2199093492", + "n3226": { + "id": "n3226", "loc": [-85.625534, 41.94781] }, - "n2199093491": { - "id": "n2199093491", + "n3227": { + "id": "n3227", "loc": [-85.625391, 41.947822] }, - "n2199093490": { - "id": "n2199093490", + "n3228": { + "id": "n3228", "loc": [-85.625304, 41.947859] }, - "n2199093489": { - "id": "n2199093489", + "n3229": { + "id": "n3229", "loc": [-85.625203, 41.947885] }, - "n2199093458": { - "id": "n2199093458", + "n3230": { + "id": "n3230", "loc": [-85.624688, 41.948662] }, - "n2199093457": { - "id": "n2199093457", + "n3231": { + "id": "n3231", "loc": [-85.624313, 41.948658] }, - "n2199093456": { - "id": "n2199093456", + "n3232": { + "id": "n3232", "loc": [-85.624306, 41.949057] }, - "n2199093455": { - "id": "n2199093455", + "n3233": { + "id": "n3233", "loc": [-85.624681, 41.94906] }, - "n2199093514": { - "id": "n2199093514", + "n3234": { + "id": "n3234", "loc": [-85.623623, 41.949606] }, - "n2199093513": { - "id": "n2199093513", + "n3235": { + "id": "n3235", "loc": [-85.623623, 41.9497] }, - "n2199093512": { - "id": "n2199093512", + "n3236": { + "id": "n3236", "loc": [-85.623357, 41.9497] }, - "n2199093511": { - "id": "n2199093511", + "n3237": { + "id": "n3237", "loc": [-85.623357, 41.949614] }, - "n2199093508": { - "id": "n2199093508", + "n3238": { + "id": "n3238", "loc": [-85.623974, 41.949429] }, - "n2199093507": { - "id": "n2199093507", + "n3239": { + "id": "n3239", "loc": [-85.623974, 41.949605] }, - "n2199093488": { - "id": "n2199093488", + "n3240": { + "id": "n3240", "loc": [-85.624497, 41.951229] }, - "n2199093487": { - "id": "n2199093487", + "n3241": { + "id": "n3241", "loc": [-85.624497, 41.951126] }, - "n2199093486": { - "id": "n2199093486", + "n3242": { + "id": "n3242", "loc": [-85.624315, 41.951126] }, - "n2199093485": { - "id": "n2199093485", + "n3243": { + "id": "n3243", "loc": [-85.624315, 41.951229] }, - "n2199093484": { - "id": "n2199093484", + "n3244": { + "id": "n3244", "loc": [-85.624121, 41.950866] }, - "n2199093483": { - "id": "n2199093483", + "n3245": { + "id": "n3245", "loc": [-85.624115, 41.950525] }, - "n2199093482": { - "id": "n2199093482", + "n3246": { + "id": "n3246", "loc": [-85.624315, 41.950523] }, - "n2199093481": { - "id": "n2199093481", + "n3247": { + "id": "n3247", "loc": [-85.62432, 41.950865] }, - "n2199093480": { - "id": "n2199093480", + "n3248": { + "id": "n3248", "loc": [-85.624393, 41.950867] }, - "n2199093479": { - "id": "n2199093479", + "n3249": { + "id": "n3249", "loc": [-85.62439, 41.950596] }, - "n2199093478": { - "id": "n2199093478", + "n3250": { + "id": "n3250", "loc": [-85.624673, 41.950594] }, - "n2199093477": { - "id": "n2199093477", + "n3251": { + "id": "n3251", "loc": [-85.624675, 41.95082] }, - "n2199093476": { - "id": "n2199093476", + "n3252": { + "id": "n3252", "loc": [-85.62451, 41.950821] }, - "n2199093475": { - "id": "n2199093475", + "n3253": { + "id": "n3253", "loc": [-85.62451, 41.950866] }, - "n2199093474": { - "id": "n2199093474", + "n3254": { + "id": "n3254", "loc": [-85.624101, 41.949346] }, - "n2199093473": { - "id": "n2199093473", + "n3255": { + "id": "n3255", "loc": [-85.624244, 41.949346] }, - "n2199093472": { - "id": "n2199093472", + "n3256": { + "id": "n3256", "loc": [-85.624244, 41.949368] }, - "n2199093471": { - "id": "n2199093471", + "n3257": { + "id": "n3257", "loc": [-85.62434, 41.949368] }, - "n2199093470": { - "id": "n2199093470", + "n3258": { + "id": "n3258", "loc": [-85.624342, 41.949351] }, - "n2199093469": { - "id": "n2199093469", + "n3259": { + "id": "n3259", "loc": [-85.624725, 41.949348] }, - "n2199093468": { - "id": "n2199093468", + "n3260": { + "id": "n3260", "loc": [-85.624755, 41.950495] }, - "n2199093467": { - "id": "n2199093467", + "n3261": { + "id": "n3261", "loc": [-85.624121, 41.950502] }, - "n2199093466": { - "id": "n2199093466", + "n3262": { + "id": "n3262", "loc": [-85.62544, 41.950174] }, - "n2199093465": { - "id": "n2199093465", + "n3263": { + "id": "n3263", "loc": [-85.625441, 41.949987] }, - "n2199093464": { - "id": "n2199093464", + "n3264": { + "id": "n3264", "loc": [-85.625536, 41.949988] }, - "n2199093463": { - "id": "n2199093463", + "n3265": { + "id": "n3265", "loc": [-85.625537, 41.949844] }, - "n2199093462": { - "id": "n2199093462", + "n3266": { + "id": "n3266", "loc": [-85.625564, 41.949844] }, - "n2199093461": { - "id": "n2199093461", + "n3267": { + "id": "n3267", "loc": [-85.625565, 41.949667] }, - "n2199093460": { - "id": "n2199093460", + "n3268": { + "id": "n3268", "loc": [-85.625182, 41.949666] }, - "n2199093459": { - "id": "n2199093459", + "n3269": { + "id": "n3269", "loc": [-85.625179, 41.950173] }, - "n2199093510": { - "id": "n2199093510", + "n3270": { + "id": "n3270", "loc": [-85.622992, 41.949614] }, - "n2199093509": { - "id": "n2199093509", + "n3271": { + "id": "n3271", "loc": [-85.622991, 41.949431] }, - "n185955120": { - "id": "n185955120", + "n3272": { + "id": "n3272", "loc": [-85.620103, 41.951] }, - "n185960124": { - "id": "n185960124", + "n3273": { + "id": "n3273", "loc": [-85.605644, 41.947468] }, - "n185961362": { - "id": "n185961362", + "n3274": { + "id": "n3274", "loc": [-85.617437, 41.947436] }, - "n185961367": { - "id": "n185961367", + "n3275": { + "id": "n3275", "loc": [-85.620088, 41.947429] }, - "n185965105": { - "id": "n185965105", + "n3276": { + "id": "n3276", "loc": [-85.620087, 41.94924] }, - "n185970220": { - "id": "n185970220", + "n3277": { + "id": "n3277", "loc": [-85.62156, 41.948333] }, - "n185974697": { - "id": "n185974697", + "n3278": { + "id": "n3278", "loc": [-85.620106, 41.950132] }, - "w17967535": { - "id": "w17967535", + "w583": { + "id": "w583", "tags": { "highway": "residential", "name": "10th Avenue" }, - "nodes": ["n185955120", "n185986812", "n185983141"] + "nodes": ["n3272", "n2879", "n2872"] }, - "w209716130": { - "id": "w209716130", + "w584": { + "id": "w584", "tags": { "building": "yes" }, - "nodes": ["n2199093485", "n2199093486", "n2199093487", "n2199093488", "n2199093485"] + "nodes": ["n3243", "n3242", "n3241", "n3240", "n3243"] }, - "w17964788": { - "id": "w17964788", + "w585": { + "id": "w585", "tags": { "highway": "residential", "name": "6th Avenue" }, - "nodes": ["n185960124", "n185961362", "n185961367", "n185961369", "n185961371"] + "nodes": ["n3273", "n3274", "n3275", "n2846", "n2847"] }, - "w17965159": { - "id": "w17965159", + "w586": { + "id": "w586", "tags": { "highway": "residential", "name": "8th Avenue" }, - "nodes": ["n185965105", "n185965108", "n185965110"] + "nodes": ["n3276", "n2853", "n2854"] }, - "w209716125": { - "id": "w209716125", + "w587": { + "id": "w587", "tags": { "building": "yes" }, - "nodes": [ - "n2199093459", - "n2199093460", - "n2199093461", - "n2199093462", - "n2199093463", - "n2199093464", - "n2199093465", - "n2199093466", - "n2199093459" - ] + "nodes": ["n3269", "n3268", "n3267", "n3266", "n3265", "n3264", "n3263", "n3262", "n3269"] }, - "w17965699": { - "id": "w17965699", + "w588": { + "id": "w588", "tags": { "highway": "residential", "name": "7th Avenue" }, - "nodes": ["n185970220", "n185970222", "n185970224"] + "nodes": ["n3277", "n2857", "n2858"] }, - "w209716132": { - "id": "w209716132", + "w589": { + "id": "w589", "tags": { "building": "yes" }, - "nodes": [ - "n2199093507", - "n2199093508", - "n2199093509", - "n2199093510", - "n2199093511", - "n2199093512", - "n2199093513", - "n2199093514", - "n2199093507" - ] + "nodes": ["n3239", "n3238", "n3271", "n3270", "n3237", "n3236", "n3235", "n3234", "n3239"] }, - "w17966129": { - "id": "w17966129", + "w590": { + "id": "w590", "tags": { "highway": "residential", "name": "9th Avenue" }, - "nodes": ["n185974697", "n185974699"] + "nodes": ["n3278", "n2861"] }, - "w209716127": { - "id": "w209716127", + "w591": { + "id": "w591", "tags": { "building": "yes" }, - "nodes": ["n2199093475", "n2199093476", "n2199093477", "n2199093478", "n2199093479", "n2199093480", "n2199093475"] + "nodes": ["n3253", "n3252", "n3251", "n3250", "n3249", "n3248", "n3253"] }, - "w209716131": { - "id": "w209716131", + "w592": { + "id": "w592", "tags": { "natural": "water", "water": "pond" }, "nodes": [ - "n2199093489", - "n2199093490", - "n2199093491", - "n2199093492", - "n2199093493", - "n2199093494", - "n2199093495", - "n2199093496", - "n2199093497", - "n2199093498", - "n2199093499", - "n2199093500", - "n2199093501", - "n2199093502", - "n2199093503", - "n2199093504", - "n2199093505", - "n2199093506", - "n2199093489" + "n3229", + "n3228", + "n3227", + "n3226", + "n3225", + "n3224", + "n3223", + "n3222", + "n3221", + "n3220", + "n3219", + "n3218", + "n3217", + "n3216", + "n3215", + "n3214", + "n3213", + "n3212", + "n3229" ] }, - "w209716126": { - "id": "w209716126", + "w593": { + "id": "w593", "tags": { "building": "yes" }, - "nodes": [ - "n2199093467", - "n2199093468", - "n2199093469", - "n2199093470", - "n2199093471", - "n2199093472", - "n2199093473", - "n2199093474", - "n2199093467" - ] + "nodes": ["n3261", "n3260", "n3259", "n3258", "n3257", "n3256", "n3255", "n3254", "n3261"] }, - "w209716124": { - "id": "w209716124", + "w594": { + "id": "w594", "tags": { "building": "yes" }, - "nodes": ["n2199093455", "n2199093456", "n2199093457", "n2199093458", "n2199093455"] + "nodes": ["n3233", "n3232", "n3231", "n3230", "n3233"] }, - "w209716128": { - "id": "w209716128", + "w595": { + "id": "w595", "tags": { "building": "yes" }, - "nodes": ["n2199093481", "n2199093482", "n2199093483", "n2199093484", "n2199093481"] + "nodes": ["n3247", "n3246", "n3245", "n3244", "n3247"] }, - "n185964355": { - "id": "n185964355", + "n3279": { + "id": "n3279", "loc": [-85.637412, 41.951136] }, - "w17966118": { - "id": "w17966118", + "w596": { + "id": "w596", "tags": { "highway": "residential", "name": "West Armitage Street" }, - "nodes": ["n185974583", "n185974585", "n185964355"] + "nodes": ["n2758", "n2759", "n3279"] }, - "n2208608800": { - "id": "n2208608800", + "n3280": { + "id": "n3280", "loc": [-85.635429, 41.94862] }, - "n2199109806": { - "id": "n2199109806", + "n3281": { + "id": "n3281", "loc": [-85.635047, 41.947788] }, - "n2199109804": { - "id": "n2199109804", + "n3282": { + "id": "n3282", "loc": [-85.635048, 41.947796] }, - "n2199109802": { - "id": "n2199109802", + "n3283": { + "id": "n3283", "loc": [-85.635002, 41.947797] }, - "n2199109799": { - "id": "n2199109799", + "n3284": { + "id": "n3284", "loc": [-85.635002, 41.947788] }, - "n2199109797": { - "id": "n2199109797", + "n3285": { + "id": "n3285", "loc": [-85.634914, 41.94779] }, - "n2199109795": { - "id": "n2199109795", + "n3286": { + "id": "n3286", "loc": [-85.634913, 41.947753] }, - "n2199109793": { - "id": "n2199109793", + "n3287": { + "id": "n3287", "loc": [-85.63494, 41.947753] }, - "n2199109791": { - "id": "n2199109791", + "n3288": { + "id": "n3288", "loc": [-85.634938, 41.947708] }, - "n2199109789": { - "id": "n2199109789", + "n3289": { + "id": "n3289", "loc": [-85.635124, 41.947705] }, - "n2199109787": { - "id": "n2199109787", + "n3290": { + "id": "n3290", "loc": [-85.635126, 41.947787] }, - "n2199109785": { - "id": "n2199109785", + "n3291": { + "id": "n3291", "loc": [-85.634972, 41.947599] }, - "n2199109783": { - "id": "n2199109783", + "n3292": { + "id": "n3292", "loc": [-85.634921, 41.9476] }, - "n2199109770": { - "id": "n2199109770", + "n3293": { + "id": "n3293", "loc": [-85.63485, 41.947546] }, - "n2199109768": { - "id": "n2199109768", + "n3294": { + "id": "n3294", "loc": [-85.63485, 41.947508] }, - "n2199109765": { - "id": "n2199109765", + "n3295": { + "id": "n3295", "loc": [-85.634924, 41.947457] }, - "n2199109763": { - "id": "n2199109763", + "n3296": { + "id": "n3296", "loc": [-85.634967, 41.947456] }, - "n2199109762": { - "id": "n2199109762", + "n3297": { + "id": "n3297", "loc": [-85.635041, 41.947512] }, - "n2199109761": { - "id": "n2199109761", + "n3298": { + "id": "n3298", "loc": [-85.635041, 41.947542] }, - "n2199109753": { - "id": "n2199109753", + "n3299": { + "id": "n3299", "loc": [-85.634244, 41.947839] }, - "n2199109751": { - "id": "n2199109751", + "n3300": { + "id": "n3300", "loc": [-85.634243, 41.947793] }, - "n2199109745": { - "id": "n2199109745", + "n3301": { + "id": "n3301", "loc": [-85.634244, 41.947686] }, - "n2199109743": { - "id": "n2199109743", + "n3302": { + "id": "n3302", "loc": [-85.634243, 41.947657] }, - "n2199109741": { - "id": "n2199109741", + "n3303": { + "id": "n3303", "loc": [-85.634462, 41.947653] }, - "n2199109739": { - "id": "n2199109739", + "n3304": { + "id": "n3304", "loc": [-85.634468, 41.947835] }, - "n2199109737": { - "id": "n2199109737", + "n3305": { + "id": "n3305", "loc": [-85.634416, 41.948006] }, - "n2199109735": { - "id": "n2199109735", + "n3306": { + "id": "n3306", "loc": [-85.634415, 41.947898] }, - "n2199109733": { - "id": "n2199109733", + "n3307": { + "id": "n3307", "loc": [-85.634275, 41.947899] }, - "n2199109731": { - "id": "n2199109731", + "n3308": { + "id": "n3308", "loc": [-85.634275, 41.947927] }, - "n2199109729": { - "id": "n2199109729", + "n3309": { + "id": "n3309", "loc": [-85.63425, 41.947927] }, - "n2199109727": { - "id": "n2199109727", + "n3310": { + "id": "n3310", "loc": [-85.63425, 41.947976] }, - "n2199109725": { - "id": "n2199109725", + "n3311": { + "id": "n3311", "loc": [-85.634274, 41.947976] }, - "n2199109723": { - "id": "n2199109723", + "n3312": { + "id": "n3312", "loc": [-85.634275, 41.948007] }, - "n2199109721": { - "id": "n2199109721", + "n3313": { + "id": "n3313", "loc": [-85.634342, 41.947635] }, - "n2199109719": { - "id": "n2199109719", + "n3314": { + "id": "n3314", "loc": [-85.634339, 41.947497] }, - "n2199109717": { - "id": "n2199109717", + "n3315": { + "id": "n3315", "loc": [-85.634313, 41.94748] }, - "n2199109715": { - "id": "n2199109715", + "n3316": { + "id": "n3316", "loc": [-85.634287, 41.947474] }, - "n2199109709": { - "id": "n2199109709", + "n3317": { + "id": "n3317", "loc": [-85.63498, 41.94815] }, - "n2199109707": { - "id": "n2199109707", + "n3318": { + "id": "n3318", "loc": [-85.634891, 41.94815] }, - "n2199109705": { - "id": "n2199109705", + "n3319": { + "id": "n3319", "loc": [-85.634892, 41.948169] }, - "n2199109702": { - "id": "n2199109702", + "n3320": { + "id": "n3320", "loc": [-85.634852, 41.948169] }, - "n2199109700": { - "id": "n2199109700", + "n3321": { + "id": "n3321", "loc": [-85.634853, 41.948268] }, - "n2199109698": { - "id": "n2199109698", + "n3322": { + "id": "n3322", "loc": [-85.634832, 41.948268] }, - "n2199109696": { - "id": "n2199109696", + "n3323": { + "id": "n3323", "loc": [-85.634832, 41.948296] }, - "n2199109694": { - "id": "n2199109694", + "n3324": { + "id": "n3324", "loc": [-85.634965, 41.948295] }, - "n2199109692": { - "id": "n2199109692", + "n3325": { + "id": "n3325", "loc": [-85.634966, 41.948321] }, - "n2199109690": { - "id": "n2199109690", + "n3326": { + "id": "n3326", "loc": [-85.634999, 41.948321] }, - "n2199109688": { - "id": "n2199109688", + "n3327": { + "id": "n3327", "loc": [-85.634999, 41.948295] }, - "n2199109686": { - "id": "n2199109686", + "n3328": { + "id": "n3328", "loc": [-85.635175, 41.948293] }, - "n2199109684": { - "id": "n2199109684", + "n3329": { + "id": "n3329", "loc": [-85.635175, 41.948262] }, - "n2199109682": { - "id": "n2199109682", + "n3330": { + "id": "n3330", "loc": [-85.635159, 41.948262] }, - "n2199109680": { - "id": "n2199109680", + "n3331": { + "id": "n3331", "loc": [-85.635158, 41.948152] }, - "n2199109678": { - "id": "n2199109678", + "n3332": { + "id": "n3332", "loc": [-85.635067, 41.948152] }, - "n2199109676": { - "id": "n2199109676", + "n3333": { + "id": "n3333", "loc": [-85.635065, 41.947966] }, - "n2199109674": { - "id": "n2199109674", + "n3334": { + "id": "n3334", "loc": [-85.634979, 41.947966] }, - "n2199109671": { - "id": "n2199109671", + "n3335": { + "id": "n3335", "loc": [-85.634307, 41.948326] }, - "n2199109669": { - "id": "n2199109669", + "n3336": { + "id": "n3336", "loc": [-85.634305, 41.948298] }, - "n2199109658": { - "id": "n2199109658", + "n3337": { + "id": "n3337", "loc": [-85.634331, 41.948055] }, - "n2199109656": { - "id": "n2199109656", + "n3338": { + "id": "n3338", "loc": [-85.634331, 41.948046] }, - "n2199109654": { - "id": "n2199109654", + "n3339": { + "id": "n3339", "loc": [-85.634435, 41.948047] }, - "n2199109652": { - "id": "n2199109652", + "n3340": { + "id": "n3340", "loc": [-85.634434, 41.948375] }, - "n2199109650": { - "id": "n2199109650", + "n3341": { + "id": "n3341", "loc": [-85.634463, 41.948373] }, - "n2199109648": { - "id": "n2199109648", + "n3342": { + "id": "n3342", "loc": [-85.634464, 41.948456] }, - "n2199109645": { - "id": "n2199109645", + "n3343": { + "id": "n3343", "loc": [-85.63443, 41.948457] }, - "n2199109642": { - "id": "n2199109642", + "n3344": { + "id": "n3344", "loc": [-85.634432, 41.948505] }, - "n185964352": { - "id": "n185964352", + "n3345": { + "id": "n3345", "loc": [-85.637396, 41.948994] }, - "n185964351": { - "id": "n185964351", + "n3346": { + "id": "n3346", "loc": [-85.637113, 41.9486] }, - "n2208608825": { - "id": "n2208608825", + "n3347": { + "id": "n3347", "loc": [-85.635448, 41.949424] }, - "n2208608823": { - "id": "n2208608823", + "n3348": { + "id": "n3348", "loc": [-85.636042, 41.949416] }, - "n2208608821": { - "id": "n2208608821", + "n3349": { + "id": "n3349", "loc": [-85.636046, 41.94958] }, - "n2208608811": { - "id": "n2208608811", + "n3350": { + "id": "n3350", "loc": [-85.635746, 41.949584] }, - "n2208608808": { - "id": "n2208608808", + "n3351": { + "id": "n3351", "loc": [-85.635751, 41.949784] }, - "n2208608806": { - "id": "n2208608806", + "n3352": { + "id": "n3352", "loc": [-85.635457, 41.949787] }, - "n2208608795": { - "id": "n2208608795", + "n3353": { + "id": "n3353", "loc": [-85.635459, 41.949874] }, - "n2199109638": { - "id": "n2199109638", + "n3354": { + "id": "n3354", "loc": [-85.634961, 41.949749] }, - "n2199109636": { - "id": "n2199109636", + "n3355": { + "id": "n3355", "loc": [-85.634961, 41.949764] }, - "n2199109634": { - "id": "n2199109634", + "n3356": { + "id": "n3356", "loc": [-85.634906, 41.94971] }, - "n2199109632": { - "id": "n2199109632", + "n3357": { + "id": "n3357", "loc": [-85.634905, 41.949657] }, - "n2199109630": { - "id": "n2199109630", + "n3358": { + "id": "n3358", "loc": [-85.634884, 41.949657] }, - "n2199109628": { - "id": "n2199109628", + "n3359": { + "id": "n3359", "loc": [-85.634883, 41.94971] }, - "n2199109626": { - "id": "n2199109626", + "n3360": { + "id": "n3360", "loc": [-85.635227, 41.949774] }, - "n2199109624": { - "id": "n2199109624", + "n3361": { + "id": "n3361", "loc": [-85.635218, 41.949779] }, - "n2199109622": { - "id": "n2199109622", + "n3362": { + "id": "n3362", "loc": [-85.635118, 41.949781] }, - "n2199109620": { - "id": "n2199109620", + "n3363": { + "id": "n3363", "loc": [-85.635118, 41.949746] }, - "n2199109618": { - "id": "n2199109618", + "n3364": { + "id": "n3364", "loc": [-85.634884, 41.949765] }, - "n2199109616": { - "id": "n2199109616", + "n3365": { + "id": "n3365", "loc": [-85.634883, 41.949624] }, - "n2199109615": { - "id": "n2199109615", + "n3366": { + "id": "n3366", "loc": [-85.635127, 41.949621] }, - "n2199109614": { - "id": "n2199109614", + "n3367": { + "id": "n3367", "loc": [-85.635126, 41.949589] }, - "n2199109613": { - "id": "n2199109613", + "n3368": { + "id": "n3368", "loc": [-85.635196, 41.949588] }, - "n2199109612": { - "id": "n2199109612", + "n3369": { + "id": "n3369", "loc": [-85.635192, 41.949452] }, - "n2199109611": { - "id": "n2199109611", + "n3370": { + "id": "n3370", "loc": [-85.6354, 41.949449] }, - "n2199109610": { - "id": "n2199109610", + "n3371": { + "id": "n3371", "loc": [-85.635407, 41.949771] }, - "n2189015681": { - "id": "n2189015681", + "n3372": { + "id": "n3372", "loc": [-85.634423, 41.950964] }, - "n2189015677": { - "id": "n2189015677", + "n3373": { + "id": "n3373", "loc": [-85.634424, 41.95074] }, - "n2138493843": { - "id": "n2138493843", + "n3374": { + "id": "n3374", "loc": [-85.634394, 41.950284] }, - "n2138493840": { - "id": "n2138493840", + "n3375": { + "id": "n3375", "loc": [-85.634398, 41.950626] }, - "n354002838": { - "id": "n354002838", + "n3376": { + "id": "n3376", "loc": [-85.63452, 41.951063] }, - "n2114807590": { - "id": "n2114807590", + "n3377": { + "id": "n3377", "loc": [-85.634511, 41.949977] }, - "n185964353": { - "id": "n185964353", + "n3378": { + "id": "n3378", "loc": [-85.637409, 41.949873] }, - "n1819849180": { - "id": "n1819849180", + "n3379": { + "id": "n3379", "loc": [-85.634824, 41.94996] }, - "n1819849115": { - "id": "n1819849115", + "n3380": { + "id": "n3380", "loc": [-85.635437, 41.949954] }, - "n1819848921": { - "id": "n1819848921", + "n3381": { + "id": "n3381", "loc": [-85.634844, 41.951064] }, - "n1819848885": { - "id": "n1819848885", + "n3382": { + "id": "n3382", "loc": [-85.635458, 41.951058] }, - "n2208608827": { - "id": "n2208608827", + "n3383": { + "id": "n3383", "loc": [-85.633921, 41.947334] }, - "n2199109749": { - "id": "n2199109749", + "n3384": { + "id": "n3384", "loc": [-85.634208, 41.947793] }, - "n2199109747": { - "id": "n2199109747", + "n3385": { + "id": "n3385", "loc": [-85.634204, 41.947687] }, - "n2199109713": { - "id": "n2199109713", + "n3386": { + "id": "n3386", "loc": [-85.63424, 41.947475] }, - "n2199109711": { - "id": "n2199109711", + "n3387": { + "id": "n3387", "loc": [-85.63424, 41.947635] }, - "n2199109673": { - "id": "n2199109673", + "n3388": { + "id": "n3388", "loc": [-85.634089, 41.948328] }, - "n2199109667": { - "id": "n2199109667", + "n3389": { + "id": "n3389", "loc": [-85.63424, 41.948299] }, - "n2199109665": { - "id": "n2199109665", + "n3390": { + "id": "n3390", "loc": [-85.634239, 41.948212] }, - "n2199109662": { - "id": "n2199109662", + "n3391": { + "id": "n3391", "loc": [-85.634086, 41.948214] }, - "n2199109660": { - "id": "n2199109660", + "n3392": { + "id": "n3392", "loc": [-85.63408, 41.948056] }, - "n2199109640": { - "id": "n2199109640", + "n3393": { + "id": "n3393", "loc": [-85.634093, 41.948506] }, - "n354031366": { - "id": "n354031366", + "n3394": { + "id": "n3394", "loc": [-85.634167, 41.947778], "tags": { "amenity": "place_of_worship", @@ -10739,64 +10304,64 @@ "religion": "christian" } }, - "n2189015686": { - "id": "n2189015686", + "n3395": { + "id": "n3395", "loc": [-85.63378, 41.95099] }, - "n2189015684": { - "id": "n2189015684", + "n3396": { + "id": "n3396", "loc": [-85.633779, 41.950967] }, - "n2189015673": { - "id": "n2189015673", + "n3397": { + "id": "n3397", "loc": [-85.63375, 41.950746] }, - "n2189015669": { - "id": "n2189015669", + "n3398": { + "id": "n3398", "loc": [-85.63375, 41.950697] }, - "n2189015665": { - "id": "n2189015665", + "n3399": { + "id": "n3399", "loc": [-85.633903, 41.950696] }, - "n2189015662": { - "id": "n2189015662", + "n3400": { + "id": "n3400", "loc": [-85.633901, 41.950436] }, - "n2189015658": { - "id": "n2189015658", + "n3401": { + "id": "n3401", "loc": [-85.633492, 41.950438] }, - "n2189015655": { - "id": "n2189015655", + "n3402": { + "id": "n3402", "loc": [-85.633494, 41.950756] }, - "n2189015650": { - "id": "n2189015650", + "n3403": { + "id": "n3403", "loc": [-85.633454, 41.950756] }, - "n2189015649": { - "id": "n2189015649", + "n3404": { + "id": "n3404", "loc": [-85.633456, 41.950992] }, - "n2138493842": { - "id": "n2138493842", + "n3405": { + "id": "n3405", "loc": [-85.633994, 41.950284] }, - "n2138493841": { - "id": "n2138493841", + "n3406": { + "id": "n3406", "loc": [-85.633998, 41.950628] }, - "n2114807579": { - "id": "n2114807579", + "n3407": { + "id": "n3407", "loc": [-85.633364, 41.951068] }, - "n2114807573": { - "id": "n2114807573", + "n3408": { + "id": "n3408", "loc": [-85.633356, 41.949982] }, - "n354031330": { - "id": "n354031330", + "n3409": { + "id": "n3409", "loc": [-85.634167, 41.949722], "tags": { "amenity": "place_of_worship", @@ -10804,68 +10369,54 @@ "religion": "christian" } }, - "n185960794": { - "id": "n185960794", + "n3410": { + "id": "n3410", "loc": [-85.633307, 41.9537] }, - "n185964357": { - "id": "n185964357", + "n3411": { + "id": "n3411", "loc": [-85.637432, 41.952399] }, - "n185966957": { - "id": "n185966957", + "n3412": { + "id": "n3412", "loc": [-85.633361, 41.957422] }, - "n185975351": { - "id": "n185975351", + "n3413": { + "id": "n3413", "loc": [-85.63334, 41.955918] }, - "n185978784": { - "id": "n185978784", + "n3414": { + "id": "n3414", "loc": [-85.633311, 41.954673] }, - "n185986157": { - "id": "n185986157", + "n3415": { + "id": "n3415", "loc": [-85.633292, 41.952426] }, - "n185986158": { - "id": "n185986158", + "n3416": { + "id": "n3416", "loc": [-85.633361, 41.95823], "tags": { "highway": "turning_circle" } }, - "w17965182": { - "id": "w17965182", + "w597": { + "id": "w597", "tags": { "highway": "residential", "name": "West Prutzman Street" }, - "nodes": ["n185965289", "n2189153241", "n185965291"] + "nodes": ["n2749", "n2798", "n2750"] }, - "w208627205": { - "id": "w208627205", + "w598": { + "id": "w598", "tags": { "building": "yes" }, - "nodes": [ - "n2189015649", - "n2189015650", - "n2189015655", - "n2189015658", - "n2189015662", - "n2189015665", - "n2189015669", - "n2189015673", - "n2189015677", - "n2189015681", - "n2189015684", - "n2189015686", - "n2189015649" - ] + "nodes": ["n3404", "n3403", "n3402", "n3401", "n3400", "n3399", "n3398", "n3397", "n3373", "n3372", "n3396", "n3395", "n3404"] }, - "w209717042": { - "id": "w209717042", + "w599": { + "id": "w599", "tags": { "amenity": "place_of_worship", "building": "yes", @@ -10874,207 +10425,164 @@ "religion": "christian" }, "nodes": [ - "n2199109610", - "n2199109611", - "n2199109612", - "n2199109613", - "n2199109614", - "n2199109615", - "n2199109616", - "n2199109630", - "n2199109632", - "n2199109634", - "n2199109628", - "n2199109618", - "n2199109636", - "n2199109638", - "n2199109620", - "n2199109622", - "n2199109624", - "n2199109626", - "n2199109610" + "n3371", + "n3370", + "n3369", + "n3368", + "n3367", + "n3366", + "n3365", + "n3358", + "n3357", + "n3356", + "n3359", + "n3364", + "n3355", + "n3354", + "n3363", + "n3362", + "n3361", + "n3360", + "n3371" ] }, - "w209717045": { - "id": "w209717045", + "w600": { + "id": "w600", "tags": { "building": "yes" }, - "nodes": ["n2199109711", "n2199109713", "n2199109715", "n2199109717", "n2199109719", "n2199109721", "n2199109711"] + "nodes": ["n3387", "n3386", "n3316", "n3315", "n3314", "n3313", "n3387"] }, - "w209717047": { - "id": "w209717047", + "w601": { + "id": "w601", + "tags": { + "building": "yes" + }, + "nodes": ["n3304", "n3303", "n3302", "n3301", "n3385", "n3384", "n3300", "n3299", "n3304"] + }, + "w602": { + "id": "w602", "tags": { "building": "yes" }, "nodes": [ - "n2199109739", - "n2199109741", - "n2199109743", - "n2199109745", - "n2199109747", - "n2199109749", - "n2199109751", - "n2199109753", - "n2199109739" + "n3334", + "n3333", + "n3332", + "n3331", + "n3330", + "n3329", + "n3328", + "n3327", + "n3326", + "n3325", + "n3324", + "n3323", + "n3322", + "n3321", + "n3320", + "n3319", + "n3318", + "n3317", + "n3334" ] }, - "w209717044": { - "id": "w209717044", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2199109674", - "n2199109676", - "n2199109678", - "n2199109680", - "n2199109682", - "n2199109684", - "n2199109686", - "n2199109688", - "n2199109690", - "n2199109692", - "n2199109694", - "n2199109696", - "n2199109698", - "n2199109700", - "n2199109702", - "n2199109705", - "n2199109707", - "n2199109709", - "n2199109674" - ] - }, - "w210822776": { - "id": "w210822776", + "w603": { + "id": "w603", "tags": { "highway": "service", "service": "alley", "surface": "unpaved" }, - "nodes": ["n2208608795", "n2208608806", "n2208608825", "n2208608800", "n2189153241"] + "nodes": ["n3353", "n3352", "n3347", "n3280", "n2798"] }, - "w210822778": { - "id": "w210822778", + "w604": { + "id": "w604", "tags": { "highway": "service", "service": "alley" }, - "nodes": ["n2208608826", "n2208608827"] + "nodes": ["n3211", "n3383"] }, - "w209717050": { - "id": "w209717050", + "w605": { + "id": "w605", "tags": { "building": "yes" }, - "nodes": [ - "n2199109787", - "n2199109789", - "n2199109791", - "n2199109793", - "n2199109795", - "n2199109797", - "n2199109799", - "n2199109802", - "n2199109804", - "n2199109806", - "n2199109787" - ] + "nodes": ["n3290", "n3289", "n3288", "n3287", "n3286", "n3285", "n3284", "n3283", "n3282", "n3281", "n3290"] }, - "w17965097": { - "id": "w17965097", + "w606": { + "id": "w606", "tags": { "highway": "residential", "name": "Maple Street" }, - "nodes": ["n185964351", "n185964352", "n185964353", "n185964355", "n185964357"] + "nodes": ["n3346", "n3345", "n3378", "n3279", "n3411"] }, - "w17965856": { - "id": "w17965856", + "w607": { + "id": "w607", "tags": { "highway": "residential", "name": "West Kelsey Street" }, - "nodes": ["n185971578", "n2208608800", "n185971580", "n185964351"] + "nodes": ["n2755", "n3280", "n2756", "n3346"] }, - "w17967444": { - "id": "w17967444", + "w608": { + "id": "w608", "tags": { "highway": "residential", "name": "East Street" }, - "nodes": [ - "n185966937", - "n185978969", - "n185986155", - "n185985812", - "n185986157", - "n185960794", - "n185978784", - "n185975351", - "n185966957", - "n185986158" - ] + "nodes": ["n2751", "n3208", "n3210", "n3209", "n3415", "n3410", "n3414", "n3413", "n3412", "n3416"] }, - "w17967764": { - "id": "w17967764", + "w609": { + "id": "w609", "tags": { "highway": "residential", "name": "Rock River Avenue" }, - "nodes": ["n185984017", "n185964351"] + "nodes": ["n2772", "n3346"] }, - "w170848329": { - "id": "w170848329", + "w610": { + "id": "w610", "tags": { "leisure": "park", "name": "LaFayette Park" }, - "nodes": ["n1819849180", "n1819849115", "n1819848885", "n1819848921", "n1819849180"] + "nodes": ["n3379", "n3380", "n3382", "n3381", "n3379"] }, - "w17967208": { - "id": "w17967208", + "w611": { + "id": "w611", "tags": { "highway": "residential", "name": "West Bennett Street" }, - "nodes": ["n185978390", "n2208608795", "n185984020", "n185964353"] + "nodes": ["n2760", "n3353", "n2773", "n3378"] }, - "w17965349": { - "id": "w17965349", + "w612": { + "id": "w612", "tags": { "highway": "residential", "name": "East Prutzman Street" }, - "nodes": ["n185966937", "n2208608827", "n185965289"] + "nodes": ["n2751", "n3383", "n2749"] }, - "w209717049": { - "id": "w209717049", + "w613": { + "id": "w613", "tags": { "building": "yes" }, - "nodes": [ - "n2199109761", - "n2199109762", - "n2199109763", - "n2199109765", - "n2199109768", - "n2199109770", - "n2199109783", - "n2199109785", - "n2199109761" - ] + "nodes": ["n3298", "n3297", "n3296", "n3295", "n3294", "n3293", "n3292", "n3291", "n3298"] }, - "w203841840": { - "id": "w203841840", + "w614": { + "id": "w614", "tags": { "leisure": "playground" }, - "nodes": ["n2138493840", "n2138493841", "n2138493842", "n2138493843", "n2138493840"] + "nodes": ["n3375", "n3406", "n3405", "n3374", "n3375"] }, - "w209717043": { - "id": "w209717043", + "w615": { + "id": "w615", "tags": { "amenity": "place_of_worship", "building": "church", @@ -11083,63 +10591,53 @@ "religion": "christian" }, "nodes": [ - "n2199109640", - "n2199109642", - "n2199109645", - "n2199109648", - "n2199109650", - "n2199109652", - "n2199109654", - "n2199109656", - "n2199109658", - "n2199109660", - "n2199109662", - "n2199109665", - "n2199109667", - "n2199109669", - "n2199109671", - "n2199109673", - "n2199109640" + "n3393", + "n3344", + "n3343", + "n3342", + "n3341", + "n3340", + "n3339", + "n3338", + "n3337", + "n3392", + "n3391", + "n3390", + "n3389", + "n3336", + "n3335", + "n3388", + "n3393" ] }, - "w201484341": { - "id": "w201484341", + "w616": { + "id": "w616", "tags": { "amenity": "school", "name": "Hoppin School" }, - "nodes": ["n354002838", "n2114807579", "n2114807573", "n2114807590", "n354002838"] + "nodes": ["n3376", "n3407", "n3408", "n3377", "n3376"] }, - "w209717046": { - "id": "w209717046", + "w617": { + "id": "w617", "tags": { "building": "yes" }, - "nodes": [ - "n2199109723", - "n2199109725", - "n2199109727", - "n2199109729", - "n2199109731", - "n2199109733", - "n2199109735", - "n2199109737", - "n2199109723" - ] + "nodes": ["n3312", "n3311", "n3310", "n3309", "n3308", "n3307", "n3306", "n3305", "n3312"] }, - "w210822777": { - "id": "w210822777", + "w618": { + "id": "w618", "tags": { "amenity": "parking" }, - "nodes": ["n2208608806", "n2208608808", "n2208608811", "n2208608821", "n2208608823", "n2208608825", "n2208608806"] + "nodes": ["n3352", "n3351", "n3350", "n3349", "n3348", "n3347", "n3352"] }, - "n354002931": { - "id": "n354002931", + "n3417": { + "id": "n3417", "loc": [-85.619899, 41.945527] }, - "n354030853": { - "id": "n354030853", + "n3418": { + "id": "n3418", "loc": [-85.621944, 41.945556], "tags": { "amenity": "place_of_worship", @@ -11147,449 +10645,424 @@ "religion": "christian" } }, - "n367815963": { - "id": "n367815963", + "n3419": { + "id": "n3419", "loc": [-85.620278, 41.946111], "tags": { "building": "yes", "name": "George Washington Carver Community Center" } }, - "n185955022": { - "id": "n185955022", + "n3420": { + "id": "n3420", "loc": [-85.620088, 41.945571] }, - "n185955025": { - "id": "n185955025", + "n3421": { + "id": "n3421", "loc": [-85.620051, 41.945505] }, - "n185955028": { - "id": "n185955028", + "n3422": { + "id": "n3422", "loc": [-85.62001, 41.94541] }, - "n185980371": { - "id": "n185980371", + "n3423": { + "id": "n3423", "loc": [-85.620982, 41.944742] }, - "n185980398": { - "id": "n185980398", + "n3424": { + "id": "n3424", "loc": [-85.621305, 41.944782] }, - "n185980401": { - "id": "n185980401", + "n3425": { + "id": "n3425", "loc": [-85.621174, 41.944819] }, - "n185980403": { - "id": "n185980403", + "n3426": { + "id": "n3426", "loc": [-85.621029, 41.944871] }, - "n185980405": { - "id": "n185980405", + "n3427": { + "id": "n3427", "loc": [-85.620741, 41.945011] }, - "n185980407": { - "id": "n185980407", + "n3428": { + "id": "n3428", "loc": [-85.620616, 41.945085] }, - "n185980409": { - "id": "n185980409", + "n3429": { + "id": "n3429", "loc": [-85.620506, 41.945172] }, - "n185980411": { - "id": "n185980411", + "n3430": { + "id": "n3430", "loc": [-85.620394, 41.945273] }, - "n185980413": { - "id": "n185980413", + "n3431": { + "id": "n3431", "loc": [-85.620316, 41.94536] }, - "n185980415": { - "id": "n185980415", + "n3432": { + "id": "n3432", "loc": [-85.620257, 41.945452] }, - "n185980417": { - "id": "n185980417", + "n3433": { + "id": "n3433", "loc": [-85.620212, 41.945535] }, - "n185985910": { - "id": "n185985910", + "n3434": { + "id": "n3434", "loc": [-85.620101, 41.945811] }, - "n185985912": { - "id": "n185985912", + "n3435": { + "id": "n3435", "loc": [-85.620081, 41.945937] }, - "n1475283972": { - "id": "n1475283972", + "n3436": { + "id": "n3436", "loc": [-85.619899, 41.943718] }, - "n1475284050": { - "id": "n1475284050", + "n3437": { + "id": "n3437", "loc": [-85.619969, 41.943211] }, - "n1475284053": { - "id": "n1475284053", + "n3438": { + "id": "n3438", "loc": [-85.619894, 41.943292] }, - "n185954977": { - "id": "n185954977", + "n3439": { + "id": "n3439", "loc": [-85.620047, 41.944738] }, - "n2196831365": { - "id": "n2196831365", + "n3440": { + "id": "n3440", "loc": [-85.620226, 41.946088] }, - "n2196831366": { - "id": "n2196831366", + "n3441": { + "id": "n3441", "loc": [-85.620225, 41.945864] }, - "n2196831367": { - "id": "n2196831367", + "n3442": { + "id": "n3442", "loc": [-85.620518, 41.945863] }, - "n2196831368": { - "id": "n2196831368", + "n3443": { + "id": "n3443", "loc": [-85.620519, 41.945944] }, - "n2196831369": { - "id": "n2196831369", + "n3444": { + "id": "n3444", "loc": [-85.620388, 41.945944] }, - "n2196831370": { - "id": "n2196831370", + "n3445": { + "id": "n3445", "loc": [-85.620389, 41.946088] }, - "n2196831371": { - "id": "n2196831371", + "n3446": { + "id": "n3446", "loc": [-85.618405, 41.946566] }, - "n2196831372": { - "id": "n2196831372", + "n3447": { + "id": "n3447", "loc": [-85.619156, 41.946562] }, - "n2196831373": { - "id": "n2196831373", + "n3448": { + "id": "n3448", "loc": [-85.619154, 41.946319] }, - "n2196831374": { - "id": "n2196831374", + "n3449": { + "id": "n3449", "loc": [-85.618736, 41.946322] }, - "n2196831375": { - "id": "n2196831375", + "n3450": { + "id": "n3450", "loc": [-85.618733, 41.94612] }, - "n2196831376": { - "id": "n2196831376", + "n3451": { + "id": "n3451", "loc": [-85.619317, 41.946116] }, - "n2196831377": { - "id": "n2196831377", + "n3452": { + "id": "n3452", "loc": [-85.619316, 41.946023] }, - "n2196831378": { - "id": "n2196831378", + "n3453": { + "id": "n3453", "loc": [-85.619622, 41.946021] }, - "n2196831379": { - "id": "n2196831379", + "n3454": { + "id": "n3454", "loc": [-85.619624, 41.946171] }, - "n2196831380": { - "id": "n2196831380", + "n3455": { + "id": "n3455", "loc": [-85.61977, 41.94617] }, - "n2196831381": { - "id": "n2196831381", + "n3456": { + "id": "n3456", "loc": [-85.619769, 41.94602] }, - "n2196831382": { - "id": "n2196831382", + "n3457": { + "id": "n3457", "loc": [-85.619732, 41.94602] }, - "n2196831383": { - "id": "n2196831383", + "n3458": { + "id": "n3458", "loc": [-85.619731, 41.945856] }, - "n2196831384": { - "id": "n2196831384", + "n3459": { + "id": "n3459", "loc": [-85.619617, 41.945857] }, - "n2196831385": { - "id": "n2196831385", + "n3460": { + "id": "n3460", "loc": [-85.619616, 41.945776] }, - "n2196831386": { - "id": "n2196831386", + "n3461": { + "id": "n3461", "loc": [-85.619447, 41.945777] }, - "n2196831387": { - "id": "n2196831387", + "n3462": { + "id": "n3462", "loc": [-85.619415, 41.945778] }, - "n2196831388": { - "id": "n2196831388", + "n3463": { + "id": "n3463", "loc": [-85.618378, 41.945788] }, - "n2196831389": { - "id": "n2196831389", + "n3464": { + "id": "n3464", "loc": [-85.618384, 41.946132] }, - "n2196831390": { - "id": "n2196831390", + "n3465": { + "id": "n3465", "loc": [-85.618503, 41.94613] }, - "n2196831391": { - "id": "n2196831391", + "n3466": { + "id": "n3466", "loc": [-85.618506, 41.946319] }, - "n2196831392": { - "id": "n2196831392", + "n3467": { + "id": "n3467", "loc": [-85.6184, 41.94632] }, - "n2196831393": { - "id": "n2196831393", + "n3468": { + "id": "n3468", "loc": [-85.618248, 41.946416] }, - "n2196831394": { - "id": "n2196831394", + "n3469": { + "id": "n3469", "loc": [-85.618247, 41.946319] }, - "n2196831395": { - "id": "n2196831395", + "n3470": { + "id": "n3470", "loc": [-85.618039, 41.946321] }, - "n2196831397": { - "id": "n2196831397", + "n3471": { + "id": "n3471", "loc": [-85.61804, 41.946418] }, - "n185960690": { - "id": "n185960690", + "n3472": { + "id": "n3472", "loc": [-85.620141, 41.951901] }, - "n185978817": { - "id": "n185978817", + "n3473": { + "id": "n3473", "loc": [-85.617193, 41.954706] }, - "n185985919": { - "id": "n185985919", + "n3474": { + "id": "n3474", "loc": [-85.62013, 41.952104] }, - "n185985920": { - "id": "n185985920", + "n3475": { + "id": "n3475", "loc": [-85.620104, 41.952305] }, - "n185985921": { - "id": "n185985921", + "n3476": { + "id": "n3476", "loc": [-85.620062, 41.952499] }, - "n185985922": { - "id": "n185985922", + "n3477": { + "id": "n3477", "loc": [-85.619993, 41.952702] }, - "n185985925": { - "id": "n185985925", + "n3478": { + "id": "n3478", "loc": [-85.619879, 41.952986] }, - "n185985927": { - "id": "n185985927", + "n3479": { + "id": "n3479", "loc": [-85.619689, 41.95329] }, - "n185985928": { - "id": "n185985928", + "n3480": { + "id": "n3480", "loc": [-85.619508, 41.953521] }, - "n185985929": { - "id": "n185985929", + "n3481": { + "id": "n3481", "loc": [-85.619286, 41.953728] }, - "n185985930": { - "id": "n185985930", + "n3482": { + "id": "n3482", "loc": [-85.618925, 41.954007] }, - "n185985931": { - "id": "n185985931", + "n3483": { + "id": "n3483", "loc": [-85.618638, 41.954189] }, - "n185985932": { - "id": "n185985932", + "n3484": { + "id": "n3484", "loc": [-85.61831, 41.954358] }, - "n185985934": { - "id": "n185985934", + "n3485": { + "id": "n3485", "loc": [-85.618015, 41.954485] }, - "n185985936": { - "id": "n185985936", + "n3486": { + "id": "n3486", "loc": [-85.617606, 41.954611] }, - "n1475283975": { - "id": "n1475283975", + "n3487": { + "id": "n3487", "loc": [-85.615094, 41.943412] }, - "n1475283979": { - "id": "n1475283979", + "n3488": { + "id": "n3488", "loc": [-85.619337, 41.943025] }, - "n1475283989": { - "id": "n1475283989", + "n3489": { + "id": "n3489", "loc": [-85.610477, 41.945527] }, - "n1475283990": { - "id": "n1475283990", + "n3490": { + "id": "n3490", "loc": [-85.610477, 41.943718] }, - "n1475283994": { - "id": "n1475283994", + "n3491": { + "id": "n3491", "loc": [-85.619804, 41.942976] }, - "n1475283998": { - "id": "n1475283998", + "n3492": { + "id": "n3492", "loc": [-85.61921, 41.942672] }, - "n1475284000": { - "id": "n1475284000", + "n3493": { + "id": "n3493", "loc": [-85.619862, 41.942836] }, - "n1475284002": { - "id": "n1475284002", + "n3494": { + "id": "n3494", "loc": [-85.616326, 41.942769] }, - "n1475284006": { - "id": "n1475284006", + "n3495": { + "id": "n3495", "loc": [-85.617953, 41.942917] }, - "n1475284029": { - "id": "n1475284029", + "n3496": { + "id": "n3496", "loc": [-85.61972, 41.942728] }, - "n1475284038": { - "id": "n1475284038", + "n3497": { + "id": "n3497", "loc": [-85.61944, 41.942784] }, - "n1475284052": { - "id": "n1475284052", + "n3498": { + "id": "n3498", "loc": [-85.615323, 41.942841] }, - "n1475284055": { - "id": "n1475284055", + "n3499": { + "id": "n3499", "loc": [-85.612923, 41.943718] }, - "n2139966627": { - "id": "n2139966627", + "n3500": { + "id": "n3500", "loc": [-85.61958, 41.942756] }, - "w17966773": { - "id": "w17966773", + "w619": { + "id": "w619", "tags": { "highway": "secondary", "name": "East Michigan Avenue", "ref": "M 60" }, - "nodes": [ - "n185980372", - "n185980398", - "n185980401", - "n185980403", - "n185980405", - "n185980407", - "n185980409", - "n185980411", - "n185980413", - "n185980415", - "n185980417", - "n185955019" - ] + "nodes": ["n2863", "n3424", "n3425", "n3426", "n3427", "n3428", "n3429", "n3430", "n3431", "n3432", "n3433", "n2844"] }, - "w17964043": { - "id": "w17964043", + "w620": { + "id": "w620", "tags": { "highway": "residential" }, - "nodes": [ - "n185955019", - "n185955022", - "n185955025", - "n185955028", - "n185954977", - "n185971477", - "n1475284050", - "n1475284000", - "n1475284029", - "n2139966627", - "n1475284038" - ] + "nodes": ["n2844", "n3420", "n3421", "n3422", "n3439", "n2859", "n3437", "n3493", "n3496", "n3500", "n3497"] }, - "w209470310": { - "id": "w209470310", + "w621": { + "id": "w621", "tags": { "building": "yes" }, - "nodes": ["n2196831393", "n2196831394", "n2196831395", "n2196831397", "n2196831393"] + "nodes": ["n3468", "n3469", "n3470", "n3471", "n3468"] }, - "w134150798": { - "id": "w134150798", + "w622": { + "id": "w622", "tags": { "name": "Riverside Cemetery", "landuse": "cemetery" }, "nodes": [ - "n354002931", - "n1475283972", - "n1475284053", - "n1475283994", - "n1475283979", - "n1475283998", - "n1475284006", - "n1475284002", - "n1475284052", - "n1475283975", - "n1475284055", - "n1475283990", - "n1475283989", - "n354002931" + "n3417", + "n3436", + "n3438", + "n3491", + "n3488", + "n3492", + "n3495", + "n3494", + "n3498", + "n3487", + "n3499", + "n3490", + "n3489", + "n3417" ] }, - "w209470308": { - "id": "w209470308", + "w623": { + "id": "w623", "tags": { "building": "yes" }, - "nodes": ["n2196831365", "n2196831366", "n2196831367", "n2196831368", "n2196831369", "n2196831370", "n2196831365"] + "nodes": ["n3440", "n3441", "n3442", "n3443", "n3444", "n3445", "n3440"] }, - "w209470309": { - "id": "w209470309", + "w624": { + "id": "w624", "tags": { "building": "yes" }, "nodes": [ - "n2196831371", - "n2196831372", - "n2196831373", - "n2196831374", - "n2196831375", - "n2196831376", - "n2196831377", - "n2196831378", - "n2196831379", - "n2196831380", - "n2196831381", - "n2196831382", - "n2196831383", - "n2196831384", - "n2196831385", - "n2196831386", - "n2196831387", - "n2196831388", - "n2196831389", - "n2196831390", - "n2196831391", - "n2196831392", - "n2196831371" + "n3446", + "n3447", + "n3448", + "n3449", + "n3450", + "n3451", + "n3452", + "n3453", + "n3454", + "n3455", + "n3456", + "n3457", + "n3458", + "n3459", + "n3460", + "n3461", + "n3462", + "n3463", + "n3464", + "n3465", + "n3466", + "n3467", + "n3446" ] }, - "w17967415": { - "id": "w17967415", + "w625": { + "id": "w625", "tags": { "highway": "secondary", "name": "Jefferson Street", @@ -11597,184 +11070,172 @@ "ref": "M 60" }, "nodes": [ - "n185955019", - "n185985910", - "n185985912", - "n185985914", - "n185961367", - "n185965105", - "n185974697", - "n185955120", - "n185960690", - "n185985919", - "n185985920", - "n185985921", - "n185985922", - "n185985925", - "n185985927", - "n185985928", - "n185985929", - "n185985930", - "n185985931", - "n185985932", - "n185985934", - "n185985936", - "n185978817" + "n2844", + "n3434", + "n3435", + "n2878", + "n3275", + "n3276", + "n3278", + "n3272", + "n3472", + "n3474", + "n3475", + "n3476", + "n3477", + "n3478", + "n3479", + "n3480", + "n3481", + "n3482", + "n3483", + "n3484", + "n3485", + "n3486", + "n3473" ] }, - "w17966772": { - "id": "w17966772", + "w626": { + "id": "w626", "tags": { "highway": "unclassified", "name": "East Michigan Avenue", "name_1": "State Highway 60" }, - "nodes": ["n185954977", "n185980371", "n185980372"] + "nodes": ["n3439", "n3423", "n2863"] }, - "n2139966628": { - "id": "n2139966628", + "n3501": { + "id": "n3501", "loc": [-85.619643, 41.942647], "tags": { "leisure": "fishing" } }, - "n2139966630": { - "id": "n2139966630", + "n3502": { + "id": "n3502", "loc": [-85.619935, 41.942962] }, - "w203983952": { - "id": "w203983952", + "w627": { + "id": "w627", "tags": { "highway": "service" }, - "nodes": ["n2139966627", "n1819800319"] + "nodes": ["n3500", "n3005"] }, - "w203983953": { - "id": "w203983953", + "w628": { + "id": "w628", "tags": { "leisure": "park", "name": "Marina Park" }, - "nodes": [ - "n1475283994", - "n1475283979", - "n1475283998", - "n2139966629", - "n2139966625", - "n1819800319", - "n2139966623", - "n2139966622", - "n2139966621", - "n2139966630", - "n1475283994" - ] + "nodes": ["n3491", "n3488", "n3492", "n3010", "n3009", "n3005", "n3008", "n3007", "n3006", "n3502", "n3491"] }, - "n185960199": { - "id": "n185960199", + "n3503": { + "id": "n3503", "loc": [-85.62965, 41.954687] }, - "n185980737": { - "id": "n185980737", + "n3504": { + "id": "n3504", "loc": [-85.629083, 41.953723] }, - "n2114807561": { - "id": "n2114807561", + "n3505": { + "id": "n3505", "loc": [-85.629768, 41.952469] }, - "n2114807597": { - "id": "n2114807597", + "n3506": { + "id": "n3506", "loc": [-85.629652, 41.952563] }, - "n185960197": { - "id": "n185960197", + "n3507": { + "id": "n3507", "loc": [-85.629676, 41.95372] }, - "n185978791": { - "id": "n185978791", + "n3508": { + "id": "n3508", "loc": [-85.624454, 41.954707] }, - "w17967573": { - "id": "w17967573", + "w629": { + "id": "w629", "tags": { "highway": "residential", "name": "East Wheeler Street" }, - "nodes": ["n185960195", "n2114807561", "n185968102", "n185967430", "n185986157", "n185978392"] + "nodes": ["n2745", "n3505", "n3204", "n3201", "n3415", "n2761"] }, - "w17966553": { - "id": "w17966553", + "w630": { + "id": "w630", "tags": { "highway": "residential", "name": "East Hoffman Street" }, - "nodes": ["n185971631", "n185978784", "n185967432", "n185968106", "n185960199", "n1629", "n185978787", "n185978790", "n185978791"] + "nodes": ["n2757", "n3414", "n3202", "n3206", "n3503", "n1629", "n2763", "n2764", "n3508"] }, - "w17966787": { - "id": "w17966787", + "w631": { + "id": "w631", "tags": { "highway": "residential", "name": "East Cushman Street" }, - "nodes": ["n185980735", "n185980737", "n185960197", "n185968104", "n185960792"] + "nodes": ["n2766", "n3504", "n3507", "n3205", "n3196"] }, - "w17964723": { - "id": "w17964723", + "w632": { + "id": "w632", "tags": { "highway": "residential", "name": "Cushman Street" }, - "nodes": ["n185960792", "n185960794", "n185960796"] + "nodes": ["n3196", "n3410", "n2746"] }, - "w17964654": { - "id": "w17964654", + "w633": { + "id": "w633", "tags": { "highway": "residential", "name": "Pine Street" }, - "nodes": ["n185960195", "n2114807597", "n185960197", "n185960199"] + "nodes": ["n2745", "n3506", "n3507", "n3503"] }, - "n1819848862": { - "id": "n1819848862", + "n3509": { + "id": "n3509", "loc": [-85.634609, 41.954585] }, - "n1819848935": { - "id": "n1819848935", + "n3510": { + "id": "n3510", "loc": [-85.634595, 41.953772] }, - "n1819848973": { - "id": "n1819848973", + "n3511": { + "id": "n3511", "loc": [-85.633425, 41.953783] }, - "n1819848997": { - "id": "n1819848997", + "n3512": { + "id": "n3512", "loc": [-85.633439, 41.954596] }, - "n2199109808": { - "id": "n2199109808", + "n3513": { + "id": "n3513", "loc": [-85.63727, 41.952289] }, - "n2199109810": { - "id": "n2199109810", + "n3514": { + "id": "n3514", "loc": [-85.637268, 41.952158] }, - "n2199109812": { - "id": "n2199109812", + "n3515": { + "id": "n3515", "loc": [-85.63695, 41.952162] }, - "n2199109814": { - "id": "n2199109814", + "n3516": { + "id": "n3516", "loc": [-85.636953, 41.952293] }, - "w170848328": { - "id": "w170848328", + "w634": { + "id": "w634", "tags": { "leisure": "park", "name": "Bowman Park" }, - "nodes": ["n1819848935", "n1819848973", "n1819848997", "n1819848862", "n1819848935"] + "nodes": ["n3510", "n3511", "n3512", "n3509", "n3510"] }, - "w209717051": { - "id": "w209717051", + "w635": { + "id": "w635", "tags": { "amenity": "place_of_worship", "building": "yes", @@ -11782,1213 +11243,1199 @@ "name": "Calvary Missionary Baptist Church", "religion": "christian" }, - "nodes": ["n2199109808", "n2199109810", "n2199109812", "n2199109814", "n2199109808"] + "nodes": ["n3513", "n3514", "n3515", "n3516", "n3513"] }, - "w17966975": { - "id": "w17966975", + "w636": { + "id": "w636", "tags": { "highway": "residential", "name": "West Wheeler Street" }, - "nodes": ["n185978392", "n185982163", "n185964357"] + "nodes": ["n2761", "n2767", "n3411"] }, - "n185960684": { - "id": "n185960684", + "n3517": { + "id": "n3517", "loc": [-85.622669, 41.951866] }, - "n185978795": { - "id": "n185978795", + "n3518": { + "id": "n3518", "loc": [-85.624105, 41.954704] }, - "n185978803": { - "id": "n185978803", + "n3519": { + "id": "n3519", "loc": [-85.623348, 41.954547] }, - "n185978806": { - "id": "n185978806", + "n3520": { + "id": "n3520", "loc": [-85.623123, 41.954502] }, - "n185978808": { - "id": "n185978808", + "n3521": { + "id": "n3521", "loc": [-85.622923, 41.954469] }, - "n185978810": { - "id": "n185978810", + "n3522": { + "id": "n3522", "loc": [-85.622787, 41.954457] }, - "n185978811": { - "id": "n185978811", + "n3523": { + "id": "n3523", "loc": [-85.622612, 41.954458] }, - "n185978813": { - "id": "n185978813", + "n3524": { + "id": "n3524", "loc": [-85.622368, 41.954472] }, - "n1819790545": { - "id": "n1819790545", + "n3525": { + "id": "n3525", "loc": [-85.62403, 41.954895] }, - "n1819790621": { - "id": "n1819790621", + "n3526": { + "id": "n3526", "loc": [-85.623579, 41.954855] }, - "n1819790664": { - "id": "n1819790664", + "n3527": { + "id": "n3527", "loc": [-85.623836, 41.954951] }, - "n1819790683": { - "id": "n1819790683", + "n3528": { + "id": "n3528", "loc": [-85.622473, 41.954592] }, - "n1819790730": { - "id": "n1819790730", + "n3529": { + "id": "n3529", "loc": [-85.622753, 41.95458] }, - "n1819790740": { - "id": "n1819790740", + "n3530": { + "id": "n3530", "loc": [-85.62404, 41.955078] }, - "n1819790831": { - "id": "n1819790831", + "n3531": { + "id": "n3531", "loc": [-85.624126, 41.954999] }, - "n1819790861": { - "id": "n1819790861", + "n3532": { + "id": "n3532", "loc": [-85.623171, 41.954687] }, - "n1819790887": { - "id": "n1819790887", + "n3533": { + "id": "n3533", "loc": [-85.624276, 41.955206] }, - "n2168544739": { - "id": "n2168544739", + "n3534": { + "id": "n3534", "loc": [-85.62491, 41.952801] }, - "n2168544740": { - "id": "n2168544740", + "n3535": { + "id": "n3535", "loc": [-85.625186, 41.952756] }, - "n2168544741": { - "id": "n2168544741", + "n3536": { + "id": "n3536", "loc": [-85.625552, 41.952792] }, - "n2168544742": { - "id": "n2168544742", + "n3537": { + "id": "n3537", "loc": [-85.626001, 41.952948] }, - "n2168544743": { - "id": "n2168544743", + "n3538": { + "id": "n3538", "loc": [-85.626528, 41.952984] }, - "n2168544744": { - "id": "n2168544744", + "n3539": { + "id": "n3539", "loc": [-85.626942, 41.952886] }, - "n2168544745": { - "id": "n2168544745", + "n3540": { + "id": "n3540", "loc": [-85.627092, 41.952685] }, - "n2168544746": { - "id": "n2168544746", + "n3541": { + "id": "n3541", "loc": [-85.627212, 41.95244] }, - "n2168544747": { - "id": "n2168544747", + "n3542": { + "id": "n3542", "loc": [-85.627158, 41.952226] }, - "n2168544748": { - "id": "n2168544748", + "n3543": { + "id": "n3543", "loc": [-85.627002, 41.951972] }, - "n2168544749": { - "id": "n2168544749", + "n3544": { + "id": "n3544", "loc": [-85.626822, 41.951838] }, - "n2168544750": { - "id": "n2168544750", + "n3545": { + "id": "n3545", "loc": [-85.626528, 41.951807] }, - "n2168544751": { - "id": "n2168544751", + "n3546": { + "id": "n3546", "loc": [-85.625653, 41.951852] }, - "n2168544752": { - "id": "n2168544752", + "n3547": { + "id": "n3547", "loc": [-85.625348, 41.951834] }, - "n2168544753": { - "id": "n2168544753", + "n3548": { + "id": "n3548", "loc": [-85.625114, 41.951767] }, - "n185955747": { - "id": "n185955747", + "n3549": { + "id": "n3549", "loc": [-85.620627, 41.954682] }, - "n185960688": { - "id": "n185960688", + "n3550": { + "id": "n3550", "loc": [-85.622599, 41.95188] }, - "n185972054": { - "id": "n185972054", + "n3551": { + "id": "n3551", "loc": [-85.618673, 41.954734] }, - "n185978814": { - "id": "n185978814", + "n3552": { + "id": "n3552", "loc": [-85.620229, 41.95472] }, - "n1819790532": { - "id": "n1819790532", + "n3553": { + "id": "n3553", "loc": [-85.624491, 41.955573] }, - "n1819790536": { - "id": "n1819790536", + "n3554": { + "id": "n3554", "loc": [-85.621792, 41.958314] }, - "n1819790538": { - "id": "n1819790538", + "n3555": { + "id": "n3555", "loc": [-85.623395, 41.960001] }, - "n1819790539": { - "id": "n1819790539", + "n3556": { + "id": "n3556", "loc": [-85.620461, 41.956212] }, - "n1819790546": { - "id": "n1819790546", + "n3557": { + "id": "n3557", "loc": [-85.62109, 41.956766] }, - "n1819790548": { - "id": "n1819790548", + "n3558": { + "id": "n3558", "loc": [-85.620246, 41.956224] }, - "n1819790550": { - "id": "n1819790550", + "n3559": { + "id": "n3559", "loc": [-85.625017, 41.956068] }, - "n1819790551": { - "id": "n1819790551", + "n3560": { + "id": "n3560", "loc": [-85.622795, 41.959702] }, - "n1819790553": { - "id": "n1819790553", + "n3561": { + "id": "n3561", "loc": [-85.621573, 41.958457] }, - "n1819790556": { - "id": "n1819790556", + "n3562": { + "id": "n3562", "loc": [-85.619631, 41.9573] }, - "n1819790557": { - "id": "n1819790557", + "n3563": { + "id": "n3563", "loc": [-85.62095, 41.956311] }, - "n1819790558": { - "id": "n1819790558", + "n3564": { + "id": "n3564", "loc": [-85.619694, 41.957408] }, - "n1819790561": { - "id": "n1819790561", + "n3565": { + "id": "n3565", "loc": [-85.621079, 41.957751] }, - "n1819790562": { - "id": "n1819790562", + "n3566": { + "id": "n3566", "loc": [-85.622426, 41.961142] }, - "n1819790565": { - "id": "n1819790565", + "n3567": { + "id": "n3567", "loc": [-85.623251, 41.960484] }, - "n1819790566": { - "id": "n1819790566", + "n3568": { + "id": "n3568", "loc": [-85.619084, 41.956291] }, - "n1819790567": { - "id": "n1819790567", + "n3569": { + "id": "n3569", "loc": [-85.622227, 41.959303] }, - "n1819790569": { - "id": "n1819790569", + "n3570": { + "id": "n3570", "loc": [-85.620976, 41.959104] }, - "n1819790571": { - "id": "n1819790571", + "n3571": { + "id": "n3571", "loc": [-85.621208, 41.95653] }, - "n1819790572": { - "id": "n1819790572", + "n3572": { + "id": "n3572", "loc": [-85.623531, 41.95951] }, - "n1819790581": { - "id": "n1819790581", + "n3573": { + "id": "n3573", "loc": [-85.623556, 41.957935] }, - "n1819790584": { - "id": "n1819790584", + "n3574": { + "id": "n3574", "loc": [-85.623037, 41.95746] }, - "n1819790586": { - "id": "n1819790586", + "n3575": { + "id": "n3575", "loc": [-85.621175, 41.956427] }, - "n1819790588": { - "id": "n1819790588", + "n3576": { + "id": "n3576", "loc": [-85.622651, 41.960109] }, - "n1819790591": { - "id": "n1819790591", + "n3577": { + "id": "n3577", "loc": [-85.621803, 41.960747] }, - "n1819790593": { - "id": "n1819790593", + "n3578": { + "id": "n3578", "loc": [-85.620791, 41.961874] }, - "n1819790596": { - "id": "n1819790596", + "n3579": { + "id": "n3579", "loc": [-85.625295, 41.956786] }, - "n1819790598": { - "id": "n1819790598", + "n3580": { + "id": "n3580", "loc": [-85.619662, 41.956894] }, - "n1819790600": { - "id": "n1819790600", + "n3581": { + "id": "n3581", "loc": [-85.622442, 41.958708] }, - "n1819790602": { - "id": "n1819790602", + "n3582": { + "id": "n3582", "loc": [-85.621744, 41.955864] }, - "n1819790603": { - "id": "n1819790603", + "n3583": { + "id": "n3583", "loc": [-85.621336, 41.959212] }, - "n1819790604": { - "id": "n1819790604", + "n3584": { + "id": "n3584", "loc": [-85.622801, 41.957304] }, - "n1819790608": { - "id": "n1819790608", + "n3585": { + "id": "n3585", "loc": [-85.619973, 41.957433] }, - "n1819790610": { - "id": "n1819790610", + "n3586": { + "id": "n3586", "loc": [-85.619556, 41.955717] }, - "n1819790611": { - "id": "n1819790611", + "n3587": { + "id": "n3587", "loc": [-85.622978, 41.958601] }, - "n1819790613": { - "id": "n1819790613", + "n3588": { + "id": "n3588", "loc": [-85.625396, 41.956264] }, - "n1819790614": { - "id": "n1819790614", + "n3589": { + "id": "n3589", "loc": [-85.623525, 41.958034] }, - "n1819790616": { - "id": "n1819790616", + "n3590": { + "id": "n3590", "loc": [-85.623299, 41.959631] }, - "n1819790617": { - "id": "n1819790617", + "n3591": { + "id": "n3591", "loc": [-85.622678, 41.959873] }, - "n1819790619": { - "id": "n1819790619", + "n3592": { + "id": "n3592", "loc": [-85.625553, 41.956179] }, - "n1819790620": { - "id": "n1819790620", + "n3593": { + "id": "n3593", "loc": [-85.623557, 41.959231] }, - "n1819790624": { - "id": "n1819790624", + "n3594": { + "id": "n3594", "loc": [-85.622843, 41.957373] }, - "n1819790626": { - "id": "n1819790626", + "n3595": { + "id": "n3595", "loc": [-85.619378, 41.955677] }, - "n1819790628": { - "id": "n1819790628", + "n3596": { + "id": "n3596", "loc": [-85.620092, 41.955425] }, - "n1819790630": { - "id": "n1819790630", + "n3597": { + "id": "n3597", "loc": [-85.622666, 41.96044] }, - "n1819790638": { - "id": "n1819790638", + "n3598": { + "id": "n3598", "loc": [-85.621996, 41.960256] }, - "n1819790640": { - "id": "n1819790640", + "n3599": { + "id": "n3599", "loc": [-85.623273, 41.959997] }, - "n1819790643": { - "id": "n1819790643", + "n3600": { + "id": "n3600", "loc": [-85.62477, 41.95689] }, - "n1819790650": { - "id": "n1819790650", + "n3601": { + "id": "n3601", "loc": [-85.621641, 41.955015] }, - "n1819790652": { - "id": "n1819790652", + "n3602": { + "id": "n3602", "loc": [-85.622495, 41.960392] }, - "n1819790656": { - "id": "n1819790656", + "n3603": { + "id": "n3603", "loc": [-85.61918, 41.955565] }, - "n1819790661": { - "id": "n1819790661", + "n3604": { + "id": "n3604", "loc": [-85.620017, 41.955505] }, - "n1819790662": { - "id": "n1819790662", + "n3605": { + "id": "n3605", "loc": [-85.621739, 41.956315] }, - "n1819790666": { - "id": "n1819790666", + "n3606": { + "id": "n3606", "loc": [-85.622957, 41.959837] }, - "n1819790667": { - "id": "n1819790667", + "n3607": { + "id": "n3607", "loc": [-85.620912, 41.960919] }, - "n1819790669": { - "id": "n1819790669", + "n3608": { + "id": "n3608", "loc": [-85.625231, 41.956235] }, - "n1819790670": { - "id": "n1819790670", + "n3609": { + "id": "n3609", "loc": [-85.620976, 41.961868] }, - "n1819790672": { - "id": "n1819790672", + "n3610": { + "id": "n3610", "loc": [-85.620956, 41.958908] }, - "n1819790673": { - "id": "n1819790673", + "n3611": { + "id": "n3611", "loc": [-85.619035, 41.956139] }, - "n1819790675": { - "id": "n1819790675", + "n3612": { + "id": "n3612", "loc": [-85.623643, 41.958669] }, - "n1819790676": { - "id": "n1819790676", + "n3613": { + "id": "n3613", "loc": [-85.61949, 41.956539] }, - "n1819790678": { - "id": "n1819790678", + "n3614": { + "id": "n3614", "loc": [-85.621927, 41.958242] }, - "n1819790680": { - "id": "n1819790680", + "n3615": { + "id": "n3615", "loc": [-85.620826, 41.955721] }, - "n1819790681": { - "id": "n1819790681", + "n3616": { + "id": "n3616", "loc": [-85.621202, 41.961321] }, - "n1819790682": { - "id": "n1819790682", + "n3617": { + "id": "n3617", "loc": [-85.624877, 41.95594] }, - "n1819790684": { - "id": "n1819790684", + "n3618": { + "id": "n3618", "loc": [-85.62065, 41.958369] }, - "n1819790699": { - "id": "n1819790699", + "n3619": { + "id": "n3619", "loc": [-85.621524, 41.956279] }, - "n1819790701": { - "id": "n1819790701", + "n3620": { + "id": "n3620", "loc": [-85.624662, 41.955932] }, - "n1819790703": { - "id": "n1819790703", + "n3621": { + "id": "n3621", "loc": [-85.623048, 41.958509] }, - "n1819790708": { - "id": "n1819790708", + "n3622": { + "id": "n3622", "loc": [-85.62111, 41.95754] }, - "n1819790710": { - "id": "n1819790710", + "n3623": { + "id": "n3623", "loc": [-85.621508, 41.954847] }, - "n1819790711": { - "id": "n1819790711", + "n3624": { + "id": "n3624", "loc": [-85.620655, 41.958601] }, - "n1819790713": { - "id": "n1819790713", + "n3625": { + "id": "n3625", "loc": [-85.62154, 41.954971] }, - "n1819790715": { - "id": "n1819790715", + "n3626": { + "id": "n3626", "loc": [-85.621691, 41.955521] }, - "n1819790717": { - "id": "n1819790717", + "n3627": { + "id": "n3627", "loc": [-85.62154, 41.954739] }, - "n1819790722": { - "id": "n1819790722", + "n3628": { + "id": "n3628", "loc": [-85.621996, 41.959913] }, - "n1819790723": { - "id": "n1819790723", + "n3629": { + "id": "n3629", "loc": [-85.622286, 41.960699] }, - "n1819790725": { - "id": "n1819790725", + "n3630": { + "id": "n3630", "loc": [-85.622844, 41.9572] }, - "n1819790727": { - "id": "n1819790727", + "n3631": { + "id": "n3631", "loc": [-85.620252, 41.955446] }, - "n1819790728": { - "id": "n1819790728", + "n3632": { + "id": "n3632", "loc": [-85.623434, 41.957528] }, - "n1819790729": { - "id": "n1819790729", + "n3633": { + "id": "n3633", "loc": [-85.623429, 41.956858] }, - "n1819790732": { - "id": "n1819790732", + "n3634": { + "id": "n3634", "loc": [-85.622957, 41.957137] }, - "n1819790733": { - "id": "n1819790733", + "n3635": { + "id": "n3635", "loc": [-85.622554, 41.959027] }, - "n1819790734": { - "id": "n1819790734", + "n3636": { + "id": "n3636", "loc": [-85.623289, 41.958314] }, - "n1819790736": { - "id": "n1819790736", + "n3637": { + "id": "n3637", "loc": [-85.622977, 41.960855] }, - "n1819790737": { - "id": "n1819790737", + "n3638": { + "id": "n3638", "loc": [-85.624008, 41.956953] }, - "n1819790741": { - "id": "n1819790741", + "n3639": { + "id": "n3639", "loc": [-85.621278, 41.960855] }, - "n1819790742": { - "id": "n1819790742", + "n3640": { + "id": "n3640", "loc": [-85.623128, 41.956993] }, - "n1819790743": { - "id": "n1819790743", + "n3641": { + "id": "n3641", "loc": [-85.622452, 41.959183] }, - "n1819790744": { - "id": "n1819790744", + "n3642": { + "id": "n3642", "loc": [-85.621095, 41.961082] }, - "n1819790745": { - "id": "n1819790745", + "n3643": { + "id": "n3643", "loc": [-85.622011, 41.960544] }, - "n1819790755": { - "id": "n1819790755", + "n3644": { + "id": "n3644", "loc": [-85.621637, 41.955385] }, - "n1819790757": { - "id": "n1819790757", + "n3645": { + "id": "n3645", "loc": [-85.620999, 41.959271] }, - "n1819790758": { - "id": "n1819790758", + "n3646": { + "id": "n3646", "loc": [-85.620044, 41.956347] }, - "n1819790764": { - "id": "n1819790764", + "n3647": { + "id": "n3647", "loc": [-85.621936, 41.959682] }, - "n1819790765": { - "id": "n1819790765", + "n3648": { + "id": "n3648", "loc": [-85.623761, 41.95685] }, - "n1819790769": { - "id": "n1819790769", + "n3649": { + "id": "n3649", "loc": [-85.621239, 41.959343] }, - "n1819790771": { - "id": "n1819790771", + "n3650": { + "id": "n3650", "loc": [-85.621073, 41.956012] }, - "n1819790772": { - "id": "n1819790772", + "n3651": { + "id": "n3651", "loc": [-85.621271, 41.956184] }, - "n1819790776": { - "id": "n1819790776", + "n3652": { + "id": "n3652", "loc": [-85.623444, 41.95778] }, - "n1819790777": { - "id": "n1819790777", + "n3653": { + "id": "n3653", "loc": [-85.62125, 41.96186] }, - "n1819790783": { - "id": "n1819790783", + "n3654": { + "id": "n3654", "loc": [-85.62169, 41.961059] }, - "n1819790784": { - "id": "n1819790784", + "n3655": { + "id": "n3655", "loc": [-85.620012, 41.955637] }, - "n1819790785": { - "id": "n1819790785", + "n3656": { + "id": "n3656", "loc": [-85.621058, 41.9573] }, - "n1819790786": { - "id": "n1819790786", + "n3657": { + "id": "n3657", "loc": [-85.621138, 41.957663] }, - "n1819790788": { - "id": "n1819790788", + "n3658": { + "id": "n3658", "loc": [-85.620773, 41.957895] }, - "n1819790789": { - "id": "n1819790789", + "n3659": { + "id": "n3659", "loc": [-85.62007, 41.957157] }, - "n1819790790": { - "id": "n1819790790", + "n3660": { + "id": "n3660", "loc": [-85.624534, 41.955844] }, - "n1819790792": { - "id": "n1819790792", + "n3661": { + "id": "n3661", "loc": [-85.621932, 41.960807] }, - "n1819790793": { - "id": "n1819790793", + "n3662": { + "id": "n3662", "loc": [-85.623358, 41.958138] }, - "n1819790794": { - "id": "n1819790794", + "n3663": { + "id": "n3663", "loc": [-85.620456, 41.955514] }, - "n1819790797": { - "id": "n1819790797", + "n3664": { + "id": "n3664", "loc": [-85.623504, 41.957607] }, - "n1819790800": { - "id": "n1819790800", + "n3665": { + "id": "n3665", "loc": [-85.621444, 41.960751] }, - "n1819790801": { - "id": "n1819790801", + "n3666": { + "id": "n3666", "loc": [-85.623492, 41.960213] }, - "n1819790802": { - "id": "n1819790802", + "n3667": { + "id": "n3667", "loc": [-85.621669, 41.954655] }, - "n1819790803": { - "id": "n1819790803", + "n3668": { + "id": "n3668", "loc": [-85.623106, 41.958685] }, - "n1819790804": { - "id": "n1819790804", + "n3669": { + "id": "n3669", "loc": [-85.620922, 41.957867] }, - "n1819790813": { - "id": "n1819790813", + "n3670": { + "id": "n3670", "loc": [-85.620092, 41.957296] }, - "n1819790814": { - "id": "n1819790814", + "n3671": { + "id": "n3671", "loc": [-85.621669, 41.955222] }, - "n1819790816": { - "id": "n1819790816", + "n3672": { + "id": "n3672", "loc": [-85.621614, 41.960967] }, - "n1819790818": { - "id": "n1819790818", + "n3673": { + "id": "n3673", "loc": [-85.621691, 41.955732] }, - "n1819790820": { - "id": "n1819790820", + "n3674": { + "id": "n3674", "loc": [-85.619207, 41.956419] }, - "n1819790823": { - "id": "n1819790823", + "n3675": { + "id": "n3675", "loc": [-85.621116, 41.956603] }, - "n1819790825": { - "id": "n1819790825", + "n3676": { + "id": "n3676", "loc": [-85.623311, 41.956929] }, - "n1819790839": { - "id": "n1819790839", + "n3677": { + "id": "n3677", "loc": [-85.625671, 41.956499] }, - "n1819790842": { - "id": "n1819790842", + "n3678": { + "id": "n3678", "loc": [-85.623525, 41.956738] }, - "n1819790844": { - "id": "n1819790844", + "n3679": { + "id": "n3679", "loc": [-85.625381, 41.956634] }, - "n1819790847": { - "id": "n1819790847", + "n3680": { + "id": "n3680", "loc": [-85.620096, 41.95677] }, - "n1819790849": { - "id": "n1819790849", + "n3681": { + "id": "n3681", "loc": [-85.623803, 41.958745] }, - "n1819790851": { - "id": "n1819790851", + "n3682": { + "id": "n3682", "loc": [-85.623498, 41.958457] }, - "n1819790856": { - "id": "n1819790856", + "n3683": { + "id": "n3683", "loc": [-85.624223, 41.957009] }, - "n1819790865": { - "id": "n1819790865", + "n3684": { + "id": "n3684", "loc": [-85.620026, 41.956946] }, - "n1819790869": { - "id": "n1819790869", + "n3685": { + "id": "n3685", "loc": [-85.623005, 41.960124] }, - "n1819790871": { - "id": "n1819790871", + "n3686": { + "id": "n3686", "loc": [-85.619073, 41.955832] }, - "n1819790873": { - "id": "n1819790873", + "n3687": { + "id": "n3687", "loc": [-85.621744, 41.95501] }, - "n1819790875": { - "id": "n1819790875", + "n3688": { + "id": "n3688", "loc": [-85.620804, 41.958781] }, - "n1819790879": { - "id": "n1819790879", + "n3689": { + "id": "n3689", "loc": [-85.619844, 41.957448] }, - "n1819790883": { - "id": "n1819790883", + "n3690": { + "id": "n3690", "loc": [-85.623713, 41.958872] }, - "n1819790885": { - "id": "n1819790885", + "n3691": { + "id": "n3691", "loc": [-85.622329, 41.960507] }, - "n1819790889": { - "id": "n1819790889", + "n3692": { + "id": "n3692", "loc": [-85.620804, 41.956244] }, - "n1819790893": { - "id": "n1819790893", + "n3693": { + "id": "n3693", "loc": [-85.621818, 41.955968] }, - "n1819790906": { - "id": "n1819790906", + "n3694": { + "id": "n3694", "loc": [-85.621405, 41.958697] }, - "n1819790913": { - "id": "n1819790913", + "n3695": { + "id": "n3695", "loc": [-85.620998, 41.960996] }, - "n1819790917": { - "id": "n1819790917", + "n3696": { + "id": "n3696", "loc": [-85.621621, 41.960444] }, - "n1819790919": { - "id": "n1819790919", + "n3697": { + "id": "n3697", "loc": [-85.620941, 41.961637] }, - "n1819790920": { - "id": "n1819790920", + "n3698": { + "id": "n3698", "loc": [-85.622195, 41.958333] }, - "n1819790922": { - "id": "n1819790922", + "n3699": { + "id": "n3699", "loc": [-85.621668, 41.961529] }, - "n1819790924": { - "id": "n1819790924", + "n3700": { + "id": "n3700", "loc": [-85.621015, 41.957049] }, - "n1819790929": { - "id": "n1819790929", + "n3701": { + "id": "n3701", "loc": [-85.619368, 41.955521] }, - "w17964707": { - "id": "w17964707", + "w637": { + "id": "w637", "tags": { "highway": "residential", "name": "11th Avenue" }, - "nodes": ["n185960682", "n185960684", "n185960688", "n185960690"] + "nodes": ["n2845", "n3517", "n3550", "n3472"] }, - "w201484345": { - "id": "w201484345", + "w638": { + "id": "w638", "tags": { "bridge": "yes", "highway": "residential", "name": "East Hoffman Street" }, - "nodes": ["n185978791", "n185978795"] + "nodes": ["n3508", "n3518"] }, - "w201484348": { - "id": "w201484348", + "w639": { + "id": "w639", "tags": { "highway": "residential", "name": "East Hoffman Street" }, - "nodes": [ - "n185978795", - "n1204", - "n185978800", - "n185978803", - "n185978806", - "n185978808", - "n185978810", - "n185978811", - "n185978813", - "n185955747", - "n185978814", - "n185972054", - "n185978817" - ] + "nodes": ["n3518", "n1204", "n2862", "n3519", "n3520", "n3521", "n3522", "n3523", "n3524", "n3549", "n3552", "n3551", "n3473"] }, - "w170843845": { - "id": "w170843845", + "w640": { + "id": "w640", "tags": { "landuse": "reservoir", "name": "Hoffman Pond", "natural": "water" }, "nodes": [ - "n1819790732", - "n1819790742", - "n1819790825", - "n1819790729", - "n1819790842", - "n1819790765", - "n1819790737", - "n1819790856", - "n1819790643", - "n1819790596", - "n1819790844", - "n1819790839", - "n1819849190", - "n1819790619", - "n1819790613", - "n1819790669", - "n1819790550", - "n1819790682", - "n1819790701", - "n1819790790", - "n1819790532", - "n1819790887", - "n1819790740", - "n1819790831", - "n1819790545", - "n1819790664", - "n1819790621", - "n1819790861", - "n1819790730", - "n1819790683", - "n1819790802", - "n1819790717", - "n1819790710", - "n1819790713", - "n1819790650", - "n1819790873", - "n1819790814", - "n1819790755", - "n1819790715", - "n1819790818", - "n1819790602", - "n1819790893", - "n1819790662", - "n1819790699", - "n1819790772", - "n1819790771", - "n1819790680", - "n1819790794", - "n1819790727", - "n1819790628", - "n1819790661", - "n1819790784", - "n1819790610", - "n1819790626", - "n1819790929", - "n1819790656", - "n1819790871", - "n1819790673", - "n1819790566", - "n1819790820", - "n1819790676", - "n1819790598", - "n1819790556", - "n1819790558", - "n1819790879", - "n1819790608", - "n1819790813", - "n1819790789", - "n1819790865", - "n1819790847", - "n1819790758", - "n1819790548", - "n1819790539", - "n1819790889", - "n1819790557", - "n1819790586", - "n1819790571", - "n1819790823", - "n1819790546", - "n1819790924", - "n1819790785", - "n1819790708", - "n1819790786", - "n1819790561", - "n1819790804", - "n1819790788", - "n1819790684", - "n1819790711", - "n1819790875", - "n1819790672", - "n1819790569", - "n1819790757", - "n1819790769", - "n1819790603", - "n1819790906", - "n1819790553", - "n1819790536", - "n1819790678", - "n1819790920", - "n1819790600", - "n1819790733", - "n1819790743", - "n1819790567", - "n1819790764", - "n1819790722", - "n1819790638", - "n1819790917", - "n1819790800", - "n1819790741", - "n1819790667", - "n1819790913", - "n1819790744", - "n1819790816", - "n1819790591", - "n1819790745", - "n1819790885", - "n1819790652", - "n1819790588", - "n1819790617", - "n1819790551", - "n1819790666", - "n1819790869", - "n1819790630", - "n1819790723", - "n1819790792", - "n1819790783", - "n1819790681", - "n1819790919", - "n1819790593", - "n1819790670", - "n1819790777", - "n1819790922", - "n1819790562", - "n1819790736", - "n1819790565", - "n1819790801", - "n1819790538", - "n1819790640", - "n1819790616", - "n1819790572", - "n1819790620", - "n1819790883", - "n1819790849", - "n1819790675", - "n1819790851", - "n1819790803", - "n1819790611", - "n1819790703", - "n1819790734", - "n1819790793", - "n1819790614", - "n1819790581", - "n1819790776", - "n1819790797", - "n1819790728", - "n1819790584", - "n1819790624", - "n1819790604", - "n1819790725", - "n1819790732" + "n3634", + "n3640", + "n3676", + "n3633", + "n3678", + "n3648", + "n3638", + "n3683", + "n3600", + "n3579", + "n3679", + "n3677", + "n2987", + "n3592", + "n3588", + "n3608", + "n3559", + "n3617", + "n3620", + "n3660", + "n3553", + "n3533", + "n3530", + "n3531", + "n3525", + "n3527", + "n3526", + "n3532", + "n3529", + "n3528", + "n3667", + "n3627", + "n3623", + "n3625", + "n3601", + "n3687", + "n3671", + "n3644", + "n3626", + "n3673", + "n3582", + "n3693", + "n3605", + "n3619", + "n3651", + "n3650", + "n3615", + "n3663", + "n3631", + "n3596", + "n3604", + "n3655", + "n3586", + "n3595", + "n3701", + "n3603", + "n3686", + "n3611", + "n3568", + "n3674", + "n3613", + "n3580", + "n3562", + "n3564", + "n3689", + "n3585", + "n3670", + "n3659", + "n3684", + "n3680", + "n3646", + "n3558", + "n3556", + "n3692", + "n3563", + "n3575", + "n3571", + "n3675", + "n3557", + "n3700", + "n3656", + "n3622", + "n3657", + "n3565", + "n3669", + "n3658", + "n3618", + "n3624", + "n3688", + "n3610", + "n3570", + "n3645", + "n3649", + "n3583", + "n3694", + "n3561", + "n3554", + "n3614", + "n3698", + "n3581", + "n3635", + "n3641", + "n3569", + "n3647", + "n3628", + "n3598", + "n3696", + "n3665", + "n3639", + "n3607", + "n3695", + "n3642", + "n3672", + "n3577", + "n3643", + "n3691", + "n3602", + "n3576", + "n3591", + "n3560", + "n3606", + "n3685", + "n3597", + "n3629", + "n3661", + "n3654", + "n3616", + "n3697", + "n3578", + "n3609", + "n3653", + "n3699", + "n3566", + "n3637", + "n3567", + "n3666", + "n3555", + "n3599", + "n3590", + "n3572", + "n3593", + "n3690", + "n3681", + "n3612", + "n3682", + "n3668", + "n3587", + "n3621", + "n3636", + "n3662", + "n3589", + "n3573", + "n3652", + "n3664", + "n3632", + "n3574", + "n3594", + "n3584", + "n3630", + "n3634" ] }, - "w206805240": { - "id": "w206805240", + "w641": { + "id": "w641", "tags": { "waterway": "river" }, "nodes": [ - "n2168544738", - "n2168544739", - "n2168544740", - "n2168544741", - "n2168544742", - "n2168544743", - "n2168544744", - "n2168544745", - "n2168544746", - "n2168544747", - "n2168544748", - "n2168544749", - "n2168544750", - "n2168544751", - "n2168544752", - "n2168544753", - "n1819848944" + "n2988", + "n3534", + "n3535", + "n3536", + "n3537", + "n3538", + "n3539", + "n3540", + "n3541", + "n3542", + "n3543", + "n3544", + "n3545", + "n3546", + "n3547", + "n3548", + "n2970" ] }, - "n394490414": { - "id": "n394490414", + "n3702": { + "id": "n3702", "loc": [-85.651578, 41.942534] }, - "n394490416": { - "id": "n394490416", + "n3703": { + "id": "n3703", "loc": [-85.651541, 41.943847] }, - "n394490418": { - "id": "n394490418", + "n3704": { + "id": "n3704", "loc": [-85.651365, 41.944817] }, - "n394490422": { - "id": "n394490422", + "n3705": { + "id": "n3705", "loc": [-85.651076, 41.945985] }, - "n394490424": { - "id": "n394490424", + "n3706": { + "id": "n3706", "loc": [-85.650626, 41.947213] }, - "n394490427": { - "id": "n394490427", + "n3707": { + "id": "n3707", "loc": [-85.649669, 41.949161] }, - "n394490446": { - "id": "n394490446", + "n3708": { + "id": "n3708", "loc": [-85.641802, 41.961801] }, - "n394490487": { - "id": "n394490487", + "n3709": { + "id": "n3709", "loc": [-85.623333, 41.961987] }, - "n394490494": { - "id": "n394490494", + "n3710": { + "id": "n3710", "loc": [-85.620621, 41.965658] }, - "n394490498": { - "id": "n394490498", + "n3711": { + "id": "n3711", "loc": [-85.605673, 41.965764] }, - "n394490500": { - "id": "n394490500", + "n3712": { + "id": "n3712", "loc": [-85.605664, 41.962094] }, - "n394490504": { - "id": "n394490504", + "n3713": { + "id": "n3713", "loc": [-85.583774, 41.962178] }, - "n394490505": { - "id": "n394490505", + "n3714": { + "id": "n3714", "loc": [-85.583774, 41.961789] }, - "n394490506": { - "id": "n394490506", + "n3715": { + "id": "n3715", "loc": [-85.581303, 41.961783] }, - "n394490510": { - "id": "n394490510", + "n3716": { + "id": "n3716", "loc": [-85.581245, 41.958394] }, - "n394490515": { - "id": "n394490515", + "n3717": { + "id": "n3717", "loc": [-85.585299, 41.955483] }, - "n394490516": { - "id": "n394490516", + "n3718": { + "id": "n3718", "loc": [-85.585588, 41.955331] }, - "n394490517": { - "id": "n394490517", + "n3719": { + "id": "n3719", "loc": [-85.586053, 41.955163] }, - "n394490518": { - "id": "n394490518", + "n3720": { + "id": "n3720", "loc": [-85.58632, 41.955076] }, - "n394490519": { - "id": "n394490519", + "n3721": { + "id": "n3721", "loc": [-85.586478, 41.955025] }, - "n394490520": { - "id": "n394490520", + "n3722": { + "id": "n3722", "loc": [-85.58692, 41.954947] }, - "n394490522": { - "id": "n394490522", + "n3723": { + "id": "n3723", "loc": [-85.587345, 41.954913] }, - "n394490555": { - "id": "n394490555", + "n3724": { + "id": "n3724", "loc": [-85.605592, 41.954766] }, - "n394490588": { - "id": "n394490588", + "n3725": { + "id": "n3725", "loc": [-85.605303, 41.936236] }, - "n394490589": { - "id": "n394490589", + "n3726": { + "id": "n3726", "loc": [-85.606941, 41.936117] }, - "n394490590": { - "id": "n394490590", + "n3727": { + "id": "n3727", "loc": [-85.60876, 41.935856] }, - "n394490592": { - "id": "n394490592", + "n3728": { + "id": "n3728", "loc": [-85.610092, 41.935451] }, - "n394490594": { - "id": "n394490594", + "n3729": { + "id": "n3729", "loc": [-85.610681, 41.935247] }, - "n394490595": { - "id": "n394490595", + "n3730": { + "id": "n3730", "loc": [-85.611446, 41.934955] }, - "n394490596": { - "id": "n394490596", + "n3731": { + "id": "n3731", "loc": [-85.612057, 41.934696] }, - "n394490598": { - "id": "n394490598", + "n3732": { + "id": "n3732", "loc": [-85.613256, 41.934084] }, - "n394490599": { - "id": "n394490599", + "n3733": { + "id": "n3733", "loc": [-85.613948, 41.933682] }, - "n394490602": { - "id": "n394490602", + "n3734": { + "id": "n3734", "loc": [-85.614638, 41.933212] }, - "n394490615": { - "id": "n394490615", + "n3735": { + "id": "n3735", "loc": [-85.619801, 41.929305] }, - "n394490616": { - "id": "n394490616", + "n3736": { + "id": "n3736", "loc": [-85.619768, 41.925548] }, - "n394490629": { - "id": "n394490629", + "n3737": { + "id": "n3737", "loc": [-85.625761, 41.925597] }, - "n394490635": { - "id": "n394490635", + "n3738": { + "id": "n3738", "loc": [-85.6263, 41.927323] }, - "n394490702": { - "id": "n394490702", + "n3739": { + "id": "n3739", "loc": [-85.633708, 41.927402] }, - "n394490708": { - "id": "n394490708", + "n3740": { + "id": "n3740", "loc": [-85.633927, 41.929109] }, - "n394490714": { - "id": "n394490714", + "n3741": { + "id": "n3741", "loc": [-85.639213, 41.929088] }, - "n394490716": { - "id": "n394490716", + "n3742": { + "id": "n3742", "loc": [-85.639204, 41.925488] }, - "n394490718": { - "id": "n394490718", + "n3743": { + "id": "n3743", "loc": [-85.651425, 41.925406] }, - "w34369809": { - "id": "w34369809", + "w642": { + "id": "w642", "tags": { "admin_level": "8", "boundary": "administrative", "landuse": "residential" }, "nodes": [ - "n394490414", - "n394490416", - "n394490418", - "n394490422", - "n394490424", - "n394490427", - "n394490446", - "n394490487", - "n394490494", - "n394490498", - "n394490500", - "n394490504", - "n394490505", - "n394490506", - "n394490510", - "n394490515", - "n394490516", - "n394490517", - "n394490518", - "n394490519", - "n394490520", - "n394490522", - "n394490555", - "n394490588", - "n394490589", - "n394490590", - "n394490592", - "n394490594", - "n394490595", - "n394490596", - "n394490598", - "n394490599", - "n394490602", - "n394490615", - "n394490616", - "n394490629", - "n394490635", - "n394490702", - "n394490708", - "n394490714", - "n394490716", - "n394490718", - "n394490414" + "n3702", + "n3703", + "n3704", + "n3705", + "n3706", + "n3707", + "n3708", + "n3709", + "n3710", + "n3711", + "n3712", + "n3713", + "n3714", + "n3715", + "n3716", + "n3717", + "n3718", + "n3719", + "n3720", + "n3721", + "n3722", + "n3723", + "n3724", + "n3725", + "n3726", + "n3727", + "n3728", + "n3729", + "n3730", + "n3731", + "n3732", + "n3733", + "n3734", + "n3735", + "n3736", + "n3737", + "n3738", + "n3739", + "n3740", + "n3741", + "n3742", + "n3743", + "n3702" ] }, - "r134949": { - "id": "r134949", + "r5": { + "id": "r5", "tags": { "admin_level": "8", "border_type": "city", @@ -12999,7 +12446,7 @@ }, "members": [ { - "id": "w34369809", + "id": "w642", "type": "way", "role": "outer" }, @@ -13040,1611 +12487,1506 @@ } ] }, - "n2199109865": { - "id": "n2199109865", + "n3744": { + "id": "n3744", "loc": [-85.640077, 41.956776] }, - "n2199109867": { - "id": "n2199109867", + "n3745": { + "id": "n3745", "loc": [-85.639902, 41.956715] }, - "n2199109869": { - "id": "n2199109869", + "n3746": { + "id": "n3746", "loc": [-85.640004, 41.956553] }, - "n2199109871": { - "id": "n2199109871", + "n3747": { + "id": "n3747", "loc": [-85.640179, 41.956614] }, - "n2199109876": { - "id": "n2199109876", + "n3748": { + "id": "n3748", "loc": [-85.639769, 41.957235] }, - "n2199109878": { - "id": "n2199109878", + "n3749": { + "id": "n3749", "loc": [-85.639923, 41.956983] }, - "n2199109880": { - "id": "n2199109880", + "n3750": { + "id": "n3750", "loc": [-85.639706, 41.95691] }, - "n2199109882": { - "id": "n2199109882", + "n3751": { + "id": "n3751", "loc": [-85.639552, 41.957162] }, - "n2199109884": { - "id": "n2199109884", + "n3752": { + "id": "n3752", "loc": [-85.639103, 41.956952] }, - "n2199109886": { - "id": "n2199109886", + "n3753": { + "id": "n3753", "loc": [-85.639288, 41.956646] }, - "n2199109888": { - "id": "n2199109888", + "n3754": { + "id": "n3754", "loc": [-85.639484, 41.956712] }, - "n2199109889": { - "id": "n2199109889", + "n3755": { + "id": "n3755", "loc": [-85.639432, 41.956797] }, - "n2199109890": { - "id": "n2199109890", + "n3756": { + "id": "n3756", "loc": [-85.639372, 41.956777] }, - "n2199109891": { - "id": "n2199109891", + "n3757": { + "id": "n3757", "loc": [-85.639239, 41.956997] }, - "w209717057": { - "id": "w209717057", + "w643": { + "id": "w643", "tags": { "building": "yes" }, - "nodes": ["n2199109876", "n2199109878", "n2199109880", "n2199109882", "n2199109876"] + "nodes": ["n3748", "n3749", "n3750", "n3751", "n3748"] }, - "w209717056": { - "id": "w209717056", + "w644": { + "id": "w644", "tags": { "building": "yes" }, - "nodes": ["n2199109865", "n2199109867", "n2199109869", "n2199109871", "n2199109865"] + "nodes": ["n3744", "n3745", "n3746", "n3747", "n3744"] }, - "w209717058": { - "id": "w209717058", + "w645": { + "id": "w645", "tags": { "building": "yes" }, - "nodes": ["n2199109884", "n2199109886", "n2199109888", "n2199109889", "n2199109890", "n2199109891", "n2199109884"] + "nodes": ["n3752", "n3753", "n3754", "n3755", "n3756", "n3757", "n3752"] }, - "n185954650": { - "id": "n185954650", + "n3758": { + "id": "n3758", "loc": [-85.627415, 41.957442] }, - "n185966949": { - "id": "n185966949", + "n3759": { + "id": "n3759", "loc": [-85.627019, 41.957369] }, - "n185989335": { - "id": "n185989335", + "n3760": { + "id": "n3760", "loc": [-85.62529, 41.958568] }, - "n185989337": { - "id": "n185989337", + "n3761": { + "id": "n3761", "loc": [-85.624962, 41.958453] }, - "n185989339": { - "id": "n185989339", + "n3762": { + "id": "n3762", "loc": [-85.624832, 41.958399] }, - "n185989340": { - "id": "n185989340", + "n3763": { + "id": "n3763", "loc": [-85.624707, 41.958325] }, - "n185989342": { - "id": "n185989342", + "n3764": { + "id": "n3764", "loc": [-85.624636, 41.958251] }, - "n185989345": { - "id": "n185989345", + "n3765": { + "id": "n3765", "loc": [-85.624578, 41.95818] }, - "n185989347": { - "id": "n185989347", + "n3766": { + "id": "n3766", "loc": [-85.624533, 41.958099] }, - "n185989349": { - "id": "n185989349", + "n3767": { + "id": "n3767", "loc": [-85.624507, 41.957985] }, - "n185989351": { - "id": "n185989351", + "n3768": { + "id": "n3768", "loc": [-85.624495, 41.957807] }, - "n185989353": { - "id": "n185989353", + "n3769": { + "id": "n3769", "loc": [-85.624514, 41.957663] }, - "n185989354": { - "id": "n185989354", + "n3770": { + "id": "n3770", "loc": [-85.624577, 41.957593] }, - "n185989356": { - "id": "n185989356", + "n3771": { + "id": "n3771", "loc": [-85.624685, 41.95754] }, - "n185989357": { - "id": "n185989357", + "n3772": { + "id": "n3772", "loc": [-85.624802, 41.957523] }, - "n185989359": { - "id": "n185989359", + "n3773": { + "id": "n3773", "loc": [-85.624996, 41.957524] }, - "n185989361": { - "id": "n185989361", + "n3774": { + "id": "n3774", "loc": [-85.625409, 41.957515] }, - "n185989364": { - "id": "n185989364", + "n3775": { + "id": "n3775", "loc": [-85.625634, 41.957496] }, - "n185989367": { - "id": "n185989367", + "n3776": { + "id": "n3776", "loc": [-85.625832, 41.957453] }, - "n185989368": { - "id": "n185989368", + "n3777": { + "id": "n3777", "loc": [-85.626044, 41.957394] }, - "n2199109892": { - "id": "n2199109892", + "n3778": { + "id": "n3778", "loc": [-85.626158, 41.958996] }, - "n2199109893": { - "id": "n2199109893", + "n3779": { + "id": "n3779", "loc": [-85.626319, 41.958686] }, - "n2199109894": { - "id": "n2199109894", + "n3780": { + "id": "n3780", "loc": [-85.626119, 41.958629] }, - "n2199109895": { - "id": "n2199109895", + "n3781": { + "id": "n3781", "loc": [-85.626064, 41.958733] }, - "n2199109896": { - "id": "n2199109896", + "n3782": { + "id": "n3782", "loc": [-85.626155, 41.958759] }, - "n2199109898": { - "id": "n2199109898", + "n3783": { + "id": "n3783", "loc": [-85.626048, 41.958965] }, - "n185966951": { - "id": "n185966951", + "n3784": { + "id": "n3784", "loc": [-85.628404, 41.957438] }, - "w17965351": { - "id": "w17965351", + "w646": { + "id": "w646", "tags": { "highway": "residential", "name": "Flower Street" }, - "nodes": [ - "n185966948", - "n185966949", - "n1420", - "n1421", - "n1422", - "n185954650", - "n185966951", - "n185966953", - "n185966955", - "n185966957" - ] + "nodes": ["n2752", "n3759", "n1420", "n1421", "n1422", "n3758", "n3784", "n3199", "n3200", "n3412"] }, - "w17967809": { - "id": "w17967809", + "w647": { + "id": "w647", "tags": { "highway": "residential", "name": "Azaleamum Drive" }, "nodes": [ - "n185982197", - "n185989335", - "n185989337", - "n185989339", - "n185989340", - "n185989342", - "n185989345", - "n185989347", - "n185989349", - "n185989351", - "n185989353", - "n185989354", - "n185989356", - "n185989357", - "n185989359", - "n185989361", - "n185989364", - "n185989367", - "n185989368", - "n185982196" + "n2771", + "n3760", + "n3761", + "n3762", + "n3763", + "n3764", + "n3765", + "n3766", + "n3767", + "n3768", + "n3769", + "n3770", + "n3771", + "n3772", + "n3773", + "n3774", + "n3775", + "n3776", + "n3777", + "n2770" ] }, - "w209717059": { - "id": "w209717059", + "w648": { + "id": "w648", "tags": { "building": "yes" }, - "nodes": ["n2199109892", "n2199109893", "n2199109894", "n2199109895", "n2199109896", "n2199109898", "n2199109892"] + "nodes": ["n3778", "n3779", "n3780", "n3781", "n3782", "n3783", "n3778"] }, - "w17964793": { - "id": "w17964793", + "w649": { + "id": "w649", "tags": { "highway": "residential", "name": "Morris Avenue", "surface": "unpaved" }, - "nodes": ["n185961389", "n185961391"] + "nodes": ["n3197", "n3198"] }, - "w17967970": { - "id": "w17967970", + "w650": { + "id": "w650", "tags": { "highway": "residential", "name": "East Adams Street" }, - "nodes": ["n185968108", "n185967434", "n185975351", "n185978394"] + "nodes": ["n3207", "n3203", "n3413", "n2762"] }, - "n1057629869": { - "id": "n1057629869", + "n3785": { + "id": "n3785", "loc": [-85.63826, 41.961213] }, - "n1057629937": { - "id": "n1057629937", + "n3786": { + "id": "n3786", "loc": [-85.638003, 41.961614] }, - "n1057629880": { - "id": "n1057629880", + "n3787": { + "id": "n3787", "loc": [-85.638817, 41.961902] }, - "n1057629923": { - "id": "n1057629923", + "n3788": { + "id": "n3788", "loc": [-85.639073, 41.961501] }, - "w91092312": { - "id": "w91092312", + "w651": { + "id": "w651", "tags": { "power": "station" }, - "nodes": ["n1057629923", "n1057629869", "n1057629937", "n1057629880", "n1057629923"] + "nodes": ["n3788", "n3785", "n3786", "n3787", "n3788"] }, - "n185972055": { - "id": "n185972055", + "n3789": { + "id": "n3789", "loc": [-85.61859, 41.956821] }, - "n185972057": { - "id": "n185972057", + "n3790": { + "id": "n3790", "loc": [-85.618669, 41.957009] }, - "n185972059": { - "id": "n185972059", + "n3791": { + "id": "n3791", "loc": [-85.618692, 41.958145] }, - "n185972060": { - "id": "n185972060", + "n3792": { + "id": "n3792", "loc": [-85.618708, 41.958821], "tags": { "highway": "turning_circle" } }, - "n1819790724": { - "id": "n1819790724", + "n3793": { + "id": "n3793", "loc": [-85.618216, 41.95557] }, - "n1819790735": { - "id": "n1819790735", + "n3794": { + "id": "n3794", "loc": [-85.618406, 41.956619] }, - "n1819790799": { - "id": "n1819790799", + "n3795": { + "id": "n3795", "loc": [-85.618237, 41.956377] }, - "n1819790896": { - "id": "n1819790896", + "n3796": { + "id": "n3796", "loc": [-85.618143, 41.955723] }, - "n185971405": { - "id": "n185971405", + "n3797": { + "id": "n3797", "loc": [-85.618677, 41.957747] }, - "n185971565": { - "id": "n185971565", + "n3798": { + "id": "n3798", "loc": [-85.618161, 41.956088] }, - "n185967985": { - "id": "n185967985", + "n3799": { + "id": "n3799", "loc": [-85.61868, 41.958579] }, - "n185955753": { - "id": "n185955753", + "n3800": { + "id": "n3800", "loc": [-85.620773, 41.955585] }, - "n185955755": { - "id": "n185955755", + "n3801": { + "id": "n3801", "loc": [-85.621265, 41.955989] }, - "n185955748": { - "id": "n185955748", + "n3802": { + "id": "n3802", "loc": [-85.620692, 41.954969] }, - "n185955751": { - "id": "n185955751", + "n3803": { + "id": "n3803", "loc": [-85.620691, 41.955367] }, - "n185967987": { - "id": "n185967987", + "n3804": { + "id": "n3804", "loc": [-85.615935, 41.958581] }, - "n185971407": { - "id": "n185971407", + "n3805": { + "id": "n3805", "loc": [-85.615914, 41.957758] }, - "n185971570": { - "id": "n185971570", + "n3806": { + "id": "n3806", "loc": [-85.616225, 41.95603] }, - "n185971572": { - "id": "n185971572", + "n3807": { + "id": "n3807", "loc": [-85.61604, 41.956075] }, - "n185971574": { - "id": "n185971574", + "n3808": { + "id": "n3808", "loc": [-85.61593, 41.956201] }, - "n185981301": { - "id": "n185981301", + "n3809": { + "id": "n3809", "loc": [-85.615897, 41.95816] }, - "n1819790677": { - "id": "n1819790677", + "n3810": { + "id": "n3810", "loc": [-85.618703, 41.955052] }, - "n1819790787": { - "id": "n1819790787", + "n3811": { + "id": "n3811", "loc": [-85.618644, 41.955202] }, - "n1819790828": { - "id": "n1819790828", + "n3812": { + "id": "n3812", "loc": [-85.618513, 41.955339] }, - "w17966857": { - "id": "w17966857", + "w652": { + "id": "w652", "tags": { "access": "private", "highway": "service", "name": "Sable River Road" }, - "nodes": ["n185972059", "n185981301"] + "nodes": ["n3791", "n3809"] }, - "w17964176": { - "id": "w17964176", + "w653": { + "id": "w653", "tags": { "highway": "service", "surface": "unpaved" }, - "nodes": ["n185955747", "n185955748", "n185955751", "n185955753", "n185955755"] + "nodes": ["n3549", "n3802", "n3803", "n3800", "n3801"] }, - "w17965838": { - "id": "w17965838", + "w654": { + "id": "w654", "tags": { "access": "private", "highway": "service", "name": "Pine River Road" }, - "nodes": ["n185971405", "n185971407"] + "nodes": ["n3797", "n3805"] }, - "w17965476": { - "id": "w17965476", + "w655": { + "id": "w655", "tags": { "access": "private", "highway": "service", "name": "Raisin River Road" }, - "nodes": ["n185967985", "n185967987"] + "nodes": ["n3799", "n3804"] }, - "w17965913": { - "id": "w17965913", + "w656": { + "id": "w656", "tags": { "access": "private", "highway": "service", "name": "Shiawassee River Road" }, "nodes": [ - "n185972054", - "n1819790677", - "n1819790787", - "n1819790828", - "n1819790724", - "n1819790896", - "n185971565", - "n1819790799", - "n1819790735", - "n185972055", - "n185972057", - "n185971405", - "n185972059", - "n185967985", - "n185972060" + "n3551", + "n3810", + "n3811", + "n3812", + "n3793", + "n3796", + "n3798", + "n3795", + "n3794", + "n3789", + "n3790", + "n3797", + "n3791", + "n3799", + "n3792" ] }, - "w17965854": { - "id": "w17965854", + "w657": { + "id": "w657", "tags": { "access": "private", "highway": "service", "name": "Sturgeon River Road" }, - "nodes": ["n185971565", "n185971570", "n185971572", "n185971574"] + "nodes": ["n3798", "n3806", "n3807", "n3808"] }, - "n1819790528": { - "id": "n1819790528", + "n3813": { + "id": "n3813", "loc": [-85.618483, 41.960025] }, - "n1819790530": { - "id": "n1819790530", + "n3814": { + "id": "n3814", "loc": [-85.616863, 41.960583] }, - "n1819790534": { - "id": "n1819790534", + "n3815": { + "id": "n3815", "loc": [-85.619738, 41.961716] }, - "n1819790541": { - "id": "n1819790541", + "n3816": { + "id": "n3816", "loc": [-85.619888, 41.962083] }, - "n1819790543": { - "id": "n1819790543", + "n3817": { + "id": "n3817", "loc": [-85.619695, 41.96194] }, - "n1819790547": { - "id": "n1819790547", + "n3818": { + "id": "n3818", "loc": [-85.61903, 41.96095] }, - "n1819790555": { - "id": "n1819790555", + "n3819": { + "id": "n3819", "loc": [-85.618047, 41.960979] }, - "n1819790559": { - "id": "n1819790559", + "n3820": { + "id": "n3820", "loc": [-85.620382, 41.960544] }, - "n1819790583": { - "id": "n1819790583", + "n3821": { + "id": "n3821", "loc": [-85.620156, 41.960328] }, - "n1819790590": { - "id": "n1819790590", + "n3822": { + "id": "n3822", "loc": [-85.617045, 41.959889] }, - "n1819790609": { - "id": "n1819790609", + "n3823": { + "id": "n3823", "loc": [-85.617764, 41.959849] }, - "n1819790618": { - "id": "n1819790618", + "n3824": { + "id": "n3824", "loc": [-85.619523, 41.961014] }, - "n1819790642": { - "id": "n1819790642", + "n3825": { + "id": "n3825", "loc": [-85.618118, 41.962793] }, - "n1819790659": { - "id": "n1819790659", + "n3826": { + "id": "n3826", "loc": [-85.617463, 41.962897] }, - "n1819790665": { - "id": "n1819790665", + "n3827": { + "id": "n3827", "loc": [-85.617034, 41.963088] }, - "n1819790674": { - "id": "n1819790674", + "n3828": { + "id": "n3828", "loc": [-85.61947, 41.960192] }, - "n1819790685": { - "id": "n1819790685", + "n3829": { + "id": "n3829", "loc": [-85.620772, 41.961067] }, - "n1819790687": { - "id": "n1819790687", + "n3830": { + "id": "n3830", "loc": [-85.620232, 41.962211] }, - "n1819790697": { - "id": "n1819790697", + "n3831": { + "id": "n3831", "loc": [-85.61845, 41.962466] }, - "n1819790726": { - "id": "n1819790726", + "n3832": { + "id": "n3832", "loc": [-85.617893, 41.962849] }, - "n1819790738": { - "id": "n1819790738", + "n3833": { + "id": "n3833", "loc": [-85.617335, 41.959802] }, - "n1819790762": { - "id": "n1819790762", + "n3834": { + "id": "n3834", "loc": [-85.618622, 41.96091] }, - "n1819790774": { - "id": "n1819790774", + "n3835": { + "id": "n3835", "loc": [-85.617592, 41.960831] }, - "n1819790781": { - "id": "n1819790781", + "n3836": { + "id": "n3836", "loc": [-85.616777, 41.96332] }, - "n1819790796": { - "id": "n1819790796", + "n3837": { + "id": "n3837", "loc": [-85.619856, 41.961461] }, - "n1819790811": { - "id": "n1819790811", + "n3838": { + "id": "n3838", "loc": [-85.620822, 41.962019] }, - "n1819790833": { - "id": "n1819790833", + "n3839": { + "id": "n3839", "loc": [-85.618311, 41.961254] }, - "n1819790854": { - "id": "n1819790854", + "n3840": { + "id": "n3840", "loc": [-85.618365, 41.962642] }, - "n1819790863": { - "id": "n1819790863", + "n3841": { + "id": "n3841", "loc": [-85.6205, 41.960855] }, - "n1819790867": { - "id": "n1819790867", + "n3842": { + "id": "n3842", "loc": [-85.618493, 41.962139] }, - "n1819790877": { - "id": "n1819790877", + "n3843": { + "id": "n3843", "loc": [-85.620693, 41.962115] }, - "n1819790881": { - "id": "n1819790881", + "n3844": { + "id": "n3844", "loc": [-85.617088, 41.960735] }, - "n1819790891": { - "id": "n1819790891", + "n3845": { + "id": "n3845", "loc": [-85.61683, 41.960121] }, - "n1819790898": { - "id": "n1819790898", + "n3846": { + "id": "n3846", "loc": [-85.619813, 41.96123] }, - "n1819790909": { - "id": "n1819790909", + "n3847": { + "id": "n3847", "loc": [-85.616798, 41.960376] }, - "n1819790912": { - "id": "n1819790912", + "n3848": { + "id": "n3848", "loc": [-85.620586, 41.961046] }, - "n1819790552": { - "id": "n1819790552", + "n3849": { + "id": "n3849", "loc": [-85.618054, 41.965554] }, - "n1819790564": { - "id": "n1819790564", + "n3850": { + "id": "n3850", "loc": [-85.618107, 41.965921] }, - "n1819790605": { - "id": "n1819790605", + "n3851": { + "id": "n3851", "loc": [-85.616895, 41.964453] }, - "n1819790625": { - "id": "n1819790625", + "n3852": { + "id": "n3852", "loc": [-85.617292, 41.96462] }, - "n1819790645": { - "id": "n1819790645", + "n3853": { + "id": "n3853", "loc": [-85.617807, 41.965043] }, - "n1819790668": { - "id": "n1819790668", + "n3854": { + "id": "n3854", "loc": [-85.616691, 41.964269] }, - "n1819790718": { - "id": "n1819790718", + "n3855": { + "id": "n3855", "loc": [-85.616541, 41.963687] }, - "n1819790731": { - "id": "n1819790731", + "n3856": { + "id": "n3856", "loc": [-85.616519, 41.963942] }, - "w170843846": { - "id": "w170843846", + "w658": { + "id": "w658", "tags": { "waterway": "river" }, - "nodes": [ - "n1819790555", - "n1819790762", - "n1819790547", - "n1819790618", - "n1819790898", - "n1819790796", - "n1819790534", - "n1819790543", - "n1819790541", - "n1819790687", - "n1819790877", - "n1819790811", - "n1819790670" - ] + "nodes": ["n3819", "n3834", "n3818", "n3824", "n3846", "n3837", "n3815", "n3817", "n3816", "n3830", "n3843", "n3838", "n3609"] }, - "n185955128": { - "id": "n185955128", + "n3857": { + "id": "n3857", "loc": [-85.618937, 41.951943] }, - "n185948818": { - "id": "n185948818", + "n3858": { + "id": "n3858", "loc": [-85.616755, 41.952231] }, - "n185978819": { - "id": "n185978819", + "n3859": { + "id": "n3859", "loc": [-85.616773, 41.954737] }, - "n185978821": { - "id": "n185978821", + "n3860": { + "id": "n3860", "loc": [-85.616699, 41.954742] }, - "n2138420714": { - "id": "n2138420714", + "n3861": { + "id": "n3861", "loc": [-85.61763, 41.951515] }, - "n2138420715": { - "id": "n2138420715", + "n3862": { + "id": "n3862", "loc": [-85.617735, 41.951572] }, - "n2138420716": { - "id": "n2138420716", + "n3863": { + "id": "n3863", "loc": [-85.61929, 41.951573] }, - "n2138420718": { - "id": "n2138420718", + "n3864": { + "id": "n3864", "loc": [-85.617148, 41.951358] }, - "n2138420719": { - "id": "n2138420719", + "n3865": { + "id": "n3865", "loc": [-85.616598, 41.95192] }, - "n2138420720": { - "id": "n2138420720", + "n3866": { + "id": "n3866", "loc": [-85.616572, 41.951992] }, - "n2138420721": { - "id": "n2138420721", + "n3867": { + "id": "n3867", "loc": [-85.616583, 41.952076] }, - "n2138420722": { - "id": "n2138420722", + "n3868": { + "id": "n3868", "loc": [-85.616636, 41.952145] }, - "n2138420723": { - "id": "n2138420723", + "n3869": { + "id": "n3869", "loc": [-85.616916, 41.952279] }, - "n2138420724": { - "id": "n2138420724", + "n3870": { + "id": "n3870", "loc": [-85.617088, 41.952254] }, - "n2138420725": { - "id": "n2138420725", + "n3871": { + "id": "n3871", "loc": [-85.61892, 41.951467] }, - "n2138420726": { - "id": "n2138420726", + "n3872": { + "id": "n3872", "loc": [-85.618035, 41.951473] }, - "n2138420727": { - "id": "n2138420727", + "n3873": { + "id": "n3873", "loc": [-85.618036, 41.951572] }, - "n2138420728": { - "id": "n2138420728", + "n3874": { + "id": "n3874", "loc": [-85.61892, 41.951573] }, - "n2138420744": { - "id": "n2138420744", + "n3875": { + "id": "n3875", "loc": [-85.618919, 41.951957] }, - "n2138420745": { - "id": "n2138420745", + "n3876": { + "id": "n3876", "loc": [-85.619457, 41.952237] }, - "n2138420746": { - "id": "n2138420746", + "n3877": { + "id": "n3877", "loc": [-85.618178, 41.953618] }, - "n2138420747": { - "id": "n2138420747", + "n3878": { + "id": "n3878", "loc": [-85.617658, 41.953366] }, - "n2138420748": { - "id": "n2138420748", + "n3879": { + "id": "n3879", "loc": [-85.617987, 41.953024] }, - "n2138420749": { - "id": "n2138420749", + "n3880": { + "id": "n3880", "loc": [-85.618429, 41.953248] }, - "n2138420750": { - "id": "n2138420750", + "n3881": { + "id": "n3881", "loc": [-85.618554, 41.953119] }, - "n2138420751": { - "id": "n2138420751", + "n3882": { + "id": "n3882", "loc": [-85.618077, 41.952868] }, - "n2138420752": { - "id": "n2138420752", + "n3883": { + "id": "n3883", "loc": [-85.618039, 41.952886] }, - "n2138420753": { - "id": "n2138420753", + "n3884": { + "id": "n3884", "loc": [-85.619375, 41.952169] }, - "n2138420754": { - "id": "n2138420754", + "n3885": { + "id": "n3885", "loc": [-85.618137, 41.953538] }, - "n2138420755": { - "id": "n2138420755", + "n3886": { + "id": "n3886", "loc": [-85.61799, 41.953555] }, - "n2138420756": { - "id": "n2138420756", + "n3887": { + "id": "n3887", "loc": [-85.617729, 41.953423] }, - "n2138420757": { - "id": "n2138420757", + "n3888": { + "id": "n3888", "loc": [-85.618101, 41.953029] }, - "n2138420759": { - "id": "n2138420759", + "n3889": { + "id": "n3889", "loc": [-85.618516, 41.953119] }, - "n2138420760": { - "id": "n2138420760", + "n3890": { + "id": "n3890", "loc": [-85.619132, 41.952042] }, - "n2138420761": { - "id": "n2138420761", + "n3891": { + "id": "n3891", "loc": [-85.618235, 41.952981] }, - "n2138420762": { - "id": "n2138420762", + "n3892": { + "id": "n3892", "loc": [-85.618485, 41.952425] }, - "n2138420763": { - "id": "n2138420763", + "n3893": { + "id": "n3893", "loc": [-85.618676, 41.952519] }, - "n2138420764": { - "id": "n2138420764", + "n3894": { + "id": "n3894", "loc": [-85.618942, 41.952648] }, - "n2138420765": { - "id": "n2138420765", + "n3895": { + "id": "n3895", "loc": [-85.618287, 41.953122] }, - "n2138420766": { - "id": "n2138420766", + "n3896": { + "id": "n3896", "loc": [-85.617914, 41.953516] }, - "n2138420767": { - "id": "n2138420767", + "n3897": { + "id": "n3897", "loc": [-85.617836, 41.953573] }, - "n185948824": { - "id": "n185948824", + "n3898": { + "id": "n3898", "loc": [-85.616567, 41.952971] }, - "n2138420758": { - "id": "n2138420758", + "n3899": { + "id": "n3899", "loc": [-85.618441, 41.953201] }, - "n2138422349": { - "id": "n2138422349", + "n3900": { + "id": "n3900", "loc": [-85.617514, 41.953335] }, - "n2138422350": { - "id": "n2138422350", + "n3901": { + "id": "n3901", "loc": [-85.617187, 41.953168] }, - "n2138422351": { - "id": "n2138422351", + "n3902": { + "id": "n3902", "loc": [-85.61722, 41.953131] }, - "n2138422352": { - "id": "n2138422352", + "n3903": { + "id": "n3903", "loc": [-85.617189, 41.953116] }, - "n2138422353": { - "id": "n2138422353", + "n3904": { + "id": "n3904", "loc": [-85.617173, 41.953128] }, - "n2138422354": { - "id": "n2138422354", + "n3905": { + "id": "n3905", "loc": [-85.616765, 41.952921] }, - "n2138422355": { - "id": "n2138422355", + "n3906": { + "id": "n3906", "loc": [-85.616756, 41.952936] }, - "n2138422356": { - "id": "n2138422356", + "n3907": { + "id": "n3907", "loc": [-85.616477, 41.952791] }, - "n2138422357": { - "id": "n2138422357", + "n3908": { + "id": "n3908", "loc": [-85.616823, 41.952426] }, - "n2138422358": { - "id": "n2138422358", + "n3909": { + "id": "n3909", "loc": [-85.617191, 41.952616] }, - "n2138422359": { - "id": "n2138422359", + "n3910": { + "id": "n3910", "loc": [-85.61724, 41.952559] }, - "n2138422360": { - "id": "n2138422360", + "n3911": { + "id": "n3911", "loc": [-85.61721, 41.952542] }, - "n2138422361": { - "id": "n2138422361", + "n3912": { + "id": "n3912", "loc": [-85.617395, 41.952351] }, - "n2138422362": { - "id": "n2138422362", + "n3913": { + "id": "n3913", "loc": [-85.617426, 41.952368] }, - "n2138422363": { - "id": "n2138422363", + "n3914": { + "id": "n3914", "loc": [-85.617483, 41.952309] }, - "n2138422364": { - "id": "n2138422364", + "n3915": { + "id": "n3915", "loc": [-85.617332, 41.952229] }, - "n2138422365": { - "id": "n2138422365", + "n3916": { + "id": "n3916", "loc": [-85.617451, 41.952102] }, - "n2138422366": { - "id": "n2138422366", + "n3917": { + "id": "n3917", "loc": [-85.617477, 41.952115] }, - "n2138422367": { - "id": "n2138422367", + "n3918": { + "id": "n3918", "loc": [-85.617658, 41.951923] }, - "n2138422368": { - "id": "n2138422368", + "n3919": { + "id": "n3919", "loc": [-85.617634, 41.95191] }, - "n2138422369": { - "id": "n2138422369", + "n3920": { + "id": "n3920", "loc": [-85.617747, 41.951786] }, - "n2138422370": { - "id": "n2138422370", + "n3921": { + "id": "n3921", "loc": [-85.618268, 41.952056] }, - "n2138422371": { - "id": "n2138422371", + "n3922": { + "id": "n3922", "loc": [-85.618211, 41.952122] }, - "n2138422372": { - "id": "n2138422372", + "n3923": { + "id": "n3923", "loc": [-85.618386, 41.95222] }, - "n2138422373": { - "id": "n2138422373", + "n3924": { + "id": "n3924", "loc": [-85.618098, 41.952527] }, - "n2138422374": { - "id": "n2138422374", + "n3925": { + "id": "n3925", "loc": [-85.617916, 41.95243] }, - "n2138422375": { - "id": "n2138422375", + "n3926": { + "id": "n3926", "loc": [-85.617854, 41.952498] }, - "n2138422376": { - "id": "n2138422376", + "n3927": { + "id": "n3927", "loc": [-85.617769, 41.952453] }, - "n2138422377": { - "id": "n2138422377", + "n3928": { + "id": "n3928", "loc": [-85.617472, 41.952776] }, - "n2138422378": { - "id": "n2138422378", + "n3929": { + "id": "n3929", "loc": [-85.617855, 41.952976] }, - "n2138425424": { - "id": "n2138425424", + "n3930": { + "id": "n3930", "loc": [-85.617174, 41.953638] }, - "n2138425425": { - "id": "n2138425425", + "n3931": { + "id": "n3931", "loc": [-85.618016, 41.953578] }, - "n2138425426": { - "id": "n2138425426", + "n3932": { + "id": "n3932", "loc": [-85.618107, 41.953628] }, - "n2138425427": { - "id": "n2138425427", + "n3933": { + "id": "n3933", "loc": [-85.618067, 41.954268] }, - "n2138425428": { - "id": "n2138425428", + "n3934": { + "id": "n3934", "loc": [-85.617864, 41.954263] }, - "n2138425429": { - "id": "n2138425429", + "n3935": { + "id": "n3935", "loc": [-85.61762, 41.954205] }, - "n2138425430": { - "id": "n2138425430", + "n3936": { + "id": "n3936", "loc": [-85.617437, 41.954103] }, - "n2138425431": { - "id": "n2138425431", + "n3937": { + "id": "n3937", "loc": [-85.617294, 41.953978] }, - "n2138425432": { - "id": "n2138425432", + "n3938": { + "id": "n3938", "loc": [-85.617217, 41.95384] }, - "n2138425433": { - "id": "n2138425433", + "n3939": { + "id": "n3939", "loc": [-85.616814, 41.954327] }, - "n2138425434": { - "id": "n2138425434", + "n3940": { + "id": "n3940", "loc": [-85.616778, 41.95381] }, - "n2138425435": { - "id": "n2138425435", + "n3941": { + "id": "n3941", "loc": [-85.616585, 41.953707] }, - "n2138425441": { - "id": "n2138425441", + "n3942": { + "id": "n3942", "loc": [-85.616458, 41.954318] }, - "n2138425442": { - "id": "n2138425442", + "n3943": { + "id": "n3943", "loc": [-85.616643, 41.954345] }, - "n2138425445": { - "id": "n2138425445", + "n3944": { + "id": "n3944", "loc": [-85.618133, 41.951412] }, - "n2138425446": { - "id": "n2138425446", + "n3945": { + "id": "n3945", "loc": [-85.618326, 41.951411] }, - "n2138425447": { - "id": "n2138425447", + "n3946": { + "id": "n3946", "loc": [-85.618503, 41.95141] }, - "n2138425449": { - "id": "n2138425449", + "n3947": { + "id": "n3947", "loc": [-85.618681, 41.951409] }, - "n2138425451": { - "id": "n2138425451", + "n3948": { + "id": "n3948", "loc": [-85.618868, 41.951408] }, - "n2138436008": { - "id": "n2138436008", + "n3949": { + "id": "n3949", "loc": [-85.617047, 41.95136] }, - "n2138436009": { - "id": "n2138436009", + "n3950": { + "id": "n3950", "loc": [-85.616494, 41.951959] }, - "n2138436010": { - "id": "n2138436010", + "n3951": { + "id": "n3951", "loc": [-85.616497, 41.952072] }, - "n2138436011": { - "id": "n2138436011", + "n3952": { + "id": "n3952", "loc": [-85.616565, 41.952165] }, - "n2138436012": { - "id": "n2138436012", + "n3953": { + "id": "n3953", "loc": [-85.616663, 41.952218] }, - "n2138436013": { - "id": "n2138436013", + "n3954": { + "id": "n3954", "loc": [-85.616733, 41.952255] }, - "n2138436014": { - "id": "n2138436014", + "n3955": { + "id": "n3955", "loc": [-85.617238, 41.952512] }, - "n2138439319": { - "id": "n2138439319", + "n3956": { + "id": "n3956", "loc": [-85.617043, 41.952406] }, - "n2138439320": { - "id": "n2138439320", + "n3957": { + "id": "n3957", "loc": [-85.617691, 41.951711] }, - "n2138439321": { - "id": "n2138439321", + "n3958": { + "id": "n3958", "loc": [-85.617773, 41.951679] }, - "n2138439322": { - "id": "n2138439322", + "n3959": { + "id": "n3959", "loc": [-85.619085, 41.951681] }, - "n2138439323": { - "id": "n2138439323", + "n3960": { + "id": "n3960", "loc": [-85.617943, 41.952895] }, - "n2138439324": { - "id": "n2138439324", + "n3961": { + "id": "n3961", "loc": [-85.618039, 41.952938] }, - "n2138439325": { - "id": "n2138439325", + "n3962": { + "id": "n3962", "loc": [-85.61763, 41.95336] }, - "n2138439326": { - "id": "n2138439326", + "n3963": { + "id": "n3963", "loc": [-85.617554, 41.95344] }, - "n2138439327": { - "id": "n2138439327", + "n3964": { + "id": "n3964", "loc": [-85.617381, 41.952366] }, - "n2138439328": { - "id": "n2138439328", + "n3965": { + "id": "n3965", "loc": [-85.617184, 41.952254] }, - "n2138439329": { - "id": "n2138439329", + "n3966": { + "id": "n3966", "loc": [-85.617208, 41.952496] }, - "n2138439330": { - "id": "n2138439330", + "n3967": { + "id": "n3967", "loc": [-85.617124, 41.952581] }, - "n2138439331": { - "id": "n2138439331", + "n3968": { + "id": "n3968", "loc": [-85.618094, 41.952735] }, - "n2138439332": { - "id": "n2138439332", + "n3969": { + "id": "n3969", "loc": [-85.617702, 41.952525] }, - "n2138439333": { - "id": "n2138439333", + "n3970": { + "id": "n3970", "loc": [-85.617554, 41.952686] }, - "n2138439334": { - "id": "n2138439334", + "n3971": { + "id": "n3971", "loc": [-85.617959, 41.952878] }, - "n185948820": { - "id": "n185948820", + "n3972": { + "id": "n3972", "loc": [-85.616325, 41.952701] }, - "n185948822": { - "id": "n185948822", + "n3973": { + "id": "n3973", "loc": [-85.616376, 41.952855] }, - "n185955123": { - "id": "n185955123", + "n3974": { + "id": "n3974", "loc": [-85.61981, 41.951041] }, - "n185958839": { - "id": "n185958839", + "n3975": { + "id": "n3975", "loc": [-85.611651, 41.954761] }, - "n185965033": { - "id": "n185965033", + "n3976": { + "id": "n3976", "loc": [-85.614195, 41.954754] }, - "n185976502": { - "id": "n185976502", + "n3977": { + "id": "n3977", "loc": [-85.617375, 41.947559] }, - "n185976504": { - "id": "n185976504", + "n3978": { + "id": "n3978", "loc": [-85.617416, 41.95108] }, - "n185978828": { - "id": "n185978828", + "n3979": { + "id": "n3979", "loc": [-85.613542, 41.954756] }, - "n185978830": { - "id": "n185978830", + "n3980": { + "id": "n3980", "loc": [-85.610238, 41.954774] }, - "n2138420713": { - "id": "n2138420713", + "n3981": { + "id": "n3981", "loc": [-85.617464, 41.950694] }, - "n2138420717": { - "id": "n2138420717", + "n3982": { + "id": "n3982", "loc": [-85.617303, 41.95129] }, - "n2138420768": { - "id": "n2138420768", + "n3983": { + "id": "n3983", "loc": [-85.61745, 41.950197] }, - "n2138420773": { - "id": "n2138420773", + "n3984": { + "id": "n3984", "loc": [-85.617413, 41.948914] }, - "n2138425436": { - "id": "n2138425436", + "n3985": { + "id": "n3985", "loc": [-85.615915, 41.953804] }, - "n2138425437": { - "id": "n2138425437", + "n3986": { + "id": "n3986", "loc": [-85.615953, 41.953968] }, - "n2138425438": { - "id": "n2138425438", + "n3987": { + "id": "n3987", "loc": [-85.616031, 41.954085] }, - "n2138425439": { - "id": "n2138425439", + "n3988": { + "id": "n3988", "loc": [-85.616135, 41.954181] }, - "n2138425440": { - "id": "n2138425440", + "n3989": { + "id": "n3989", "loc": [-85.616273, 41.954263] }, - "n2138425443": { - "id": "n2138425443", + "n3990": { + "id": "n3990", "loc": [-85.618327, 41.951083] }, - "n2138425444": { - "id": "n2138425444", + "n3991": { + "id": "n3991", "loc": [-85.618135, 41.951084] }, - "n2138425448": { - "id": "n2138425448", + "n3992": { + "id": "n3992", "loc": [-85.618503, 41.951082] }, - "n2138425450": { - "id": "n2138425450", + "n3993": { + "id": "n3993", "loc": [-85.618682, 41.951081] }, - "n2138425452": { - "id": "n2138425452", + "n3994": { + "id": "n3994", "loc": [-85.618864, 41.951082] }, - "n2138435984": { - "id": "n2138435984", + "n3995": { + "id": "n3995", "loc": [-85.616761, 41.950101] }, - "n2138436000": { - "id": "n2138436000", + "n3996": { + "id": "n3996", "loc": [-85.617317, 41.947558] }, - "n2138436001": { - "id": "n2138436001", + "n3997": { + "id": "n3997", "loc": [-85.617336, 41.948883] }, - "n2138436002": { - "id": "n2138436002", + "n3998": { + "id": "n3998", "loc": [-85.616779, 41.949295] }, - "n2138436003": { - "id": "n2138436003", + "n3999": { + "id": "n3999", "loc": [-85.616754, 41.949349] }, - "n2138436004": { - "id": "n2138436004", + "n4000": { + "id": "n4000", "loc": [-85.616765, 41.950913] }, - "n2138436005": { - "id": "n2138436005", + "n4001": { + "id": "n4001", "loc": [-85.616883, 41.951041] }, - "n2138436006": { - "id": "n2138436006", + "n4002": { + "id": "n4002", "loc": [-85.617004, 41.951142] }, - "n2138436007": { - "id": "n2138436007", + "n4003": { + "id": "n4003", "loc": [-85.617062, 41.951248] }, - "n2138436017": { - "id": "n2138436017", + "n4004": { + "id": "n4004", "loc": [-85.616809, 41.949273] }, - "n2138436021": { - "id": "n2138436021", + "n4005": { + "id": "n4005", "loc": [-85.616755, 41.949489] }, - "n2138436023": { - "id": "n2138436023", + "n4006": { + "id": "n4006", "loc": [-85.616759, 41.949971] }, - "n2138436025": { - "id": "n2138436025", + "n4007": { + "id": "n4007", "loc": [-85.616757, 41.949702] }, - "w203838284": { - "id": "w203838284", + "w659": { + "id": "w659", "tags": { "leisure": "pitch", "sport": "baseball" }, - "nodes": [ - "n2138425424", - "n2138425425", - "n2138425426", - "n2138425427", - "n2138425428", - "n2138425429", - "n2138425430", - "n2138425431", - "n2138425432", - "n2138425424" - ] + "nodes": ["n3930", "n3931", "n3932", "n3933", "n3934", "n3935", "n3936", "n3937", "n3938", "n3930"] }, - "w203837928": { - "id": "w203837928", + "w660": { + "id": "w660", "tags": { "highway": "service" }, - "nodes": [ - "n2138420717", - "n2138420718", - "n2138420719", - "n2138420720", - "n2138420721", - "n2138420722", - "n185948818", - "n2138420723", - "n2138420724", - "n2138420715" - ] + "nodes": ["n3982", "n3864", "n3865", "n3866", "n3867", "n3868", "n3858", "n3869", "n3870", "n3862"] }, - "w203839364": { - "id": "w203839364", + "w661": { + "id": "w661", "tags": { "highway": "footway" }, - "nodes": ["n2138439331", "n2138439332"] + "nodes": ["n3968", "n3969"] }, - "w203837932": { - "id": "w203837932", + "w662": { + "id": "w662", "tags": { "amenity": "parking" }, - "nodes": [ - "n2138420744", - "n2138420745", - "n2138420746", - "n2138420747", - "n2138420748", - "n2138420749", - "n2138420750", - "n2138420751", - "n2138420744" - ] + "nodes": ["n3875", "n3876", "n3877", "n3878", "n3879", "n3880", "n3881", "n3882", "n3875"] }, - "w203839362": { - "id": "w203839362", + "w663": { + "id": "w663", "tags": { "highway": "footway" }, - "nodes": ["n2138439327", "n2138439328"] + "nodes": ["n3964", "n3965"] }, - "w203839363": { - "id": "w203839363", + "w664": { + "id": "w664", "tags": { "highway": "footway" }, - "nodes": ["n2138439329", "n2138439330"] + "nodes": ["n3966", "n3967"] }, - "w203837933": { - "id": "w203837933", + "w665": { + "id": "w665", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": [ - "n185955128", - "n2138420760", - "n2138420753", - "n2138420764", - "n2138420759", - "n2138420758", - "n2138420754", - "n2138420755", - "n2138420766", - "n2138420756" - ] + "nodes": ["n3857", "n3890", "n3884", "n3894", "n3889", "n3899", "n3885", "n3886", "n3896", "n3887"] }, - "w203837936": { - "id": "w203837936", + "w666": { + "id": "w666", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2138420765", "n2138420766"] + "nodes": ["n3895", "n3896"] }, - "w17966364": { - "id": "w17966364", + "w667": { + "id": "w667", "tags": { "access": "private", "highway": "service", "name": "Collins Drive" }, - "nodes": [ - "n185961362", - "n185976502", - "n2138420773", - "n2138420768", - "n2138420713", - "n185976504", - "n2138420717", - "n2138420714", - "n2138420715", - "n2138420727", - "n2138420728", - "n2138420716" - ] + "nodes": ["n3274", "n3977", "n3984", "n3983", "n3981", "n3978", "n3982", "n3861", "n3862", "n3873", "n3874", "n3863"] }, - "w203838040": { - "id": "w203838040", + "w668": { + "id": "w668", "tags": { "amenity": "school", "building": "yes", "name": "Three Rivers Middle School" }, "nodes": [ - "n2138422349", - "n2138422350", - "n2138422351", - "n2138422352", - "n2138422353", - "n2138422354", - "n2138422355", - "n2138422356", - "n2138422357", - "n2138439330", - "n2138422358", - "n2138422359", - "n2138422360", - "n2138436014", - "n2138439327", - "n2138422361", - "n2138422362", - "n2138422363", - "n2138422364", - "n2138422365", - "n2138422366", - "n2138422367", - "n2138422368", - "n2138422369", - "n2138422370", - "n2138422371", - "n2138422372", - "n2138422373", - "n2138422374", - "n2138422375", - "n2138422376", - "n2138439332", - "n2138439333", - "n2138422377", - "n2138422378", - "n2138422349" + "n3900", + "n3901", + "n3902", + "n3903", + "n3904", + "n3905", + "n3906", + "n3907", + "n3908", + "n3967", + "n3909", + "n3910", + "n3911", + "n3955", + "n3964", + "n3912", + "n3913", + "n3914", + "n3915", + "n3916", + "n3917", + "n3918", + "n3919", + "n3920", + "n3921", + "n3922", + "n3923", + "n3924", + "n3925", + "n3926", + "n3927", + "n3969", + "n3970", + "n3928", + "n3929", + "n3900" ] }, - "w17964049": { - "id": "w17964049", + "w669": { + "id": "w669", "tags": { "highway": "service" }, - "nodes": ["n185955120", "n185955123", "n2138420716", "n185955128", "n2138420762", "n2138420752", "n2138420761", "n2138420759"] + "nodes": ["n3272", "n3974", "n3863", "n3857", "n3892", "n3883", "n3891", "n3889"] }, - "w41074899": { - "id": "w41074899", + "w670": { + "id": "w670", "tags": { "highway": "secondary", "name": "East Hoffman Street", "ref": "M 60" }, - "nodes": ["n185978817", "n185978819", "n185978821", "n185965033", "n185978828", "n185958839", "n185978830"] + "nodes": ["n3473", "n3859", "n3860", "n3976", "n3979", "n3975", "n3980"] }, - "w203839365": { - "id": "w203839365", + "w671": { + "id": "w671", "tags": { "highway": "footway" }, - "nodes": ["n2138439333", "n2138439334"] + "nodes": ["n3970", "n3971"] }, - "w203837935": { - "id": "w203837935", + "w672": { + "id": "w672", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2138420762", "n2138420763", "n2138420764"] + "nodes": ["n3892", "n3893", "n3894"] }, - "w203838287": { - "id": "w203838287", + "w673": { + "id": "w673", "tags": { "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2138425446", "n2138425447", "n2138425448", "n2138425443", "n2138425446"] + "nodes": ["n3945", "n3946", "n3992", "n3990", "n3945"] }, - "w203837934": { - "id": "w203837934", + "w674": { + "id": "w674", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2138420760", "n2138420763", "n2138420761"] + "nodes": ["n3890", "n3893", "n3891"] }, - "w203838289": { - "id": "w203838289", + "w675": { + "id": "w675", "tags": { "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2138425449", "n2138425451", "n2138425452", "n2138425450", "n2138425449"] + "nodes": ["n3947", "n3948", "n3994", "n3993", "n3947"] }, - "w17963047": { - "id": "w17963047", + "w676": { + "id": "w676", "tags": { "highway": "service" }, - "nodes": ["n185948818", "n2138436013", "n185948820", "n185948822", "n185948824", "n2138439326", "n2138420767", "n2138420766"] + "nodes": ["n3858", "n3954", "n3972", "n3973", "n3898", "n3963", "n3897", "n3896"] }, - "w203839091": { - "id": "w203839091", + "w677": { + "id": "w677", "tags": { "highway": "footway" }, "nodes": [ - "n185976502", - "n2138436000", - "n2138436001", - "n2138436017", - "n2138436002", - "n2138436003", - "n2138436021", - "n2138436025", - "n2138436023", - "n2138435984", - "n2138436004", - "n2138436005", - "n2138436006", - "n2138436007", - "n2138436008", - "n2138436009", - "n2138436010", - "n2138436011", - "n2138436012", - "n2138436013", - "n2138439319", - "n2138439329", - "n2138436014" + "n3977", + "n3996", + "n3997", + "n4004", + "n3998", + "n3999", + "n4005", + "n4007", + "n4006", + "n3995", + "n4000", + "n4001", + "n4002", + "n4003", + "n3949", + "n3950", + "n3951", + "n3952", + "n3953", + "n3954", + "n3956", + "n3966", + "n3955" ] }, - "w204830797": { - "id": "w204830797", + "w678": { + "id": "w678", "tags": { "highway": "service", "service": "parking_aisle" }, - "nodes": ["n2138420756", "n2138420757", "n2138420765", "n2138420758"] + "nodes": ["n3887", "n3888", "n3895", "n3899"] }, - "w203838288": { - "id": "w203838288", + "w679": { + "id": "w679", "tags": { "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2138425447", "n2138425449", "n2138425450", "n2138425448", "n2138425447"] + "nodes": ["n3946", "n3947", "n3993", "n3992", "n3946"] }, - "w203838285": { - "id": "w203838285", + "w680": { + "id": "w680", "tags": { "leisure": "pitch", "sport": "baseball" }, - "nodes": [ - "n2138425433", - "n2138425434", - "n2138425435", - "n2138425436", - "n2138425437", - "n2138425438", - "n2138425439", - "n2138425440", - "n2138425441", - "n2138425442", - "n2138425433" - ] + "nodes": ["n3939", "n3940", "n3941", "n3985", "n3986", "n3987", "n3988", "n3989", "n3942", "n3943", "n3939"] }, - "w203838286": { - "id": "w203838286", + "w681": { + "id": "w681", "tags": { "leisure": "pitch", "sport": "tennis" }, - "nodes": ["n2138425443", "n2138425444", "n2138425445", "n2138425446", "n2138425443"] + "nodes": ["n3990", "n3991", "n3944", "n3945", "n3990"] }, - "w203837929": { - "id": "w203837929", + "w682": { + "id": "w682", "tags": { "amenity": "parking" }, - "nodes": ["n2138420725", "n2138420726", "n2138420727", "n2138420728", "n2138420725"] + "nodes": ["n3871", "n3872", "n3873", "n3874", "n3871"] }, - "w203839361": { - "id": "w203839361", + "w683": { + "id": "w683", "tags": { "highway": "footway" }, - "nodes": [ - "n2138439319", - "n2138439328", - "n2138439320", - "n2138439321", - "n2138439322", - "n2138439331", - "n2138439334", - "n2138439323", - "n2138439324", - "n2138439325", - "n2138439326" - ] + "nodes": ["n3956", "n3965", "n3957", "n3958", "n3959", "n3968", "n3971", "n3960", "n3961", "n3962", "n3963"] }, - "n185988932": { - "id": "n185988932", + "n4008": { + "id": "n4008", "loc": [-85.6159, 41.956336] }, - "n185988934": { - "id": "n185988934", + "n4009": { + "id": "n4009", "loc": [-85.615916, 41.959065] }, - "n185988935": { - "id": "n185988935", + "n4010": { + "id": "n4010", "loc": [-85.615736, 41.959364], "tags": { "highway": "turning_circle" } }, - "w17967743": { - "id": "w17967743", + "w684": { + "id": "w684", "tags": { "access": "private", "highway": "service", "name": "Manistee River Road" }, - "nodes": ["n185971574", "n185988932", "n185971407", "n185981301", "n185967987", "n185988934", "n185988935"] + "nodes": ["n3808", "n4008", "n3805", "n3809", "n3804", "n4009", "n4010"] }, "w1": { "tags": { @@ -14653,70 +13995,70 @@ }, "id": "w1", "nodes": [ - "n1819849058", - "n1819849185", - "n1819849199", - "n1819849053", - "n1819849194", - "n1819849068", - "n1819849146", - "n1819849174", - "n1819848967", - "n1819848932", - "n1819849155", - "n1819849198", - "n1819848964", - "n1819848894", - "n1819848969", - "n1819849184", - "n1819849055", - "n1819849179", - "n1819848865", - "n1819848860", - "n1819849082", - "n1819848966", - "n1819849040", - "n1819849069", - "n1819849078", - "n1819849077", - "n1819848904", - "n1819848959", - "n1819849133", - "n1819849089", - "n1819849000", + "n2187", + "n2209", + "n2215", + "n2184", + "n2212", + "n2190", + "n2202", + "n2206", + "n2175", + "n2167", + "n2203", + "n2214", + "n2173", + "n2163", + "n2176", + "n2208", + "n2185", + "n2207", + "n2161", + "n2160", + "n2195", + "n2174", + "n2182", + "n2191", + "n2194", + "n2193", + "n2165", + "n2172", + "n2201", + "n2197", + "n2178", "n39", - "n1819849124", + "n2199", "n40", - "n1819849032", - "n1819849097", - "n1819848939", - "n1819849072", - "n1819848915", - "n1819849196", - "n1819848946", - "n1819849047", - "n1819849029", - "n1819849164", - "n1819848994", - "n1819849022", - "n1819858513", - "n1819849126", - "n1819849063", - "n1819848941", - "n1819849085", - "n1819848871", - "n1819848943", - "n1819849192", - "n1819858501", - "n1819849159", - "n1819858523", - "n1819848901", - "n1819849189", - "n1819858503", - "n1819849065", + "n2181", + "n2198", + "n2168", + "n2192", + "n2166", + "n2213", + "n2171", + "n2183", + "n2180", + "n2205", + "n2177", + "n2179", + "n2218", + "n2200", + "n2188", + "n2169", + "n2196", + "n2162", + "n2170", + "n2211", + "n2216", + "n2204", + "n2220", + "n2164", + "n2210", + "n2217", + "n2189", "n460", "n453", - "n2139877106" + "n2282" ] }, "w2": { @@ -14726,40 +14068,40 @@ }, "id": "w2", "nodes": [ - "n1819790564", - "n1819790552", - "n1819790645", - "n1819790625", - "n1819790605", - "n1819790668", - "n1819790731", - "n1819790718", - "n1819790781", - "n1819790665", - "n1819790659", - "n1819790726", - "n1819790642", - "n1819790854", - "n1819790697", - "n1819790867", - "n1819790833", - "n1819790555", - "n1819790774", - "n1819790881", - "n1819790530", - "n1819790909", - "n1819790891", - "n1819790590", - "n1819790738", - "n1819790609", - "n1819790528", - "n1819790674", - "n1819790583", - "n1819790559", - "n1819790863", - "n1819790912", - "n1819790685", - "n1819790913" + "n3850", + "n3849", + "n3853", + "n3852", + "n3851", + "n3854", + "n3856", + "n3855", + "n3836", + "n3827", + "n3826", + "n3832", + "n3825", + "n3840", + "n3831", + "n3842", + "n3839", + "n3819", + "n3835", + "n3844", + "n3814", + "n3847", + "n3845", + "n3822", + "n3833", + "n3823", + "n3813", + "n3828", + "n3821", + "n3820", + "n3841", + "n3848", + "n3829", + "n3695" ] }, "n4": { @@ -15851,7 +15193,7 @@ "footway": "sidewalk" }, "id": "w43", - "nodes": ["n2139858980", "n2139858981"] + "nodes": ["n1955", "n1956"] }, "n212": { "id": "n212", @@ -15934,26 +15276,26 @@ }, "id": "w47", "nodes": [ - "n2139870408", - "n2139870417", - "n2139870409", + "n1988", + "n1997", + "n1989", "n25", "n24", - "n2139870410", + "n1990", "n26", - "n2139870411", + "n1991", "n21", - "n2139870412", - "n2139870426", - "n2139870413", + "n1992", + "n2006", + "n1993", "n22", - "n2139870414", + "n1994", "n23", - "n2139870415", - "n2139870419", - "n2139870416", - "n2139870421", - "n2139870408" + "n1995", + "n1999", + "n1996", + "n2001", + "n1988" ] }, "n225": { @@ -16447,7 +15789,7 @@ "n146", "n314", "n315", - "n2139858981" + "n1956" ], "tags": { "highway": "footway", @@ -16464,7 +15806,7 @@ }, "w63": { "id": "w63", - "nodes": ["n2139858980", "n316"], + "nodes": ["n1955", "n316"], "tags": { "highway": "footway", "footway": "sidewalk" @@ -16554,7 +15896,7 @@ }, "w68": { "id": "w68", - "nodes": ["n294", "n2139858931", "n326"], + "nodes": ["n294", "n1952", "n326"], "tags": { "highway": "footway", "footway": "sidewalk" @@ -16732,21 +16074,21 @@ }, "id": "w76", "nodes": [ - "n2139832716", + "n2561", "n359", - "n2139832721", - "n2139832720", + "n2563", + "n2793", "n357", "n356", - "n2139832719", + "n2792", "n355", "n354", - "n2139832718", - "n2139832717", + "n2791", + "n2562", "n353", "n352", "n358", - "n2139832716" + "n2561" ] }, "n352": { @@ -17005,7 +16347,7 @@ }, "w89": { "id": "w89", - "nodes": ["n394", "n185988896"], + "nodes": ["n394", "n2895"], "tags": { "highway": "service" } @@ -17180,7 +16522,7 @@ "tunnel": "building_passage" }, "id": "w93", - "nodes": ["n2139877106", "n1819848930"] + "nodes": ["n2282", "n1876"] }, "w94": { "tags": { @@ -17188,7 +16530,7 @@ "waterway": "river" }, "id": "w94", - "nodes": ["n1819848930", "n885", "n1819848888", "n1820938671"] + "nodes": ["n1876", "n885", "n1875", "n2234"] }, "n425": { "loc": [-85.634425, 41.943552], @@ -17397,7 +16739,7 @@ }, "w103": { "id": "w103", - "nodes": ["n2166205688", "n2130304155", "n471", "n472"], + "nodes": ["n2597", "n2444", "n471", "n472"], "tags": { "highway": "footway" } @@ -18267,21 +17609,21 @@ }, "id": "w137", "nodes": [ - "n1819858522", - "n2139832682", - "n1819858510", - "n1819858520", - "n1819858502", - "n2139832680", - "n185963451", - "n1819858527", + "n2779", + "n2788", + "n2776", + "n2778", + "n2775", + "n2787", + "n2440", + "n2437", "n629", - "n185963452", + "n2438", "n630", - "n185963453", - "n185963454", - "n185963455", - "n185963456" + "n2439", + "n2407", + "n2408", + "n2409" ] }, "n624": { @@ -18290,7 +17632,7 @@ }, "w138": { "id": "w138", - "nodes": ["n1819858522", "n625", "n626", "n627"], + "nodes": ["n2779", "n625", "n626", "n627"], "tags": { "highway": "residential", "name": "Foster Street", @@ -18323,7 +17665,7 @@ }, "w139": { "id": "w139", - "nodes": ["n630", "n631", "n632", "n1819858527"], + "nodes": ["n630", "n631", "n632", "n2437"], "tags": { "highway": "service" } @@ -18358,7 +17700,7 @@ }, "w140": { "id": "w140", - "nodes": ["n643", "n637", "n715", "n185978375"], + "nodes": ["n643", "n637", "n715", "n2410"], "tags": { "highway": "footway", "name": "Mural Mall" @@ -18378,7 +17720,7 @@ }, "w141": { "id": "w141", - "nodes": ["n639", "n2139824799"], + "nodes": ["n639", "n2516"], "tags": { "barrier": "wall" } @@ -18530,7 +17872,7 @@ "oneway": "yes" }, "id": "w146", - "nodes": ["n2189153257", "n662", "n2189153246"] + "nodes": ["n2727", "n662", "n2719"] }, "n668": { "loc": [-85.6358, 41.946243], @@ -18558,7 +17900,7 @@ }, "w147": { "id": "w147", - "nodes": ["n2189153255", "n674"], + "nodes": ["n2725", "n674"], "tags": { "highway": "service", "oneway": "yes" @@ -18609,7 +17951,7 @@ "building": "yes" }, "id": "w148", - "nodes": ["n2139824720", "n2139824713", "n2139824689", "n684", "n2139824702", "n2139824720"] + "nodes": ["n2464", "n2460", "n2454", "n684", "n2455", "n2464"] }, "n684": { "loc": [-85.634132, 41.944741], @@ -18620,7 +17962,7 @@ "building": "yes" }, "id": "w149", - "nodes": ["n2139824705", "n685", "n686", "n687", "n2139824705"] + "nodes": ["n2456", "n685", "n686", "n687", "n2456"] }, "n685": { "loc": [-85.633705, 41.944759], @@ -18894,7 +18236,7 @@ }, "w162": { "id": "w162", - "nodes": ["n727", "n185978377", "n728"], + "nodes": ["n727", "n2411", "n728"], "tags": { "highway": "footway", "footway": "crossing", @@ -18979,7 +18321,7 @@ "highway": "footway" }, "id": "w166", - "nodes": ["n739", "n2139870457", "n2139870458", "n2139870459", "n2139870460", "n1623", "n2139870452"] + "nodes": ["n739", "n2037", "n2038", "n2039", "n2040", "n1623", "n2032"] }, "n739": { "loc": [-85.634939, 41.942165], @@ -19731,7 +19073,7 @@ "name": "Riverwalk Trail" }, "id": "w186", - "nodes": ["n2139858979", "n622", "n2139858980"] + "nodes": ["n1954", "n622", "n1955"] }, "w187": { "tags": { @@ -19741,7 +19083,7 @@ "surface": "wood" }, "id": "w187", - "nodes": ["n621", "n2139858979"] + "nodes": ["n621", "n1954"] }, "w188": { "tags": { @@ -19750,7 +19092,7 @@ "surface": "wood" }, "id": "w188", - "nodes": ["n2139858972", "n2139858973", "n2139858974", "n2139858975", "n2139858976", "n2139858977", "n2139858978", "n621"] + "nodes": ["n2274", "n2275", "n2276", "n2277", "n2278", "n2279", "n1953", "n621"] }, "w189": { "tags": { @@ -19760,7 +19102,7 @@ "incline": "down" }, "id": "w189", - "nodes": ["n2139858971", "n2139858972"] + "nodes": ["n2273", "n2274"] }, "n888": { "loc": [-85.635728, 41.942655], @@ -20011,7 +19353,7 @@ "building": "yes" }, "id": "w196", - "nodes": ["n2139824724", "n918", "n919", "n920", "n2139824724"] + "nodes": ["n2466", "n918", "n919", "n920", "n2466"] }, "n918": { "loc": [-85.633438, 41.944883], @@ -20822,7 +20164,7 @@ "name": "South Constantine Street" }, "id": "w221", - "nodes": ["n185958668", "n185958670", "n185948710", "n185958672"] + "nodes": ["n2080", "n1828", "n1863", "n1829"] }, "n1029": { "id": "n1029", @@ -20834,7 +20176,7 @@ "name": "South Hook Avenue" }, "id": "w222", - "nodes": ["n1029", "n185981481"] + "nodes": ["n1029", "n1644"] }, "n1030": { "id": "n1030", @@ -20846,7 +20188,7 @@ "name": "South Lincoln Avenue" }, "id": "w223", - "nodes": ["n1030", "n185973650"] + "nodes": ["n1030", "n1635"] }, "n1031": { "id": "n1031", @@ -20858,86 +20200,86 @@ "name": "South Grant Avenue" }, "id": "w224", - "nodes": ["n1031", "n185970607"] + "nodes": ["n1031", "n1632"] }, "w225": { "id": "w225", "nodes": [ - "n1819805792", - "n1819805727", - "n2189123379", - "n1819805632", - "n1819805641", - "n1819805760", - "n1819805887", - "n1819805861", - "n1819805722", - "n1819805880", - "n2139982405", - "n2139982399", - "n2139982400", - "n1819805770", - "n2139982402", - "n2139982403", - "n2139982401", - "n1819805780", - "n1819805834", - "n2139982406", - "n1819805698", - "n1819805647", - "n1819805870", - "n1819805683", - "n1819805622", - "n1819805639", - "n1819805858", - "n1819805643", - "n1819805673", - "n1819805925", - "n1819805849", - "n1819805711", - "n1819805846", - "n1819805669", - "n1819805883", - "n1819805814", - "n1819805873", - "n1819805911", - "n1819805690", - "n1819805812", - "n1819805766", - "n1819805802", - "n1819805885", - "n1819805626", - "n1819805842", - "n1819805715", - "n1819805694", - "n1819805618", - "n1819805629", - "n1819805731", - "n1819805636", - "n1819805878", - "n1819805718", - "n1819805798", - "n1819849057", - "n1819805666", - "n1819805852", - "n1819805805", - "n1819805789", - "n1819805868", - "n1819805680", - "n1819805918", - "n1819848888", - "n1819805762", - "n2139989328", - "n1819805907", - "n2139989330", - "n1819805915", - "n1819858521", - "n1819805854", - "n1819805876", - "n1819805864", - "n1819805922", - "n1819805614", - "n1819805792" + "n2134", + "n2127", + "n2313", + "n2109", + "n2112", + "n2129", + "n2156", + "n2146", + "n2126", + "n2153", + "n2288", + "n2283", + "n2284", + "n2131", + "n2286", + "n2287", + "n2285", + "n2132", + "n2140", + "n2289", + "n2122", + "n2114", + "n2149", + "n2119", + "n2106", + "n2111", + "n2145", + "n2113", + "n2117", + "n2159", + "n2143", + "n2123", + "n2142", + "n2116", + "n2154", + "n2139", + "n2150", + "n2157", + "n2120", + "n2138", + "n2130", + "n2136", + "n2155", + "n2107", + "n2141", + "n2124", + "n2121", + "n2105", + "n2108", + "n2128", + "n2110", + "n2152", + "n2125", + "n2135", + "n2186", + "n2115", + "n2144", + "n2137", + "n2133", + "n2148", + "n2118", + "n1871", + "n1875", + "n1872", + "n2041", + "n1873", + "n2042", + "n1874", + "n1884", + "n1870", + "n2151", + "n2147", + "n2158", + "n2104", + "n2134" ] }, "r2": { @@ -20959,29 +20301,29 @@ }, "id": "w226", "nodes": [ - "n2139858904", - "n2139858995", - "n2139858905", - "n2139858906", - "n2139858907", - "n2139858908", - "n2139858909", - "n2139858910", - "n2139858911", - "n2139858912", - "n2139858913", - "n2139858914", - "n2139858915", - "n2139858916", - "n2139858917", - "n2139858918", - "n2139858919", - "n2139858920", - "n2139858921", - "n2139858922", - "n2139858923", - "n2139858924", - "n2139858925" + "n2243", + "n2280", + "n2244", + "n2245", + "n2246", + "n2247", + "n1931", + "n1932", + "n1933", + "n1934", + "n1935", + "n1936", + "n1937", + "n1938", + "n1939", + "n1940", + "n1941", + "n1942", + "n1943", + "n1944", + "n1945", + "n1946", + "n1947" ] }, "w227": { @@ -20992,7 +20334,7 @@ "ref": "M 86" }, "id": "w227", - "nodes": ["n185963698", "n185952745", "n185947850", "n185977762"] + "nodes": ["n2994", "n3012", "n3011", "n2958"] }, "w228": { "tags": { @@ -21003,28 +20345,28 @@ }, "id": "w228", "nodes": [ - "n185961396", - "n185978394", - "n185971631", - "n185960796", - "n185978392", - "n185974583", - "n185978390", - "n185971578", - "n185965289", - "n2189153215", + "n2747", + "n2762", + "n2757", + "n2746", + "n2761", + "n2758", + "n2760", + "n2755", + "n2749", + "n2691", "n1028", - "n185978388", - "n185978383", - "n185978381", - "n185978379", - "n185978377", - "n185978375", + "n2432", + "n2414", + "n2413", + "n2412", + "n2411", + "n2410", "n720", "n726", "n370", "n368", - "n185964982" + "n2748" ] }, "w229": { @@ -21033,21 +20375,7 @@ "railway": "rail" }, "id": "w229", - "nodes": [ - "n185972885", - "n1475293260", - "n1475293240", - "n185972891", - "n185972895", - "n185972897", - "n185972899", - "n2130304159", - "n471", - "n324", - "n1475284023", - "n332", - "n185972903" - ] + "nodes": ["n2083", "n2103", "n2102", "n2084", "n2085", "n2086", "n2087", "n2242", "n471", "n324", "n2101", "n332", "n1868"] }, "n1032": { "loc": [-85.630957, 41.960953], @@ -21064,30 +20392,30 @@ }, "id": "w230", "nodes": [ - "n1820938505", - "n1820938916", - "n1820938374", - "n1820938329", - "n1820937790", - "n1820939735", - "n1820938930", - "n1820937995", + "n2232", + "n2236", + "n2231", + "n2230", + "n2226", + "n2241", + "n2237", + "n2227", "n1182", - "n1820938512", - "n1820938130", - "n1820938194", + "n2233", + "n2228", + "n2229", "n1183", - "n1820938671", + "n2234", "n19", - "n1820938802", + "n1891", "n20", - "n1820937542", - "n1820937602", - "n1820939069", - "n1820938901", - "n1820939654", - "n1820937727", - "n1820939569" + "n2223", + "n2224", + "n2238", + "n2235", + "n2240", + "n2225", + "n2239" ] }, "n7": { @@ -21566,20 +20894,20 @@ "n1102", "n835", "n30", - "n2140006433", + "n2590", "n35", "n29", - "n2140006435", + "n2591", "n34", "n28", - "n2140006436", - "n2140006437", + "n2592", + "n2312", "n32", - "n2140006438", + "n2593", "n31", "n33", - "n2140006439", - "n2140006440", + "n2594", + "n2595", "n1102" ] }, @@ -21934,7 +21262,7 @@ }, "w260": { "id": "w260", - "nodes": ["n1162", "n1163", "n1164", "n1165", "n1166", "n1167", "n1168", "n1169", "n1170", "n2139832636"], + "nodes": ["n1162", "n1163", "n1164", "n1165", "n1166", "n1167", "n1168", "n1169", "n1170", "n2528"], "tags": { "highway": "footway" } @@ -22054,62 +21382,62 @@ }, "id": "w263", "nodes": [ - "n2139858925", + "n1947", "n1184", - "n2139858926", + "n1948", "n1185", - "n2139858927", - "n2139858982", - "n2139858928", + "n1949", + "n1957", + "n1950", "n480", - "n2139858929", + "n1951", "n479", "n478", "n477", - "n2139858931", - "n2139858932", - "n2139858981", - "n2139858933", + "n1952", + "n1851", + "n1956", + "n2248", "n619", "n618", - "n2139858934", - "n2139858935", - "n2139858936", + "n2249", + "n2250", + "n2251", "n617", - "n2139858937", + "n2252", "n616", - "n2139858938", + "n2253", "n829", - "n2139858939", + "n2254", "n827", "n828", - "n2139858940", + "n2255", "n830", - "n2139858941", + "n2256", "n826", - "n2139858942", + "n2257", "n831", - "n2139858943", + "n2258", "n832", "n835", "n834", - "n2140006437", - "n2139858964", - "n2139858944", + "n2312", + "n2267", + "n2259", "n833", - "n2139858966", - "n2139858945", + "n2268", + "n2260", "n836", - "n2139858946", + "n2261", "n837", - "n2139858947", + "n2262", "n838", - "n2139858948", - "n2139858949", + "n2263", + "n2264", "n839", - "n2139858950", + "n2265", "n840", - "n2139858951" + "n2266" ] }, "n1186": { @@ -24456,7 +23784,7 @@ "shelter_type": "picnic_shelter" }, "id": "w333", - "nodes": ["n2139870438", "n1626", "n1627", "n2139870437", "n2139870438"] + "nodes": ["n2018", "n1626", "n1627", "n2017", "n2018"] }, "n1626": { "loc": [-85.634791, 41.942011], @@ -24593,7 +23921,7 @@ "highway": "service" }, "id": "w334", - "nodes": ["n2", "n3", "n185978790"] + "nodes": ["n2", "n3", "n2764"] }, "n3": { "loc": [-85.627345, 41.953983], @@ -24623,7 +23951,7 @@ "name": "Morris Avenue" }, "id": "w336", - "nodes": ["n185961391", "n185961396"] + "nodes": ["n3198", "n2747"] }, "n1629": { "loc": [-85.629076, 41.954689], @@ -24631,7 +23959,7 @@ }, "w337": { "id": "w337", - "nodes": ["n1629", "n185980737"], + "nodes": ["n1629", "n3504"], "tags": { "highway": "service", "service": "alley", diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 353a247ed..8e8e62334 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -1,4 +1,5 @@ import * as d3 from 'd3'; +import _ from 'lodash'; import { t, textDirection } from '../../util/locale'; import { localNames } from './helper'; diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index cdf9546b6..ece82a063 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -11,7 +11,7 @@ export function uiIntroLine(context, reveal) { midpoint = [-85.62975395449628, 41.95787501510204], start = [-85.6297754121684, 41.95805253325314], intersection = [-85.62974496187628, 41.95742515554585], - targetId = 'w17965351', + targetId = 'w646', lineId = null; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 74ce8504e..8b91c3689 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -6,7 +6,7 @@ import { icon, pointBox } from './helper'; export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), - hallId = 'n2140018997', + hallId = 'n2061', timeouts = []; @@ -94,7 +94,7 @@ export function uiIntroNavigation(context, reveal) { function selectedTownHall() { if (!isTownHallSelected()) return clickTownHall(); - var hall = context.entity('n2140018997'); + var hall = context.entity(hallId); var box = pointBox(hall.loc, context); var advance = function() { continueTo(inspectTownHall); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 4f4331671..2e1dbce09 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -7,7 +7,8 @@ import { icon, pointBox, pad } from './helper'; export function uiIntroPoint(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], - corner = [-85.632481, 41.944094], + intersection = [-85.63279, 41.94394], + building = [-85.632422, 41.944045], pointId = null; @@ -56,11 +57,11 @@ export function uiIntroPoint(context, reveal) { return chapter.restart(); } - var pointBox = pad(corner, 150, context); + var pointBox = pad(building, 150, context); reveal(pointBox, t('intro.points.place')); context.map().on('move.intro drawn.intro', function() { - pointBox = pad(corner, 150, context); + pointBox = pad(building, 150, context); reveal(pointBox, t('intro.points.place'), { duration: 0 }); }); @@ -367,7 +368,7 @@ export function uiIntroPoint(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - context.map().zoom(19).centerEase([-85.63279, 41.94394]); + context.map().zoom(19).centerEase(intersection); addPoint(); }; From bea7f3c51037da0ec56262e602370b18a55b7bc2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 14:09:59 -0400 Subject: [PATCH 51/91] export lodash (to help with debugging) --- modules/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/index.js b/modules/index.js index 1151760f5..9277223f4 100644 --- a/modules/index.js +++ b/modules/index.js @@ -40,6 +40,7 @@ export { utilDetect as Detect } from './util/detect'; export var debug = false; import * as d3 from 'd3'; +import * as _ from 'lodash'; import * as lib from './lib/index'; -export { d3, lib }; +export { d3, _, lib }; From 912d565fc319c41565ed45802fb14818aa000709 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 14:13:46 -0400 Subject: [PATCH 52/91] Update walkthrough name localization, no more hardcoded osmids --- modules/ui/intro/helper.js | 101 +++++++++++++++++++------------------ modules/ui/intro/intro.js | 12 ++--- 2 files changed, 57 insertions(+), 56 deletions(-) diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 8a7496fa7..eeef881e3 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -1,3 +1,5 @@ +import { t } from '../../util/locale'; + export function pointBox(loc, context) { var rect = context.surfaceRect(); var point = context.curtainProjection(loc); @@ -38,52 +40,55 @@ export function icon(name, svgklass) { } -export var localNames = { - w17967809: 'azaleamum_drive', - n2140018997: 'city_hall', - w17965998: 'conrail_rr', - w134150845: 'conrail_rr', - w134150802: 'e_michigan_ave', - w134150836: 'e_michigan_ave', - w41074896: 'e_michigan_ave', - w17967444: 'east_st', - w17965502: 'elm_st', - n367813436: 'fire_department', - n354031352: 'first_baptist_church', - w17965351: 'flower_st', - w17964996: 'foster_st', - w203988286: 'memory_isle_park', - w17966942: 'millard_st', - w17964793: 'morris_ave', - w17967397: 'n_andrews_st', - w17967326: 'n_constantine_st', - w143497377: 'n_main_st', - w203049587: 'petting_zoo', - w17966984: 'portage_ave', - w170848330: 'portage_river', - w17967752: 'railroad_dr', - w203972937: 'riverwalk_trail', - w203972938: 'riverwalk_trail', - w203972940: 'riverwalk_trail', - w170848823: 'rocky_river', - w170848824: 'rocky_river', - w170848331: 'rocky_river', - w17967315: 's_andrews_st', - w17966400: 's_constantine_st', - w17964497: 's_constantine_st', - w134150801: 's_main_st', - w134150830: 's_main_st', - w17966462: 's_main_st', - w203986457: 'scidmore_park', - w17966102: 'south_st', - w17965834: 'spring_st', - w170989131: 'st_joseph_river', - w41785752: 'w_michigan_ave', - w134150789: 'w_michigan_ave', - w134150795: 'w_michigan_ave', - w134150800: 'w_michigan_ave', - w134150811: 'w_michigan_ave', - w17965402: 'walnut_st', - w17967734: 'water_st' -}; +function slugify(text) { + return text.toString().toLowerCase() + .replace(/\s+/g, '-') // Replace spaces with - + .replace(/[^\w\-]+/g, '') // Remove all non-word chars + .replace(/\-\-+/g, '-') // Replace multiple - with single - + .replace(/^-+/, '') // Trim - from start of text + .replace(/-+$/, ''); // Trim - from end of text +} + + +export var missingStrings = {}; +function checkKey(key, text) { + if (t(key, { default: undefined}) === undefined) { + if (missingStrings.hasOwnProperty(key)) return; // warn once + missingStrings[key] = text; + var missing = key + ': ' + text; + if (typeof console !== 'undefined') console.log(missing); // eslint-disable-line + } +} + + +export function localize(obj) { + var key; + + var name = obj.tags && obj.tags.name; + if (name) { + key = 'intro.graph.name.' + slugify(name); + obj.tags.name = t(key, { default: name }); + checkKey(key, name); + } + var city = obj.tags && obj.tags['addr:city']; + if (city) { + key = 'intro.graph.city'; + obj.tags['addr:city'] = t(key, { default: city }); + checkKey(key, city); + } + var state = obj.tags && obj.tags['addr:state']; + if (state) { + key = 'intro.graph.state'; + obj.tags['addr:state'] = t(key, { default: state }); + checkKey(key, state); + } + var postcode = obj.tags && obj.tags['addr:postcode']; + if (postcode) { + key = 'intro.graph.postcode'; + obj.tags['addr:postcode'] = t(key, { default: postcode }); + checkKey(key, postcode); + } + + return obj; +} diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index 8e8e62334..e9215a31c 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -1,7 +1,6 @@ import * as d3 from 'd3'; -import _ from 'lodash'; import { t, textDirection } from '../../util/locale'; -import { localNames } from './helper'; +import { localize } from './helper'; import { coreGraph } from '../../core/graph'; import { dataIntroGraph } from '../../../data/intro_graph.json'; @@ -44,13 +43,10 @@ export function uiIntro(context) { var introGraph = {}, currChapter; + // create entities for intro graph and localize names - for (var key in dataIntroGraph) { - introGraph[key] = osmEntity(dataIntroGraph[key]); - var name = localNames[key] && t('intro.graph.' + localNames[key]); - if (name) { - introGraph[key].tags.name = name; - } + for (var id in dataIntroGraph) { + introGraph[id] = osmEntity(localize(dataIntroGraph[id])); } From 500dbfa0540c1c0327c18e4cb2daf91a448f1445 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 17:01:19 -0400 Subject: [PATCH 53/91] Remove road routes, update names, make all lanes localizable --- data/core.yaml | 146 +- data/intro_graph.json | 2456 +++++++------------------------- dist/locales/en.json | 149 +- modules/ui/intro/line.js | 10 +- modules/ui/intro/navigation.js | 6 +- 5 files changed, 791 insertions(+), 1976 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 78437166b..c5f526039 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -780,38 +780,120 @@ en: done: done ok: OK graph: - azaleamum_drive: Azaleamum Drive - city_hall: Three Rivers City Hall - conrail_rr: Conrail Railroad - e_michigan_ave: East Michigan Avenue - east_st: East Street - elm_st: Elm Street - fire_department: Three Rivers Fire Department - first_baptist_church: First Baptist Church - flower_st: Flower Street - foster_st: Foster Street - memory_isle_park: Memory Isle Park - millard_st: Millard Street - morris_ave: Morris Avenue - n_andrews_st: North Andrews Street - n_constantine_st: North Constantine Street - n_main_st: North Main Street - petting_zoo: Scidmore Park Petting Zoo - portage_ave: Portage Avenue - portage_river: Portage River - railroad_dr: Railroad Drive - riverwalk_trail: Riverwalk Trail - rocky_river: Rocky River - s_andrews_st: South Andrews Street - s_constantine_st: South Constantine Street - s_main_st: South Main Street - scidmore_park: Scidmore Park - south_st: South Street - spring_st: Spring Street - st_joseph_river: Saint Joseph River - w_michigan_ave: West Michigan Avenue - walnut_st: Walnut Street - water_st: Water Street + city: Three Rivers + state: MI + postcode: "49093" + name: + 1st-avenue: 1st Avenue + 2nd-avenue: 2nd Avenue + 4th-avenue: 4th Avenue + 5th-avenue: 5th Avenue + 6th-avenue: 6th Avenue + 6th-street: 6th Street + 7th-avenue: 7th Avenue + 8th-avenue: 8th Avenue + 9th-avenue: 9th Avenue + 10th-avenue: 10th Avenue + 11th-avenue: 11th Avenue + access-point-employment: Access Point Employment + adams-street: Adams Street + andrews-elementary-school: Andrews Elementary School + andrews-street: Andrews Street + armitage-street: Armitage Street + barrows-school: Barrows School + battle-street: Battle Street + bennett-street: Bennett Street + bowman-park: Bowman Park + collins-drive: Collins Drive + conrail-railroad: Conrail Railroad + conservation-park: Conservation Park + constantine-street: Constantine Street + cushman-street: Cushman Street + dollar-tree: Dollar Tree + douglas-avenue: Douglas Avenue + east-street: East Street + elm-street: Elm Street + flower-street: Flower Street + foster-street: Foster Street + french-street: French Street + garden-street: Garden Street + gem-pawnbroker: Gem Pawnbroker + golden-finch-framing: Golden Finch Framing + grant-avenue: Grant Avenue + hoffman-pond: Hoffman Pond + hoffman-street: Hoffman Street + hook-avenue: Hook Avenue + jefferson-street: Jefferson Street + kelsey-street: Kelsey Street + lafayette-park: LaFayette Park + las-coffee-cafe: L.A.'s Coffee Cafe + lincoln-avenue: Lincoln Avenue + lowrys-books: Lowry's Books + lynns-garage: Lynn's Garage + main-street-barbell: Main Street Barbell + main-street-cafe: Main Street Cafe + main-street-fitness: Main Street Fitness + main-street: Main Street + maple-street: Maple Street + marina-park: Marina Park + market-street: Market Street + memory-isle-park: Memory Isle Park + memory-isle: Memory Isle + michigan-avenue: Michigan Avenue + middle-street: Middle Street + millard-street: Millard Street + moore-street: Moore Street + morris-avenue: Morris Avenue + mural-mall: Mural Mall + paisanos-bar-and-grill: Paisano's Bar and Grill + paisley-emporium: Paisley Emporium + paparazzi-tattoo: Paparazzi Tattoo + pealer-street: Pealer Street + pine-river-road: Pine River Road + pine-street: Pine Street + pizza-hut: Pizza Hut + portage-avenue: Portage Avenue + portage-river: Portage River + preferred-insurance-services: Preferred Insurance Services + railroad-drive: Railroad Drive + raisin-river-road: Raisin River Road + river-city-appliance: River City Appliance + river-drive: River Drive + river-road: River Road + river-street: River Street + riverside-cemetery: Riverside Cemetery + riverwalk-trail: Riverwalk Trail + riviera-theatre: Riviera Theatre + rocky-river: Rocky River + sable-river-road: Sable River Road + saint-joseph-river: Saint Joseph River + scidmore-park-petting-zoo: Scidmore Park Petting Zoo + scidmore-park: Scidmore Park + scouter-park: Scouter Park + sherwin-williams: Sherwin-Williams + shiawassee-river-road: Shiawassee River Road + south-street: South Street + southern-michigan-bank: Southern Michigan Bank + spring-street: Spring Street + sturgeon-river-road: Sturgeon River Road + three-rivers-city-hall: Three Rivers City Hall + three-rivers-elementary-school: Three Rivers Elementary School + three-rivers-fire-department: Three Rivers Fire Department + three-rivers-high-school: Three Rivers High School + three-rivers-middle-school: Three Rivers Middle School + three-rivers-post-office: Three Rivers Post Office + three-rivers-public-library: Three Rivers Public Library + three-rivers: Three Rivers + unique-jewelry: Unique Jewelry + walnut-street: Walnut Street + washington-street: Washington Street + water-street: Water Street + west-street: West Street + wheeler-street: Wheeler Street + william-towing: William Towing + willow-drive: Willow Drive + wood-street: Wood Street + world-fare: World Fare welcome: title: "Welcome" welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." diff --git a/data/intro_graph.json b/data/intro_graph.json index 4c48f0c8d..f7667dd28 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -8,29 +8,17 @@ "id": "n1631", "loc": [-85.639455, 41.94261] }, - "n1632": { - "id": "n1632", - "loc": [-85.641094, 41.94006] - }, "n1633": { "id": "n1633", "loc": [-85.641825, 41.941316] }, - "n1634": { - "id": "n1634", - "loc": [-85.641838, 41.941556] - }, - "n1635": { - "id": "n1635", - "loc": [-85.639932, 41.940067] - }, "n1636": { "id": "n1636", "loc": [-85.640639, 41.941326] }, "n1637": { "id": "n1637", - "loc": [-85.640612, 41.940066] + "loc": [-85.640611, 41.940037] }, "n1638": { "id": "n1638", @@ -38,11 +26,7 @@ }, "n1639": { "id": "n1639", - "loc": [-85.643071, 41.941288] - }, - "n1640": { - "id": "n1640", - "loc": [-85.642213, 41.940043] + "loc": [-85.643078, 41.941293] }, "n1641": { "id": "n1641", @@ -50,19 +34,15 @@ }, "n1642": { "id": "n1642", - "loc": [-85.643103, 41.942575] + "loc": [-85.643097, 41.942575] }, "n1643": { "id": "n1643", - "loc": [-85.641875, 41.942586] - }, - "n1644": { - "id": "n1644", - "loc": [-85.638673, 41.940083] + "loc": [-85.641855, 41.942586] }, "n1645": { "id": "n1645", - "loc": [-85.639362, 41.940072] + "loc": [-85.639362, 41.940051] }, "n1646": { "id": "n1646", @@ -118,15 +98,15 @@ }, "n1659": { "id": "n1659", - "loc": [-85.641955, 41.941096] + "loc": [-85.641962, 41.94109] }, "n1660": { "id": "n1660", - "loc": [-85.642758, 41.941088] + "loc": [-85.642753, 41.941084] }, "n1661": { "id": "n1661", - "loc": [-85.642754, 41.941005] + "loc": [-85.642752, 41.941004] }, "n1662": { "id": "n1662", @@ -134,19 +114,19 @@ }, "n1663": { "id": "n1663", - "loc": [-85.642799, 41.940734] + "loc": [-85.642803, 41.940731] }, "n1664": { "id": "n1664", - "loc": [-85.642738, 41.940734] + "loc": [-85.642741, 41.940732] }, "n1665": { "id": "n1665", - "loc": [-85.642742, 41.940644] + "loc": [-85.64274, 41.940645] }, "n1666": { "id": "n1666", - "loc": [-85.641952, 41.940648] + "loc": [-85.641957, 41.940651] }, "n1667": { "id": "n1667", @@ -174,7 +154,7 @@ }, "n1673": { "id": "n1673", - "loc": [-85.64307, 41.941173] + "loc": [-85.643074, 41.941173] }, "n1674": { "id": "n1674", @@ -186,7 +166,7 @@ }, "n1676": { "id": "n1676", - "loc": [-85.643062, 41.940552] + "loc": [-85.643065, 41.940552] }, "n1677": { "id": "n1677", @@ -214,15 +194,7 @@ }, "n1683": { "id": "n1683", - "loc": [-85.64278, 41.941294] - }, - "n1684": { - "id": "n1684", - "loc": [-85.64277, 41.941178] - }, - "n1685": { - "id": "n1685", - "loc": [-85.642732, 41.941157] + "loc": [-85.642776, 41.941302] }, "n1686": { "id": "n1686", @@ -622,27 +594,27 @@ }, "n1785": { "id": "n1785", - "loc": [-85.643254, 41.941847] + "loc": [-85.643235, 41.941833] }, "n1786": { "id": "n1786", - "loc": [-85.643394, 41.94186] + "loc": [-85.64335, 41.941842] }, "n1787": { "id": "n1787", - "loc": [-85.643483, 41.941899] + "loc": [-85.643504, 41.941903] }, "n1788": { "id": "n1788", - "loc": [-85.643568, 41.941977] + "loc": [-85.643554, 41.941946] }, "n1789": { "id": "n1789", - "loc": [-85.643599, 41.942028] + "loc": [-85.643618, 41.942015] }, "n1790": { "id": "n1790", - "loc": [-85.643438, 41.941957] + "loc": [-85.64346, 41.941971] }, "n1791": { "id": "n1791", @@ -666,11 +638,7 @@ }, "n1796": { "id": "n1796", - "loc": [-85.643386, 41.942079] - }, - "n1797": { - "id": "n1797", - "loc": [-85.643377, 41.942031] + "loc": [-85.643398, 41.942031] }, "n1798": { "id": "n1798", @@ -710,7 +678,7 @@ }, "n1807": { "id": "n1807", - "loc": [-85.643524, 41.942144] + "loc": [-85.643522, 41.942125] }, "n1808": { "id": "n1808", @@ -718,15 +686,11 @@ }, "n1809": { "id": "n1809", - "loc": [-85.643353, 41.941927] + "loc": [-85.643346, 41.941924] }, "n1810": { "id": "n1810", - "loc": [-85.643254, 41.941919] - }, - "n1811": { - "id": "n1811", - "loc": [-85.643087, 41.94192] + "loc": [-85.643086, 41.94192] }, "n1812": { "id": "n1812", @@ -734,7 +698,7 @@ }, "n1813": { "id": "n1813", - "loc": [-85.643297, 41.941922] + "loc": [-85.643295, 41.941919] }, "n1814": { "id": "n1814", @@ -750,7 +714,7 @@ }, "n1817": { "id": "n1817", - "loc": [-85.643613, 41.942267] + "loc": [-85.643608, 41.942271] }, "n1818": { "id": "n1818", @@ -786,7 +750,7 @@ }, "n1826": { "id": "n1826", - "loc": [-85.636968, 41.940108] + "loc": [-85.636967, 41.940078] }, "n1827": { "id": "n1827", @@ -794,16 +758,12 @@ }, "n1828": { "id": "n1828", - "loc": [-85.637255, 41.940106] + "loc": [-85.637254, 41.940075] }, "n1829": { "id": "n1829", "loc": [-85.637002, 41.941355] }, - "n1830": { - "id": "n1830", - "loc": [-85.634992, 41.940118] - }, "n1831": { "id": "n1831", "loc": [-85.638235, 41.942615] @@ -828,21 +788,13 @@ "id": "n1835", "loc": [-85.634873, 41.943044] }, - "n1836": { - "id": "n1836", - "loc": [-85.641946, 41.946413] - }, - "n1837": { - "id": "n1837", - "loc": [-85.643157, 41.946389] - }, "n1838": { "id": "n1838", - "loc": [-85.641889, 41.943851] + "loc": [-85.641885, 41.943851] }, "n1839": { "id": "n1839", - "loc": [-85.641922, 41.945121] + "loc": [-85.641915, 41.945121] }, "n1840": { "id": "n1840", @@ -854,7 +806,7 @@ }, "n1842": { "id": "n1842", - "loc": [-85.635769, 41.940122] + "loc": [-85.635768, 41.940092] }, "n1843": { "id": "n1843", @@ -866,23 +818,19 @@ }, "n1845": { "id": "n1845", - "loc": [-85.643139, 41.945103] + "loc": [-85.643137, 41.945103] }, "n1846": { "id": "n1846", - "loc": [-85.638194, 41.940094] + "loc": [-85.638193, 41.940065] }, "n1847": { "id": "n1847", "loc": [-85.640688, 41.943861] }, - "n1848": { - "id": "n1848", - "loc": [-85.640734, 41.945887] - }, "n1849": { "id": "n1849", - "loc": [-85.643121, 41.943841] + "loc": [-85.643117, 41.943841] }, "n1850": { "id": "n1850", @@ -941,7 +889,7 @@ "highway": "service", "service": "parking_aisle" }, - "nodes": ["n1813", "n1814", "n1815", "n1816", "n1817"] + "nodes": ["n1813", "n1635", "n1814", "n1634", "n1815", "n1632", "n1816", "n1817"] }, "w339": { "id": "w339", @@ -949,7 +897,7 @@ "highway": "residential", "name": "Millard Street" }, - "nodes": ["n1827", "n1830", "n1842", "n1826", "n1828", "n1846", "n1644", "n1645", "n1635", "n1637", "n1632", "n1640", "n1641"] + "nodes": ["n1827", "n1842", "n1826", "n1828", "n1846", "n1645", "n1637", "n1641"] }, "w340": { "id": "w340", @@ -999,22 +947,20 @@ "id": "w346", "tags": { "highway": "residential", - "name": "South Douglas Avenue" + "name": "Douglas Avenue" }, - "nodes": ["n1641", "n1676", "n1673", "n1639", "n1811", "n1642"] + "nodes": ["n1641", "n1676", "n1673", "n1639", "n1810", "n1642", "n1849", "n1845"] }, "w347": { "id": "w347", "tags": { "highway": "primary", - "name": "West Michigan Avenue", - "old_ref": "US 131", - "ref": "US 131 Business;M 60", - "access": "yes" + "name": "Michigan Avenue" }, "nodes": [ "n1642", "n1643", + "n1031", "n1630", "n845", "n1631", @@ -1076,9 +1022,9 @@ "id": "w353", "tags": { "highway": "residential", - "name": "South Lincoln Avenue" + "name": "Lincoln Avenue" }, - "nodes": ["n1637", "n1636", "n1630"] + "nodes": ["n1637", "n1636", "n1029", "n1630"] }, "w354": { "id": "w354", @@ -1098,7 +1044,7 @@ "id": "w356", "tags": { "highway": "residential", - "name": "North Hook Avenue" + "name": "Hook Avenue" }, "nodes": ["n1631", "n1840", "n1841"] }, @@ -1140,25 +1086,29 @@ "n1859", "n1860", "n1804", + "n1640", "n1805", "n1817", "n1806", + "n1644", + "n1811", "n1807", "n1808", + "n3419", "n1812", "n1790", + "n3418", + "n3744", "n1809", "n1813", - "n1810", - "n1811" + "n1810" ] }, "w362": { "id": "w362", "tags": { "highway": "residential", - "name": "South Street", - "oneway": "yes" + "name": "South Street" }, "nodes": ["n1639", "n1683", "n1633"] }, @@ -1170,14 +1120,6 @@ }, "nodes": ["n1646", "n1647", "n1648", "n1649", "n1646"] }, - "w364": { - "id": "w364", - "tags": { - "highway": "residential", - "name": "North Grant Avenue" - }, - "nodes": ["n1643", "n1838", "n1839", "n1836"] - }, "w365": { "id": "w365", "tags": { @@ -1208,30 +1150,15 @@ "tags": { "amenity": "parking" }, - "nodes": [ - "n1791", - "n1792", - "n1793", - "n1794", - "n1795", - "n1796", - "n1797", - "n1798", - "n1799", - "n1800", - "n1801", - "n1802", - "n1803", - "n1791" - ] + "nodes": ["n1791", "n1792", "n1793", "n1794", "n1795", "n1796", "n1798", "n1799", "n1800", "n1801", "n1802", "n1803", "n1791"] }, "w367": { "id": "w367", "tags": { "highway": "residential", - "name": "South Grant Avenue" + "name": "Grant Avenue" }, - "nodes": ["n1633", "n1634", "n1643"] + "nodes": ["n1633", "n1643", "n1838", "n1839"] }, "w368": { "id": "w368", @@ -1253,18 +1180,10 @@ "id": "w370", "tags": { "highway": "residential", - "name": "South Hook Avenue" + "name": "Hook Avenue" }, "nodes": ["n1645", "n1638", "n858", "n1631"] }, - "w371": { - "id": "w371", - "tags": { - "highway": "residential", - "name": "North Douglas Avenue" - }, - "nodes": ["n1642", "n1849", "n1845", "n1837"] - }, "w372": { "id": "w372", "tags": { @@ -1277,7 +1196,7 @@ "tags": { "amenity": "parking" }, - "nodes": ["n1810", "n1785", "n1786", "n1787", "n1788", "n1789", "n1808", "n1812", "n1790", "n1809", "n1810"] + "nodes": ["n2891", "n1785", "n1786", "n3394", "n1787", "n1788", "n1789", "n1830", "n1836", "n1837", "n1848", "n3409", "n2891"] }, "w374": { "id": "w374", @@ -1299,14 +1218,15 @@ "tags": { "amenity": "parking" }, - "nodes": ["n1677", "n1678", "n1679", "n1680", "n1681", "n1682", "n1685", "n1677"] + "nodes": ["n1677", "n1678", "n1679", "n1680", "n1681", "n1682", "n1677"] }, "w377": { "id": "w377", "tags": { - "highway": "service" + "highway": "service", + "oneway": "yes" }, - "nodes": ["n1673", "n1674", "n1675", "n1676"] + "nodes": ["n1676", "n1675", "n1674", "n1673"] }, "w378": { "id": "w378", @@ -1320,538 +1240,18 @@ "id": "w379", "tags": { "highway": "residential", - "name": "North Lincoln Avenue" + "name": "Lincoln Avenue" }, - "nodes": ["n1630", "n1847", "n1844", "n1848"] + "nodes": ["n1630", "n1847", "n1844"] }, "w380": { "id": "w380", "tags": { "highway": "service", - "service": "parking_aisle" + "service": "parking_aisle", + "oneway": "yes" }, - "nodes": ["n1683", "n1684", "n1685", "n1686"] - }, - "r1": { - "id": "r1", - "tags": { - "modifier": "Business", - "name": "US 131 Business (Three Rivers, MI)", - "network": "US:US", - "ref": "131", - "route": "road", - "type": "route" - }, - "members": [ - { - "id": "w17966509", - "type": "way", - "role": "forward" - }, - { - "id": "w228", - "type": "way", - "role": "" - }, - { - "id": "w497", - "type": "way", - "role": "" - }, - { - "id": "w489", - "type": "way", - "role": "" - }, - { - "id": "w392", - "type": "way", - "role": "" - }, - { - "id": "w395", - "type": "way", - "role": "" - }, - { - "id": "w347", - "type": "way", - "role": "" - }, - { - "id": "w17965146", - "type": "way", - "role": "forward" - }, - { - "id": "w17964031", - "type": "way", - "role": "forward" - } - ] - }, - "r3": { - "id": "r3", - "tags": { - "network": "US:MI", - "ref": "60", - "route": "road", - "state_id": "MI", - "type": "route", - "url": "http://en.wikipedia.org/wiki/M-60_%28Michigan_highway%29" - }, - "members": [ - { - "id": "w17751087", - "type": "way", - "role": "east" - }, - { - "id": "w117148312", - "type": "way", - "role": "east" - }, - { - "id": "w40942155", - "type": "way", - "role": "west" - }, - { - "id": "w17751017", - "type": "way", - "role": "" - }, - { - "id": "w17751083", - "type": "way", - "role": "" - }, - { - "id": "w17747780", - "type": "way", - "role": "" - }, - { - "id": "w41068082", - "type": "way", - "role": "" - }, - { - "id": "w197025212", - "type": "way", - "role": "" - }, - { - "id": "w17743874", - "type": "way", - "role": "" - }, - { - "id": "w17751044", - "type": "way", - "role": "" - }, - { - "id": "w17752167", - "type": "way", - "role": "" - }, - { - "id": "w17751089", - "type": "way", - "role": "" - }, - { - "id": "w17743879", - "type": "way", - "role": "" - }, - { - "id": "w17751064", - "type": "way", - "role": "" - }, - { - "id": "w197057073", - "type": "way", - "role": "" - }, - { - "id": "w167699963", - "type": "way", - "role": "" - }, - { - "id": "w167699972", - "type": "way", - "role": "" - }, - { - "id": "w17967584", - "type": "way", - "role": "" - }, - { - "id": "w167699964", - "type": "way", - "role": "" - }, - { - "id": "w17967582", - "type": "way", - "role": "west" - }, - { - "id": "w41260270", - "type": "way", - "role": "west" - }, - { - "id": "w17965146", - "type": "way", - "role": "west" - }, - { - "id": "w347", - "type": "way", - "role": "" - }, - { - "id": "w395", - "type": "way", - "role": "" - }, - { - "id": "w392", - "type": "way", - "role": "" - }, - { - "id": "w489", - "type": "way", - "role": "" - }, - { - "id": "w497", - "type": "way", - "role": "" - }, - { - "id": "w536", - "type": "way", - "role": "" - }, - { - "id": "w529", - "type": "way", - "role": "" - }, - { - "id": "w517", - "type": "way", - "role": "" - }, - { - "id": "w619", - "type": "way", - "role": "" - }, - { - "id": "w625", - "type": "way", - "role": "" - }, - { - "id": "w670", - "type": "way", - "role": "" - }, - { - "id": "w17967581", - "type": "way", - "role": "" - }, - { - "id": "w41074902", - "type": "way", - "role": "" - }, - { - "id": "w41074906", - "type": "way", - "role": "" - }, - { - "id": "w209707997", - "type": "way", - "role": "" - }, - { - "id": "w209707998", - "type": "way", - "role": "" - }, - { - "id": "w17964798", - "type": "way", - "role": "" - }, - { - "id": "w17966034", - "type": "way", - "role": "" - }, - { - "id": "w17967593", - "type": "way", - "role": "" - }, - { - "id": "w41074888", - "type": "way", - "role": "" - }, - { - "id": "w17733772", - "type": "way", - "role": "" - }, - { - "id": "w41074813", - "type": "way", - "role": "" - }, - { - "id": "w17742213", - "type": "way", - "role": "" - }, - { - "id": "w17746863", - "type": "way", - "role": "" - }, - { - "id": "w17745772", - "type": "way", - "role": "" - }, - { - "id": "w17742222", - "type": "way", - "role": "" - }, - { - "id": "w17745922", - "type": "way", - "role": "" - }, - { - "id": "w17742198", - "type": "way", - "role": "" - }, - { - "id": "w17747675", - "type": "way", - "role": "" - }, - { - "id": "w17739927", - "type": "way", - "role": "" - }, - { - "id": "w17745708", - "type": "way", - "role": "" - }, - { - "id": "w41006323", - "type": "way", - "role": "" - }, - { - "id": "w17744233", - "type": "way", - "role": "" - }, - { - "id": "w17739436", - "type": "way", - "role": "" - }, - { - "id": "w17742201", - "type": "way", - "role": "" - }, - { - "id": "w151418616", - "type": "way", - "role": "" - }, - { - "id": "w17750062", - "type": "way", - "role": "" - }, - { - "id": "w17742227", - "type": "way", - "role": "east" - }, - { - "id": "w41006348", - "type": "way", - "role": "east" - }, - { - "id": "w41260984", - "type": "way", - "role": "" - }, - { - "id": "w17832427", - "type": "way", - "role": "" - }, - { - "id": "w17838408", - "type": "way", - "role": "" - }, - { - "id": "w17835846", - "type": "way", - "role": "" - }, - { - "id": "w17832923", - "type": "way", - "role": "" - }, - { - "id": "w17839388", - "type": "way", - "role": "" - }, - { - "id": "w17838390", - "type": "way", - "role": "" - }, - { - "id": "w17831272", - "type": "way", - "role": "" - }, - { - "id": "w17828581", - "type": "way", - "role": "" - }, - { - "id": "w38240686", - "type": "way", - "role": "" - }, - { - "id": "w17838405", - "type": "way", - "role": "east" - }, - { - "id": "w123323711", - "type": "way", - "role": "east" - }, - { - "id": "w17830167", - "type": "way", - "role": "east" - }, - { - "id": "w99011909", - "type": "way", - "role": "east" - }, - { - "id": "w41911361", - "type": "way", - "role": "east" - }, - { - "id": "w41911355", - "type": "way", - "role": "east" - }, - { - "id": "w41911356", - "type": "way", - "role": "east" - }, - { - "id": "w117148326", - "type": "way", - "role": "west" - }, - { - "id": "w41911352", - "type": "way", - "role": "west" - }, - { - "id": "w41911353", - "type": "way", - "role": "west" - }, - { - "id": "w41911354", - "type": "way", - "role": "west" - }, - { - "id": "w41911360", - "type": "way", - "role": "west" - }, - { - "id": "w38240676", - "type": "way", - "role": "west" - }, - { - "id": "w123323710", - "type": "way", - "role": "west" - }, - { - "id": "w41260271", - "type": "way", - "role": "east" - }, - { - "id": "w41260273", - "type": "way", - "role": "east" - }, - { - "id": "w17964031", - "type": "way", - "role": "east" - }, - { - "id": "w41006344", - "type": "way", - "role": "west" - }, - { - "id": "w41006351", - "type": "way", - "role": "west" - } - ] + "nodes": ["n1683", "n3745", "n1686", "n1633"] }, "n1862": { "id": "n1862", @@ -1860,7 +1260,7 @@ "amenity": "fire_station", "name": "Three Rivers Fire Department", "addr:housenumber": "333", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -2665,7 +2065,7 @@ "amenity": "townhall", "name": "Three Rivers City Hall", "addr:housenumber": "333", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -2851,7 +2251,7 @@ }, "n2105": { "id": "n2105", - "loc": [-85.629533, 41.942686] + "loc": [-85.629597, 41.942562] }, "n2106": { "id": "n2106", @@ -2863,7 +2263,7 @@ }, "n2108": { "id": "n2108", - "loc": [-85.629694, 41.943053] + "loc": [-85.629708, 41.942872] }, "n2109": { "id": "n2109", @@ -2915,7 +2315,7 @@ }, "n2121": { "id": "n2121", - "loc": [-85.629415, 41.941792] + "loc": [-85.629518, 41.941783] }, "n2122": { "id": "n2122", @@ -2943,7 +2343,7 @@ }, "n2128": { "id": "n2128", - "loc": [-85.629984, 41.943444] + "loc": [-85.630097, 41.943449] }, "n2129": { "id": "n2129", @@ -3069,42 +2469,14 @@ "id": "n2159", "loc": [-85.62934, 41.940843] }, - "n2160": { - "id": "n2160", - "loc": [-85.640505, 41.949279] - }, - "n2161": { - "id": "n2161", - "loc": [-85.640688, 41.949511] - }, "n2162": { "id": "n2162", "loc": [-85.637225, 41.944128] }, - "n2163": { - "id": "n2163", - "loc": [-85.64043, 41.950285] - }, "n2164": { "id": "n2164", "loc": [-85.635441, 41.943989] }, - "n2165": { - "id": "n2165", - "loc": [-85.640198, 41.948623] - }, - "n2166": { - "id": "n2166", - "loc": [-85.638953, 41.947099] - }, - "n2167": { - "id": "n2167", - "loc": [-85.640906, 41.950857] - }, - "n2168": { - "id": "n2168", - "loc": [-85.638996, 41.947825] - }, "n2169": { "id": "n2169", "loc": [-85.637469, 41.944579] @@ -3117,34 +2489,10 @@ "id": "n2171", "loc": [-85.638263, 41.946367] }, - "n2172": { - "id": "n2172", - "loc": [-85.640108, 41.948545] - }, - "n2173": { - "id": "n2173", - "loc": [-85.64037, 41.950459] - }, - "n2174": { - "id": "n2174", - "loc": [-85.639898, 41.94915] - }, - "n2175": { - "id": "n2175", - "loc": [-85.641245, 41.951019] - }, - "n2176": { - "id": "n2176", - "loc": [-85.640584, 41.950147] - }, "n2177": { "id": "n2177", "loc": [-85.637136, 41.94576] }, - "n2178": { - "id": "n2178", - "loc": [-85.639183, 41.948593] - }, "n2179": { "id": "n2179", "loc": [-85.637129, 41.945415] @@ -3153,34 +2501,14 @@ "id": "n2180", "loc": [-85.637473, 41.94607] }, - "n2181": { - "id": "n2181", - "loc": [-85.638777, 41.948204] - }, - "n2182": { - "id": "n2182", - "loc": [-85.639758, 41.949014] - }, "n2183": { "id": "n2183", "loc": [-85.637769, 41.946095] }, - "n2184": { - "id": "n2184", - "loc": [-85.642501, 41.952287] - }, - "n2185": { - "id": "n2185", - "loc": [-85.640863, 41.94994] - }, "n2186": { "id": "n2186", "loc": [-85.631385, 41.94433] }, - "n2187": { - "id": "n2187", - "loc": [-85.643266, 41.95298] - }, "n2188": { "id": "n2188", "loc": [-85.637308, 41.944882] @@ -3189,62 +2517,14 @@ "id": "n2189", "loc": [-85.634898, 41.944041] }, - "n2190": { - "id": "n2190", - "loc": [-85.642011, 41.951503] - }, - "n2191": { - "id": "n2191", - "loc": [-85.639797, 41.948888] - }, - "n2192": { - "id": "n2192", - "loc": [-85.639039, 41.947466] - }, - "n2193": { - "id": "n2193", - "loc": [-85.640155, 41.948719] - }, - "n2194": { - "id": "n2194", - "loc": [-85.639937, 41.948785] - }, - "n2195": { - "id": "n2195", - "loc": [-85.640205, 41.949183] - }, "n2196": { "id": "n2196", "loc": [-85.637435, 41.944342] }, - "n2197": { - "id": "n2197", - "loc": [-85.639443, 41.948593] - }, - "n2198": { - "id": "n2198", - "loc": [-85.638835, 41.948049] - }, - "n2199": { - "id": "n2199", - "loc": [-85.638842, 41.948441] - }, "n2200": { "id": "n2200", "loc": [-85.637169, 41.945098] }, - "n2201": { - "id": "n2201", - "loc": [-85.639883, 41.948529] - }, - "n2202": { - "id": "n2202", - "loc": [-85.641775, 41.951336] - }, - "n2203": { - "id": "n2203", - "loc": [-85.640627, 41.95077] - }, "n2204": { "id": "n2204", "loc": [-85.635894, 41.943719] @@ -3253,22 +2533,6 @@ "id": "n2205", "loc": [-85.637297, 41.945992] }, - "n2206": { - "id": "n2206", - "loc": [-85.641432, 41.951209] - }, - "n2207": { - "id": "n2207", - "loc": [-85.640863, 41.949756] - }, - "n2208": { - "id": "n2208", - "loc": [-85.640788, 41.950052] - }, - "n2209": { - "id": "n2209", - "loc": [-85.64278, 41.952878] - }, "n2210": { "id": "n2210", "loc": [-85.635175, 41.94408] @@ -3277,22 +2541,10 @@ "id": "n2211", "loc": [-85.636381, 41.943761] }, - "n2212": { - "id": "n2212", - "loc": [-85.642329, 41.952008] - }, "n2213": { "id": "n2213", "loc": [-85.638578, 41.946644] }, - "n2214": { - "id": "n2214", - "loc": [-85.640434, 41.95065] - }, - "n2215": { - "id": "n2215", - "loc": [-85.642623, 41.952708] - }, "n2216": { "id": "n2216", "loc": [-85.636126, 41.943713] @@ -3784,7 +3036,7 @@ "id": "w387", "tags": { "highway": "residential", - "name": "South Andrews Street" + "name": "Andrews Street" }, "nodes": ["n1846", "n1843", "n865", "n157", "n1831"] }, @@ -3832,7 +3084,7 @@ "id": "w391", "tags": { "highway": "residential", - "name": "North Constantine Street" + "name": "Constantine Street" }, "nodes": [ "n2089", @@ -3859,9 +3111,7 @@ "id": "w392", "tags": { "highway": "primary", - "name": "West Michigan Avenue", - "old_ref": "US 131", - "ref": "US 131 Business;M 60" + "name": "Michigan Avenue" }, "nodes": ["n1869", "n212", "n436", "n2281", "n2081"] }, @@ -3869,7 +3119,7 @@ "id": "w393", "tags": { "highway": "tertiary", - "name": "South Constantine Street" + "name": "Constantine Street" }, "nodes": ["n1829", "n611", "n144", "n602", "n1832"] }, @@ -3886,9 +3136,7 @@ "tags": { "bridge": "yes", "highway": "primary", - "name": "West Michigan Avenue", - "old_ref": "US 131", - "ref": "US 131 Business;M 60" + "name": "Michigan Avenue" }, "nodes": ["n1835", "n1869"] }, @@ -4082,7 +3330,7 @@ "id": "w413", "tags": { "highway": "residential", - "name": "North Andrews Street" + "name": "Andrews Street" }, "nodes": ["n1831", "n876", "n821", "n2089"] }, @@ -5965,7 +5213,7 @@ }, "n2745": { "id": "n2745", - "loc": [-85.629599, 41.952435] + "loc": [-85.629586, 41.952469] }, "n2746": { "id": "n2746", @@ -5973,7 +5221,7 @@ }, "n2747": { "id": "n2747", - "loc": [-85.634767, 41.959009] + "loc": [-85.63478, 41.959007] }, "n2748": { "id": "n2748", @@ -5987,10 +5235,6 @@ "id": "n2749", "loc": [-85.634648, 41.947325] }, - "n2750": { - "id": "n2750", - "loc": [-85.636166, 41.947296] - }, "n2751": { "id": "n2751", "loc": [-85.633195, 41.94734] @@ -6009,11 +5253,11 @@ }, "n2755": { "id": "n2755", - "loc": [-85.634641, 41.948627] + "loc": [-85.634655, 41.948612] }, "n2756": { "id": "n2756", - "loc": [-85.636182, 41.948614] + "loc": [-85.636182, 41.948605] }, "n2757": { "id": "n2757", @@ -6021,7 +5265,7 @@ }, "n2758": { "id": "n2758", - "loc": [-85.634686, 41.951158] + "loc": [-85.634686, 41.951159] }, "n2759": { "id": "n2759", @@ -6029,15 +5273,15 @@ }, "n2760": { "id": "n2760", - "loc": [-85.634668, 41.949875] + "loc": [-85.634668, 41.949891] }, "n2761": { "id": "n2761", - "loc": [-85.634686, 41.952415] + "loc": [-85.634701, 41.952422] }, "n2762": { "id": "n2762", - "loc": [-85.634726, 41.955921] + "loc": [-85.634747, 41.955907] }, "n2763": { "id": "n2763", @@ -6049,7 +5293,7 @@ }, "n2765": { "id": "n2765", - "loc": [-85.632278, 41.948613] + "loc": [-85.632278, 41.948624] }, "n2766": { "id": "n2766", @@ -6057,7 +5301,7 @@ }, "n2767": { "id": "n2767", - "loc": [-85.636233, 41.952398] + "loc": [-85.636233, 41.95241] }, "n2768": { "id": "n2768", @@ -6067,21 +5311,13 @@ "id": "n2769", "loc": [-85.630486, 41.951194] }, - "n2770": { - "id": "n2770", - "loc": [-85.626375, 41.957279] - }, - "n2771": { - "id": "n2771", - "loc": [-85.625525, 41.95864] - }, "n2772": { "id": "n2772", - "loc": [-85.636163, 41.947382] + "loc": [-85.636162, 41.94731] }, "n2773": { "id": "n2773", - "loc": [-85.636188, 41.949874] + "loc": [-85.636188, 41.949881] }, "n2774": { "id": "n2774", @@ -6113,7 +5349,7 @@ }, "n2781": { "id": "n2781", - "loc": [-85.623684, 41.961482] + "loc": [-85.625129, 41.959272] }, "n2782": { "id": "n2782", @@ -6181,7 +5417,7 @@ }, "n2798": { "id": "n2798", - "loc": [-85.635418, 41.947309] + "loc": [-85.635418, 41.947317] }, "n2799": { "id": "n2799", @@ -6710,9 +5946,7 @@ "tags": { "bridge": "yes", "highway": "primary", - "name": "West Michigan Avenue", - "old_ref": "US 131", - "ref": "US 131 Business;M 60" + "name": "Michigan Avenue" }, "nodes": ["n2081", "n2430"] }, @@ -6739,8 +5973,6 @@ "n2766", "n2763", "n2752", - "n2770", - "n2771", "n2781" ] }, @@ -6794,9 +6026,7 @@ "id": "w497", "tags": { "highway": "primary", - "name": "West Michigan Avenue", - "old_ref": "US 131", - "ref": "US 131 Business;M 60" + "name": "Michigan Avenue" }, "nodes": ["n2430", "n2446", "n343", "n2101", "n2560", "n2431", "n363", "n2748"] }, @@ -6813,7 +6043,7 @@ "highway": "residential", "name": "West Street" }, - "nodes": ["n2423", "n2415", "n661", "n2416", "n2417", "n2719", "n2721", "n2750", "n2772", "n2756", "n2773", "n2759", "n2767"] + "nodes": ["n2423", "n2415", "n661", "n2416", "n2417", "n2719", "n2721", "n2772", "n2756", "n2773", "n2759", "n2767"] }, "w500": { "id": "w500", @@ -7079,22 +6309,6 @@ "id": "n2838", "loc": [-85.623074, 41.946339] }, - "n2839": { - "id": "n2839", - "loc": [-85.618327, 41.945631] - }, - "n2840": { - "id": "n2840", - "loc": [-85.615453, 41.945637] - }, - "n2841": { - "id": "n2841", - "loc": [-85.617231, 41.945633] - }, - "n2842": { - "id": "n2842", - "loc": [-85.616136, 41.945635] - }, "n2843": { "id": "n2843", "loc": [-85.615273, 41.945637] @@ -7145,7 +6359,7 @@ }, "n2855": { "id": "n2855", - "loc": [-85.629994, 41.944669] + "loc": [-85.630001, 41.944664] }, "n2856": { "id": "n2856", @@ -7185,19 +6399,15 @@ }, "n2865": { "id": "n2865", - "loc": [-85.630139, 41.944661] - }, - "n2866": { - "id": "n2866", - "loc": [-85.630298, 41.944635] + "loc": [-85.630125, 41.944654] }, "n2867": { "id": "n2867", - "loc": [-85.630759, 41.94454] + "loc": [-85.630257, 41.944637] }, "n2868": { "id": "n2868", - "loc": [-85.631237, 41.944455] + "loc": [-85.631247, 41.944459] }, "n2869": { "id": "n2869", @@ -7276,11 +6486,11 @@ "id": "w517", "tags": { "highway": "secondary", - "name": "East Michigan Avenue", + "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" }, - "nodes": ["n2863", "n2815", "n2814", "n2812", "n2864", "n2855", "n2865", "n2866", "n2867", "n2868"] + "nodes": ["n2863", "n2815", "n2814", "n2812", "n2864", "n2855", "n2865", "n2867", "n2868"] }, "w518": { "id": "w518", @@ -7371,7 +6581,7 @@ "highway": "residential", "name": "4th Avenue" }, - "nodes": ["n2877", "n2809", "n2813", "n2844", "n2839", "n2841", "n2842", "n2840", "n2843"] + "nodes": ["n2877", "n2809", "n2813", "n2844", "n2843"] }, "n2883": { "id": "n2883", @@ -7383,15 +6593,15 @@ }, "n2884": { "id": "n2884", - "loc": [-85.629998, 41.944078] + "loc": [-85.629977, 41.943907] }, "n2885": { "id": "n2885", - "loc": [-85.629972, 41.943927] + "loc": [-85.629947, 41.943775] }, "n2886": { "id": "n2886", - "loc": [-85.629948, 41.943783] + "loc": [-85.629899, 41.943625] }, "n2887": { "id": "n2887", @@ -7407,16 +6617,7 @@ }, "n2890": { "id": "n2890", - "loc": [-85.631578, 41.944396] - }, - "n2891": { - "id": "n2891", - "loc": [-85.628056, 41.944722], - "tags": { - "amenity": "place_of_worship", - "name": "Riverside Church", - "religion": "christian" - } + "loc": [-85.631571, 41.9444] }, "n2892": { "id": "n2892", @@ -7632,15 +6833,15 @@ }, "n2945": { "id": "n2945", - "loc": [-85.629692, 41.943136] + "loc": [-85.62959, 41.942936] }, "n2946": { "id": "n2946", - "loc": [-85.629565, 41.942916] + "loc": [-85.629551, 41.94284] }, "n2947": { "id": "n2947", - "loc": [-85.629501, 41.942751] + "loc": [-85.629501, 41.942704] }, "n2948": { "id": "n2948", @@ -7648,40 +6849,32 @@ }, "n2949": { "id": "n2949", - "loc": [-85.629444, 41.942414] + "loc": [-85.629361, 41.941801] }, "n2950": { "id": "n2950", - "loc": [-85.629391, 41.94205] + "loc": [-85.629339, 41.941716] }, "n2951": { "id": "n2951", - "loc": [-85.629369, 41.941858] + "loc": [-85.629315, 41.94166] }, "n2952": { "id": "n2952", - "loc": [-85.629297, 41.941604] + "loc": [-85.629279, 41.941602] }, "n2953": { "id": "n2953", - "loc": [-85.629233, 41.941549] - }, - "n2954": { - "id": "n2954", - "loc": [-85.628504, 41.941364] + "loc": [-85.629227, 41.941556] }, "n2955": { "id": "n2955", - "loc": [-85.628275, 41.941303] + "loc": [-85.629153, 41.941524] }, "n2956": { "id": "n2956", "loc": [-85.626904, 41.941098] }, - "n2957": { - "id": "n2957", - "loc": [-85.626843, 41.947333] - }, "n2958": { "id": "n2958", "loc": [-85.631844, 41.942945] @@ -7819,14 +7012,14 @@ "highway": "residential", "name": "Garden Street" }, - "nodes": ["n2864", "n2892", "n2893", "n2877", "n2860"] + "nodes": ["n2864", "n2892", "n2893", "n2877", "n2860", "n3840"] }, "w529": { "id": "w529", "tags": { "bridge": "yes", "highway": "secondary", - "name": "East Michigan Avenue", + "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" }, @@ -7866,9 +7059,7 @@ "tags": { "bridge": "yes", "highway": "secondary", - "name": "South Main Street", - "old_ref": "US 131", - "ref": "M 86" + "name": "Main Street" }, "nodes": ["n2958", "n2896"] }, @@ -7876,9 +7067,7 @@ "id": "w532", "tags": { "highway": "secondary", - "name": "South Main Street", - "old_ref": "US 131", - "ref": "M 86" + "name": "Main Street" }, "nodes": ["n2896", "n394", "n364", "n2748"] }, @@ -7890,14 +7079,6 @@ }, "nodes": ["n2800", "n2943", "n2940", "n2941", "n2942", "n2943"] }, - "w534": { - "id": "w534", - "tags": { - "highway": "residential", - "name": "John Glenn Court" - }, - "nodes": ["n2860", "n2957"] - }, "w535": { "id": "w535", "tags": { @@ -7910,7 +7091,7 @@ "id": "w536", "tags": { "highway": "secondary", - "name": "East Michigan Avenue", + "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" }, @@ -7932,6 +7113,7 @@ }, "nodes": [ "n2855", + "n3756", "n2884", "n2885", "n2886", @@ -7944,7 +7126,6 @@ "n2951", "n2952", "n2953", - "n2954", "n2955", "n2848", "n2956", @@ -8017,134 +7198,6 @@ "n2233" ] }, - "r4": { - "id": "r4", - "tags": { - "network": "US:MI", - "ref": "86", - "route": "road", - "state_id": "MI", - "type": "route", - "url": "http://en.wikipedia.org/wiki/M-86_%28Michigan_highway%29" - }, - "members": [ - { - "id": "w17737723", - "type": "way", - "role": "" - }, - { - "id": "w17735949", - "type": "way", - "role": "" - }, - { - "id": "w17740404", - "type": "way", - "role": "" - }, - { - "id": "w17966273", - "type": "way", - "role": "" - }, - { - "id": "w17964745", - "type": "way", - "role": "" - }, - { - "id": "w151538068", - "type": "way", - "role": "" - }, - { - "id": "w151538067", - "type": "way", - "role": "" - }, - { - "id": "w17964960", - "type": "way", - "role": "" - }, - { - "id": "w17966099", - "type": "way", - "role": "" - }, - { - "id": "w17968009", - "type": "way", - "role": "" - }, - { - "id": "w41259499", - "type": "way", - "role": "" - }, - { - "id": "w151540401", - "type": "way", - "role": "" - }, - { - "id": "w151540418", - "type": "way", - "role": "" - }, - { - "id": "w17967997", - "type": "way", - "role": "" - }, - { - "id": "w17966029", - "type": "way", - "role": "" - }, - { - "id": "w17964801", - "type": "way", - "role": "" - }, - { - "id": "w41259496", - "type": "way", - "role": "" - }, - { - "id": "w151540399", - "type": "way", - "role": "" - }, - { - "id": "w17968004", - "type": "way", - "role": "" - }, - { - "id": "w227", - "type": "way", - "role": "" - }, - { - "id": "w531", - "type": "way", - "role": "" - }, - { - "id": "w532", - "type": "way", - "role": "" - }, - { - "id": "w17732295", - "type": "way", - "role": "" - } - ] - }, "n2989": { "id": "n2989", "loc": [-85.627141, 41.940727] @@ -8891,48 +7944,6 @@ "id": "n3162", "loc": [-85.631648, 41.940043] }, - "n3163": { - "id": "n3163", - "loc": [-85.627051, 41.931712], - "tags": { - "railway": "level_crossing" - } - }, - "n3164": { - "id": "n3164", - "loc": [-85.627818, 41.934212], - "tags": { - "railway": "level_crossing" - } - }, - "n3165": { - "id": "n3165", - "loc": [-85.627499, 41.933182], - "tags": { - "railway": "level_crossing" - } - }, - "n3166": { - "id": "n3166", - "loc": [-85.629711, 41.935394], - "tags": { - "railway": "level_crossing" - } - }, - "n3167": { - "id": "n3167", - "loc": [-85.62811, 41.935198], - "tags": { - "railway": "level_crossing" - } - }, - "n3168": { - "id": "n3168", - "loc": [-85.626888, 41.931176], - "tags": { - "railway": "level_crossing" - } - }, "n3169": { "id": "n3169", "loc": [-85.633628, 41.935437] @@ -9316,23 +8327,23 @@ }, "n3192": { "id": "n3192", - "loc": [-85.628469, 41.948674] + "loc": [-85.628591, 41.948536] }, "n3193": { "id": "n3193", - "loc": [-85.63205, 41.951174] + "loc": [-85.63205, 41.951181] }, "n3194": { "id": "n3194", - "loc": [-85.632034, 41.949905] + "loc": [-85.632034, 41.949909] }, "n3195": { "id": "n3195", - "loc": [-85.630841, 41.951197] + "loc": [-85.630841, 41.951191] }, "n3196": { "id": "n3196", - "loc": [-85.632083, 41.953707] + "loc": [-85.632083, 41.9537] }, "n3197": { "id": "n3197", @@ -9352,7 +8363,7 @@ }, "n3201": { "id": "n3201", - "loc": [-85.632072, 41.95244] + "loc": [-85.632072, 41.952447] }, "n3202": { "id": "n3202", @@ -9360,15 +8371,15 @@ }, "n3203": { "id": "n3203", - "loc": [-85.632111, 41.955916] + "loc": [-85.632111, 41.955911] }, "n3204": { "id": "n3204", - "loc": [-85.630855, 41.952452] + "loc": [-85.630855, 41.952457] }, "n3205": { "id": "n3205", - "loc": [-85.630869, 41.953713] + "loc": [-85.630869, 41.953709] }, "n3206": { "id": "n3206", @@ -9380,35 +8391,29 @@ }, "n3208": { "id": "n3208", - "loc": [-85.633214, 41.948618] + "loc": [-85.633214, 41.948619] }, "n3209": { "id": "n3209", - "loc": [-85.633274, 41.951159] + "loc": [-85.633253, 41.951171] }, "n3210": { "id": "n3210", - "loc": [-85.633258, 41.949891] + "loc": [-85.633234, 41.949901] }, "n3211": { "id": "n3211", - "loc": [-85.633922, 41.948622] + "loc": [-85.633922, 41.948616] }, "w577": { "id": "w577", "tags": { - "highway": "residential", + "highway": "service", + "service": "driveway", + "surface": "unpaved", "name": "Willow Drive" }, - "nodes": ["n2944", "n3192"] - }, - "w578": { - "id": "w578", - "tags": { - "highway": "residential", - "name": "East Armitage Street" - }, - "nodes": ["n2769", "n3195", "n3193", "n3209", "n2758"] + "nodes": ["n2944", "n3192", "n3757", "n3813", "n3814", "n3815", "n3816", "n3817", "n3818", "n3819"] }, "w579": { "id": "w579", @@ -9418,21 +8423,13 @@ }, "nodes": ["n2754", "n3195", "n3204", "n3205", "n3206", "n3207", "n3199", "n3197", "n1032"] }, - "w580": { - "id": "w580", - "tags": { - "highway": "residential", - "name": "East Bennett Street" - }, - "nodes": ["n2768", "n3194", "n3210", "n2760"] - }, "w581": { "id": "w581", "tags": { "highway": "residential", - "name": "East Kelsey Street" + "name": "Kelsey Street" }, - "nodes": ["n2765", "n3208", "n3211", "n2755"] + "nodes": ["n2765", "n3208", "n3211", "n2755", "n3280", "n2756", "n3346"] }, "w582": { "id": "w582", @@ -9835,13 +8832,13 @@ "id": "w596", "tags": { "highway": "residential", - "name": "West Armitage Street" + "name": "Armitage Street" }, - "nodes": ["n2758", "n2759", "n3279"] + "nodes": ["n2769", "n3195", "n3193", "n3209", "n2758", "n2759", "n3279"] }, "n3280": { "id": "n3280", - "loc": [-85.635429, 41.94862] + "loc": [-85.635429, 41.948608] }, "n3281": { "id": "n3281", @@ -10101,7 +9098,7 @@ }, "n3345": { "id": "n3345", - "loc": [-85.637396, 41.948994] + "loc": [-85.637386, 41.94906] }, "n3346": { "id": "n3346", @@ -10133,7 +9130,7 @@ }, "n3353": { "id": "n3353", - "loc": [-85.635459, 41.949874] + "loc": [-85.635459, 41.949886] }, "n3354": { "id": "n3354", @@ -10253,7 +9250,7 @@ }, "n3383": { "id": "n3383", - "loc": [-85.633921, 41.947334] + "loc": [-85.633921, 41.947333] }, "n3384": { "id": "n3384", @@ -10295,15 +9292,6 @@ "id": "n3393", "loc": [-85.634093, 41.948506] }, - "n3394": { - "id": "n3394", - "loc": [-85.634167, 41.947778], - "tags": { - "amenity": "place_of_worship", - "name": "Faith Tabernacle Church", - "religion": "christian" - } - }, "n3395": { "id": "n3395", "loc": [-85.63378, 41.95099] @@ -10360,18 +9348,9 @@ "id": "n3408", "loc": [-85.633356, 41.949982] }, - "n3409": { - "id": "n3409", - "loc": [-85.634167, 41.949722], - "tags": { - "amenity": "place_of_worship", - "name": "Trinity Episcopal Church", - "religion": "christian" - } - }, "n3410": { "id": "n3410", - "loc": [-85.633307, 41.9537] + "loc": [-85.633292, 41.953691] }, "n3411": { "id": "n3411", @@ -10379,19 +9358,19 @@ }, "n3412": { "id": "n3412", - "loc": [-85.633361, 41.957422] + "loc": [-85.633349, 41.957422] }, "n3413": { "id": "n3413", - "loc": [-85.63334, 41.955918] + "loc": [-85.633326, 41.955909] }, "n3414": { "id": "n3414", - "loc": [-85.633311, 41.954673] + "loc": [-85.633307, 41.954673] }, "n3415": { "id": "n3415", - "loc": [-85.633292, 41.952426] + "loc": [-85.633273, 41.952436] }, "n3416": { "id": "n3416", @@ -10400,29 +9379,17 @@ "highway": "turning_circle" } }, - "w597": { - "id": "w597", - "tags": { - "highway": "residential", - "name": "West Prutzman Street" - }, - "nodes": ["n2749", "n2798", "n2750"] - }, "w598": { "id": "w598", "tags": { - "building": "yes" + "building": "school" }, "nodes": ["n3404", "n3403", "n3402", "n3401", "n3400", "n3399", "n3398", "n3397", "n3373", "n3372", "n3396", "n3395", "n3404"] }, "w599": { "id": "w599", "tags": { - "amenity": "place_of_worship", - "building": "yes", - "denomination": "presbyterian", - "name": "First Presbyterian Church", - "religion": "christian" + "building": "yes" }, "nodes": [ "n3371", @@ -10502,7 +9469,7 @@ "highway": "service", "service": "alley" }, - "nodes": ["n3211", "n3383"] + "nodes": ["n3753", "n3211", "n3383"] }, "w605": { "id": "w605", @@ -10511,22 +9478,6 @@ }, "nodes": ["n3290", "n3289", "n3288", "n3287", "n3286", "n3285", "n3284", "n3283", "n3282", "n3281", "n3290"] }, - "w606": { - "id": "w606", - "tags": { - "highway": "residential", - "name": "Maple Street" - }, - "nodes": ["n3346", "n3345", "n3378", "n3279", "n3411"] - }, - "w607": { - "id": "w607", - "tags": { - "highway": "residential", - "name": "West Kelsey Street" - }, - "nodes": ["n2755", "n3280", "n2756", "n3346"] - }, "w608": { "id": "w608", "tags": { @@ -10539,9 +9490,9 @@ "id": "w609", "tags": { "highway": "residential", - "name": "Rock River Avenue" + "name": "Maple Street" }, - "nodes": ["n2772", "n3346"] + "nodes": ["n2772", "n3346", "n3746", "n3748", "n3747", "n3345", "n3378", "n3279", "n3411"] }, "w610": { "id": "w610", @@ -10555,17 +9506,17 @@ "id": "w611", "tags": { "highway": "residential", - "name": "West Bennett Street" + "name": "Bennett Street" }, - "nodes": ["n2760", "n3353", "n2773", "n3378"] + "nodes": ["n2768", "n3194", "n3210", "n3753", "n2760", "n3353", "n2773", "n3378"] }, "w612": { "id": "w612", "tags": { "highway": "residential", - "name": "East Prutzman Street" + "name": "Market Street" }, - "nodes": ["n2751", "n3383", "n2749"] + "nodes": ["n2751", "n3383", "n2749", "n2798", "n2772"] }, "w613": { "id": "w613", @@ -10584,11 +9535,7 @@ "w615": { "id": "w615", "tags": { - "amenity": "place_of_worship", - "building": "church", - "denomination": "methodist", - "name": "First United Methodist Church", - "religion": "christian" + "building": "yes" }, "nodes": [ "n3393", @@ -10614,7 +9561,7 @@ "id": "w616", "tags": { "amenity": "school", - "name": "Hoppin School" + "name": "Three Rivers Elementary School" }, "nodes": ["n3376", "n3407", "n3408", "n3377", "n3376"] }, @@ -10636,23 +9583,6 @@ "id": "n3417", "loc": [-85.619899, 41.945527] }, - "n3418": { - "id": "n3418", - "loc": [-85.621944, 41.945556], - "tags": { - "amenity": "place_of_worship", - "name": "Grant Chapel", - "religion": "christian" - } - }, - "n3419": { - "id": "n3419", - "loc": [-85.620278, 41.946111], - "tags": { - "building": "yes", - "name": "George Washington Carver Community Center" - } - }, "n3420": { "id": "n3420", "loc": [-85.620088, 41.945571] @@ -10981,7 +9911,7 @@ "id": "w619", "tags": { "highway": "secondary", - "name": "East Michigan Avenue", + "name": "Michigan Avenue", "ref": "M 60" }, "nodes": ["n2863", "n3424", "n3425", "n3426", "n3427", "n3428", "n3429", "n3430", "n3431", "n3432", "n3433", "n2844"] @@ -11099,7 +10029,7 @@ "id": "w626", "tags": { "highway": "unclassified", - "name": "East Michigan Avenue", + "name": "Michigan Avenue", "name_1": "State Highway 60" }, "nodes": ["n3439", "n3423", "n2863"] @@ -11132,51 +10062,27 @@ }, "n3503": { "id": "n3503", - "loc": [-85.62965, 41.954687] + "loc": [-85.629677, 41.954687] }, "n3504": { "id": "n3504", - "loc": [-85.629083, 41.953723] - }, - "n3505": { - "id": "n3505", - "loc": [-85.629768, 41.952469] - }, - "n3506": { - "id": "n3506", - "loc": [-85.629652, 41.952563] + "loc": [-85.629083, 41.953722] }, "n3507": { "id": "n3507", - "loc": [-85.629676, 41.95372] + "loc": [-85.629665, 41.953718] }, "n3508": { "id": "n3508", "loc": [-85.624454, 41.954707] }, - "w629": { - "id": "w629", - "tags": { - "highway": "residential", - "name": "East Wheeler Street" - }, - "nodes": ["n2745", "n3505", "n3204", "n3201", "n3415", "n2761"] - }, "w630": { "id": "w630", "tags": { "highway": "residential", - "name": "East Hoffman Street" + "name": "Hoffman Street" }, - "nodes": ["n2757", "n3414", "n3202", "n3206", "n3503", "n1629", "n2763", "n2764", "n3508"] - }, - "w631": { - "id": "w631", - "tags": { - "highway": "residential", - "name": "East Cushman Street" - }, - "nodes": ["n2766", "n3504", "n3507", "n3205", "n3196"] + "nodes": ["n2757", "n3414", "n3202", "n3206", "n3750", "n3503", "n1629", "n2763", "n2764", "n3508"] }, "w632": { "id": "w632", @@ -11184,7 +10090,7 @@ "highway": "residential", "name": "Cushman Street" }, - "nodes": ["n3196", "n3410", "n2746"] + "nodes": ["n2766", "n3504", "n3507", "n3751", "n3205", "n3196", "n3410", "n2746"] }, "w633": { "id": "w633", @@ -11192,7 +10098,7 @@ "highway": "residential", "name": "Pine Street" }, - "nodes": ["n2745", "n3506", "n3507", "n3503"] + "nodes": ["n2745", "n3749", "n3507", "n3503"] }, "n3509": { "id": "n3509", @@ -11237,11 +10143,7 @@ "w635": { "id": "w635", "tags": { - "amenity": "place_of_worship", - "building": "yes", - "denomination": "baptist", - "name": "Calvary Missionary Baptist Church", - "religion": "christian" + "building": "yes" }, "nodes": ["n3513", "n3514", "n3515", "n3516", "n3513"] }, @@ -11249,9 +10151,9 @@ "id": "w636", "tags": { "highway": "residential", - "name": "West Wheeler Street" + "name": "Wheeler Street" }, - "nodes": ["n2761", "n2767", "n3411"] + "nodes": ["n2745", "n3752", "n3204", "n3201", "n3415", "n2761", "n2767", "n3411"] }, "n3517": { "id": "n3517", @@ -12006,7 +10908,7 @@ "tags": { "bridge": "yes", "highway": "residential", - "name": "East Hoffman Street" + "name": "Hoffman Street" }, "nodes": ["n3508", "n3518"] }, @@ -12014,7 +10916,7 @@ "id": "w639", "tags": { "highway": "residential", - "name": "East Hoffman Street" + "name": "Hoffman Street" }, "nodes": ["n3518", "n1204", "n2862", "n3519", "n3520", "n3521", "n3522", "n3523", "n3524", "n3549", "n3552", "n3551", "n3473"] }, @@ -12444,125 +11346,9 @@ "place": "city", "type": "boundary" }, - "members": [ - { - "id": "w642", - "type": "way", - "role": "outer" - }, - { - "id": "w34369821", - "type": "way", - "role": "outer" - }, - { - "id": "w34369822", - "type": "way", - "role": "outer" - }, - { - "id": "w34369823", - "type": "way", - "role": "outer" - }, - { - "id": "w34369824", - "type": "way", - "role": "outer" - }, - { - "id": "w34369810", - "type": "way", - "role": "inner" - }, - { - "id": "w34369815", - "type": "way", - "role": "inner" - }, - { - "id": "w34369820", - "type": "way", - "role": "inner" - } - ] - }, - "n3744": { - "id": "n3744", - "loc": [-85.640077, 41.956776] - }, - "n3745": { - "id": "n3745", - "loc": [-85.639902, 41.956715] - }, - "n3746": { - "id": "n3746", - "loc": [-85.640004, 41.956553] - }, - "n3747": { - "id": "n3747", - "loc": [-85.640179, 41.956614] - }, - "n3748": { - "id": "n3748", - "loc": [-85.639769, 41.957235] - }, - "n3749": { - "id": "n3749", - "loc": [-85.639923, 41.956983] - }, - "n3750": { - "id": "n3750", - "loc": [-85.639706, 41.95691] - }, - "n3751": { - "id": "n3751", - "loc": [-85.639552, 41.957162] - }, - "n3752": { - "id": "n3752", - "loc": [-85.639103, 41.956952] - }, - "n3753": { - "id": "n3753", - "loc": [-85.639288, 41.956646] - }, - "n3754": { - "id": "n3754", - "loc": [-85.639484, 41.956712] - }, - "n3755": { - "id": "n3755", - "loc": [-85.639432, 41.956797] - }, - "n3756": { - "id": "n3756", - "loc": [-85.639372, 41.956777] - }, - "n3757": { - "id": "n3757", - "loc": [-85.639239, 41.956997] - }, - "w643": { - "id": "w643", - "tags": { - "building": "yes" - }, - "nodes": ["n3748", "n3749", "n3750", "n3751", "n3748"] - }, - "w644": { - "id": "w644", - "tags": { - "building": "yes" - }, - "nodes": ["n3744", "n3745", "n3746", "n3747", "n3744"] - }, - "w645": { - "id": "w645", - "tags": { - "building": "yes" - }, - "nodes": ["n3752", "n3753", "n3754", "n3755", "n3756", "n3757", "n3752"] + "members": [{ + "id": "w642", "type": "way", "role": "outer" + }] }, "n3758": { "id": "n3758", @@ -12572,78 +11358,6 @@ "id": "n3759", "loc": [-85.627019, 41.957369] }, - "n3760": { - "id": "n3760", - "loc": [-85.62529, 41.958568] - }, - "n3761": { - "id": "n3761", - "loc": [-85.624962, 41.958453] - }, - "n3762": { - "id": "n3762", - "loc": [-85.624832, 41.958399] - }, - "n3763": { - "id": "n3763", - "loc": [-85.624707, 41.958325] - }, - "n3764": { - "id": "n3764", - "loc": [-85.624636, 41.958251] - }, - "n3765": { - "id": "n3765", - "loc": [-85.624578, 41.95818] - }, - "n3766": { - "id": "n3766", - "loc": [-85.624533, 41.958099] - }, - "n3767": { - "id": "n3767", - "loc": [-85.624507, 41.957985] - }, - "n3768": { - "id": "n3768", - "loc": [-85.624495, 41.957807] - }, - "n3769": { - "id": "n3769", - "loc": [-85.624514, 41.957663] - }, - "n3770": { - "id": "n3770", - "loc": [-85.624577, 41.957593] - }, - "n3771": { - "id": "n3771", - "loc": [-85.624685, 41.95754] - }, - "n3772": { - "id": "n3772", - "loc": [-85.624802, 41.957523] - }, - "n3773": { - "id": "n3773", - "loc": [-85.624996, 41.957524] - }, - "n3774": { - "id": "n3774", - "loc": [-85.625409, 41.957515] - }, - "n3775": { - "id": "n3775", - "loc": [-85.625634, 41.957496] - }, - "n3776": { - "id": "n3776", - "loc": [-85.625832, 41.957453] - }, - "n3777": { - "id": "n3777", - "loc": [-85.626044, 41.957394] - }, "n3778": { "id": "n3778", "loc": [-85.626158, 41.958996] @@ -12668,46 +11382,13 @@ "id": "n3783", "loc": [-85.626048, 41.958965] }, - "n3784": { - "id": "n3784", - "loc": [-85.628404, 41.957438] - }, "w646": { "id": "w646", "tags": { "highway": "residential", "name": "Flower Street" }, - "nodes": ["n2752", "n3759", "n1420", "n1421", "n1422", "n3758", "n3784", "n3199", "n3200", "n3412"] - }, - "w647": { - "id": "w647", - "tags": { - "highway": "residential", - "name": "Azaleamum Drive" - }, - "nodes": [ - "n2771", - "n3760", - "n3761", - "n3762", - "n3763", - "n3764", - "n3765", - "n3766", - "n3767", - "n3768", - "n3769", - "n3770", - "n3771", - "n3772", - "n3773", - "n3774", - "n3775", - "n3776", - "n3777", - "n2770" - ] + "nodes": ["n2752", "n3759", "n1420", "n1421", "n1422", "n3758", "n3199", "n3200", "n3412"] }, "w648": { "id": "w648", @@ -12729,7 +11410,7 @@ "id": "w650", "tags": { "highway": "residential", - "name": "East Adams Street" + "name": "Adams Street" }, "nodes": ["n3207", "n3203", "n3413", "n2762"] }, @@ -12924,189 +11605,6 @@ }, "nodes": ["n3798", "n3806", "n3807", "n3808"] }, - "n3813": { - "id": "n3813", - "loc": [-85.618483, 41.960025] - }, - "n3814": { - "id": "n3814", - "loc": [-85.616863, 41.960583] - }, - "n3815": { - "id": "n3815", - "loc": [-85.619738, 41.961716] - }, - "n3816": { - "id": "n3816", - "loc": [-85.619888, 41.962083] - }, - "n3817": { - "id": "n3817", - "loc": [-85.619695, 41.96194] - }, - "n3818": { - "id": "n3818", - "loc": [-85.61903, 41.96095] - }, - "n3819": { - "id": "n3819", - "loc": [-85.618047, 41.960979] - }, - "n3820": { - "id": "n3820", - "loc": [-85.620382, 41.960544] - }, - "n3821": { - "id": "n3821", - "loc": [-85.620156, 41.960328] - }, - "n3822": { - "id": "n3822", - "loc": [-85.617045, 41.959889] - }, - "n3823": { - "id": "n3823", - "loc": [-85.617764, 41.959849] - }, - "n3824": { - "id": "n3824", - "loc": [-85.619523, 41.961014] - }, - "n3825": { - "id": "n3825", - "loc": [-85.618118, 41.962793] - }, - "n3826": { - "id": "n3826", - "loc": [-85.617463, 41.962897] - }, - "n3827": { - "id": "n3827", - "loc": [-85.617034, 41.963088] - }, - "n3828": { - "id": "n3828", - "loc": [-85.61947, 41.960192] - }, - "n3829": { - "id": "n3829", - "loc": [-85.620772, 41.961067] - }, - "n3830": { - "id": "n3830", - "loc": [-85.620232, 41.962211] - }, - "n3831": { - "id": "n3831", - "loc": [-85.61845, 41.962466] - }, - "n3832": { - "id": "n3832", - "loc": [-85.617893, 41.962849] - }, - "n3833": { - "id": "n3833", - "loc": [-85.617335, 41.959802] - }, - "n3834": { - "id": "n3834", - "loc": [-85.618622, 41.96091] - }, - "n3835": { - "id": "n3835", - "loc": [-85.617592, 41.960831] - }, - "n3836": { - "id": "n3836", - "loc": [-85.616777, 41.96332] - }, - "n3837": { - "id": "n3837", - "loc": [-85.619856, 41.961461] - }, - "n3838": { - "id": "n3838", - "loc": [-85.620822, 41.962019] - }, - "n3839": { - "id": "n3839", - "loc": [-85.618311, 41.961254] - }, - "n3840": { - "id": "n3840", - "loc": [-85.618365, 41.962642] - }, - "n3841": { - "id": "n3841", - "loc": [-85.6205, 41.960855] - }, - "n3842": { - "id": "n3842", - "loc": [-85.618493, 41.962139] - }, - "n3843": { - "id": "n3843", - "loc": [-85.620693, 41.962115] - }, - "n3844": { - "id": "n3844", - "loc": [-85.617088, 41.960735] - }, - "n3845": { - "id": "n3845", - "loc": [-85.61683, 41.960121] - }, - "n3846": { - "id": "n3846", - "loc": [-85.619813, 41.96123] - }, - "n3847": { - "id": "n3847", - "loc": [-85.616798, 41.960376] - }, - "n3848": { - "id": "n3848", - "loc": [-85.620586, 41.961046] - }, - "n3849": { - "id": "n3849", - "loc": [-85.618054, 41.965554] - }, - "n3850": { - "id": "n3850", - "loc": [-85.618107, 41.965921] - }, - "n3851": { - "id": "n3851", - "loc": [-85.616895, 41.964453] - }, - "n3852": { - "id": "n3852", - "loc": [-85.617292, 41.96462] - }, - "n3853": { - "id": "n3853", - "loc": [-85.617807, 41.965043] - }, - "n3854": { - "id": "n3854", - "loc": [-85.616691, 41.964269] - }, - "n3855": { - "id": "n3855", - "loc": [-85.616541, 41.963687] - }, - "n3856": { - "id": "n3856", - "loc": [-85.616519, 41.963942] - }, - "w658": { - "id": "w658", - "tags": { - "waterway": "river" - }, - "nodes": ["n3819", "n3834", "n3818", "n3824", "n3846", "n3837", "n3815", "n3817", "n3816", "n3830", "n3843", "n3838", "n3609"] - }, "n3857": { "id": "n3857", "loc": [-85.618937, 41.951943] @@ -13117,11 +11615,11 @@ }, "n3859": { "id": "n3859", - "loc": [-85.616773, 41.954737] + "loc": [-85.616854, 41.954737] }, "n3860": { "id": "n3860", - "loc": [-85.616699, 41.954742] + "loc": [-85.616485, 41.95474] }, "n3861": { "id": "n3861", @@ -13579,14 +12077,6 @@ "id": "n3974", "loc": [-85.61981, 41.951041] }, - "n3975": { - "id": "n3975", - "loc": [-85.611651, 41.954761] - }, - "n3976": { - "id": "n3976", - "loc": [-85.614195, 41.954754] - }, "n3977": { "id": "n3977", "loc": [-85.617375, 41.947559] @@ -13595,10 +12085,6 @@ "id": "n3978", "loc": [-85.617416, 41.95108] }, - "n3979": { - "id": "n3979", - "loc": [-85.613542, 41.954756] - }, "n3980": { "id": "n3980", "loc": [-85.610238, 41.954774] @@ -13782,9 +12268,7 @@ "w668": { "id": "w668", "tags": { - "amenity": "school", - "building": "yes", - "name": "Three Rivers Middle School" + "building": "school" }, "nodes": [ "n3900", @@ -13836,10 +12320,10 @@ "id": "w670", "tags": { "highway": "secondary", - "name": "East Hoffman Street", + "name": "Hoffman Street", "ref": "M 60" }, - "nodes": ["n3473", "n3859", "n3860", "n3976", "n3979", "n3975", "n3980"] + "nodes": ["n3473", "n3859", "n3860", "n3980"] }, "w671": { "id": "w671", @@ -13984,126 +12468,10 @@ "tags": { "access": "private", "highway": "service", - "name": "Manistee River Road" + "name": "River Road" }, "nodes": ["n3808", "n4008", "n3805", "n3809", "n3804", "n4009", "n4010"] }, - "w1": { - "tags": { - "name": "Rocky River", - "waterway": "river" - }, - "id": "w1", - "nodes": [ - "n2187", - "n2209", - "n2215", - "n2184", - "n2212", - "n2190", - "n2202", - "n2206", - "n2175", - "n2167", - "n2203", - "n2214", - "n2173", - "n2163", - "n2176", - "n2208", - "n2185", - "n2207", - "n2161", - "n2160", - "n2195", - "n2174", - "n2182", - "n2191", - "n2194", - "n2193", - "n2165", - "n2172", - "n2201", - "n2197", - "n2178", - "n39", - "n2199", - "n40", - "n2181", - "n2198", - "n2168", - "n2192", - "n2166", - "n2213", - "n2171", - "n2183", - "n2180", - "n2205", - "n2177", - "n2179", - "n2218", - "n2200", - "n2188", - "n2169", - "n2196", - "n2162", - "n2170", - "n2211", - "n2216", - "n2204", - "n2220", - "n2164", - "n2210", - "n2217", - "n2189", - "n460", - "n453", - "n2282" - ] - }, - "w2": { - "tags": { - "name": "Portage River", - "waterway": "river" - }, - "id": "w2", - "nodes": [ - "n3850", - "n3849", - "n3853", - "n3852", - "n3851", - "n3854", - "n3856", - "n3855", - "n3836", - "n3827", - "n3826", - "n3832", - "n3825", - "n3840", - "n3831", - "n3842", - "n3839", - "n3819", - "n3835", - "n3844", - "n3814", - "n3847", - "n3845", - "n3822", - "n3833", - "n3823", - "n3813", - "n3828", - "n3821", - "n3820", - "n3841", - "n3848", - "n3829", - "n3695" - ] - }, "n4": { "id": "n4", "loc": [-85.62276, 41.951784] @@ -14236,14 +12604,6 @@ "id": "n37", "loc": [-85.637611, 41.945383] }, - "n39": { - "id": "n39", - "loc": [-85.638967, 41.948541] - }, - "n40": { - "id": "n40", - "loc": [-85.638786, 41.948323] - }, "n41": { "id": "n41", "loc": [-85.636233, 41.942764] @@ -19134,7 +17494,7 @@ "cuisine": "pizza", "amenity": "restaurant", "addr:housenumber": "401", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19235,9 +17595,9 @@ "id": "n907", "tags": { "shop": "pawnbroker", - "name": "Hock It To Me", + "name": "Gem Pawnbroker", "addr:housenumber": "416", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19256,9 +17616,9 @@ "id": "n909", "tags": { "shop": "car_repair", - "name": "Brokers Service", + "name": "William Towing", "addr:housenumber": "500", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093", @@ -19278,7 +17638,7 @@ "cuisine": "coffee_shop", "name": "L.A.'s Coffee Cafe", "addr:housenumber": "145", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093", @@ -19328,7 +17688,7 @@ "office": "insurance", "name": "Preferred Insurance Services", "addr:housenumber": "132", - "addr:street": "West Michigan Avenue", + "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19341,7 +17701,7 @@ "shop": "car_repair", "name": "Lynn's Garage", "addr:housenumber": "101", - "addr:street": "South Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093", @@ -19614,9 +17974,9 @@ "id": "n957", "tags": { "office": "employment_agency", - "name": "Access Point", + "name": "Access Point Employment", "addr:housenumber": "5", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19627,9 +17987,9 @@ "id": "n958", "tags": { "shop": "second_hand", - "name": "The Pink Paisley Poppy Emporium", + "name": "Paisley Emporium", "addr:housenumber": "6", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19640,9 +18000,9 @@ "id": "n959", "tags": { "shop": "books", - "name": "Lowry's Books & More", + "name": "Lowry's Books", "addr:housenumber": "22", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19656,7 +18016,7 @@ "amenity": "restaurant", "cuisine": "pizza", "addr:housenumber": "16", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19671,7 +18031,7 @@ "cuisine": "american", "internet_access": "yes", "addr:housenumber": "13", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19682,9 +18042,9 @@ "id": "n962", "tags": { "leisure": "fitness_centre", - "name": "Main Street Fit-Ness", + "name": "Main Street Fitness", "addr:housenumber": "28", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19695,9 +18055,9 @@ "id": "n963", "tags": { "leisure": "fitness_centre", - "name": "Main Street Bar-Bell", + "name": "Main Street Barbell", "addr:housenumber": "27", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19974,7 +18334,7 @@ "shop": "paint", "name": "Sherwin-Williams", "addr:housenumber": "31", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -19985,9 +18345,9 @@ "id": "n1011", "tags": { "shop": "jewelry", - "name": "UniQ Jewelry", + "name": "Unique Jewelry", "addr:housenumber": "33", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20000,7 +18360,7 @@ "shop": "gift", "name": "World Fare", "addr:housenumber": "37", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20011,9 +18371,9 @@ "id": "n1013", "tags": { "shop": "frame", - "name": "Golden Finch Frame & Gallery", + "name": "Golden Finch Framing", "addr:housenumber": "62", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20024,9 +18384,9 @@ "id": "n1014", "tags": { "shop": "second_hand", - "name": "Centsible Treasures", + "name": "Dollar Tree", "addr:housenumber": "58", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20039,7 +18399,7 @@ "amenity": "theatre", "name": "Riviera Theatre", "addr:housenumber": "48", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20052,7 +18412,7 @@ "shop": "appliance", "name": "River City Appliance", "addr:housenumber": "42", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20065,7 +18425,7 @@ "shop": "tattoo", "name": "Paparazzi Tattoo", "addr:housenumber": "45", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20076,9 +18436,9 @@ "id": "n1018", "tags": { "amenity": "bank", - "name": "Southern Michigan Bank & Trust", + "name": "Southern Michigan Bank", "addr:housenumber": "88", - "addr:street": "North Main Street", + "addr:street": "Main Street", "addr:city": "Three Rivers", "addr:state": "MI", "addr:postcode": "49093" @@ -20161,47 +18521,11 @@ "w221": { "tags": { "highway": "tertiary", - "name": "South Constantine Street" + "name": "Constantine Street" }, "id": "w221", "nodes": ["n2080", "n1828", "n1863", "n1829"] }, - "n1029": { - "id": "n1029", - "loc": [-85.638727, 41.938172] - }, - "w222": { - "tags": { - "highway": "residential", - "name": "South Hook Avenue" - }, - "id": "w222", - "nodes": ["n1029", "n1644"] - }, - "n1030": { - "id": "n1030", - "loc": [-85.639991, 41.938176] - }, - "w223": { - "tags": { - "highway": "residential", - "name": "South Lincoln Avenue" - }, - "id": "w223", - "nodes": ["n1030", "n1635"] - }, - "n1031": { - "id": "n1031", - "loc": [-85.64114, 41.938145] - }, - "w224": { - "tags": { - "highway": "residential", - "name": "South Grant Avenue" - }, - "id": "w224", - "nodes": ["n1031", "n1632"] - }, "w225": { "id": "w225", "nodes": [ @@ -20251,9 +18575,11 @@ "n2107", "n2141", "n2124", + "n3754", "n2121", "n2105", "n2108", + "n3755", "n2128", "n2110", "n2152", @@ -20329,9 +18655,7 @@ "w227": { "tags": { "highway": "secondary", - "name": "South Main Street", - "old_ref": "US 131", - "ref": "M 86" + "name": "Main Street" }, "id": "w227", "nodes": ["n2994", "n3012", "n3011", "n2958"] @@ -20339,9 +18663,7 @@ "w228": { "tags": { "highway": "primary", - "name": "North Main Street", - "old_ref": "US 131", - "ref": "US 131 Business" + "name": "Main Street" }, "id": "w228", "nodes": [ @@ -23965,6 +22287,334 @@ "service": "alley", "surface": "unpaved" } + }, + "n1029": { + "loc": [-85.640655, 41.942057], + "id": "n1029" + }, + "w222": { + "id": "w222", + "nodes": ["n1029", "n1030", "n1031"], + "tags": { + "highway": "service" + } + }, + "n1030": { + "loc": [-85.640947, 41.942057], + "id": "n1030" + }, + "n1031": { + "loc": [-85.640957, 41.942593], + "id": "n1031" + }, + "n1632": { + "id": "n1632", + "loc": [-85.643407, 41.942336] + }, + "n1634": { + "id": "n1634", + "loc": [-85.643322, 41.942224] + }, + "n1635": { + "id": "n1635", + "loc": [-85.643301, 41.942124] + }, + "n1640": { + "id": "n1640", + "loc": [-85.64371, 41.942302] + }, + "n1644": { + "id": "n1644", + "loc": [-85.643549, 41.942209] + }, + "n1811": { + "id": "n1811", + "loc": [-85.643529, 41.94217] + }, + "n1830": { + "loc": [-85.643532, 41.94204], + "id": "n1830" + }, + "n1836": { + "loc": [-85.643482, 41.941976], + "id": "n1836" + }, + "n1837": { + "loc": [-85.64345, 41.941945], + "id": "n1837" + }, + "n1848": { + "loc": [-85.643397, 41.941924], + "id": "n1848" + }, + "n2891": { + "loc": [-85.643236, 41.941895], + "id": "n2891" + }, + "n3394": { + "id": "n3394", + "loc": [-85.64344, 41.941866] + }, + "n3409": { + "id": "n3409", + "loc": [-85.643327, 41.941903] + }, + "n3418": { + "id": "n3418", + "loc": [-85.643422, 41.941946] + }, + "n3419": { + "id": "n3419", + "loc": [-85.643505, 41.942033] + }, + "n3744": { + "id": "n3744", + "loc": [-85.643386, 41.941933] + }, + "n3745": { + "loc": [-85.642776, 41.941161], + "id": "n3745" + }, + "w223": { + "tags": { + "name": "Rocky River", + "waterway": "river" + }, + "id": "w223", + "nodes": [ + "n2213", + "n2171", + "n2183", + "n2180", + "n2205", + "n2177", + "n2179", + "n2218", + "n2200", + "n2188", + "n2169", + "n2196", + "n2162", + "n2170", + "n2211", + "n2216", + "n2204", + "n2220", + "n2164", + "n2210", + "n2217", + "n2189", + "n460", + "n453", + "n2282" + ] + }, + "n3746": { + "id": "n3746", + "loc": [-85.637277, 41.948812] + }, + "n3747": { + "id": "n3747", + "loc": [-85.637366, 41.94897] + }, + "n3748": { + "id": "n3748", + "loc": [-85.637329, 41.94889] + }, + "n3749": { + "id": "n3749", + "loc": [-85.629649, 41.952596] + }, + "n3750": { + "loc": [-85.630291, 41.954684], + "id": "n3750" + }, + "w224": { + "id": "w224", + "nodes": ["n3750", "n3751", "n3752"], + "tags": { + "highway": "service", + "service": "alley", + "surface": "unpaved" + } + }, + "n3751": { + "loc": [-85.630284, 41.953713], + "id": "n3751" + }, + "n3752": { + "loc": [-85.630269, 41.952463], + "id": "n3752" + }, + "n3753": { + "loc": [-85.633933, 41.949896], + "id": "n3753" + }, + "n3754": { + "id": "n3754", + "loc": [-85.629339, 41.941467] + }, + "n3755": { + "id": "n3755", + "loc": [-85.629857, 41.94316] + }, + "n3756": { + "id": "n3756", + "loc": [-85.629987, 41.944025] + }, + "n3757": { + "loc": [-85.628538, 41.948604], + "id": "n3757" + }, + "n3813": { + "loc": [-85.628479, 41.948649], + "id": "n3813" + }, + "n3814": { + "loc": [-85.628413, 41.948679], + "id": "n3814" + }, + "n3815": { + "loc": [-85.628336, 41.948694], + "id": "n3815" + }, + "n3816": { + "loc": [-85.62826, 41.948694], + "id": "n3816" + }, + "n3817": { + "loc": [-85.628185, 41.948679], + "id": "n3817" + }, + "n3818": { + "loc": [-85.628103, 41.948649], + "id": "n3818" + }, + "n3819": { + "loc": [-85.627482, 41.948395], + "id": "n3819" + }, + "n3820": { + "loc": [-85.619957, 41.951168], + "id": "n3820" + }, + "w364": { + "tags": { + "amenity": "school", + "name": "Three Rivers Middle School" + }, + "id": "w364", + "nodes": [ + "n3820", + "n3821", + "n3822", + "n3823", + "n3824", + "n3825", + "n3826", + "n3827", + "n3828", + "n3829", + "n3830", + "n3838", + "n3839", + "n3820" + ] + }, + "n3821": { + "loc": [-85.619955, 41.952077], + "id": "n3821" + }, + "n3822": { + "loc": [-85.619843, 41.952666], + "id": "n3822" + }, + "n3823": { + "loc": [-85.619513, 41.95324], + "id": "n3823" + }, + "n3824": { + "loc": [-85.619163, 41.953668], + "id": "n3824" + }, + "n3825": { + "loc": [-85.618813, 41.953947], + "id": "n3825" + }, + "n3826": { + "loc": [-85.618265, 41.954252], + "id": "n3826" + }, + "n3827": { + "loc": [-85.617691, 41.954458], + "id": "n3827" + }, + "n3828": { + "loc": [-85.616978, 41.95459], + "id": "n3828" + }, + "n3829": { + "loc": [-85.615408, 41.954628], + "id": "n3829" + }, + "n3830": { + "loc": [-85.615374, 41.951076], + "id": "n3830" + }, + "w371": { + "tags": { + "amenity": "school", + "name": "Three Rivers High School" + }, + "id": "w371", + "nodes": ["n3836", "n3835", "n3831", "n3834", "n3832", "n3833", "n3830", "n3838", "n3839", "n3837", "n3836"] + }, + "n3831": { + "loc": [-85.61932, 41.947564], + "id": "n3831" + }, + "n3832": { + "loc": [-85.610553, 41.94755], + "id": "n3832" + }, + "n3833": { + "loc": [-85.610572, 41.951065], + "id": "n3833" + }, + "w534": { + "id": "w534", + "nodes": ["n3836", "n3837", "n3839", "n3838", "n3834", "n3831", "n3835", "n3836"], + "tags": { + "barrier": "fence" + } + }, + "n3834": { + "loc": [-85.617548, 41.94757], + "id": "n3834" + }, + "n3835": { + "id": "n3835", + "loc": [-85.619842, 41.947939] + }, + "n3836": { + "loc": [-85.619874, 41.950905], + "id": "n3836" + }, + "n3837": { + "id": "n3837", + "loc": [-85.619695, 41.950911] + }, + "n3838": { + "id": "n3838", + "loc": [-85.617591, 41.951078] + }, + "n3839": { + "id": "n3839", + "loc": [-85.619551, 41.951065] + }, + "n3840": { + "loc": [-85.626813, 41.947337], + "id": "n3840" } } } diff --git a/dist/locales/en.json b/dist/locales/en.json index 1d08ec70d..ecfbf49e9 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -637,38 +637,121 @@ "done": "done", "ok": "OK", "graph": { - "azaleamum_drive": "Azaleamum Drive", - "city_hall": "Three Rivers City Hall", - "conrail_rr": "Conrail Railroad", - "e_michigan_ave": "East Michigan Avenue", - "east_st": "East Street", - "elm_st": "Elm Street", - "fire_department": "Three Rivers Fire Department", - "first_baptist_church": "First Baptist Church", - "flower_st": "Flower Street", - "foster_st": "Foster Street", - "memory_isle_park": "Memory Isle Park", - "millard_st": "Millard Street", - "morris_ave": "Morris Avenue", - "n_andrews_st": "North Andrews Street", - "n_constantine_st": "North Constantine Street", - "n_main_st": "North Main Street", - "petting_zoo": "Scidmore Park Petting Zoo", - "portage_ave": "Portage Avenue", - "portage_river": "Portage River", - "railroad_dr": "Railroad Drive", - "riverwalk_trail": "Riverwalk Trail", - "rocky_river": "Rocky River", - "s_andrews_st": "South Andrews Street", - "s_constantine_st": "South Constantine Street", - "s_main_st": "South Main Street", - "scidmore_park": "Scidmore Park", - "south_st": "South Street", - "spring_st": "Spring Street", - "st_joseph_river": "Saint Joseph River", - "w_michigan_ave": "West Michigan Avenue", - "walnut_st": "Walnut Street", - "water_st": "Water Street" + "city": "Three Rivers", + "state": "MI", + "postcode": "49093", + "name": { + "1st-avenue": "1st Avenue", + "2nd-avenue": "2nd Avenue", + "4th-avenue": "4th Avenue", + "5th-avenue": "5th Avenue", + "6th-avenue": "6th Avenue", + "6th-street": "6th Street", + "7th-avenue": "7th Avenue", + "8th-avenue": "8th Avenue", + "9th-avenue": "9th Avenue", + "10th-avenue": "10th Avenue", + "11th-avenue": "11th Avenue", + "access-point-employment": "Access Point Employment", + "adams-street": "Adams Street", + "andrews-elementary-school": "Andrews Elementary School", + "andrews-street": "Andrews Street", + "armitage-street": "Armitage Street", + "barrows-school": "Barrows School", + "battle-street": "Battle Street", + "bennett-street": "Bennett Street", + "bowman-park": "Bowman Park", + "collins-drive": "Collins Drive", + "conrail-railroad": "Conrail Railroad", + "conservation-park": "Conservation Park", + "constantine-street": "Constantine Street", + "cushman-street": "Cushman Street", + "dollar-tree": "Dollar Tree", + "douglas-avenue": "Douglas Avenue", + "east-street": "East Street", + "elm-street": "Elm Street", + "flower-street": "Flower Street", + "foster-street": "Foster Street", + "french-street": "French Street", + "garden-street": "Garden Street", + "gem-pawnbroker": "Gem Pawnbroker", + "golden-finch-framing": "Golden Finch Framing", + "grant-avenue": "Grant Avenue", + "hoffman-pond": "Hoffman Pond", + "hoffman-street": "Hoffman Street", + "hook-avenue": "Hook Avenue", + "jefferson-street": "Jefferson Street", + "kelsey-street": "Kelsey Street", + "lafayette-park": "LaFayette Park", + "las-coffee-cafe": "L.A.'s Coffee Cafe", + "lincoln-avenue": "Lincoln Avenue", + "lowrys-books": "Lowry's Books", + "lynns-garage": "Lynn's Garage", + "main-street-barbell": "Main Street Barbell", + "main-street-cafe": "Main Street Cafe", + "main-street-fitness": "Main Street Fitness", + "main-street": "Main Street", + "maple-street": "Maple Street", + "marina-park": "Marina Park", + "market-street": "Market Street", + "memory-isle-park": "Memory Isle Park", + "memory-isle": "Memory Isle", + "michigan-avenue": "Michigan Avenue", + "middle-street": "Middle Street", + "millard-street": "Millard Street", + "moore-street": "Moore Street", + "morris-avenue": "Morris Avenue", + "mural-mall": "Mural Mall", + "paisanos-bar-and-grill": "Paisano's Bar and Grill", + "paisley-emporium": "Paisley Emporium", + "paparazzi-tattoo": "Paparazzi Tattoo", + "pealer-street": "Pealer Street", + "pine-river-road": "Pine River Road", + "pine-street": "Pine Street", + "pizza-hut": "Pizza Hut", + "portage-avenue": "Portage Avenue", + "portage-river": "Portage River", + "preferred-insurance-services": "Preferred Insurance Services", + "railroad-drive": "Railroad Drive", + "raisin-river-road": "Raisin River Road", + "river-city-appliance": "River City Appliance", + "river-drive": "River Drive", + "river-road": "River Road", + "river-street": "River Street", + "riverside-cemetery": "Riverside Cemetery", + "riverwalk-trail": "Riverwalk Trail", + "riviera-theatre": "Riviera Theatre", + "rocky-river": "Rocky River", + "sable-river-road": "Sable River Road", + "saint-joseph-river": "Saint Joseph River", + "scidmore-park-petting-zoo": "Scidmore Park Petting Zoo", + "scidmore-park": "Scidmore Park", + "scouter-park": "Scouter Park", + "sherwin-williams": "Sherwin-Williams", + "shiawassee-river-road": "Shiawassee River Road", + "south-street": "South Street", + "southern-michigan-bank": "Southern Michigan Bank", + "spring-street": "Spring Street", + "sturgeon-river-road": "Sturgeon River Road", + "three-rivers-city-hall": "Three Rivers City Hall", + "three-rivers-elementary-school": "Three Rivers Elementary School", + "three-rivers-fire-department": "Three Rivers Fire Department", + "three-rivers-high-school": "Three Rivers High School", + "three-rivers-middle-school": "Three Rivers Middle School", + "three-rivers-post-office": "Three Rivers Post Office", + "three-rivers-public-library": "Three Rivers Public Library", + "three-rivers": "Three Rivers", + "unique-jewelry": "Unique Jewelry", + "walnut-street": "Walnut Street", + "washington-street": "Washington Street", + "water-street": "Water Street", + "west-street": "West Street", + "wheeler-street": "Wheeler Street", + "william-towing": "William Towing", + "willow-drive": "Willow Drive", + "wood-street": "Wood Street", + "world-fare": "World Fare" + } }, "welcome": { "title": "Welcome", @@ -741,7 +824,7 @@ "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", "retry_square": "You didn't click the Square button. Try again.", "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", - "add_tank": "Let's trace this circular storage tank. **Click the {button} Area button to add a new area.**", + "add_tank": "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**", "search_tank": "**Search for '{name}'**", diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index ece82a063..8578a3856 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -60,13 +60,13 @@ export function uiIntroLine(context, reveal) { lineId = null; - var padding = 100 * Math.pow(2, context.map().zoom() - 18); + var padding = 70 * Math.pow(2, context.map().zoom() - 18); var box = pad(start, padding, context); box.height = box.height + 100; reveal(box, t('intro.lines.start')); context.map().on('move.intro drawn.intro', function() { - padding = 100 * Math.pow(2, context.map().zoom() - 18); + padding = 70 * Math.pow(2, context.map().zoom() - 18); box = pad(start, padding, context); box.height = box.height + 100; reveal(box, t('intro.lines.start'), { duration: 0 }); @@ -98,7 +98,7 @@ export function uiIntroLine(context, reveal) { var box = pad(midpoint, padding, context); box.height = box.height * 2; reveal(box, - t('intro.lines.intersect', { name: t('intro.graph.flower_st') }) + t('intro.lines.intersect', { name: t('intro.graph.name.flower-street') }) ); context.map().on('move.intro drawn.intro', function() { @@ -106,7 +106,7 @@ export function uiIntroLine(context, reveal) { box = pad(midpoint, padding, context); box.height = box.height * 2; reveal(box, - t('intro.lines.intersect', { name: t('intro.graph.flower_st') }), + t('intro.lines.intersect', { name: t('intro.graph.name.flower-street') }), { duration: 0 } ); }); @@ -126,7 +126,7 @@ export function uiIntroLine(context, reveal) { return; else if (mode.id === 'select') { var box = pad(intersection, 80, context); - reveal(box, t('intro.lines.restart', { name: t('intro.graph.flower_st') })); + reveal(box, t('intro.lines.restart', { name: t('intro.graph.name.flower-street') })); d3.select(window).on('mousedown.intro', eventCancel, true); timeout(chapter.restart, 3000); return; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 8b91c3689..88468e74a 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -140,7 +140,7 @@ export function uiIntroNavigation(context, reveal) { context.history().reset('initial'); // ensure spring street exists reveal('.search-header input', - t('intro.navigation.search', { name: t('intro.graph.spring_st') })); + t('intro.navigation.search', { name: t('intro.graph.name.spring-street') })); d3.select('.search-header input') .on('keyup.intro', checkSearchResult); @@ -150,7 +150,7 @@ export function uiIntroNavigation(context, reveal) { function checkSearchResult() { var first = d3.select('.feature-list-item:nth-child(0n+2)'), // skip "No Results" item firstName = first.select('.entity-name'), - name = t('intro.graph.spring_st'); + name = t('intro.graph.name.spring-street'); if (!firstName.empty() && firstName.text() === name) { reveal(first.node(), t('intro.navigation.choose', { name: name })); @@ -178,7 +178,7 @@ export function uiIntroNavigation(context, reveal) { timeout(function() { reveal('.entity-editor-pane', t('intro.navigation.chosen', { - name: t('intro.graph.spring_st'), + name: t('intro.graph.name.spring-street'), button: icon('#icon-close', 'pre-text') }) ); From be73f1cddb7f7202732260c508ac45b6aea56cac Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 17:24:30 -0400 Subject: [PATCH 54/91] In area chapter, make sure user really added Description field --- data/core.yaml | 1 + dist/locales/en.json | 1 + modules/ui/intro/area.js | 23 ++++++++++++++++++++++- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/data/core.yaml b/data/core.yaml index c5f526039..de203c006 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -934,6 +934,7 @@ en: choose: "**Choose Playground from the list.**" add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" choose_field: "**Choose Description from the list.**" + retry_add_field: "You didn't select the Description field. Let's try again." describe: "**Add a description, then click the {button} button to close the feature editor.**" play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: diff --git a/dist/locales/en.json b/dist/locales/en.json index ecfbf49e9..f01c5334a 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -796,6 +796,7 @@ "choose": "**Choose Playground from the list.**", "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", "choose_field": "**Choose Description from the list.**", + "retry_add_field": "You didn't select the Description field. Let's try again.", "describe": "**Add a description, then click the {button} button to close the feature editor.**", "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 300ccf614..66ecb1539 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -186,7 +186,12 @@ export function uiIntroArea(context, reveal) { d3.select('div.combobox') .on('click.intro', function() { - continueTo(addDescription); + timeout(function() { + if (d3.select('.form-field-description').empty()) + continueTo(retryChooseDescription); + else + continueTo(addDescription); + }, 100); }); function continueTo(nextStep) { @@ -213,6 +218,22 @@ export function uiIntroArea(context, reveal) { } + function retryChooseDescription() { + context.on('exit.intro', function() { + return chapter.restart(); + }); + + reveal('.entity-editor-pane', t('intro.areas.retry_add_field'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(clickAddField); } + }); + + function continueTo(nextStep) { + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-line', From 36b90fa6538465bfdb076dad55a696e458ffae83 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 22:01:15 -0400 Subject: [PATCH 55/91] More adjustments to walkthrough language, timing --- data/core.yaml | 62 ++++++++++++++++---------------- dist/locales/en.json | 62 ++++++++++++++++---------------- modules/ui/curtain.js | 3 -- modules/ui/intro/area.js | 41 ++++++++++++--------- modules/ui/intro/building.js | 23 ++++++++---- modules/ui/intro/line.js | 66 +++++++++++++++++++++------------- modules/ui/intro/navigation.js | 16 +++++---- modules/ui/intro/point.js | 24 +++++++------ 8 files changed, 166 insertions(+), 131 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index de203c006..9956df22b 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -896,14 +896,14 @@ en: world-fare: World Fare welcome: title: "Welcome" - welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." - practice: "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved." - chapters: "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + welcome: "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap." + practice: "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved." + chapters: "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**" - selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." + selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**" search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" @@ -911,51 +911,51 @@ en: play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" - add: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" - place: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**" - search: "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**" - choose: "**Choose Cafe from the list.**" + add_point: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" + place_point: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**" + search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{name}'**" + choose_cafe: "**Choose {name} from the list.**" feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." add_name: "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" - close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" + add_close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" - close2: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" + update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" - undo: "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" - play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" + undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" + play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: title: "Areas" - add: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" - corner: "Areas are drawn by placing nodes that mark the boundary of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" - place: "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**" - search: "**Search for '{name}'.**" - choose: "**Choose Playground from the list.**" - add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" - choose_field: "**Choose Description from the list.**" - retry_add_field: "You didn't select the Description field. Let's try again." - describe: "**Add a description, then click the {button} button to close the feature editor.**" + add_playground: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" + start_playground: "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" + continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**" + search_playground: "**Search for '{name}'.**" + choose_playground: "**Choose {name} from the list.**" + add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" + choose_field: "**Choose {name} from the list.**" + retry_add_field: "You didn't select the {name} field. Let's try again." + describe_playground: "**Add a description, then click the {button} button to close the feature editor.**" play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: title: "Lines" - add: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" - start: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" + add_line: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" + start_line: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" - finish: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" - road: "**Select Road from the list**" - residential: "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**" - describe: "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**" - restart: "The road needs to intersect {name}. Let's try again!" - wrong_preset: "You didn't select the Residential road type. **Click here to choose again**" + retry_intersect: "The road needs to intersect {name}. Let's try again!" + continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" + choose_category_road: "**Select {name} from the list**" + choose_preset_residential: "There are many different types of roads, but this one is a residential road. **Choose the {name} type**" + retry_preset_residential: "You didn't select the {name} type. **Click here to choose again**" + name_road: "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**" play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" buildings: title: "Buildings" add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**" - choose_building: "**Select Building from the list**" - choose_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**" + choose_category_building: "**Choose {name} from the list**" + choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**" close: "**Hit escape, or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index f01c5334a..96c443ce9 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -755,15 +755,15 @@ }, "welcome": { "title": "Welcome", - "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", - "practice": "All of the data in this walkthrough is just for practice, and any edits that you make in the walkthrough will not be saved.", - "chapters": "You can use the buttons below to skip chapters at any time, or restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" + "welcome": "Welcome! This walkthrough will teach you the basics of editing on OpenStreetMap.", + "practice": "All of the data in this walkthrough is just for practicing, and any edits that you make in the walkthrough will not be saved.", + "chapters": "You can use the buttons below to skip chapters at any time or to restart a chapter if you get stuck. Let's begin! **Click '{next}' to continue.**" }, "navigation": { "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", - "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", + "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**", "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", @@ -772,45 +772,45 @@ }, "points": { "title": "Points", - "add": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", - "place": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**", - "search": "There are many different features that can be represented by points. The point you just added is a Cafe. **Search for '{name}'**", - "choose": "**Choose Cafe from the list.**", + "add_point": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", + "place_point": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**", + "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{name}'**", + "choose_cafe": "**Choose {name} from the list.**", "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", "add_name": "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", - "close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", + "add_close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", - "close2": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", + "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", - "undo": "You can undo any changes that you make in the editor, up until you save your edits OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", - "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" + "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", + "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, "areas": { "title": "Areas", - "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", - "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", - "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**", - "search": "**Search for '{name}'.**", - "choose": "**Choose Playground from the list.**", - "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", - "choose_field": "**Choose Description from the list.**", - "retry_add_field": "You didn't select the Description field. Let's try again.", - "describe": "**Add a description, then click the {button} button to close the feature editor.**", + "add_playground": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", + "start_playground": "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", + "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**", + "search_playground": "**Search for '{name}'.**", + "choose_playground": "**Choose {name} from the list.**", + "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", + "choose_field": "**Choose {name} from the list.**", + "retry_add_field": "You didn't select the {name} field. Let's try again.", + "describe_playground": "**Add a description, then click the {button} button to close the feature editor.**", "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "lines": { "title": "Lines", - "add": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", + "add_line": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", + "start_line": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", - "finish": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", - "road": "**Select Road from the list**", - "residential": "There are different types of roads, the most common of which is Residential. **Choose the Residential road type**", - "describe": "**Name the road, then hit escape, return, or click the {button} button to close the feature editor.**", - "restart": "The road needs to intersect {name}. Let's try again!", - "wrong_preset": "You didn't select the Residential road type. **Click here to choose again**", + "retry_intersect": "The road needs to intersect {name}. Let's try again!", + "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", + "choose_category_road": "**Select {name} from the list**", + "choose_preset_residential": "There are many different types of roads, but this one is a residential road. **Choose the {name} type**", + "retry_preset_residential": "You didn't select the {name} type. **Click here to choose again**", + "name_road": "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**", "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "buildings": { @@ -818,8 +818,8 @@ "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**", - "choose_building": "**Select Building from the list**", - "choose_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the House building type**", + "choose_category_building": "**Choose {name} from the list**", + "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**", "close": "**Hit escape, or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index ec16cc609..89b74de50 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -78,14 +78,11 @@ export function uiCurtain() { if (options.buttonText && options.buttonCallback) { var button = tooltip.selectAll('.button-section .button.action'); - button .on('click', function() { d3.event.preventDefault(); options.buttonCallback(); }); - - button.node().focus(); } // var dimensions = utilGetDimensions(selection, true), diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 66ecb1539..86ff4477a 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -7,6 +7,8 @@ import { icon, pad } from './helper'; export function uiIntroArea(context, reveal) { var dispatch = d3.dispatch('done'), playground = [-85.63552, 41.94159], + playgroundPreset = context.presets().item('leisure/playground'), + descriptionField = context.presets().field('description'), timeouts = []; @@ -28,7 +30,7 @@ export function uiIntroArea(context, reveal) { function addArea() { var tooltip = reveal('button.add-area', - t('intro.areas.add', { button: icon('#icon-area', 'pre-text') })); + t('intro.areas.add_playground', { button: icon('#icon-area', 'pre-text') })); tooltip.selectAll('.tooltip-inner') .insert('svg', 'span') @@ -38,7 +40,7 @@ export function uiIntroArea(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id !== 'add-area') return; - continueTo(startArea); + continueTo(startPlayground); }); function continueTo(nextStep) { @@ -48,24 +50,24 @@ export function uiIntroArea(context, reveal) { } - function startArea() { + function startPlayground() { if (context.mode().id !== 'add-area') { return chapter.restart(); } var padding = 120 * Math.pow(2, context.map().zoom() - 19); var box = pad(playground, padding, context); - reveal(box, t('intro.areas.corner')); + reveal(box, t('intro.areas.start_playground')); context.map().on('move.intro drawn.intro', function() { padding = 120 * Math.pow(2, context.map().zoom() - 19); box = pad(playground, padding, context); - reveal(box, t('intro.areas.corner'), { duration: 0 }); + reveal(box, t('intro.areas.start_playground'), { duration: 0 }); }); context.on('enter.intro', function(mode) { if (mode.id !== 'draw-area') return chapter.restart(); - continueTo(drawArea); + continueTo(continuePlayground); }); function continueTo(nextStep) { @@ -76,19 +78,19 @@ export function uiIntroArea(context, reveal) { } - function drawArea() { + function continuePlayground() { if (context.mode().id !== 'draw-area') { return chapter.restart(); } var padding = 150 * Math.pow(2, context.map().zoom() - 19); var box = pad(playground, padding, context); - reveal(box, t('intro.areas.place')); + reveal(box, t('intro.areas.continue_playground')); context.map().on('move.intro drawn.intro', function() { padding = 150 * Math.pow(2, context.map().zoom() - 19); box = pad(playground, padding, context); - reveal(box, t('intro.areas.place'), {duration: 0}); + reveal(box, t('intro.areas.continue_playground'), {duration: 0}); }); context.on('enter.intro', function(mode) { @@ -122,8 +124,7 @@ export function uiIntroArea(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.areas.search', - { name: context.presets().item('leisure/playground').name() }) + t('intro.areas.search_playground', { name: playgroundPreset.name() }) ); }, 500); } @@ -134,7 +135,8 @@ export function uiIntroArea(context, reveal) { if (first.classed('preset-leisure-playground')) { reveal(first.select('.preset-list-button').node(), - t('intro.areas.choose') + t('intro.areas.choose_playground', { name: playgroundPreset.name() }), + { duration: 300 } ); d3.select('.preset-search-input') @@ -182,7 +184,10 @@ export function uiIntroArea(context, reveal) { return chapter.restart(); }); - reveal('div.combobox', t('intro.areas.choose_field')); + reveal('div.combobox', + t('intro.areas.choose_field', { name: descriptionField.label() }), + { duration: 300 } + ); d3.select('div.combobox') .on('click.intro', function() { @@ -190,7 +195,7 @@ export function uiIntroArea(context, reveal) { if (d3.select('.form-field-description').empty()) continueTo(retryChooseDescription); else - continueTo(addDescription); + continueTo(describePlayground); }, 100); }); @@ -202,13 +207,13 @@ export function uiIntroArea(context, reveal) { } - function addDescription() { + function describePlayground() { context.on('exit.intro', function() { continueTo(play); }); reveal('.entity-editor-pane', - t('intro.areas.describe', { button: icon('#icon-apply', 'pre-text') }) + t('intro.areas.describe_playground', { button: icon('#icon-apply', 'pre-text') }) ); function continueTo(nextStep) { @@ -223,12 +228,14 @@ export function uiIntroArea(context, reveal) { return chapter.restart(); }); - reveal('.entity-editor-pane', t('intro.areas.retry_add_field'), { + reveal('.entity-editor-pane', + t('intro.areas.retry_add_field', { name: descriptionField.label() }), { buttonText: t('intro.ok'), buttonCallback: function() { continueTo(clickAddField); } }); function continueTo(nextStep) { + context.on('exit.intro', null); nextStep(); } } diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 374f775ee..55aaa0f6f 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -9,6 +9,9 @@ export function uiIntroBuilding(context, reveal) { var dispatch = d3.dispatch('done'), house = [-85.62815, 41.95638], tank = [-85.62732, 41.95347], + buildingCatetory = context.presets().item('category-building'), + housePreset = context.presets().item('building/house'), + tankPreset = context.presets().item('man_made/storage_tank'), timeouts = [], houseId = null, tankId = null; @@ -140,7 +143,9 @@ export function uiIntroBuilding(context, reveal) { if (button.empty()) return chapter.restart(); timeout(function() { - reveal(button.node(), t('intro.buildings.choose_building')); + reveal(button.node(), + t('intro.buildings.choose_category_building', { name: buildingCatetory.name() }) + ); button.on('click.intro', function() { continueTo(choosePresetHouse); }); }, 500); @@ -165,9 +170,12 @@ export function uiIntroBuilding(context, reveal) { if (button.empty()) return chapter.restart(); timeout(function() { - reveal(button.node(), t('intro.buildings.choose_house')); + reveal(button.node(), + t('intro.buildings.choose_preset_house', { name: housePreset.name() }), + { duration: 300 } + ); button.on('click.intro', function() { continueTo(closeEditorHouse); }); - }, 500); + }, 300); function continueTo(nextStep) { d3.select('.preset-list-button').on('click.intro', null); @@ -392,7 +400,7 @@ export function uiIntroBuilding(context, reveal) { if (mode.id === 'draw-area') return; else if (mode.id === 'select') - return continueTo(searchPreset); + return continueTo(searchPresetTank); else return continueTo(addTank); }); @@ -405,7 +413,7 @@ export function uiIntroBuilding(context, reveal) { } - function searchPreset() { + function searchPresetTank() { if (context.mode().id !== 'select') { return continueTo(addTank); } @@ -419,7 +427,7 @@ export function uiIntroBuilding(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.buildings.search_tank', { name: context.presets().item('man_made/storage_tank').name() }) + t('intro.buildings.search_tank', { name: tankPreset.name() }) ); }, 500); @@ -436,7 +444,8 @@ export function uiIntroBuilding(context, reveal) { if (first.classed('preset-man_made-storage_tank')) { reveal(first.select('.preset-list-button').node(), - t('intro.buildings.choose_tank') + t('intro.buildings.choose_tank', { name: tankPreset.name() }), + { duration: 300 } ); d3.select('.preset-search-input') diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 8578a3856..bf856d70b 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -11,6 +11,8 @@ export function uiIntroLine(context, reveal) { midpoint = [-85.62975395449628, 41.95787501510204], start = [-85.6297754121684, 41.95805253325314], intersection = [-85.62974496187628, 41.95742515554585], + roadCategory = context.presets().item('category-road'), + residentialPreset = context.presets().item('highway/residential'), targetId = 'w646', lineId = null; @@ -33,7 +35,7 @@ export function uiIntroLine(context, reveal) { function addLine() { var tooltip = reveal('button.add-line', - t('intro.lines.add', { button: icon('#icon-line', 'pre-text') })); + t('intro.lines.add_line', { button: icon('#icon-line', 'pre-text') })); tooltip.selectAll('.tooltip-inner') .insert('svg', 'span') @@ -63,13 +65,13 @@ export function uiIntroLine(context, reveal) { var padding = 70 * Math.pow(2, context.map().zoom() - 18); var box = pad(start, padding, context); box.height = box.height + 100; - reveal(box, t('intro.lines.start')); + reveal(box, t('intro.lines.start_line')); context.map().on('move.intro drawn.intro', function() { padding = 70 * Math.pow(2, context.map().zoom() - 18); box = pad(start, padding, context); box.height = box.height + 100; - reveal(box, t('intro.lines.start'), { duration: 0 }); + reveal(box, t('intro.lines.start_line'), { duration: 0 }); }); context.on('enter.intro', function(mode) { @@ -117,7 +119,7 @@ export function uiIntroLine(context, reveal) { if (!entity) return chapter.restart(); if (isLineConnected()) { - continueTo(finishLine); + continueTo(continueLine); } }); @@ -125,10 +127,7 @@ export function uiIntroLine(context, reveal) { if (mode.id === 'draw-line') return; else if (mode.id === 'select') { - var box = pad(intersection, 80, context); - reveal(box, t('intro.lines.restart', { name: t('intro.graph.name.flower-street') })); - d3.select(window).on('mousedown.intro', eventCancel, true); - timeout(chapter.restart, 3000); + continueTo(retryIntersect); return; } else @@ -157,20 +156,32 @@ export function uiIntroLine(context, reveal) { } - function finishLine() { + function retryIntersect() { + d3.select(window).on('mousedown.intro', eventCancel, true); + + var box = pad(intersection, 80, context); + reveal(box, + t('intro.lines.retry_intersect', { name: t('intro.graph.name.flower-street') }) + ); + + timeout(chapter.restart, 3000); + } + + + function continueLine() { if (context.mode().id !== 'draw-line') return chapter.restart(); var entity = lineId && context.hasEntity(lineId); if (!entity) return chapter.restart(); context.map().centerEase(intersection); - reveal('#surface', t('intro.lines.finish')); + reveal('#surface', t('intro.lines.continue_line')); context.on('enter.intro', function(mode) { if (mode.id === 'draw-line') return; else if (mode.id === 'select') - return continueTo(enterSelect); + return continueTo(chooseCategoryRoad); else return chapter.restart(); }); @@ -182,7 +193,7 @@ export function uiIntroLine(context, reveal) { } - function enterSelect() { + function chooseCategoryRoad() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -195,8 +206,10 @@ export function uiIntroLine(context, reveal) { if (button.empty()) return chapter.restart(); timeout(function() { - reveal(button.node(), t('intro.lines.road')); - button.on('click.intro', function() { continueTo(roadCategory); }); + reveal(button.node(), + t('intro.lines.choose_category_road', { name: roadCategory.name() }) + ); + button.on('click.intro', function() { continueTo(choosePresetResidential); }); }, 500); function continueTo(nextStep) { @@ -207,7 +220,7 @@ export function uiIntroLine(context, reveal) { } - function roadCategory() { + function choosePresetResidential() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -221,17 +234,20 @@ export function uiIntroLine(context, reveal) { subgrid.selectAll(':not(.preset-highway-residential) .preset-list-button') .on('click.intro', function() { - continueTo(retryPreset); + continueTo(retryPresetResidential); }); subgrid.selectAll('.preset-highway-residential .preset-list-button') .on('click.intro', function() { - continueTo(roadDetails); + continueTo(nameRoad); }); timeout(function() { - reveal(subgrid.node(), t('intro.lines.residential')); - }, 500); + reveal(subgrid.node(), + t('intro.lines.choose_preset_residential', { name: residentialPreset.name() }), + { duration: 300 } + ); + }, 300); function continueTo(nextStep) { d3.select('.preset-list-button').on('click.intro', null); @@ -242,7 +258,7 @@ export function uiIntroLine(context, reveal) { // selected wrong road type - function retryPreset() { + function retryPresetResidential() { if (context.mode().id !== 'select') { return chapter.restart(); } @@ -253,9 +269,11 @@ export function uiIntroLine(context, reveal) { timeout(function() { var button = d3.select('.entity-editor-pane .preset-list-button'); - reveal(button.node(), t('intro.lines.wrong_preset')); + reveal(button.node(), + t('intro.lines.retry_preset_residential', { name: residentialPreset.name() }) + ); button.on('click.intro', function() { - continueTo(enterSelect); + continueTo(chooseCategoryRoad); }); }, 500); @@ -267,14 +285,14 @@ export function uiIntroLine(context, reveal) { } - function roadDetails() { + function nameRoad() { context.on('exit.intro', function() { continueTo(play); }); timeout(function() { reveal('.entity-editor-pane', - t('intro.lines.describe', { button: icon('#icon-apply', 'pre-text') }) + t('intro.lines.name_road', { button: icon('#icon-apply', 'pre-text') }) ); }, 500); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 88468e74a..9f5133f91 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -123,11 +123,9 @@ export function uiIntroNavigation(context, reveal) { continueTo(streetSearch); }); - timeout(function() { - reveal('.entity-editor-pane', - t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) - ); - }, 700); + reveal('.entity-editor-pane', + t('intro.navigation.pane', { button: icon('#icon-close', 'pre-text') }) + ); function continueTo(nextStep) { context.on('exit.intro', null); @@ -140,7 +138,8 @@ export function uiIntroNavigation(context, reveal) { context.history().reset('initial'); // ensure spring street exists reveal('.search-header input', - t('intro.navigation.search', { name: t('intro.graph.name.spring-street') })); + t('intro.navigation.search', { name: t('intro.graph.name.spring-street') }) + ); d3.select('.search-header input') .on('keyup.intro', checkSearchResult); @@ -153,7 +152,10 @@ export function uiIntroNavigation(context, reveal) { name = t('intro.graph.name.spring-street'); if (!firstName.empty() && firstName.text() === name) { - reveal(first.node(), t('intro.navigation.choose', { name: name })); + reveal(first.node(), + t('intro.navigation.choose', { name: name }), + { duration: 300 } + ); context.on('exit.intro', function() { continueTo(selectedStreet); diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 2e1dbce09..7f6677942 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -9,6 +9,7 @@ export function uiIntroPoint(context, reveal) { timeouts = [], intersection = [-85.63279, 41.94394], building = [-85.632422, 41.944045], + cafePreset = context.presets().item('amenity/cafe'), pointId = null; @@ -30,7 +31,7 @@ export function uiIntroPoint(context, reveal) { function addPoint() { var tooltip = reveal('button.add-point', - t('intro.points.add', { button: icon('#icon-point', 'pre-text') })); + t('intro.points.add_point', { button: icon('#icon-point', 'pre-text') })); pointId = null; @@ -58,11 +59,11 @@ export function uiIntroPoint(context, reveal) { } var pointBox = pad(building, 150, context); - reveal(pointBox, t('intro.points.place')); + reveal(pointBox, t('intro.points.place_point')); context.map().on('move.intro drawn.intro', function() { pointBox = pad(building, 150, context); - reveal(pointBox, t('intro.points.place'), { duration: 0 }); + reveal(pointBox, t('intro.points.place_point'), { duration: 0 }); }); context.on('enter.intro', function(mode) { @@ -94,7 +95,7 @@ export function uiIntroPoint(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.points.search', { name: context.presets().item('amenity/cafe').name() }) + t('intro.points.search_cafe', { name: cafePreset.name() }) ); }, 500); } @@ -105,7 +106,8 @@ export function uiIntroPoint(context, reveal) { if (first.classed('preset-amenity-cafe')) { reveal(first.select('.preset-list-button').node(), - t('intro.points.choose') + t('intro.points.choose_cafe', { name: cafePreset.name() }), + { duration: 300 } ); d3.select('.preset-search-input') @@ -152,7 +154,7 @@ export function uiIntroPoint(context, reveal) { }); context.history().on('change.intro', function() { - continueTo(closeEditor); + continueTo(addCloseEditor); }); timeout(function() { @@ -169,13 +171,13 @@ export function uiIntroPoint(context, reveal) { } - function closeEditor() { + function addCloseEditor() { context.on('exit.intro', function() { continueTo(reselectPoint); }); reveal('.entity-editor-pane', - t('intro.points.close', { button: icon('#icon-apply', 'pre-text') }) + t('intro.points.add_close', { button: icon('#icon-apply', 'pre-text') }) ); function continueTo(nextStep) { @@ -223,7 +225,7 @@ export function uiIntroPoint(context, reveal) { }); context.history().on('change.intro', function() { - continueTo(closeEditor2); + continueTo(updateCloseEditor); }); timeout(function() { @@ -240,7 +242,7 @@ export function uiIntroPoint(context, reveal) { } - function closeEditor2() { + function updateCloseEditor() { if (context.mode().id !== 'select') { return continueTo(reselectPoint); } @@ -251,7 +253,7 @@ export function uiIntroPoint(context, reveal) { timeout(function() { reveal('.entity-editor-pane', - t('intro.points.close2', { button: icon('#icon-apply', 'pre-text') }) + t('intro.points.update_close', { button: icon('#icon-apply', 'pre-text') }) ); }, 500); From ef1e7038eb91615da5bd0c20b869466af82e2634 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 22:35:59 -0400 Subject: [PATCH 56/91] Remove some unused roads from intrograph, add paper street 12th avenue --- data/core.yaml | 5 +- data/intro_graph.json | 316 +++++++++++------------------------------- dist/locales/en.json | 5 +- 3 files changed, 80 insertions(+), 246 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 9956df22b..d5b4271f9 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -795,6 +795,7 @@ en: 9th-avenue: 9th Avenue 10th-avenue: 10th Avenue 11th-avenue: 11th Avenue + 12th-avenue: 12th Avenue access-point-employment: Access Point Employment adams-street: Adams Street andrews-elementary-school: Andrews Elementary School @@ -849,14 +850,12 @@ en: paisley-emporium: Paisley Emporium paparazzi-tattoo: Paparazzi Tattoo pealer-street: Pealer Street - pine-river-road: Pine River Road pine-street: Pine Street pizza-hut: Pizza Hut portage-avenue: Portage Avenue portage-river: Portage River preferred-insurance-services: Preferred Insurance Services railroad-drive: Railroad Drive - raisin-river-road: Raisin River Road river-city-appliance: River City Appliance river-drive: River Drive river-road: River Road @@ -865,13 +864,11 @@ en: riverwalk-trail: Riverwalk Trail riviera-theatre: Riviera Theatre rocky-river: Rocky River - sable-river-road: Sable River Road saint-joseph-river: Saint Joseph River scidmore-park-petting-zoo: Scidmore Park Petting Zoo scidmore-park: Scidmore Park scouter-park: Scouter Park sherwin-williams: Sherwin-Williams - shiawassee-river-road: Shiawassee River Road south-street: South Street southern-michigan-bank: Southern Michigan Bank spring-street: Spring Street diff --git a/data/intro_graph.json b/data/intro_graph.json index f7667dd28..7efdb35b2 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -6317,10 +6317,6 @@ "id": "n2844", "loc": [-85.620172, 41.945627] }, - "n2845": { - "id": "n2845", - "loc": [-85.622731, 41.951834] - }, "n2846": { "id": "n2846", "loc": [-85.622758, 41.947422] @@ -6387,7 +6383,7 @@ }, "n2862": { "id": "n2862", - "loc": [-85.62384, 41.95466] + "loc": [-85.623685, 41.954624] }, "n2863": { "id": "n2863", @@ -6425,22 +6421,6 @@ "id": "n2872", "loc": [-85.624813, 41.950983] }, - "n2873": { - "id": "n2873", - "loc": [-85.624623, 41.951591] - }, - "n2874": { - "id": "n2874", - "loc": [-85.623908, 41.953916] - }, - "n2875": { - "id": "n2875", - "loc": [-85.62389, 41.954096] - }, - "n2876": { - "id": "n2876", - "loc": [-85.623898, 41.95431] - }, "n2877": { "id": "n2877", "loc": [-85.628481, 41.945611] @@ -6528,7 +6508,7 @@ "highway": "residential", "name": "Washington Street" }, - "nodes": ["n2815", "n2813", "n2811", "n2846", "n2857", "n2853", "n2861", "n2879", "n5", "n4", "n2845"] + "nodes": ["n2815", "n2813", "n2811", "n2846", "n2857", "n2853", "n2861", "n2879", "n3550", "n5", "n4"] }, "w523": { "id": "w523", @@ -6566,12 +6546,6 @@ "n2871", "n6", "n2872", - "n2873", - "n2874", - "n2875", - "n2876", - "n1203", - "n1202", "n2862" ] }, @@ -9793,63 +9767,63 @@ }, "n3472": { "id": "n3472", - "loc": [-85.620141, 41.951901] + "loc": [-85.620118, 41.951895] }, "n3473": { "id": "n3473", - "loc": [-85.617193, 41.954706] + "loc": [-85.617062, 41.954691] }, "n3474": { "id": "n3474", - "loc": [-85.62013, 41.952104] + "loc": [-85.620112, 41.952114] }, "n3475": { "id": "n3475", - "loc": [-85.620104, 41.952305] + "loc": [-85.620091, 41.95232] }, "n3476": { "id": "n3476", - "loc": [-85.620062, 41.952499] + "loc": [-85.620047, 41.952505] }, "n3477": { "id": "n3477", - "loc": [-85.619993, 41.952702] + "loc": [-85.61998, 41.952715] }, "n3478": { "id": "n3478", - "loc": [-85.619879, 41.952986] + "loc": [-85.619861, 41.952986] }, "n3479": { "id": "n3479", - "loc": [-85.619689, 41.95329] + "loc": [-85.619622, 41.953365] }, "n3480": { "id": "n3480", - "loc": [-85.619508, 41.953521] + "loc": [-85.619441, 41.953567] }, "n3481": { "id": "n3481", - "loc": [-85.619286, 41.953728] + "loc": [-85.619259, 41.953741] }, "n3482": { "id": "n3482", - "loc": [-85.618925, 41.954007] + "loc": [-85.618835, 41.954056] }, "n3483": { "id": "n3483", - "loc": [-85.618638, 41.954189] + "loc": [-85.618602, 41.954194] }, "n3484": { "id": "n3484", - "loc": [-85.61831, 41.954358] + "loc": [-85.618305, 41.954347] }, "n3485": { "id": "n3485", - "loc": [-85.618015, 41.954485] + "loc": [-85.618006, 41.954466] }, "n3486": { "id": "n3486", - "loc": [-85.617606, 41.954611] + "loc": [-85.617611, 41.954587] }, "n3487": { "id": "n3487", @@ -10014,9 +9988,11 @@ "n3476", "n3477", "n3478", + "n1202", "n3479", "n3480", "n3481", + "n1203", "n3482", "n3483", "n3484", @@ -10155,10 +10131,6 @@ }, "nodes": ["n2745", "n3752", "n3204", "n3201", "n3415", "n2761", "n2767", "n3411"] }, - "n3517": { - "id": "n3517", - "loc": [-85.622669, 41.951866] - }, "n3518": { "id": "n3518", "loc": [-85.624105, 41.954704] @@ -10289,7 +10261,7 @@ }, "n3550": { "id": "n3550", - "loc": [-85.622599, 41.95188] + "loc": [-85.622758, 41.951884] }, "n3551": { "id": "n3551", @@ -10901,7 +10873,7 @@ "highway": "residential", "name": "11th Avenue" }, - "nodes": ["n2845", "n3517", "n3550", "n3472"] + "nodes": ["n3550", "n3472"] }, "w638": { "id": "w638", @@ -10918,7 +10890,23 @@ "highway": "residential", "name": "Hoffman Street" }, - "nodes": ["n3518", "n1204", "n2862", "n3519", "n3520", "n3521", "n3522", "n3523", "n3524", "n3549", "n3552", "n3551", "n3473"] + "nodes": [ + "n3518", + "n1204", + "n2862", + "n3519", + "n3520", + "n3521", + "n3522", + "n4", + "n3523", + "n3524", + "n3549", + "n3552", + "n3551", + "n1684", + "n3473" + ] }, "w640": { "id": "w640", @@ -11437,53 +11425,6 @@ }, "nodes": ["n3788", "n3785", "n3786", "n3787", "n3788"] }, - "n3789": { - "id": "n3789", - "loc": [-85.61859, 41.956821] - }, - "n3790": { - "id": "n3790", - "loc": [-85.618669, 41.957009] - }, - "n3791": { - "id": "n3791", - "loc": [-85.618692, 41.958145] - }, - "n3792": { - "id": "n3792", - "loc": [-85.618708, 41.958821], - "tags": { - "highway": "turning_circle" - } - }, - "n3793": { - "id": "n3793", - "loc": [-85.618216, 41.95557] - }, - "n3794": { - "id": "n3794", - "loc": [-85.618406, 41.956619] - }, - "n3795": { - "id": "n3795", - "loc": [-85.618237, 41.956377] - }, - "n3796": { - "id": "n3796", - "loc": [-85.618143, 41.955723] - }, - "n3797": { - "id": "n3797", - "loc": [-85.618677, 41.957747] - }, - "n3798": { - "id": "n3798", - "loc": [-85.618161, 41.956088] - }, - "n3799": { - "id": "n3799", - "loc": [-85.61868, 41.958579] - }, "n3800": { "id": "n3800", "loc": [-85.620773, 41.955585] @@ -11500,51 +11441,6 @@ "id": "n3803", "loc": [-85.620691, 41.955367] }, - "n3804": { - "id": "n3804", - "loc": [-85.615935, 41.958581] - }, - "n3805": { - "id": "n3805", - "loc": [-85.615914, 41.957758] - }, - "n3806": { - "id": "n3806", - "loc": [-85.616225, 41.95603] - }, - "n3807": { - "id": "n3807", - "loc": [-85.61604, 41.956075] - }, - "n3808": { - "id": "n3808", - "loc": [-85.61593, 41.956201] - }, - "n3809": { - "id": "n3809", - "loc": [-85.615897, 41.95816] - }, - "n3810": { - "id": "n3810", - "loc": [-85.618703, 41.955052] - }, - "n3811": { - "id": "n3811", - "loc": [-85.618644, 41.955202] - }, - "n3812": { - "id": "n3812", - "loc": [-85.618513, 41.955339] - }, - "w652": { - "id": "w652", - "tags": { - "access": "private", - "highway": "service", - "name": "Sable River Road" - }, - "nodes": ["n3791", "n3809"] - }, "w653": { "id": "w653", "tags": { @@ -11553,58 +11449,6 @@ }, "nodes": ["n3549", "n3802", "n3803", "n3800", "n3801"] }, - "w654": { - "id": "w654", - "tags": { - "access": "private", - "highway": "service", - "name": "Pine River Road" - }, - "nodes": ["n3797", "n3805"] - }, - "w655": { - "id": "w655", - "tags": { - "access": "private", - "highway": "service", - "name": "Raisin River Road" - }, - "nodes": ["n3799", "n3804"] - }, - "w656": { - "id": "w656", - "tags": { - "access": "private", - "highway": "service", - "name": "Shiawassee River Road" - }, - "nodes": [ - "n3551", - "n3810", - "n3811", - "n3812", - "n3793", - "n3796", - "n3798", - "n3795", - "n3794", - "n3789", - "n3790", - "n3797", - "n3791", - "n3799", - "n3792" - ] - }, - "w657": { - "id": "w657", - "tags": { - "access": "private", - "highway": "service", - "name": "Sturgeon River Road" - }, - "nodes": ["n3798", "n3806", "n3807", "n3808"] - }, "n3857": { "id": "n3857", "loc": [-85.618937, 41.951943] @@ -11615,11 +11459,11 @@ }, "n3859": { "id": "n3859", - "loc": [-85.616854, 41.954737] + "loc": [-85.616799, 41.95472] }, "n3860": { "id": "n3860", - "loc": [-85.616485, 41.95474] + "loc": [-85.616458, 41.954735] }, "n3861": { "id": "n3861", @@ -12075,7 +11919,7 @@ }, "n3974": { "id": "n3974", - "loc": [-85.61981, 41.951041] + "loc": [-85.619777, 41.951075] }, "n3977": { "id": "n3977", @@ -12314,7 +12158,7 @@ "tags": { "highway": "service" }, - "nodes": ["n3272", "n3974", "n3863", "n3857", "n3892", "n3883", "n3891", "n3889"] + "nodes": ["n3272", "n39", "n40", "n3974", "n3863", "n3857", "n3892", "n3883", "n3891", "n3889"] }, "w670": { "id": "w670", @@ -12448,38 +12292,6 @@ }, "nodes": ["n3956", "n3965", "n3957", "n3958", "n3959", "n3968", "n3971", "n3960", "n3961", "n3962", "n3963"] }, - "n4008": { - "id": "n4008", - "loc": [-85.6159, 41.956336] - }, - "n4009": { - "id": "n4009", - "loc": [-85.615916, 41.959065] - }, - "n4010": { - "id": "n4010", - "loc": [-85.615736, 41.959364], - "tags": { - "highway": "turning_circle" - } - }, - "w684": { - "id": "w684", - "tags": { - "access": "private", - "highway": "service", - "name": "River Road" - }, - "nodes": ["n3808", "n4008", "n3805", "n3809", "n3804", "n4009", "n4010"] - }, - "n4": { - "id": "n4", - "loc": [-85.62276, 41.951784] - }, - "n5": { - "id": "n5", - "loc": [-85.622772, 41.951739] - }, "n6": { "id": "n6", "loc": [-85.624908, 41.95064] @@ -19847,14 +19659,6 @@ "loc": [-85.621492, 41.956022], "id": "n1201" }, - "n1202": { - "id": "n1202", - "loc": [-85.623885, 41.954527] - }, - "n1203": { - "id": "n1203", - "loc": [-85.623905, 41.954415] - }, "n1204": { "id": "n1204", "loc": [-85.623984, 41.95469] @@ -22615,6 +22419,42 @@ "n3840": { "loc": [-85.626813, 41.947337], "id": "n3840" + }, + "n4": { + "loc": [-85.6227, 41.954457], + "id": "n4" + }, + "n5": { + "loc": [-85.622738, 41.952969], + "id": "n5" + }, + "w1": { + "id": "w1", + "nodes": ["n5", "n3478"], + "tags": { + "highway": "residential", + "name": "12th Avenue" + } + }, + "n39": { + "id": "n39", + "loc": [-85.619931, 41.951013] + }, + "n40": { + "id": "n40", + "loc": [-85.619841, 41.951037] + }, + "n1202": { + "id": "n1202", + "loc": [-85.619744, 41.953192] + }, + "n1203": { + "id": "n1203", + "loc": [-85.619059, 41.953902] + }, + "n1684": { + "id": "n1684", + "loc": [-85.61786, 41.95473] } } } diff --git a/dist/locales/en.json b/dist/locales/en.json index 96c443ce9..8bea99e5b 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -652,6 +652,7 @@ "9th-avenue": "9th Avenue", "10th-avenue": "10th Avenue", "11th-avenue": "11th Avenue", + "12th-avenue": "12th Avenue", "access-point-employment": "Access Point Employment", "adams-street": "Adams Street", "andrews-elementary-school": "Andrews Elementary School", @@ -706,14 +707,12 @@ "paisley-emporium": "Paisley Emporium", "paparazzi-tattoo": "Paparazzi Tattoo", "pealer-street": "Pealer Street", - "pine-river-road": "Pine River Road", "pine-street": "Pine Street", "pizza-hut": "Pizza Hut", "portage-avenue": "Portage Avenue", "portage-river": "Portage River", "preferred-insurance-services": "Preferred Insurance Services", "railroad-drive": "Railroad Drive", - "raisin-river-road": "Raisin River Road", "river-city-appliance": "River City Appliance", "river-drive": "River Drive", "river-road": "River Road", @@ -722,13 +721,11 @@ "riverwalk-trail": "Riverwalk Trail", "riviera-theatre": "Riviera Theatre", "rocky-river": "Rocky River", - "sable-river-road": "Sable River Road", "saint-joseph-river": "Saint Joseph River", "scidmore-park-petting-zoo": "Scidmore Park Petting Zoo", "scidmore-park": "Scidmore Park", "scouter-park": "Scouter Park", "sherwin-williams": "Sherwin-Williams", - "shiawassee-river-road": "Shiawassee River Road", "south-street": "South Street", "southern-michigan-bank": "Southern Michigan Bank", "spring-street": "Spring Street", From 8fe33d9430c3354953f4f2c7f4e6b7209ea06ed1 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 6 Apr 2017 17:09:32 -0400 Subject: [PATCH 57/91] Teach realigning roads by moving nodes, adding midpoints (closes #2381) --- data/core.yaml | 8 +- dist/locales/en.json | 8 +- modules/ui/intro/line.js | 261 ++++++++++++++++++++++++++++++--- modules/ui/intro/navigation.js | 4 +- 4 files changed, 256 insertions(+), 25 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index d5b4271f9..e81ebdb33 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -945,7 +945,13 @@ en: choose_preset_residential: "There are many different types of roads, but this one is a residential road. **Choose the {name} type**" retry_preset_residential: "You didn't select the {name} type. **Click here to choose again**" name_road: "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**" - play: "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + update_line: "Sometimes you will need to change the shape of an existing line. Here is a road that doesn't look quite right." + add_node: "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**" + start_drag_endpoint: "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**" + finish_drag_endpoint: "This spot looks good. **Finish dragging by releasing the left mouse button**" + start_drag_midpoint: "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" + continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" + play: "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" buildings: title: "Buildings" add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 8bea99e5b..047faf7c6 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -808,7 +808,13 @@ "choose_preset_residential": "There are many different types of roads, but this one is a residential road. **Choose the {name} type**", "retry_preset_residential": "You didn't select the {name} type. **Click here to choose again**", "name_road": "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**", - "play": "You added a new road! Try drawing a few more lines, and see what other kinds of lines you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" + "update_line": "Sometimes you will need to change the shape of an existing line. Here is a road that doesn't look quite right.", + "add_node": "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**", + "start_drag_endpoint": "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**", + "finish_drag_endpoint": "This spot looks good. **Finish dragging by releasing the left mouse button**", + "start_drag_midpoint": "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", + "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", + "play": "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" }, "buildings": { "title": "Buildings", diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index bf856d70b..df73bd0c8 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -1,6 +1,8 @@ import * as d3 from 'd3'; import _ from 'lodash'; import { t } from '../../util/locale'; +import { geoSphericalDistance } from '../../geo/index'; +import { modeSelect } from '../../modes/select'; import { utilRebind } from '../../util/rebind'; import { icon, pad } from './helper'; @@ -8,13 +10,18 @@ import { icon, pad } from './helper'; export function uiIntroLine(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], - midpoint = [-85.62975395449628, 41.95787501510204], - start = [-85.6297754121684, 41.95805253325314], - intersection = [-85.62974496187628, 41.95742515554585], + tulipRoadId = null, + flowerRoadId = 'w646', + tulipRoadStart = [-85.6297754121684, 41.95805253325314], + tulipRoadMidpoint = [-85.62975395449628, 41.95787501510204], + tulipRoadIntersection = [-85.62974496187628, 41.95742515554585], + woodRoadId = 'w525', + woodRoadEndId = 'n2862', + woodRoadAddNode = [-85.62390110349587, 41.95397111462291], + woodRoadDragEndpoint = [-85.62383958913921, 41.9546607846611], + woodRoadDragMidpoint = [-85.62386254803509, 41.95430395953872], roadCategory = context.presets().item('category-road'), - residentialPreset = context.presets().item('highway/residential'), - targetId = 'w646', - lineId = null; + residentialPreset = context.presets().item('highway/residential'); var chapter = { @@ -60,16 +67,16 @@ export function uiIntroLine(context, reveal) { return chapter.restart(); } - lineId = null; + tulipRoadId = null; var padding = 70 * Math.pow(2, context.map().zoom() - 18); - var box = pad(start, padding, context); + var box = pad(tulipRoadStart, padding, context); box.height = box.height + 100; reveal(box, t('intro.lines.start_line')); context.map().on('move.intro drawn.intro', function() { padding = 70 * Math.pow(2, context.map().zoom() - 18); - box = pad(start, padding, context); + box = pad(tulipRoadStart, padding, context); box.height = box.height + 100; reveal(box, t('intro.lines.start_line'), { duration: 0 }); }); @@ -92,12 +99,12 @@ export function uiIntroLine(context, reveal) { return chapter.restart(); } - lineId = context.mode().selectedIDs()[0]; - context.map().centerEase(midpoint); + tulipRoadId = context.mode().selectedIDs()[0]; + context.map().centerEase(tulipRoadMidpoint); timeout(function() { var padding = 200 * Math.pow(2, context.map().zoom() - 18.5); - var box = pad(midpoint, padding, context); + var box = pad(tulipRoadMidpoint, padding, context); box.height = box.height * 2; reveal(box, t('intro.lines.intersect', { name: t('intro.graph.name.flower-street') }) @@ -105,7 +112,7 @@ export function uiIntroLine(context, reveal) { context.map().on('move.intro drawn.intro', function() { padding = 200 * Math.pow(2, context.map().zoom() - 18.5); - box = pad(midpoint, padding, context); + box = pad(tulipRoadMidpoint, padding, context); box.height = box.height * 2; reveal(box, t('intro.lines.intersect', { name: t('intro.graph.name.flower-street') }), @@ -115,7 +122,7 @@ export function uiIntroLine(context, reveal) { }, 260); // after easing.. context.history().on('change.intro', function() { - var entity = lineId && context.hasEntity(lineId); + var entity = tulipRoadId && context.hasEntity(tulipRoadId); if (!entity) return chapter.restart(); if (isLineConnected()) { @@ -144,13 +151,13 @@ export function uiIntroLine(context, reveal) { function isLineConnected() { - var entity = lineId && context.hasEntity(lineId); + var entity = tulipRoadId && context.hasEntity(tulipRoadId); if (!entity) return false; var drawNodes = context.graph().childNodes(entity); return _.some(drawNodes, function(node) { return _.some(context.graph().parentWays(node), function(parent) { - return parent.id === targetId; + return parent.id === flowerRoadId; }); }); } @@ -159,7 +166,7 @@ export function uiIntroLine(context, reveal) { function retryIntersect() { d3.select(window).on('mousedown.intro', eventCancel, true); - var box = pad(intersection, 80, context); + var box = pad(tulipRoadIntersection, 80, context); reveal(box, t('intro.lines.retry_intersect', { name: t('intro.graph.name.flower-street') }) ); @@ -170,10 +177,10 @@ export function uiIntroLine(context, reveal) { function continueLine() { if (context.mode().id !== 'draw-line') return chapter.restart(); - var entity = lineId && context.hasEntity(lineId); + var entity = tulipRoadId && context.hasEntity(tulipRoadId); if (!entity) return chapter.restart(); - context.map().centerEase(intersection); + context.map().centerEase(tulipRoadIntersection); reveal('#surface', t('intro.lines.continue_line')); @@ -287,7 +294,8 @@ export function uiIntroLine(context, reveal) { function nameRoad() { context.on('exit.intro', function() { - continueTo(play); + context.history().checkpoint('doneAddRoad'); + continueTo(updateLine); }); timeout(function() { @@ -303,6 +311,217 @@ export function uiIntroLine(context, reveal) { } + function updateLine() { + context.history().reset('doneAddRoad'); + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return chapter.restart(); + } + + context.map().zoom(19).centerEase(woodRoadDragMidpoint, 500); + + timeout(function() { + var padding = 250 * Math.pow(2, context.map().zoom() - 19); + var box = pad(woodRoadDragMidpoint, padding, context); + var advance = function() { continueTo(addNode); }; + + reveal(box, t('intro.lines.update_line'), + { buttonText: t('intro.ok'), buttonCallback: advance } + ); + + context.map().on('move.intro drawn.intro', function() { + var box = pad(woodRoadDragMidpoint, padding, context); + reveal(box, t('intro.lines.update_line'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + ); + }); + }, 550); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + + function addNode() { + context.history().reset('doneAddRoad'); + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return chapter.restart(); + } + + var padding = 40 * Math.pow(2, context.map().zoom() - 19); + + var box = pad(woodRoadAddNode, padding, context); + reveal(box, t('intro.lines.add_node')); + + context.map().on('move.intro drawn.intro', function() { + var box = pad(woodRoadAddNode, padding, context); + reveal(box, t('intro.lines.add_node'), { duration: 0 }); + }); + + context.history().on('change.intro', function(changed) { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + if (changed.created().length === 1) { + timeout(function() { continueTo(startDragEndpoint); }, 500); + } + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') { + continueTo(updateLine); + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function startDragEndpoint() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + + var padding = 100 * Math.pow(2, context.map().zoom() - 19); + + var box = pad(woodRoadDragEndpoint, padding, context); + reveal(box, t('intro.lines.start_drag_endpoint')); + + context.map().on('move.intro drawn.intro', function() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + + var box = pad(woodRoadDragEndpoint, padding, context); + reveal(box, t('intro.lines.start_drag_endpoint'), { duration: 0 }); + + var entity = context.entity(woodRoadEndId); + if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) <= 2) { + continueTo(finishDragEndpoint); + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + + function finishDragEndpoint() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + + var padding = 100 * Math.pow(2, context.map().zoom() - 19); + + var box = pad(woodRoadDragEndpoint, padding, context); + reveal(box, t('intro.lines.finish_drag_endpoint')); + + context.map().on('move.intro drawn.intro', function() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + var box = pad(woodRoadDragEndpoint, padding, context); + reveal(box, t('intro.lines.finish_drag_endpoint'), { duration: 0 }); + + var entity = context.entity(woodRoadEndId); + if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) > 2.5) { + continueTo(startDragEndpoint); + } + }); + + context.on('enter.intro', function() { + continueTo(startDragMidpoint); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function startDragMidpoint() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + + var padding = 80 * Math.pow(2, context.map().zoom() - 19); + + var box = pad(woodRoadDragMidpoint, padding, context); + reveal(box, t('intro.lines.start_drag_midpoint')); + + context.map().on('move.intro drawn.intro', function() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + var box = pad(woodRoadDragMidpoint, padding, context); + reveal(box, t('intro.lines.start_drag_midpoint'), { duration: 0 }); + }); + + context.history().on('change.intro', function(changed) { + if (changed.created().length === 1) { + continueTo(continueDragMidpoint); + } + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') { + // keep Wood Road selected so midpoint triangles are drawn.. + context.enter(modeSelect(context, [woodRoadId])); + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function continueDragMidpoint() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + + var padding = 100 * Math.pow(2, context.map().zoom() - 19); + + var box = pad(woodRoadDragEndpoint, padding, context); + box.height += 400; + var advance = function() { continueTo(play); }; + + reveal(box, t('intro.lines.continue_drag_midpoint'), + { buttonText: t('intro.ok'), buttonCallback: advance } + ); + + context.map().on('move.intro drawn.intro', function() { + if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { + return continueTo(updateLine); + } + var box = pad(woodRoadDragEndpoint, padding, context); + box.height += 400; + reveal(box, t('intro.lines.continue_drag_midpoint'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + ); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-building', @@ -316,7 +535,7 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - context.map().zoom(18.5).centerEase(start); + context.map().zoom(18.5).centerEase(tulipRoadStart); addLine(); }; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 9f5133f91..16f4f5387 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -6,8 +6,9 @@ import { icon, pointBox } from './helper'; export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), + timeouts = [], hallId = 'n2061', - timeouts = []; + springSt = [-85.63585099140167, 41.942506848938926]; var chapter = { @@ -174,7 +175,6 @@ export function uiIntroNavigation(context, reveal) { function selectedStreet() { - var springSt = [-85.63585099140167, 41.942506848938926]; context.map().centerEase(springSt); timeout(function() { From fc774a1c64b756cfa47a58c46c06d03cb5d12c8b Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 6 Apr 2017 17:46:36 -0400 Subject: [PATCH 58/91] Adjust language, keep Wood road selected when editing midpoint/endpoint --- data/core.yaml | 2 +- dist/locales/en.json | 2 +- modules/ui/intro/line.js | 14 ++++++++++++++ modules/ui/intro/navigation.js | 4 ++-- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index e81ebdb33..19aa4b3a1 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -937,7 +937,7 @@ en: lines: title: "Lines" add_line: "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**" - start_line: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**" + start_line: "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**" intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" retry_intersect: "The road needs to intersect {name}. Let's try again!" continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 047faf7c6..28ed1aeef 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -800,7 +800,7 @@ "lines": { "title": "Lines", "add_line": "Lines are used to represent features such as roads, railroads, and rivers. **Click the {button} Line button to add a new line.**", - "start_line": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag the map while drawing if necessary. **Start a new line by clicking on the end of the road.**", + "start_line": "Here is a road that is missing. Let's add it! In OpenStreetMap, lines should be drawn down the center of the road. You can drag and zoom the map while drawing if necessary. **Start a new line by clicking at the top end of this missing road.**", "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", "retry_intersect": "The road needs to intersect {name}. Let's try again!", "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index df73bd0c8..0b9b71061 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -387,6 +387,9 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } + if (context.selectedIDs().indexOf(woodRoadId) === -1) { + context.enter(modeSelect(context, [woodRoadId])); + } var padding = 100 * Math.pow(2, context.map().zoom() - 19); @@ -407,8 +410,16 @@ export function uiIntroLine(context, reveal) { } }); + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') { + // keep Wood Road selected so endpoint stays draggable.. + context.enter(modeSelect(context, [woodRoadId])); + } + }); + function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); nextStep(); } } @@ -453,6 +464,9 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } + if (context.selectedIDs().indexOf(woodRoadId) === -1) { + context.enter(modeSelect(context, [woodRoadId])); + } var padding = 80 * Math.pow(2, context.map().zoom() - 19); diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 16f4f5387..6f0369886 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -8,7 +8,7 @@ export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], hallId = 'n2061', - springSt = [-85.63585099140167, 41.942506848938926]; + springStreet = [-85.63585099140167, 41.942506848938926]; var chapter = { @@ -175,7 +175,7 @@ export function uiIntroNavigation(context, reveal) { function selectedStreet() { - context.map().centerEase(springSt); + context.map().centerEase(springStreet); timeout(function() { reveal('.entity-editor-pane', From 2abf7a7361a9f88dd0e82971f96a40dc66a396e0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 7 Apr 2017 00:40:09 -0400 Subject: [PATCH 59/91] Add step to walkthrough up to split road --- data/core.yaml | 14 ++- dist/locales/en.json | 14 ++- modules/ui/intro/line.js | 194 +++++++++++++++++++++++++++++++++++++-- 3 files changed, 208 insertions(+), 14 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 19aa4b3a1..c9219f20d 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -918,7 +918,7 @@ en: reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" - rightclick: "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**" + rightclick: "You can right-click on features to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" @@ -951,6 +951,14 @@ en: finish_drag_endpoint: "This spot looks good. **Finish dragging by releasing the left mouse button**" start_drag_midpoint: "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" + delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but did not build it. Let's delete the extra lines." + rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything beyond it. **Right click on the intersection node**" + split_intersection: "**Click on the {button} button to split {street}.**" + retry_split: "You didn't click the Split button. Try again." + multi_select: "You can select several lines by holding down the shift key when you click the lines to select them. **Shift-click to select both the northern part of {street1} and the {street2}.**" + multi_rightclick: "**Right-click to show the edit menu.**" + multi_delete: "**Click on the {button} button to delete the extra lines.**" + retry_delete: "You didn't click the Delete button. Try again." play: "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" buildings: title: "Buildings" @@ -960,7 +968,7 @@ en: choose_category_building: "**Choose {name} from the list**" choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**" close: "**Hit escape, or click the {button} button to close the feature editor**" - rightclick_building: "**Right-click to select the building you created.**" + rightclick_building: "**Right-click to select the building you created and show the edit menu.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" retry_square: "You didn't click the Square button. Try again." done_square: "See how the corners of the building moved into place? Let's learn another useful trick." @@ -969,7 +977,7 @@ en: continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**" search_tank: "**Search for '{name}'**" choose_tank: "**Choose {name} from the list.**" - rightclick_tank: "**Right-click to select the storage tank you created.**" + rightclick_tank: "**Right-click to select the storage tank you created and show the edit menu.**" circle_tank: "**Click on the {button} button to make the tank a circle.**" retry_circle: "You didn't click the Circularize button. Try again." play: "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 28ed1aeef..da910401c 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -779,7 +779,7 @@ "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", - "rightclick": "You can right-click on features to see the list of operations that can be performed on them. **Right-click to select the point you created.**", + "rightclick": "You can right-click on features to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" @@ -814,6 +814,14 @@ "finish_drag_endpoint": "This spot looks good. **Finish dragging by releasing the left mouse button**", "start_drag_midpoint": "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", + "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but did not build it. Let's delete the extra lines.", + "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything beyond it. **Right click on the intersection node**", + "split_intersection": "**Click on the {button} button to split {street}.**", + "retry_split": "You didn't click the Split button. Try again.", + "multi_select": "You can select several lines by holding down the shift key when you click the lines to select them. **Shift-click to select both the northern part of {street1} and the {street2}.**", + "multi_rightclick": "**Right-click to show the edit menu.**", + "multi_delete": "**Click on the {button} button to delete the extra lines.**", + "retry_delete": "You didn't click the Delete button. Try again.", "play": "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" }, "buildings": { @@ -824,7 +832,7 @@ "choose_category_building": "**Choose {name} from the list**", "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**", "close": "**Hit escape, or click the {button} button to close the feature editor**", - "rightclick_building": "**Right-click to select the building you created.**", + "rightclick_building": "**Right-click to select the building you created and show the edit menu.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", "retry_square": "You didn't click the Square button. Try again.", "done_square": "See how the corners of the building moved into place? Let's learn another useful trick.", @@ -833,7 +841,7 @@ "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**", "search_tank": "**Search for '{name}'**", "choose_tank": "**Choose {name} from the list.**", - "rightclick_tank": "**Right-click to select the storage tank you created.**", + "rightclick_tank": "**Right-click to select the storage tank you created and show the edit menu.**", "circle_tank": "**Click on the {button} button to make the tank a circle.**", "retry_circle": "You didn't click the Circularize button. Try again.", "play": "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 0b9b71061..3451d213f 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -1,8 +1,8 @@ import * as d3 from 'd3'; import _ from 'lodash'; import { t } from '../../util/locale'; -import { geoSphericalDistance } from '../../geo/index'; -import { modeSelect } from '../../modes/select'; +import { geoSphericalDistance } from '../../geo'; +import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; import { icon, pad } from './helper'; @@ -15,13 +15,17 @@ export function uiIntroLine(context, reveal) { tulipRoadStart = [-85.6297754121684, 41.95805253325314], tulipRoadMidpoint = [-85.62975395449628, 41.95787501510204], tulipRoadIntersection = [-85.62974496187628, 41.95742515554585], + roadCategory = context.presets().item('category-road'), + residentialPreset = context.presets().item('highway/residential'), woodRoadId = 'w525', woodRoadEndId = 'n2862', woodRoadAddNode = [-85.62390110349587, 41.95397111462291], woodRoadDragEndpoint = [-85.62383958913921, 41.9546607846611], woodRoadDragMidpoint = [-85.62386254803509, 41.95430395953872], - roadCategory = context.presets().item('category-road'), - residentialPreset = context.presets().item('highway/residential'); + washingtonStreetId = 'w522', + twelfthAvenueId = 'w1', + eleventhAvenueEndId = 'n3550', + twelfthAvenue = [-85.6211739802704, 41.95194238444386]; var chapter = { @@ -294,7 +298,7 @@ export function uiIntroLine(context, reveal) { function nameRoad() { context.on('exit.intro', function() { - context.history().checkpoint('doneAddRoad'); + context.history().checkpoint('doneAddLine'); continueTo(updateLine); }); @@ -312,7 +316,7 @@ export function uiIntroLine(context, reveal) { function updateLine() { - context.history().reset('doneAddRoad'); + context.history().reset('doneAddLine'); if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return chapter.restart(); } @@ -344,7 +348,7 @@ export function uiIntroLine(context, reveal) { function addNode() { - context.history().reset('doneAddRoad'); + context.history().reset('doneAddLine'); if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return chapter.restart(); } @@ -512,7 +516,11 @@ export function uiIntroLine(context, reveal) { var box = pad(woodRoadDragEndpoint, padding, context); box.height += 400; - var advance = function() { continueTo(play); }; + + var advance = function() { + context.history().checkpoint('doneUpdateLine'); + continueTo(deleteLines); + }; reveal(box, t('intro.lines.continue_drag_midpoint'), { buttonText: t('intro.ok'), buttonCallback: advance } @@ -536,6 +544,176 @@ export function uiIntroLine(context, reveal) { } + function deleteLines() { + context.history().reset('doneUpdateLine'); + context.enter(modeBrowse(context)); + + if (!context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return chapter.restart(); + } + + context.map().zoom(17).centerEase(twelfthAvenue, 500); + + timeout(function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 17); + var box = pad(twelfthAvenue, padding, context); + box.top -= 200; + box.height += 400; + var advance = function() { continueTo(rightClickIntersection); }; + + reveal(box, t('intro.lines.delete_lines', { street: t('intro.graph.name.12th-avenue') }), + { buttonText: t('intro.ok'), buttonCallback: advance } + ); + + context.map().on('move.intro drawn.intro', function() { + var box = pad(twelfthAvenue, padding, context); + box.top -= 200; + box.height += 400; + reveal(box, t('intro.lines.delete_lines', { street: t('intro.graph.name.12th-avenue') }), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + ); + }); + }, 550); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + + function rightClickIntersection() { + context.history().reset('doneUpdateLine'); + + if (!context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return chapter.restart(); + } + + var entity = context.entity(eleventhAvenueEndId); + var padding = 60 * Math.pow(2, context.map().zoom() - 17); + + var box = pad(entity.loc, padding, context); + reveal(box, t('intro.lines.rightclick_intersection', + { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }) + ); + + context.map().on('move.intro drawn.intro', function() { + var box = pad(entity.loc, padding, context); + reveal(box, t('intro.lines.rightclick_intersection', + { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }), + { duration: 0 } + ); + }); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== eleventhAvenueEndId) return; + + timeout(function() { + var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + if (!node) return; + continueTo(splitIntersection); + }, 300); // after menu visible + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + nextStep(); + } + } + + + function splitIntersection() { + if (!context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(deleteLines); + } + + var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + if (!node) { return continueTo(rightClickIntersection); } + + var wasChanged = false; + var entity = context.entity(eleventhAvenueEndId); + var padding = 60 * Math.pow(2, context.map().zoom() - 17); + + var box = pad(entity.loc, padding, context); + box.width += 100; + box.height += 120; + + reveal(box, t('intro.lines.split_intersection', + { button: icon('#operation-split', 'pre-text'), street: t('intro.graph.name.washington-street') }) + ); + + context.map().on('move.intro drawn.intro', function() { + var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + if (!wasChanged && !node) { return continueTo(rightClickIntersection); } + + var box = pad(entity.loc, padding, context); + box.width += 100; + box.height += 120; + reveal(box, t('intro.lines.split_intersection', + { button: icon('#operation-split', 'pre-text'), street: t('intro.graph.name.washington-street') }), + { duration: 0 } + ); + }); + + context.on('enter.intro', function(mode) { + if (mode.id === 'browse') { + continueTo(rightClickIntersection); + } else if (mode.id === 'move' || mode.id === 'rotate') { + continueTo(retrySplit); + } + }); + + context.history().on('change.intro', function() { + wasChanged = true; + context.history().on('change.intro', null); + + // Something changed. Wait for transition to complete and check undo annotation. + timeout(function() { + if (context.history().undoAnnotation() === t('operations.split.annotation.line')) { + continueTo(play); + } else { + continueTo(retrySplit); + } + }, 500); // after transitioned actions + }); + + function continueTo(nextStep) { + context.on('enter.intro', null); + context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function retrySplit() { + context.enter(modeBrowse(context)); + + var padding = 60 * Math.pow(2, context.map().zoom() - 17); + var box = pad(entity.loc, padding, context); + box.width += 100; + box.height += 120; + + reveal(box, t('intro.lines.retry_split'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(rightClickIntersection); } + }); + + function continueTo(nextStep) { + nextStep(); + } + } + + function play() { dispatch.call('done'); reveal('.intro-nav-wrap .chapter-building', From 246f07813fd8a0be432d957788df002594509a42 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 7 Apr 2017 17:03:22 -0400 Subject: [PATCH 60/91] More detailed poi mapping in intro graph --- data/intro_graph.json | 39859 +++++++++++++++++++++++----------------- 1 file changed, 22609 insertions(+), 17250 deletions(-) diff --git a/data/intro_graph.json b/data/intro_graph.json index 7efdb35b2..56ac90480 100644 --- a/data/intro_graph.json +++ b/data/intro_graph.json @@ -1,5 +1,2932 @@ { "dataIntroGraph": { + "n1": { + "id": "n1", + "loc": [-85.631039, 41.948829] + }, + "n10": { + "id": "n10", + "loc": [-85.634733, 41.941588] + }, + "n100": { + "id": "n100", + "loc": [-85.637395, 41.942252] + }, + "n1000": { + "id": "n1000", + "loc": [-85.632699, 41.944763] + }, + "n1001": { + "id": "n1001", + "loc": [-85.632685, 41.944763] + }, + "n1002": { + "id": "n1002", + "loc": [-85.632673, 41.944755] + }, + "n1003": { + "id": "n1003", + "loc": [-85.632595, 41.944682] + }, + "n1004": { + "id": "n1004", + "loc": [-85.632576, 41.944673] + }, + "n1005": { + "id": "n1005", + "loc": [-85.632551, 41.944667] + }, + "n1006": { + "id": "n1006", + "loc": [-85.63253, 41.944667] + }, + "n1007": { + "id": "n1007", + "loc": [-85.632502, 41.944669] + }, + "n1008": { + "id": "n1008", + "loc": [-85.632483, 41.944677] + }, + "n1009": { + "id": "n1009", + "loc": [-85.632383, 41.944731] + }, + "n101": { + "id": "n101", + "loc": [-85.637357, 41.942252] + }, + "n1010": { + "id": "n1010", + "loc": [-85.63349, 41.944976], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "31", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Sherwin-Williams", + "shop": "paint" + } + }, + "n1011": { + "id": "n1011", + "loc": [-85.633548, 41.945034], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "33", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Unique Jewelry", + "shop": "jewelry" + } + }, + "n1012": { + "id": "n1012", + "loc": [-85.633683, 41.945129], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "37", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "World Fare", + "shop": "gift" + } + }, + "n1013": { + "id": "n1013", + "loc": [-85.634563, 41.945469], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "62", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Golden Finch Framing", + "shop": "frame" + } + }, + "n1014": { + "id": "n1014", + "loc": [-85.634469, 41.945379], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "58", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Dollar Tree", + "shop": "second_hand" + } + }, + "n1015": { + "id": "n1015", + "loc": [-85.634227, 41.945159], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "48", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "amenity": "theatre", + "name": "Riviera Theatre" + } + }, + "n1016": { + "id": "n1016", + "loc": [-85.634057, 41.945012], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "42", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "River City Appliance", + "shop": "appliance" + } + }, + "n1017": { + "id": "n1017", + "loc": [-85.633879, 41.945325], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "45", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Paparazzi Tattoo", + "shop": "tattoo" + } + }, + "n1018": { + "id": "n1018", + "loc": [-85.634914, 41.945839], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "88", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "amenity": "bank", + "name": "Southern Michigan Bank" + } + }, + "n1019": { + "id": "n1019", + "loc": [-85.634514, 41.946176] + }, + "n102": { + "id": "n102", + "loc": [-85.637357, 41.942216] + }, + "n1020": { + "id": "n1020", + "loc": [-85.634087, 41.946178] + }, + "n1021": { + "id": "n1021", + "loc": [-85.634357, 41.945805] + }, + "n1022": { + "id": "n1022", + "loc": [-85.634389, 41.945788] + }, + "n1023": { + "id": "n1023", + "loc": [-85.634491, 41.94581] + }, + "n1024": { + "id": "n1024", + "loc": [-85.634513, 41.945853] + }, + "n1025": { + "id": "n1025", + "loc": [-85.634506, 41.94583] + }, + "n1026": { + "id": "n1026", + "loc": [-85.634762, 41.946056], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n1027": { + "id": "n1027", + "loc": [-85.634767, 41.946172] + }, + "n1028": { + "id": "n1028", + "loc": [-85.634622, 41.946175], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n1029": { + "id": "n1029", + "loc": [-85.640655, 41.942057] + }, + "n103": { + "id": "n103", + "loc": [-85.637386, 41.942054] + }, + "n1030": { + "id": "n1030", + "loc": [-85.640947, 41.942057] + }, + "n1031": { + "id": "n1031", + "loc": [-85.640957, 41.942593] + }, + "n1032": { + "id": "n1032", + "loc": [-85.630953, 41.960873] + }, + "n1033": { + "id": "n1033", + "loc": [-85.632174, 41.960679] + }, + "n1034": { + "id": "n1034", + "loc": [-85.638785, 41.943066] + }, + "n1035": { + "id": "n1035", + "loc": [-85.638853, 41.943065] + }, + "n1036": { + "id": "n1036", + "loc": [-85.638855, 41.943183] + }, + "n1037": { + "id": "n1037", + "loc": [-85.638552, 41.943189] + }, + "n1038": { + "id": "n1038", + "loc": [-85.63855, 41.943149] + }, + "n1039": { + "id": "n1039", + "loc": [-85.638638, 41.943068] + }, + "n104": { + "id": "n104", + "loc": [-85.637387, 41.942125] + }, + "n1040": { + "id": "n1040", + "loc": [-85.638638, 41.943078] + }, + "n1041": { + "id": "n1041", + "loc": [-85.638813, 41.943163] + }, + "n1042": { + "id": "n1042", + "loc": [-85.638684, 41.943165] + }, + "n1043": { + "id": "n1043", + "loc": [-85.638682, 41.943105] + }, + "n1044": { + "id": "n1044", + "loc": [-85.638706, 41.943105] + }, + "n1045": { + "id": "n1045", + "loc": [-85.638707, 41.943117] + }, + "n1046": { + "id": "n1046", + "loc": [-85.638812, 41.943115] + }, + "n1047": { + "id": "n1047", + "loc": [-85.638769, 41.943407] + }, + "n1048": { + "id": "n1048", + "loc": [-85.638549, 41.943407] + }, + "n1049": { + "id": "n1049", + "loc": [-85.638567, 41.943555] + }, + "n105": { + "id": "n105", + "loc": [-85.637319, 41.942125] + }, + "n1050": { + "id": "n1050", + "loc": [-85.638426, 41.943554] + }, + "n1051": { + "id": "n1051", + "loc": [-85.638427, 41.94346] + }, + "n1052": { + "id": "n1052", + "loc": [-85.638568, 41.943461] + }, + "n1053": { + "id": "n1053", + "loc": [-85.639264, 41.943415] + }, + "n1054": { + "id": "n1054", + "loc": [-85.639082, 41.943417] + }, + "n1055": { + "id": "n1055", + "loc": [-85.63908, 41.943331] + }, + "n1056": { + "id": "n1056", + "loc": [-85.639136, 41.94333] + }, + "n1057": { + "id": "n1057", + "loc": [-85.639158, 41.943312] + }, + "n1058": { + "id": "n1058", + "loc": [-85.639188, 41.943313] + }, + "n1059": { + "id": "n1059", + "loc": [-85.639211, 41.943331] + }, + "n106": { + "id": "n106", + "loc": [-85.637319, 41.942137] + }, + "n1060": { + "id": "n1060", + "loc": [-85.639262, 41.943331] + }, + "n1061": { + "id": "n1061", + "loc": [-85.638986, 41.943515] + }, + "n1062": { + "id": "n1062", + "loc": [-85.63888, 41.943521] + }, + "n1063": { + "id": "n1063", + "loc": [-85.638871, 41.943436] + }, + "n1064": { + "id": "n1064", + "loc": [-85.638958, 41.943431] + }, + "n1065": { + "id": "n1065", + "loc": [-85.638979, 41.943443] + }, + "n1066": { + "id": "n1066", + "loc": [-85.63926, 41.943703] + }, + "n1067": { + "id": "n1067", + "loc": [-85.639152, 41.943704] + }, + "n1068": { + "id": "n1068", + "loc": [-85.639152, 41.943691] + }, + "n1069": { + "id": "n1069", + "loc": [-85.639063, 41.943691] + }, + "n107": { + "id": "n107", + "loc": [-85.637259, 41.942137] + }, + "n1070": { + "id": "n1070", + "loc": [-85.639062, 41.943613] + }, + "n1071": { + "id": "n1071", + "loc": [-85.639259, 41.943611] + }, + "n1072": { + "id": "n1072", + "loc": [-85.639117, 41.943726] + }, + "n1073": { + "id": "n1073", + "loc": [-85.639118, 41.943767] + }, + "n1074": { + "id": "n1074", + "loc": [-85.639051, 41.943768] + }, + "n1075": { + "id": "n1075", + "loc": [-85.63905, 41.943727] + }, + "n1076": { + "id": "n1076", + "loc": [-85.638627, 41.943716] + }, + "n1077": { + "id": "n1077", + "loc": [-85.63863, 41.943634] + }, + "n1078": { + "id": "n1078", + "loc": [-85.63844, 41.943631] + }, + "n1079": { + "id": "n1079", + "loc": [-85.638437, 41.943729] + }, + "n108": { + "id": "n108", + "loc": [-85.637259, 41.942126] + }, + "n1080": { + "id": "n1080", + "loc": [-85.638533, 41.94373] + }, + "n1081": { + "id": "n1081", + "loc": [-85.638534, 41.943715] + }, + "n1082": { + "id": "n1082", + "loc": [-85.638678, 41.943941] + }, + "n1083": { + "id": "n1083", + "loc": [-85.638522, 41.943944] + }, + "n1084": { + "id": "n1084", + "loc": [-85.63852, 41.943864] + }, + "n1085": { + "id": "n1085", + "loc": [-85.638676, 41.943861] + }, + "n1086": { + "id": "n1086", + "loc": [-85.638663, 41.944059] + }, + "n1087": { + "id": "n1087", + "loc": [-85.638513, 41.944061] + }, + "n1088": { + "id": "n1088", + "loc": [-85.638511, 41.943991] + }, + "n1089": { + "id": "n1089", + "loc": [-85.638661, 41.943989] + }, + "n109": { + "id": "n109", + "loc": [-85.637193, 41.942126] + }, + "n1090": { + "id": "n1090", + "loc": [-85.63865, 41.944134] + }, + "n1091": { + "id": "n1091", + "loc": [-85.638429, 41.944144] + }, + "n1092": { + "id": "n1092", + "loc": [-85.638426, 41.944106] + }, + "n1093": { + "id": "n1093", + "loc": [-85.638476, 41.944104] + }, + "n1094": { + "id": "n1094", + "loc": [-85.638475, 41.94409] + }, + "n1095": { + "id": "n1095", + "loc": [-85.638594, 41.944084] + }, + "n1096": { + "id": "n1096", + "loc": [-85.638595, 41.944101] + }, + "n1097": { + "id": "n1097", + "loc": [-85.638647, 41.944099] + }, + "n1098": { + "id": "n1098", + "loc": [-85.63829, 41.944154] + }, + "n1099": { + "id": "n1099", + "loc": [-85.638558, 41.944155] + }, + "n11": { + "id": "n11", + "loc": [-85.634602, 41.941523] + }, + "n110": { + "id": "n110", + "loc": [-85.637192, 41.942053] + }, + "n1100": { + "id": "n1100", + "loc": [-85.638558, 41.944338] + }, + "n1101": { + "id": "n1101", + "loc": [-85.638851, 41.944408] + }, + "n1102": { + "id": "n1102", + "loc": [-85.637771, 41.943989] + }, + "n1103": { + "id": "n1103", + "loc": [-85.639345, 41.943964] + }, + "n1104": { + "id": "n1104", + "loc": [-85.638515, 41.94397] + }, + "n1105": { + "id": "n1105", + "loc": [-85.639256, 41.943928] + }, + "n1106": { + "id": "n1106", + "loc": [-85.639157, 41.943929] + }, + "n1107": { + "id": "n1107", + "loc": [-85.639156, 41.9439] + }, + "n1108": { + "id": "n1108", + "loc": [-85.639118, 41.9439] + }, + "n1109": { + "id": "n1109", + "loc": [-85.639116, 41.94382] + }, + "n111": { + "id": "n111", + "loc": [-85.637248, 41.942053] + }, + "n1110": { + "id": "n1110", + "loc": [-85.639202, 41.943819] + }, + "n1111": { + "id": "n1111", + "loc": [-85.639202, 41.943837] + }, + "n1112": { + "id": "n1112", + "loc": [-85.639293, 41.943836] + }, + "n1113": { + "id": "n1113", + "loc": [-85.639295, 41.943898] + }, + "n1114": { + "id": "n1114", + "loc": [-85.639255, 41.943898] + }, + "n1115": { + "id": "n1115", + "loc": [-85.639296, 41.944083] + }, + "n1116": { + "id": "n1116", + "loc": [-85.639144, 41.944084] + }, + "n1117": { + "id": "n1117", + "loc": [-85.639143, 41.944026] + }, + "n1118": { + "id": "n1118", + "loc": [-85.639162, 41.944026] + }, + "n1119": { + "id": "n1119", + "loc": [-85.639162, 41.944] + }, + "n112": { + "id": "n112", + "loc": [-85.637248, 41.942042] + }, + "n1120": { + "id": "n1120", + "loc": [-85.639295, 41.943999] + }, + "n1121": { + "id": "n1121", + "loc": [-85.639131, 41.944139] + }, + "n1122": { + "id": "n1122", + "loc": [-85.63901, 41.94414] + }, + "n1123": { + "id": "n1123", + "loc": [-85.63901, 41.944076] + }, + "n1124": { + "id": "n1124", + "loc": [-85.63913, 41.944075] + }, + "n1125": { + "id": "n1125", + "loc": [-85.639092, 41.944155] + }, + "n1126": { + "id": "n1126", + "loc": [-85.639093, 41.944308] + }, + "n1127": { + "id": "n1127", + "loc": [-85.639225, 41.944308] + }, + "n1128": { + "id": "n1128", + "loc": [-85.639225, 41.94429] + }, + "n1129": { + "id": "n1129", + "loc": [-85.639253, 41.944289] + }, + "n113": { + "id": "n113", + "loc": [-85.637338, 41.942041] + }, + "n1130": { + "id": "n1130", + "loc": [-85.639253, 41.944269] + }, + "n1131": { + "id": "n1131", + "loc": [-85.639243, 41.944269] + }, + "n1132": { + "id": "n1132", + "loc": [-85.639243, 41.944229] + }, + "n1133": { + "id": "n1133", + "loc": [-85.639224, 41.944229] + }, + "n1134": { + "id": "n1134", + "loc": [-85.639224, 41.944196] + }, + "n1135": { + "id": "n1135", + "loc": [-85.639195, 41.944196] + }, + "n1136": { + "id": "n1136", + "loc": [-85.639195, 41.944155] + }, + "n1137": { + "id": "n1137", + "loc": [-85.639072, 41.944154] + }, + "n1138": { + "id": "n1138", + "loc": [-85.638865, 41.944154] + }, + "n1139": { + "id": "n1139", + "loc": [-85.638863, 41.943967] + }, + "n114": { + "id": "n114", + "loc": [-85.637338, 41.942055] + }, + "n1140": { + "id": "n1140", + "loc": [-85.6386, 41.942698] + }, + "n1141": { + "id": "n1141", + "loc": [-85.639348, 41.942698] + }, + "n1142": { + "id": "n1142", + "loc": [-85.639377, 41.944984] + }, + "n1143": { + "id": "n1143", + "loc": [-85.63937, 41.945013] + }, + "n1144": { + "id": "n1144", + "loc": [-85.639357, 41.945033] + }, + "n1145": { + "id": "n1145", + "loc": [-85.639353, 41.945053] + }, + "n1146": { + "id": "n1146", + "loc": [-85.639352, 41.945084] + }, + "n1147": { + "id": "n1147", + "loc": [-85.638278, 41.945516] + }, + "n1148": { + "id": "n1148", + "loc": [-85.637505, 41.945801] + }, + "n1149": { + "id": "n1149", + "loc": [-85.637327, 41.945857] + }, + "n115": { + "id": "n115", + "loc": [-85.637583, 41.941943] + }, + "n1150": { + "id": "n1150", + "loc": [-85.637168, 41.945899] + }, + "n1151": { + "id": "n1151", + "loc": [-85.637017, 41.94593] + }, + "n1152": { + "id": "n1152", + "loc": [-85.637185, 41.945938] + }, + "n1153": { + "id": "n1153", + "loc": [-85.63682, 41.945963] + }, + "n1154": { + "id": "n1154", + "loc": [-85.636639, 41.945984] + }, + "n1155": { + "id": "n1155", + "loc": [-85.636439, 41.945999] + }, + "n1156": { + "id": "n1156", + "loc": [-85.635801, 41.945999] + }, + "n1157": { + "id": "n1157", + "loc": [-85.635769, 41.945908] + }, + "n1158": { + "id": "n1158", + "loc": [-85.635953, 41.946154] + }, + "n1159": { + "id": "n1159", + "loc": [-85.635472, 41.94598] + }, + "n116": { + "id": "n116", + "loc": [-85.637584, 41.941983] + }, + "n1160": { + "id": "n1160", + "loc": [-85.635409, 41.945981] + }, + "n1161": { + "id": "n1161", + "loc": [-85.635583, 41.945987] + }, + "n1162": { + "id": "n1162", + "loc": [-85.636452, 41.945805] + }, + "n1163": { + "id": "n1163", + "loc": [-85.636425, 41.94582] + }, + "n1164": { + "id": "n1164", + "loc": [-85.636396, 41.945817] + }, + "n1165": { + "id": "n1165", + "loc": [-85.636368, 41.945797] + }, + "n1166": { + "id": "n1166", + "loc": [-85.636346, 41.945767] + }, + "n1167": { + "id": "n1167", + "loc": [-85.636307, 41.945745] + }, + "n1168": { + "id": "n1168", + "loc": [-85.636194, 41.94565] + }, + "n1169": { + "id": "n1169", + "loc": [-85.636121, 41.945579] + }, + "n117": { + "id": "n117", + "loc": [-85.63751, 41.941983] + }, + "n1170": { + "id": "n1170", + "loc": [-85.635995, 41.945432] + }, + "n1171": { + "id": "n1171", + "loc": [-85.637564, 41.943538] + }, + "n1172": { + "id": "n1172", + "loc": [-85.63756, 41.943505] + }, + "n1173": { + "id": "n1173", + "loc": [-85.637435, 41.943489] + }, + "n1174": { + "id": "n1174", + "loc": [-85.637093, 41.943556] + }, + "n1175": { + "id": "n1175", + "loc": [-85.634836, 41.941574] + }, + "n1176": { + "id": "n1176", + "loc": [-85.634692, 41.9415] + }, + "n1177": { + "id": "n1177", + "loc": [-85.634261, 41.941337] + }, + "n1178": { + "id": "n1178", + "loc": [-85.634208, 41.940962] + }, + "n1179": { + "id": "n1179", + "loc": [-85.635247, 41.940968] + }, + "n118": { + "id": "n118", + "loc": [-85.637509, 41.941944] + }, + "n1180": { + "id": "n1180", + "loc": [-85.63514, 41.941205] + }, + "n1181": { + "id": "n1181", + "loc": [-85.634858, 41.941511] + }, + "n1182": { + "id": "n1182", + "loc": [-85.630725, 41.943465] + }, + "n1183": { + "id": "n1183", + "loc": [-85.632591, 41.942826] + }, + "n1184": { + "id": "n1184", + "loc": [-85.634487, 41.941928] + }, + "n1185": { + "id": "n1185", + "loc": [-85.634499, 41.942056] + }, + "n1186": { + "id": "n1186", + "loc": [-85.63433, 41.943102] + }, + "n1187": { + "id": "n1187", + "loc": [-85.634158, 41.943151] + }, + "n1188": { + "id": "n1188", + "loc": [-85.634107, 41.94305] + }, + "n1189": { + "id": "n1189", + "loc": [-85.634279, 41.943002] + }, + "n119": { + "id": "n119", + "loc": [-85.637724, 41.941973] + }, + "n1190": { + "id": "n1190", + "loc": [-85.634362, 41.943762] + }, + "n1191": { + "id": "n1191", + "loc": [-85.634331, 41.943731] + }, + "n1192": { + "id": "n1192", + "loc": [-85.634396, 41.943695] + }, + "n1193": { + "id": "n1193", + "loc": [-85.634426, 41.943726] + }, + "n1194": { + "id": "n1194", + "loc": [-85.621569, 41.956021] + }, + "n1195": { + "id": "n1195", + "loc": [-85.621574, 41.956164] + }, + "n1196": { + "id": "n1196", + "loc": [-85.621489, 41.956165] + }, + "n1197": { + "id": "n1197", + "loc": [-85.621488, 41.956136] + }, + "n1198": { + "id": "n1198", + "loc": [-85.621372, 41.956139] + }, + "n1199": { + "id": "n1199", + "loc": [-85.621369, 41.956049] + }, + "n12": { + "id": "n12", + "loc": [-85.63359, 41.941093] + }, + "n120": { + "id": "n120", + "loc": [-85.637633, 41.941973] + }, + "n1200": { + "id": "n1200", + "loc": [-85.621493, 41.956047] + }, + "n1201": { + "id": "n1201", + "loc": [-85.621492, 41.956022] + }, + "n1202": { + "id": "n1202", + "loc": [-85.619744, 41.953192] + }, + "n1203": { + "id": "n1203", + "loc": [-85.619059, 41.953902] + }, + "n1204": { + "id": "n1204", + "loc": [-85.623984, 41.95469] + }, + "n1205": { + "id": "n1205", + "loc": [-85.630159, 41.958208] + }, + "n1206": { + "id": "n1206", + "loc": [-85.63002, 41.958208] + }, + "n1207": { + "id": "n1207", + "loc": [-85.630021, 41.95814] + }, + "n1208": { + "id": "n1208", + "loc": [-85.63, 41.95814] + }, + "n1209": { + "id": "n1209", + "loc": [-85.63, 41.958043] + }, + "n121": { + "id": "n121", + "loc": [-85.637633, 41.941853] + }, + "n1210": { + "id": "n1210", + "loc": [-85.630159, 41.958043] + }, + "n1211": { + "id": "n1211", + "loc": [-85.630304, 41.957566] + }, + "n1212": { + "id": "n1212", + "loc": [-85.630303, 41.957684] + }, + "n1213": { + "id": "n1213", + "loc": [-85.630073, 41.957683] + }, + "n1214": { + "id": "n1214", + "loc": [-85.630072, 41.957721] + }, + "n1215": { + "id": "n1215", + "loc": [-85.629993, 41.95772] + }, + "n1216": { + "id": "n1216", + "loc": [-85.629993, 41.95768] + }, + "n1217": { + "id": "n1217", + "loc": [-85.629968, 41.95768] + }, + "n1218": { + "id": "n1218", + "loc": [-85.629969, 41.957588] + }, + "n1219": { + "id": "n1219", + "loc": [-85.630219, 41.95759] + }, + "n122": { + "id": "n122", + "loc": [-85.637724, 41.941853] + }, + "n1220": { + "id": "n1220", + "loc": [-85.630219, 41.957566] + }, + "n1221": { + "id": "n1221", + "loc": [-85.630717, 41.957744] + }, + "n1222": { + "id": "n1222", + "loc": [-85.630596, 41.957745] + }, + "n1223": { + "id": "n1223", + "loc": [-85.630598, 41.957553] + }, + "n1224": { + "id": "n1224", + "loc": [-85.630717, 41.957555] + }, + "n1225": { + "id": "n1225", + "loc": [-85.630609, 41.957745] + }, + "n1226": { + "id": "n1226", + "loc": [-85.63061, 41.957789] + }, + "n1227": { + "id": "n1227", + "loc": [-85.630327, 41.957791] + }, + "n1228": { + "id": "n1228", + "loc": [-85.630324, 41.95752] + }, + "n1229": { + "id": "n1229", + "loc": [-85.630325, 41.95756] + }, + "n123": { + "id": "n123", + "loc": [-85.637773, 41.941988] + }, + "n1230": { + "id": "n1230", + "loc": [-85.63057, 41.95756] + }, + "n1231": { + "id": "n1231", + "loc": [-85.63069, 41.958016] + }, + "n1232": { + "id": "n1232", + "loc": [-85.630586, 41.958017] + }, + "n1233": { + "id": "n1233", + "loc": [-85.630584, 41.957956] + }, + "n1234": { + "id": "n1234", + "loc": [-85.630614, 41.957956] + }, + "n1235": { + "id": "n1235", + "loc": [-85.630611, 41.957835] + }, + "n1236": { + "id": "n1236", + "loc": [-85.630737, 41.957833] + }, + "n1237": { + "id": "n1237", + "loc": [-85.630739, 41.957921] + }, + "n1238": { + "id": "n1238", + "loc": [-85.630688, 41.957922] + }, + "n1239": { + "id": "n1239", + "loc": [-85.630719, 41.958291] + }, + "n124": { + "id": "n124", + "loc": [-85.637773, 41.942046] + }, + "n1240": { + "id": "n1240", + "loc": [-85.630592, 41.958291] + }, + "n1241": { + "id": "n1241", + "loc": [-85.630593, 41.958108] + }, + "n1242": { + "id": "n1242", + "loc": [-85.630701, 41.958109] + }, + "n1243": { + "id": "n1243", + "loc": [-85.6307, 41.958173] + }, + "n1244": { + "id": "n1244", + "loc": [-85.630711, 41.958173] + }, + "n1245": { + "id": "n1245", + "loc": [-85.630711, 41.958233] + }, + "n1246": { + "id": "n1246", + "loc": [-85.630719, 41.958233] + }, + "n1247": { + "id": "n1247", + "loc": [-85.630523, 41.958329] + }, + "n1248": { + "id": "n1248", + "loc": [-85.630388, 41.958329] + }, + "n1249": { + "id": "n1249", + "loc": [-85.630387, 41.958262] + }, + "n125": { + "id": "n125", + "loc": [-85.637693, 41.942047] + }, + "n1250": { + "id": "n1250", + "loc": [-85.630523, 41.958261] + }, + "n1251": { + "id": "n1251", + "loc": [-85.63072, 41.958636] + }, + "n1252": { + "id": "n1252", + "loc": [-85.630721, 41.958709] + }, + "n1253": { + "id": "n1253", + "loc": [-85.630503, 41.958712] + }, + "n1254": { + "id": "n1254", + "loc": [-85.630498, 41.958511] + }, + "n1255": { + "id": "n1255", + "loc": [-85.630635, 41.95851] + }, + "n1256": { + "id": "n1256", + "loc": [-85.630638, 41.958636] + }, + "n1257": { + "id": "n1257", + "loc": [-85.630437, 41.958822] + }, + "n1258": { + "id": "n1258", + "loc": [-85.630437, 41.958849] + }, + "n1259": { + "id": "n1259", + "loc": [-85.630393, 41.958849] + }, + "n126": { + "id": "n126", + "loc": [-85.637692, 41.941988] + }, + "n1260": { + "id": "n1260", + "loc": [-85.630393, 41.958822] + }, + "n1261": { + "id": "n1261", + "loc": [-85.630605, 41.959102] + }, + "n1262": { + "id": "n1262", + "loc": [-85.63049, 41.959104] + }, + "n1263": { + "id": "n1263", + "loc": [-85.630487, 41.958996] + }, + "n1264": { + "id": "n1264", + "loc": [-85.630462, 41.958996] + }, + "n1265": { + "id": "n1265", + "loc": [-85.63046, 41.958922] + }, + "n1266": { + "id": "n1266", + "loc": [-85.630562, 41.958921] + }, + "n1267": { + "id": "n1267", + "loc": [-85.630564, 41.958992] + }, + "n1268": { + "id": "n1268", + "loc": [-85.630602, 41.958992] + }, + "n1269": { + "id": "n1269", + "loc": [-85.630126, 41.957096] + }, + "n127": { + "id": "n127", + "loc": [-85.637604, 41.941994] + }, + "n1270": { + "id": "n1270", + "loc": [-85.630129, 41.957283] + }, + "n1271": { + "id": "n1271", + "loc": [-85.629993, 41.957284] + }, + "n1272": { + "id": "n1272", + "loc": [-85.629992, 41.957216] + }, + "n1273": { + "id": "n1273", + "loc": [-85.630015, 41.957215] + }, + "n1274": { + "id": "n1274", + "loc": [-85.630013, 41.957097] + }, + "n1275": { + "id": "n1275", + "loc": [-85.630211, 41.956592] + }, + "n1276": { + "id": "n1276", + "loc": [-85.630211, 41.956676] + }, + "n1277": { + "id": "n1277", + "loc": [-85.630162, 41.956676] + }, + "n1278": { + "id": "n1278", + "loc": [-85.630162, 41.95676] + }, + "n1279": { + "id": "n1279", + "loc": [-85.630037, 41.956761] + }, + "n128": { + "id": "n128", + "loc": [-85.637604, 41.942057] + }, + "n1280": { + "id": "n1280", + "loc": [-85.630037, 41.956592] + }, + "n1281": { + "id": "n1281", + "loc": [-85.630309, 41.95653] + }, + "n1282": { + "id": "n1282", + "loc": [-85.630326, 41.957065] + }, + "n1283": { + "id": "n1283", + "loc": [-85.630118, 41.957065] + }, + "n1284": { + "id": "n1284", + "loc": [-85.630119, 41.957096] + }, + "n1285": { + "id": "n1285", + "loc": [-85.63067, 41.957307] + }, + "n1286": { + "id": "n1286", + "loc": [-85.630536, 41.957308] + }, + "n1287": { + "id": "n1287", + "loc": [-85.630533, 41.957111] + }, + "n1288": { + "id": "n1288", + "loc": [-85.630667, 41.95711] + }, + "n1289": { + "id": "n1289", + "loc": [-85.630676, 41.956808] + }, + "n129": { + "id": "n129", + "loc": [-85.63748, 41.942057] + }, + "n1290": { + "id": "n1290", + "loc": [-85.630551, 41.956808] + }, + "n1291": { + "id": "n1291", + "loc": [-85.630552, 41.956982] + }, + "n1292": { + "id": "n1292", + "loc": [-85.63059, 41.956982] + }, + "n1293": { + "id": "n1293", + "loc": [-85.63059, 41.957001] + }, + "n1294": { + "id": "n1294", + "loc": [-85.630692, 41.957001] + }, + "n1295": { + "id": "n1295", + "loc": [-85.630692, 41.956936] + }, + "n1296": { + "id": "n1296", + "loc": [-85.630676, 41.956936] + }, + "n1297": { + "id": "n1297", + "loc": [-85.630496, 41.956889] + }, + "n1298": { + "id": "n1298", + "loc": [-85.630501, 41.956947] + }, + "n1299": { + "id": "n1299", + "loc": [-85.630377, 41.956953] + }, + "n13": { + "id": "n13", + "loc": [-85.633643, 41.941143] + }, + "n130": { + "id": "n130", + "loc": [-85.63748, 41.941994] + }, + "n1300": { + "id": "n1300", + "loc": [-85.630359, 41.956938] + }, + "n1301": { + "id": "n1301", + "loc": [-85.630359, 41.956912] + }, + "n1302": { + "id": "n1302", + "loc": [-85.63038, 41.956894] + }, + "n1303": { + "id": "n1303", + "loc": [-85.630679, 41.956747] + }, + "n1304": { + "id": "n1304", + "loc": [-85.630572, 41.956748] + }, + "n1305": { + "id": "n1305", + "loc": [-85.63057, 41.956668] + }, + "n1306": { + "id": "n1306", + "loc": [-85.630501, 41.956669] + }, + "n1307": { + "id": "n1307", + "loc": [-85.630499, 41.95659] + }, + "n1308": { + "id": "n1308", + "loc": [-85.630565, 41.956589] + }, + "n1309": { + "id": "n1309", + "loc": [-85.630564, 41.956541] + }, + "n131": { + "id": "n131", + "loc": [-85.637431, 41.941832] + }, + "n1310": { + "id": "n1310", + "loc": [-85.630686, 41.956539] + }, + "n1311": { + "id": "n1311", + "loc": [-85.630688, 41.956631] + }, + "n1312": { + "id": "n1312", + "loc": [-85.630676, 41.956631] + }, + "n1313": { + "id": "n1313", + "loc": [-85.630686, 41.956487] + }, + "n1314": { + "id": "n1314", + "loc": [-85.63059, 41.956487] + }, + "n1315": { + "id": "n1315", + "loc": [-85.63059, 41.956396] + }, + "n1316": { + "id": "n1316", + "loc": [-85.630686, 41.956396] + }, + "n1317": { + "id": "n1317", + "loc": [-85.630643, 41.9563] + }, + "n1318": { + "id": "n1318", + "loc": [-85.630548, 41.956301] + }, + "n1319": { + "id": "n1319", + "loc": [-85.630545, 41.956217] + }, + "n132": { + "id": "n132", + "loc": [-85.637432, 41.94189] + }, + "n1320": { + "id": "n1320", + "loc": [-85.630529, 41.956214] + }, + "n1321": { + "id": "n1321", + "loc": [-85.630521, 41.956202] + }, + "n1322": { + "id": "n1322", + "loc": [-85.63052, 41.95618] + }, + "n1323": { + "id": "n1323", + "loc": [-85.630527, 41.956169] + }, + "n1324": { + "id": "n1324", + "loc": [-85.630544, 41.956163] + }, + "n1325": { + "id": "n1325", + "loc": [-85.630543, 41.956094] + }, + "n1326": { + "id": "n1326", + "loc": [-85.630641, 41.956093] + }, + "n1327": { + "id": "n1327", + "loc": [-85.630642, 41.956134] + }, + "n1328": { + "id": "n1328", + "loc": [-85.630656, 41.956134] + }, + "n1329": { + "id": "n1329", + "loc": [-85.630657, 41.956252] + }, + "n133": { + "id": "n133", + "loc": [-85.637412, 41.94189] + }, + "n1330": { + "id": "n1330", + "loc": [-85.630643, 41.956252] + }, + "n1331": { + "id": "n1331", + "loc": [-85.630409, 41.956044] + }, + "n1332": { + "id": "n1332", + "loc": [-85.630409, 41.956075] + }, + "n1333": { + "id": "n1333", + "loc": [-85.630195, 41.956078] + }, + "n1334": { + "id": "n1334", + "loc": [-85.630195, 41.9561] + }, + "n1335": { + "id": "n1335", + "loc": [-85.630088, 41.956101] + }, + "n1336": { + "id": "n1336", + "loc": [-85.630087, 41.956048] + }, + "n1337": { + "id": "n1337", + "loc": [-85.630345, 41.956114] + }, + "n1338": { + "id": "n1338", + "loc": [-85.630328, 41.956113] + }, + "n1339": { + "id": "n1339", + "loc": [-85.63034, 41.956189] + }, + "n134": { + "id": "n134", + "loc": [-85.637413, 41.941938] + }, + "n1340": { + "id": "n1340", + "loc": [-85.630355, 41.956185] + }, + "n1341": { + "id": "n1341", + "loc": [-85.630311, 41.956117] + }, + "n1342": { + "id": "n1342", + "loc": [-85.630297, 41.956125] + }, + "n1343": { + "id": "n1343", + "loc": [-85.630287, 41.956136] + }, + "n1344": { + "id": "n1344", + "loc": [-85.630283, 41.956149] + }, + "n1345": { + "id": "n1345", + "loc": [-85.630285, 41.956162] + }, + "n1346": { + "id": "n1346", + "loc": [-85.630293, 41.956174] + }, + "n1347": { + "id": "n1347", + "loc": [-85.630306, 41.956183] + }, + "n1348": { + "id": "n1348", + "loc": [-85.630322, 41.956188] + }, + "n1349": { + "id": "n1349", + "loc": [-85.630368, 41.956179] + }, + "n135": { + "id": "n135", + "loc": [-85.637342, 41.941939] + }, + "n1350": { + "id": "n1350", + "loc": [-85.630378, 41.95617] + }, + "n1351": { + "id": "n1351", + "loc": [-85.630384, 41.956159] + }, + "n1352": { + "id": "n1352", + "loc": [-85.630385, 41.956147] + }, + "n1353": { + "id": "n1353", + "loc": [-85.630381, 41.956136] + }, + "n1354": { + "id": "n1354", + "loc": [-85.630372, 41.956126] + }, + "n1355": { + "id": "n1355", + "loc": [-85.63036, 41.956118] + }, + "n1356": { + "id": "n1356", + "loc": [-85.630776, 41.956041] + }, + "n1357": { + "id": "n1357", + "loc": [-85.630195, 41.956036] + }, + "n1358": { + "id": "n1358", + "loc": [-85.630137, 41.956037] + }, + "n1359": { + "id": "n1359", + "loc": [-85.630136, 41.956006] + }, + "n136": { + "id": "n136", + "loc": [-85.637342, 41.941914] + }, + "n1360": { + "id": "n1360", + "loc": [-85.630194, 41.956005] + }, + "n1361": { + "id": "n1361", + "loc": [-85.629864, 41.956039] + }, + "n1362": { + "id": "n1362", + "loc": [-85.629864, 41.955862] + }, + "n1363": { + "id": "n1363", + "loc": [-85.629541, 41.958291] + }, + "n1364": { + "id": "n1364", + "loc": [-85.629419, 41.958292] + }, + "n1365": { + "id": "n1365", + "loc": [-85.629417, 41.958168] + }, + "n1366": { + "id": "n1366", + "loc": [-85.629445, 41.958168] + }, + "n1367": { + "id": "n1367", + "loc": [-85.629444, 41.958109] + }, + "n1368": { + "id": "n1368", + "loc": [-85.629537, 41.958108] + }, + "n1369": { + "id": "n1369", + "loc": [-85.629351, 41.958136] + }, + "n137": { + "id": "n137", + "loc": [-85.637212, 41.941916] + }, + "n1370": { + "id": "n1370", + "loc": [-85.629352, 41.958202] + }, + "n1371": { + "id": "n1371", + "loc": [-85.629365, 41.958202] + }, + "n1372": { + "id": "n1372", + "loc": [-85.629365, 41.958223] + }, + "n1373": { + "id": "n1373", + "loc": [-85.629291, 41.958224] + }, + "n1374": { + "id": "n1374", + "loc": [-85.62929, 41.958137] + }, + "n1375": { + "id": "n1375", + "loc": [-85.629443, 41.958073] + }, + "n1376": { + "id": "n1376", + "loc": [-85.629252, 41.958075] + }, + "n1377": { + "id": "n1377", + "loc": [-85.629253, 41.95827] + }, + "n1378": { + "id": "n1378", + "loc": [-85.629566, 41.957585] + }, + "n1379": { + "id": "n1379", + "loc": [-85.629566, 41.957692] + }, + "n138": { + "id": "n138", + "loc": [-85.637211, 41.941835] + }, + "n1380": { + "id": "n1380", + "loc": [-85.629281, 41.957693] + }, + "n1381": { + "id": "n1381", + "loc": [-85.62928, 41.957585] + }, + "n1382": { + "id": "n1382", + "loc": [-85.629004, 41.957599] + }, + "n1383": { + "id": "n1383", + "loc": [-85.629004, 41.957682] + }, + "n1384": { + "id": "n1384", + "loc": [-85.628902, 41.957682] + }, + "n1385": { + "id": "n1385", + "loc": [-85.628902, 41.957723] + }, + "n1386": { + "id": "n1386", + "loc": [-85.628731, 41.957724] + }, + "n1387": { + "id": "n1387", + "loc": [-85.628731, 41.9576] + }, + "n1388": { + "id": "n1388", + "loc": [-85.62836, 41.957679] + }, + "n1389": { + "id": "n1389", + "loc": [-85.628359, 41.957759] + }, + "n139": { + "id": "n139", + "loc": [-85.637293, 41.941834] + }, + "n1390": { + "id": "n1390", + "loc": [-85.628062, 41.957757] + }, + "n1391": { + "id": "n1391", + "loc": [-85.628063, 41.957657] + }, + "n1392": { + "id": "n1392", + "loc": [-85.628198, 41.957657] + }, + "n1393": { + "id": "n1393", + "loc": [-85.628198, 41.957678] + }, + "n1394": { + "id": "n1394", + "loc": [-85.627775, 41.958095] + }, + "n1395": { + "id": "n1395", + "loc": [-85.627608, 41.958095] + }, + "n1396": { + "id": "n1396", + "loc": [-85.627606, 41.957829] + }, + "n1397": { + "id": "n1397", + "loc": [-85.627774, 41.957829] + }, + "n1398": { + "id": "n1398", + "loc": [-85.626816, 41.957636] + }, + "n1399": { + "id": "n1399", + "loc": [-85.626787, 41.957681] + }, + "n14": { + "id": "n14", + "loc": [-85.633643, 41.940122] + }, + "n140": { + "id": "n140", + "loc": [-85.637293, 41.941823] + }, + "n1400": { + "id": "n1400", + "loc": [-85.626673, 41.95764] + }, + "n1401": { + "id": "n1401", + "loc": [-85.626703, 41.957594] + }, + "n1402": { + "id": "n1402", + "loc": [-85.62694, 41.95752] + }, + "n1403": { + "id": "n1403", + "loc": [-85.62688, 41.957611] + }, + "n1404": { + "id": "n1404", + "loc": [-85.626798, 41.957582] + }, + "n1405": { + "id": "n1405", + "loc": [-85.626793, 41.95759] + }, + "n1406": { + "id": "n1406", + "loc": [-85.626657, 41.95754] + }, + "n1407": { + "id": "n1407", + "loc": [-85.626666, 41.957526] + }, + "n1408": { + "id": "n1408", + "loc": [-85.626584, 41.957497] + }, + "n1409": { + "id": "n1409", + "loc": [-85.626638, 41.957415] + }, + "n141": { + "id": "n141", + "loc": [-85.637363, 41.941822] + }, + "n1410": { + "id": "n1410", + "loc": [-85.626731, 41.957449] + }, + "n1411": { + "id": "n1411", + "loc": [-85.626725, 41.957457] + }, + "n1412": { + "id": "n1412", + "loc": [-85.626843, 41.9575] + }, + "n1413": { + "id": "n1413", + "loc": [-85.626851, 41.957487] + }, + "n1414": { + "id": "n1414", + "loc": [-85.626579, 41.957521] + }, + "n1415": { + "id": "n1415", + "loc": [-85.626537, 41.957587] + }, + "n1416": { + "id": "n1416", + "loc": [-85.626427, 41.957551] + }, + "n1417": { + "id": "n1417", + "loc": [-85.626468, 41.957483] + }, + "n1418": { + "id": "n1418", + "loc": [-85.626592, 41.957639] + }, + "n1419": { + "id": "n1419", + "loc": [-85.626807, 41.957713] + }, + "n142": { + "id": "n142", + "loc": [-85.637364, 41.941833] + }, + "n1420": { + "id": "n1420", + "loc": [-85.627129, 41.957401] + }, + "n1421": { + "id": "n1421", + "loc": [-85.627209, 41.95742] + }, + "n1422": { + "id": "n1422", + "loc": [-85.627302, 41.957435] + }, + "n1423": { + "id": "n1423", + "loc": [-85.629566, 41.957048] + }, + "n1424": { + "id": "n1424", + "loc": [-85.629568, 41.957215] + }, + "n1425": { + "id": "n1425", + "loc": [-85.629383, 41.957216] + }, + "n1426": { + "id": "n1426", + "loc": [-85.629384, 41.95727] + }, + "n1427": { + "id": "n1427", + "loc": [-85.629231, 41.957271] + }, + "n1428": { + "id": "n1428", + "loc": [-85.62923, 41.957198] + }, + "n1429": { + "id": "n1429", + "loc": [-85.629322, 41.957198] + }, + "n143": { + "id": "n143", + "loc": [-85.637559, 41.942448] + }, + "n1430": { + "id": "n1430", + "loc": [-85.629321, 41.957108] + }, + "n1431": { + "id": "n1431", + "loc": [-85.629441, 41.957108] + }, + "n1432": { + "id": "n1432", + "loc": [-85.62944, 41.957049] + }, + "n1433": { + "id": "n1433", + "loc": [-85.629337, 41.957018] + }, + "n1434": { + "id": "n1434", + "loc": [-85.629366, 41.957028] + }, + "n1435": { + "id": "n1435", + "loc": [-85.629375, 41.957044] + }, + "n1436": { + "id": "n1436", + "loc": [-85.629354, 41.957071] + }, + "n1437": { + "id": "n1437", + "loc": [-85.629317, 41.957071] + }, + "n1438": { + "id": "n1438", + "loc": [-85.62929, 41.957074] + }, + "n1439": { + "id": "n1439", + "loc": [-85.62927, 41.957084] + }, + "n144": { + "id": "n144", + "loc": [-85.637036, 41.942454] + }, + "n1440": { + "id": "n1440", + "loc": [-85.629232, 41.957081] + }, + "n1441": { + "id": "n1441", + "loc": [-85.629222, 41.957057] + }, + "n1442": { + "id": "n1442", + "loc": [-85.629259, 41.957025] + }, + "n1443": { + "id": "n1443", + "loc": [-85.629293, 41.957017] + }, + "n1444": { + "id": "n1444", + "loc": [-85.629251, 41.957085] + }, + "n1445": { + "id": "n1445", + "loc": [-85.629235, 41.957041] + }, + "n1446": { + "id": "n1446", + "loc": [-85.62937, 41.95706] + }, + "n1447": { + "id": "n1447", + "loc": [-85.629531, 41.956909] + }, + "n1448": { + "id": "n1448", + "loc": [-85.629408, 41.956909] + }, + "n1449": { + "id": "n1449", + "loc": [-85.629402, 41.956681] + }, + "n145": { + "id": "n145", + "loc": [-85.636692, 41.942828] + }, + "n1450": { + "id": "n1450", + "loc": [-85.62953, 41.956681] + }, + "n1451": { + "id": "n1451", + "loc": [-85.629402, 41.956728] + }, + "n1452": { + "id": "n1452", + "loc": [-85.629408, 41.956845] + }, + "n1453": { + "id": "n1453", + "loc": [-85.629385, 41.956845] + }, + "n1454": { + "id": "n1454", + "loc": [-85.629384, 41.956728] + }, + "n1455": { + "id": "n1455", + "loc": [-85.629063, 41.956973] + }, + "n1456": { + "id": "n1456", + "loc": [-85.629064, 41.957009] + }, + "n1457": { + "id": "n1457", + "loc": [-85.62902, 41.957009] + }, + "n1458": { + "id": "n1458", + "loc": [-85.629019, 41.956973] + }, + "n1459": { + "id": "n1459", + "loc": [-85.629136, 41.956633] + }, + "n146": { + "id": "n146", + "loc": [-85.635929, 41.942826] + }, + "n1460": { + "id": "n1460", + "loc": [-85.629084, 41.956632] + }, + "n1461": { + "id": "n1461", + "loc": [-85.629084, 41.956605] + }, + "n1462": { + "id": "n1462", + "loc": [-85.629136, 41.956605] + }, + "n1463": { + "id": "n1463", + "loc": [-85.629153, 41.956657] + }, + "n1464": { + "id": "n1464", + "loc": [-85.627914, 41.956661] + }, + "n1465": { + "id": "n1465", + "loc": [-85.630096, 41.956101] + }, + "n1466": { + "id": "n1466", + "loc": [-85.630097, 41.95612] + }, + "n1467": { + "id": "n1467", + "loc": [-85.630011, 41.956121] + }, + "n1468": { + "id": "n1468", + "loc": [-85.630015, 41.956374] + }, + "n1469": { + "id": "n1469", + "loc": [-85.629148, 41.95626] + }, + "n147": { + "id": "n147", + "loc": [-85.636433, 41.942828] + }, + "n1470": { + "id": "n1470", + "loc": [-85.629527, 41.956591] + }, + "n1471": { + "id": "n1471", + "loc": [-85.629405, 41.956591] + }, + "n1472": { + "id": "n1472", + "loc": [-85.629405, 41.956459] + }, + "n1473": { + "id": "n1473", + "loc": [-85.629369, 41.956459] + }, + "n1474": { + "id": "n1474", + "loc": [-85.629369, 41.956424] + }, + "n1475": { + "id": "n1475", + "loc": [-85.629413, 41.956424] + }, + "n1476": { + "id": "n1476", + "loc": [-85.629414, 41.956326] + }, + "n1477": { + "id": "n1477", + "loc": [-85.629522, 41.956326] + }, + "n1478": { + "id": "n1478", + "loc": [-85.629522, 41.956487] + }, + "n1479": { + "id": "n1479", + "loc": [-85.629527, 41.956487] + }, + "n148": { + "id": "n148", + "loc": [-85.636435, 41.942864], + "tags": { + "entrance": "yes" + } + }, + "n1480": { + "id": "n1480", + "loc": [-85.629414, 41.95634] + }, + "n1481": { + "id": "n1481", + "loc": [-85.629149, 41.956338] + }, + "n1482": { + "id": "n1482", + "loc": [-85.62931, 41.956531] + }, + "n1483": { + "id": "n1483", + "loc": [-85.629291, 41.95655] + }, + "n1484": { + "id": "n1484", + "loc": [-85.629255, 41.95655] + }, + "n1485": { + "id": "n1485", + "loc": [-85.629236, 41.956533] + }, + "n1486": { + "id": "n1486", + "loc": [-85.629237, 41.956461] + }, + "n1487": { + "id": "n1487", + "loc": [-85.629257, 41.956445] + }, + "n1488": { + "id": "n1488", + "loc": [-85.629257, 41.956428] + }, + "n1489": { + "id": "n1489", + "loc": [-85.629287, 41.956428] + }, + "n149": { + "id": "n149", + "loc": [-85.637235, 41.942622] + }, + "n1490": { + "id": "n1490", + "loc": [-85.629287, 41.956445] + }, + "n1491": { + "id": "n1491", + "loc": [-85.62931, 41.95646] + }, + "n1492": { + "id": "n1492", + "loc": [-85.629049, 41.956425] + }, + "n1493": { + "id": "n1493", + "loc": [-85.628907, 41.956427] + }, + "n1494": { + "id": "n1494", + "loc": [-85.628907, 41.956455] + }, + "n1495": { + "id": "n1495", + "loc": [-85.628841, 41.956455] + }, + "n1496": { + "id": "n1496", + "loc": [-85.62884, 41.956424] + }, + "n1497": { + "id": "n1497", + "loc": [-85.628764, 41.956425] + }, + "n1498": { + "id": "n1498", + "loc": [-85.628762, 41.956323] + }, + "n1499": { + "id": "n1499", + "loc": [-85.628808, 41.956323] + }, + "n15": { + "id": "n15", + "loc": [-85.633477, 41.940187] + }, + "n150": { + "id": "n150", + "loc": [-85.637247, 41.943116] + }, + "n1500": { + "id": "n1500", + "loc": [-85.628808, 41.956314] + }, + "n1501": { + "id": "n1501", + "loc": [-85.628911, 41.956313] + }, + "n1502": { + "id": "n1502", + "loc": [-85.628911, 41.956322] + }, + "n1503": { + "id": "n1503", + "loc": [-85.62896, 41.956322] + }, + "n1504": { + "id": "n1504", + "loc": [-85.62896, 41.956348] + }, + "n1505": { + "id": "n1505", + "loc": [-85.629047, 41.956347] + }, + "n1506": { + "id": "n1506", + "loc": [-85.628893, 41.957263] + }, + "n1507": { + "id": "n1507", + "loc": [-85.628788, 41.957264] + }, + "n1508": { + "id": "n1508", + "loc": [-85.628786, 41.95711] + }, + "n1509": { + "id": "n1509", + "loc": [-85.628894, 41.957109] + }, + "n151": { + "id": "n151", + "loc": [-85.637564, 41.943116] + }, + "n1510": { + "id": "n1510", + "loc": [-85.628893, 41.957075] + }, + "n1511": { + "id": "n1511", + "loc": [-85.628965, 41.957075] + }, + "n1512": { + "id": "n1512", + "loc": [-85.628965, 41.957111] + }, + "n1513": { + "id": "n1513", + "loc": [-85.629035, 41.95711] + }, + "n1514": { + "id": "n1514", + "loc": [-85.629036, 41.957209] + }, + "n1515": { + "id": "n1515", + "loc": [-85.628893, 41.95721] + }, + "n1516": { + "id": "n1516", + "loc": [-85.631348, 41.95773] + }, + "n1517": { + "id": "n1517", + "loc": [-85.631101, 41.957732] + }, + "n1518": { + "id": "n1518", + "loc": [-85.631099, 41.957558] + }, + "n1519": { + "id": "n1519", + "loc": [-85.63123, 41.957557] + }, + "n152": { + "id": "n152", + "loc": [-85.637552, 41.942619] + }, + "n1520": { + "id": "n1520", + "loc": [-85.631231, 41.957618] + }, + "n1521": { + "id": "n1521", + "loc": [-85.63129, 41.957618] + }, + "n1522": { + "id": "n1522", + "loc": [-85.63129, 41.957651] + }, + "n1523": { + "id": "n1523", + "loc": [-85.631346, 41.957651] + }, + "n1524": { + "id": "n1524", + "loc": [-85.631366, 41.95802] + }, + "n1525": { + "id": "n1525", + "loc": [-85.631141, 41.958021] + }, + "n1526": { + "id": "n1526", + "loc": [-85.63114, 41.957943] + }, + "n1527": { + "id": "n1527", + "loc": [-85.631167, 41.957943] + }, + "n1528": { + "id": "n1528", + "loc": [-85.631166, 41.957808] + }, + "n1529": { + "id": "n1529", + "loc": [-85.631301, 41.957807] + }, + "n153": { + "id": "n153", + "loc": [-85.63763, 41.942528] + }, + "n1530": { + "id": "n1530", + "loc": [-85.631302, 41.95789] + }, + "n1531": { + "id": "n1531", + "loc": [-85.631364, 41.95789] + }, + "n1532": { + "id": "n1532", + "loc": [-85.631539, 41.957754] + }, + "n1533": { + "id": "n1533", + "loc": [-85.631069, 41.957756] + }, + "n1534": { + "id": "n1534", + "loc": [-85.631536, 41.957518] + }, + "n1535": { + "id": "n1535", + "loc": [-85.631543, 41.957995] + }, + "n1536": { + "id": "n1536", + "loc": [-85.631531, 41.957748] + }, + "n1537": { + "id": "n1537", + "loc": [-85.631485, 41.957748] + }, + "n1538": { + "id": "n1538", + "loc": [-85.631484, 41.957698] + }, + "n1539": { + "id": "n1539", + "loc": [-85.631531, 41.957698] + }, + "n154": { + "id": "n154", + "loc": [-85.637151, 41.94253] + }, + "n1540": { + "id": "n1540", + "loc": [-85.631586, 41.957742] + }, + "n1541": { + "id": "n1541", + "loc": [-85.63155, 41.957742] + }, + "n1542": { + "id": "n1542", + "loc": [-85.631551, 41.957702] + }, + "n1543": { + "id": "n1543", + "loc": [-85.631587, 41.957702] + }, + "n1544": { + "id": "n1544", + "loc": [-85.631534, 41.95807] + }, + "n1545": { + "id": "n1545", + "loc": [-85.631534, 41.958097] + }, + "n1546": { + "id": "n1546", + "loc": [-85.631491, 41.958097] + }, + "n1547": { + "id": "n1547", + "loc": [-85.631491, 41.95807] + }, + "n1548": { + "id": "n1548", + "loc": [-85.631304, 41.958861] + }, + "n1549": { + "id": "n1549", + "loc": [-85.631186, 41.958862] + }, + "n155": { + "id": "n155", + "loc": [-85.63715, 41.942424] + }, + "n1550": { + "id": "n1550", + "loc": [-85.631182, 41.958653] + }, + "n1551": { + "id": "n1551", + "loc": [-85.6313, 41.958651] + }, + "n1552": { + "id": "n1552", + "loc": [-85.631293, 41.95854] + }, + "n1553": { + "id": "n1553", + "loc": [-85.631176, 41.958539] + }, + "n1554": { + "id": "n1554", + "loc": [-85.631176, 41.958377] + }, + "n1555": { + "id": "n1555", + "loc": [-85.631297, 41.958377] + }, + "n1556": { + "id": "n1556", + "loc": [-85.631297, 41.958422] + }, + "n1557": { + "id": "n1557", + "loc": [-85.631333, 41.958422] + }, + "n1558": { + "id": "n1558", + "loc": [-85.631333, 41.958479] + }, + "n1559": { + "id": "n1559", + "loc": [-85.631293, 41.958479] + }, + "n156": { + "id": "n156", + "loc": [-85.637629, 41.942422] + }, + "n1560": { + "id": "n1560", + "loc": [-85.631951, 41.958908] + }, + "n1561": { + "id": "n1561", + "loc": [-85.631838, 41.958909] + }, + "n1562": { + "id": "n1562", + "loc": [-85.631837, 41.958847] + }, + "n1563": { + "id": "n1563", + "loc": [-85.631859, 41.958847] + }, + "n1564": { + "id": "n1564", + "loc": [-85.631858, 41.958746] + }, + "n1565": { + "id": "n1565", + "loc": [-85.631961, 41.958745] + }, + "n1566": { + "id": "n1566", + "loc": [-85.631962, 41.958812] + }, + "n1567": { + "id": "n1567", + "loc": [-85.631949, 41.958813] + }, + "n1568": { + "id": "n1568", + "loc": [-85.631579, 41.958913] + }, + "n1569": { + "id": "n1569", + "loc": [-85.631567, 41.95864] + }, + "n157": { + "id": "n157", + "loc": [-85.638232, 41.942477] + }, + "n1570": { + "id": "n1570", + "loc": [-85.631942, 41.958639] + }, + "n1571": { + "id": "n1571", + "loc": [-85.631543, 41.958594] + }, + "n1572": { + "id": "n1572", + "loc": [-85.631543, 41.958065] + }, + "n1573": { + "id": "n1573", + "loc": [-85.631888, 41.958546] + }, + "n1574": { + "id": "n1574", + "loc": [-85.631804, 41.958546] + }, + "n1575": { + "id": "n1575", + "loc": [-85.631803, 41.95841] + }, + "n1576": { + "id": "n1576", + "loc": [-85.631886, 41.958409] + }, + "n1577": { + "id": "n1577", + "loc": [-85.631897, 41.958125] + }, + "n1578": { + "id": "n1578", + "loc": [-85.631755, 41.958126] + }, + "n1579": { + "id": "n1579", + "loc": [-85.631756, 41.958174] + }, + "n158": { + "id": "n158", + "loc": [-85.637775, 41.942483] + }, + "n1580": { + "id": "n1580", + "loc": [-85.63178, 41.958174] + }, + "n1581": { + "id": "n1581", + "loc": [-85.631782, 41.958272] + }, + "n1582": { + "id": "n1582", + "loc": [-85.631922, 41.958271] + }, + "n1583": { + "id": "n1583", + "loc": [-85.631922, 41.958244] + }, + "n1584": { + "id": "n1584", + "loc": [-85.631883, 41.958245] + }, + "n1585": { + "id": "n1585", + "loc": [-85.631882, 41.958175] + }, + "n1586": { + "id": "n1586", + "loc": [-85.631898, 41.958175] + }, + "n1587": { + "id": "n1587", + "loc": [-85.631924, 41.958032] + }, + "n1588": { + "id": "n1588", + "loc": [-85.631762, 41.958032] + }, + "n1589": { + "id": "n1589", + "loc": [-85.63176, 41.957827] + }, + "n159": { + "id": "n159", + "loc": [-85.638107, 41.942512] + }, + "n1590": { + "id": "n1590", + "loc": [-85.631888, 41.957826] + }, + "n1591": { + "id": "n1591", + "loc": [-85.631888, 41.957892] + }, + "n1592": { + "id": "n1592", + "loc": [-85.631871, 41.957892] + }, + "n1593": { + "id": "n1593", + "loc": [-85.631872, 41.957949] + }, + "n1594": { + "id": "n1594", + "loc": [-85.631923, 41.957949] + }, + "n1595": { + "id": "n1595", + "loc": [-85.631695, 41.95795] + }, + "n1596": { + "id": "n1596", + "loc": [-85.631666, 41.957975] + }, + "n1597": { + "id": "n1597", + "loc": [-85.63163, 41.957975] + }, + "n1598": { + "id": "n1598", + "loc": [-85.6316, 41.957951] + }, + "n1599": { + "id": "n1599", + "loc": [-85.6316, 41.95785] + }, + "n16": { + "id": "n16", + "loc": [-85.63341, 41.94032] + }, + "n160": { + "id": "n160", + "loc": [-85.637763, 41.942514] + }, + "n1600": { + "id": "n1600", + "loc": [-85.63166, 41.95785] + }, + "n1601": { + "id": "n1601", + "loc": [-85.631696, 41.957873] + }, + "n1602": { + "id": "n1602", + "loc": [-85.631924, 41.957762] + }, + "n1603": { + "id": "n1603", + "loc": [-85.631762, 41.957762] + }, + "n1604": { + "id": "n1604", + "loc": [-85.631762, 41.957708] + }, + "n1605": { + "id": "n1605", + "loc": [-85.631785, 41.957708] + }, + "n1606": { + "id": "n1606", + "loc": [-85.631785, 41.957606] + }, + "n1607": { + "id": "n1607", + "loc": [-85.631734, 41.957606] + }, + "n1608": { + "id": "n1608", + "loc": [-85.631734, 41.957538] + }, + "n1609": { + "id": "n1609", + "loc": [-85.631821, 41.957538] + }, + "n161": { + "id": "n161", + "loc": [-85.637763, 41.942445] + }, + "n1610": { + "id": "n1610", + "loc": [-85.631935, 41.957545] + }, + "n1611": { + "id": "n1611", + "loc": [-85.631821, 41.957544] + }, + "n1612": { + "id": "n1612", + "loc": [-85.631935, 41.957645] + }, + "n1613": { + "id": "n1613", + "loc": [-85.631924, 41.957645] + }, + "n1614": { + "id": "n1614", + "loc": [-85.627135, 41.953828] + }, + "n1615": { + "id": "n1615", + "loc": [-85.633517, 41.941353], + "tags": { + "man_made": "lighthouse" + } + }, + "n1616": { + "id": "n1616", + "loc": [-85.633659, 41.942041], + "tags": { + "amenity": "bbq" + } + }, + "n1617": { + "id": "n1617", + "loc": [-85.63662, 41.942911], + "tags": { + "amenity": "toilets" + } + }, + "n1618": { + "id": "n1618", + "loc": [-85.637487, 41.943876], + "tags": { + "amenity": "toilets" + } + }, + "n1619": { + "id": "n1619", + "loc": [-85.634938, 41.941917], + "tags": { + "amenity": "toilets" + } + }, + "n162": { + "id": "n162", + "loc": [-85.638107, 41.942443] + }, + "n1620": { + "id": "n1620", + "loc": [-85.632427, 41.941678], + "tags": { + "amenity": "bbq" + } + }, + "n1621": { + "id": "n1621", + "loc": [-85.638033, 41.944568], + "tags": { + "amenity": "bbq" + } + }, + "n1622": { + "id": "n1622", + "loc": [-85.638052, 41.944522], + "tags": { + "amenity": "bbq" + } + }, + "n1623": { + "id": "n1623", + "loc": [-85.635001, 41.941965] + }, + "n1624": { + "id": "n1624", + "loc": [-85.634635, 41.941884] + }, + "n1625": { + "id": "n1625", + "loc": [-85.634667, 41.941894] + }, + "n1626": { + "id": "n1626", + "loc": [-85.634791, 41.942011] + }, + "n1627": { + "id": "n1627", + "loc": [-85.634749, 41.941938] + }, + "n1628": { + "id": "n1628", + "loc": [-85.627295, 41.953946], + "tags": { + "barrier": "gate" + } + }, + "n1629": { + "id": "n1629", + "loc": [-85.629076, 41.954689] + }, + "n163": { + "id": "n163", + "loc": [-85.638813, 41.942475] + }, "n1630": { "id": "n1630", "loc": [-85.640667, 41.942595] @@ -8,9 +2935,21 @@ "id": "n1631", "loc": [-85.639455, 41.94261] }, + "n1632": { + "id": "n1632", + "loc": [-85.643407, 41.942336] + }, "n1633": { "id": "n1633", - "loc": [-85.641825, 41.941316] + "loc": [-85.641845, 41.941316] + }, + "n1634": { + "id": "n1634", + "loc": [-85.643322, 41.942224] + }, + "n1635": { + "id": "n1635", + "loc": [-85.643301, 41.942124] }, "n1636": { "id": "n1636", @@ -18,31 +2957,47 @@ }, "n1637": { "id": "n1637", - "loc": [-85.640611, 41.940037] + "loc": [-85.640614, 41.940058] }, "n1638": { "id": "n1638", - "loc": [-85.639402, 41.941336] + "loc": [-85.639428, 41.941335] }, "n1639": { "id": "n1639", "loc": [-85.643078, 41.941293] }, + "n164": { + "id": "n164", + "loc": [-85.63883, 41.942422] + }, + "n1640": { + "id": "n1640", + "loc": [-85.64371, 41.942302] + }, "n1641": { "id": "n1641", "loc": [-85.643056, 41.94001] }, "n1642": { "id": "n1642", - "loc": [-85.643097, 41.942575] + "loc": [-85.643097, 41.942575], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "signal" + } }, "n1643": { "id": "n1643", "loc": [-85.641855, 41.942586] }, + "n1644": { + "id": "n1644", + "loc": [-85.643549, 41.942209] + }, "n1645": { "id": "n1645", - "loc": [-85.639362, 41.940051] + "loc": [-85.639359, 41.94007] }, "n1646": { "id": "n1646", @@ -60,6 +3015,10 @@ "id": "n1649", "loc": [-85.642797, 41.940286] }, + "n165": { + "id": "n165", + "loc": [-85.63883, 41.942508] + }, "n1650": { "id": "n1650", "loc": [-85.642571, 41.940523] @@ -100,6 +3059,10 @@ "id": "n1659", "loc": [-85.641962, 41.94109] }, + "n166": { + "id": "n166", + "loc": [-85.638364, 41.942508] + }, "n1660": { "id": "n1660", "loc": [-85.642753, 41.941084] @@ -140,6 +3103,10 @@ "id": "n1669", "loc": [-85.641766, 41.940598] }, + "n167": { + "id": "n167", + "loc": [-85.638836, 41.942167] + }, "n1670": { "id": "n1670", "loc": [-85.64198, 41.940598] @@ -180,6 +3147,10 @@ "id": "n1679", "loc": [-85.641813, 41.941132] }, + "n168": { + "id": "n168", + "loc": [-85.638836, 41.94229] + }, "n1680": { "id": "n1680", "loc": [-85.641839, 41.941111] @@ -196,6 +3167,10 @@ "id": "n1683", "loc": [-85.642776, 41.941302] }, + "n1685": { + "id": "n1685", + "loc": [-85.622342, 41.953127] + }, "n1686": { "id": "n1686", "loc": [-85.641848, 41.941167] @@ -212,6 +3187,10 @@ "id": "n1689", "loc": [-85.64238, 41.942262] }, + "n169": { + "id": "n169", + "loc": [-85.638594, 41.94229] + }, "n1690": { "id": "n1690", "loc": [-85.642374, 41.941944] @@ -252,6 +3231,14 @@ "id": "n1699", "loc": [-85.641244, 41.942005] }, + "n17": { + "id": "n17", + "loc": [-85.633478, 41.94081] + }, + "n170": { + "id": "n170", + "loc": [-85.638594, 41.942422] + }, "n1700": { "id": "n1700", "loc": [-85.64125, 41.942431] @@ -292,6 +3279,10 @@ "id": "n1709", "loc": [-85.638775, 41.942327] }, + "n171": { + "id": "n171", + "loc": [-85.638364, 41.942356] + }, "n1710": { "id": "n1710", "loc": [-85.638775, 41.942299] @@ -332,6 +3323,10 @@ "id": "n1719", "loc": [-85.639988, 41.942283] }, + "n172": { + "id": "n172", + "loc": [-85.638364, 41.942167] + }, "n1720": { "id": "n1720", "loc": [-85.63999, 41.942383] @@ -372,6 +3367,10 @@ "id": "n1729", "loc": [-85.639789, 41.942753] }, + "n173": { + "id": "n173", + "loc": [-85.639038, 41.942463] + }, "n1730": { "id": "n1730", "loc": [-85.639698, 41.942754] @@ -412,6 +3411,10 @@ "id": "n1739", "loc": [-85.643401, 41.942777] }, + "n174": { + "id": "n174", + "loc": [-85.638897, 41.942464] + }, "n1740": { "id": "n1740", "loc": [-85.643401, 41.942863] @@ -452,6 +3455,10 @@ "id": "n1749", "loc": [-85.642778, 41.942906] }, + "n175": { + "id": "n175", + "loc": [-85.638897, 41.942423] + }, "n1750": { "id": "n1750", "loc": [-85.642833, 41.942905] @@ -492,6 +3499,10 @@ "id": "n1759", "loc": [-85.641676, 41.942922] }, + "n176": { + "id": "n176", + "loc": [-85.638853, 41.942423] + }, "n1760": { "id": "n1760", "loc": [-85.6416, 41.942985] @@ -532,6 +3543,10 @@ "id": "n1769", "loc": [-85.641032, 41.942797] }, + "n177": { + "id": "n177", + "loc": [-85.638852, 41.94237] + }, "n1770": { "id": "n1770", "loc": [-85.640997, 41.942798] @@ -572,6 +3587,10 @@ "id": "n1779", "loc": [-85.643649, 41.941323] }, + "n178": { + "id": "n178", + "loc": [-85.638892, 41.94237] + }, "n1780": { "id": "n1780", "loc": [-85.643656, 41.941716] @@ -612,6 +3631,10 @@ "id": "n1789", "loc": [-85.643618, 41.942015] }, + "n179": { + "id": "n179", + "loc": [-85.638891, 41.942334] + }, "n1790": { "id": "n1790", "loc": [-85.64346, 41.941971] @@ -640,6 +3663,10 @@ "id": "n1796", "loc": [-85.643398, 41.942031] }, + "n1797": { + "id": "n1797", + "loc": [-85.621531, 41.952693] + }, "n1798": { "id": "n1798", "loc": [-85.643221, 41.942028] @@ -648,6 +3675,14 @@ "id": "n1799", "loc": [-85.643225, 41.942276] }, + "n18": { + "id": "n18", + "loc": [-85.63345, 41.94071] + }, + "n180": { + "id": "n180", + "loc": [-85.639037, 41.942334] + }, "n1800": { "id": "n1800", "loc": [-85.643265, 41.942347] @@ -688,10 +3723,18 @@ "id": "n1809", "loc": [-85.643346, 41.941924] }, + "n181": { + "id": "n181", + "loc": [-85.638074, 41.941839] + }, "n1810": { "id": "n1810", "loc": [-85.643086, 41.94192] }, + "n1811": { + "id": "n1811", + "loc": [-85.643529, 41.94217] + }, "n1812": { "id": "n1812", "loc": [-85.643489, 41.942003] @@ -724,6 +3767,10 @@ "id": "n1819", "loc": [-85.643818, 41.941369] }, + "n182": { + "id": "n182", + "loc": [-85.638076, 41.941942] + }, "n1820": { "id": "n1820", "loc": [-85.643682, 41.941304] @@ -750,7 +3797,7 @@ }, "n1826": { "id": "n1826", - "loc": [-85.636967, 41.940078] + "loc": [-85.636967, 41.940118] }, "n1827": { "id": "n1827", @@ -764,6 +3811,14 @@ "id": "n1829", "loc": [-85.637002, 41.941355] }, + "n183": { + "id": "n183", + "loc": [-85.637955, 41.941944] + }, + "n1830": { + "id": "n1830", + "loc": [-85.643532, 41.94204] + }, "n1831": { "id": "n1831", "loc": [-85.638235, 41.942615] @@ -788,6 +3843,14 @@ "id": "n1835", "loc": [-85.634873, 41.943044] }, + "n1836": { + "id": "n1836", + "loc": [-85.643482, 41.941976] + }, + "n1837": { + "id": "n1837", + "loc": [-85.64345, 41.941945] + }, "n1838": { "id": "n1838", "loc": [-85.641885, 41.943851] @@ -796,6 +3859,10 @@ "id": "n1839", "loc": [-85.641915, 41.945121] }, + "n184": { + "id": "n184", + "loc": [-85.637953, 41.94184] + }, "n1840": { "id": "n1840", "loc": [-85.639454, 41.943871] @@ -806,7 +3873,7 @@ }, "n1842": { "id": "n1842", - "loc": [-85.635768, 41.940092] + "loc": [-85.635768, 41.940113] }, "n1843": { "id": "n1843", @@ -822,16 +3889,24 @@ }, "n1846": { "id": "n1846", - "loc": [-85.638193, 41.940065] + "loc": [-85.638199, 41.940079] }, "n1847": { "id": "n1847", "loc": [-85.640688, 41.943861] }, + "n1848": { + "id": "n1848", + "loc": [-85.643397, 41.941924] + }, "n1849": { "id": "n1849", "loc": [-85.643117, 41.943841] }, + "n185": { + "id": "n185", + "loc": [-85.637953, 41.941866] + }, "n1850": { "id": "n1850", "loc": [-85.636731, 41.94263] @@ -875,6 +3950,10 @@ "id": "n1859", "loc": [-85.644345, 41.942307] }, + "n186": { + "id": "n186", + "loc": [-85.637873, 41.941867] + }, "n1860": { "id": "n1860", "loc": [-85.644232, 41.942304] @@ -883,387 +3962,17 @@ "id": "n1861", "loc": [-85.644134, 41.941403] }, - "w338": { - "id": "w338", - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "nodes": ["n1813", "n1635", "n1814", "n1634", "n1815", "n1632", "n1816", "n1817"] - }, - "w339": { - "id": "w339", - "tags": { - "highway": "residential", - "name": "Millard Street" - }, - "nodes": ["n1827", "n1842", "n1826", "n1828", "n1846", "n1645", "n1637", "n1641"] - }, - "w340": { - "id": "w340", - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "nodes": ["n1824", "n1825"] - }, - "w341": { - "id": "w341", - "tags": { - "building": "yes" - }, - "nodes": ["n1701", "n1702", "n1703", "n1704", "n1705", "n1706", "n1701"] - }, - "w342": { - "id": "w342", - "tags": { - "amenity": "parking", - "fee": "no" - }, - "nodes": ["n1855", "n1860", "n1856", "n1775", "n1804", "n1776", "n1855"] - }, - "w343": { - "id": "w343", - "tags": { - "building": "yes" - }, - "nodes": ["n1757", "n1758", "n1759", "n1760", "n1757"] - }, - "w344": { - "id": "w344", - "tags": { - "building": "school" - }, - "nodes": ["n1659", "n1660", "n1661", "n1662", "n1663", "n1664", "n1665", "n1666", "n1659"] - }, - "w345": { - "id": "w345", - "tags": { - "building": "yes" - }, - "nodes": ["n1751", "n1752", "n1753", "n1754", "n1755", "n1756", "n1751"] - }, - "w346": { - "id": "w346", - "tags": { - "highway": "residential", - "name": "Douglas Avenue" - }, - "nodes": ["n1641", "n1676", "n1673", "n1639", "n1810", "n1642", "n1849", "n1845"] - }, - "w347": { - "id": "w347", - "tags": { - "highway": "primary", - "name": "Michigan Avenue" - }, - "nodes": [ - "n1642", - "n1643", - "n1031", - "n1630", - "n845", - "n1631", - "n816", - "n1831", - "n902", - "n905", - "n152", - "n149", - "n1832", - "n1850", - "n878", - "n1833", - "n1852", - "n42", - "n1834", - "n61", - "n60", - "n1851", - "n1835" - ] - }, - "w348": { - "id": "w348", - "tags": { - "leisure": "playground" - }, - "nodes": ["n1650", "n1651", "n1652", "n1653", "n1654", "n1655", "n1656", "n1657", "n1658", "n1650"] - }, - "w349": { - "id": "w349", - "tags": { - "highway": "service" - }, - "nodes": ["n1861", "n1818", "n1819", "n1820", "n1821", "n1825", "n1823", "n1639"] - }, - "w350": { - "id": "w350", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1783", "n1819", "n1784", "n1857", "n1861", "n1858", "n1783"] - }, - "w351": { - "id": "w351", - "tags": { - "building": "yes" - }, - "nodes": ["n1717", "n1718", "n1719", "n1720", "n1717"] - }, - "w352": { - "id": "w352", - "tags": { - "building": "yes" - }, - "nodes": ["n1743", "n1744", "n1745", "n1746", "n1747", "n1748", "n1749", "n1750", "n1743"] - }, - "w353": { - "id": "w353", - "tags": { - "highway": "residential", - "name": "Lincoln Avenue" - }, - "nodes": ["n1637", "n1636", "n1029", "n1630"] - }, - "w354": { - "id": "w354", - "tags": { - "building": "yes" - }, - "nodes": ["n1713", "n1714", "n1715", "n1716", "n1713"] - }, - "w355": { - "id": "w355", - "tags": { - "building": "yes" - }, - "nodes": ["n1689", "n1690", "n1691", "n1692", "n1693", "n1694", "n1695", "n1696", "n1689"] - }, - "w356": { - "id": "w356", - "tags": { - "highway": "residential", - "name": "Hook Avenue" - }, - "nodes": ["n1631", "n1840", "n1841"] - }, - "w357": { - "id": "w357", - "tags": { - "building": "yes" - }, - "nodes": ["n1737", "n1738", "n1739", "n1740", "n1741", "n1742", "n1737"] - }, - "w358": { - "id": "w358", - "tags": { - "building": "yes" - }, - "nodes": ["n1707", "n1708", "n1709", "n1710", "n1711", "n1712", "n1707"] - }, - "w359": { - "id": "w359", - "tags": { - "highway": "residential", - "name": "South Street" - }, - "nodes": ["n1829", "n1843", "n1638", "n1636", "n1633"] - }, - "w360": { - "id": "w360", - "tags": { - "building": "yes" - }, - "nodes": ["n1767", "n1768", "n1769", "n1770", "n1771", "n1772", "n1773", "n1774", "n1767"] - }, - "w361": { - "id": "w361", - "tags": { - "highway": "service" - }, - "nodes": [ - "n1859", - "n1860", - "n1804", - "n1640", - "n1805", - "n1817", - "n1806", - "n1644", - "n1811", - "n1807", - "n1808", - "n3419", - "n1812", - "n1790", - "n3418", - "n3744", - "n1809", - "n1813", - "n1810" - ] - }, - "w362": { - "id": "w362", - "tags": { - "highway": "residential", - "name": "South Street" - }, - "nodes": ["n1639", "n1683", "n1633"] - }, - "w363": { - "id": "w363", - "tags": { - "leisure": "pitch", - "pitch": "basketball" - }, - "nodes": ["n1646", "n1647", "n1648", "n1649", "n1646"] - }, - "w365": { - "id": "w365", - "tags": { - "building": "yes" - }, - "nodes": [ - "n1721", - "n1722", - "n1723", - "n1724", - "n1725", - "n1726", - "n1727", - "n1728", - "n1729", - "n1730", - "n1731", - "n1732", - "n1733", - "n1734", - "n1735", - "n1736", - "n1721" - ] - }, - "w366": { - "id": "w366", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1791", "n1792", "n1793", "n1794", "n1795", "n1796", "n1798", "n1799", "n1800", "n1801", "n1802", "n1803", "n1791"] - }, - "w367": { - "id": "w367", - "tags": { - "highway": "residential", - "name": "Grant Avenue" - }, - "nodes": ["n1633", "n1643", "n1838", "n1839"] - }, - "w368": { - "id": "w368", - "tags": { - "amenity": "library", - "building": "yes", - "name": "Three Rivers Public Library" - }, - "nodes": ["n1853", "n1687", "n1688", "n1854", "n1853"] - }, - "w369": { - "id": "w369", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1777", "n1778", "n1779", "n1780", "n1781", "n1782", "n1777"] - }, - "w370": { - "id": "w370", - "tags": { - "highway": "residential", - "name": "Hook Avenue" - }, - "nodes": ["n1645", "n1638", "n858", "n1631"] - }, - "w372": { - "id": "w372", - "tags": { - "building": "yes" - }, - "nodes": ["n1697", "n1698", "n1699", "n1700", "n1697"] - }, - "w373": { - "id": "w373", - "tags": { - "amenity": "parking" - }, - "nodes": ["n2891", "n1785", "n1786", "n3394", "n1787", "n1788", "n1789", "n1830", "n1836", "n1837", "n1848", "n3409", "n2891"] - }, - "w374": { - "id": "w374", - "tags": { - "building": "yes" - }, - "nodes": ["n1761", "n1762", "n1763", "n1764", "n1765", "n1766", "n1761"] - }, - "w375": { - "id": "w375", - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "nodes": ["n1822", "n1823"] - }, - "w376": { - "id": "w376", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1677", "n1678", "n1679", "n1680", "n1681", "n1682", "n1677"] - }, - "w377": { - "id": "w377", - "tags": { - "highway": "service", - "oneway": "yes" - }, - "nodes": ["n1676", "n1675", "n1674", "n1673"] - }, - "w378": { - "id": "w378", - "tags": { - "amenity": "school", - "name": "Andrews Elementary School" - }, - "nodes": ["n1667", "n1668", "n1669", "n1670", "n1671", "n1672", "n1667"] - }, - "w379": { - "id": "w379", - "tags": { - "highway": "residential", - "name": "Lincoln Avenue" - }, - "nodes": ["n1630", "n1847", "n1844"] - }, - "w380": { - "id": "w380", - "tags": { - "highway": "service", - "service": "parking_aisle", - "oneway": "yes" - }, - "nodes": ["n1683", "n3745", "n1686", "n1633"] - }, "n1862": { "id": "n1862", "loc": [-85.63607, 41.943005], "tags": { - "amenity": "fire_station", - "name": "Three Rivers Fire Department", - "addr:housenumber": "333", - "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", + "addr:housenumber": "333", + "addr:postcode": "49093", "addr:state": "MI", - "addr:postcode": "49093" + "addr:street": "Michigan Avenue", + "amenity": "fire_station", + "name": "Three Rivers Fire Department" } }, "n1863": { @@ -1294,6 +4003,10 @@ "id": "n1869", "loc": [-85.634692, 41.943098] }, + "n187": { + "id": "n187", + "loc": [-85.637877, 41.941975] + }, "n1870": { "id": "n1870", "loc": [-85.633128, 41.940484] @@ -1334,6 +4047,10 @@ "id": "n1879", "loc": [-85.634571, 41.942774] }, + "n188": { + "id": "n188", + "loc": [-85.636855, 41.942488] + }, "n1880": { "id": "n1880", "loc": [-85.63419, 41.941732] @@ -1374,6 +4091,10 @@ "id": "n1889", "loc": [-85.633551, 41.941023] }, + "n189": { + "id": "n189", + "loc": [-85.636702, 41.942488] + }, "n1890": { "id": "n1890", "loc": [-85.633719, 41.941186] @@ -1414,6 +4135,14 @@ "id": "n1899", "loc": [-85.635129, 41.942144] }, + "n19": { + "id": "n19", + "loc": [-85.633009, 41.942229] + }, + "n190": { + "id": "n190", + "loc": [-85.636702, 41.942434] + }, "n1900": { "id": "n1900", "loc": [-85.635531, 41.942143] @@ -1454,6 +4183,10 @@ "id": "n1909", "loc": [-85.635583, 41.941106] }, + "n191": { + "id": "n191", + "loc": [-85.636761, 41.942434] + }, "n1910": { "id": "n1910", "loc": [-85.635555, 41.940976] @@ -1494,6 +4227,10 @@ "id": "n1919", "loc": [-85.635118, 41.941621] }, + "n192": { + "id": "n192", + "loc": [-85.636761, 41.942369] + }, "n1920": { "id": "n1920", "loc": [-85.635085, 41.941558] @@ -1534,6 +4271,10 @@ "id": "n1929", "loc": [-85.634732, 41.941724] }, + "n193": { + "id": "n193", + "loc": [-85.636855, 41.942369] + }, "n1930": { "id": "n1930", "loc": [-85.634672, 41.941775] @@ -1564,7 +4305,7 @@ }, "n1937": { "id": "n1937", - "loc": [-85.63328, 41.940225] + "loc": [-85.633266, 41.940228] }, "n1938": { "id": "n1938", @@ -1572,7 +4313,11 @@ }, "n1939": { "id": "n1939", - "loc": [-85.633284, 41.940583] + "loc": [-85.633282, 41.94063] + }, + "n194": { + "id": "n194", + "loc": [-85.636645, 41.94249] }, "n1940": { "id": "n1940", @@ -1614,6 +4359,10 @@ "id": "n1949", "loc": [-85.63457, 41.942202] }, + "n195": { + "id": "n195", + "loc": [-85.636565, 41.94249] + }, "n1950": { "id": "n1950", "loc": [-85.634869, 41.942769] @@ -1654,6 +4403,10 @@ "id": "n1959", "loc": [-85.634494, 41.942381] }, + "n196": { + "id": "n196", + "loc": [-85.636565, 41.942474] + }, "n1960": { "id": "n1960", "loc": [-85.634486, 41.9423] @@ -1694,6 +4447,10 @@ "id": "n1969", "loc": [-85.634061, 41.942392] }, + "n197": { + "id": "n197", + "loc": [-85.636514, 41.942474] + }, "n1970": { "id": "n1970", "loc": [-85.633989, 41.942407] @@ -1734,6 +4491,10 @@ "id": "n1979", "loc": [-85.633682, 41.942351] }, + "n198": { + "id": "n198", + "loc": [-85.636514, 41.942326] + }, "n1980": { "id": "n1980", "loc": [-85.634037, 41.942273] @@ -1774,6 +4535,10 @@ "id": "n1989", "loc": [-85.634311, 41.942821] }, + "n199": { + "id": "n199", + "loc": [-85.636561, 41.942326] + }, "n1990": { "id": "n1990", "loc": [-85.634351, 41.94277] @@ -1814,6 +4579,18 @@ "id": "n1999", "loc": [-85.633551, 41.942529] }, + "n2": { + "id": "n2", + "loc": [-85.627421, 41.953877] + }, + "n20": { + "id": "n20", + "loc": [-85.633013, 41.941438] + }, + "n200": { + "id": "n200", + "loc": [-85.636561, 41.942311] + }, "n2000": { "id": "n2000", "loc": [-85.633741, 41.942493] @@ -1854,6 +4631,10 @@ "id": "n2009", "loc": [-85.63511, 41.941697] }, + "n201": { + "id": "n201", + "loc": [-85.636621, 41.942311] + }, "n2010": { "id": "n2010", "loc": [-85.635337, 41.94168] @@ -1894,6 +4675,10 @@ "id": "n2019", "loc": [-85.635189, 41.941691] }, + "n202": { + "id": "n202", + "loc": [-85.636621, 41.942351] + }, "n2020": { "id": "n2020", "loc": [-85.635089, 41.941896] @@ -1934,13 +4719,17 @@ "id": "n2029", "loc": [-85.634917, 41.942242] }, + "n203": { + "id": "n203", + "loc": [-85.63666, 41.942351] + }, "n2030": { "id": "n2030", "loc": [-85.634698, 41.941898] }, "n2031": { "id": "n2031", - "loc": [-85.634956, 41.941866] + "loc": [-85.634964, 41.941878] }, "n2032": { "id": "n2032", @@ -1974,6 +4763,10 @@ "id": "n2039", "loc": [-85.634914, 41.941996] }, + "n204": { + "id": "n204", + "loc": [-85.63666, 41.942453] + }, "n2040": { "id": "n2040", "loc": [-85.634981, 41.941979] @@ -2014,6 +4807,10 @@ "id": "n2049", "loc": [-85.635712, 41.942681] }, + "n205": { + "id": "n205", + "loc": [-85.636645, 41.942453] + }, "n2050": { "id": "n2050", "loc": [-85.633721, 41.942118] @@ -2054,6 +4851,10 @@ "id": "n2059", "loc": [-85.635314, 41.943035] }, + "n206": { + "id": "n206", + "loc": [-85.636394, 41.942471] + }, "n2060": { "id": "n2060", "loc": [-85.634919, 41.943142] @@ -2062,13 +4863,13 @@ "id": "n2061", "loc": [-85.636433, 41.942959], "tags": { - "amenity": "townhall", - "name": "Three Rivers City Hall", - "addr:housenumber": "333", - "addr:street": "Michigan Avenue", "addr:city": "Three Rivers", + "addr:housenumber": "333", + "addr:postcode": "49093", "addr:state": "MI", - "addr:postcode": "49093" + "addr:street": "Michigan Avenue", + "amenity": "townhall", + "name": "Three Rivers City Hall" } }, "n2062": { @@ -2103,6 +4904,10 @@ "id": "n2069", "loc": [-85.634934, 41.940496] }, + "n207": { + "id": "n207", + "loc": [-85.636262, 41.942472] + }, "n2070": { "id": "n2070", "loc": [-85.63504, 41.940495] @@ -2143,6 +4948,10 @@ "id": "n2079", "loc": [-85.634924, 41.940724] }, + "n208": { + "id": "n208", + "loc": [-85.636261, 41.94233] + }, "n2080": { "id": "n2080", "loc": [-85.637448, 41.938233] @@ -2183,6 +4992,10 @@ "id": "n2089", "loc": [-85.638243, 41.943674] }, + "n209": { + "id": "n209", + "loc": [-85.636353, 41.942329] + }, "n2090": { "id": "n2090", "loc": [-85.638228, 41.943747] @@ -2223,6 +5036,14 @@ "id": "n2099", "loc": [-85.637078, 41.943494] }, + "n21": { + "id": "n21", + "loc": [-85.634126, 41.942228] + }, + "n210": { + "id": "n210", + "loc": [-85.636354, 41.94239] + }, "n2100": { "id": "n2100", "loc": [-85.632903, 41.998429], @@ -2269,6 +5090,10 @@ "id": "n2109", "loc": [-85.634093, 41.935448] }, + "n211": { + "id": "n211", + "loc": [-85.636393, 41.94239] + }, "n2110": { "id": "n2110", "loc": [-85.630413, 41.94366] @@ -2309,6 +5134,10 @@ "id": "n2119", "loc": [-85.631147, 41.943201] }, + "n212": { + "id": "n212", + "loc": [-85.63444, 41.943176] + }, "n2120": { "id": "n2120", "loc": [-85.624974, 41.940579] @@ -2349,6 +5178,10 @@ "id": "n2129", "loc": [-85.6331, 41.937878] }, + "n213": { + "id": "n213", + "loc": [-85.63375, 41.942814] + }, "n2130": { "id": "n2130", "loc": [-85.625274, 41.941114] @@ -2389,6 +5222,10 @@ "id": "n2139", "loc": [-85.625778, 41.940093] }, + "n214": { + "id": "n214", + "loc": [-85.633674, 41.942869] + }, "n2140": { "id": "n2140", "loc": [-85.632641, 41.942436] @@ -2429,6 +5266,10 @@ "id": "n2149", "loc": [-85.63149, 41.943154] }, + "n215": { + "id": "n215", + "loc": [-85.633542, 41.942768] + }, "n2150": { "id": "n2150", "loc": [-85.625167, 41.940117] @@ -2469,18 +5310,54 @@ "id": "n2159", "loc": [-85.62934, 41.940843] }, + "n216": { + "id": "n216", + "loc": [-85.633618, 41.942714] + }, + "n2160": { + "id": "n2160", + "loc": [-85.62272, 41.953817] + }, + "n2161": { + "id": "n2161", + "loc": [-85.622555, 41.954453] + }, "n2162": { "id": "n2162", "loc": [-85.637225, 41.944128] }, + "n2163": { + "id": "n2163", + "loc": [-85.622628, 41.953683] + }, "n2164": { "id": "n2164", "loc": [-85.635441, 41.943989] }, + "n2165": { + "id": "n2165", + "loc": [-85.622629, 41.953807] + }, + "n2166": { + "id": "n2166", + "loc": [-85.62262, 41.953807] + }, + "n2167": { + "id": "n2167", + "loc": [-85.62262, 41.953837] + }, + "n2168": { + "id": "n2168", + "loc": [-85.622532, 41.953838] + }, "n2169": { "id": "n2169", "loc": [-85.637469, 41.944579] }, + "n217": { + "id": "n217", + "loc": [-85.634001, 41.942336] + }, "n2170": { "id": "n2170", "loc": [-85.63688, 41.943935] @@ -2489,26 +5366,74 @@ "id": "n2171", "loc": [-85.638263, 41.946367] }, + "n2172": { + "id": "n2172", + "loc": [-85.622532, 41.953807] + }, + "n2173": { + "id": "n2173", + "loc": [-85.622353, 41.953808] + }, + "n2174": { + "id": "n2174", + "loc": [-85.622352, 41.953685] + }, + "n2175": { + "id": "n2175", + "loc": [-85.622464, 41.953684] + }, + "n2176": { + "id": "n2176", + "loc": [-85.622464, 41.953648] + }, "n2177": { "id": "n2177", "loc": [-85.637136, 41.94576] }, + "n2178": { + "id": "n2178", + "loc": [-85.622521, 41.953648] + }, "n2179": { "id": "n2179", "loc": [-85.637129, 41.945415] }, + "n218": { + "id": "n218", + "loc": [-85.633825, 41.942376] + }, "n2180": { "id": "n2180", "loc": [-85.637473, 41.94607] }, + "n2181": { + "id": "n2181", + "loc": [-85.622521, 41.953683] + }, + "n2182": { + "id": "n2182", + "loc": [-85.622717, 41.954104] + }, "n2183": { "id": "n2183", "loc": [-85.637769, 41.946095] }, + "n2184": { + "id": "n2184", + "loc": [-85.623872, 41.953515] + }, + "n2185": { + "id": "n2185", + "loc": [-85.623851, 41.953588] + }, "n2186": { "id": "n2186", "loc": [-85.631385, 41.94433] }, + "n2187": { + "id": "n2187", + "loc": [-85.623608, 41.953543] + }, "n2188": { "id": "n2188", "loc": [-85.637308, 41.944882] @@ -2517,14 +5442,74 @@ "id": "n2189", "loc": [-85.634898, 41.944041] }, + "n219": { + "id": "n219", + "loc": [-85.633807, 41.942334] + }, + "n2190": { + "id": "n2190", + "loc": [-85.623604, 41.953442] + }, + "n2191": { + "id": "n2191", + "loc": [-85.623705, 41.953442] + }, + "n2192": { + "id": "n2192", + "loc": [-85.623708, 41.953493] + }, + "n2193": { + "id": "n2193", + "loc": [-85.624064, 41.952655] + }, + "n2194": { + "id": "n2194", + "loc": [-85.62395, 41.952654] + }, + "n2195": { + "id": "n2195", + "loc": [-85.623951, 41.952579] + }, "n2196": { "id": "n2196", "loc": [-85.637435, 41.944342] }, + "n2197": { + "id": "n2197", + "loc": [-85.624064, 41.952579] + }, + "n2198": { + "id": "n2198", + "loc": [-85.623812, 41.952648] + }, + "n2199": { + "id": "n2199", + "loc": [-85.623813, 41.952705] + }, + "n22": { + "id": "n22", + "loc": [-85.633531, 41.942357] + }, + "n220": { + "id": "n220", + "loc": [-85.633983, 41.942294] + }, "n2200": { "id": "n2200", "loc": [-85.637169, 41.945098] }, + "n2201": { + "id": "n2201", + "loc": [-85.623552, 41.952707] + }, + "n2202": { + "id": "n2202", + "loc": [-85.623551, 41.95263] + }, + "n2203": { + "id": "n2203", + "loc": [-85.623701, 41.952629] + }, "n2204": { "id": "n2204", "loc": [-85.635894, 41.943719] @@ -2533,6 +5518,26 @@ "id": "n2205", "loc": [-85.637297, 41.945992] }, + "n2206": { + "id": "n2206", + "loc": [-85.623724, 41.952648] + }, + "n2207": { + "id": "n2207", + "loc": [-85.623812, 41.952438] + }, + "n2208": { + "id": "n2208", + "loc": [-85.625239, 41.952197] + }, + "n2209": { + "id": "n2209", + "loc": [-85.625232, 41.952257] + }, + "n221": { + "id": "n221", + "loc": [-85.634182, 41.942495] + }, "n2210": { "id": "n2210", "loc": [-85.635175, 41.94408] @@ -2541,10 +5546,22 @@ "id": "n2211", "loc": [-85.636381, 41.943761] }, + "n2212": { + "id": "n2212", + "loc": [-85.625115, 41.952249] + }, "n2213": { "id": "n2213", "loc": [-85.638578, 41.946644] }, + "n2214": { + "id": "n2214", + "loc": [-85.625122, 41.952189] + }, + "n2215": { + "id": "n2215", + "loc": [-85.625085, 41.952031] + }, "n2216": { "id": "n2216", "loc": [-85.636126, 41.943713] @@ -2561,6 +5578,10 @@ "id": "n2219", "loc": [-85.634871, 41.943292] }, + "n222": { + "id": "n222", + "loc": [-85.634149, 41.942503] + }, "n2220": { "id": "n2220", "loc": [-85.635705, 41.943799] @@ -2601,6 +5622,10 @@ "id": "n2229", "loc": [-85.632316, 41.943042] }, + "n223": { + "id": "n223", + "loc": [-85.634098, 41.942373] + }, "n2230": { "id": "n2230", "loc": [-85.628711, 41.940744] @@ -2641,6 +5666,10 @@ "id": "n2239", "loc": [-85.634762, 41.935237] }, + "n224": { + "id": "n224", + "loc": [-85.634131, 41.942366] + }, "n2240": { "id": "n2240", "loc": [-85.63384, 41.937025] @@ -2684,6 +5713,10 @@ "id": "n2249", "loc": [-85.635393, 41.943293] }, + "n225": { + "id": "n225", + "loc": [-85.635986, 41.94177] + }, "n2250": { "id": "n2250", "loc": [-85.635645, 41.94332] @@ -2724,6 +5757,10 @@ "id": "n2259", "loc": [-85.638399, 41.944308] }, + "n226": { + "id": "n226", + "loc": [-85.635982, 41.941523] + }, "n2260": { "id": "n2260", "loc": [-85.638573, 41.944451] @@ -2764,6 +5801,10 @@ "id": "n2269", "loc": [-85.635408, 41.943429] }, + "n227": { + "id": "n227", + "loc": [-85.636108, 41.941521] + }, "n2270": { "id": "n2270", "loc": [-85.635271, 41.943654] @@ -2804,6 +5845,10 @@ "id": "n2279", "loc": [-85.634972, 41.943197] }, + "n228": { + "id": "n228", + "loc": [-85.636109, 41.941559] + }, "n2280": { "id": "n2280", "loc": [-85.633978, 41.938227] @@ -2847,6 +5892,10 @@ "id": "n2289", "loc": [-85.632541, 41.942526] }, + "n229": { + "id": "n229", + "loc": [-85.636145, 41.941559] + }, "n2290": { "id": "n2290", "loc": [-85.634058, 41.943173] @@ -2887,6 +5936,14 @@ "id": "n2299", "loc": [-85.638291, 41.94418] }, + "n23": { + "id": "n23", + "loc": [-85.633504, 41.942418] + }, + "n230": { + "id": "n230", + "loc": [-85.636145, 41.941551] + }, "n2300": { "id": "n2300", "loc": [-85.63828, 41.943811] @@ -2927,6 +5984,10 @@ "id": "n2309", "loc": [-85.635819, 41.945494] }, + "n231": { + "id": "n231", + "loc": [-85.636312, 41.941549] + }, "n2310": { "id": "n2310", "loc": [-85.635303, 41.944891] @@ -2943,466 +6004,6 @@ "id": "n2313", "loc": [-85.634267, 41.935266] }, - "w381": { - "id": "w381", - "tags": { - "highway": "footway" - }, - "nodes": ["n2022", "n2037"] - }, - "w382": { - "id": "w382", - "tags": { - "highway": "residential" - }, - "nodes": ["n1826", "n1863"] - }, - "w383": { - "id": "w383", - "tags": { - "amenity": "shelter", - "building": "yes", - "shelter_type": "picnic_shelter" - }, - "nodes": ["n2011", "n2012", "n739", "n2013", "n2014", "n2029", "n2011"] - }, - "w384": { - "id": "w384", - "tags": { - "building": "yes" - }, - "nodes": [ - "n2064", - "n2065", - "n2066", - "n2067", - "n2068", - "n2069", - "n2070", - "n2071", - "n2072", - "n2073", - "n2074", - "n2075", - "n2076", - "n2077", - "n2078", - "n2079", - "n2064" - ] - }, - "w385": { - "id": "w385", - "tags": { - "natural": "water" - }, - "nodes": ["n1923", "n1924", "n1925", "n1926", "n1927", "n1928", "n1930", "n1929", "n1923"] - }, - "w386": { - "id": "w386", - "tags": { - "highway": "service" - }, - "nodes": [ - "n1827", - "n14", - "n1886", - "n15", - "n1887", - "n16", - "n1888", - "n18", - "n17", - "n1889", - "n12", - "n13", - "n1890", - "n485", - "n1864", - "n11", - "n10", - "n2058", - "n2036", - "n1865", - "n2020", - "n9", - "n8", - "n1866", - "n295", - "n1867" - ] - }, - "w387": { - "id": "w387", - "tags": { - "highway": "residential", - "name": "Andrews Street" - }, - "nodes": ["n1846", "n1843", "n865", "n157", "n1831"] - }, - "w388": { - "id": "w388", - "tags": { - "highway": "footway" - }, - "nodes": ["n2019", "n2020", "n2021", "n2022", "n2023", "n2024", "n2025", "n2026", "n2027", "n2028", "n2029"] - }, - "w389": { - "id": "w389", - "tags": { - "name": "Rocky River", - "waterway": "river" - }, - "nodes": [ - "n2217", - "n2222", - "n2221", - "n2219", - "n1877", - "n1879", - "n1882", - "n1883", - "n484", - "n1885", - "n483", - "n1880", - "n1881", - "n1878", - "n1884", - "n2223" - ] - }, - "w390": { - "id": "w390", - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "nodes": ["n2050", "n2051", "n2052", "n2053", "n2050"] - }, - "w391": { - "id": "w391", - "tags": { - "highway": "residential", - "name": "Constantine Street" - }, - "nodes": [ - "n2089", - "n2090", - "n2091", - "n2092", - "n2093", - "n2094", - "n2311", - "n2095", - "n2096", - "n2097", - "n2098", - "n1174", - "n2099", - "n751", - "n43", - "n2062", - "n873", - "n1832" - ] - }, - "w392": { - "id": "w392", - "tags": { - "highway": "primary", - "name": "Michigan Avenue" - }, - "nodes": ["n1869", "n212", "n436", "n2281", "n2081"] - }, - "w393": { - "id": "w393", - "tags": { - "highway": "tertiary", - "name": "Constantine Street" - }, - "nodes": ["n1829", "n611", "n144", "n602", "n1832"] - }, - "w394": { - "id": "w394", - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "nodes": ["n1997", "n1998", "n2000", "n1999"] - }, - "w395": { - "id": "w395", - "tags": { - "bridge": "yes", - "highway": "primary", - "name": "Michigan Avenue" - }, - "nodes": ["n1835", "n1869"] - }, - "w396": { - "id": "w396", - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "nodes": ["n2000", "n2001"] - }, - "w397": { - "id": "w397", - "tags": { - "highway": "residential", - "name": "Spring Street" - }, - "nodes": ["n2082", "n1842", "n308", "n498", "n509", "n246", "n241", "n1867", "n293", "n1834"] - }, - "w398": { - "id": "w398", - "tags": { - "building": "yes" - }, - "nodes": ["n2015", "n2016", "n2017", "n2018", "n2015"] - }, - "w399": { - "id": "w399", - "tags": { - "highway": "service" - }, - "nodes": ["n2062", "n45", "n2063", "n877", "n41", "n1852"] - }, - "w400": { - "id": "w400", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1968", "n1969", "n1970", "n1971", "n2007", "n1972", "n1973", "n1978", "n1974", "n1977", "n1976", "n1975", "n1968"] - }, - "w401": { - "id": "w401", - "tags": { - "bridge": "yes", - "highway": "footway" - }, - "nodes": ["n1963", "n1964"] - }, - "w402": { - "id": "w402", - "tags": { - "name": "Scidmore Park Petting Zoo", - "tourism": "zoo", - "zoo": "petting_zoo", - "barrier": "fence", - "addr:housenumber": "112", - "addr:street": "Spring Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - }, - "nodes": ["n1892", "n1893", "n1894", "n1895", "n1896", "n1897", "n1898", "n1899", "n1900", "n1901", "n1902", "n1903", "n1892"] - }, - "w403": { - "id": "w403", - "tags": { - "highway": "path" - }, - "nodes": ["n1957", "n1958", "n1959", "n481", "n1960", "n482", "n1949"] - }, - "w404": { - "id": "w404", - "tags": { - "highway": "service" - }, - "nodes": ["n2281", "n27", "n330", "n1987", "n1988"] - }, - "w405": { - "id": "w405", - "tags": { - "highway": "path", - "name": "Riverwalk Trail" - }, - "nodes": ["n2249", "n2269", "n2270", "n2271", "n2272", "n454", "n455", "n2273"] - }, - "w406": { - "id": "w406", - "tags": { - "highway": "footway" - }, - "nodes": ["n1947", "n1624", "n1625", "n2030", "n2033", "n2031", "n2032", "n2021"] - }, - "w407": { - "id": "w407", - "tags": { - "highway": "footway" - }, - "nodes": ["n2034", "n2036", "n2009"] - }, - "w408": { - "id": "w408", - "tags": { - "highway": "footway" - }, - "nodes": ["n1964", "n1965", "n2002", "n1966", "n21", "n1967", "n1969"] - }, - "w409": { - "id": "w409", - "tags": { - "natural": "water" - }, - "nodes": [ - "n1904", - "n1905", - "n1906", - "n1907", - "n1908", - "n1909", - "n748", - "n1910", - "n747", - "n1911", - "n749", - "n1912", - "n750", - "n1913", - "n1922", - "n1914", - "n1921", - "n1915", - "n746", - "n1916", - "n745", - "n1917", - "n744", - "n1918", - "n743", - "n742", - "n1919", - "n741", - "n1920", - "n740", - "n1904" - ] - }, - "w410": { - "id": "w410", - "tags": { - "bridge": "yes", - "name": "Conrail Railroad", - "railway": "rail" - }, - "nodes": ["n1868", "n2088"] - }, - "w411": { - "id": "w411", - "tags": { - "highway": "footway" - }, - "nodes": ["n2010", "n2019", "n2009", "n2008", "n2058", "n2035", "n1961", "n1962", "n1947", "n1963"] - }, - "w412": { - "id": "w412", - "tags": { - "leisure": "park", - "name": "Scidmore Park", - "addr:housenumber": "112", - "addr:street": "Spring Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - }, - "nodes": [ - "n2290", - "n2043", - "n2044", - "n2045", - "n1872", - "n2041", - "n1873", - "n2042", - "n1874", - "n2046", - "n2047", - "n2048", - "n2049", - "n2290" - ] - }, - "w413": { - "id": "w413", - "tags": { - "highway": "residential", - "name": "Andrews Street" - }, - "nodes": ["n1831", "n876", "n821", "n2089"] - }, - "w414": { - "id": "w414", - "tags": { - "highway": "footway" - }, - "nodes": ["n2002", "n2003", "n2004", "n2005", "n2006", "n2007"] - }, - "w415": { - "id": "w415", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1979", "n1980", "n1981", "n1982", "n1979"] - }, - "w416": { - "id": "w416", - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "nodes": ["n2054", "n2055", "n2056", "n2057", "n2054"] - }, - "w417": { - "id": "w417", - "tags": { - "leisure": "park", - "name": "Memory Isle Park" - }, - "nodes": [ - "n2291", - "n2292", - "n2293", - "n2294", - "n2295", - "n2296", - "n2297", - "n2298", - "n2299", - "n1098", - "n2300", - "n2301", - "n2302", - "n2303", - "n2304", - "n2059", - "n2060", - "n2305", - "n2307", - "n2306", - "n2310", - "n2308", - "n2309", - "n2291" - ] - }, - "w418": { - "id": "w418", - "tags": { - "highway": "footway" - }, - "nodes": ["n2033", "n2034", "n2035"] - }, - "w419": { - "id": "w419", - "tags": { - "amenity": "parking" - }, - "nodes": ["n1983", "n1984", "n1985", "n1986", "n1983"] - }, "n2314": { "id": "n2314", "loc": [-85.639788, 41.945152] @@ -3427,6 +6028,10 @@ "id": "n2319", "loc": [-85.638578, 41.94503] }, + "n232": { + "id": "n232", + "loc": [-85.636314, 41.941649] + }, "n2320": { "id": "n2320", "loc": [-85.638578, 41.945215] @@ -3467,6 +6072,10 @@ "id": "n2329", "loc": [-85.637598, 41.945467] }, + "n233": { + "id": "n233", + "loc": [-85.636152, 41.94165] + }, "n2330": { "id": "n2330", "loc": [-85.637669, 41.945318] @@ -3507,6 +6116,10 @@ "id": "n2339", "loc": [-85.638409, 41.945315] }, + "n234": { + "id": "n234", + "loc": [-85.636152, 41.941628] + }, "n2340": { "id": "n2340", "loc": [-85.638325, 41.944771] @@ -3547,6 +6160,10 @@ "id": "n2349", "loc": [-85.637135, 41.946254] }, + "n235": { + "id": "n235", + "loc": [-85.63611, 41.941628] + }, "n2350": { "id": "n2350", "loc": [-85.636837, 41.946615] @@ -3587,6 +6204,10 @@ "id": "n2359", "loc": [-85.643333, 41.953825] }, + "n236": { + "id": "n236", + "loc": [-85.636113, 41.941768] + }, "n2360": { "id": "n2360", "loc": [-85.643579, 41.954365] @@ -3615,6 +6236,34 @@ "id": "n2366", "loc": [-85.646276, 41.953414] }, + "n2367": { + "id": "n2367", + "loc": [-85.631063, 41.957478], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2368": { + "id": "n2368", + "loc": [-85.630996, 41.955857], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2369": { + "id": "n2369", + "loc": [-85.630976, 41.954608], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n237": { + "id": "n237", + "loc": [-85.635983, 41.941589], + "tags": { + "entrance": "yes" + } + }, "n2370": { "id": "n2370", "loc": [-85.646, 41.953154] @@ -3639,6 +6288,13 @@ "id": "n2375", "loc": [-85.644001, 41.95284] }, + "n2376": { + "id": "n2376", + "loc": [-85.628174, 41.95456], + "tags": { + "emergency": "fire_hydrant" + } + }, "n2377": { "id": "n2377", "loc": [-85.644267, 41.952591] @@ -3647,6 +6303,17 @@ "id": "n2378", "loc": [-85.644288, 41.952328] }, + "n2379": { + "id": "n2379", + "loc": [-85.627276, 41.953987], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n238": { + "id": "n238", + "loc": [-85.635906, 41.94159] + }, "n2380": { "id": "n2380", "loc": [-85.644262, 41.952153] @@ -3663,14 +6330,46 @@ "id": "n2383", "loc": [-85.64385, 41.951586] }, + "n2384": { + "id": "n2384", + "loc": [-85.62736, 41.955964], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2385": { + "id": "n2385", + "loc": [-85.626307, 41.957198], + "tags": { + "emergency": "fire_hydrant" + } + }, "n2386": { "id": "n2386", "loc": [-85.643589, 41.951323] }, + "n2387": { + "id": "n2387", + "loc": [-85.62747, 41.957509], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2388": { + "id": "n2388", + "loc": [-85.628665, 41.957492], + "tags": { + "emergency": "fire_hydrant" + } + }, "n2389": { "id": "n2389", "loc": [-85.642535, 41.951031] }, + "n239": { + "id": "n239", + "loc": [-85.635883, 41.940182] + }, "n2390": { "id": "n2390", "loc": [-85.642269, 41.95088] @@ -3687,6 +6386,20 @@ "id": "n2393", "loc": [-85.641103, 41.950549] }, + "n2394": { + "id": "n2394", + "loc": [-85.630864, 41.959046], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2395": { + "id": "n2395", + "loc": [-85.632249, 41.958969], + "tags": { + "emergency": "fire_hydrant" + } + }, "n2396": { "id": "n2396", "loc": [-85.641037, 41.949821] @@ -3695,6 +6408,35 @@ "id": "n2397", "loc": [-85.641006, 41.949433] }, + "n2398": { + "id": "n2398", + "loc": [-85.632232, 41.95859], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2399": { + "id": "n2399", + "loc": [-85.632071, 41.958345], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n24": { + "id": "n24", + "loc": [-85.634346, 41.942792] + }, + "n240": { + "id": "n240", + "loc": [-85.635916, 41.94264] + }, + "n2400": { + "id": "n2400", + "loc": [-85.632228, 41.9573], + "tags": { + "emergency": "fire_hydrant" + } + }, "n2401": { "id": "n2401", "loc": [-85.641152, 41.948257] @@ -3711,26 +6453,16873 @@ "id": "n2404", "loc": [-85.638672, 41.950778] }, + "n2405": { + "id": "n2405", + "loc": [-85.63666, 41.944492], + "tags": { + "name": "Memory Isle", + "place": "island" + } + }, + "n2406": { + "id": "n2406", + "loc": [-85.635, 41.946389], + "tags": { + "amenity": "post_office", + "name": "Three Rivers Post Office" + } + }, + "n2407": { + "id": "n2407", + "loc": [-85.633676, 41.946036] + }, + "n2408": { + "id": "n2408", + "loc": [-85.633736, 41.946078] + }, + "n2409": { + "id": "n2409", + "loc": [-85.633997, 41.946185] + }, + "n241": { + "id": "n241", + "loc": [-85.635795, 41.941906] + }, + "n2410": { + "id": "n2410", + "loc": [-85.634448, 41.945626], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "signal" + } + }, + "n2411": { + "id": "n2411", + "loc": [-85.63456, 41.945731], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n2412": { + "id": "n2412", + "loc": [-85.634592, 41.94578] + }, + "n2413": { + "id": "n2413", + "loc": [-85.634607, 41.945815] + }, + "n2414": { + "id": "n2414", + "loc": [-85.634614, 41.945864] + }, + "n2415": { + "id": "n2415", + "loc": [-85.636066, 41.946185] + }, + "n2416": { + "id": "n2416", + "loc": [-85.636128, 41.946352] + }, + "n2417": { + "id": "n2417", + "loc": [-85.636142, 41.946452] + }, + "n2418": { + "id": "n2418", + "loc": [-85.635327, 41.945292] + }, + "n2419": { + "id": "n2419", + "loc": [-85.635648, 41.94558] + }, + "n242": { + "id": "n242", + "loc": [-85.635909, 41.941906] + }, + "n2420": { + "id": "n2420", + "loc": [-85.635769, 41.945729] + }, + "n2421": { + "id": "n2421", + "loc": [-85.637349, 41.945897] + }, + "n2422": { + "id": "n2422", + "loc": [-85.632211, 41.95596], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n2423": { + "id": "n2423", + "loc": [-85.635942, 41.94598] + }, + "n2424": { + "id": "n2424", + "loc": [-85.636443, 41.946042] + }, + "n2425": { + "id": "n2425", + "loc": [-85.635819, 41.946052] + }, + "n2426": { + "id": "n2426", + "loc": [-85.636669, 41.946025] + }, + "n2427": { + "id": "n2427", + "loc": [-85.636832, 41.946005] + }, + "n2428": { + "id": "n2428", + "loc": [-85.637039, 41.945968] + }, + "n2429": { + "id": "n2429", + "loc": [-85.636291, 41.946046] + }, + "n243": { + "id": "n243", + "loc": [-85.636359, 41.941904] + }, + "n2430": { + "id": "n2430", + "loc": [-85.634005, 41.943367] + }, + "n2431": { + "id": "n2431", + "loc": [-85.633366, 41.943724] + }, + "n2432": { + "id": "n2432", + "loc": [-85.634617, 41.946057] + }, + "n2433": { + "id": "n2433", + "loc": [-85.636534, 41.944793] + }, + "n2434": { + "id": "n2434", + "loc": [-85.637055, 41.945188] + }, + "n2435": { + "id": "n2435", + "loc": [-85.636153, 41.944618] + }, + "n2436": { + "id": "n2436", + "loc": [-85.636803, 41.944944] + }, + "n2437": { + "id": "n2437", + "loc": [-85.633389, 41.945735] + }, + "n2438": { + "id": "n2438", + "loc": [-85.633536, 41.94585] + }, + "n2439": { + "id": "n2439", + "loc": [-85.63363, 41.945993] + }, + "n244": { + "id": "n244", + "loc": [-85.636351, 41.941438] + }, + "n2440": { + "id": "n2440", + "loc": [-85.633268, 41.94568] + }, + "n2441": { + "id": "n2441", + "loc": [-85.635947, 41.94546] + }, + "n2442": { + "id": "n2442", + "loc": [-85.636277, 41.945268] + }, + "n2443": { + "id": "n2443", + "loc": [-85.635203, 41.944287] + }, + "n2444": { + "id": "n2444", + "loc": [-85.634876, 41.944477] + }, + "n2445": { + "id": "n2445", + "loc": [-85.634975, 41.944419] + }, + "n2446": { + "id": "n2446", + "loc": [-85.633877, 41.943438] + }, + "n2447": { + "id": "n2447", + "loc": [-85.63508, 41.945113] + }, + "n2448": { + "id": "n2448", + "loc": [-85.635372, 41.944932] + }, + "n2449": { + "id": "n2449", + "loc": [-85.636594, 41.945935] + }, + "n245": { + "id": "n245", + "loc": [-85.635903, 41.941436] + }, + "n2450": { + "id": "n2450", + "loc": [-85.636901, 41.945747] + }, + "n2451": { + "id": "n2451", + "loc": [-85.636329, 41.945228] + }, + "n2452": { + "id": "n2452", + "loc": [-85.636025, 41.945417] + }, + "n2453": { + "id": "n2453", + "loc": [-85.634002, 41.944644] + }, + "n2454": { + "id": "n2454", + "loc": [-85.63407, 41.944692] + }, + "n2455": { + "id": "n2455", + "loc": [-85.634114, 41.944756] + }, + "n2456": { + "id": "n2456", + "loc": [-85.633762, 41.944809] + }, + "n2457": { + "id": "n2457", + "loc": [-85.634184, 41.944807] + }, + "n2458": { + "id": "n2458", + "loc": [-85.634291, 41.944819] + }, + "n2459": { + "id": "n2459", + "loc": [-85.634639, 41.944845] + }, + "n246": { + "id": "n246", + "loc": [-85.635788, 41.941436] + }, + "n2460": { + "id": "n2460", + "loc": [-85.633822, 41.944861] + }, + "n2461": { + "id": "n2461", + "loc": [-85.63411, 41.944855] + }, + "n2462": { + "id": "n2462", + "loc": [-85.63435, 41.944872] + }, + "n2463": { + "id": "n2463", + "loc": [-85.63441, 41.944903] + }, + "n2464": { + "id": "n2464", + "loc": [-85.633883, 41.944913] + }, + "n2465": { + "id": "n2465", + "loc": [-85.634164, 41.944896] + }, + "n2466": { + "id": "n2466", + "loc": [-85.633487, 41.944926] + }, + "n2467": { + "id": "n2467", + "loc": [-85.634736, 41.944929] + }, + "n2468": { + "id": "n2468", + "loc": [-85.633944, 41.944965] + }, + "n2469": { + "id": "n2469", + "loc": [-85.633555, 41.944983] + }, + "n247": { + "id": "n247", + "loc": [-85.635929, 41.941511] + }, + "n2470": { + "id": "n2470", + "loc": [-85.633995, 41.945013] + }, + "n2471": { + "id": "n2471", + "loc": [-85.633614, 41.945037] + }, + "n2472": { + "id": "n2472", + "loc": [-85.634848, 41.945031] + }, + "n2473": { + "id": "n2473", + "loc": [-85.634049, 41.945061] + }, + "n2474": { + "id": "n2474", + "loc": [-85.633678, 41.945094] + }, + "n2475": { + "id": "n2475", + "loc": [-85.63317, 41.945111] + }, + "n2476": { + "id": "n2476", + "loc": [-85.633357, 41.945103] + }, + "n2477": { + "id": "n2477", + "loc": [-85.633728, 41.945136] + }, + "n2478": { + "id": "n2478", + "loc": [-85.634146, 41.945148] + }, + "n2479": { + "id": "n2479", + "loc": [-85.633416, 41.945157] + }, + "n248": { + "id": "n248", + "loc": [-85.635929, 41.941317] + }, + "n2480": { + "id": "n2480", + "loc": [-85.634625, 41.945172] + }, + "n2481": { + "id": "n2481", + "loc": [-85.633239, 41.945174] + }, + "n2482": { + "id": "n2482", + "loc": [-85.63469, 41.945185] + }, + "n2483": { + "id": "n2483", + "loc": [-85.634661, 41.945203] + }, + "n2484": { + "id": "n2484", + "loc": [-85.63348, 41.945214] + }, + "n2485": { + "id": "n2485", + "loc": [-85.633578, 41.945221] + }, + "n2486": { + "id": "n2486", + "loc": [-85.634742, 41.945231] + }, + "n2487": { + "id": "n2487", + "loc": [-85.634251, 41.94525] + }, + "n2488": { + "id": "n2488", + "loc": [-85.633524, 41.945254] + }, + "n2489": { + "id": "n2489", + "loc": [-85.63468, 41.945271] + }, + "n249": { + "id": "n249", + "loc": [-85.636414, 41.941316] + }, + "n2490": { + "id": "n2490", + "loc": [-85.633885, 41.945272] + }, + "n2491": { + "id": "n2491", + "loc": [-85.634795, 41.945288] + }, + "n2492": { + "id": "n2492", + "loc": [-85.634742, 41.94532] + }, + "n2493": { + "id": "n2493", + "loc": [-85.633946, 41.945327] + }, + "n2494": { + "id": "n2494", + "loc": [-85.634844, 41.945331] + }, + "n2495": { + "id": "n2495", + "loc": [-85.63435, 41.945349] + }, + "n2496": { + "id": "n2496", + "loc": [-85.633733, 41.945357] + }, + "n2497": { + "id": "n2497", + "loc": [-85.633987, 41.945375] + }, + "n2498": { + "id": "n2498", + "loc": [-85.634911, 41.945419] + }, + "n2499": { + "id": "n2499", + "loc": [-85.634049, 41.945431] + }, + "n25": { + "id": "n25", + "loc": [-85.634333, 41.942809] + }, + "n250": { + "id": "n250", + "loc": [-85.636414, 41.941511] + }, + "n2500": { + "id": "n2500", + "loc": [-85.633705, 41.945461] + }, + "n2501": { + "id": "n2501", + "loc": [-85.633642, 41.945408] + }, + "n2502": { + "id": "n2502", + "loc": [-85.634493, 41.945475] + }, + "n2503": { + "id": "n2503", + "loc": [-85.634106, 41.945484] + }, + "n2504": { + "id": "n2504", + "loc": [-85.635008, 41.945505] + }, + "n2505": { + "id": "n2505", + "loc": [-85.633757, 41.945506] + }, + "n2506": { + "id": "n2506", + "loc": [-85.634542, 41.945519] + }, + "n2507": { + "id": "n2507", + "loc": [-85.634162, 41.945536] + }, + "n2508": { + "id": "n2508", + "loc": [-85.633843, 41.945547] + }, + "n2509": { + "id": "n2509", + "loc": [-85.634919, 41.94556] + }, + "n251": { + "id": "n251", + "loc": [-85.636819, 41.941617] + }, + "n2510": { + "id": "n2510", + "loc": [-85.633818, 41.945561] + }, + "n2511": { + "id": "n2511", + "loc": [-85.634638, 41.94559] + }, + "n2512": { + "id": "n2512", + "loc": [-85.633901, 41.945598] + }, + "n2513": { + "id": "n2513", + "loc": [-85.634257, 41.945626] + }, + "n2514": { + "id": "n2514", + "loc": [-85.633967, 41.945652] + }, + "n2515": { + "id": "n2515", + "loc": [-85.634735, 41.945676] + }, + "n2516": { + "id": "n2516", + "loc": [-85.635057, 41.945683] + }, + "n2517": { + "id": "n2517", + "loc": [-85.635296, 41.945703] + }, + "n2518": { + "id": "n2518", + "loc": [-85.635112, 41.945703] + }, + "n2519": { + "id": "n2519", + "loc": [-85.634782, 41.945729] + }, + "n252": { + "id": "n252", + "loc": [-85.636718, 41.941619] + }, + "n2520": { + "id": "n2520", + "loc": [-85.634052, 41.945747] + }, + "n2521": { + "id": "n2521", + "loc": [-85.635296, 41.945757] + }, + "n2522": { + "id": "n2522", + "loc": [-85.635314, 41.945757] + }, + "n2523": { + "id": "n2523", + "loc": [-85.635112, 41.945761] + }, + "n2524": { + "id": "n2524", + "loc": [-85.63484, 41.945778] + }, + "n2525": { + "id": "n2525", + "loc": [-85.635314, 41.945938] + }, + "n2526": { + "id": "n2526", + "loc": [-85.63484, 41.945922] + }, + "n2527": { + "id": "n2527", + "loc": [-85.635461, 41.944879] + }, + "n2528": { + "id": "n2528", + "loc": [-85.636024, 41.945384] + }, + "n2529": { + "id": "n2529", + "loc": [-85.636145, 41.945312] + }, + "n253": { + "id": "n253", + "loc": [-85.636716, 41.941509] + }, + "n2530": { + "id": "n2530", + "loc": [-85.6356, 41.944797] + }, + "n2531": { + "id": "n2531", + "loc": [-85.635135, 41.944354] + }, + "n2532": { + "id": "n2532", + "loc": [-85.632988, 41.945369] + }, + "n2533": { + "id": "n2533", + "loc": [-85.633376, 41.94563] + }, + "n2534": { + "id": "n2534", + "loc": [-85.633539, 41.945534] + }, + "n2535": { + "id": "n2535", + "loc": [-85.633238, 41.945248] + }, + "n2536": { + "id": "n2536", + "loc": [-85.633166, 41.945216] + }, + "n2537": { + "id": "n2537", + "loc": [-85.633114, 41.945188] + }, + "n2538": { + "id": "n2538", + "loc": [-85.633078, 41.945127] + }, + "n2539": { + "id": "n2539", + "loc": [-85.633066, 41.94508] + }, + "n254": { + "id": "n254", + "loc": [-85.636732, 41.941509] + }, + "n2540": { + "id": "n2540", + "loc": [-85.633222, 41.945358] + }, + "n2541": { + "id": "n2541", + "loc": [-85.633425, 41.945541] + }, + "n2542": { + "id": "n2542", + "loc": [-85.63299, 41.9455] + }, + "n2543": { + "id": "n2543", + "loc": [-85.634374, 41.944327] + }, + "n2544": { + "id": "n2544", + "loc": [-85.633648, 41.943697] + }, + "n2545": { + "id": "n2545", + "loc": [-85.633533, 41.943764] + }, + "n2546": { + "id": "n2546", + "loc": [-85.634239, 41.944417] + }, + "n2547": { + "id": "n2547", + "loc": [-85.634122, 41.944395] + }, + "n2548": { + "id": "n2548", + "loc": [-85.634235, 41.944326] + }, + "n2549": { + "id": "n2549", + "loc": [-85.633613, 41.943787] + }, + "n255": { + "id": "n255", + "loc": [-85.636731, 41.941461] + }, + "n2550": { + "id": "n2550", + "loc": [-85.633915, 41.943613] + }, + "n2551": { + "id": "n2551", + "loc": [-85.634015, 41.943555] + }, + "n2552": { + "id": "n2552", + "loc": [-85.63433, 41.943839] + }, + "n2553": { + "id": "n2553", + "loc": [-85.634236, 41.943894] + }, + "n2554": { + "id": "n2554", + "loc": [-85.635413, 41.946052] + }, + "n2555": { + "id": "n2555", + "loc": [-85.635405, 41.94569] + }, + "n2556": { + "id": "n2556", + "loc": [-85.635684, 41.945925] + }, + "n2557": { + "id": "n2557", + "loc": [-85.635614, 41.945742] + }, + "n2558": { + "id": "n2558", + "loc": [-85.635401, 41.945745] + }, + "n2559": { + "id": "n2559", + "loc": [-85.635406, 41.945928] + }, + "n256": { + "id": "n256", + "loc": [-85.636799, 41.941461] + }, + "n2560": { + "id": "n2560", + "loc": [-85.633478, 41.943663] + }, + "n2561": { + "id": "n2561", + "loc": [-85.633291, 41.943526] + }, + "n2562": { + "id": "n2562", + "loc": [-85.633094, 41.943541] + }, + "n2563": { + "id": "n2563", + "loc": [-85.633302, 41.943492] + }, + "n2564": { + "id": "n2564", + "loc": [-85.633047, 41.943623] + }, + "n2565": { + "id": "n2565", + "loc": [-85.633275, 41.943562] + }, + "n2566": { + "id": "n2566", + "loc": [-85.633351, 41.943518] + }, + "n2567": { + "id": "n2567", + "loc": [-85.633224, 41.9434] + }, + "n2568": { + "id": "n2568", + "loc": [-85.633235, 41.943369] + }, + "n2569": { + "id": "n2569", + "loc": [-85.635179, 41.943911] + }, + "n257": { + "id": "n257", + "loc": [-85.6368, 41.9415] + }, + "n2570": { + "id": "n2570", + "loc": [-85.635146, 41.943918] + }, + "n2571": { + "id": "n2571", + "loc": [-85.634888, 41.943905] + }, + "n2572": { + "id": "n2572", + "loc": [-85.634832, 41.943911] + }, + "n2573": { + "id": "n2573", + "loc": [-85.634638, 41.944007] + }, + "n2574": { + "id": "n2574", + "loc": [-85.634568, 41.94405] + }, + "n2575": { + "id": "n2575", + "loc": [-85.635994, 41.94501] + }, + "n2576": { + "id": "n2576", + "loc": [-85.636388, 41.944608] + }, + "n2577": { + "id": "n2577", + "loc": [-85.636215, 41.944787] + }, + "n2578": { + "id": "n2578", + "loc": [-85.637948, 41.944587] + }, + "n2579": { + "id": "n2579", + "loc": [-85.637849, 41.944567] + }, + "n258": { + "id": "n258", + "loc": [-85.636814, 41.9415] + }, + "n2580": { + "id": "n2580", + "loc": [-85.637895, 41.944455] + }, + "n2581": { + "id": "n2581", + "loc": [-85.637996, 41.944477] + }, + "n2582": { + "id": "n2582", + "loc": [-85.635525, 41.94337] + }, + "n2583": { + "id": "n2583", + "loc": [-85.637847, 41.943923] + }, + "n2584": { + "id": "n2584", + "loc": [-85.637891, 41.944124] + }, + "n2585": { + "id": "n2585", + "loc": [-85.638167, 41.944229] + }, + "n2586": { + "id": "n2586", + "loc": [-85.638236, 41.944097] + }, + "n2587": { + "id": "n2587", + "loc": [-85.638207, 41.944025] + }, + "n2588": { + "id": "n2588", + "loc": [-85.638141, 41.943997] + }, + "n2589": { + "id": "n2589", + "loc": [-85.638057, 41.944015] + }, + "n259": { + "id": "n259", + "loc": [-85.636815, 41.941538] + }, + "n2590": { + "id": "n2590", + "loc": [-85.637902, 41.944231] + }, + "n2591": { + "id": "n2591", + "loc": [-85.638134, 41.944307] + }, + "n2592": { + "id": "n2592", + "loc": [-85.638242, 41.944294] + }, + "n2593": { + "id": "n2593", + "loc": [-85.638274, 41.944222] + }, + "n2594": { + "id": "n2594", + "loc": [-85.638236, 41.944174] + }, + "n2595": { + "id": "n2595", + "loc": [-85.638207, 41.944157] + }, + "n2596": { + "id": "n2596", + "loc": [-85.637818, 41.943984] + }, + "n2597": { + "id": "n2597", + "loc": [-85.634996, 41.944439] + }, + "n2598": { + "id": "n2598", + "loc": [-85.633946, 41.945804] + }, + "n2599": { + "id": "n2599", + "loc": [-85.634102, 41.945864] + }, + "n26": { + "id": "n26", + "loc": [-85.634346, 41.942744] + }, + "n260": { + "id": "n260", + "loc": [-85.636827, 41.941538] + }, + "n2600": { + "id": "n2600", + "loc": [-85.633819, 41.945756] + }, + "n2601": { + "id": "n2601", + "loc": [-85.634025, 41.945975] + }, + "n2602": { + "id": "n2602", + "loc": [-85.633742, 41.945867] + }, + "n2603": { + "id": "n2603", + "loc": [-85.63373, 41.946004] + }, + "n2604": { + "id": "n2604", + "loc": [-85.633947, 41.946081] + }, + "n2605": { + "id": "n2605", + "loc": [-85.633872, 41.945917] + }, + "n2606": { + "id": "n2606", + "loc": [-85.633825, 41.945985] + }, + "n2607": { + "id": "n2607", + "loc": [-85.633762, 41.94596] + }, + "n2608": { + "id": "n2608", + "loc": [-85.634224, 41.946037] + }, + "n2609": { + "id": "n2609", + "loc": [-85.634357, 41.945851] + }, + "n261": { + "id": "n261", + "loc": [-85.636828, 41.941584] + }, + "n2610": { + "id": "n2610", + "loc": [-85.634398, 41.945813] + }, + "n2611": { + "id": "n2611", + "loc": [-85.634461, 41.945812] + }, + "n2612": { + "id": "n2612", + "loc": [-85.634501, 41.945852] + }, + "n2613": { + "id": "n2613", + "loc": [-85.634503, 41.94597] + }, + "n2614": { + "id": "n2614", + "loc": [-85.634462, 41.945971] + }, + "n2615": { + "id": "n2615", + "loc": [-85.634465, 41.946036] + }, + "n2616": { + "id": "n2616", + "loc": [-85.634235, 41.946072] + }, + "n2617": { + "id": "n2617", + "loc": [-85.634447, 41.946036] + }, + "n2618": { + "id": "n2618", + "loc": [-85.634448, 41.946052] + }, + "n2619": { + "id": "n2619", + "loc": [-85.634494, 41.946051] + }, + "n262": { + "id": "n262", + "loc": [-85.636819, 41.941585] + }, + "n2620": { + "id": "n2620", + "loc": [-85.634497, 41.946144] + }, + "n2621": { + "id": "n2621", + "loc": [-85.634453, 41.946144] + }, + "n2622": { + "id": "n2622", + "loc": [-85.634454, 41.94616] + }, + "n2623": { + "id": "n2623", + "loc": [-85.634393, 41.946161] + }, + "n2624": { + "id": "n2624", + "loc": [-85.634394, 41.94618] + }, + "n2625": { + "id": "n2625", + "loc": [-85.634345, 41.94618] + }, + "n2626": { + "id": "n2626", + "loc": [-85.634344, 41.946162] + }, + "n2627": { + "id": "n2627", + "loc": [-85.63427, 41.946163] + }, + "n2628": { + "id": "n2628", + "loc": [-85.634266, 41.946071] + }, + "n2629": { + "id": "n2629", + "loc": [-85.634148, 41.946163] + }, + "n263": { + "id": "n263", + "loc": [-85.636854, 41.941714] + }, + "n2630": { + "id": "n2630", + "loc": [-85.634213, 41.946072] + }, + "n2631": { + "id": "n2631", + "loc": [-85.633293, 41.946309] + }, + "n2632": { + "id": "n2632", + "loc": [-85.633122, 41.946239] + }, + "n2633": { + "id": "n2633", + "loc": [-85.633295, 41.946005] + }, + "n2634": { + "id": "n2634", + "loc": [-85.633395, 41.946047] + }, + "n2635": { + "id": "n2635", + "loc": [-85.633404, 41.946035] + }, + "n2636": { + "id": "n2636", + "loc": [-85.633459, 41.946057] + }, + "n2637": { + "id": "n2637", + "loc": [-85.633387, 41.946154] + }, + "n2638": { + "id": "n2638", + "loc": [-85.633403, 41.946161] + }, + "n2639": { + "id": "n2639", + "loc": [-85.634176, 41.946415] + }, + "n264": { + "id": "n264", + "loc": [-85.636855, 41.941774] + }, + "n2640": { + "id": "n2640", + "loc": [-85.634179, 41.946339] + }, + "n2641": { + "id": "n2641", + "loc": [-85.634455, 41.946345] + }, + "n2642": { + "id": "n2642", + "loc": [-85.634452, 41.946422] + }, + "n2643": { + "id": "n2643", + "loc": [-85.63437, 41.946421] + }, + "n2644": { + "id": "n2644", + "loc": [-85.634367, 41.946497] + }, + "n2645": { + "id": "n2645", + "loc": [-85.634289, 41.946495] + }, + "n2646": { + "id": "n2646", + "loc": [-85.634291, 41.946448] + }, + "n2647": { + "id": "n2647", + "loc": [-85.634269, 41.946448] + }, + "n2648": { + "id": "n2648", + "loc": [-85.63427, 41.946417] + }, + "n2649": { + "id": "n2649", + "loc": [-85.63484, 41.946328] + }, + "n265": { + "id": "n265", + "loc": [-85.636822, 41.941774] + }, + "n2650": { + "id": "n2650", + "loc": [-85.634839, 41.946187] + }, + "n2651": { + "id": "n2651", + "loc": [-85.635148, 41.946186] + }, + "n2652": { + "id": "n2652", + "loc": [-85.635148, 41.946216] + }, + "n2653": { + "id": "n2653", + "loc": [-85.63521, 41.946216] + }, + "n2654": { + "id": "n2654", + "loc": [-85.63521, 41.946348] + }, + "n2655": { + "id": "n2655", + "loc": [-85.635154, 41.946348] + }, + "n2656": { + "id": "n2656", + "loc": [-85.635153, 41.946327] + }, + "n2657": { + "id": "n2657", + "loc": [-85.634037, 41.946957] + }, + "n2658": { + "id": "n2658", + "loc": [-85.634253, 41.946953] + }, + "n2659": { + "id": "n2659", + "loc": [-85.63481, 41.946543] + }, + "n266": { + "id": "n266", + "loc": [-85.636822, 41.941778] + }, + "n2660": { + "id": "n2660", + "loc": [-85.634809, 41.946459] + }, + "n2661": { + "id": "n2661", + "loc": [-85.635154, 41.946458] + }, + "n2662": { + "id": "n2662", + "loc": [-85.635155, 41.946554] + }, + "n2663": { + "id": "n2663", + "loc": [-85.635022, 41.946547] + }, + "n2664": { + "id": "n2664", + "loc": [-85.635022, 41.946573] + }, + "n2665": { + "id": "n2665", + "loc": [-85.634909, 41.946574] + }, + "n2666": { + "id": "n2666", + "loc": [-85.634909, 41.946561] + }, + "n2667": { + "id": "n2667", + "loc": [-85.634896, 41.947159] + }, + "n2668": { + "id": "n2668", + "loc": [-85.634894, 41.947032] + }, + "n2669": { + "id": "n2669", + "loc": [-85.635024, 41.947031] + }, + "n267": { + "id": "n267", + "loc": [-85.636756, 41.941779] + }, + "n2670": { + "id": "n2670", + "loc": [-85.635026, 41.947158] + }, + "n2671": { + "id": "n2671", + "loc": [-85.635233, 41.947105] + }, + "n2672": { + "id": "n2672", + "loc": [-85.635236, 41.946991] + }, + "n2673": { + "id": "n2673", + "loc": [-85.635369, 41.946993] + }, + "n2674": { + "id": "n2674", + "loc": [-85.635366, 41.947107] + }, + "n2675": { + "id": "n2675", + "loc": [-85.634824, 41.946929] + }, + "n2676": { + "id": "n2676", + "loc": [-85.634825, 41.946818] + }, + "n2677": { + "id": "n2677", + "loc": [-85.63512, 41.946819] + }, + "n2678": { + "id": "n2678", + "loc": [-85.635119, 41.94693] + }, + "n2679": { + "id": "n2679", + "loc": [-85.634796, 41.946806] + }, + "n268": { + "id": "n268", + "loc": [-85.636756, 41.941774] + }, + "n2680": { + "id": "n2680", + "loc": [-85.634792, 41.946604] + }, + "n2681": { + "id": "n2681", + "loc": [-85.634948, 41.946602] + }, + "n2682": { + "id": "n2682", + "loc": [-85.634949, 41.946645] + }, + "n2683": { + "id": "n2683", + "loc": [-85.634975, 41.946644] + }, + "n2684": { + "id": "n2684", + "loc": [-85.634974, 41.946599] + }, + "n2685": { + "id": "n2685", + "loc": [-85.635117, 41.946598] + }, + "n2686": { + "id": "n2686", + "loc": [-85.635122, 41.946801] + }, + "n2687": { + "id": "n2687", + "loc": [-85.634981, 41.946803] + }, + "n2688": { + "id": "n2688", + "loc": [-85.634979, 41.946752] + }, + "n2689": { + "id": "n2689", + "loc": [-85.634952, 41.946752] + }, + "n269": { + "id": "n269", + "loc": [-85.636721, 41.941774] + }, + "n2690": { + "id": "n2690", + "loc": [-85.634953, 41.946804] + }, + "n2691": { + "id": "n2691", + "loc": [-85.634649, 41.946841] + }, + "n2692": { + "id": "n2692", + "loc": [-85.634331, 41.94684] + }, + "n2693": { + "id": "n2693", + "loc": [-85.634183, 41.946809] + }, + "n2694": { + "id": "n2694", + "loc": [-85.633699, 41.946607] + }, + "n2695": { + "id": "n2695", + "loc": [-85.634487, 41.946664] + }, + "n2696": { + "id": "n2696", + "loc": [-85.634486, 41.946598] + }, + "n2697": { + "id": "n2697", + "loc": [-85.63423, 41.946599] + }, + "n2698": { + "id": "n2698", + "loc": [-85.634231, 41.946662] + }, + "n2699": { + "id": "n2699", + "loc": [-85.634284, 41.946662] + }, + "n27": { + "id": "n27", + "loc": [-85.634136, 41.943183] + }, + "n270": { + "id": "n270", + "loc": [-85.63672, 41.941714] + }, + "n2700": { + "id": "n2700", + "loc": [-85.634284, 41.946679] + }, + "n2701": { + "id": "n2701", + "loc": [-85.634365, 41.946679] + }, + "n2702": { + "id": "n2702", + "loc": [-85.634365, 41.946664] + }, + "n2703": { + "id": "n2703", + "loc": [-85.635443, 41.947015] + }, + "n2704": { + "id": "n2704", + "loc": [-85.635442, 41.946801] + }, + "n2705": { + "id": "n2705", + "loc": [-85.63603, 41.9468] + }, + "n2706": { + "id": "n2706", + "loc": [-85.636028, 41.947016] + }, + "n2707": { + "id": "n2707", + "loc": [-85.635457, 41.946582] + }, + "n2708": { + "id": "n2708", + "loc": [-85.635455, 41.946211] + }, + "n2709": { + "id": "n2709", + "loc": [-85.635636, 41.946579] + }, + "n271": { + "id": "n271", + "loc": [-85.636767, 41.941713] + }, + "n2710": { + "id": "n2710", + "loc": [-85.635716, 41.9468] + }, + "n2711": { + "id": "n2711", + "loc": [-85.635969, 41.9468] + }, + "n2712": { + "id": "n2712", + "loc": [-85.635973, 41.946295] + }, + "n2713": { + "id": "n2713", + "loc": [-85.636019, 41.946484] + }, + "n2714": { + "id": "n2714", + "loc": [-85.636022, 41.946388] + }, + "n2715": { + "id": "n2715", + "loc": [-85.635961, 41.946493] + }, + "n2716": { + "id": "n2716", + "loc": [-85.635713, 41.94621] + }, + "n2717": { + "id": "n2717", + "loc": [-85.635416, 41.946142] + }, + "n2718": { + "id": "n2718", + "loc": [-85.635759, 41.946203] + }, + "n2719": { + "id": "n2719", + "loc": [-85.636153, 41.946747] + }, + "n272": { + "id": "n272", + "loc": [-85.636767, 41.941706] + }, + "n2720": { + "id": "n2720", + "loc": [-85.635417, 41.946915] + }, + "n2721": { + "id": "n2721", + "loc": [-85.636154, 41.946915] + }, + "n2722": { + "id": "n2722", + "loc": [-85.635866, 41.946473] + }, + "n2723": { + "id": "n2723", + "loc": [-85.635717, 41.946633] + }, + "n2724": { + "id": "n2724", + "loc": [-85.635556, 41.946166] + }, + "n2725": { + "id": "n2725", + "loc": [-85.63556, 41.946556] + }, + "n2726": { + "id": "n2726", + "loc": [-85.635731, 41.946594] + }, + "n2727": { + "id": "n2727", + "loc": [-85.635866, 41.946595] + }, + "n2728": { + "id": "n2728", + "loc": [-85.635456, 41.947028] + }, + "n2729": { + "id": "n2729", + "loc": [-85.635796, 41.947023] + }, + "n273": { + "id": "n273", + "loc": [-85.636779, 41.941698] + }, + "n2730": { + "id": "n2730", + "loc": [-85.635798, 41.947091] + }, + "n2731": { + "id": "n2731", + "loc": [-85.63573, 41.947092] + }, + "n2732": { + "id": "n2732", + "loc": [-85.635733, 41.947233] + }, + "n2733": { + "id": "n2733", + "loc": [-85.636283, 41.946863] + }, + "n2734": { + "id": "n2734", + "loc": [-85.63628, 41.946706] + }, + "n2735": { + "id": "n2735", + "loc": [-85.636341, 41.946705] + }, + "n2736": { + "id": "n2736", + "loc": [-85.636273, 41.946584] + }, + "n2737": { + "id": "n2737", + "loc": [-85.636396, 41.946545] + }, + "n2738": { + "id": "n2738", + "loc": [-85.636474, 41.946684] + }, + "n2739": { + "id": "n2739", + "loc": [-85.636511, 41.946861] + }, + "n274": { + "id": "n274", + "loc": [-85.636798, 41.941697] + }, + "n2740": { + "id": "n2740", + "loc": [-85.633713, 41.947184] + }, + "n2741": { + "id": "n2741", + "loc": [-85.633651, 41.94716] + }, + "n2742": { + "id": "n2742", + "loc": [-85.633704, 41.947085] + }, + "n2743": { + "id": "n2743", + "loc": [-85.6336, 41.947044] + }, + "n2744": { + "id": "n2744", + "loc": [-85.633506, 41.947177] + }, + "n2745": { + "id": "n2745", + "loc": [-85.629586, 41.952469] + }, + "n2746": { + "id": "n2746", + "loc": [-85.634723, 41.953681] + }, + "n2747": { + "id": "n2747", + "loc": [-85.63478, 41.959007] + }, + "n2748": { + "id": "n2748", + "loc": [-85.632793, 41.94405], + "tags": { + "highway": "traffic_signals", + "traffic_signals": "signal" + } + }, + "n2749": { + "id": "n2749", + "loc": [-85.634648, 41.947325] + }, + "n275": { + "id": "n275", + "loc": [-85.63681, 41.941705] + }, + "n2750": { + "id": "n2750", + "loc": [-85.625078, 41.952097] + }, + "n2751": { + "id": "n2751", + "loc": [-85.633195, 41.94734] + }, + "n2752": { + "id": "n2752", + "loc": [-85.626447, 41.957168] + }, + "n2753": { + "id": "n2753", + "loc": [-85.632023, 41.949012] + }, + "n2754": { + "id": "n2754", + "loc": [-85.630835, 41.950656] + }, + "n2755": { + "id": "n2755", + "loc": [-85.634655, 41.948612] + }, + "n2756": { + "id": "n2756", + "loc": [-85.636182, 41.948605] + }, + "n2757": { + "id": "n2757", + "loc": [-85.634729, 41.954667] + }, + "n2758": { + "id": "n2758", + "loc": [-85.634686, 41.951159] + }, + "n2759": { + "id": "n2759", + "loc": [-85.636206, 41.951146] + }, + "n276": { + "id": "n276", + "loc": [-85.63681, 41.941714] + }, + "n2760": { + "id": "n2760", + "loc": [-85.634668, 41.949891] + }, + "n2761": { + "id": "n2761", + "loc": [-85.634701, 41.952422] + }, + "n2762": { + "id": "n2762", + "loc": [-85.634747, 41.955907] + }, + "n2763": { + "id": "n2763", + "loc": [-85.627975, 41.954695] + }, + "n2764": { + "id": "n2764", + "loc": [-85.626832, 41.954698] + }, + "n2765": { + "id": "n2765", + "loc": [-85.632278, 41.948624] + }, + "n2766": { + "id": "n2766", + "loc": [-85.628639, 41.953725] + }, + "n2767": { + "id": "n2767", + "loc": [-85.636233, 41.95241] + }, + "n2768": { + "id": "n2768", + "loc": [-85.631385, 41.949913] + }, + "n2769": { + "id": "n2769", + "loc": [-85.630486, 41.951194] + }, + "n277": { + "id": "n277", + "loc": [-85.636861, 41.942041] + }, + "n2770": { + "id": "n2770", + "loc": [-85.624937, 41.952088] + }, + "n2771": { + "id": "n2771", + "loc": [-85.624945, 41.952022] + }, + "n2772": { + "id": "n2772", + "loc": [-85.636162, 41.94731] + }, + "n2773": { + "id": "n2773", + "loc": [-85.636188, 41.949881] + }, + "n2774": { + "id": "n2774", + "loc": [-85.631422, 41.948294] + }, + "n2775": { + "id": "n2775", + "loc": [-85.632844, 41.945547] + }, + "n2776": { + "id": "n2776", + "loc": [-85.632484, 41.945344] + }, + "n2777": { + "id": "n2777", + "loc": [-85.631775, 41.944636] + }, + "n2778": { + "id": "n2778", + "loc": [-85.632656, 41.945471] + }, + "n2779": { + "id": "n2779", + "loc": [-85.631959, 41.944827] + }, + "n278": { + "id": "n278", + "loc": [-85.636862, 41.942099] + }, + "n2780": { + "id": "n2780", + "loc": [-85.631679, 41.94438] + }, + "n2781": { + "id": "n2781", + "loc": [-85.625129, 41.959272] + }, + "n2782": { + "id": "n2782", + "loc": [-85.632446, 41.944861] + }, + "n2783": { + "id": "n2783", + "loc": [-85.632804, 41.945477] + }, + "n2784": { + "id": "n2784", + "loc": [-85.632255, 41.944962] + }, + "n2785": { + "id": "n2785", + "loc": [-85.632736, 41.944757] + }, + "n2786": { + "id": "n2786", + "loc": [-85.632543, 41.94486] + }, + "n2787": { + "id": "n2787", + "loc": [-85.632889, 41.945561] + }, + "n2788": { + "id": "n2788", + "loc": [-85.632091, 41.944949] + }, + "n2789": { + "id": "n2789", + "loc": [-85.632537, 41.944713] + }, + "n279": { + "id": "n279", + "loc": [-85.636807, 41.942099] + }, + "n2790": { + "id": "n2790", + "loc": [-85.632279, 41.94485] + }, + "n2791": { + "id": "n2791", + "loc": [-85.632749, 41.943247] + }, + "n2792": { + "id": "n2792", + "loc": [-85.632824, 41.943152] + }, + "n2793": { + "id": "n2793", + "loc": [-85.632929, 41.94317] + }, + "n2794": { + "id": "n2794", + "loc": [-85.632897, 41.943078] + }, + "n2795": { + "id": "n2795", + "loc": [-85.632626, 41.943231] + }, + "n2796": { + "id": "n2796", + "loc": [-85.634048, 41.947257] + }, + "n2797": { + "id": "n2797", + "loc": [-85.634264, 41.947252] + }, + "n2798": { + "id": "n2798", + "loc": [-85.635418, 41.947317] + }, + "n2799": { + "id": "n2799", + "loc": [-85.635461, 41.947237] + }, + "n28": { + "id": "n28", + "loc": [-85.63821, 41.944308] + }, + "n280": { + "id": "n280", + "loc": [-85.636807, 41.942126] + }, + "n2800": { + "id": "n2800", + "loc": [-85.632868, 41.946229] + }, + "n2801": { + "id": "n2801", + "loc": [-85.633673, 41.947242] + }, + "n2802": { + "id": "n2802", + "loc": [-85.623604, 41.945881], + "tags": { + "amenity": "school", + "name": "Barrows School" + } + }, + "n2803": { + "id": "n2803", + "loc": [-85.627401, 41.943496] + }, + "n2804": { + "id": "n2804", + "loc": [-85.627403, 41.943625] + }, + "n2805": { + "id": "n2805", + "loc": [-85.626409, 41.943215] + }, + "n2806": { + "id": "n2806", + "loc": [-85.624884, 41.943508] + }, + "n2807": { + "id": "n2807", + "loc": [-85.625191, 41.943509] + }, + "n2808": { + "id": "n2808", + "loc": [-85.624882, 41.94382] + }, + "n2809": { + "id": "n2809", + "loc": [-85.624893, 41.945618] + }, + "n281": { + "id": "n281", + "loc": [-85.636726, 41.942126] + }, + "n2810": { + "id": "n2810", + "loc": [-85.624912, 41.946524] + }, + "n2811": { + "id": "n2811", + "loc": [-85.622721, 41.946535] + }, + "n2812": { + "id": "n2812", + "loc": [-85.627399, 41.94469] + }, + "n2813": { + "id": "n2813", + "loc": [-85.622716, 41.945622] + }, + "n2814": { + "id": "n2814", + "loc": [-85.624886, 41.944724] + }, + "n2815": { + "id": "n2815", + "loc": [-85.622674, 41.944737] + }, + "n2816": { + "id": "n2816", + "loc": [-85.625092, 41.945063] + }, + "n2817": { + "id": "n2817", + "loc": [-85.625233, 41.945064] + }, + "n2818": { + "id": "n2818", + "loc": [-85.625229, 41.944871] + }, + "n2819": { + "id": "n2819", + "loc": [-85.625066, 41.944871] + }, + "n282": { + "id": "n282", + "loc": [-85.636726, 41.942098] + }, + "n2820": { + "id": "n2820", + "loc": [-85.625024, 41.944901] + }, + "n2821": { + "id": "n2821", + "loc": [-85.625025, 41.944924] + }, + "n2822": { + "id": "n2822", + "loc": [-85.625087, 41.944926] + }, + "n2823": { + "id": "n2823", + "loc": [-85.625349, 41.944506] + }, + "n2824": { + "id": "n2824", + "loc": [-85.625347, 41.944388] + }, + "n2825": { + "id": "n2825", + "loc": [-85.625152, 41.94439] + }, + "n2826": { + "id": "n2826", + "loc": [-85.625152, 41.944431] + }, + "n2827": { + "id": "n2827", + "loc": [-85.625134, 41.944431] + }, + "n2828": { + "id": "n2828", + "loc": [-85.625136, 41.944508] + }, + "n2829": { + "id": "n2829", + "loc": [-85.623236, 41.946341] + }, + "n283": { + "id": "n283", + "loc": [-85.636708, 41.942098] + }, + "n2830": { + "id": "n2830", + "loc": [-85.623241, 41.946067] + }, + "n2831": { + "id": "n2831", + "loc": [-85.623207, 41.946067] + }, + "n2832": { + "id": "n2832", + "loc": [-85.623212, 41.945827] + }, + "n2833": { + "id": "n2833", + "loc": [-85.622981, 41.945825] + }, + "n2834": { + "id": "n2834", + "loc": [-85.622976, 41.946063] + }, + "n2835": { + "id": "n2835", + "loc": [-85.623006, 41.946063] + }, + "n2836": { + "id": "n2836", + "loc": [-85.623002, 41.946256] + }, + "n2837": { + "id": "n2837", + "loc": [-85.623075, 41.946256] + }, + "n2838": { + "id": "n2838", + "loc": [-85.623074, 41.946339] + }, + "n2839": { + "id": "n2839", + "loc": [-85.624574, 41.951755] + }, + "n284": { + "id": "n284", + "loc": [-85.636708, 41.942041] + }, + "n2840": { + "id": "n2840", + "loc": [-85.62498, 41.951844] + }, + "n2841": { + "id": "n2841", + "loc": [-85.625086, 41.95188] + }, + "n2842": { + "id": "n2842", + "loc": [-85.625135, 41.951922] + }, + "n2843": { + "id": "n2843", + "loc": [-85.615273, 41.945637] + }, + "n2844": { + "id": "n2844", + "loc": [-85.620172, 41.945627] + }, + "n2845": { + "id": "n2845", + "loc": [-85.625167, 41.951985] + }, + "n2846": { + "id": "n2846", + "loc": [-85.622741, 41.947437] + }, + "n2847": { + "id": "n2847", + "loc": [-85.624907, 41.947428] + }, + "n2848": { + "id": "n2848", + "loc": [-85.627046, 41.940995] + }, + "n2849": { + "id": "n2849", + "loc": [-85.627295, 41.941304] + }, + "n285": { + "id": "n285", + "loc": [-85.635618, 41.941852] + }, + "n2850": { + "id": "n2850", + "loc": [-85.627352, 41.94148] + }, + "n2851": { + "id": "n2851", + "loc": [-85.62737, 41.942261] + }, + "n2852": { + "id": "n2852", + "loc": [-85.6264, 41.942263] + }, + "n2853": { + "id": "n2853", + "loc": [-85.622769, 41.949228] + }, + "n2854": { + "id": "n2854", + "loc": [-85.624937, 41.949218] + }, + "n2855": { + "id": "n2855", + "loc": [-85.630001, 41.944664] + }, + "n2856": { + "id": "n2856", + "loc": [-85.624873, 41.942022] + }, + "n2857": { + "id": "n2857", + "loc": [-85.622761, 41.948333] + }, + "n2858": { + "id": "n2858", + "loc": [-85.624924, 41.948334] + }, + "n2859": { + "id": "n2859", + "loc": [-85.620051, 41.94383] + }, + "n286": { + "id": "n286", + "loc": [-85.635621, 41.94202] + }, + "n2860": { + "id": "n2860", + "loc": [-85.627629, 41.946498] + }, + "n2861": { + "id": "n2861", + "loc": [-85.622757, 41.950111] + }, + "n2862": { + "id": "n2862", + "loc": [-85.623685, 41.954624] + }, + "n2863": { + "id": "n2863", + "loc": [-85.621459, 41.944756] + }, + "n2864": { + "id": "n2864", + "loc": [-85.628637, 41.944676] + }, + "n2865": { + "id": "n2865", + "loc": [-85.630125, 41.944654] + }, + "n2866": { + "id": "n2866", + "loc": [-85.625196, 41.952097] + }, + "n2867": { + "id": "n2867", + "loc": [-85.630257, 41.944637] + }, + "n2868": { + "id": "n2868", + "loc": [-85.631247, 41.944459] + }, + "n2869": { + "id": "n2869", + "loc": [-85.624867, 41.94159] + }, + "n287": { + "id": "n287", + "loc": [-85.63524, 41.942023] + }, + "n2870": { + "id": "n2870", + "loc": [-85.624958, 41.950343] + }, + "n2871": { + "id": "n2871", + "loc": [-85.624948, 41.950484] + }, + "n2872": { + "id": "n2872", + "loc": [-85.624813, 41.950983] + }, + "n2873": { + "id": "n2873", + "loc": [-85.624723, 41.951789] + }, + "n2874": { + "id": "n2874", + "loc": [-85.624262, 41.9512] + }, + "n2875": { + "id": "n2875", + "loc": [-85.62414, 41.951201] + }, + "n2876": { + "id": "n2876", + "loc": [-85.624139, 41.95112] + }, + "n2877": { + "id": "n2877", + "loc": [-85.628481, 41.945611] + }, + "n2878": { + "id": "n2878", + "loc": [-85.620072, 41.946538] + }, + "n2879": { + "id": "n2879", + "loc": [-85.622763, 41.95099] + }, + "n288": { + "id": "n288", + "loc": [-85.635237, 41.941855] + }, + "n2880": { + "id": "n2880", + "loc": [-85.62814, 41.946963] + }, + "n2881": { + "id": "n2881", + "loc": [-85.628245, 41.947031] + }, + "n2882": { + "id": "n2882", + "loc": [-85.628331, 41.947066] + }, + "n2883": { + "id": "n2883", + "loc": [-85.629722, 41.944444], + "tags": { + "leisure": "park", + "name": "Scouter Park" + } + }, + "n2884": { + "id": "n2884", + "loc": [-85.629977, 41.943907] + }, + "n2885": { + "id": "n2885", + "loc": [-85.629947, 41.943775] + }, + "n2886": { + "id": "n2886", + "loc": [-85.629899, 41.943625] + }, + "n2887": { + "id": "n2887", + "loc": [-85.632286, 41.944257] + }, + "n2888": { + "id": "n2888", + "loc": [-85.632523, 41.944179] + }, + "n2889": { + "id": "n2889", + "loc": [-85.632141, 41.944293] + }, + "n289": { + "id": "n289", + "loc": [-85.635568, 41.940475] + }, + "n2890": { + "id": "n2890", + "loc": [-85.631571, 41.9444] + }, + "n2891": { + "id": "n2891", + "loc": [-85.643236, 41.941895] + }, + "n2892": { + "id": "n2892", + "loc": [-85.62865, 41.945353] + }, + "n2893": { + "id": "n2893", + "loc": [-85.628594, 41.945481] + }, + "n2894": { + "id": "n2894", + "loc": [-85.628581, 41.947169] + }, + "n2895": { + "id": "n2895", + "loc": [-85.631843, 41.943793] + }, + "n2896": { + "id": "n2896", + "loc": [-85.632299, 41.943472] + }, + "n2897": { + "id": "n2897", + "loc": [-85.631519, 41.944881] + }, + "n2898": { + "id": "n2898", + "loc": [-85.628429, 41.947219] + }, + "n2899": { + "id": "n2899", + "loc": [-85.63145, 41.945162] + }, + "n29": { + "id": "n29", + "loc": [-85.637963, 41.944263] + }, + "n290": { + "id": "n290", + "loc": [-85.634584, 41.940477] + }, + "n2900": { + "id": "n2900", + "loc": [-85.630939, 41.945519] + }, + "n2901": { + "id": "n2901", + "loc": [-85.62903, 41.945719] + }, + "n2902": { + "id": "n2902", + "loc": [-85.630521, 41.945559] + }, + "n2903": { + "id": "n2903", + "loc": [-85.629294, 41.945585] + }, + "n2904": { + "id": "n2904", + "loc": [-85.629845, 41.945543] + }, + "n2905": { + "id": "n2905", + "loc": [-85.631497, 41.944625] + }, + "n2906": { + "id": "n2906", + "loc": [-85.630281, 41.945553] + }, + "n2907": { + "id": "n2907", + "loc": [-85.628553, 41.946973] + }, + "n2908": { + "id": "n2908", + "loc": [-85.631383, 41.945338] + }, + "n2909": { + "id": "n2909", + "loc": [-85.628843, 41.946103] + }, + "n291": { + "id": "n291", + "loc": [-85.634583, 41.940203] + }, + "n2910": { + "id": "n2910", + "loc": [-85.631193, 41.945473] + }, + "n2911": { + "id": "n2911", + "loc": [-85.628897, 41.945944] + }, + "n2912": { + "id": "n2912", + "loc": [-85.628789, 41.946454] + }, + "n2913": { + "id": "n2913", + "loc": [-85.632548, 41.944563] + }, + "n2914": { + "id": "n2914", + "loc": [-85.627527, 41.944555] + }, + "n2915": { + "id": "n2915", + "loc": [-85.62752, 41.943726] + }, + "n2916": { + "id": "n2916", + "loc": [-85.627894, 41.943723] + }, + "n2917": { + "id": "n2917", + "loc": [-85.627897, 41.943919] + }, + "n2918": { + "id": "n2918", + "loc": [-85.627991, 41.943934] + }, + "n2919": { + "id": "n2919", + "loc": [-85.628082, 41.943966] + }, + "n292": { + "id": "n292", + "loc": [-85.635567, 41.940201] + }, + "n2920": { + "id": "n2920", + "loc": [-85.628177, 41.944015] + }, + "n2921": { + "id": "n2921", + "loc": [-85.628193, 41.944048] + }, + "n2922": { + "id": "n2922", + "loc": [-85.628167, 41.944054] + }, + "n2923": { + "id": "n2923", + "loc": [-85.628193, 41.944094] + }, + "n2924": { + "id": "n2924", + "loc": [-85.628213, 41.944144] + }, + "n2925": { + "id": "n2925", + "loc": [-85.628214, 41.944199] + }, + "n2926": { + "id": "n2926", + "loc": [-85.62833, 41.944196] + }, + "n2927": { + "id": "n2927", + "loc": [-85.628328, 41.944262] + }, + "n2928": { + "id": "n2928", + "loc": [-85.628173, 41.944262] + }, + "n2929": { + "id": "n2929", + "loc": [-85.628171, 41.944293] + }, + "n293": { + "id": "n293", + "loc": [-85.635816, 41.942673], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n2930": { + "id": "n2930", + "loc": [-85.628039, 41.944296] + }, + "n2931": { + "id": "n2931", + "loc": [-85.62804, 41.944329] + }, + "n2932": { + "id": "n2932", + "loc": [-85.627829, 41.944335] + }, + "n2933": { + "id": "n2933", + "loc": [-85.627835, 41.94455] + }, + "n2934": { + "id": "n2934", + "loc": [-85.632105, 41.946034] + }, + "n2935": { + "id": "n2935", + "loc": [-85.632278, 41.945784] + }, + "n2936": { + "id": "n2936", + "loc": [-85.632823, 41.945994] + }, + "n2937": { + "id": "n2937", + "loc": [-85.632684, 41.946196] + }, + "n2938": { + "id": "n2938", + "loc": [-85.632566, 41.946151] + }, + "n2939": { + "id": "n2939", + "loc": [-85.632532, 41.946198] + }, + "n294": { + "id": "n294", + "loc": [-85.635696, 41.942712] + }, + "n2940": { + "id": "n2940", + "loc": [-85.632192, 41.945973] + }, + "n2941": { + "id": "n2941", + "loc": [-85.63226, 41.94587] + }, + "n2942": { + "id": "n2942", + "loc": [-85.632721, 41.946036] + }, + "n2943": { + "id": "n2943", + "loc": [-85.632641, 41.946142] + }, + "n2944": { + "id": "n2944", + "loc": [-85.62937, 41.947467] + }, + "n2945": { + "id": "n2945", + "loc": [-85.62959, 41.942936] + }, + "n2946": { + "id": "n2946", + "loc": [-85.629551, 41.94284] + }, + "n2947": { + "id": "n2947", + "loc": [-85.629501, 41.942704] + }, + "n2948": { + "id": "n2948", + "loc": [-85.629472, 41.942578] + }, + "n2949": { + "id": "n2949", + "loc": [-85.629361, 41.941801] + }, + "n295": { + "id": "n295", + "loc": [-85.635679, 41.941962] + }, + "n2950": { + "id": "n2950", + "loc": [-85.629339, 41.941716] + }, + "n2951": { + "id": "n2951", + "loc": [-85.629315, 41.94166] + }, + "n2952": { + "id": "n2952", + "loc": [-85.629279, 41.941602] + }, + "n2953": { + "id": "n2953", + "loc": [-85.629227, 41.941556] + }, + "n2954": { + "id": "n2954", + "loc": [-85.624261, 41.95112] + }, + "n2955": { + "id": "n2955", + "loc": [-85.629153, 41.941524] + }, + "n2956": { + "id": "n2956", + "loc": [-85.626904, 41.941098] + }, + "n2957": { + "id": "n2957", + "loc": [-85.624588, 41.951294] + }, + "n2958": { + "id": "n2958", + "loc": [-85.631844, 41.942945] + }, + "n2959": { + "id": "n2959", + "loc": [-85.625854, 41.949222] + }, + "n296": { + "id": "n296", + "loc": [-85.635672, 41.941337] + }, + "n2960": { + "id": "n2960", + "loc": [-85.625146, 41.955238] + }, + "n2961": { + "id": "n2961", + "loc": [-85.626745, 41.948296] + }, + "n2962": { + "id": "n2962", + "loc": [-85.625721, 41.95524] + }, + "n2963": { + "id": "n2963", + "loc": [-85.624706, 41.952317] + }, + "n2964": { + "id": "n2964", + "loc": [-85.62609, 41.956147] + }, + "n2965": { + "id": "n2965", + "loc": [-85.624401, 41.954928] + }, + "n2966": { + "id": "n2966", + "loc": [-85.626558, 41.955367] + }, + "n2967": { + "id": "n2967", + "loc": [-85.62468, 41.955096] + }, + "n2968": { + "id": "n2968", + "loc": [-85.624159, 41.953929] + }, + "n2969": { + "id": "n2969", + "loc": [-85.62506, 41.951113] + }, + "n297": { + "id": "n297", + "loc": [-85.635658, 41.941284] + }, + "n2970": { + "id": "n2970", + "loc": [-85.624942, 41.951591] + }, + "n2971": { + "id": "n2971", + "loc": [-85.627399, 41.947546] + }, + "n2972": { + "id": "n2972", + "loc": [-85.627695, 41.947404] + }, + "n2973": { + "id": "n2973", + "loc": [-85.625925, 41.94896] + }, + "n2974": { + "id": "n2974", + "loc": [-85.625725, 41.950211] + }, + "n2975": { + "id": "n2975", + "loc": [-85.627008, 41.947963] + }, + "n2976": { + "id": "n2976", + "loc": [-85.624373, 41.953458] + }, + "n2977": { + "id": "n2977", + "loc": [-85.624137, 41.954392] + }, + "n2978": { + "id": "n2978", + "loc": [-85.628257, 41.947307] + }, + "n2979": { + "id": "n2979", + "loc": [-85.625281, 41.95066] + }, + "n298": { + "id": "n298", + "loc": [-85.635602, 41.941166] + }, + "n2980": { + "id": "n2980", + "loc": [-85.625865, 41.949804] + }, + "n2981": { + "id": "n2981", + "loc": [-85.626508, 41.955932] + }, + "n2982": { + "id": "n2982", + "loc": [-85.626333, 41.955216] + }, + "n2983": { + "id": "n2983", + "loc": [-85.626637, 41.955676] + }, + "n2984": { + "id": "n2984", + "loc": [-85.624223, 41.954599] + }, + "n2985": { + "id": "n2985", + "loc": [-85.626219, 41.948671] + }, + "n2986": { + "id": "n2986", + "loc": [-85.624556, 41.953043] + }, + "n2987": { + "id": "n2987", + "loc": [-85.625598, 41.956302] + }, + "n2988": { + "id": "n2988", + "loc": [-85.624571, 41.952971] + }, + "n2989": { + "id": "n2989", + "loc": [-85.627141, 41.940727] + }, + "n299": { + "id": "n299", + "loc": [-85.635598, 41.941138] + }, + "n2990": { + "id": "n2990", + "loc": [-85.627102, 41.939144] + }, + "n2991": { + "id": "n2991", + "loc": [-85.627127, 41.940086] + }, + "n2992": { + "id": "n2992", + "loc": [-85.627116, 41.940843] + }, + "n2993": { + "id": "n2993", + "loc": [-85.627132, 41.9402] + }, + "n2994": { + "id": "n2994", + "loc": [-85.629734, 41.940078] + }, + "n2995": { + "id": "n2995", + "loc": [-85.6276, 41.937412] + }, + "n2996": { + "id": "n2996", + "loc": [-85.627451, 41.937549] + }, + "n2997": { + "id": "n2997", + "loc": [-85.627375, 41.937618] + }, + "n2998": { + "id": "n2998", + "loc": [-85.627278, 41.937728] + }, + "n2999": { + "id": "n2999", + "loc": [-85.627199, 41.937842] + }, + "n3": { + "id": "n3", + "loc": [-85.627345, 41.953983] + }, + "n30": { + "id": "n30", + "loc": [-85.637882, 41.944205] + }, + "n300": { + "id": "n300", + "loc": [-85.635614, 41.941076] + }, + "n3000": { + "id": "n3000", + "loc": [-85.627141, 41.937981] + }, + "n3001": { + "id": "n3001", + "loc": [-85.627109, 41.938153] + }, + "n3002": { + "id": "n3002", + "loc": [-85.627101, 41.938699] + }, + "n3003": { + "id": "n3003", + "loc": [-85.628311, 41.942261] + }, + "n3004": { + "id": "n3004", + "loc": [-85.628439, 41.940082] + }, + "n3005": { + "id": "n3005", + "loc": [-85.619538, 41.942622], + "tags": { + "leisure": "slipway" + } + }, + "n3006": { + "id": "n3006", + "loc": [-85.619872, 41.942618] + }, + "n3007": { + "id": "n3007", + "loc": [-85.619755, 41.942612] + }, + "n3008": { + "id": "n3008", + "loc": [-85.619647, 41.942628] + }, + "n3009": { + "id": "n3009", + "loc": [-85.619415, 41.942626] + }, + "n301": { + "id": "n301", + "loc": [-85.635659, 41.940956] + }, + "n3010": { + "id": "n3010", + "loc": [-85.619212, 41.942623] + }, + "n3011": { + "id": "n3011", + "loc": [-85.631485, 41.942472] + }, + "n3012": { + "id": "n3012", + "loc": [-85.630986, 41.941786] + }, + "n3013": { + "id": "n3013", + "loc": [-85.631797, 41.942006] + }, + "n3014": { + "id": "n3014", + "loc": [-85.630972, 41.941162] + }, + "n3015": { + "id": "n3015", + "loc": [-85.631396, 41.941611], + "tags": { + "railway": "level_crossing" + } + }, + "n3016": { + "id": "n3016", + "loc": [-85.631878, 41.941545] + }, + "n3017": { + "id": "n3017", + "loc": [-85.630461, 41.94055] + }, + "n3018": { + "id": "n3018", + "loc": [-85.629751, 41.939539], + "tags": { + "railway": "level_crossing" + } + }, + "n3019": { + "id": "n3019", + "loc": [-85.631663, 41.941513] + }, + "n302": { + "id": "n302", + "loc": [-85.635666, 41.940922] + }, + "n3020": { + "id": "n3020", + "loc": [-85.631328, 41.941375] + }, + "n3021": { + "id": "n3021", + "loc": [-85.632554, 41.941779] + }, + "n3022": { + "id": "n3022", + "loc": [-85.63245, 41.941769] + }, + "n3023": { + "id": "n3023", + "loc": [-85.632475, 41.941644] + }, + "n3024": { + "id": "n3024", + "loc": [-85.632581, 41.941654] + }, + "n3025": { + "id": "n3025", + "loc": [-85.631957, 41.941352] + }, + "n3026": { + "id": "n3026", + "loc": [-85.632293, 41.941139] + }, + "n3027": { + "id": "n3027", + "loc": [-85.632315, 41.941153] + }, + "n3028": { + "id": "n3028", + "loc": [-85.632302, 41.941262] + }, + "n3029": { + "id": "n3029", + "loc": [-85.63237, 41.941267] + }, + "n303": { + "id": "n303", + "loc": [-85.635667, 41.940877] + }, + "n3030": { + "id": "n3030", + "loc": [-85.632356, 41.941538] + }, + "n3031": { + "id": "n3031", + "loc": [-85.632134, 41.941678] + }, + "n3032": { + "id": "n3032", + "loc": [-85.631942, 41.941687] + }, + "n3033": { + "id": "n3033", + "loc": [-85.63203, 41.941694] + }, + "n3034": { + "id": "n3034", + "loc": [-85.632166, 41.941555] + }, + "n3035": { + "id": "n3035", + "loc": [-85.632412, 41.941416] + }, + "n3036": { + "id": "n3036", + "loc": [-85.63248, 41.941342] + }, + "n3037": { + "id": "n3037", + "loc": [-85.632502, 41.941259] + }, + "n3038": { + "id": "n3038", + "loc": [-85.632453, 41.941161] + }, + "n3039": { + "id": "n3039", + "loc": [-85.63235, 41.941103] + }, + "n304": { + "id": "n304", + "loc": [-85.635668, 41.940655] + }, + "n3040": { + "id": "n3040", + "loc": [-85.632236, 41.941118] + }, + "n3041": { + "id": "n3041", + "loc": [-85.631894, 41.941355] + }, + "n3042": { + "id": "n3042", + "loc": [-85.631859, 41.941411] + }, + "n3043": { + "id": "n3043", + "loc": [-85.632011, 41.941587] + }, + "n3044": { + "id": "n3044", + "loc": [-85.632446, 41.941379] + }, + "n3045": { + "id": "n3045", + "loc": [-85.632511, 41.941416] + }, + "n3046": { + "id": "n3046", + "loc": [-85.632545, 41.941634] + }, + "n3047": { + "id": "n3047", + "loc": [-85.632612, 41.94164] + }, + "n3048": { + "id": "n3048", + "loc": [-85.632595, 41.942197] + }, + "n3049": { + "id": "n3049", + "loc": [-85.632565, 41.942241] + }, + "n305": { + "id": "n305", + "loc": [-85.635628, 41.940617] + }, + "n3050": { + "id": "n3050", + "loc": [-85.632515, 41.942256] + }, + "n3051": { + "id": "n3051", + "loc": [-85.63245, 41.94223] + }, + "n3052": { + "id": "n3052", + "loc": [-85.632401, 41.942174] + }, + "n3053": { + "id": "n3053", + "loc": [-85.632391, 41.942115] + }, + "n3054": { + "id": "n3054", + "loc": [-85.632029, 41.941859] + }, + "n3055": { + "id": "n3055", + "loc": [-85.631828, 41.941639] + }, + "n3056": { + "id": "n3056", + "loc": [-85.631829, 41.941508] + }, + "n3057": { + "id": "n3057", + "loc": [-85.631281, 41.94312] + }, + "n3058": { + "id": "n3058", + "loc": [-85.631421, 41.943065] + }, + "n3059": { + "id": "n3059", + "loc": [-85.631339, 41.942949] + }, + "n306": { + "id": "n306", + "loc": [-85.635623, 41.940272] + }, + "n3060": { + "id": "n3060", + "loc": [-85.631199, 41.943004] + }, + "n3061": { + "id": "n3061", + "loc": [-85.631102, 41.942931] + }, + "n3062": { + "id": "n3062", + "loc": [-85.631009, 41.942809] + }, + "n3063": { + "id": "n3063", + "loc": [-85.631383, 41.94265] + }, + "n3064": { + "id": "n3064", + "loc": [-85.631477, 41.942773] + }, + "n3065": { + "id": "n3065", + "loc": [-85.630638, 41.942809] + }, + "n3066": { + "id": "n3066", + "loc": [-85.630738, 41.942943] + }, + "n3067": { + "id": "n3067", + "loc": [-85.630841, 41.9429] + }, + "n3068": { + "id": "n3068", + "loc": [-85.630741, 41.942766] + }, + "n3069": { + "id": "n3069", + "loc": [-85.63054, 41.942603] + }, + "n307": { + "id": "n307", + "loc": [-85.635651, 41.940183] + }, + "n3070": { + "id": "n3070", + "loc": [-85.630498, 41.942619] + }, + "n3071": { + "id": "n3071", + "loc": [-85.630567, 41.942718] + }, + "n3072": { + "id": "n3072", + "loc": [-85.630616, 41.942698] + }, + "n3073": { + "id": "n3073", + "loc": [-85.630642, 41.94273] + }, + "n3074": { + "id": "n3074", + "loc": [-85.630686, 41.942714] + }, + "n3075": { + "id": "n3075", + "loc": [-85.630715, 41.942754] + }, + "n3076": { + "id": "n3076", + "loc": [-85.6309, 41.942681] + }, + "n3077": { + "id": "n3077", + "loc": [-85.630843, 41.942605] + }, + "n3078": { + "id": "n3078", + "loc": [-85.6309, 41.942581] + }, + "n3079": { + "id": "n3079", + "loc": [-85.630832, 41.942487] + }, + "n308": { + "id": "n308", + "loc": [-85.63577, 41.940183], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n3080": { + "id": "n3080", + "loc": [-85.630773, 41.942509] + }, + "n3081": { + "id": "n3081", + "loc": [-85.630718, 41.942436] + }, + "n3082": { + "id": "n3082", + "loc": [-85.630485, 41.942524] + }, + "n3083": { + "id": "n3083", + "loc": [-85.631468, 41.941233] + }, + "n3084": { + "id": "n3084", + "loc": [-85.631334, 41.94114] + }, + "n3085": { + "id": "n3085", + "loc": [-85.632052, 41.940568] + }, + "n3086": { + "id": "n3086", + "loc": [-85.63219, 41.940663] + }, + "n3087": { + "id": "n3087", + "loc": [-85.631323, 41.940834] + }, + "n3088": { + "id": "n3088", + "loc": [-85.631122, 41.941002] + }, + "n3089": { + "id": "n3089", + "loc": [-85.631321, 41.941133] + }, + "n309": { + "id": "n309", + "loc": [-85.636939, 41.942544] + }, + "n3090": { + "id": "n3090", + "loc": [-85.631521, 41.940966] + }, + "n3091": { + "id": "n3091", + "loc": [-85.631103, 41.940253] + }, + "n3092": { + "id": "n3092", + "loc": [-85.631226, 41.940211] + }, + "n3093": { + "id": "n3093", + "loc": [-85.631597, 41.940805] + }, + "n3094": { + "id": "n3094", + "loc": [-85.631474, 41.940847] + }, + "n3095": { + "id": "n3095", + "loc": [-85.631811, 41.940534] + }, + "n3096": { + "id": "n3096", + "loc": [-85.631588, 41.94061] + }, + "n3097": { + "id": "n3097", + "loc": [-85.631438, 41.940366] + }, + "n3098": { + "id": "n3098", + "loc": [-85.631661, 41.94029] + }, + "n3099": { + "id": "n3099", + "loc": [-85.630621, 41.940041] + }, + "n31": { + "id": "n31", + "loc": [-85.63827, 41.944203] + }, + "n310": { + "id": "n310", + "loc": [-85.636323, 41.942552] + }, + "n3100": { + "id": "n3100", + "loc": [-85.630436, 41.939773] + }, + "n3101": { + "id": "n3101", + "loc": [-85.63059, 41.939714] + }, + "n3102": { + "id": "n3102", + "loc": [-85.630775, 41.939983] + }, + "n3103": { + "id": "n3103", + "loc": [-85.63047, 41.940167] + }, + "n3104": { + "id": "n3104", + "loc": [-85.63013, 41.939686] + }, + "n3105": { + "id": "n3105", + "loc": [-85.630302, 41.939618] + }, + "n3106": { + "id": "n3106", + "loc": [-85.630641, 41.9401] + }, + "n3107": { + "id": "n3107", + "loc": [-85.630966, 41.940619] + }, + "n3108": { + "id": "n3108", + "loc": [-85.630874, 41.940493] + }, + "n3109": { + "id": "n3109", + "loc": [-85.630933, 41.940469] + }, + "n311": { + "id": "n311", + "loc": [-85.636257, 41.942555] + }, + "n3110": { + "id": "n3110", + "loc": [-85.630763, 41.940236] + }, + "n3111": { + "id": "n3111", + "loc": [-85.63088, 41.940189] + }, + "n3112": { + "id": "n3112", + "loc": [-85.631142, 41.940548] + }, + "n3113": { + "id": "n3113", + "loc": [-85.630958, 41.940871] + }, + "n3114": { + "id": "n3114", + "loc": [-85.630874, 41.940778] + }, + "n3115": { + "id": "n3115", + "loc": [-85.631062, 41.940684] + }, + "n3116": { + "id": "n3116", + "loc": [-85.631146, 41.940777] + }, + "n3117": { + "id": "n3117", + "loc": [-85.632031, 41.940575] + }, + "n3118": { + "id": "n3118", + "loc": [-85.631777, 41.940186] + }, + "n3119": { + "id": "n3119", + "loc": [-85.631346, 41.940179] + }, + "n312": { + "id": "n312", + "loc": [-85.636208, 41.942561] + }, + "n3120": { + "id": "n3120", + "loc": [-85.631342, 41.94012] + }, + "n3121": { + "id": "n3121", + "loc": [-85.631831, 41.940118] + }, + "n3122": { + "id": "n3122", + "loc": [-85.632115, 41.940543] + }, + "n3123": { + "id": "n3123", + "loc": [-85.631031, 41.941683] + }, + "n3124": { + "id": "n3124", + "loc": [-85.630981, 41.941608] + }, + "n3125": { + "id": "n3125", + "loc": [-85.631209, 41.941516] + }, + "n3126": { + "id": "n3126", + "loc": [-85.631264, 41.941586] + }, + "n3127": { + "id": "n3127", + "loc": [-85.630938, 41.94155] + }, + "n3128": { + "id": "n3128", + "loc": [-85.631156, 41.941462] + }, + "n3129": { + "id": "n3129", + "loc": [-85.631197, 41.94152] + }, + "n313": { + "id": "n313", + "loc": [-85.636159, 41.942573] + }, + "n3130": { + "id": "n3130", + "loc": [-85.630895, 41.941485] + }, + "n3131": { + "id": "n3131", + "loc": [-85.630824, 41.941389] + }, + "n3132": { + "id": "n3132", + "loc": [-85.630986, 41.941323] + }, + "n3133": { + "id": "n3133", + "loc": [-85.631057, 41.941419] + }, + "n3134": { + "id": "n3134", + "loc": [-85.630777, 41.941328] + }, + "n3135": { + "id": "n3135", + "loc": [-85.630907, 41.941274] + }, + "n3136": { + "id": "n3136", + "loc": [-85.630953, 41.941335] + }, + "n3137": { + "id": "n3137", + "loc": [-85.630797, 41.941247] + }, + "n3138": { + "id": "n3138", + "loc": [-85.630701, 41.94117] + }, + "n3139": { + "id": "n3139", + "loc": [-85.630829, 41.941113] + }, + "n314": { + "id": "n314", + "loc": [-85.635743, 41.942881] + }, + "n3140": { + "id": "n3140", + "loc": [-85.6309, 41.941201] + }, + "n3141": { + "id": "n3141", + "loc": [-85.630765, 41.941206] + }, + "n3142": { + "id": "n3142", + "loc": [-85.630739, 41.941218] + }, + "n3143": { + "id": "n3143", + "loc": [-85.630582, 41.941039] + }, + "n3144": { + "id": "n3144", + "loc": [-85.630412, 41.940818] + }, + "n3145": { + "id": "n3145", + "loc": [-85.630509, 41.940777] + }, + "n3146": { + "id": "n3146", + "loc": [-85.630678, 41.941004] + }, + "n3147": { + "id": "n3147", + "loc": [-85.630773, 41.942166] + }, + "n3148": { + "id": "n3148", + "loc": [-85.630708, 41.942074] + }, + "n3149": { + "id": "n3149", + "loc": [-85.630863, 41.942013] + }, + "n315": { + "id": "n315", + "loc": [-85.635452, 41.942966] + }, + "n3150": { + "id": "n3150", + "loc": [-85.630928, 41.942105] + }, + "n3151": { + "id": "n3151", + "loc": [-85.630701, 41.942026] + }, + "n3152": { + "id": "n3152", + "loc": [-85.630665, 41.941971] + }, + "n3153": { + "id": "n3153", + "loc": [-85.630793, 41.941918] + }, + "n3154": { + "id": "n3154", + "loc": [-85.630837, 41.94197] + }, + "n3155": { + "id": "n3155", + "loc": [-85.630757, 41.941871] + }, + "n3156": { + "id": "n3156", + "loc": [-85.630629, 41.941923] + }, + "n3157": { + "id": "n3157", + "loc": [-85.630694, 41.941783] + }, + "n3158": { + "id": "n3158", + "loc": [-85.630534, 41.941847] + }, + "n3159": { + "id": "n3159", + "loc": [-85.630598, 41.941935] + }, + "n316": { + "id": "n316", + "loc": [-85.634911, 41.943118] + }, + "n3160": { + "id": "n3160", + "loc": [-85.631548, 41.93938] + }, + "n3161": { + "id": "n3161", + "loc": [-85.631525, 41.939919] + }, + "n3162": { + "id": "n3162", + "loc": [-85.631648, 41.940043] + }, + "n3163": { + "id": "n3163", + "loc": [-85.624586, 41.951121] + }, + "n3164": { + "id": "n3164", + "loc": [-85.622139, 41.952064] + }, + "n3165": { + "id": "n3165", + "loc": [-85.622141, 41.952144] + }, + "n3166": { + "id": "n3166", + "loc": [-85.621977, 41.952146] + }, + "n3167": { + "id": "n3167", + "loc": [-85.621978, 41.952211] + }, + "n3168": { + "id": "n3168", + "loc": [-85.62191, 41.952212] + }, + "n3169": { + "id": "n3169", + "loc": [-85.633628, 41.935437] + }, + "n317": { + "id": "n317", + "loc": [-85.634743, 41.943167] + }, + "n3170": { + "id": "n3170", + "loc": [-85.632849, 41.935518] + }, + "n3171": { + "id": "n3171", + "loc": [-85.632376, 41.93574] + }, + "n3172": { + "id": "n3172", + "loc": [-85.631517, 41.935897] + }, + "n3173": { + "id": "n3173", + "loc": [-85.630433, 41.936124] + }, + "n3174": { + "id": "n3174", + "loc": [-85.630207, 41.936427] + }, + "n3175": { + "id": "n3175", + "loc": [-85.630346, 41.936795] + }, + "n3176": { + "id": "n3176", + "loc": [-85.62996, 41.936974] + }, + "n3177": { + "id": "n3177", + "loc": [-85.629916, 41.937488] + }, + "n3178": { + "id": "n3178", + "loc": [-85.629946, 41.937802] + }, + "n3179": { + "id": "n3179", + "loc": [-85.629977, 41.937905] + }, + "n318": { + "id": "n318", + "loc": [-85.634401, 41.94328] + }, + "n3180": { + "id": "n3180", + "loc": [-85.63016, 41.937909] + }, + "n3181": { + "id": "n3181", + "loc": [-85.630804, 41.937791] + }, + "n3182": { + "id": "n3182", + "loc": [-85.631688, 41.937808] + }, + "n3183": { + "id": "n3183", + "loc": [-85.631685, 41.938008] + }, + "n3184": { + "id": "n3184", + "loc": [-85.631845, 41.938116] + }, + "n3185": { + "id": "n3185", + "loc": [-85.63207, 41.938181] + }, + "n3186": { + "id": "n3186", + "loc": [-85.632143, 41.938371] + }, + "n3187": { + "id": "n3187", + "loc": [-85.632056, 41.938435] + }, + "n3188": { + "id": "n3188", + "loc": [-85.631787, 41.938457] + }, + "n3189": { + "id": "n3189", + "loc": [-85.631657, 41.938728] + }, + "n319": { + "id": "n319", + "loc": [-85.634345, 41.943299] + }, + "n3190": { + "id": "n3190", + "loc": [-85.631595, 41.93775] + }, + "n3191": { + "id": "n3191", + "loc": [-85.630264, 41.937839] + }, + "n3192": { + "id": "n3192", + "loc": [-85.628591, 41.948536] + }, + "n3193": { + "id": "n3193", + "loc": [-85.63205, 41.951181] + }, + "n3194": { + "id": "n3194", + "loc": [-85.632034, 41.949909] + }, + "n3195": { + "id": "n3195", + "loc": [-85.630841, 41.951191] + }, + "n3196": { + "id": "n3196", + "loc": [-85.632083, 41.9537] + }, + "n3197": { + "id": "n3197", + "loc": [-85.630929, 41.959037] + }, + "n3198": { + "id": "n3198", + "loc": [-85.632151, 41.959028] + }, + "n3199": { + "id": "n3199", + "loc": [-85.630911, 41.957428] + }, + "n32": { + "id": "n32", + "loc": [-85.638273, 41.944246] + }, + "n320": { + "id": "n320", + "loc": [-85.634287, 41.943326] + }, + "n3200": { + "id": "n3200", + "loc": [-85.63213, 41.957427] + }, + "n3201": { + "id": "n3201", + "loc": [-85.632072, 41.952447] + }, + "n3202": { + "id": "n3202", + "loc": [-85.632095, 41.954677] + }, + "n3203": { + "id": "n3203", + "loc": [-85.632111, 41.955911] + }, + "n3204": { + "id": "n3204", + "loc": [-85.630855, 41.952457] + }, + "n3205": { + "id": "n3205", + "loc": [-85.630869, 41.953709] + }, + "n3206": { + "id": "n3206", + "loc": [-85.63088, 41.954682] + }, + "n3207": { + "id": "n3207", + "loc": [-85.630894, 41.955913] + }, + "n3208": { + "id": "n3208", + "loc": [-85.633214, 41.948619] + }, + "n3209": { + "id": "n3209", + "loc": [-85.633253, 41.951171] + }, + "n321": { + "id": "n321", + "loc": [-85.634233, 41.943354] + }, + "n3210": { + "id": "n3210", + "loc": [-85.633234, 41.949901] + }, + "n3211": { + "id": "n3211", + "loc": [-85.633922, 41.948616] + }, + "n3212": { + "id": "n3212", + "loc": [-85.625188, 41.947832] + }, + "n3213": { + "id": "n3213", + "loc": [-85.625208, 41.947775] + }, + "n3214": { + "id": "n3214", + "loc": [-85.625229, 41.94776] + }, + "n3215": { + "id": "n3215", + "loc": [-85.625201, 41.947749] + }, + "n3216": { + "id": "n3216", + "loc": [-85.625168, 41.947707] + }, + "n3217": { + "id": "n3217", + "loc": [-85.625171, 41.947609] + }, + "n3218": { + "id": "n3218", + "loc": [-85.625213, 41.947564] + }, + "n3219": { + "id": "n3219", + "loc": [-85.62529, 41.94756] + }, + "n322": { + "id": "n322", + "loc": [-85.634099, 41.943429] + }, + "n3220": { + "id": "n3220", + "loc": [-85.625303, 41.947533] + }, + "n3221": { + "id": "n3221", + "loc": [-85.625344, 41.947482] + }, + "n3222": { + "id": "n3222", + "loc": [-85.625442, 41.947468] + }, + "n3223": { + "id": "n3223", + "loc": [-85.62565, 41.947494] + }, + "n3224": { + "id": "n3224", + "loc": [-85.625726, 41.947613] + }, + "n3225": { + "id": "n3225", + "loc": [-85.625703, 41.947728] + }, + "n3226": { + "id": "n3226", + "loc": [-85.625534, 41.94781] + }, + "n3227": { + "id": "n3227", + "loc": [-85.625391, 41.947822] + }, + "n3228": { + "id": "n3228", + "loc": [-85.625304, 41.947859] + }, + "n3229": { + "id": "n3229", + "loc": [-85.625203, 41.947885] + }, + "n323": { + "id": "n323", + "loc": [-85.633958, 41.943507], + "tags": { + "highway": "crossing" + } + }, + "n3230": { + "id": "n3230", + "loc": [-85.624688, 41.948662] + }, + "n3231": { + "id": "n3231", + "loc": [-85.624313, 41.948658] + }, + "n3232": { + "id": "n3232", + "loc": [-85.624306, 41.949057] + }, + "n3233": { + "id": "n3233", + "loc": [-85.624681, 41.94906] + }, + "n3234": { + "id": "n3234", + "loc": [-85.623623, 41.949606] + }, + "n3235": { + "id": "n3235", + "loc": [-85.623623, 41.9497] + }, + "n3236": { + "id": "n3236", + "loc": [-85.623357, 41.9497] + }, + "n3237": { + "id": "n3237", + "loc": [-85.623357, 41.949614] + }, + "n3238": { + "id": "n3238", + "loc": [-85.623974, 41.949429] + }, + "n3239": { + "id": "n3239", + "loc": [-85.623974, 41.949605] + }, + "n324": { + "id": "n324", + "loc": [-85.633698, 41.943651], + "tags": { + "railway": "crossing" + } + }, + "n3240": { + "id": "n3240", + "loc": [-85.624501, 41.951226] + }, + "n3241": { + "id": "n3241", + "loc": [-85.624501, 41.951123] + }, + "n3242": { + "id": "n3242", + "loc": [-85.624319, 41.951123] + }, + "n3243": { + "id": "n3243", + "loc": [-85.624319, 41.951226] + }, + "n3244": { + "id": "n3244", + "loc": [-85.624121, 41.950866] + }, + "n3245": { + "id": "n3245", + "loc": [-85.624115, 41.950525] + }, + "n3246": { + "id": "n3246", + "loc": [-85.624315, 41.950523] + }, + "n3247": { + "id": "n3247", + "loc": [-85.62432, 41.950865] + }, + "n3248": { + "id": "n3248", + "loc": [-85.624393, 41.950867] + }, + "n3249": { + "id": "n3249", + "loc": [-85.62439, 41.950596] + }, + "n325": { + "id": "n325", + "loc": [-85.633508, 41.943757] + }, + "n3250": { + "id": "n3250", + "loc": [-85.624673, 41.950594] + }, + "n3251": { + "id": "n3251", + "loc": [-85.624675, 41.95082] + }, + "n3252": { + "id": "n3252", + "loc": [-85.62451, 41.950821] + }, + "n3253": { + "id": "n3253", + "loc": [-85.62451, 41.950866] + }, + "n3254": { + "id": "n3254", + "loc": [-85.624101, 41.949346] + }, + "n3255": { + "id": "n3255", + "loc": [-85.624244, 41.949346] + }, + "n3256": { + "id": "n3256", + "loc": [-85.624244, 41.949368] + }, + "n3257": { + "id": "n3257", + "loc": [-85.62434, 41.949368] + }, + "n3258": { + "id": "n3258", + "loc": [-85.624342, 41.949351] + }, + "n3259": { + "id": "n3259", + "loc": [-85.624725, 41.949348] + }, + "n326": { + "id": "n326", + "loc": [-85.634839, 41.942974] + }, + "n3260": { + "id": "n3260", + "loc": [-85.624755, 41.950495] + }, + "n3261": { + "id": "n3261", + "loc": [-85.624121, 41.950502] + }, + "n3262": { + "id": "n3262", + "loc": [-85.625453, 41.950163] + }, + "n3263": { + "id": "n3263", + "loc": [-85.625454, 41.949976] + }, + "n3264": { + "id": "n3264", + "loc": [-85.625549, 41.949977] + }, + "n3265": { + "id": "n3265", + "loc": [-85.62555, 41.949833] + }, + "n3266": { + "id": "n3266", + "loc": [-85.625577, 41.949833] + }, + "n3267": { + "id": "n3267", + "loc": [-85.625578, 41.949656] + }, + "n3268": { + "id": "n3268", + "loc": [-85.625195, 41.949655] + }, + "n3269": { + "id": "n3269", + "loc": [-85.625192, 41.950162] + }, + "n327": { + "id": "n327", + "loc": [-85.634657, 41.943028] + }, + "n3270": { + "id": "n3270", + "loc": [-85.622992, 41.949614] + }, + "n3271": { + "id": "n3271", + "loc": [-85.622991, 41.949431] + }, + "n3272": { + "id": "n3272", + "loc": [-85.620103, 41.951] + }, + "n3273": { + "id": "n3273", + "loc": [-85.605644, 41.947468] + }, + "n3274": { + "id": "n3274", + "loc": [-85.617421, 41.947457] + }, + "n3275": { + "id": "n3275", + "loc": [-85.620078, 41.947444] + }, + "n3276": { + "id": "n3276", + "loc": [-85.620087, 41.94924] + }, + "n3277": { + "id": "n3277", + "loc": [-85.62156, 41.948333] + }, + "n3278": { + "id": "n3278", + "loc": [-85.620106, 41.950132] + }, + "n3279": { + "id": "n3279", + "loc": [-85.637412, 41.951136] + }, + "n328": { + "id": "n328", + "loc": [-85.634222, 41.943152] + }, + "n3280": { + "id": "n3280", + "loc": [-85.635429, 41.948608] + }, + "n3281": { + "id": "n3281", + "loc": [-85.635047, 41.947788] + }, + "n3282": { + "id": "n3282", + "loc": [-85.635048, 41.947796] + }, + "n3283": { + "id": "n3283", + "loc": [-85.635002, 41.947797] + }, + "n3284": { + "id": "n3284", + "loc": [-85.635002, 41.947788] + }, + "n3285": { + "id": "n3285", + "loc": [-85.634914, 41.94779] + }, + "n3286": { + "id": "n3286", + "loc": [-85.634913, 41.947753] + }, + "n3287": { + "id": "n3287", + "loc": [-85.63494, 41.947753] + }, + "n3288": { + "id": "n3288", + "loc": [-85.634938, 41.947708] + }, + "n3289": { + "id": "n3289", + "loc": [-85.635124, 41.947705] + }, + "n329": { + "id": "n329", + "loc": [-85.634099, 41.943202] + }, + "n3290": { + "id": "n3290", + "loc": [-85.635126, 41.947787] + }, + "n3291": { + "id": "n3291", + "loc": [-85.634972, 41.947599] + }, + "n3292": { + "id": "n3292", + "loc": [-85.634921, 41.9476] + }, + "n3293": { + "id": "n3293", + "loc": [-85.63485, 41.947546] + }, + "n3294": { + "id": "n3294", + "loc": [-85.63485, 41.947508] + }, + "n3295": { + "id": "n3295", + "loc": [-85.634924, 41.947457] + }, + "n3296": { + "id": "n3296", + "loc": [-85.634967, 41.947456] + }, + "n3297": { + "id": "n3297", + "loc": [-85.635041, 41.947512] + }, + "n3298": { + "id": "n3298", + "loc": [-85.635041, 41.947542] + }, + "n3299": { + "id": "n3299", + "loc": [-85.634244, 41.947839] + }, + "n33": { + "id": "n33", + "loc": [-85.638257, 41.944188] + }, + "n330": { + "id": "n330", + "loc": [-85.634093, 41.943138] + }, + "n3300": { + "id": "n3300", + "loc": [-85.634243, 41.947793] + }, + "n3301": { + "id": "n3301", + "loc": [-85.634244, 41.947686] + }, + "n3302": { + "id": "n3302", + "loc": [-85.634243, 41.947657] + }, + "n3303": { + "id": "n3303", + "loc": [-85.634462, 41.947653] + }, + "n3304": { + "id": "n3304", + "loc": [-85.634468, 41.947835] + }, + "n3305": { + "id": "n3305", + "loc": [-85.634416, 41.948006] + }, + "n3306": { + "id": "n3306", + "loc": [-85.634415, 41.947898] + }, + "n3307": { + "id": "n3307", + "loc": [-85.634275, 41.947899] + }, + "n3308": { + "id": "n3308", + "loc": [-85.634275, 41.947927] + }, + "n3309": { + "id": "n3309", + "loc": [-85.63425, 41.947927] + }, + "n331": { + "id": "n331", + "loc": [-85.633938, 41.943291] + }, + "n3310": { + "id": "n3310", + "loc": [-85.63425, 41.947976] + }, + "n3311": { + "id": "n3311", + "loc": [-85.634274, 41.947976] + }, + "n3312": { + "id": "n3312", + "loc": [-85.634275, 41.948007] + }, + "n3313": { + "id": "n3313", + "loc": [-85.634342, 41.947635] + }, + "n3314": { + "id": "n3314", + "loc": [-85.634339, 41.947497] + }, + "n3315": { + "id": "n3315", + "loc": [-85.634313, 41.94748] + }, + "n3316": { + "id": "n3316", + "loc": [-85.634287, 41.947474] + }, + "n3317": { + "id": "n3317", + "loc": [-85.63498, 41.94815] + }, + "n3318": { + "id": "n3318", + "loc": [-85.634891, 41.94815] + }, + "n3319": { + "id": "n3319", + "loc": [-85.634892, 41.948169] + }, + "n332": { + "id": "n332", + "loc": [-85.633535, 41.943511], + "tags": { + "railway": "crossing" + } + }, + "n3320": { + "id": "n3320", + "loc": [-85.634852, 41.948169] + }, + "n3321": { + "id": "n3321", + "loc": [-85.634853, 41.948268] + }, + "n3322": { + "id": "n3322", + "loc": [-85.634832, 41.948268] + }, + "n3323": { + "id": "n3323", + "loc": [-85.634832, 41.948296] + }, + "n3324": { + "id": "n3324", + "loc": [-85.634965, 41.948295] + }, + "n3325": { + "id": "n3325", + "loc": [-85.634966, 41.948321] + }, + "n3326": { + "id": "n3326", + "loc": [-85.634999, 41.948321] + }, + "n3327": { + "id": "n3327", + "loc": [-85.634999, 41.948295] + }, + "n3328": { + "id": "n3328", + "loc": [-85.635175, 41.948293] + }, + "n3329": { + "id": "n3329", + "loc": [-85.635175, 41.948262] + }, + "n333": { + "id": "n333", + "loc": [-85.63339, 41.943596] + }, + "n3330": { + "id": "n3330", + "loc": [-85.635159, 41.948262] + }, + "n3331": { + "id": "n3331", + "loc": [-85.635158, 41.948152] + }, + "n3332": { + "id": "n3332", + "loc": [-85.635067, 41.948152] + }, + "n3333": { + "id": "n3333", + "loc": [-85.635065, 41.947966] + }, + "n3334": { + "id": "n3334", + "loc": [-85.634979, 41.947966] + }, + "n3335": { + "id": "n3335", + "loc": [-85.634307, 41.948326] + }, + "n3336": { + "id": "n3336", + "loc": [-85.634305, 41.948298] + }, + "n3337": { + "id": "n3337", + "loc": [-85.634331, 41.948055] + }, + "n3338": { + "id": "n3338", + "loc": [-85.634331, 41.948046] + }, + "n3339": { + "id": "n3339", + "loc": [-85.634435, 41.948047] + }, + "n334": { + "id": "n334", + "loc": [-85.632842, 41.943895] + }, + "n3340": { + "id": "n3340", + "loc": [-85.634434, 41.948375] + }, + "n3341": { + "id": "n3341", + "loc": [-85.634463, 41.948373] + }, + "n3342": { + "id": "n3342", + "loc": [-85.634464, 41.948456] + }, + "n3343": { + "id": "n3343", + "loc": [-85.63443, 41.948457] + }, + "n3344": { + "id": "n3344", + "loc": [-85.634432, 41.948505] + }, + "n3345": { + "id": "n3345", + "loc": [-85.637386, 41.94906] + }, + "n3346": { + "id": "n3346", + "loc": [-85.637113, 41.9486] + }, + "n3347": { + "id": "n3347", + "loc": [-85.635448, 41.949424] + }, + "n3348": { + "id": "n3348", + "loc": [-85.636042, 41.949416] + }, + "n3349": { + "id": "n3349", + "loc": [-85.636046, 41.94958] + }, + "n335": { + "id": "n335", + "loc": [-85.633856, 41.943315] + }, + "n3350": { + "id": "n3350", + "loc": [-85.635746, 41.949584] + }, + "n3351": { + "id": "n3351", + "loc": [-85.635751, 41.949784] + }, + "n3352": { + "id": "n3352", + "loc": [-85.635457, 41.949787] + }, + "n3353": { + "id": "n3353", + "loc": [-85.635459, 41.949886] + }, + "n3354": { + "id": "n3354", + "loc": [-85.634961, 41.949749] + }, + "n3355": { + "id": "n3355", + "loc": [-85.634961, 41.949764] + }, + "n3356": { + "id": "n3356", + "loc": [-85.634906, 41.94971] + }, + "n3357": { + "id": "n3357", + "loc": [-85.634905, 41.949657] + }, + "n3358": { + "id": "n3358", + "loc": [-85.634884, 41.949657] + }, + "n3359": { + "id": "n3359", + "loc": [-85.634883, 41.94971] + }, + "n336": { + "id": "n336", + "loc": [-85.633697, 41.943405] + }, + "n3360": { + "id": "n3360", + "loc": [-85.635227, 41.949774] + }, + "n3361": { + "id": "n3361", + "loc": [-85.635218, 41.949779] + }, + "n3362": { + "id": "n3362", + "loc": [-85.635118, 41.949781] + }, + "n3363": { + "id": "n3363", + "loc": [-85.635118, 41.949746] + }, + "n3364": { + "id": "n3364", + "loc": [-85.634884, 41.949765] + }, + "n3365": { + "id": "n3365", + "loc": [-85.634883, 41.949624] + }, + "n3366": { + "id": "n3366", + "loc": [-85.635127, 41.949621] + }, + "n3367": { + "id": "n3367", + "loc": [-85.635126, 41.949589] + }, + "n3368": { + "id": "n3368", + "loc": [-85.635196, 41.949588] + }, + "n3369": { + "id": "n3369", + "loc": [-85.635192, 41.949452] + }, + "n337": { + "id": "n337", + "loc": [-85.63347, 41.943181] + }, + "n3370": { + "id": "n3370", + "loc": [-85.6354, 41.949449] + }, + "n3371": { + "id": "n3371", + "loc": [-85.635407, 41.949771] + }, + "n3372": { + "id": "n3372", + "loc": [-85.634423, 41.950964] + }, + "n3373": { + "id": "n3373", + "loc": [-85.634424, 41.95074] + }, + "n3374": { + "id": "n3374", + "loc": [-85.634394, 41.950284] + }, + "n3375": { + "id": "n3375", + "loc": [-85.634398, 41.950626] + }, + "n3376": { + "id": "n3376", + "loc": [-85.63452, 41.951063] + }, + "n3377": { + "id": "n3377", + "loc": [-85.634511, 41.949977] + }, + "n3378": { + "id": "n3378", + "loc": [-85.637409, 41.949873] + }, + "n3379": { + "id": "n3379", + "loc": [-85.634824, 41.94996] + }, + "n338": { + "id": "n338", + "loc": [-85.633597, 41.943109] + }, + "n3380": { + "id": "n3380", + "loc": [-85.635437, 41.949954] + }, + "n3381": { + "id": "n3381", + "loc": [-85.634844, 41.951064] + }, + "n3382": { + "id": "n3382", + "loc": [-85.635458, 41.951058] + }, + "n3383": { + "id": "n3383", + "loc": [-85.633921, 41.947333] + }, + "n3384": { + "id": "n3384", + "loc": [-85.634208, 41.947793] + }, + "n3385": { + "id": "n3385", + "loc": [-85.634204, 41.947687] + }, + "n3386": { + "id": "n3386", + "loc": [-85.63424, 41.947475] + }, + "n3387": { + "id": "n3387", + "loc": [-85.63424, 41.947635] + }, + "n3388": { + "id": "n3388", + "loc": [-85.634089, 41.948328] + }, + "n3389": { + "id": "n3389", + "loc": [-85.63424, 41.948299] + }, + "n339": { + "id": "n339", + "loc": [-85.633673, 41.943184] + }, + "n3390": { + "id": "n3390", + "loc": [-85.634239, 41.948212] + }, + "n3391": { + "id": "n3391", + "loc": [-85.634086, 41.948214] + }, + "n3392": { + "id": "n3392", + "loc": [-85.63408, 41.948056] + }, + "n3393": { + "id": "n3393", + "loc": [-85.634093, 41.948506] + }, + "n3394": { + "id": "n3394", + "loc": [-85.64344, 41.941866] + }, + "n3395": { + "id": "n3395", + "loc": [-85.63378, 41.95099] + }, + "n3396": { + "id": "n3396", + "loc": [-85.633779, 41.950967] + }, + "n3397": { + "id": "n3397", + "loc": [-85.63375, 41.950746] + }, + "n3398": { + "id": "n3398", + "loc": [-85.63375, 41.950697] + }, + "n3399": { + "id": "n3399", + "loc": [-85.633903, 41.950696] + }, + "n34": { + "id": "n34", + "loc": [-85.638176, 41.944312] + }, + "n340": { + "id": "n340", + "loc": [-85.633714, 41.94316] + }, + "n3400": { + "id": "n3400", + "loc": [-85.633901, 41.950436] + }, + "n3401": { + "id": "n3401", + "loc": [-85.633492, 41.950438] + }, + "n3402": { + "id": "n3402", + "loc": [-85.633494, 41.950756] + }, + "n3403": { + "id": "n3403", + "loc": [-85.633454, 41.950756] + }, + "n3404": { + "id": "n3404", + "loc": [-85.633456, 41.950992] + }, + "n3405": { + "id": "n3405", + "loc": [-85.633994, 41.950284] + }, + "n3406": { + "id": "n3406", + "loc": [-85.633998, 41.950628] + }, + "n3407": { + "id": "n3407", + "loc": [-85.633364, 41.951068] + }, + "n3408": { + "id": "n3408", + "loc": [-85.633356, 41.949982] + }, + "n3409": { + "id": "n3409", + "loc": [-85.643327, 41.941903] + }, + "n341": { + "id": "n341", + "loc": [-85.633811, 41.943256] + }, + "n3410": { + "id": "n3410", + "loc": [-85.633292, 41.953691] + }, + "n3411": { + "id": "n3411", + "loc": [-85.637432, 41.952399] + }, + "n3412": { + "id": "n3412", + "loc": [-85.633349, 41.957422] + }, + "n3413": { + "id": "n3413", + "loc": [-85.633326, 41.955909] + }, + "n3414": { + "id": "n3414", + "loc": [-85.633307, 41.954673] + }, + "n3415": { + "id": "n3415", + "loc": [-85.633273, 41.952436] + }, + "n3416": { + "id": "n3416", + "loc": [-85.633361, 41.95823], + "tags": { + "highway": "turning_circle" + } + }, + "n3417": { + "id": "n3417", + "loc": [-85.619899, 41.945527] + }, + "n3418": { + "id": "n3418", + "loc": [-85.643422, 41.941946] + }, + "n3419": { + "id": "n3419", + "loc": [-85.643505, 41.942033] + }, + "n342": { + "id": "n342", + "loc": [-85.633801, 41.943261] + }, + "n3420": { + "id": "n3420", + "loc": [-85.620088, 41.945571] + }, + "n3421": { + "id": "n3421", + "loc": [-85.620051, 41.945505] + }, + "n3422": { + "id": "n3422", + "loc": [-85.62001, 41.94541] + }, + "n3423": { + "id": "n3423", + "loc": [-85.620982, 41.944742] + }, + "n3424": { + "id": "n3424", + "loc": [-85.621305, 41.944782] + }, + "n3425": { + "id": "n3425", + "loc": [-85.621174, 41.944819] + }, + "n3426": { + "id": "n3426", + "loc": [-85.621029, 41.944871] + }, + "n3427": { + "id": "n3427", + "loc": [-85.620741, 41.945011] + }, + "n3428": { + "id": "n3428", + "loc": [-85.620616, 41.945085] + }, + "n3429": { + "id": "n3429", + "loc": [-85.620506, 41.945172] + }, + "n343": { + "id": "n343", + "loc": [-85.63374, 41.943514] + }, + "n3430": { + "id": "n3430", + "loc": [-85.620394, 41.945273] + }, + "n3431": { + "id": "n3431", + "loc": [-85.620316, 41.94536] + }, + "n3432": { + "id": "n3432", + "loc": [-85.620257, 41.945452] + }, + "n3433": { + "id": "n3433", + "loc": [-85.620212, 41.945535] + }, + "n3434": { + "id": "n3434", + "loc": [-85.620101, 41.945811] + }, + "n3435": { + "id": "n3435", + "loc": [-85.620081, 41.945937] + }, + "n3436": { + "id": "n3436", + "loc": [-85.619899, 41.943718] + }, + "n3437": { + "id": "n3437", + "loc": [-85.619969, 41.943211] + }, + "n3438": { + "id": "n3438", + "loc": [-85.619894, 41.943292] + }, + "n3439": { + "id": "n3439", + "loc": [-85.620047, 41.944738] + }, + "n344": { + "id": "n344", + "loc": [-85.633665, 41.943441] + }, + "n3440": { + "id": "n3440", + "loc": [-85.620226, 41.946088] + }, + "n3441": { + "id": "n3441", + "loc": [-85.620225, 41.945864] + }, + "n3442": { + "id": "n3442", + "loc": [-85.620518, 41.945863] + }, + "n3443": { + "id": "n3443", + "loc": [-85.620519, 41.945944] + }, + "n3444": { + "id": "n3444", + "loc": [-85.620388, 41.945944] + }, + "n3445": { + "id": "n3445", + "loc": [-85.620389, 41.946088] + }, + "n3446": { + "id": "n3446", + "loc": [-85.618405, 41.946566] + }, + "n3447": { + "id": "n3447", + "loc": [-85.619156, 41.946562] + }, + "n3448": { + "id": "n3448", + "loc": [-85.619154, 41.946319] + }, + "n3449": { + "id": "n3449", + "loc": [-85.618736, 41.946322] + }, + "n345": { + "id": "n345", + "loc": [-85.633162, 41.942947] + }, + "n3450": { + "id": "n3450", + "loc": [-85.618733, 41.94612] + }, + "n3451": { + "id": "n3451", + "loc": [-85.619317, 41.946116] + }, + "n3452": { + "id": "n3452", + "loc": [-85.619316, 41.946023] + }, + "n3453": { + "id": "n3453", + "loc": [-85.619622, 41.946021] + }, + "n3454": { + "id": "n3454", + "loc": [-85.619624, 41.946171] + }, + "n3455": { + "id": "n3455", + "loc": [-85.61977, 41.94617] + }, + "n3456": { + "id": "n3456", + "loc": [-85.619769, 41.94602] + }, + "n3457": { + "id": "n3457", + "loc": [-85.619732, 41.94602] + }, + "n3458": { + "id": "n3458", + "loc": [-85.619731, 41.945856] + }, + "n3459": { + "id": "n3459", + "loc": [-85.619617, 41.945857] + }, + "n346": { + "id": "n346", + "loc": [-85.633598, 41.943083] + }, + "n3460": { + "id": "n3460", + "loc": [-85.619616, 41.945776] + }, + "n3461": { + "id": "n3461", + "loc": [-85.619447, 41.945777] + }, + "n3462": { + "id": "n3462", + "loc": [-85.619415, 41.945778] + }, + "n3463": { + "id": "n3463", + "loc": [-85.618378, 41.945788] + }, + "n3464": { + "id": "n3464", + "loc": [-85.618384, 41.946132] + }, + "n3465": { + "id": "n3465", + "loc": [-85.618503, 41.94613] + }, + "n3466": { + "id": "n3466", + "loc": [-85.618506, 41.946319] + }, + "n3467": { + "id": "n3467", + "loc": [-85.6184, 41.94632] + }, + "n3468": { + "id": "n3468", + "loc": [-85.618248, 41.946416] + }, + "n3469": { + "id": "n3469", + "loc": [-85.618247, 41.946319] + }, + "n347": { + "id": "n347", + "loc": [-85.63343, 41.943179] + }, + "n3470": { + "id": "n3470", + "loc": [-85.618039, 41.946321] + }, + "n3471": { + "id": "n3471", + "loc": [-85.61804, 41.946418] + }, + "n3472": { + "id": "n3472", + "loc": [-85.620118, 41.951895] + }, + "n3473": { + "id": "n3473", + "loc": [-85.617075, 41.95469] + }, + "n3474": { + "id": "n3474", + "loc": [-85.620107, 41.952113] + }, + "n3475": { + "id": "n3475", + "loc": [-85.620091, 41.95232] + }, + "n3476": { + "id": "n3476", + "loc": [-85.620047, 41.952505] + }, + "n3477": { + "id": "n3477", + "loc": [-85.61998, 41.952715] + }, + "n3478": { + "id": "n3478", + "loc": [-85.619861, 41.952986] + }, + "n3479": { + "id": "n3479", + "loc": [-85.619622, 41.953365] + }, + "n348": { + "id": "n348", + "loc": [-85.633669, 41.94341] + }, + "n3480": { + "id": "n3480", + "loc": [-85.619441, 41.953567] + }, + "n3481": { + "id": "n3481", + "loc": [-85.619259, 41.953741] + }, + "n3482": { + "id": "n3482", + "loc": [-85.618835, 41.954056] + }, + "n3483": { + "id": "n3483", + "loc": [-85.618602, 41.954194] + }, + "n3484": { + "id": "n3484", + "loc": [-85.618305, 41.954347] + }, + "n3485": { + "id": "n3485", + "loc": [-85.618006, 41.954466] + }, + "n3486": { + "id": "n3486", + "loc": [-85.617611, 41.954587] + }, + "n3487": { + "id": "n3487", + "loc": [-85.615094, 41.943412] + }, + "n3488": { + "id": "n3488", + "loc": [-85.619337, 41.943025] + }, + "n3489": { + "id": "n3489", + "loc": [-85.610477, 41.945527] + }, + "n349": { + "id": "n349", + "loc": [-85.633566, 41.943466] + }, + "n3490": { + "id": "n3490", + "loc": [-85.610477, 41.943718] + }, + "n3491": { + "id": "n3491", + "loc": [-85.619804, 41.942976] + }, + "n3492": { + "id": "n3492", + "loc": [-85.61921, 41.942672] + }, + "n3493": { + "id": "n3493", + "loc": [-85.619862, 41.942836] + }, + "n3494": { + "id": "n3494", + "loc": [-85.616326, 41.942769] + }, + "n3495": { + "id": "n3495", + "loc": [-85.617953, 41.942917] + }, + "n3496": { + "id": "n3496", + "loc": [-85.61972, 41.942728] + }, + "n3497": { + "id": "n3497", + "loc": [-85.61944, 41.942784] + }, + "n3498": { + "id": "n3498", + "loc": [-85.615323, 41.942841] + }, + "n3499": { + "id": "n3499", + "loc": [-85.612923, 41.943718] + }, + "n35": { + "id": "n35", + "loc": [-85.637928, 41.944249] + }, + "n350": { + "id": "n350", + "loc": [-85.633031, 41.942986] + }, + "n3500": { + "id": "n3500", + "loc": [-85.61958, 41.942756] + }, + "n3501": { + "id": "n3501", + "loc": [-85.619643, 41.942647], + "tags": { + "leisure": "fishing" + } + }, + "n3502": { + "id": "n3502", + "loc": [-85.619935, 41.942962] + }, + "n3503": { + "id": "n3503", + "loc": [-85.629677, 41.954687] + }, + "n3504": { + "id": "n3504", + "loc": [-85.629083, 41.953722] + }, + "n3505": { + "id": "n3505", + "loc": [-85.621907, 41.952067] + }, + "n3506": { + "id": "n3506", + "loc": [-85.621788, 41.952058] + }, + "n3507": { + "id": "n3507", + "loc": [-85.629665, 41.953718] + }, + "n3508": { + "id": "n3508", + "loc": [-85.624454, 41.954707] + }, + "n3509": { + "id": "n3509", + "loc": [-85.634609, 41.954585] + }, + "n351": { + "id": "n351", + "loc": [-85.633238, 41.94283] + }, + "n3510": { + "id": "n3510", + "loc": [-85.634595, 41.953772] + }, + "n3511": { + "id": "n3511", + "loc": [-85.633425, 41.953783] + }, + "n3512": { + "id": "n3512", + "loc": [-85.633439, 41.954596] + }, + "n3513": { + "id": "n3513", + "loc": [-85.63727, 41.952289] + }, + "n3514": { + "id": "n3514", + "loc": [-85.637268, 41.952158] + }, + "n3515": { + "id": "n3515", + "loc": [-85.63695, 41.952162] + }, + "n3516": { + "id": "n3516", + "loc": [-85.636953, 41.952293] + }, + "n3517": { + "id": "n3517", + "loc": [-85.621789, 41.952179] + }, + "n3518": { + "id": "n3518", + "loc": [-85.624105, 41.954704] + }, + "n3519": { + "id": "n3519", + "loc": [-85.623306, 41.954542] + }, + "n352": { + "id": "n352", + "loc": [-85.633173, 41.943556] + }, + "n3520": { + "id": "n3520", + "loc": [-85.623123, 41.954502] + }, + "n3521": { + "id": "n3521", + "loc": [-85.622965, 41.954473] + }, + "n3522": { + "id": "n3522", + "loc": [-85.622822, 41.954455] + }, + "n3523": { + "id": "n3523", + "loc": [-85.62269, 41.954448] + }, + "n3524": { + "id": "n3524", + "loc": [-85.622388, 41.954467] + }, + "n3525": { + "id": "n3525", + "loc": [-85.62403, 41.954895] + }, + "n3526": { + "id": "n3526", + "loc": [-85.623579, 41.954855] + }, + "n3527": { + "id": "n3527", + "loc": [-85.623836, 41.954951] + }, + "n3528": { + "id": "n3528", + "loc": [-85.622473, 41.954592] + }, + "n3529": { + "id": "n3529", + "loc": [-85.622753, 41.95458] + }, + "n353": { + "id": "n353", + "loc": [-85.633127, 41.943552] + }, + "n3530": { + "id": "n3530", + "loc": [-85.62404, 41.955078] + }, + "n3531": { + "id": "n3531", + "loc": [-85.624126, 41.954999] + }, + "n3532": { + "id": "n3532", + "loc": [-85.623171, 41.954687] + }, + "n3533": { + "id": "n3533", + "loc": [-85.624276, 41.955206] + }, + "n3534": { + "id": "n3534", + "loc": [-85.62491, 41.952801] + }, + "n3535": { + "id": "n3535", + "loc": [-85.625186, 41.952756] + }, + "n3536": { + "id": "n3536", + "loc": [-85.625552, 41.952792] + }, + "n3537": { + "id": "n3537", + "loc": [-85.626001, 41.952948] + }, + "n3538": { + "id": "n3538", + "loc": [-85.626528, 41.952984] + }, + "n3539": { + "id": "n3539", + "loc": [-85.626942, 41.952886] + }, + "n354": { + "id": "n354", + "loc": [-85.632745, 41.943222] + }, + "n3540": { + "id": "n3540", + "loc": [-85.627092, 41.952685] + }, + "n3541": { + "id": "n3541", + "loc": [-85.627212, 41.95244] + }, + "n3542": { + "id": "n3542", + "loc": [-85.627158, 41.952226] + }, + "n3543": { + "id": "n3543", + "loc": [-85.627002, 41.951972] + }, + "n3544": { + "id": "n3544", + "loc": [-85.626822, 41.951838] + }, + "n3545": { + "id": "n3545", + "loc": [-85.626528, 41.951807] + }, + "n3546": { + "id": "n3546", + "loc": [-85.625653, 41.951852] + }, + "n3547": { + "id": "n3547", + "loc": [-85.625348, 41.951834] + }, + "n3548": { + "id": "n3548", + "loc": [-85.625114, 41.951767] + }, + "n3549": { + "id": "n3549", + "loc": [-85.620627, 41.954682] + }, + "n355": { + "id": "n355", + "loc": [-85.632756, 41.943199] + }, + "n3550": { + "id": "n3550", + "loc": [-85.622758, 41.951884] + }, + "n3551": { + "id": "n3551", + "loc": [-85.618135, 41.954734] + }, + "n3552": { + "id": "n3552", + "loc": [-85.620229, 41.95472] + }, + "n3553": { + "id": "n3553", + "loc": [-85.624491, 41.955573] + }, + "n3554": { + "id": "n3554", + "loc": [-85.621792, 41.958314] + }, + "n3555": { + "id": "n3555", + "loc": [-85.623395, 41.960001] + }, + "n3556": { + "id": "n3556", + "loc": [-85.620461, 41.956212] + }, + "n3557": { + "id": "n3557", + "loc": [-85.62109, 41.956766] + }, + "n3558": { + "id": "n3558", + "loc": [-85.620246, 41.956224] + }, + "n3559": { + "id": "n3559", + "loc": [-85.625017, 41.956068] + }, + "n356": { + "id": "n356", + "loc": [-85.632855, 41.943147] + }, + "n3560": { + "id": "n3560", + "loc": [-85.622795, 41.959702] + }, + "n3561": { + "id": "n3561", + "loc": [-85.621573, 41.958457] + }, + "n3562": { + "id": "n3562", + "loc": [-85.619631, 41.9573] + }, + "n3563": { + "id": "n3563", + "loc": [-85.62095, 41.956311] + }, + "n3564": { + "id": "n3564", + "loc": [-85.619694, 41.957408] + }, + "n3565": { + "id": "n3565", + "loc": [-85.621079, 41.957751] + }, + "n3566": { + "id": "n3566", + "loc": [-85.622426, 41.961142] + }, + "n3567": { + "id": "n3567", + "loc": [-85.623251, 41.960484] + }, + "n3568": { + "id": "n3568", + "loc": [-85.619084, 41.956291] + }, + "n3569": { + "id": "n3569", + "loc": [-85.622227, 41.959303] + }, + "n357": { + "id": "n357", + "loc": [-85.632888, 41.94315] + }, + "n3570": { + "id": "n3570", + "loc": [-85.620976, 41.959104] + }, + "n3571": { + "id": "n3571", + "loc": [-85.621208, 41.95653] + }, + "n3572": { + "id": "n3572", + "loc": [-85.623531, 41.95951] + }, + "n3573": { + "id": "n3573", + "loc": [-85.623556, 41.957935] + }, + "n3574": { + "id": "n3574", + "loc": [-85.623037, 41.95746] + }, + "n3575": { + "id": "n3575", + "loc": [-85.621175, 41.956427] + }, + "n3576": { + "id": "n3576", + "loc": [-85.622651, 41.960109] + }, + "n3577": { + "id": "n3577", + "loc": [-85.621803, 41.960747] + }, + "n3578": { + "id": "n3578", + "loc": [-85.620791, 41.961874] + }, + "n3579": { + "id": "n3579", + "loc": [-85.625295, 41.956786] + }, + "n358": { + "id": "n358", + "loc": [-85.633232, 41.943547] + }, + "n3580": { + "id": "n3580", + "loc": [-85.619662, 41.956894] + }, + "n3581": { + "id": "n3581", + "loc": [-85.622442, 41.958708] + }, + "n3582": { + "id": "n3582", + "loc": [-85.621744, 41.955864] + }, + "n3583": { + "id": "n3583", + "loc": [-85.621336, 41.959212] + }, + "n3584": { + "id": "n3584", + "loc": [-85.622801, 41.957304] + }, + "n3585": { + "id": "n3585", + "loc": [-85.619973, 41.957433] + }, + "n3586": { + "id": "n3586", + "loc": [-85.619556, 41.955717] + }, + "n3587": { + "id": "n3587", + "loc": [-85.622978, 41.958601] + }, + "n3588": { + "id": "n3588", + "loc": [-85.625396, 41.956264] + }, + "n3589": { + "id": "n3589", + "loc": [-85.623525, 41.958034] + }, + "n359": { + "id": "n359", + "loc": [-85.633302, 41.94351] + }, + "n3590": { + "id": "n3590", + "loc": [-85.623299, 41.959631] + }, + "n3591": { + "id": "n3591", + "loc": [-85.622678, 41.959873] + }, + "n3592": { + "id": "n3592", + "loc": [-85.625553, 41.956179] + }, + "n3593": { + "id": "n3593", + "loc": [-85.623557, 41.959231] + }, + "n3594": { + "id": "n3594", + "loc": [-85.622843, 41.957373] + }, + "n3595": { + "id": "n3595", + "loc": [-85.619378, 41.955677] + }, + "n3596": { + "id": "n3596", + "loc": [-85.620092, 41.955425] + }, + "n3597": { + "id": "n3597", + "loc": [-85.622666, 41.96044] + }, + "n3598": { + "id": "n3598", + "loc": [-85.621996, 41.960256] + }, + "n3599": { + "id": "n3599", + "loc": [-85.623273, 41.959997] + }, + "n36": { + "id": "n36", + "loc": [-85.637894, 41.945551] + }, + "n360": { + "id": "n360", + "loc": [-85.633442, 41.943794], + "tags": { + "highway": "crossing" + } + }, + "n3600": { + "id": "n3600", + "loc": [-85.62477, 41.95689] + }, + "n3601": { + "id": "n3601", + "loc": [-85.621641, 41.955015] + }, + "n3602": { + "id": "n3602", + "loc": [-85.622495, 41.960392] + }, + "n3603": { + "id": "n3603", + "loc": [-85.61918, 41.955565] + }, + "n3604": { + "id": "n3604", + "loc": [-85.620017, 41.955505] + }, + "n3605": { + "id": "n3605", + "loc": [-85.621739, 41.956315] + }, + "n3606": { + "id": "n3606", + "loc": [-85.622957, 41.959837] + }, + "n3607": { + "id": "n3607", + "loc": [-85.620912, 41.960919] + }, + "n3608": { + "id": "n3608", + "loc": [-85.625231, 41.956235] + }, + "n3609": { + "id": "n3609", + "loc": [-85.620976, 41.961868] + }, + "n361": { + "id": "n361", + "loc": [-85.633381, 41.94383] + }, + "n3610": { + "id": "n3610", + "loc": [-85.620956, 41.958908] + }, + "n3611": { + "id": "n3611", + "loc": [-85.619035, 41.956139] + }, + "n3612": { + "id": "n3612", + "loc": [-85.623643, 41.958669] + }, + "n3613": { + "id": "n3613", + "loc": [-85.61949, 41.956539] + }, + "n3614": { + "id": "n3614", + "loc": [-85.621927, 41.958242] + }, + "n3615": { + "id": "n3615", + "loc": [-85.620826, 41.955721] + }, + "n3616": { + "id": "n3616", + "loc": [-85.621202, 41.961321] + }, + "n3617": { + "id": "n3617", + "loc": [-85.624877, 41.95594] + }, + "n3618": { + "id": "n3618", + "loc": [-85.62065, 41.958369] + }, + "n3619": { + "id": "n3619", + "loc": [-85.621524, 41.956279] + }, + "n362": { + "id": "n362", + "loc": [-85.632977, 41.944053] + }, + "n3620": { + "id": "n3620", + "loc": [-85.624662, 41.955932] + }, + "n3621": { + "id": "n3621", + "loc": [-85.623048, 41.958509] + }, + "n3622": { + "id": "n3622", + "loc": [-85.62111, 41.95754] + }, + "n3623": { + "id": "n3623", + "loc": [-85.621508, 41.954847] + }, + "n3624": { + "id": "n3624", + "loc": [-85.620655, 41.958601] + }, + "n3625": { + "id": "n3625", + "loc": [-85.62154, 41.954971] + }, + "n3626": { + "id": "n3626", + "loc": [-85.621691, 41.955521] + }, + "n3627": { + "id": "n3627", + "loc": [-85.62154, 41.954739] + }, + "n3628": { + "id": "n3628", + "loc": [-85.621996, 41.959913] + }, + "n3629": { + "id": "n3629", + "loc": [-85.622286, 41.960699] + }, + "n363": { + "id": "n363", + "loc": [-85.632915, 41.943981], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n3630": { + "id": "n3630", + "loc": [-85.622844, 41.9572] + }, + "n3631": { + "id": "n3631", + "loc": [-85.620252, 41.955446] + }, + "n3632": { + "id": "n3632", + "loc": [-85.623434, 41.957528] + }, + "n3633": { + "id": "n3633", + "loc": [-85.623429, 41.956858] + }, + "n3634": { + "id": "n3634", + "loc": [-85.622957, 41.957137] + }, + "n3635": { + "id": "n3635", + "loc": [-85.622554, 41.959027] + }, + "n3636": { + "id": "n3636", + "loc": [-85.623289, 41.958314] + }, + "n3637": { + "id": "n3637", + "loc": [-85.622977, 41.960855] + }, + "n3638": { + "id": "n3638", + "loc": [-85.624008, 41.956953] + }, + "n3639": { + "id": "n3639", + "loc": [-85.621278, 41.960855] + }, + "n364": { + "id": "n364", + "loc": [-85.632724, 41.943969], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n3640": { + "id": "n3640", + "loc": [-85.623128, 41.956993] + }, + "n3641": { + "id": "n3641", + "loc": [-85.622452, 41.959183] + }, + "n3642": { + "id": "n3642", + "loc": [-85.621095, 41.961082] + }, + "n3643": { + "id": "n3643", + "loc": [-85.622011, 41.960544] + }, + "n3644": { + "id": "n3644", + "loc": [-85.621637, 41.955385] + }, + "n3645": { + "id": "n3645", + "loc": [-85.620999, 41.959271] + }, + "n3646": { + "id": "n3646", + "loc": [-85.620044, 41.956347] + }, + "n3647": { + "id": "n3647", + "loc": [-85.621936, 41.959682] + }, + "n3648": { + "id": "n3648", + "loc": [-85.623761, 41.95685] + }, + "n3649": { + "id": "n3649", + "loc": [-85.621239, 41.959343] + }, + "n365": { + "id": "n365", + "loc": [-85.632621, 41.944034] + }, + "n3650": { + "id": "n3650", + "loc": [-85.621073, 41.956012] + }, + "n3651": { + "id": "n3651", + "loc": [-85.621271, 41.956184] + }, + "n3652": { + "id": "n3652", + "loc": [-85.623444, 41.95778] + }, + "n3653": { + "id": "n3653", + "loc": [-85.62125, 41.96186] + }, + "n3654": { + "id": "n3654", + "loc": [-85.62169, 41.961059] + }, + "n3655": { + "id": "n3655", + "loc": [-85.620012, 41.955637] + }, + "n3656": { + "id": "n3656", + "loc": [-85.621058, 41.9573] + }, + "n3657": { + "id": "n3657", + "loc": [-85.621138, 41.957663] + }, + "n3658": { + "id": "n3658", + "loc": [-85.620773, 41.957895] + }, + "n3659": { + "id": "n3659", + "loc": [-85.62007, 41.957157] + }, + "n366": { + "id": "n366", + "loc": [-85.632684, 41.944109], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n3660": { + "id": "n3660", + "loc": [-85.624534, 41.955844] + }, + "n3661": { + "id": "n3661", + "loc": [-85.621932, 41.960807] + }, + "n3662": { + "id": "n3662", + "loc": [-85.623358, 41.958138] + }, + "n3663": { + "id": "n3663", + "loc": [-85.620456, 41.955514] + }, + "n3664": { + "id": "n3664", + "loc": [-85.623504, 41.957607] + }, + "n3665": { + "id": "n3665", + "loc": [-85.621444, 41.960751] + }, + "n3666": { + "id": "n3666", + "loc": [-85.623492, 41.960213] + }, + "n3667": { + "id": "n3667", + "loc": [-85.621669, 41.954655] + }, + "n3668": { + "id": "n3668", + "loc": [-85.623106, 41.958685] + }, + "n3669": { + "id": "n3669", + "loc": [-85.620922, 41.957867] + }, + "n367": { + "id": "n367", + "loc": [-85.632738, 41.944172] + }, + "n3670": { + "id": "n3670", + "loc": [-85.620092, 41.957296] + }, + "n3671": { + "id": "n3671", + "loc": [-85.621669, 41.955222] + }, + "n3672": { + "id": "n3672", + "loc": [-85.621614, 41.960967] + }, + "n3673": { + "id": "n3673", + "loc": [-85.621691, 41.955732] + }, + "n3674": { + "id": "n3674", + "loc": [-85.619207, 41.956419] + }, + "n3675": { + "id": "n3675", + "loc": [-85.621116, 41.956603] + }, + "n3676": { + "id": "n3676", + "loc": [-85.623311, 41.956929] + }, + "n3677": { + "id": "n3677", + "loc": [-85.625671, 41.956499] + }, + "n3678": { + "id": "n3678", + "loc": [-85.623525, 41.956738] + }, + "n3679": { + "id": "n3679", + "loc": [-85.625381, 41.956634] + }, + "n368": { + "id": "n368", + "loc": [-85.63287, 41.944135], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n3680": { + "id": "n3680", + "loc": [-85.620096, 41.95677] + }, + "n3681": { + "id": "n3681", + "loc": [-85.623803, 41.958745] + }, + "n3682": { + "id": "n3682", + "loc": [-85.623498, 41.958457] + }, + "n3683": { + "id": "n3683", + "loc": [-85.624223, 41.957009] + }, + "n3684": { + "id": "n3684", + "loc": [-85.620026, 41.956946] + }, + "n3685": { + "id": "n3685", + "loc": [-85.623005, 41.960124] + }, + "n3686": { + "id": "n3686", + "loc": [-85.619073, 41.955832] + }, + "n3687": { + "id": "n3687", + "loc": [-85.621744, 41.95501] + }, + "n3688": { + "id": "n3688", + "loc": [-85.620804, 41.958781] + }, + "n3689": { + "id": "n3689", + "loc": [-85.619844, 41.957448] + }, + "n369": { + "id": "n369", + "loc": [-85.63298, 41.944076] + }, + "n3690": { + "id": "n3690", + "loc": [-85.623713, 41.958872] + }, + "n3691": { + "id": "n3691", + "loc": [-85.622329, 41.960507] + }, + "n3692": { + "id": "n3692", + "loc": [-85.620804, 41.956244] + }, + "n3693": { + "id": "n3693", + "loc": [-85.621818, 41.955968] + }, + "n3694": { + "id": "n3694", + "loc": [-85.621405, 41.958697] + }, + "n3695": { + "id": "n3695", + "loc": [-85.620998, 41.960996] + }, + "n3696": { + "id": "n3696", + "loc": [-85.621621, 41.960444] + }, + "n3697": { + "id": "n3697", + "loc": [-85.620941, 41.961637] + }, + "n3698": { + "id": "n3698", + "loc": [-85.622195, 41.958333] + }, + "n3699": { + "id": "n3699", + "loc": [-85.621668, 41.961529] + }, + "n37": { + "id": "n37", + "loc": [-85.637611, 41.945383] + }, + "n370": { + "id": "n370", + "loc": [-85.633191, 41.944471] + }, + "n3700": { + "id": "n3700", + "loc": [-85.621015, 41.957049] + }, + "n3701": { + "id": "n3701", + "loc": [-85.619368, 41.955521] + }, + "n3702": { + "id": "n3702", + "loc": [-85.651578, 41.942534] + }, + "n3703": { + "id": "n3703", + "loc": [-85.651541, 41.943847] + }, + "n3704": { + "id": "n3704", + "loc": [-85.651365, 41.944817] + }, + "n3705": { + "id": "n3705", + "loc": [-85.651076, 41.945985] + }, + "n3706": { + "id": "n3706", + "loc": [-85.650626, 41.947213] + }, + "n3707": { + "id": "n3707", + "loc": [-85.649669, 41.949161] + }, + "n3708": { + "id": "n3708", + "loc": [-85.641802, 41.961801] + }, + "n3709": { + "id": "n3709", + "loc": [-85.623333, 41.961987] + }, + "n371": { + "id": "n371", + "loc": [-85.633132, 41.94372] + }, + "n3710": { + "id": "n3710", + "loc": [-85.620621, 41.965658] + }, + "n3711": { + "id": "n3711", + "loc": [-85.605673, 41.965764] + }, + "n3712": { + "id": "n3712", + "loc": [-85.605664, 41.962094] + }, + "n3713": { + "id": "n3713", + "loc": [-85.583774, 41.962178] + }, + "n3714": { + "id": "n3714", + "loc": [-85.583774, 41.961789] + }, + "n3715": { + "id": "n3715", + "loc": [-85.581303, 41.961783] + }, + "n3716": { + "id": "n3716", + "loc": [-85.581245, 41.958394] + }, + "n3717": { + "id": "n3717", + "loc": [-85.585299, 41.955483] + }, + "n3718": { + "id": "n3718", + "loc": [-85.585588, 41.955331] + }, + "n3719": { + "id": "n3719", + "loc": [-85.586053, 41.955163] + }, + "n372": { + "id": "n372", + "loc": [-85.633011, 41.943788] + }, + "n3720": { + "id": "n3720", + "loc": [-85.58632, 41.955076] + }, + "n3721": { + "id": "n3721", + "loc": [-85.586478, 41.955025] + }, + "n3722": { + "id": "n3722", + "loc": [-85.58692, 41.954947] + }, + "n3723": { + "id": "n3723", + "loc": [-85.587345, 41.954913] + }, + "n3724": { + "id": "n3724", + "loc": [-85.605592, 41.954766] + }, + "n3725": { + "id": "n3725", + "loc": [-85.605303, 41.936236] + }, + "n3726": { + "id": "n3726", + "loc": [-85.606941, 41.936117] + }, + "n3727": { + "id": "n3727", + "loc": [-85.60876, 41.935856] + }, + "n3728": { + "id": "n3728", + "loc": [-85.610092, 41.935451] + }, + "n3729": { + "id": "n3729", + "loc": [-85.610681, 41.935247] + }, + "n373": { + "id": "n373", + "loc": [-85.632854, 41.943632] + }, + "n3730": { + "id": "n3730", + "loc": [-85.611446, 41.934955] + }, + "n3731": { + "id": "n3731", + "loc": [-85.612057, 41.934696] + }, + "n3732": { + "id": "n3732", + "loc": [-85.613256, 41.934084] + }, + "n3733": { + "id": "n3733", + "loc": [-85.613948, 41.933682] + }, + "n3734": { + "id": "n3734", + "loc": [-85.614638, 41.933212] + }, + "n3735": { + "id": "n3735", + "loc": [-85.619801, 41.929305] + }, + "n3736": { + "id": "n3736", + "loc": [-85.619768, 41.925548] + }, + "n3737": { + "id": "n3737", + "loc": [-85.625761, 41.925597] + }, + "n3738": { + "id": "n3738", + "loc": [-85.6263, 41.927323] + }, + "n3739": { + "id": "n3739", + "loc": [-85.633708, 41.927402] + }, + "n374": { + "id": "n374", + "loc": [-85.632974, 41.943565] + }, + "n3740": { + "id": "n3740", + "loc": [-85.633927, 41.929109] + }, + "n3741": { + "id": "n3741", + "loc": [-85.639213, 41.929088] + }, + "n3742": { + "id": "n3742", + "loc": [-85.639204, 41.925488] + }, + "n3743": { + "id": "n3743", + "loc": [-85.651425, 41.925406] + }, + "n3744": { + "id": "n3744", + "loc": [-85.643386, 41.941933] + }, + "n3745": { + "id": "n3745", + "loc": [-85.642776, 41.941161] + }, + "n3746": { + "id": "n3746", + "loc": [-85.637277, 41.948812] + }, + "n3747": { + "id": "n3747", + "loc": [-85.637366, 41.94897] + }, + "n3748": { + "id": "n3748", + "loc": [-85.637329, 41.94889] + }, + "n3749": { + "id": "n3749", + "loc": [-85.629649, 41.952596] + }, + "n375": { + "id": "n375", + "loc": [-85.632741, 41.943351] + }, + "n3750": { + "id": "n3750", + "loc": [-85.630291, 41.954684] + }, + "n3751": { + "id": "n3751", + "loc": [-85.630284, 41.953713] + }, + "n3752": { + "id": "n3752", + "loc": [-85.630269, 41.952463] + }, + "n3753": { + "id": "n3753", + "loc": [-85.633933, 41.949896] + }, + "n3754": { + "id": "n3754", + "loc": [-85.629339, 41.941467] + }, + "n3755": { + "id": "n3755", + "loc": [-85.629857, 41.94316] + }, + "n3756": { + "id": "n3756", + "loc": [-85.629987, 41.944025] + }, + "n3757": { + "id": "n3757", + "loc": [-85.628538, 41.948604] + }, + "n3758": { + "id": "n3758", + "loc": [-85.627415, 41.957442] + }, + "n3759": { + "id": "n3759", + "loc": [-85.627019, 41.957369] + }, + "n376": { + "id": "n376", + "loc": [-85.63251, 41.943481] + }, + "n3760": { + "id": "n3760", + "loc": [-85.62167, 41.952179] + }, + "n3761": { + "id": "n3761", + "loc": [-85.62167, 41.952138] + }, + "n3762": { + "id": "n3762", + "loc": [-85.621562, 41.952139] + }, + "n3763": { + "id": "n3763", + "loc": [-85.621562, 41.952058] + }, + "n3764": { + "id": "n3764", + "loc": [-85.621476, 41.952043] + }, + "n3765": { + "id": "n3765", + "loc": [-85.621477, 41.952132] + }, + "n3766": { + "id": "n3766", + "loc": [-85.621386, 41.952132] + }, + "n3767": { + "id": "n3767", + "loc": [-85.621387, 41.95214] + }, + "n3768": { + "id": "n3768", + "loc": [-85.621262, 41.95214] + }, + "n3769": { + "id": "n3769", + "loc": [-85.621261, 41.952038] + }, + "n377": { + "id": "n377", + "loc": [-85.632706, 41.943715] + }, + "n3770": { + "id": "n3770", + "loc": [-85.621389, 41.952038] + }, + "n3771": { + "id": "n3771", + "loc": [-85.621389, 41.952043] + }, + "n3772": { + "id": "n3772", + "loc": [-85.620898, 41.952024] + }, + "n3773": { + "id": "n3773", + "loc": [-85.620898, 41.952085] + }, + "n3774": { + "id": "n3774", + "loc": [-85.620774, 41.952084] + }, + "n3775": { + "id": "n3775", + "loc": [-85.620774, 41.952023] + }, + "n3776": { + "id": "n3776", + "loc": [-85.620749, 41.952036] + }, + "n3777": { + "id": "n3777", + "loc": [-85.620723, 41.952097] + }, + "n3778": { + "id": "n3778", + "loc": [-85.626158, 41.958996] + }, + "n3779": { + "id": "n3779", + "loc": [-85.626319, 41.958686] + }, + "n378": { + "id": "n378", + "loc": [-85.638683, 41.943295] + }, + "n3780": { + "id": "n3780", + "loc": [-85.626119, 41.958629] + }, + "n3781": { + "id": "n3781", + "loc": [-85.626064, 41.958733] + }, + "n3782": { + "id": "n3782", + "loc": [-85.626155, 41.958759] + }, + "n3783": { + "id": "n3783", + "loc": [-85.626048, 41.958965] + }, + "n3784": { + "id": "n3784", + "loc": [-85.620648, 41.952079] + }, + "n3785": { + "id": "n3785", + "loc": [-85.63826, 41.961213] + }, + "n3786": { + "id": "n3786", + "loc": [-85.638003, 41.961614] + }, + "n3787": { + "id": "n3787", + "loc": [-85.638817, 41.961902] + }, + "n3788": { + "id": "n3788", + "loc": [-85.639073, 41.961501] + }, + "n3789": { + "id": "n3789", + "loc": [-85.620674, 41.952018] + }, + "n379": { + "id": "n379", + "loc": [-85.638684, 41.94323] + }, + "n3790": { + "id": "n3790", + "loc": [-85.62082, 41.952106] + }, + "n3791": { + "id": "n3791", + "loc": [-85.620819, 41.952143] + }, + "n3792": { + "id": "n3792", + "loc": [-85.620778, 41.952143] + }, + "n3793": { + "id": "n3793", + "loc": [-85.620778, 41.952106] + }, + "n3794": { + "id": "n3794", + "loc": [-85.620563, 41.952276] + }, + "n3795": { + "id": "n3795", + "loc": [-85.620543, 41.95238] + }, + "n3796": { + "id": "n3796", + "loc": [-85.620422, 41.952367] + }, + "n3797": { + "id": "n3797", + "loc": [-85.620441, 41.952263] + }, + "n3798": { + "id": "n3798", + "loc": [-85.620561, 41.952266] + }, + "n3799": { + "id": "n3799", + "loc": [-85.620444, 41.952254] + }, + "n38": { + "id": "n38", + "loc": [-85.63879, 41.943295] + }, + "n380": { + "id": "n380", + "loc": [-85.638627, 41.94322] + }, + "n3800": { + "id": "n3800", + "loc": [-85.620773, 41.955585] + }, + "n3801": { + "id": "n3801", + "loc": [-85.621265, 41.955989] + }, + "n3802": { + "id": "n3802", + "loc": [-85.620692, 41.954969] + }, + "n3803": { + "id": "n3803", + "loc": [-85.620691, 41.955367] + }, + "n3804": { + "id": "n3804", + "loc": [-85.620458, 41.952178] + }, + "n3805": { + "id": "n3805", + "loc": [-85.620575, 41.95219] + }, + "n3806": { + "id": "n3806", + "loc": [-85.617609, 41.952712] + }, + "n3807": { + "id": "n3807", + "loc": [-85.617533, 41.952801], + "tags": { + "entrance": "yes" + } + }, + "n3808": { + "id": "n3808", + "loc": [-85.616816, 41.952911] + }, + "n3809": { + "id": "n3809", + "loc": [-85.616797, 41.952901] + }, + "n381": { + "id": "n381", + "loc": [-85.638624, 41.943294] + }, + "n3810": { + "id": "n3810", + "loc": [-85.616343, 41.952694] + }, + "n3811": { + "id": "n3811", + "loc": [-85.616336, 41.952729] + }, + "n3812": { + "id": "n3812", + "loc": [-85.616343, 41.952772] + }, + "n3813": { + "id": "n3813", + "loc": [-85.628479, 41.948649] + }, + "n3814": { + "id": "n3814", + "loc": [-85.628413, 41.948679] + }, + "n3815": { + "id": "n3815", + "loc": [-85.628336, 41.948694] + }, + "n3816": { + "id": "n3816", + "loc": [-85.62826, 41.948694] + }, + "n3817": { + "id": "n3817", + "loc": [-85.628185, 41.948679] + }, + "n3818": { + "id": "n3818", + "loc": [-85.628103, 41.948649] + }, + "n3819": { + "id": "n3819", + "loc": [-85.627482, 41.948395] + }, + "n382": { + "id": "n382", + "loc": [-85.638437, 41.943291] + }, + "n3820": { + "id": "n3820", + "loc": [-85.619957, 41.951168] + }, + "n3821": { + "id": "n3821", + "loc": [-85.619955, 41.952077] + }, + "n3822": { + "id": "n3822", + "loc": [-85.619843, 41.952666] + }, + "n3823": { + "id": "n3823", + "loc": [-85.619513, 41.95324] + }, + "n3824": { + "id": "n3824", + "loc": [-85.619163, 41.953668] + }, + "n3825": { + "id": "n3825", + "loc": [-85.618813, 41.953947] + }, + "n3826": { + "id": "n3826", + "loc": [-85.618265, 41.954252] + }, + "n3827": { + "id": "n3827", + "loc": [-85.617691, 41.954458] + }, + "n3828": { + "id": "n3828", + "loc": [-85.616978, 41.95459] + }, + "n3829": { + "id": "n3829", + "loc": [-85.615408, 41.954628] + }, + "n383": { + "id": "n383", + "loc": [-85.63844, 41.943209] + }, + "n3830": { + "id": "n3830", + "loc": [-85.615374, 41.951076] + }, + "n3831": { + "id": "n3831", + "loc": [-85.61932, 41.947564] + }, + "n3832": { + "id": "n3832", + "loc": [-85.610553, 41.94755] + }, + "n3833": { + "id": "n3833", + "loc": [-85.610572, 41.951065] + }, + "n3834": { + "id": "n3834", + "loc": [-85.617548, 41.94757] + }, + "n3835": { + "id": "n3835", + "loc": [-85.619842, 41.947939] + }, + "n3836": { + "id": "n3836", + "loc": [-85.619874, 41.950905] + }, + "n3837": { + "id": "n3837", + "loc": [-85.619695, 41.950911] + }, + "n3838": { + "id": "n3838", + "loc": [-85.617591, 41.951078] + }, + "n3839": { + "id": "n3839", + "loc": [-85.619551, 41.951065] + }, + "n384": { + "id": "n384", + "loc": [-85.632616, 41.944021] + }, + "n3840": { + "id": "n3840", + "loc": [-85.626813, 41.947337] + }, + "n3841": { + "id": "n3841", + "loc": [-85.616371, 41.952814] + }, + "n3842": { + "id": "n3842", + "loc": [-85.617205, 41.951308] + }, + "n3843": { + "id": "n3843", + "loc": [-85.616795, 41.950953] + }, + "n3844": { + "id": "n3844", + "loc": [-85.617441, 41.950889] + }, + "n3845": { + "id": "n3845", + "loc": [-85.619155, 41.949377] + }, + "n3846": { + "id": "n3846", + "loc": [-85.618556, 41.949377] + }, + "n3847": { + "id": "n3847", + "loc": [-85.618557, 41.948372] + }, + "n3848": { + "id": "n3848", + "loc": [-85.619156, 41.948372] + }, + "n3849": { + "id": "n3849", + "loc": [-85.61927, 41.949796] + }, + "n385": { + "id": "n385", + "loc": [-85.632319, 41.944172] + }, + "n3850": { + "id": "n3850", + "loc": [-85.61926, 41.948344] + }, + "n3851": { + "id": "n3851", + "loc": [-85.619219, 41.948264] + }, + "n3852": { + "id": "n3852", + "loc": [-85.619147, 41.948196] + }, + "n3853": { + "id": "n3853", + "loc": [-85.619049, 41.948144] + }, + "n3854": { + "id": "n3854", + "loc": [-85.618942, 41.948116] + }, + "n3855": { + "id": "n3855", + "loc": [-85.618822, 41.948109] + }, + "n3856": { + "id": "n3856", + "loc": [-85.618699, 41.94813] + }, + "n3857": { + "id": "n3857", + "loc": [-85.618937, 41.951943] + }, + "n3858": { + "id": "n3858", + "loc": [-85.616755, 41.952231] + }, + "n3859": { + "id": "n3859", + "loc": [-85.616799, 41.95472] + }, + "n386": { + "id": "n386", + "loc": [-85.63221, 41.944066] + }, + "n3860": { + "id": "n3860", + "loc": [-85.616458, 41.954735] + }, + "n3861": { + "id": "n3861", + "loc": [-85.61763, 41.951515] + }, + "n3862": { + "id": "n3862", + "loc": [-85.617735, 41.951572] + }, + "n3863": { + "id": "n3863", + "loc": [-85.61929, 41.951573] + }, + "n3864": { + "id": "n3864", + "loc": [-85.617134, 41.951348] + }, + "n3865": { + "id": "n3865", + "loc": [-85.616598, 41.95192] + }, + "n3866": { + "id": "n3866", + "loc": [-85.616572, 41.951992] + }, + "n3867": { + "id": "n3867", + "loc": [-85.616583, 41.952076] + }, + "n3868": { + "id": "n3868", + "loc": [-85.616636, 41.952145] + }, + "n3869": { + "id": "n3869", + "loc": [-85.616916, 41.952279] + }, + "n387": { + "id": "n387", + "loc": [-85.632524, 41.943912] + }, + "n3870": { + "id": "n3870", + "loc": [-85.617088, 41.952254] + }, + "n3871": { + "id": "n3871", + "loc": [-85.61892, 41.951467] + }, + "n3872": { + "id": "n3872", + "loc": [-85.618035, 41.951473] + }, + "n3873": { + "id": "n3873", + "loc": [-85.618036, 41.951572] + }, + "n3874": { + "id": "n3874", + "loc": [-85.61892, 41.951573] + }, + "n3875": { + "id": "n3875", + "loc": [-85.618919, 41.951957] + }, + "n3876": { + "id": "n3876", + "loc": [-85.619457, 41.952237] + }, + "n3877": { + "id": "n3877", + "loc": [-85.618178, 41.953618] + }, + "n3878": { + "id": "n3878", + "loc": [-85.617658, 41.953366] + }, + "n3879": { + "id": "n3879", + "loc": [-85.617987, 41.953024] + }, + "n388": { + "id": "n388", + "loc": [-85.632268, 41.943621] + }, + "n3880": { + "id": "n3880", + "loc": [-85.618429, 41.953248] + }, + "n3881": { + "id": "n3881", + "loc": [-85.618554, 41.953119] + }, + "n3882": { + "id": "n3882", + "loc": [-85.618077, 41.952868] + }, + "n3883": { + "id": "n3883", + "loc": [-85.618039, 41.952886] + }, + "n3884": { + "id": "n3884", + "loc": [-85.619375, 41.952169] + }, + "n3885": { + "id": "n3885", + "loc": [-85.618137, 41.953538] + }, + "n3886": { + "id": "n3886", + "loc": [-85.61799, 41.953555] + }, + "n3887": { + "id": "n3887", + "loc": [-85.617729, 41.953423] + }, + "n3888": { + "id": "n3888", + "loc": [-85.618101, 41.953029] + }, + "n3889": { + "id": "n3889", + "loc": [-85.618516, 41.953119] + }, + "n389": { + "id": "n389", + "loc": [-85.631951, 41.943773] + }, + "n3890": { + "id": "n3890", + "loc": [-85.619132, 41.952042] + }, + "n3891": { + "id": "n3891", + "loc": [-85.618235, 41.952981] + }, + "n3892": { + "id": "n3892", + "loc": [-85.618485, 41.952425] + }, + "n3893": { + "id": "n3893", + "loc": [-85.618676, 41.952519] + }, + "n3894": { + "id": "n3894", + "loc": [-85.618942, 41.952648] + }, + "n3895": { + "id": "n3895", + "loc": [-85.618287, 41.953122] + }, + "n3896": { + "id": "n3896", + "loc": [-85.617914, 41.953516] + }, + "n3897": { + "id": "n3897", + "loc": [-85.617836, 41.953573] + }, + "n3898": { + "id": "n3898", + "loc": [-85.616477, 41.95289] + }, + "n3899": { + "id": "n3899", + "loc": [-85.618441, 41.953201] + }, + "n39": { + "id": "n39", + "loc": [-85.619931, 41.951013] + }, + "n390": { + "id": "n390", + "loc": [-85.631981, 41.943654] + }, + "n3900": { + "id": "n3900", + "loc": [-85.617537, 41.953335] + }, + "n3901": { + "id": "n3901", + "loc": [-85.617221, 41.953166] + }, + "n3902": { + "id": "n3902", + "loc": [-85.617253, 41.953135] + }, + "n3903": { + "id": "n3903", + "loc": [-85.617211, 41.953114] + }, + "n3904": { + "id": "n3904", + "loc": [-85.617197, 41.95313] + }, + "n3905": { + "id": "n3905", + "loc": [-85.616802, 41.952925] + }, + "n3906": { + "id": "n3906", + "loc": [-85.616771, 41.952928] + }, + "n3907": { + "id": "n3907", + "loc": [-85.616493, 41.952785] + }, + "n3908": { + "id": "n3908", + "loc": [-85.616823, 41.952426] + }, + "n3909": { + "id": "n3909", + "loc": [-85.617191, 41.952616] + }, + "n391": { + "id": "n391", + "loc": [-85.631886, 41.943699] + }, + "n3910": { + "id": "n3910", + "loc": [-85.61724, 41.952559] + }, + "n3911": { + "id": "n3911", + "loc": [-85.61721, 41.952542] + }, + "n3912": { + "id": "n3912", + "loc": [-85.617395, 41.952351] + }, + "n3913": { + "id": "n3913", + "loc": [-85.617426, 41.952368] + }, + "n3914": { + "id": "n3914", + "loc": [-85.617483, 41.952309] + }, + "n3915": { + "id": "n3915", + "loc": [-85.617332, 41.952229] + }, + "n3916": { + "id": "n3916", + "loc": [-85.617451, 41.952102] + }, + "n3917": { + "id": "n3917", + "loc": [-85.617477, 41.952115] + }, + "n3918": { + "id": "n3918", + "loc": [-85.617658, 41.951923] + }, + "n3919": { + "id": "n3919", + "loc": [-85.617634, 41.95191] + }, + "n392": { + "id": "n392", + "loc": [-85.631807, 41.943606] + }, + "n3920": { + "id": "n3920", + "loc": [-85.617747, 41.951786] + }, + "n3921": { + "id": "n3921", + "loc": [-85.618268, 41.952056] + }, + "n3922": { + "id": "n3922", + "loc": [-85.618211, 41.952122] + }, + "n3923": { + "id": "n3923", + "loc": [-85.618386, 41.95222] + }, + "n3924": { + "id": "n3924", + "loc": [-85.618098, 41.952527] + }, + "n3925": { + "id": "n3925", + "loc": [-85.617916, 41.95243] + }, + "n3926": { + "id": "n3926", + "loc": [-85.617854, 41.952498] + }, + "n3927": { + "id": "n3927", + "loc": [-85.617769, 41.952453] + }, + "n3928": { + "id": "n3928", + "loc": [-85.617476, 41.952773] + }, + "n3929": { + "id": "n3929", + "loc": [-85.617876, 41.952973] + }, + "n393": { + "id": "n393", + "loc": [-85.631902, 41.943561] + }, + "n3930": { + "id": "n3930", + "loc": [-85.617174, 41.953638] + }, + "n3931": { + "id": "n3931", + "loc": [-85.618016, 41.953578] + }, + "n3932": { + "id": "n3932", + "loc": [-85.618107, 41.953628] + }, + "n3933": { + "id": "n3933", + "loc": [-85.618067, 41.954268] + }, + "n3934": { + "id": "n3934", + "loc": [-85.617864, 41.954263] + }, + "n3935": { + "id": "n3935", + "loc": [-85.61762, 41.954205] + }, + "n3936": { + "id": "n3936", + "loc": [-85.617437, 41.954103] + }, + "n3937": { + "id": "n3937", + "loc": [-85.617294, 41.953978] + }, + "n3938": { + "id": "n3938", + "loc": [-85.617217, 41.95384] + }, + "n3939": { + "id": "n3939", + "loc": [-85.616814, 41.954327] + }, + "n394": { + "id": "n394", + "loc": [-85.63236, 41.943543] + }, + "n3940": { + "id": "n3940", + "loc": [-85.616778, 41.95381] + }, + "n3941": { + "id": "n3941", + "loc": [-85.616585, 41.953707] + }, + "n3942": { + "id": "n3942", + "loc": [-85.616458, 41.954318] + }, + "n3943": { + "id": "n3943", + "loc": [-85.616643, 41.954345] + }, + "n3944": { + "id": "n3944", + "loc": [-85.618133, 41.951412] + }, + "n3945": { + "id": "n3945", + "loc": [-85.618326, 41.951411] + }, + "n3946": { + "id": "n3946", + "loc": [-85.618503, 41.95141] + }, + "n3947": { + "id": "n3947", + "loc": [-85.618681, 41.951409] + }, + "n3948": { + "id": "n3948", + "loc": [-85.618868, 41.951408] + }, + "n3949": { + "id": "n3949", + "loc": [-85.617047, 41.95136] + }, + "n395": { + "id": "n395", + "loc": [-85.633839, 41.944082] + }, + "n3950": { + "id": "n3950", + "loc": [-85.616494, 41.951959] + }, + "n3951": { + "id": "n3951", + "loc": [-85.616497, 41.952072] + }, + "n3952": { + "id": "n3952", + "loc": [-85.616565, 41.952165] + }, + "n3953": { + "id": "n3953", + "loc": [-85.616663, 41.952218] + }, + "n3954": { + "id": "n3954", + "loc": [-85.616733, 41.952255] + }, + "n3955": { + "id": "n3955", + "loc": [-85.617238, 41.952512], + "tags": { + "entrance": "yes" + } + }, + "n3956": { + "id": "n3956", + "loc": [-85.617043, 41.952406] + }, + "n3957": { + "id": "n3957", + "loc": [-85.617691, 41.951711] + }, + "n3958": { + "id": "n3958", + "loc": [-85.617773, 41.951679] + }, + "n3959": { + "id": "n3959", + "loc": [-85.619085, 41.951681] + }, + "n396": { + "id": "n396", + "loc": [-85.63376, 41.944097] + }, + "n3960": { + "id": "n3960", + "loc": [-85.617943, 41.952895] + }, + "n3961": { + "id": "n3961", + "loc": [-85.618039, 41.952938] + }, + "n3962": { + "id": "n3962", + "loc": [-85.61763, 41.95336] + }, + "n3963": { + "id": "n3963", + "loc": [-85.617554, 41.95344] + }, + "n3964": { + "id": "n3964", + "loc": [-85.617381, 41.952366], + "tags": { + "entrance": "yes" + } + }, + "n3965": { + "id": "n3965", + "loc": [-85.617184, 41.952254] + }, + "n3966": { + "id": "n3966", + "loc": [-85.617208, 41.952496] + }, + "n3967": { + "id": "n3967", + "loc": [-85.617124, 41.952581], + "tags": { + "entrance": "yes" + } + }, + "n3968": { + "id": "n3968", + "loc": [-85.618094, 41.952735] + }, + "n3969": { + "id": "n3969", + "loc": [-85.617702, 41.952525], + "tags": { + "entrance": "yes" + } + }, + "n397": { + "id": "n397", + "loc": [-85.63361, 41.943957] + }, + "n3970": { + "id": "n3970", + "loc": [-85.617554, 41.952686], + "tags": { + "entrance": "yes" + } + }, + "n3971": { + "id": "n3971", + "loc": [-85.617959, 41.952878] + }, + "n3972": { + "id": "n3972", + "loc": [-85.616367, 41.952655] + }, + "n3973": { + "id": "n3973", + "loc": [-85.616416, 41.952851] + }, + "n3974": { + "id": "n3974", + "loc": [-85.619777, 41.951075] + }, + "n3975": { + "id": "n3975", + "loc": [-85.618611, 41.94817] + }, + "n3976": { + "id": "n3976", + "loc": [-85.618538, 41.948229] + }, + "n3977": { + "id": "n3977", + "loc": [-85.617421, 41.947559] + }, + "n3978": { + "id": "n3978", + "loc": [-85.617395, 41.951039] + }, + "n3979": { + "id": "n3979", + "loc": [-85.618488, 41.94829] + }, + "n398": { + "id": "n398", + "loc": [-85.633309, 41.943886] + }, + "n3980": { + "id": "n3980", + "loc": [-85.610238, 41.954774] + }, + "n3981": { + "id": "n3981", + "loc": [-85.617449, 41.950756] + }, + "n3982": { + "id": "n3982", + "loc": [-85.617288, 41.951286] + }, + "n3983": { + "id": "n3983", + "loc": [-85.61745, 41.950197] + }, + "n3984": { + "id": "n3984", + "loc": [-85.617436, 41.948908] + }, + "n3985": { + "id": "n3985", + "loc": [-85.615915, 41.953804] + }, + "n3986": { + "id": "n3986", + "loc": [-85.615953, 41.953968] + }, + "n3987": { + "id": "n3987", + "loc": [-85.616031, 41.954085] + }, + "n3988": { + "id": "n3988", + "loc": [-85.616135, 41.954181] + }, + "n3989": { + "id": "n3989", + "loc": [-85.616273, 41.954263] + }, + "n399": { + "id": "n399", + "loc": [-85.633226, 41.943931] + }, + "n3990": { + "id": "n3990", + "loc": [-85.618327, 41.951083] + }, + "n3991": { + "id": "n3991", + "loc": [-85.618135, 41.951084] + }, + "n3992": { + "id": "n3992", + "loc": [-85.618503, 41.951082] + }, + "n3993": { + "id": "n3993", + "loc": [-85.618682, 41.951081] + }, + "n3994": { + "id": "n3994", + "loc": [-85.618864, 41.951082] + }, + "n3995": { + "id": "n3995", + "loc": [-85.616761, 41.950101] + }, + "n3996": { + "id": "n3996", + "loc": [-85.617317, 41.947558] + }, + "n3997": { + "id": "n3997", + "loc": [-85.617336, 41.948883] + }, + "n3998": { + "id": "n3998", + "loc": [-85.616779, 41.949295] + }, + "n3999": { + "id": "n3999", + "loc": [-85.616754, 41.949349] + }, + "n4": { + "id": "n4", + "loc": [-85.622764, 41.950892], + "tags": { + "highway": "stop" + } + }, + "n40": { + "id": "n40", + "loc": [-85.619841, 41.951037] + }, + "n400": { + "id": "n400", + "loc": [-85.63326, 41.943966] + }, + "n4000": { + "id": "n4000", + "loc": [-85.616761, 41.950865] + }, + "n4001": { + "id": "n4001", + "loc": [-85.616883, 41.951041] + }, + "n4002": { + "id": "n4002", + "loc": [-85.617004, 41.951142] + }, + "n4003": { + "id": "n4003", + "loc": [-85.617062, 41.951248] + }, + "n4004": { + "id": "n4004", + "loc": [-85.616809, 41.949273] + }, + "n4005": { + "id": "n4005", + "loc": [-85.616755, 41.949489] + }, + "n4006": { + "id": "n4006", + "loc": [-85.616759, 41.949971] + }, + "n4007": { + "id": "n4007", + "loc": [-85.616757, 41.949702] + }, + "n4008": { + "id": "n4008", + "loc": [-85.618456, 41.94836] + }, + "n4009": { + "id": "n4009", + "loc": [-85.618447, 41.948428] + }, + "n401": { + "id": "n401", + "loc": [-85.63324, 41.943976] + }, + "n4010": { + "id": "n4010", + "loc": [-85.618437, 41.949322] + }, + "n4011": { + "id": "n4011", + "loc": [-85.618447, 41.949418] + }, + "n4012": { + "id": "n4012", + "loc": [-85.618478, 41.949491] + }, + "n4013": { + "id": "n4013", + "loc": [-85.618535, 41.949559] + }, + "n4014": { + "id": "n4014", + "loc": [-85.618623, 41.94962] + }, + "n4015": { + "id": "n4015", + "loc": [-85.618721, 41.94966] + }, + "n4016": { + "id": "n4016", + "loc": [-85.618838, 41.949674] + }, + "n4017": { + "id": "n4017", + "loc": [-85.618967, 41.949667] + }, + "n4018": { + "id": "n4018", + "loc": [-85.619065, 41.949632] + }, + "n4019": { + "id": "n4019", + "loc": [-85.61915, 41.949578] + }, + "n402": { + "id": "n402", + "loc": [-85.63327, 41.944006] + }, + "n4020": { + "id": "n4020", + "loc": [-85.619216, 41.949507] + }, + "n4021": { + "id": "n4021", + "loc": [-85.61927, 41.949399] + }, + "n4022": { + "id": "n4022", + "loc": [-85.619074, 41.947639] + }, + "n4023": { + "id": "n4023", + "loc": [-85.619073, 41.947793] + }, + "n4024": { + "id": "n4024", + "loc": [-85.618912, 41.947793] + }, + "n4025": { + "id": "n4025", + "loc": [-85.618911, 41.947947] + }, + "n4026": { + "id": "n4026", + "loc": [-85.618752, 41.947947] + }, + "n4027": { + "id": "n4027", + "loc": [-85.618754, 41.947637] + }, + "n4028": { + "id": "n4028", + "loc": [-85.617896, 41.947599] + }, + "n4029": { + "id": "n4029", + "loc": [-85.617898, 41.947811] + }, + "n403": { + "id": "n403", + "loc": [-85.633278, 41.944002] + }, + "n4030": { + "id": "n4030", + "loc": [-85.617717, 41.947812] + }, + "n4031": { + "id": "n4031", + "loc": [-85.617715, 41.9476] + }, + "n4032": { + "id": "n4032", + "loc": [-85.619003, 41.949828] + }, + "n4033": { + "id": "n4033", + "loc": [-85.619003, 41.949882] + }, + "n4034": { + "id": "n4034", + "loc": [-85.618926, 41.949882] + }, + "n4035": { + "id": "n4035", + "loc": [-85.618926, 41.949828] + }, + "n4036": { + "id": "n4036", + "loc": [-85.618861, 41.949809] + }, + "n4037": { + "id": "n4037", + "loc": [-85.618861, 41.949898] + }, + "n4038": { + "id": "n4038", + "loc": [-85.618688, 41.949898] + }, + "n4039": { + "id": "n4039", + "loc": [-85.618687, 41.94981] + }, + "n404": { + "id": "n404", + "loc": [-85.63331, 41.944036] + }, + "n4040": { + "id": "n4040", + "loc": [-85.618349, 41.949473] + }, + "n4041": { + "id": "n4041", + "loc": [-85.618287, 41.949473] + }, + "n4042": { + "id": "n4042", + "loc": [-85.618287, 41.94942] + }, + "n4043": { + "id": "n4043", + "loc": [-85.618348, 41.949419] + }, + "n4044": { + "id": "n4044", + "loc": [-85.62316, 41.951604] + }, + "n4045": { + "id": "n4045", + "loc": [-85.623026, 41.951605] + }, + "n4046": { + "id": "n4046", + "loc": [-85.623023, 41.951466] + }, + "n4047": { + "id": "n4047", + "loc": [-85.623134, 41.951465] + }, + "n4048": { + "id": "n4048", + "loc": [-85.623136, 41.951539] + }, + "n4049": { + "id": "n4049", + "loc": [-85.623159, 41.951539] + }, + "n405": { + "id": "n405", + "loc": [-85.633348, 41.944015] + }, + "n4050": { + "id": "n4050", + "loc": [-85.623025, 41.95155] + }, + "n4051": { + "id": "n4051", + "loc": [-85.622955, 41.951551] + }, + "n4052": { + "id": "n4052", + "loc": [-85.622953, 41.951507] + }, + "n4053": { + "id": "n4053", + "loc": [-85.623024, 41.951506] + }, + "n4054": { + "id": "n4054", + "loc": [-85.623318, 41.951242] + }, + "n4055": { + "id": "n4055", + "loc": [-85.623175, 41.951241] + }, + "n4056": { + "id": "n4056", + "loc": [-85.623176, 41.951153] + }, + "n4057": { + "id": "n4057", + "loc": [-85.623319, 41.951154] + }, + "n4058": { + "id": "n4058", + "loc": [-85.623077, 41.951191] + }, + "n4059": { + "id": "n4059", + "loc": [-85.622973, 41.951191] + }, + "n406": { + "id": "n406", + "loc": [-85.63338, 41.944048] + }, + "n4060": { + "id": "n4060", + "loc": [-85.622972, 41.951349] + }, + "n4061": { + "id": "n4061", + "loc": [-85.623059, 41.95135] + }, + "n4062": { + "id": "n4062", + "loc": [-85.62306, 41.951301] + }, + "n4063": { + "id": "n4063", + "loc": [-85.623077, 41.951301] + }, + "n4064": { + "id": "n4064", + "loc": [-85.623117, 41.951405] + }, + "n4065": { + "id": "n4065", + "loc": [-85.62312, 41.951087] + }, + "n4066": { + "id": "n4066", + "loc": [-85.623118, 41.951274] + }, + "n4067": { + "id": "n4067", + "loc": [-85.62328, 41.951275] + }, + "n4068": { + "id": "n4068", + "loc": [-85.62328, 41.951242] + }, + "n4069": { + "id": "n4069", + "loc": [-85.623179, 41.951392] + }, + "n407": { + "id": "n407", + "loc": [-85.633431, 41.94402] + }, + "n4070": { + "id": "n4070", + "loc": [-85.623141, 41.951392] + }, + "n4071": { + "id": "n4071", + "loc": [-85.623142, 41.95136] + }, + "n4072": { + "id": "n4072", + "loc": [-85.623179, 41.951361] + }, + "n4073": { + "id": "n4073", + "loc": [-85.622565, 41.951639] + }, + "n4074": { + "id": "n4074", + "loc": [-85.622565, 41.951741] + }, + "n4075": { + "id": "n4075", + "loc": [-85.622463, 41.95174] + }, + "n4076": { + "id": "n4076", + "loc": [-85.622463, 41.95173] + }, + "n4077": { + "id": "n4077", + "loc": [-85.622442, 41.95173] + }, + "n4078": { + "id": "n4078", + "loc": [-85.622442, 41.951742] + }, + "n4079": { + "id": "n4079", + "loc": [-85.622361, 41.951742] + }, + "n408": { + "id": "n408", + "loc": [-85.633425, 41.944014] + }, + "n4080": { + "id": "n4080", + "loc": [-85.622362, 41.951667] + }, + "n4081": { + "id": "n4081", + "loc": [-85.622441, 41.951667] + }, + "n4082": { + "id": "n4082", + "loc": [-85.622441, 41.951688] + }, + "n4083": { + "id": "n4083", + "loc": [-85.622461, 41.951688] + }, + "n4084": { + "id": "n4084", + "loc": [-85.622461, 41.951638] + }, + "n4085": { + "id": "n4085", + "loc": [-85.62255, 41.951587] + }, + "n4086": { + "id": "n4086", + "loc": [-85.622449, 41.95159] + }, + "n4087": { + "id": "n4087", + "loc": [-85.622441, 41.951448] + }, + "n4088": { + "id": "n4088", + "loc": [-85.62253, 41.951445] + }, + "n4089": { + "id": "n4089", + "loc": [-85.622532, 41.951486] + }, + "n409": { + "id": "n409", + "loc": [-85.633457, 41.943997] + }, + "n4090": { + "id": "n4090", + "loc": [-85.622555, 41.951485] + }, + "n4091": { + "id": "n4091", + "loc": [-85.622558, 41.951531] + }, + "n4092": { + "id": "n4092", + "loc": [-85.622547, 41.951531] + }, + "n4093": { + "id": "n4093", + "loc": [-85.622451, 41.95159] + }, + "n4094": { + "id": "n4094", + "loc": [-85.622452, 41.95161] + }, + "n4095": { + "id": "n4095", + "loc": [-85.622106, 41.951617] + }, + "n4096": { + "id": "n4096", + "loc": [-85.622133, 41.951443] + }, + "n4097": { + "id": "n4097", + "loc": [-85.622552, 41.951379] + }, + "n4098": { + "id": "n4098", + "loc": [-85.622443, 41.95138] + }, + "n4099": { + "id": "n4099", + "loc": [-85.622441, 41.951281] + }, + "n41": { + "id": "n41", + "loc": [-85.636233, 41.942764] + }, + "n410": { + "id": "n410", + "loc": [-85.633429, 41.943969] + }, + "n4100": { + "id": "n4100", + "loc": [-85.62255, 41.95128] + }, + "n4101": { + "id": "n4101", + "loc": [-85.622541, 41.951437] + }, + "n4102": { + "id": "n4102", + "loc": [-85.622441, 41.951438] + }, + "n4103": { + "id": "n4103", + "loc": [-85.621561, 41.951444] + }, + "n4104": { + "id": "n4104", + "loc": [-85.622302, 41.951479] + }, + "n4105": { + "id": "n4105", + "loc": [-85.6223, 41.95152] + }, + "n4106": { + "id": "n4106", + "loc": [-85.622169, 41.951517] + }, + "n4107": { + "id": "n4107", + "loc": [-85.622171, 41.951476] + }, + "n4108": { + "id": "n4108", + "loc": [-85.622543, 41.951228] + }, + "n4109": { + "id": "n4109", + "loc": [-85.622433, 41.951228] + }, + "n411": { + "id": "n411", + "loc": [-85.633442, 41.943962] + }, + "n4110": { + "id": "n4110", + "loc": [-85.622433, 41.951133] + }, + "n4111": { + "id": "n4111", + "loc": [-85.622543, 41.951133] + }, + "n4112": { + "id": "n4112", + "loc": [-85.622356, 41.951256] + }, + "n4113": { + "id": "n4113", + "loc": [-85.622293, 41.951256] + }, + "n4114": { + "id": "n4114", + "loc": [-85.622292, 41.9512] + }, + "n4115": { + "id": "n4115", + "loc": [-85.622313, 41.9512] + }, + "n4116": { + "id": "n4116", + "loc": [-85.622312, 41.951173] + }, + "n4117": { + "id": "n4117", + "loc": [-85.622364, 41.951173] + }, + "n4118": { + "id": "n4118", + "loc": [-85.622365, 41.951231] + }, + "n4119": { + "id": "n4119", + "loc": [-85.622355, 41.951231] + }, + "n412": { + "id": "n412", + "loc": [-85.633411, 41.943932] + }, + "n4120": { + "id": "n4120", + "loc": [-85.62197, 41.951155] + }, + "n4121": { + "id": "n4121", + "loc": [-85.62197, 41.951213] + }, + "n4122": { + "id": "n4122", + "loc": [-85.621848, 41.951213] + }, + "n4123": { + "id": "n4123", + "loc": [-85.621848, 41.951155] + }, + "n4124": { + "id": "n4124", + "loc": [-85.622193, 41.951268] + }, + "n4125": { + "id": "n4125", + "loc": [-85.622194, 41.951305] + }, + "n4126": { + "id": "n4126", + "loc": [-85.622121, 41.951306] + }, + "n4127": { + "id": "n4127", + "loc": [-85.622121, 41.951322] + }, + "n4128": { + "id": "n4128", + "loc": [-85.621984, 41.951324] + }, + "n4129": { + "id": "n4129", + "loc": [-85.621983, 41.951271] + }, + "n413": { + "id": "n413", + "loc": [-85.633421, 41.943926] + }, + "n4130": { + "id": "n4130", + "loc": [-85.622171, 41.9514] + }, + "n4131": { + "id": "n4131", + "loc": [-85.622148, 41.951382] + }, + "n4132": { + "id": "n4132", + "loc": [-85.6221, 41.951414] + }, + "n4133": { + "id": "n4133", + "loc": [-85.622122, 41.951433] + }, + "n4134": { + "id": "n4134", + "loc": [-85.621782, 41.951148] + }, + "n4135": { + "id": "n4135", + "loc": [-85.621783, 41.951219] + }, + "n4136": { + "id": "n4136", + "loc": [-85.62164, 41.951221] + }, + "n4137": { + "id": "n4137", + "loc": [-85.62164, 41.951236] + }, + "n4138": { + "id": "n4138", + "loc": [-85.621556, 41.951237] + }, + "n4139": { + "id": "n4139", + "loc": [-85.621555, 41.95117] + }, + "n414": { + "id": "n414", + "loc": [-85.633376, 41.94388] + }, + "n4140": { + "id": "n4140", + "loc": [-85.621644, 41.951169] + }, + "n4141": { + "id": "n4141", + "loc": [-85.621643, 41.951139] + }, + "n4142": { + "id": "n4142", + "loc": [-85.621719, 41.951138] + }, + "n4143": { + "id": "n4143", + "loc": [-85.621719, 41.951148] + }, + "n4144": { + "id": "n4144", + "loc": [-85.621409, 41.951322] + }, + "n4145": { + "id": "n4145", + "loc": [-85.621338, 41.951322] + }, + "n4146": { + "id": "n4146", + "loc": [-85.621336, 41.95115] + }, + "n4147": { + "id": "n4147", + "loc": [-85.621521, 41.951149] + }, + "n4148": { + "id": "n4148", + "loc": [-85.621522, 41.951228] + }, + "n4149": { + "id": "n4149", + "loc": [-85.621408, 41.951228] + }, + "n415": { + "id": "n415", + "loc": [-85.633348, 41.943895] + }, + "n4150": { + "id": "n4150", + "loc": [-85.621284, 41.951219] + }, + "n4151": { + "id": "n4151", + "loc": [-85.621153, 41.951219] + }, + "n4152": { + "id": "n4152", + "loc": [-85.621152, 41.951152] + }, + "n4153": { + "id": "n4153", + "loc": [-85.621283, 41.951152] + }, + "n4154": { + "id": "n4154", + "loc": [-85.621159, 41.951241] + }, + "n4155": { + "id": "n4155", + "loc": [-85.62116, 41.951301] + }, + "n4156": { + "id": "n4156", + "loc": [-85.621088, 41.951302] + }, + "n4157": { + "id": "n4157", + "loc": [-85.621088, 41.951241] + }, + "n4158": { + "id": "n4158", + "loc": [-85.621049, 41.951158] + }, + "n4159": { + "id": "n4159", + "loc": [-85.62105, 41.951229] + }, + "n416": { + "id": "n416", + "loc": [-85.633341, 41.943888] + }, + "n4160": { + "id": "n4160", + "loc": [-85.620976, 41.951229] + }, + "n4161": { + "id": "n4161", + "loc": [-85.620977, 41.951295] + }, + "n4162": { + "id": "n4162", + "loc": [-85.620887, 41.951296] + }, + "n4163": { + "id": "n4163", + "loc": [-85.620886, 41.951229] + }, + "n4164": { + "id": "n4164", + "loc": [-85.620862, 41.951229] + }, + "n4165": { + "id": "n4165", + "loc": [-85.620861, 41.951159] + }, + "n4166": { + "id": "n4166", + "loc": [-85.620626, 41.951133] + }, + "n4167": { + "id": "n4167", + "loc": [-85.620626, 41.951205] + }, + "n4168": { + "id": "n4168", + "loc": [-85.620412, 41.951206] + }, + "n4169": { + "id": "n4169", + "loc": [-85.620411, 41.951134] + }, + "n417": { + "id": "n417", + "loc": [-85.633321, 41.943898] + }, + "n4170": { + "id": "n4170", + "loc": [-85.621775, 41.951443] + }, + "n4171": { + "id": "n4171", + "loc": [-85.621777, 41.951264] + }, + "n4172": { + "id": "n4172", + "loc": [-85.621565, 41.951654] + }, + "n4173": { + "id": "n4173", + "loc": [-85.621331, 41.951439] + }, + "n4174": { + "id": "n4174", + "loc": [-85.621031, 41.951443] + }, + "n4175": { + "id": "n4175", + "loc": [-85.621836, 41.951724] + }, + "n4176": { + "id": "n4176", + "loc": [-85.621834, 41.951621] + }, + "n4177": { + "id": "n4177", + "loc": [-85.62197, 41.951619] + }, + "n4178": { + "id": "n4178", + "loc": [-85.621972, 41.951722] + }, + "n4179": { + "id": "n4179", + "loc": [-85.621772, 41.951638] + }, + "n418": { + "id": "n418", + "loc": [-85.633547, 41.943896] + }, + "n4180": { + "id": "n4180", + "loc": [-85.621772, 41.951715] + }, + "n4181": { + "id": "n4181", + "loc": [-85.621699, 41.951716] + }, + "n4182": { + "id": "n4182", + "loc": [-85.6217, 41.951722] + }, + "n4183": { + "id": "n4183", + "loc": [-85.621641, 41.951722] + }, + "n4184": { + "id": "n4184", + "loc": [-85.62164, 41.951639] + }, + "n4185": { + "id": "n4185", + "loc": [-85.621505, 41.951655] + }, + "n4186": { + "id": "n4186", + "loc": [-85.621505, 41.951729] + }, + "n4187": { + "id": "n4187", + "loc": [-85.621389, 41.951729] + }, + "n4188": { + "id": "n4188", + "loc": [-85.62139, 41.951654] + }, + "n4189": { + "id": "n4189", + "loc": [-85.621105, 41.951635] + }, + "n419": { + "id": "n419", + "loc": [-85.633467, 41.944075] + }, + "n4190": { + "id": "n4190", + "loc": [-85.621104, 41.951576] + }, + "n4191": { + "id": "n4191", + "loc": [-85.621168, 41.951576] + }, + "n4192": { + "id": "n4192", + "loc": [-85.621168, 41.951595] + }, + "n4193": { + "id": "n4193", + "loc": [-85.621261, 41.951595] + }, + "n4194": { + "id": "n4194", + "loc": [-85.621261, 41.951646] + }, + "n4195": { + "id": "n4195", + "loc": [-85.621294, 41.951646] + }, + "n4196": { + "id": "n4196", + "loc": [-85.621294, 41.951732] + }, + "n4197": { + "id": "n4197", + "loc": [-85.621251, 41.951732] + }, + "n4198": { + "id": "n4198", + "loc": [-85.621251, 41.95174] + }, + "n4199": { + "id": "n4199", + "loc": [-85.621175, 41.951741] + }, + "n42": { + "id": "n42", + "loc": [-85.635996, 41.942727] + }, + "n420": { + "id": "n420", + "loc": [-85.633578, 41.944055] + }, + "n4200": { + "id": "n4200", + "loc": [-85.621175, 41.951651] + }, + "n4201": { + "id": "n4201", + "loc": [-85.621189, 41.951651] + }, + "n4202": { + "id": "n4202", + "loc": [-85.621189, 41.951635] + }, + "n4203": { + "id": "n4203", + "loc": [-85.620554, 41.951641] + }, + "n4204": { + "id": "n4204", + "loc": [-85.620555, 41.951742] + }, + "n4205": { + "id": "n4205", + "loc": [-85.620719, 41.951742] + }, + "n4206": { + "id": "n4206", + "loc": [-85.620719, 41.951731] + }, + "n4207": { + "id": "n4207", + "loc": [-85.620803, 41.95173] + }, + "n4208": { + "id": "n4208", + "loc": [-85.620803, 41.951603] + }, + "n4209": { + "id": "n4209", + "loc": [-85.62072, 41.951603] + }, + "n421": { + "id": "n421", + "loc": [-85.633462, 41.944125] + }, + "n4210": { + "id": "n4210", + "loc": [-85.620721, 41.951641] + }, + "n4211": { + "id": "n4211", + "loc": [-85.620269, 41.953053] + }, + "n4212": { + "id": "n4212", + "loc": [-85.620229, 41.953051] + }, + "n4213": { + "id": "n4213", + "loc": [-85.620231, 41.953013] + }, + "n4214": { + "id": "n4214", + "loc": [-85.620271, 41.953015] + }, + "n4215": { + "id": "n4215", + "loc": [-85.620215, 41.953133] + }, + "n4216": { + "id": "n4216", + "loc": [-85.62013, 41.953134] + }, + "n4217": { + "id": "n4217", + "loc": [-85.620129, 41.953083] + }, + "n4218": { + "id": "n4218", + "loc": [-85.620214, 41.953082] + }, + "n4219": { + "id": "n4219", + "loc": [-85.62016, 41.953272] + }, + "n422": { + "id": "n422", + "loc": [-85.633372, 41.944061] + }, + "n4220": { + "id": "n4220", + "loc": [-85.620046, 41.953273] + }, + "n4221": { + "id": "n4221", + "loc": [-85.620045, 41.953171] + }, + "n4222": { + "id": "n4222", + "loc": [-85.620088, 41.953171] + }, + "n4223": { + "id": "n4223", + "loc": [-85.620087, 41.953162] + }, + "n4224": { + "id": "n4224", + "loc": [-85.620121, 41.953162] + }, + "n4225": { + "id": "n4225", + "loc": [-85.620121, 41.953173] + }, + "n4226": { + "id": "n4226", + "loc": [-85.620157, 41.953173] + }, + "n4227": { + "id": "n4227", + "loc": [-85.620158, 41.953196] + }, + "n4228": { + "id": "n4228", + "loc": [-85.620189, 41.953196] + }, + "n4229": { + "id": "n4229", + "loc": [-85.620189, 41.953246] + }, + "n423": { + "id": "n423", + "loc": [-85.633509, 41.943981] + }, + "n4230": { + "id": "n4230", + "loc": [-85.62016, 41.953246] + }, + "n4231": { + "id": "n4231", + "loc": [-85.6195, 41.954012] + }, + "n4232": { + "id": "n4232", + "loc": [-85.619438, 41.954057] + }, + "n4233": { + "id": "n4233", + "loc": [-85.619418, 41.954043] + }, + "n4234": { + "id": "n4234", + "loc": [-85.619381, 41.954069] + }, + "n4235": { + "id": "n4235", + "loc": [-85.619399, 41.954083] + }, + "n4236": { + "id": "n4236", + "loc": [-85.619339, 41.954126] + }, + "n4237": { + "id": "n4237", + "loc": [-85.619584, 41.954313] + }, + "n4238": { + "id": "n4238", + "loc": [-85.619743, 41.954198] + }, + "n4239": { + "id": "n4239", + "loc": [-85.619453, 41.954727] + }, + "n424": { + "id": "n424", + "loc": [-85.635421, 41.945367] + }, + "n4240": { + "id": "n4240", + "loc": [-85.619503, 41.954581] + }, + "n4241": { + "id": "n4241", + "loc": [-85.619597, 41.954472] + }, + "n4242": { + "id": "n4242", + "loc": [-85.619862, 41.95419] + }, + "n4243": { + "id": "n4243", + "loc": [-85.619506, 41.953907] + }, + "n4244": { + "id": "n4244", + "loc": [-85.619261, 41.9541] + }, + "n4245": { + "id": "n4245", + "loc": [-85.619246, 41.954139] + }, + "n4246": { + "id": "n4246", + "loc": [-85.619244, 41.9542] + }, + "n4247": { + "id": "n4247", + "loc": [-85.619259, 41.954243] + }, + "n4248": { + "id": "n4248", + "loc": [-85.619285, 41.954274] + }, + "n4249": { + "id": "n4249", + "loc": [-85.619123, 41.954381] + }, + "n425": { + "id": "n425", + "loc": [-85.634425, 41.943552] + }, + "n4250": { + "id": "n4250", + "loc": [-85.619641, 41.954607] + }, + "n4251": { + "id": "n4251", + "loc": [-85.619383, 41.954615] + }, + "n4252": { + "id": "n4252", + "loc": [-85.61896, 41.954391] + }, + "n4253": { + "id": "n4253", + "loc": [-85.619211, 41.954178] + }, + "n4254": { + "id": "n4254", + "loc": [-85.619115, 41.954102] + }, + "n4255": { + "id": "n4255", + "loc": [-85.619519, 41.953821] + }, + "n4256": { + "id": "n4256", + "loc": [-85.619956, 41.954156] + }, + "n4257": { + "id": "n4257", + "loc": [-85.619851, 41.954266] + }, + "n4258": { + "id": "n4258", + "loc": [-85.619779, 41.95436] + }, + "n4259": { + "id": "n4259", + "loc": [-85.620525, 41.954364] + }, + "n426": { + "id": "n426", + "loc": [-85.634248, 41.943654] + }, + "n4260": { + "id": "n4260", + "loc": [-85.620398, 41.954365] + }, + "n4261": { + "id": "n4261", + "loc": [-85.620398, 41.954324] + }, + "n4262": { + "id": "n4262", + "loc": [-85.620525, 41.954323] + }, + "n4263": { + "id": "n4263", + "loc": [-85.620359, 41.954588] + }, + "n4264": { + "id": "n4264", + "loc": [-85.620321, 41.954588] + }, + "n4265": { + "id": "n4265", + "loc": [-85.620321, 41.954599] + }, + "n4266": { + "id": "n4266", + "loc": [-85.620296, 41.954599] + }, + "n4267": { + "id": "n4267", + "loc": [-85.620296, 41.954587] + }, + "n4268": { + "id": "n4268", + "loc": [-85.620262, 41.954588] + }, + "n4269": { + "id": "n4269", + "loc": [-85.620261, 41.954516] + }, + "n427": { + "id": "n427", + "loc": [-85.634177, 41.943585] + }, + "n4270": { + "id": "n4270", + "loc": [-85.620282, 41.954516] + }, + "n4271": { + "id": "n4271", + "loc": [-85.620282, 41.954373] + }, + "n4272": { + "id": "n4272", + "loc": [-85.620378, 41.954373] + }, + "n4273": { + "id": "n4273", + "loc": [-85.620379, 41.954486] + }, + "n4274": { + "id": "n4274", + "loc": [-85.620348, 41.954486] + }, + "n4275": { + "id": "n4275", + "loc": [-85.620348, 41.954537] + }, + "n4276": { + "id": "n4276", + "loc": [-85.620359, 41.954537] + }, + "n4277": { + "id": "n4277", + "loc": [-85.620463, 41.95521] + }, + "n4278": { + "id": "n4278", + "loc": [-85.620409, 41.955273] + }, + "n4279": { + "id": "n4279", + "loc": [-85.620205, 41.955177] + }, + "n428": { + "id": "n428", + "loc": [-85.634354, 41.943484] + }, + "n4280": { + "id": "n4280", + "loc": [-85.620288, 41.955079] + }, + "n4281": { + "id": "n4281", + "loc": [-85.620379, 41.955121] + }, + "n4282": { + "id": "n4282", + "loc": [-85.620349, 41.955157] + }, + "n4283": { + "id": "n4283", + "loc": [-85.620083, 41.955101] + }, + "n4284": { + "id": "n4284", + "loc": [-85.620083, 41.954986] + }, + "n4285": { + "id": "n4285", + "loc": [-85.620016, 41.954986] + }, + "n4286": { + "id": "n4286", + "loc": [-85.620016, 41.954999] + }, + "n4287": { + "id": "n4287", + "loc": [-85.619941, 41.954999] + }, + "n4288": { + "id": "n4288", + "loc": [-85.619941, 41.954988] + }, + "n4289": { + "id": "n4289", + "loc": [-85.619815, 41.954988] + }, + "n429": { + "id": "n429", + "loc": [-85.638577, 41.943212] + }, + "n4290": { + "id": "n4290", + "loc": [-85.619815, 41.955075] + }, + "n4291": { + "id": "n4291", + "loc": [-85.619948, 41.955075] + }, + "n4292": { + "id": "n4292", + "loc": [-85.619948, 41.955082] + }, + "n4293": { + "id": "n4293", + "loc": [-85.620004, 41.955082] + }, + "n4294": { + "id": "n4294", + "loc": [-85.620004, 41.955101] + }, + "n4295": { + "id": "n4295", + "loc": [-85.619293, 41.955127] + }, + "n4296": { + "id": "n4296", + "loc": [-85.619208, 41.955124] + }, + "n4297": { + "id": "n4297", + "loc": [-85.619212, 41.955061] + }, + "n4298": { + "id": "n4298", + "loc": [-85.619297, 41.955064] + }, + "n4299": { + "id": "n4299", + "loc": [-85.619068, 41.954936] + }, + "n43": { + "id": "n43", + "loc": [-85.637047, 41.943054] + }, + "n430": { + "id": "n430", + "loc": [-85.638576, 41.943219] + }, + "n4300": { + "id": "n4300", + "loc": [-85.619003, 41.954936] + }, + "n4301": { + "id": "n4301", + "loc": [-85.619004, 41.955003] + }, + "n4302": { + "id": "n4302", + "loc": [-85.618994, 41.955003] + }, + "n4303": { + "id": "n4303", + "loc": [-85.618994, 41.955016] + }, + "n4304": { + "id": "n4304", + "loc": [-85.618973, 41.955016] + }, + "n4305": { + "id": "n4305", + "loc": [-85.618973, 41.955071] + }, + "n4306": { + "id": "n4306", + "loc": [-85.619061, 41.955071] + }, + "n4307": { + "id": "n4307", + "loc": [-85.61906, 41.955024] + }, + "n4308": { + "id": "n4308", + "loc": [-85.619105, 41.955024] + }, + "n4309": { + "id": "n4309", + "loc": [-85.619105, 41.954956] + }, + "n431": { + "id": "n431", + "loc": [-85.638653, 41.943078] + }, + "n4310": { + "id": "n4310", + "loc": [-85.619068, 41.954956] + }, + "n4311": { + "id": "n4311", + "loc": [-85.618294, 41.954596] + }, + "n4312": { + "id": "n4312", + "loc": [-85.618235, 41.954602] + }, + "n4313": { + "id": "n4313", + "loc": [-85.618222, 41.954535] + }, + "n4314": { + "id": "n4314", + "loc": [-85.618281, 41.954529] + }, + "n4315": { + "id": "n4315", + "loc": [-85.618593, 41.954556] + }, + "n4316": { + "id": "n4316", + "loc": [-85.618551, 41.954565] + }, + "n4317": { + "id": "n4317", + "loc": [-85.618545, 41.954552] + }, + "n4318": { + "id": "n4318", + "loc": [-85.618493, 41.954563] + }, + "n4319": { + "id": "n4319", + "loc": [-85.618449, 41.954455] + }, + "n432": { + "id": "n432", + "loc": [-85.638654, 41.943148] + }, + "n4320": { + "id": "n4320", + "loc": [-85.618544, 41.954434] + }, + "n4321": { + "id": "n4321", + "loc": [-85.622545, 41.950775] + }, + "n4322": { + "id": "n4322", + "loc": [-85.622546, 41.950843] + }, + "n4323": { + "id": "n4323", + "loc": [-85.622503, 41.950844] + }, + "n4324": { + "id": "n4324", + "loc": [-85.622503, 41.950853] + }, + "n4325": { + "id": "n4325", + "loc": [-85.622479, 41.950853] + }, + "n4326": { + "id": "n4326", + "loc": [-85.622478, 41.950843] + }, + "n4327": { + "id": "n4327", + "loc": [-85.622425, 41.950843] + }, + "n4328": { + "id": "n4328", + "loc": [-85.622425, 41.950808] + }, + "n4329": { + "id": "n4329", + "loc": [-85.622366, 41.950809] + }, + "n433": { + "id": "n433", + "loc": [-85.638387, 41.943151] + }, + "n4330": { + "id": "n4330", + "loc": [-85.622364, 41.950673] + }, + "n4331": { + "id": "n4331", + "loc": [-85.622448, 41.950673] + }, + "n4332": { + "id": "n4332", + "loc": [-85.622449, 41.950732] + }, + "n4333": { + "id": "n4333", + "loc": [-85.622479, 41.950731] + }, + "n4334": { + "id": "n4334", + "loc": [-85.622479, 41.950775] + }, + "n4335": { + "id": "n4335", + "loc": [-85.621909, 41.950641] + }, + "n4336": { + "id": "n4336", + "loc": [-85.621864, 41.950641] + }, + "n4337": { + "id": "n4337", + "loc": [-85.621865, 41.950567] + }, + "n4338": { + "id": "n4338", + "loc": [-85.62191, 41.950567] + }, + "n4339": { + "id": "n4339", + "loc": [-85.621787, 41.950829] + }, + "n434": { + "id": "n434", + "loc": [-85.638386, 41.94308] + }, + "n4340": { + "id": "n4340", + "loc": [-85.621786, 41.950775] + }, + "n4341": { + "id": "n4341", + "loc": [-85.621588, 41.950776] + }, + "n4342": { + "id": "n4342", + "loc": [-85.621589, 41.950848] + }, + "n4343": { + "id": "n4343", + "loc": [-85.621737, 41.950847] + }, + "n4344": { + "id": "n4344", + "loc": [-85.621737, 41.950829] + }, + "n4345": { + "id": "n4345", + "loc": [-85.621509, 41.950846] + }, + "n4346": { + "id": "n4346", + "loc": [-85.621399, 41.950846] + }, + "n4347": { + "id": "n4347", + "loc": [-85.621398, 41.95073] + }, + "n4348": { + "id": "n4348", + "loc": [-85.621509, 41.95073] + }, + "n4349": { + "id": "n4349", + "loc": [-85.621217, 41.950841] + }, + "n435": { + "id": "n435", + "loc": [-85.634427, 41.943533] + }, + "n4350": { + "id": "n4350", + "loc": [-85.6211, 41.95084] + }, + "n4351": { + "id": "n4351", + "loc": [-85.6211, 41.950777] + }, + "n4352": { + "id": "n4352", + "loc": [-85.621218, 41.950778] + }, + "n4353": { + "id": "n4353", + "loc": [-85.621055, 41.950764] + }, + "n4354": { + "id": "n4354", + "loc": [-85.621054, 41.950826] + }, + "n4355": { + "id": "n4355", + "loc": [-85.620988, 41.950826] + }, + "n4356": { + "id": "n4356", + "loc": [-85.620988, 41.950843] + }, + "n4357": { + "id": "n4357", + "loc": [-85.620842, 41.950843] + }, + "n4358": { + "id": "n4358", + "loc": [-85.620842, 41.950764] + }, + "n4359": { + "id": "n4359", + "loc": [-85.620825, 41.950922] + }, + "n436": { + "id": "n436", + "loc": [-85.63428, 41.943229] + }, + "n4360": { + "id": "n4360", + "loc": [-85.620824, 41.950553] + }, + "n4361": { + "id": "n4361", + "loc": [-85.620543, 41.950771] + }, + "n4362": { + "id": "n4362", + "loc": [-85.620431, 41.950772] + }, + "n4363": { + "id": "n4363", + "loc": [-85.62043, 41.950585] + }, + "n4364": { + "id": "n4364", + "loc": [-85.620542, 41.950585] + }, + "n4365": { + "id": "n4365", + "loc": [-85.62068, 41.950505] + }, + "n4366": { + "id": "n4366", + "loc": [-85.620681, 41.950552] + }, + "n4367": { + "id": "n4367", + "loc": [-85.620589, 41.950553] + }, + "n4368": { + "id": "n4368", + "loc": [-85.620588, 41.950506] + }, + "n4369": { + "id": "n4369", + "loc": [-85.620539, 41.950407] + }, + "n437": { + "id": "n437", + "loc": [-85.634499, 41.943461] + }, + "n4370": { + "id": "n4370", + "loc": [-85.62054, 41.950504] + }, + "n4371": { + "id": "n4371", + "loc": [-85.620416, 41.950504] + }, + "n4372": { + "id": "n4372", + "loc": [-85.620416, 41.950408] + }, + "n4373": { + "id": "n4373", + "loc": [-85.620742, 41.95038] + }, + "n4374": { + "id": "n4374", + "loc": [-85.620527, 41.95038] + }, + "n4375": { + "id": "n4375", + "loc": [-85.620528, 41.950408] + }, + "n4376": { + "id": "n4376", + "loc": [-85.622449, 41.950373] + }, + "n4377": { + "id": "n4377", + "loc": [-85.622452, 41.950397] + }, + "n4378": { + "id": "n4378", + "loc": [-85.622336, 41.950404] + }, + "n4379": { + "id": "n4379", + "loc": [-85.622333, 41.950379] + }, + "n438": { + "id": "n438", + "loc": [-85.634514, 41.943486] + }, + "n4380": { + "id": "n4380", + "loc": [-85.622263, 41.950324] + }, + "n4381": { + "id": "n4381", + "loc": [-85.622261, 41.950256] + }, + "n4382": { + "id": "n4382", + "loc": [-85.62236, 41.950254] + }, + "n4383": { + "id": "n4383", + "loc": [-85.62236, 41.95027] + }, + "n4384": { + "id": "n4384", + "loc": [-85.622402, 41.950281] + }, + "n4385": { + "id": "n4385", + "loc": [-85.622403, 41.9503] + }, + "n4386": { + "id": "n4386", + "loc": [-85.622439, 41.950299] + }, + "n4387": { + "id": "n4387", + "loc": [-85.62244, 41.950334] + }, + "n4388": { + "id": "n4388", + "loc": [-85.622414, 41.950335] + }, + "n4389": { + "id": "n4389", + "loc": [-85.622414, 41.95036] + }, + "n439": { + "id": "n439", + "loc": [-85.63452, 41.943511] + }, + "n4390": { + "id": "n4390", + "loc": [-85.62231, 41.950362] + }, + "n4391": { + "id": "n4391", + "loc": [-85.622309, 41.950323] + }, + "n4392": { + "id": "n4392", + "loc": [-85.622015, 41.950539] + }, + "n4393": { + "id": "n4393", + "loc": [-85.621909, 41.95054] + }, + "n4394": { + "id": "n4394", + "loc": [-85.621909, 41.950472] + }, + "n4395": { + "id": "n4395", + "loc": [-85.622015, 41.950471] + }, + "n4396": { + "id": "n4396", + "loc": [-85.62199, 41.950439] + }, + "n4397": { + "id": "n4397", + "loc": [-85.621956, 41.95044] + }, + "n4398": { + "id": "n4398", + "loc": [-85.621955, 41.950405] + }, + "n4399": { + "id": "n4399", + "loc": [-85.621988, 41.950404] + }, + "n44": { + "id": "n44", + "loc": [-85.636799, 41.943055] + }, + "n440": { + "id": "n440", + "loc": [-85.63451, 41.943534] + }, + "n4400": { + "id": "n4400", + "loc": [-85.621668, 41.950418] + }, + "n4401": { + "id": "n4401", + "loc": [-85.621667, 41.950343] + }, + "n4402": { + "id": "n4402", + "loc": [-85.621745, 41.950342] + }, + "n4403": { + "id": "n4403", + "loc": [-85.621744, 41.950306] + }, + "n4404": { + "id": "n4404", + "loc": [-85.621764, 41.950306] + }, + "n4405": { + "id": "n4405", + "loc": [-85.621763, 41.950254] + }, + "n4406": { + "id": "n4406", + "loc": [-85.621861, 41.950253] + }, + "n4407": { + "id": "n4407", + "loc": [-85.621861, 41.950274] + }, + "n4408": { + "id": "n4408", + "loc": [-85.621896, 41.950273] + }, + "n4409": { + "id": "n4409", + "loc": [-85.621898, 41.950389] + }, + "n441": { + "id": "n441", + "loc": [-85.634483, 41.943556] + }, + "n4410": { + "id": "n4410", + "loc": [-85.621843, 41.95039] + }, + "n4411": { + "id": "n4411", + "loc": [-85.621843, 41.950425] + }, + "n4412": { + "id": "n4412", + "loc": [-85.621789, 41.950425] + }, + "n4413": { + "id": "n4413", + "loc": [-85.621789, 41.950386] + }, + "n4414": { + "id": "n4414", + "loc": [-85.621752, 41.950387] + }, + "n4415": { + "id": "n4415", + "loc": [-85.621753, 41.950417] + }, + "n4416": { + "id": "n4416", + "loc": [-85.621556, 41.950562] + }, + "n4417": { + "id": "n4417", + "loc": [-85.621552, 41.950217] + }, + "n4418": { + "id": "n4418", + "loc": [-85.621788, 41.950562] + }, + "n4419": { + "id": "n4419", + "loc": [-85.621155, 41.950562] + }, + "n442": { + "id": "n442", + "loc": [-85.63419, 41.943713] + }, + "n4420": { + "id": "n4420", + "loc": [-85.622473, 41.950551] + }, + "n4421": { + "id": "n4421", + "loc": [-85.622043, 41.950551] + }, + "n4422": { + "id": "n4422", + "loc": [-85.62142, 41.950454] + }, + "n4423": { + "id": "n4423", + "loc": [-85.621315, 41.950455] + }, + "n4424": { + "id": "n4424", + "loc": [-85.621313, 41.950311] + }, + "n4425": { + "id": "n4425", + "loc": [-85.621388, 41.950311] + }, + "n4426": { + "id": "n4426", + "loc": [-85.621387, 41.950261] + }, + "n4427": { + "id": "n4427", + "loc": [-85.621468, 41.95026] + }, + "n4428": { + "id": "n4428", + "loc": [-85.621468, 41.950271] + }, + "n4429": { + "id": "n4429", + "loc": [-85.621503, 41.95027] + }, + "n443": { + "id": "n443", + "loc": [-85.634462, 41.943294] + }, + "n4430": { + "id": "n4430", + "loc": [-85.621505, 41.950353] + }, + "n4431": { + "id": "n4431", + "loc": [-85.621483, 41.950354] + }, + "n4432": { + "id": "n4432", + "loc": [-85.621483, 41.950392] + }, + "n4433": { + "id": "n4433", + "loc": [-85.621419, 41.950393] + }, + "n4434": { + "id": "n4434", + "loc": [-85.621213, 41.95039] + }, + "n4435": { + "id": "n4435", + "loc": [-85.621127, 41.950391] + }, + "n4436": { + "id": "n4436", + "loc": [-85.621126, 41.950357] + }, + "n4437": { + "id": "n4437", + "loc": [-85.621094, 41.950357] + }, + "n4438": { + "id": "n4438", + "loc": [-85.621094, 41.950391] + }, + "n4439": { + "id": "n4439", + "loc": [-85.620977, 41.950392] + }, + "n444": { + "id": "n444", + "loc": [-85.634298, 41.943389] + }, + "n4440": { + "id": "n4440", + "loc": [-85.620975, 41.950278] + }, + "n4441": { + "id": "n4441", + "loc": [-85.621087, 41.950277] + }, + "n4442": { + "id": "n4442", + "loc": [-85.621088, 41.950331] + }, + "n4443": { + "id": "n4443", + "loc": [-85.621211, 41.950312] + }, + "n4444": { + "id": "n4444", + "loc": [-85.621104, 41.950313] + }, + "n4445": { + "id": "n4445", + "loc": [-85.621105, 41.950331] + }, + "n4446": { + "id": "n4446", + "loc": [-85.620706, 41.950328] + }, + "n4447": { + "id": "n4447", + "loc": [-85.620606, 41.950327] + }, + "n4448": { + "id": "n4448", + "loc": [-85.620607, 41.950261] + }, + "n4449": { + "id": "n4449", + "loc": [-85.620707, 41.950262] + }, + "n445": { + "id": "n445", + "loc": [-85.634527, 41.943623] + }, + "n4450": { + "id": "n4450", + "loc": [-85.620599, 41.950336] + }, + "n4451": { + "id": "n4451", + "loc": [-85.620559, 41.950336] + }, + "n4452": { + "id": "n4452", + "loc": [-85.620559, 41.950299] + }, + "n4453": { + "id": "n4453", + "loc": [-85.620599, 41.950299] + }, + "n4454": { + "id": "n4454", + "loc": [-85.620545, 41.950357] + }, + "n4455": { + "id": "n4455", + "loc": [-85.620418, 41.950357] + }, + "n4456": { + "id": "n4456", + "loc": [-85.620417, 41.950257] + }, + "n4457": { + "id": "n4457", + "loc": [-85.620544, 41.950256] + }, + "n4458": { + "id": "n4458", + "loc": [-85.620246, 41.950131], + "tags": { + "highway": "crossing" + } + }, + "n4459": { + "id": "n4459", + "loc": [-85.620252, 41.950956] + }, + "n446": { + "id": "n446", + "loc": [-85.634608, 41.943577] + }, + "n4460": { + "id": "n4460", + "loc": [-85.620245, 41.950179] + }, + "n4461": { + "id": "n4461", + "loc": [-85.620246, 41.950088] + }, + "n4462": { + "id": "n4462", + "loc": [-85.620251, 41.950885] + }, + "n4463": { + "id": "n4463", + "loc": [-85.620103, 41.950884], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n4464": { + "id": "n4464", + "loc": [-85.619992, 41.950884] + }, + "n4465": { + "id": "n4465", + "loc": [-85.619704, 41.951008] + }, + "n4466": { + "id": "n4466", + "loc": [-85.619599, 41.951122] + }, + "n4467": { + "id": "n4467", + "loc": [-85.619264, 41.951486] + }, + "n4468": { + "id": "n4468", + "loc": [-85.619179, 41.951573], + "tags": { + "highway": "crossing" + } + }, + "n4469": { + "id": "n4469", + "loc": [-85.620251, 41.950999], + "tags": { + "highway": "crossing" + } + }, + "n447": { + "id": "n447", + "loc": [-85.634555, 41.943531] + }, + "n4470": { + "id": "n4470", + "loc": [-85.620249, 41.951066] + }, + "n4471": { + "id": "n4471", + "loc": [-85.620256, 41.951374] + }, + "n4472": { + "id": "n4472", + "loc": [-85.620249, 41.951389] + }, + "n4473": { + "id": "n4473", + "loc": [-85.620249, 41.951407] + }, + "n4474": { + "id": "n4474", + "loc": [-85.620255, 41.951423] + }, + "n4475": { + "id": "n4475", + "loc": [-85.62026, 41.951853] + }, + "n4476": { + "id": "n4476", + "loc": [-85.620262, 41.951894], + "tags": { + "highway": "crossing" + } + }, + "n4477": { + "id": "n4477", + "loc": [-85.620265, 41.951957] + }, + "n4478": { + "id": "n4478", + "loc": [-85.620262, 41.952135] + }, + "n4479": { + "id": "n4479", + "loc": [-85.620241, 41.952424] + }, + "n448": { + "id": "n448", + "loc": [-85.634555, 41.943482] + }, + "n4480": { + "id": "n4480", + "loc": [-85.620213, 41.952583] + }, + "n4481": { + "id": "n4481", + "loc": [-85.620158, 41.952754] + }, + "n4482": { + "id": "n4482", + "loc": [-85.620065, 41.952942] + }, + "n4483": { + "id": "n4483", + "loc": [-85.619753, 41.953439] + }, + "n4484": { + "id": "n4484", + "loc": [-85.619605, 41.953626] + }, + "n4485": { + "id": "n4485", + "loc": [-85.619381, 41.953834] + }, + "n4486": { + "id": "n4486", + "loc": [-85.619069, 41.954066] + }, + "n4487": { + "id": "n4487", + "loc": [-85.618674, 41.95429] + }, + "n4488": { + "id": "n4488", + "loc": [-85.621816, 41.952389] + }, + "n4489": { + "id": "n4489", + "loc": [-85.6217, 41.952386] + }, + "n449": { + "id": "n449", + "loc": [-85.634509, 41.943427] + }, + "n4490": { + "id": "n4490", + "loc": [-85.621705, 41.952306] + }, + "n4491": { + "id": "n4491", + "loc": [-85.621821, 41.95231] + }, + "n4492": { + "id": "n4492", + "loc": [-85.621819, 41.952272] + }, + "n4493": { + "id": "n4493", + "loc": [-85.621778, 41.952272] + }, + "n4494": { + "id": "n4494", + "loc": [-85.621778, 41.952199] + }, + "n4495": { + "id": "n4495", + "loc": [-85.621818, 41.952199] + }, + "n4496": { + "id": "n4496", + "loc": [-85.621754, 41.952281] + }, + "n4497": { + "id": "n4497", + "loc": [-85.621701, 41.95228] + }, + "n4498": { + "id": "n4498", + "loc": [-85.621702, 41.952197] + }, + "n4499": { + "id": "n4499", + "loc": [-85.621755, 41.952197] + }, + "n45": { + "id": "n45", + "loc": [-85.636791, 41.942792] + }, + "n450": { + "id": "n450", + "loc": [-85.63453, 41.943365] + }, + "n4500": { + "id": "n4500", + "loc": [-85.628201, 41.954694], + "tags": { + "highway": "stop", + "stop": "all" + } + }, + "n4501": { + "id": "n4501", + "loc": [-85.627921, 41.954783], + "tags": { + "highway": "stop", + "stop": "all" + } + }, + "n4502": { + "id": "n4502", + "loc": [-85.62775, 41.954696], + "tags": { + "highway": "stop", + "stop": "all" + } + }, + "n4503": { + "id": "n4503", + "loc": [-85.628046, 41.954591], + "tags": { + "highway": "stop", + "stop": "all" + } + }, + "n4504": { + "id": "n4504", + "loc": [-85.631074, 41.957428], + "tags": { + "highway": "stop" + } + }, + "n4505": { + "id": "n4505", + "loc": [-85.630768, 41.957429], + "tags": { + "highway": "stop" + } + }, + "n4506": { + "id": "n4506", + "loc": [-85.629888, 41.957432], + "tags": { + "highway": "stop" + } + }, + "n4507": { + "id": "n4507", + "loc": [-85.629565, 41.957433], + "tags": { + "highway": "stop" + } + }, + "n4508": { + "id": "n4508", + "loc": [-85.629559, 41.957343] + }, + "n4509": { + "id": "n4509", + "loc": [-85.628723, 41.95735] + }, + "n451": { + "id": "n451", + "loc": [-85.634356, 41.943468] + }, + "n4510": { + "id": "n4510", + "loc": [-85.62842, 41.957515] + }, + "n4511": { + "id": "n4511", + "loc": [-85.627561, 41.957525] + }, + "n4512": { + "id": "n4512", + "loc": [-85.630323, 41.957508] + }, + "n4513": { + "id": "n4513", + "loc": [-85.630811, 41.957506] + }, + "n4514": { + "id": "n4514", + "loc": [-85.630839, 41.960874] + }, + "n4515": { + "id": "n4515", + "loc": [-85.631035, 41.957506] + }, + "n4516": { + "id": "n4516", + "loc": [-85.632027, 41.9575] + }, + "n4517": { + "id": "n4517", + "loc": [-85.631038, 41.958066] + }, + "n4518": { + "id": "n4518", + "loc": [-85.630787, 41.954769] + }, + "n4519": { + "id": "n4519", + "loc": [-85.630806, 41.957342] + }, + "n452": { + "id": "n452", + "loc": [-85.634123, 41.943596] + }, + "n4520": { + "id": "n4520", + "loc": [-85.630809, 41.957428], + "tags": { + "highway": "crossing" + } + }, + "n4521": { + "id": "n4521", + "loc": [-85.630912, 41.957506], + "tags": { + "highway": "crossing" + } + }, + "n4522": { + "id": "n4522", + "loc": [-85.631033, 41.957428], + "tags": { + "highway": "crossing" + } + }, + "n4523": { + "id": "n4523", + "loc": [-85.631032, 41.957341] + }, + "n4524": { + "id": "n4524", + "loc": [-85.63091, 41.957341], + "tags": { + "highway": "crossing" + } + }, + "n4525": { + "id": "n4525", + "loc": [-85.631027, 41.95597] + }, + "n4526": { + "id": "n4526", + "loc": [-85.631027, 41.955913], + "tags": { + "highway": "crossing" + } + }, + "n4527": { + "id": "n4527", + "loc": [-85.631025, 41.955873] + }, + "n4528": { + "id": "n4528", + "loc": [-85.631073, 41.955913], + "tags": { + "highway": "stop" + } + }, + "n4529": { + "id": "n4529", + "loc": [-85.631007, 41.954766] + }, + "n453": { + "id": "n453", + "loc": [-85.634709, 41.943926] + }, + "n4530": { + "id": "n4530", + "loc": [-85.630881, 41.954768], + "tags": { + "highway": "crossing" + } + }, + "n4531": { + "id": "n4531", + "loc": [-85.628022, 41.954776] + }, + "n4532": { + "id": "n4532", + "loc": [-85.627385, 41.95584] + }, + "n4533": { + "id": "n4533", + "loc": [-85.627329, 41.955937] + }, + "n4534": { + "id": "n4534", + "loc": [-85.626583, 41.957153] + }, + "n4535": { + "id": "n4535", + "loc": [-85.629675, 41.954564], + "tags": { + "highway": "stop" + } + }, + "n4536": { + "id": "n4536", + "loc": [-85.630881, 41.954806], + "tags": { + "highway": "stop" + } + }, + "n4537": { + "id": "n4537", + "loc": [-85.630879, 41.954564], + "tags": { + "highway": "stop" + } + }, + "n4538": { + "id": "n4538", + "loc": [-85.630784, 41.954682], + "tags": { + "highway": "crossing" + } + }, + "n4539": { + "id": "n4539", + "loc": [-85.63078, 41.954595] + }, + "n454": { + "id": "n454", + "loc": [-85.63525, 41.943855] + }, + "n4540": { + "id": "n4540", + "loc": [-85.630879, 41.954595], + "tags": { + "highway": "crossing" + } + }, + "n4541": { + "id": "n4541", + "loc": [-85.631004, 41.954594] + }, + "n4542": { + "id": "n4542", + "loc": [-85.631006, 41.954681], + "tags": { + "highway": "crossing" + } + }, + "n4543": { + "id": "n4543", + "loc": [-85.631045, 41.959036], + "tags": { + "highway": "stop" + } + }, + "n4544": { + "id": "n4544", + "loc": [-85.632071, 41.959029], + "tags": { + "highway": "stop" + } + }, + "n4545": { + "id": "n4545", + "loc": [-85.632257, 41.959027], + "tags": { + "highway": "stop" + } + }, + "n4546": { + "id": "n4546", + "loc": [-85.631966, 41.957427], + "tags": { + "highway": "stop" + } + }, + "n4547": { + "id": "n4547", + "loc": [-85.632297, 41.957426], + "tags": { + "highway": "stop" + } + }, + "n4548": { + "id": "n4548", + "loc": [-85.631976, 41.955911], + "tags": { + "highway": "give_way" + } + }, + "n4549": { + "id": "n4549", + "loc": [-85.632272, 41.955911], + "tags": { + "highway": "give_way" + } + }, + "n455": { + "id": "n455", + "loc": [-85.635224, 41.943869] + }, + "n4550": { + "id": "n4550", + "loc": [-85.632097, 41.954805], + "tags": { + "highway": "stop" + } + }, + "n4551": { + "id": "n4551", + "loc": [-85.632094, 41.954566], + "tags": { + "highway": "stop" + } + }, + "n4552": { + "id": "n4552", + "loc": [-85.626519, 41.957256] + }, + "n4553": { + "id": "n4553", + "loc": [-85.625334, 41.959165] + }, + "n4554": { + "id": "n4554", + "loc": [-85.626483, 41.95806] + }, + "n4555": { + "id": "n4555", + "loc": [-85.626481, 41.958175] + }, + "n4556": { + "id": "n4556", + "loc": [-85.626412, 41.958174] + }, + "n4557": { + "id": "n4557", + "loc": [-85.626412, 41.958202] + }, + "n4558": { + "id": "n4558", + "loc": [-85.62628, 41.958201] + }, + "n4559": { + "id": "n4559", + "loc": [-85.626283, 41.958057] + }, + "n456": { + "id": "n456", + "loc": [-85.638854, 41.943104] + }, + "n4560": { + "id": "n4560", + "loc": [-85.622763, 41.95109], + "tags": { + "highway": "stop" + } + }, + "n4561": { + "id": "n4561", + "loc": [-85.622858, 41.950876], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4562": { + "id": "n4562", + "loc": [-85.624073, 41.950393] + }, + "n4563": { + "id": "n4563", + "loc": [-85.624077, 41.950924] + }, + "n4564": { + "id": "n4564", + "loc": [-85.624599, 41.950984], + "tags": { + "highway": "stop" + } + }, + "n4565": { + "id": "n4565", + "loc": [-85.624831, 41.95119], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4566": { + "id": "n4566", + "loc": [-85.624437, 41.952568], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4567": { + "id": "n4567", + "loc": [-85.624077, 41.954606], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4568": { + "id": "n4568", + "loc": [-85.624263, 41.954888] + }, + "n4569": { + "id": "n4569", + "loc": [-85.624206, 41.954919] + }, + "n457": { + "id": "n457", + "loc": [-85.635186, 41.943901] + }, + "n4570": { + "id": "n4570", + "loc": [-85.624154, 41.954865] + }, + "n4571": { + "id": "n4571", + "loc": [-85.624212, 41.954835] + }, + "n4572": { + "id": "n4572", + "loc": [-85.622442, 41.954401], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4573": { + "id": "n4573", + "loc": [-85.619751, 41.954658], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4574": { + "id": "n4574", + "loc": [-85.617785, 41.954534] + }, + "n4575": { + "id": "n4575", + "loc": [-85.617416, 41.954721] + }, + "n4576": { + "id": "n4576", + "loc": [-85.617662, 41.95474] + }, + "n4577": { + "id": "n4577", + "loc": [-85.618014, 41.954717] + }, + "n4578": { + "id": "n4578", + "loc": [-85.617886, 41.954671] + }, + "n4579": { + "id": "n4579", + "loc": [-85.617831, 41.954612] + }, + "n458": { + "id": "n458", + "loc": [-85.635162, 41.943917] + }, + "n4580": { + "id": "n4580", + "loc": [-85.617968, 41.954752] + }, + "n4581": { + "id": "n4581", + "loc": [-85.617815, 41.954752] + }, + "n4582": { + "id": "n4582", + "loc": [-85.617938, 41.954695] + }, + "n4583": { + "id": "n4583", + "loc": [-85.617856, 41.954642], + "tags": { + "highway": "stop" + } + }, + "n4584": { + "id": "n4584", + "loc": [-85.619116, 41.954164], + "tags": { + "man_made": "flagpole" + } + }, + "n4585": { + "id": "n4585", + "loc": [-85.619569, 41.953255], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4586": { + "id": "n4586", + "loc": [-85.620352, 41.951894], + "tags": { + "highway": "stop" + } + }, + "n4587": { + "id": "n4587", + "loc": [-85.620485, 41.951948], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4588": { + "id": "n4588", + "loc": [-85.620316, 41.950999], + "tags": { + "highway": "stop" + } + }, + "n4589": { + "id": "n4589", + "loc": [-85.620311, 41.950131], + "tags": { + "highway": "stop" + } + }, + "n459": { + "id": "n459", + "loc": [-85.634856, 41.943905] + }, + "n4590": { + "id": "n4590", + "loc": [-85.620374, 41.95018], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4591": { + "id": "n4591", + "loc": [-85.620301, 41.949239], + "tags": { + "highway": "stop" + } + }, + "n4592": { + "id": "n4592", + "loc": [-85.620278, 41.947443], + "tags": { + "highway": "stop" + } + }, + "n4593": { + "id": "n4593", + "loc": [-85.619844, 41.947444], + "tags": { + "highway": "stop" + } + }, + "n4594": { + "id": "n4594", + "loc": [-85.620191, 41.947352], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4595": { + "id": "n4595", + "loc": [-85.622819, 41.947493], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4596": { + "id": "n4596", + "loc": [-85.622744, 41.947541], + "tags": { + "highway": "stop" + } + }, + "n4597": { + "id": "n4597", + "loc": [-85.622739, 41.947316], + "tags": { + "highway": "stop" + } + }, + "n4598": { + "id": "n4598", + "loc": [-85.622909, 41.948333], + "tags": { + "highway": "give_way" + } + }, + "n4599": { + "id": "n4599", + "loc": [-85.622593, 41.948333], + "tags": { + "highway": "give_way" + } + }, + "n46": { + "id": "n46", + "loc": [-85.637131, 41.94307] + }, + "n460": { + "id": "n460", + "loc": [-85.634811, 41.944007] + }, + "n4600": { + "id": "n4600", + "loc": [-85.622835, 41.948387], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4601": { + "id": "n4601", + "loc": [-85.622768, 41.949125], + "tags": { + "highway": "stop" + } + }, + "n4602": { + "id": "n4602", + "loc": [-85.622769, 41.949325], + "tags": { + "highway": "stop" + } + }, + "n4603": { + "id": "n4603", + "loc": [-85.622837, 41.949329], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4604": { + "id": "n4604", + "loc": [-85.622614, 41.950113], + "tags": { + "highway": "give_way" + } + }, + "n4605": { + "id": "n4605", + "loc": [-85.624777, 41.949219], + "tags": { + "highway": "stop" + } + }, + "n4606": { + "id": "n4606", + "loc": [-85.624849, 41.949106], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4607": { + "id": "n4607", + "loc": [-85.624858, 41.950119], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4608": { + "id": "n4608", + "loc": [-85.624752, 41.948334], + "tags": { + "highway": "give_way" + } + }, + "n4609": { + "id": "n4609", + "loc": [-85.624845, 41.948422], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n461": { + "id": "n461", + "loc": [-85.634987, 41.943112] + }, + "n4610": { + "id": "n4610", + "loc": [-85.62484, 41.947539], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4611": { + "id": "n4611", + "loc": [-85.62476, 41.947428], + "tags": { + "highway": "stop" + } + }, + "n4612": { + "id": "n4612", + "loc": [-85.620286, 41.950926] + }, + "n4613": { + "id": "n4613", + "loc": [-85.618237, 41.950963] + }, + "n4614": { + "id": "n4614", + "loc": [-85.618107, 41.950876] + }, + "n4615": { + "id": "n4615", + "loc": [-85.618131, 41.950393] + }, + "n4616": { + "id": "n4616", + "loc": [-85.61823, 41.9499] + }, + "n4617": { + "id": "n4617", + "loc": [-85.619138, 41.950212] + }, + "n4618": { + "id": "n4618", + "loc": [-85.619299, 41.950388] + }, + "n4619": { + "id": "n4619", + "loc": [-85.619306, 41.950897] + }, + "n462": { + "id": "n462", + "loc": [-85.634698, 41.943194] + }, + "n4620": { + "id": "n4620", + "loc": [-85.619155, 41.950958] + }, + "n4621": { + "id": "n4621", + "loc": [-85.620079, 41.947715] + }, + "n4622": { + "id": "n4622", + "loc": [-85.619674, 41.947728] + }, + "n4623": { + "id": "n4623", + "loc": [-85.619634, 41.947735] + }, + "n4624": { + "id": "n4624", + "loc": [-85.619587, 41.947756], + "tags": { + "barrier": "gate" + } + }, + "n4625": { + "id": "n4625", + "loc": [-85.61953, 41.947796] + }, + "n4626": { + "id": "n4626", + "loc": [-85.619475, 41.947847] + }, + "n4627": { + "id": "n4627", + "loc": [-85.619433, 41.947903] + }, + "n4628": { + "id": "n4628", + "loc": [-85.619402, 41.947982] + }, + "n4629": { + "id": "n4629", + "loc": [-85.619394, 41.948043] + }, + "n463": { + "id": "n463", + "loc": [-85.634632, 41.943219] + }, + "n4630": { + "id": "n4630", + "loc": [-85.619395, 41.948476] + }, + "n4631": { + "id": "n4631", + "loc": [-85.618367, 41.947452] + }, + "n4632": { + "id": "n4632", + "loc": [-85.618371, 41.947567], + "tags": { + "barrier": "gate" + } + }, + "n4633": { + "id": "n4633", + "loc": [-85.618341, 41.947622] + }, + "n4634": { + "id": "n4634", + "loc": [-85.618138, 41.94773] + }, + "n4635": { + "id": "n4635", + "loc": [-85.618078, 41.947814] + }, + "n4636": { + "id": "n4636", + "loc": [-85.618072, 41.948009] + }, + "n4637": { + "id": "n4637", + "loc": [-85.618269, 41.947666] + }, + "n4638": { + "id": "n4638", + "loc": [-85.618099, 41.947765] + }, + "n4639": { + "id": "n4639", + "loc": [-85.618378, 41.954453] + }, + "n464": { + "id": "n464", + "loc": [-85.63459, 41.943239] + }, + "n4640": { + "id": "n4640", + "loc": [-85.618198, 41.95453] + }, + "n4641": { + "id": "n4641", + "loc": [-85.618212, 41.954623] + }, + "n4642": { + "id": "n4642", + "loc": [-85.635211, 41.943103], + "tags": { + "leisure": "picnic_table" + } + }, + "n4643": { + "id": "n4643", + "loc": [-85.635345, 41.943448], + "tags": { + "leisure": "picnic_table" + } + }, + "n4644": { + "id": "n4644", + "loc": [-85.635901, 41.943353], + "tags": { + "amenity": "bench" + } + }, + "n4645": { + "id": "n4645", + "loc": [-85.635815, 41.942638], + "tags": { + "highway": "stop" + } + }, + "n4646": { + "id": "n4646", + "loc": [-85.635355, 41.942044], + "tags": { + "leisure": "picnic_table" + } + }, + "n4647": { + "id": "n4647", + "loc": [-85.635206, 41.942045], + "tags": { + "leisure": "picnic_table" + } + }, + "n4648": { + "id": "n4648", + "loc": [-85.63504, 41.941992], + "tags": { + "leisure": "picnic_table" + } + }, + "n4649": { + "id": "n4649", + "loc": [-85.635185, 41.942001] + }, + "n465": { + "id": "n465", + "loc": [-85.634555, 41.943263] + }, + "n4650": { + "id": "n4650", + "loc": [-85.635176, 41.942021] + }, + "n4651": { + "id": "n4651", + "loc": [-85.635127, 41.942008] + }, + "n4652": { + "id": "n4652", + "loc": [-85.635136, 41.941988] + }, + "n4653": { + "id": "n4653", + "loc": [-85.635, 41.941709], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4654": { + "id": "n4654", + "loc": [-85.634893, 41.941801] + }, + "n4655": { + "id": "n4655", + "loc": [-85.634937, 41.941843] + }, + "n4656": { + "id": "n4656", + "loc": [-85.634963, 41.941859] + }, + "n4657": { + "id": "n4657", + "loc": [-85.635027, 41.941904] + }, + "n4658": { + "id": "n4658", + "loc": [-85.63494, 41.94187] + }, + "n4659": { + "id": "n4659", + "loc": [-85.634951, 41.941871] + }, + "n466": { + "id": "n466", + "loc": [-85.634526, 41.943289] + }, + "n4660": { + "id": "n4660", + "loc": [-85.634753, 41.941701], + "tags": { + "amenity": "drinking_water" + } + }, + "n4661": { + "id": "n4661", + "loc": [-85.634717, 41.941804], + "tags": { + "amenity": "bench" + } + }, + "n4662": { + "id": "n4662", + "loc": [-85.634554, 41.941883], + "tags": { + "amenity": "bench" + } + }, + "n4663": { + "id": "n4663", + "loc": [-85.635002, 41.941579], + "tags": { + "amenity": "fountain" + } + }, + "n4664": { + "id": "n4664", + "loc": [-85.635258, 41.94188], + "tags": { + "amenity": "waste_basket" + } + }, + "n4665": { + "id": "n4665", + "loc": [-85.635262, 41.941581], + "tags": { + "amenity": "bench" + } + }, + "n4666": { + "id": "n4666", + "loc": [-85.635319, 41.941744], + "tags": { + "amenity": "bench" + } + }, + "n4667": { + "id": "n4667", + "loc": [-85.634702, 41.941473], + "tags": { + "amenity": "waste_basket" + } + }, + "n4668": { + "id": "n4668", + "loc": [-85.633981, 41.941966], + "tags": { + "amenity": "bench" + } + }, + "n4669": { + "id": "n4669", + "loc": [-85.63388, 41.941743] + }, + "n467": { + "id": "n467", + "loc": [-85.635163, 41.944985] + }, + "n4670": { + "id": "n4670", + "loc": [-85.633746, 41.941741] + }, + "n4671": { + "id": "n4671", + "loc": [-85.633749, 41.941664] + }, + "n4672": { + "id": "n4672", + "loc": [-85.633883, 41.941667] + }, + "n4673": { + "id": "n4673", + "loc": [-85.634283, 41.941183], + "tags": { + "leisure": "picnic_table" + } + }, + "n4674": { + "id": "n4674", + "loc": [-85.634046, 41.941102], + "tags": { + "amenity": "bbq" + } + }, + "n4675": { + "id": "n4675", + "loc": [-85.63401, 41.941093], + "tags": { + "amenity": "bbq" + } + }, + "n4676": { + "id": "n4676", + "loc": [-85.633408, 41.940862], + "tags": { + "amenity": "bench" + } + }, + "n4677": { + "id": "n4677", + "loc": [-85.633359, 41.940651], + "tags": { + "amenity": "bench" + } + }, + "n4678": { + "id": "n4678", + "loc": [-85.634109, 41.940831] + }, + "n4679": { + "id": "n4679", + "loc": [-85.63396, 41.940867] + }, + "n468": { + "id": "n468", + "loc": [-85.635095, 41.945035] + }, + "n4680": { + "id": "n4680", + "loc": [-85.633816, 41.940913] + }, + "n4681": { + "id": "n4681", + "loc": [-85.633237, 41.940455] + }, + "n4682": { + "id": "n4682", + "loc": [-85.634453, 41.940025], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4683": { + "id": "n4683", + "loc": [-85.635692, 41.940218], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4684": { + "id": "n4684", + "loc": [-85.635566, 41.940102], + "tags": { + "highway": "stop" + } + }, + "n4685": { + "id": "n4685", + "loc": [-85.635961, 41.940125], + "tags": { + "highway": "stop" + } + }, + "n4686": { + "id": "n4686", + "loc": [-85.635883, 41.94012], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n4687": { + "id": "n4687", + "loc": [-85.635883, 41.94006] + }, + "n4688": { + "id": "n4688", + "loc": [-85.635768, 41.940051], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n4689": { + "id": "n4689", + "loc": [-85.635669, 41.940043] + }, + "n469": { + "id": "n469", + "loc": [-85.634269, 41.944431] + }, + "n4690": { + "id": "n4690", + "loc": [-85.635661, 41.940107], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n4691": { + "id": "n4691", + "loc": [-85.635424, 41.941005], + "tags": { + "amenity": "fountain" + } + }, + "n4692": { + "id": "n4692", + "loc": [-85.635542, 41.941371], + "tags": { + "amenity": "bench" + } + }, + "n4693": { + "id": "n4693", + "loc": [-85.635709, 41.941341], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4694": { + "id": "n4694", + "loc": [-85.637038, 41.942513], + "tags": { + "highway": "stop" + } + }, + "n4695": { + "id": "n4695", + "loc": [-85.637174, 41.941354], + "tags": { + "highway": "stop" + } + }, + "n4696": { + "id": "n4696", + "loc": [-85.637091, 41.941273], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4697": { + "id": "n4697", + "loc": [-85.638058, 41.941346], + "tags": { + "highway": "give_way" + } + }, + "n4698": { + "id": "n4698", + "loc": [-85.638359, 41.941344], + "tags": { + "highway": "give_way" + } + }, + "n4699": { + "id": "n4699", + "loc": [-85.638288, 41.941236], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n47": { + "id": "n47", + "loc": [-85.636693, 41.943073] + }, + "n470": { + "id": "n470", + "loc": [-85.634352, 41.944376] + }, + "n4700": { + "id": "n4700", + "loc": [-85.63935, 41.94128], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4701": { + "id": "n4701", + "loc": [-85.639277, 41.941337], + "tags": { + "highway": "give_way" + } + }, + "n4702": { + "id": "n4702", + "loc": [-85.639548, 41.941334], + "tags": { + "highway": "give_way" + } + }, + "n4703": { + "id": "n4703", + "loc": [-85.642191, 41.940039] + }, + "n4704": { + "id": "n4704", + "loc": [-85.640585, 41.941263], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4705": { + "id": "n4705", + "loc": [-85.64049, 41.941327], + "tags": { + "highway": "stop" + } + }, + "n4706": { + "id": "n4706", + "loc": [-85.640803, 41.941324], + "tags": { + "highway": "stop" + } + }, + "n4707": { + "id": "n4707", + "loc": [-85.641717, 41.941317], + "tags": { + "highway": "stop" + } + }, + "n4708": { + "id": "n4708", + "loc": [-85.641846, 41.941415], + "tags": { + "highway": "stop" + } + }, + "n4709": { + "id": "n4709", + "loc": [-85.641756, 41.941392], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n471": { + "id": "n471", + "loc": [-85.634747, 41.944561], + "tags": { + "railway": "crossing" + } + }, + "n4710": { + "id": "n4710", + "loc": [-85.642014, 41.941313], + "tags": { + "highway": "stop" + } + }, + "n4711": { + "id": "n4711", + "loc": [-85.641854, 41.942455], + "tags": { + "highway": "stop" + } + }, + "n4712": { + "id": "n4712", + "loc": [-85.641859, 41.942739], + "tags": { + "highway": "stop" + } + }, + "n4713": { + "id": "n4713", + "loc": [-85.640754, 41.942707], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4714": { + "id": "n4714", + "loc": [-85.640669, 41.942716], + "tags": { + "highway": "stop" + } + }, + "n4715": { + "id": "n4715", + "loc": [-85.640664, 41.942478], + "tags": { + "highway": "stop" + } + }, + "n4716": { + "id": "n4716", + "loc": [-85.63964, 41.94274], + "tags": { + "man_made": "flagpole" + } + }, + "n4717": { + "id": "n4717", + "loc": [-85.639455, 41.942731], + "tags": { + "highway": "stop" + } + }, + "n4718": { + "id": "n4718", + "loc": [-85.63945, 41.942492], + "tags": { + "highway": "stop" + } + }, + "n4719": { + "id": "n4719", + "loc": [-85.639527, 41.942505], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n472": { + "id": "n472", + "loc": [-85.634667, 41.944613] + }, + "n4720": { + "id": "n4720", + "loc": [-85.638238, 41.942745], + "tags": { + "highway": "stop" + } + }, + "n4721": { + "id": "n4721", + "loc": [-85.638233, 41.942511], + "tags": { + "highway": "stop" + } + }, + "n4722": { + "id": "n4722", + "loc": [-85.638018, 41.94299], + "tags": { + "amenity": "waste_disposal" + } + }, + "n4723": { + "id": "n4723", + "loc": [-85.637918, 41.944152], + "tags": { + "amenity": "waste_basket" + } + }, + "n4724": { + "id": "n4724", + "loc": [-85.635902, 41.943291], + "tags": { + "leisure": "picnic_table" + } + }, + "n4725": { + "id": "n4725", + "loc": [-85.63704, 41.942741], + "tags": { + "highway": "stop" + } + }, + "n4726": { + "id": "n4726", + "loc": [-85.633467, 41.943818], + "tags": { + "highway": "stop" + } + }, + "n4727": { + "id": "n4727", + "loc": [-85.633987, 41.943531], + "tags": { + "highway": "stop" + } + }, + "n4728": { + "id": "n4728", + "loc": [-85.632154, 41.943539], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4729": { + "id": "n4729", + "loc": [-85.633567, 41.944641], + "tags": { + "amenity": "bench" + } + }, + "n473": { + "id": "n473", + "loc": [-85.634161, 41.944371] + }, + "n4730": { + "id": "n4730", + "loc": [-85.633127, 41.944574], + "tags": { + "amenity": "bench" + } + }, + "n4731": { + "id": "n4731", + "loc": [-85.633439, 41.944871], + "tags": { + "amenity": "bench" + } + }, + "n4732": { + "id": "n4732", + "loc": [-85.633676, 41.944799], + "tags": { + "amenity": "waste_basket" + } + }, + "n4733": { + "id": "n4733", + "loc": [-85.633466, 41.944862], + "tags": { + "amenity": "waste_basket" + } + }, + "n4734": { + "id": "n4734", + "loc": [-85.633451, 41.944847], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4735": { + "id": "n4735", + "loc": [-85.634202, 41.945543], + "tags": { + "amenity": "waste_basket" + } + }, + "n4736": { + "id": "n4736", + "loc": [-85.634652, 41.945472], + "tags": { + "leisure": "picnic_table" + } + }, + "n4737": { + "id": "n4737", + "loc": [-85.6347, 41.945445], + "tags": { + "leisure": "picnic_table" + } + }, + "n4738": { + "id": "n4738", + "loc": [-85.634646, 41.945662], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4739": { + "id": "n4739", + "loc": [-85.634673, 41.945687], + "tags": { + "amenity": "waste_basket" + } + }, + "n474": { + "id": "n474", + "loc": [-85.633861, 41.944117] + }, + "n4740": { + "id": "n4740", + "loc": [-85.63449, 41.945827], + "tags": { + "amenity": "clock", + "display": "analog" + } + }, + "n4741": { + "id": "n4741", + "loc": [-85.63481, 41.946056], + "tags": { + "highway": "stop" + } + }, + "n4742": { + "id": "n4742", + "loc": [-85.634814, 41.946176], + "tags": { + "amenity": "post_box" + } + }, + "n4743": { + "id": "n4743", + "loc": [-85.638744, 41.945328] + }, + "n4744": { + "id": "n4744", + "loc": [-85.63867, 41.945228], + "tags": { + "amenity": "bench" + } + }, + "n4745": { + "id": "n4745", + "loc": [-85.639487, 41.945042], + "tags": { + "highway": "stop" + } + }, + "n4746": { + "id": "n4746", + "loc": [-85.639635, 41.94387], + "tags": { + "highway": "stop" + } + }, + "n4747": { + "id": "n4747", + "loc": [-85.639549, 41.943756], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4748": { + "id": "n4748", + "loc": [-85.64055, 41.943862], + "tags": { + "highway": "stop" + } + }, + "n4749": { + "id": "n4749", + "loc": [-85.640864, 41.943859], + "tags": { + "highway": "stop" + } + }, + "n475": { + "id": "n475", + "loc": [-85.633906, 41.943535] + }, + "n4750": { + "id": "n4750", + "loc": [-85.640718, 41.945022], + "tags": { + "highway": "stop" + } + }, + "n4751": { + "id": "n4751", + "loc": [-85.640664, 41.945076], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4752": { + "id": "n4752", + "loc": [-85.641913, 41.94502], + "tags": { + "highway": "stop" + } + }, + "n4753": { + "id": "n4753", + "loc": [-85.641838, 41.945076], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4754": { + "id": "n4754", + "loc": [-85.642045, 41.94385], + "tags": { + "highway": "give_way" + } + }, + "n4755": { + "id": "n4755", + "loc": [-85.641738, 41.943852], + "tags": { + "highway": "give_way" + } + }, + "n4756": { + "id": "n4756", + "loc": [-85.642928, 41.943843], + "tags": { + "highway": "stop" + } + }, + "n4757": { + "id": "n4757", + "loc": [-85.64305, 41.943902], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n4758": { + "id": "n4758", + "loc": [-85.642986, 41.945105], + "tags": { + "highway": "stop" + } + }, + "n4759": { + "id": "n4759", + "loc": [-85.643136, 41.94502], + "tags": { + "highway": "stop" + } + }, + "n476": { + "id": "n476", + "loc": [-85.63423, 41.943692] + }, + "n477": { + "id": "n477", + "loc": [-85.635096, 41.942814] + }, + "n478": { + "id": "n478", + "loc": [-85.635058, 41.942795] + }, + "n479": { + "id": "n479", + "loc": [-85.635002, 41.94279] + }, + "n48": { + "id": "n48", + "loc": [-85.636689, 41.94276] + }, + "n480": { + "id": "n480", + "loc": [-85.634908, 41.94279] + }, + "n481": { + "id": "n481", + "loc": [-85.634478, 41.942342] + }, + "n482": { + "id": "n482", + "loc": [-85.634521, 41.942254] + }, + "n483": { + "id": "n483", + "loc": [-85.63425, 41.941819] + }, + "n484": { + "id": "n484", + "loc": [-85.634324, 41.942131] + }, + "n485": { + "id": "n485", + "loc": [-85.634211, 41.941374] + }, + "n486": { + "id": "n486", + "loc": [-85.634085, 41.940704] + }, + "n487": { + "id": "n487", + "loc": [-85.635567, 41.940944] + }, + "n488": { + "id": "n488", + "loc": [-85.635542, 41.940919] + }, + "n489": { + "id": "n489", + "loc": [-85.635514, 41.940906] + }, + "n49": { + "id": "n49", + "loc": [-85.637127, 41.942757] + }, + "n490": { + "id": "n490", + "loc": [-85.635469, 41.940896] + }, + "n491": { + "id": "n491", + "loc": [-85.635667, 41.940826] + }, + "n492": { + "id": "n492", + "loc": [-85.636197, 41.940599] + }, + "n493": { + "id": "n493", + "loc": [-85.6362, 41.940686] + }, + "n494": { + "id": "n494", + "loc": [-85.635969, 41.94069] + }, + "n495": { + "id": "n495", + "loc": [-85.635965, 41.940561] + }, + "n496": { + "id": "n496", + "loc": [-85.636031, 41.94056] + }, + "n497": { + "id": "n497", + "loc": [-85.636032, 41.940602] + }, + "n498": { + "id": "n498", + "loc": [-85.635776, 41.940583] + }, + "n499": { + "id": "n499", + "loc": [-85.63589, 41.940578] + }, + "n5": { + "id": "n5", + "loc": [-85.622744, 41.95268] + }, + "n50": { + "id": "n50", + "loc": [-85.636673, 41.943143] + }, + "n500": { + "id": "n500", + "loc": [-85.636198, 41.940578] + }, + "n501": { + "id": "n501", + "loc": [-85.636251, 41.940584] + }, + "n502": { + "id": "n502", + "loc": [-85.636279, 41.940605] + }, + "n503": { + "id": "n503", + "loc": [-85.636285, 41.940633] + }, + "n504": { + "id": "n504", + "loc": [-85.636281, 41.940662] + }, + "n505": { + "id": "n505", + "loc": [-85.636266, 41.940688] + }, + "n506": { + "id": "n506", + "loc": [-85.636236, 41.940701] + }, + "n507": { + "id": "n507", + "loc": [-85.63619, 41.940706] + }, + "n508": { + "id": "n508", + "loc": [-85.635892, 41.940707] + }, + "n509": { + "id": "n509", + "loc": [-85.635777, 41.9407] + }, + "n51": { + "id": "n51", + "loc": [-85.636673, 41.942864] + }, + "n510": { + "id": "n510", + "loc": [-85.636044, 41.940578] + }, + "n511": { + "id": "n511", + "loc": [-85.635946, 41.940578] + }, + "n512": { + "id": "n512", + "loc": [-85.636475, 41.940732] + }, + "n513": { + "id": "n513", + "loc": [-85.636475, 41.940777] + }, + "n514": { + "id": "n514", + "loc": [-85.636405, 41.940777] + }, + "n515": { + "id": "n515", + "loc": [-85.636405, 41.940732] + }, + "n516": { + "id": "n516", + "loc": [-85.636471, 41.940916] + }, + "n517": { + "id": "n517", + "loc": [-85.636471, 41.940961] + }, + "n518": { + "id": "n518", + "loc": [-85.636404, 41.940961] + }, + "n519": { + "id": "n519", + "loc": [-85.636404, 41.940916] + }, + "n52": { + "id": "n52", + "loc": [-85.636227, 41.942864] + }, + "n520": { + "id": "n520", + "loc": [-85.636286, 41.941127] + }, + "n521": { + "id": "n521", + "loc": [-85.636203, 41.941126] + }, + "n522": { + "id": "n522", + "loc": [-85.636204, 41.941083] + }, + "n523": { + "id": "n523", + "loc": [-85.636287, 41.941083] + }, + "n524": { + "id": "n524", + "loc": [-85.636124, 41.941064] + }, + "n525": { + "id": "n525", + "loc": [-85.636, 41.941065] + }, + "n526": { + "id": "n526", + "loc": [-85.636, 41.940964] + }, + "n527": { + "id": "n527", + "loc": [-85.636045, 41.940964] + }, + "n528": { + "id": "n528", + "loc": [-85.636045, 41.940928] + }, + "n529": { + "id": "n529", + "loc": [-85.636111, 41.940928] + }, + "n53": { + "id": "n53", + "loc": [-85.636227, 41.943143] + }, + "n530": { + "id": "n530", + "loc": [-85.636111, 41.940961] + }, + "n531": { + "id": "n531", + "loc": [-85.636123, 41.940961] + }, + "n532": { + "id": "n532", + "loc": [-85.636124, 41.940997] + }, + "n533": { + "id": "n533", + "loc": [-85.636164, 41.940997] + }, + "n534": { + "id": "n534", + "loc": [-85.636164, 41.941044] + }, + "n535": { + "id": "n535", + "loc": [-85.636124, 41.941044] + }, + "n536": { + "id": "n536", + "loc": [-85.636534, 41.941256] + }, + "n537": { + "id": "n537", + "loc": [-85.63645, 41.941246] + }, + "n538": { + "id": "n538", + "loc": [-85.636462, 41.941189] + }, + "n539": { + "id": "n539", + "loc": [-85.636546, 41.941199] + }, + "n54": { + "id": "n54", + "loc": [-85.636198, 41.943119] + }, + "n540": { + "id": "n540", + "loc": [-85.636802, 41.941226] + }, + "n541": { + "id": "n541", + "loc": [-85.636701, 41.941215] + }, + "n542": { + "id": "n542", + "loc": [-85.636709, 41.941174] + }, + "n543": { + "id": "n543", + "loc": [-85.636656, 41.941168] + }, + "n544": { + "id": "n544", + "loc": [-85.636666, 41.941122] + }, + "n545": { + "id": "n545", + "loc": [-85.636781, 41.941136] + }, + "n546": { + "id": "n546", + "loc": [-85.636774, 41.94117] + }, + "n547": { + "id": "n547", + "loc": [-85.636812, 41.941175] + }, + "n548": { + "id": "n548", + "loc": [-85.636803, 41.941047] + }, + "n549": { + "id": "n549", + "loc": [-85.636785, 41.941047] + }, + "n55": { + "id": "n55", + "loc": [-85.635945, 41.94312] + }, + "n550": { + "id": "n550", + "loc": [-85.636785, 41.941058] + }, + "n551": { + "id": "n551", + "loc": [-85.636644, 41.941059] + }, + "n552": { + "id": "n552", + "loc": [-85.636644, 41.941038] + }, + "n553": { + "id": "n553", + "loc": [-85.636581, 41.941039] + }, + "n554": { + "id": "n554", + "loc": [-85.636581, 41.940995] + }, + "n555": { + "id": "n555", + "loc": [-85.636746, 41.940995] + }, + "n556": { + "id": "n556", + "loc": [-85.636746, 41.940978] + }, + "n557": { + "id": "n557", + "loc": [-85.636803, 41.940978] + }, + "n558": { + "id": "n558", + "loc": [-85.636781, 41.940768] + }, + "n559": { + "id": "n559", + "loc": [-85.636783, 41.940828] + }, + "n56": { + "id": "n56", + "loc": [-85.635943, 41.942909] + }, + "n560": { + "id": "n560", + "loc": [-85.636761, 41.940828] + }, + "n561": { + "id": "n561", + "loc": [-85.636762, 41.940857] + }, + "n562": { + "id": "n562", + "loc": [-85.636641, 41.940859] + }, + "n563": { + "id": "n563", + "loc": [-85.63664, 41.940805] + }, + "n564": { + "id": "n564", + "loc": [-85.636676, 41.940804] + }, + "n565": { + "id": "n565", + "loc": [-85.636675, 41.940769] + }, + "n566": { + "id": "n566", + "loc": [-85.636733, 41.94033] + }, + "n567": { + "id": "n567", + "loc": [-85.636471, 41.940334] + }, + "n568": { + "id": "n568", + "loc": [-85.636469, 41.940262] + }, + "n569": { + "id": "n569", + "loc": [-85.636731, 41.940257] + }, + "n57": { + "id": "n57", + "loc": [-85.636227, 41.942909] + }, + "n570": { + "id": "n570", + "loc": [-85.636798, 41.940419] + }, + "n571": { + "id": "n571", + "loc": [-85.6368, 41.940524] + }, + "n572": { + "id": "n572", + "loc": [-85.63664, 41.940526] + }, + "n573": { + "id": "n573", + "loc": [-85.636638, 41.940421] + }, + "n574": { + "id": "n574", + "loc": [-85.636372, 41.940551] + }, + "n575": { + "id": "n575", + "loc": [-85.636338, 41.94055] + }, + "n576": { + "id": "n576", + "loc": [-85.636339, 41.940524] + }, + "n577": { + "id": "n577", + "loc": [-85.636373, 41.940525] + }, + "n578": { + "id": "n578", + "loc": [-85.636388, 41.940435] + }, + "n579": { + "id": "n579", + "loc": [-85.636222, 41.940436] + }, + "n58": { + "id": "n58", + "loc": [-85.63627, 41.943175] + }, + "n580": { + "id": "n580", + "loc": [-85.636222, 41.940366] + }, + "n581": { + "id": "n581", + "loc": [-85.636387, 41.940365] + }, + "n582": { + "id": "n582", + "loc": [-85.636158, 41.940482] + }, + "n583": { + "id": "n583", + "loc": [-85.635963, 41.940484] + }, + "n584": { + "id": "n584", + "loc": [-85.635961, 41.940399] + }, + "n585": { + "id": "n585", + "loc": [-85.636156, 41.940397] + }, + "n586": { + "id": "n586", + "loc": [-85.635987, 41.940314] + }, + "n587": { + "id": "n587", + "loc": [-85.635987, 41.940268] + }, + "n588": { + "id": "n588", + "loc": [-85.635968, 41.940268] + }, + "n589": { + "id": "n589", + "loc": [-85.635967, 41.940212] + }, + "n59": { + "id": "n59", + "loc": [-85.635531, 41.943176] + }, + "n590": { + "id": "n590", + "loc": [-85.636082, 41.940211] + }, + "n591": { + "id": "n591", + "loc": [-85.636083, 41.94027] + }, + "n592": { + "id": "n592", + "loc": [-85.636064, 41.94027] + }, + "n593": { + "id": "n593", + "loc": [-85.636064, 41.940313] + }, + "n594": { + "id": "n594", + "loc": [-85.638071, 41.941562] + }, + "n595": { + "id": "n595", + "loc": [-85.637953, 41.941562] + }, + "n596": { + "id": "n596", + "loc": [-85.637952, 41.941522] + }, + "n597": { + "id": "n597", + "loc": [-85.637876, 41.941523] + }, + "n598": { + "id": "n598", + "loc": [-85.637876, 41.941471] + }, + "n599": { + "id": "n599", + "loc": [-85.638035, 41.94147] + }, + "n6": { + "id": "n6", + "loc": [-85.624925, 41.950604] + }, + "n60": { + "id": "n60", + "loc": [-85.63542, 41.942883] + }, + "n600": { + "id": "n600", + "loc": [-85.638035, 41.941513] + }, + "n601": { + "id": "n601", + "loc": [-85.638071, 41.941512] + }, + "n602": { + "id": "n602", + "loc": [-85.637038, 41.942543], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n603": { + "id": "n603", + "loc": [-85.637134, 41.942542] + }, + "n604": { + "id": "n604", + "loc": [-85.638122, 41.942532] + }, + "n605": { + "id": "n605", + "loc": [-85.638121, 41.942478] + }, + "n606": { + "id": "n606", + "loc": [-85.638104, 41.941424] + }, + "n607": { + "id": "n607", + "loc": [-85.637115, 41.941438] + }, + "n608": { + "id": "n608", + "loc": [-85.637133, 41.942453] + }, + "n609": { + "id": "n609", + "loc": [-85.637429, 41.942004] + }, + "n61": { + "id": "n61", + "loc": [-85.635701, 41.942802] + }, + "n610": { + "id": "n610", + "loc": [-85.637125, 41.942004] + }, + "n611": { + "id": "n611", + "loc": [-85.637022, 41.942004] + }, + "n612": { + "id": "n612", + "loc": [-85.635952, 41.943579] + }, + "n613": { + "id": "n613", + "loc": [-85.635872, 41.943594] + }, + "n614": { + "id": "n614", + "loc": [-85.635857, 41.943551] + }, + "n615": { + "id": "n615", + "loc": [-85.635937, 41.943535] + }, + "n616": { + "id": "n616", + "loc": [-85.63671, 41.94344] + }, + "n617": { + "id": "n617", + "loc": [-85.636427, 41.94334] + }, + "n618": { + "id": "n618", + "loc": [-85.635353, 41.943279] + }, + "n619": { + "id": "n619", + "loc": [-85.635319, 41.943257] + }, + "n62": { + "id": "n62", + "loc": [-85.6358, 41.942997] + }, + "n620": { + "id": "n620", + "loc": [-85.638786, 41.943105] + }, + "n621": { + "id": "n621", + "loc": [-85.634957, 41.943146] + }, + "n622": { + "id": "n622", + "loc": [-85.635012, 41.943119] + }, + "n623": { + "id": "n623", + "loc": [-85.632409, 41.944222] + }, + "n624": { + "id": "n624", + "loc": [-85.631863, 41.944749] + }, + "n625": { + "id": "n625", + "loc": [-85.631915, 41.944722] + }, + "n626": { + "id": "n626", + "loc": [-85.631884, 41.94464] + }, + "n627": { + "id": "n627", + "loc": [-85.631792, 41.944359] + }, + "n628": { + "id": "n628", + "loc": [-85.631817, 41.944703] + }, + "n629": { + "id": "n629", + "loc": [-85.633464, 41.945787] + }, + "n63": { + "id": "n63", + "loc": [-85.635808, 41.943176] + }, + "n630": { + "id": "n630", + "loc": [-85.633583, 41.945919] + }, + "n631": { + "id": "n631", + "loc": [-85.63382, 41.945698] + }, + "n632": { + "id": "n632", + "loc": [-85.633681, 41.945571] + }, + "n633": { + "id": "n633", + "loc": [-85.634217, 41.946824] + }, + "n634": { + "id": "n634", + "loc": [-85.634271, 41.946836] + }, + "n635": { + "id": "n635", + "loc": [-85.634319, 41.94573] + }, + "n636": { + "id": "n636", + "loc": [-85.634377, 41.945672] + }, + "n637": { + "id": "n637", + "loc": [-85.634909, 41.945354] + }, + "n638": { + "id": "n638", + "loc": [-85.634726, 41.945493], + "tags": { + "artwork_type": "mural", + "tourism": "artwork" + } + }, + "n639": { + "id": "n639", + "loc": [-85.63546, 41.945612] + }, + "n64": { + "id": "n64", + "loc": [-85.63631, 41.943253] + }, + "n640": { + "id": "n640", + "loc": [-85.635561, 41.945493] + }, + "n641": { + "id": "n641", + "loc": [-85.635417, 41.945565] + }, + "n642": { + "id": "n642", + "loc": [-85.635315, 41.945583] + }, + "n643": { + "id": "n643", + "loc": [-85.63506, 41.945383] + }, + "n644": { + "id": "n644", + "loc": [-85.635198, 41.945199] + }, + "n645": { + "id": "n645", + "loc": [-85.635361, 41.94558] + }, + "n646": { + "id": "n646", + "loc": [-85.635017, 41.945066] + }, + "n647": { + "id": "n647", + "loc": [-85.634779, 41.945206] + }, + "n648": { + "id": "n648", + "loc": [-85.63425, 41.945655] + }, + "n649": { + "id": "n649", + "loc": [-85.634247, 41.945631] + }, + "n65": { + "id": "n65", + "loc": [-85.635398, 41.943259] + }, + "n650": { + "id": "n650", + "loc": [-85.634889, 41.945921] + }, + "n651": { + "id": "n651", + "loc": [-85.634889, 41.945939] + }, + "n652": { + "id": "n652", + "loc": [-85.634889, 41.945761] + }, + "n653": { + "id": "n653", + "loc": [-85.634889, 41.945778] + }, + "n654": { + "id": "n654", + "loc": [-85.635112, 41.945715] + }, + "n655": { + "id": "n655", + "loc": [-85.635025, 41.945714] + }, + "n656": { + "id": "n656", + "loc": [-85.635027, 41.945761] + }, + "n657": { + "id": "n657", + "loc": [-85.635438, 41.945665] + }, + "n658": { + "id": "n658", + "loc": [-85.635416, 41.945676] + }, + "n659": { + "id": "n659", + "loc": [-85.635401, 41.945709] + }, + "n66": { + "id": "n66", + "loc": [-85.635336, 41.943036] + }, + "n660": { + "id": "n660", + "loc": [-85.635271, 41.945566] + }, + "n661": { + "id": "n661", + "loc": [-85.636106, 41.946268] + }, + "n662": { + "id": "n662", + "loc": [-85.635867, 41.946747] + }, + "n663": { + "id": "n663", + "loc": [-85.636476, 41.946797] + }, + "n664": { + "id": "n664", + "loc": [-85.63651, 41.946796] + }, + "n665": { + "id": "n665", + "loc": [-85.635367, 41.946389] + }, + "n666": { + "id": "n666", + "loc": [-85.635367, 41.946437] + }, + "n667": { + "id": "n667", + "loc": [-85.634787, 41.946441] + }, + "n668": { + "id": "n668", + "loc": [-85.6358, 41.946243] + }, + "n669": { + "id": "n669", + "loc": [-85.635784, 41.94622] + }, + "n67": { + "id": "n67", + "loc": [-85.635911, 41.942899] + }, + "n670": { + "id": "n670", + "loc": [-85.635727, 41.946195] + }, + "n671": { + "id": "n671", + "loc": [-85.635708, 41.946588] + }, + "n672": { + "id": "n672", + "loc": [-85.635648, 41.946561] + }, + "n673": { + "id": "n673", + "loc": [-85.635624, 41.946555] + }, + "n674": { + "id": "n674", + "loc": [-85.635417, 41.946559] + }, + "n675": { + "id": "n675", + "loc": [-85.634866, 41.946561] + }, + "n676": { + "id": "n676", + "loc": [-85.634866, 41.946543] + }, + "n677": { + "id": "n677", + "loc": [-85.635085, 41.946546] + }, + "n678": { + "id": "n678", + "loc": [-85.635085, 41.946554] + }, + "n679": { + "id": "n679", + "loc": [-85.634584, 41.94488] + }, + "n68": { + "id": "n68", + "loc": [-85.635915, 41.943156] + }, + "n680": { + "id": "n680", + "loc": [-85.634557, 41.944882] + }, + "n681": { + "id": "n681", + "loc": [-85.634455, 41.944943] + }, + "n682": { + "id": "n682", + "loc": [-85.634305, 41.944968] + }, + "n683": { + "id": "n683", + "loc": [-85.634261, 41.944927] + }, + "n684": { + "id": "n684", + "loc": [-85.634132, 41.944741] + }, + "n685": { + "id": "n685", + "loc": [-85.633705, 41.944759] + }, + "n686": { + "id": "n686", + "loc": [-85.633918, 41.944616] + }, + "n687": { + "id": "n687", + "loc": [-85.633974, 41.944663] + }, + "n688": { + "id": "n688", + "loc": [-85.6336, 41.944665] + }, + "n689": { + "id": "n689", + "loc": [-85.633817, 41.944528] + }, + "n69": { + "id": "n69", + "loc": [-85.63631, 41.943157] + }, + "n690": { + "id": "n690", + "loc": [-85.633889, 41.944485] + }, + "n691": { + "id": "n691", + "loc": [-85.633931, 41.944525] + }, + "n692": { + "id": "n692", + "loc": [-85.633864, 41.944563] + }, + "n693": { + "id": "n693", + "loc": [-85.633456, 41.944524] + }, + "n694": { + "id": "n694", + "loc": [-85.633676, 41.944399] + }, + "n695": { + "id": "n695", + "loc": [-85.633352, 41.944415] + }, + "n696": { + "id": "n696", + "loc": [-85.633655, 41.944234] + }, + "n697": { + "id": "n697", + "loc": [-85.633761, 41.94435] + }, + "n698": { + "id": "n698", + "loc": [-85.633254, 41.944318] + }, + "n699": { + "id": "n699", + "loc": [-85.633472, 41.944188] + }, + "n7": { + "id": "n7", + "loc": [-85.638791, 41.943231] + }, + "n70": { + "id": "n70", + "loc": [-85.63579, 41.942967] + }, + "n700": { + "id": "n700", + "loc": [-85.633524, 41.944237] + }, + "n701": { + "id": "n701", + "loc": [-85.633583, 41.944202] + }, + "n702": { + "id": "n702", + "loc": [-85.633632, 41.944247] + }, + "n703": { + "id": "n703", + "loc": [-85.633165, 41.944228] + }, + "n704": { + "id": "n704", + "loc": [-85.633388, 41.944105] + }, + "n705": { + "id": "n705", + "loc": [-85.633117, 41.944175] + }, + "n706": { + "id": "n706", + "loc": [-85.633302, 41.944077] + }, + "n707": { + "id": "n707", + "loc": [-85.633352, 41.944126] + }, + "n708": { + "id": "n708", + "loc": [-85.633052, 41.944107] + }, + "n709": { + "id": "n709", + "loc": [-85.633237, 41.944009] + }, + "n71": { + "id": "n71", + "loc": [-85.637506, 41.942824] + }, + "n710": { + "id": "n710", + "loc": [-85.633187, 41.943955] + }, + "n711": { + "id": "n711", + "loc": [-85.633, 41.944054] + }, + "n712": { + "id": "n712", + "loc": [-85.633155, 41.944265] + }, + "n713": { + "id": "n713", + "loc": [-85.633669, 41.944765] + }, + "n714": { + "id": "n714", + "loc": [-85.634468, 41.945503] + }, + "n715": { + "id": "n715", + "loc": [-85.63455, 41.945566] + }, + "n716": { + "id": "n716", + "loc": [-85.634737, 41.945729] + }, + "n717": { + "id": "n717", + "loc": [-85.634753, 41.945752] + }, + "n718": { + "id": "n718", + "loc": [-85.634756, 41.945781] + }, + "n719": { + "id": "n719", + "loc": [-85.634758, 41.945978] + }, + "n72": { + "id": "n72", + "loc": [-85.637511, 41.943056] + }, + "n720": { + "id": "n720", + "loc": [-85.634363, 41.945548], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n721": { + "id": "n721", + "loc": [-85.634245, 41.945599] + }, + "n722": { + "id": "n722", + "loc": [-85.633474, 41.944889] + }, + "n723": { + "id": "n723", + "loc": [-85.632997, 41.944418] + }, + "n724": { + "id": "n724", + "loc": [-85.63278, 41.944183] + }, + "n725": { + "id": "n725", + "loc": [-85.63331, 41.944429] + }, + "n726": { + "id": "n726", + "loc": [-85.633568, 41.944829], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n727": { + "id": "n727", + "loc": [-85.634669, 41.94567] + }, + "n728": { + "id": "n728", + "loc": [-85.634462, 41.945787] + }, + "n729": { + "id": "n729", + "loc": [-85.634272, 41.945625] + }, + "n73": { + "id": "n73", + "loc": [-85.637361, 41.943058] + }, + "n730": { + "id": "n730", + "loc": [-85.634344, 41.945699], + "tags": { + "crossing": "zebra", + "highway": "crossing" + } + }, + "n731": { + "id": "n731", + "loc": [-85.634426, 41.945783] + }, + "n732": { + "id": "n732", + "loc": [-85.632425, 41.944137] + }, + "n733": { + "id": "n733", + "loc": [-85.632302, 41.944192] + }, + "n734": { + "id": "n734", + "loc": [-85.632762, 41.944174] + }, + "n735": { + "id": "n735", + "loc": [-85.632713, 41.944179] + }, + "n736": { + "id": "n736", + "loc": [-85.632411, 41.944327] + }, + "n737": { + "id": "n737", + "loc": [-85.632362, 41.944341] + }, + "n738": { + "id": "n738", + "loc": [-85.632236, 41.944204] + }, + "n739": { + "id": "n739", + "loc": [-85.634939, 41.942165] + }, + "n74": { + "id": "n74", + "loc": [-85.637356, 41.942825] + }, + "n740": { + "id": "n740", + "loc": [-85.635079, 41.941535] + }, + "n741": { + "id": "n741", + "loc": [-85.635112, 41.941595] + }, + "n742": { + "id": "n742", + "loc": [-85.635113, 41.941633] + }, + "n743": { + "id": "n743", + "loc": [-85.635067, 41.941652] + }, + "n744": { + "id": "n744", + "loc": [-85.634989, 41.941651] + }, + "n745": { + "id": "n745", + "loc": [-85.634921, 41.941609] + }, + "n746": { + "id": "n746", + "loc": [-85.634881, 41.941544] + }, + "n747": { + "id": "n747", + "loc": [-85.635537, 41.940939] + }, + "n748": { + "id": "n748", + "loc": [-85.635573, 41.941048] + }, + "n749": { + "id": "n749", + "loc": [-85.635453, 41.94091] + }, + "n75": { + "id": "n75", + "loc": [-85.638097, 41.942833] + }, + "n750": { + "id": "n750", + "loc": [-85.635319, 41.940943] + }, + "n751": { + "id": "n751", + "loc": [-85.637057, 41.943224] + }, + "n752": { + "id": "n752", + "loc": [-85.636989, 41.943296] + }, + "n753": { + "id": "n753", + "loc": [-85.636851, 41.943299] + }, + "n754": { + "id": "n754", + "loc": [-85.636848, 41.94322] + }, + "n755": { + "id": "n755", + "loc": [-85.636986, 41.943217] + }, + "n756": { + "id": "n756", + "loc": [-85.637569, 41.943454] + }, + "n757": { + "id": "n757", + "loc": [-85.637437, 41.943458] + }, + "n758": { + "id": "n758", + "loc": [-85.637432, 41.943384] + }, + "n759": { + "id": "n759", + "loc": [-85.637564, 41.94338] + }, + "n76": { + "id": "n76", + "loc": [-85.638098, 41.942912] + }, + "n760": { + "id": "n760", + "loc": [-85.637213, 41.943378] + }, + "n761": { + "id": "n761", + "loc": [-85.637217, 41.943435] + }, + "n762": { + "id": "n762", + "loc": [-85.637235, 41.943434] + }, + "n763": { + "id": "n763", + "loc": [-85.637237, 41.943465] + }, + "n764": { + "id": "n764", + "loc": [-85.637424, 41.943459] + }, + "n765": { + "id": "n765", + "loc": [-85.637418, 41.943371] + }, + "n766": { + "id": "n766", + "loc": [-85.638094, 41.943149] + }, + "n767": { + "id": "n767", + "loc": [-85.638096, 41.943201] + }, + "n768": { + "id": "n768", + "loc": [-85.638041, 41.943202] + }, + "n769": { + "id": "n769", + "loc": [-85.638042, 41.943216] + }, + "n77": { + "id": "n77", + "loc": [-85.637705, 41.942913] + }, + "n770": { + "id": "n770", + "loc": [-85.637927, 41.943218] + }, + "n771": { + "id": "n771", + "loc": [-85.637926, 41.943201] + }, + "n772": { + "id": "n772", + "loc": [-85.637897, 41.943201] + }, + "n773": { + "id": "n773", + "loc": [-85.637896, 41.943155] + }, + "n774": { + "id": "n774", + "loc": [-85.637962, 41.943153] + }, + "n775": { + "id": "n775", + "loc": [-85.637962, 41.943134] + }, + "n776": { + "id": "n776", + "loc": [-85.638017, 41.943132] + }, + "n777": { + "id": "n777", + "loc": [-85.638018, 41.943151] + }, + "n778": { + "id": "n778", + "loc": [-85.638045, 41.943289] + }, + "n779": { + "id": "n779", + "loc": [-85.638048, 41.943363] + }, + "n78": { + "id": "n78", + "loc": [-85.637705, 41.942834] + }, + "n780": { + "id": "n780", + "loc": [-85.637842, 41.943367] + }, + "n781": { + "id": "n781", + "loc": [-85.637839, 41.943296] + }, + "n782": { + "id": "n782", + "loc": [-85.637896, 41.943295] + }, + "n783": { + "id": "n783", + "loc": [-85.637897, 41.943314] + }, + "n784": { + "id": "n784", + "loc": [-85.637957, 41.943312] + }, + "n785": { + "id": "n785", + "loc": [-85.637957, 41.943291] + }, + "n786": { + "id": "n786", + "loc": [-85.637816, 41.943375] + }, + "n787": { + "id": "n787", + "loc": [-85.637815, 41.943416] + }, + "n788": { + "id": "n788", + "loc": [-85.637715, 41.943415] + }, + "n789": { + "id": "n789", + "loc": [-85.637716, 41.943374] + }, + "n79": { + "id": "n79", + "loc": [-85.638071, 41.942298] + }, + "n790": { + "id": "n790", + "loc": [-85.637912, 41.943545] + }, + "n791": { + "id": "n791", + "loc": [-85.637909, 41.943479] + }, + "n792": { + "id": "n792", + "loc": [-85.637967, 41.943477] + }, + "n793": { + "id": "n793", + "loc": [-85.637967, 41.94346] + }, + "n794": { + "id": "n794", + "loc": [-85.638077, 41.943457] + }, + "n795": { + "id": "n795", + "loc": [-85.638078, 41.943473] + }, + "n796": { + "id": "n796", + "loc": [-85.638124, 41.943471] + }, + "n797": { + "id": "n797", + "loc": [-85.638126, 41.943514] + }, + "n798": { + "id": "n798", + "loc": [-85.638079, 41.943515] + }, + "n799": { + "id": "n799", + "loc": [-85.638079, 41.943532] + }, + "n8": { + "id": "n8", + "loc": [-85.635241, 41.941948] + }, + "n80": { + "id": "n80", + "loc": [-85.638074, 41.942431] + }, + "n800": { + "id": "n800", + "loc": [-85.638028, 41.943534] + }, + "n801": { + "id": "n801", + "loc": [-85.638028, 41.943542] + }, + "n802": { + "id": "n802", + "loc": [-85.638845, 41.942983] + }, + "n803": { + "id": "n803", + "loc": [-85.638846, 41.94305] + }, + "n804": { + "id": "n804", + "loc": [-85.638661, 41.943052] + }, + "n805": { + "id": "n805", + "loc": [-85.63866, 41.942984] + }, + "n806": { + "id": "n806", + "loc": [-85.638579, 41.942753] + }, + "n807": { + "id": "n807", + "loc": [-85.638445, 41.942755] + }, + "n808": { + "id": "n808", + "loc": [-85.638452, 41.942978] + }, + "n809": { + "id": "n809", + "loc": [-85.638545, 41.942976] + }, + "n81": { + "id": "n81", + "loc": [-85.637836, 41.942433] + }, + "n810": { + "id": "n810", + "loc": [-85.638543, 41.942935] + }, + "n811": { + "id": "n811", + "loc": [-85.638571, 41.942934] + }, + "n812": { + "id": "n812", + "loc": [-85.63857, 41.942901] + }, + "n813": { + "id": "n813", + "loc": [-85.638611, 41.9429] + }, + "n814": { + "id": "n814", + "loc": [-85.638607, 41.942769] + }, + "n815": { + "id": "n815", + "loc": [-85.63858, 41.94277] + }, + "n816": { + "id": "n816", + "loc": [-85.638597, 41.942614] + }, + "n817": { + "id": "n817", + "loc": [-85.638601, 41.94273] + }, + "n818": { + "id": "n818", + "loc": [-85.638686, 41.942731] + }, + "n819": { + "id": "n819", + "loc": [-85.638689, 41.942917] + }, + "n82": { + "id": "n82", + "loc": [-85.637835, 41.94242] + }, + "n820": { + "id": "n820", + "loc": [-85.638558, 41.943018] + }, + "n821": { + "id": "n821", + "loc": [-85.638243, 41.943019] + }, + "n822": { + "id": "n822", + "loc": [-85.637536, 41.943887] + }, + "n823": { + "id": "n823", + "loc": [-85.63749, 41.943926] + }, + "n824": { + "id": "n824", + "loc": [-85.63743, 41.943886] + }, + "n825": { + "id": "n825", + "loc": [-85.637476, 41.943847] + }, + "n826": { + "id": "n826", + "loc": [-85.637527, 41.943846] + }, + "n827": { + "id": "n827", + "loc": [-85.637141, 41.943728] + }, + "n828": { + "id": "n828", + "loc": [-85.637201, 41.943755] + }, + "n829": { + "id": "n829", + "loc": [-85.636987, 41.943608] + }, + "n83": { + "id": "n83", + "loc": [-85.63776, 41.942421] + }, + "n830": { + "id": "n830", + "loc": [-85.637441, 41.943807] + }, + "n831": { + "id": "n831", + "loc": [-85.637673, 41.94399] + }, + "n832": { + "id": "n832", + "loc": [-85.637783, 41.944137] + }, + "n833": { + "id": "n833", + "loc": [-85.63845, 41.944333] + }, + "n834": { + "id": "n834", + "loc": [-85.638159, 41.944248] + }, + "n835": { + "id": "n835", + "loc": [-85.637859, 41.94416] + }, + "n836": { + "id": "n836", + "loc": [-85.638685, 41.944542] + }, + "n837": { + "id": "n837", + "loc": [-85.638714, 41.944611] + }, + "n838": { + "id": "n838", + "loc": [-85.638711, 41.944757] + }, + "n839": { + "id": "n839", + "loc": [-85.638774, 41.945069] + }, + "n84": { + "id": "n84", + "loc": [-85.637758, 41.942339] + }, + "n840": { + "id": "n840", + "loc": [-85.638742, 41.945205] + }, + "n841": { + "id": "n841", + "loc": [-85.640267, 41.942403] + }, + "n842": { + "id": "n842", + "loc": [-85.640154, 41.942404] + }, + "n843": { + "id": "n843", + "loc": [-85.640152, 41.942249] + }, + "n844": { + "id": "n844", + "loc": [-85.640266, 41.942248] + }, + "n845": { + "id": "n845", + "loc": [-85.640366, 41.942599] + }, + "n846": { + "id": "n846", + "loc": [-85.640362, 41.942192] + }, + "n847": { + "id": "n847", + "loc": [-85.640146, 41.942191] + }, + "n848": { + "id": "n848", + "loc": [-85.640122, 41.942196] + }, + "n849": { + "id": "n849", + "loc": [-85.640108, 41.942211] + }, + "n85": { + "id": "n85", + "loc": [-85.637836, 41.942339] + }, + "n850": { + "id": "n850", + "loc": [-85.640101, 41.942236] + }, + "n851": { + "id": "n851", + "loc": [-85.640103, 41.94241] + }, + "n852": { + "id": "n852", + "loc": [-85.64011, 41.942435] + }, + "n853": { + "id": "n853", + "loc": [-85.640126, 41.942445] + }, + "n854": { + "id": "n854", + "loc": [-85.640153, 41.942451] + }, + "n855": { + "id": "n855", + "loc": [-85.640183, 41.942452] + }, + "n856": { + "id": "n856", + "loc": [-85.640364, 41.942452] + }, + "n857": { + "id": "n857", + "loc": [-85.640007, 41.942452] + }, + "n858": { + "id": "n858", + "loc": [-85.639449, 41.942461] + }, + "n859": { + "id": "n859", + "loc": [-85.640049, 41.942391] + }, + "n86": { + "id": "n86", + "loc": [-85.637835, 41.942301] + }, + "n860": { + "id": "n860", + "loc": [-85.640052, 41.942503] + }, + "n861": { + "id": "n861", + "loc": [-85.639575, 41.94251] + }, + "n862": { + "id": "n862", + "loc": [-85.639572, 41.942398] + }, + "n863": { + "id": "n863", + "loc": [-85.638782, 41.942227] + }, + "n864": { + "id": "n864", + "loc": [-85.63843, 41.942226] + }, + "n865": { + "id": "n865", + "loc": [-85.63823, 41.942183] + }, + "n866": { + "id": "n866", + "loc": [-85.638363, 41.942216], + "tags": { + "barrier": "gate" + } + }, + "n867": { + "id": "n867", + "loc": [-85.6384, 41.942223] + }, + "n868": { + "id": "n868", + "loc": [-85.636042, 41.942797] + }, + "n869": { + "id": "n869", + "loc": [-85.636308, 41.942752] + }, + "n87": { + "id": "n87", + "loc": [-85.637566, 41.942367] + }, + "n870": { + "id": "n870", + "loc": [-85.636516, 41.942729] + }, + "n871": { + "id": "n871", + "loc": [-85.636782, 41.942712] + }, + "n872": { + "id": "n872", + "loc": [-85.636944, 41.942706] + }, + "n873": { + "id": "n873", + "loc": [-85.63704, 41.942706] + }, + "n874": { + "id": "n874", + "loc": [-85.637237, 41.942703] + }, + "n875": { + "id": "n875", + "loc": [-85.637553, 41.9427] + }, + "n876": { + "id": "n876", + "loc": [-85.638236, 41.942697] + }, + "n877": { + "id": "n877", + "loc": [-85.636284, 41.942781] + }, + "n878": { + "id": "n878", + "loc": [-85.636551, 41.942641] + }, + "n879": { + "id": "n879", + "loc": [-85.633914, 41.943693] + }, + "n88": { + "id": "n88", + "loc": [-85.637566, 41.94241] + }, + "n880": { + "id": "n880", + "loc": [-85.63389, 41.943708] + }, + "n881": { + "id": "n881", + "loc": [-85.633866, 41.943686] + }, + "n882": { + "id": "n882", + "loc": [-85.63389, 41.943671] + }, + "n883": { + "id": "n883", + "loc": [-85.633857, 41.943609] + }, + "n884": { + "id": "n884", + "loc": [-85.634858, 41.944474] + }, + "n885": { + "id": "n885", + "loc": [-85.633988, 41.943234] + }, + "n886": { + "id": "n886", + "loc": [-85.633999, 41.943485] + }, + "n887": { + "id": "n887", + "loc": [-85.634109, 41.943449], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n888": { + "id": "n888", + "loc": [-85.635728, 41.942655], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n889": { + "id": "n889", + "loc": [-85.636499, 41.942845], + "tags": { + "man_made": "flagpole" + } + }, + "n89": { + "id": "n89", + "loc": [-85.637455, 41.94241] + }, + "n890": { + "id": "n890", + "loc": [-85.636197, 41.943073] + }, + "n891": { + "id": "n891", + "loc": [-85.636227, 41.943073] + }, + "n892": { + "id": "n892", + "loc": [-85.637433, 41.942933], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "401", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Michigan Avenue", + "amenity": "restaurant", + "cuisine": "pizza", + "name": "Pizza Hut" + } + }, + "n893": { + "id": "n893", + "loc": [-85.637907, 41.942879], + "tags": { + "amenity": "car_wash" + } + }, + "n894": { + "id": "n894", + "loc": [-85.637661, 41.943018] + }, + "n895": { + "id": "n895", + "loc": [-85.636933, 41.942733], + "tags": { + "emergency": "fire_hydrant" + } + }, + "n896": { + "id": "n896", + "loc": [-85.637661, 41.94304] + }, + "n897": { + "id": "n897", + "loc": [-85.637562, 41.943041] + }, + "n898": { + "id": "n898", + "loc": [-85.637556, 41.942725] + }, + "n899": { + "id": "n899", + "loc": [-85.637656, 41.942724] + }, + "n9": { + "id": "n9", + "loc": [-85.635159, 41.941926] + }, + "n90": { + "id": "n90", + "loc": [-85.637454, 41.942367] + }, + "n900": { + "id": "n900", + "loc": [-85.637657, 41.942779] + }, + "n901": { + "id": "n901", + "loc": [-85.637983, 41.942777] + }, + "n902": { + "id": "n902", + "loc": [-85.637982, 41.942616] + }, + "n903": { + "id": "n903", + "loc": [-85.637777, 41.942778] + }, + "n904": { + "id": "n904", + "loc": [-85.637775, 41.942699] + }, + "n905": { + "id": "n905", + "loc": [-85.637772, 41.942618] + }, + "n906": { + "id": "n906", + "loc": [-85.637982, 41.942698] + }, + "n907": { + "id": "n907", + "loc": [-85.637941, 41.942378], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "416", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Michigan Avenue", + "name": "Gem Pawnbroker", + "shop": "pawnbroker" + } + }, + "n908": { + "id": "n908", + "loc": [-85.637515, 41.942394], + "tags": { + "second_hand": "only", + "shop": "car" + } + }, + "n909": { + "id": "n909", + "loc": [-85.638743, 41.942374], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "500", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Michigan Avenue", + "name": "William Towing", + "service:vehicle:towing": "yes", + "service:vehicle:tyres": "yes", + "shop": "car_repair" + } + }, + "n91": { + "id": "n91", + "loc": [-85.637565, 41.942341] + }, + "n910": { + "id": "n910", + "loc": [-85.638594, 41.942357] + }, + "n911": { + "id": "n911", + "loc": [-85.634312, 41.943562], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "145", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Michigan Avenue", + "amenity": "cafe", + "cuisine": "coffee_shop", + "name": "L.A.'s Coffee Cafe", + "outdoor_seating": "yes" + } + }, + "n912": { + "id": "n912", + "loc": [-85.634404, 41.943512] + }, + "n913": { + "id": "n913", + "loc": [-85.634391, 41.943519], + "tags": { + "entrance": "yes" + } + }, + "n914": { + "id": "n914", + "loc": [-85.634259, 41.943538], + "tags": { + "entrance": "yes" + } + }, + "n915": { + "id": "n915", + "loc": [-85.634247, 41.943528] + }, + "n916": { + "id": "n916", + "loc": [-85.633747, 41.943322], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "132", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Michigan Avenue", + "name": "Preferred Insurance Services", + "office": "insurance" + } + }, + "n917": { + "id": "n917", + "loc": [-85.63299, 41.943686], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "101", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Lynn's Garage", + "service:vehicle:tyres": "yes", + "shop": "car_repair" + } + }, + "n918": { + "id": "n918", + "loc": [-85.633438, 41.944883] + }, + "n919": { + "id": "n919", + "loc": [-85.633265, 41.944983] + }, + "n92": { + "id": "n92", + "loc": [-85.637481, 41.942341] + }, + "n920": { + "id": "n920", + "loc": [-85.633315, 41.945027] + }, + "n921": { + "id": "n921", + "loc": [-85.633376, 41.944827] + }, + "n922": { + "id": "n922", + "loc": [-85.633199, 41.944922] + }, + "n923": { + "id": "n923", + "loc": [-85.633316, 41.944772] + }, + "n924": { + "id": "n924", + "loc": [-85.633147, 41.944867] + }, + "n925": { + "id": "n925", + "loc": [-85.633261, 41.944719] + }, + "n926": { + "id": "n926", + "loc": [-85.633096, 41.944812] + }, + "n927": { + "id": "n927", + "loc": [-85.633191, 41.944645] + }, + "n928": { + "id": "n928", + "loc": [-85.632981, 41.94476] + }, + "n929": { + "id": "n929", + "loc": [-85.633062, 41.94483] + }, + "n93": { + "id": "n93", + "loc": [-85.637481, 41.94226] + }, + "n930": { + "id": "n930", + "loc": [-85.633146, 41.944602] + }, + "n931": { + "id": "n931", + "loc": [-85.632969, 41.944703] + }, + "n932": { + "id": "n932", + "loc": [-85.633008, 41.944745] + }, + "n933": { + "id": "n933", + "loc": [-85.633088, 41.944545] + }, + "n934": { + "id": "n934", + "loc": [-85.632868, 41.944655] + }, + "n935": { + "id": "n935", + "loc": [-85.632941, 41.944718] + }, + "n936": { + "id": "n936", + "loc": [-85.633028, 41.944483] + }, + "n937": { + "id": "n937", + "loc": [-85.632817, 41.944605] + }, + "n938": { + "id": "n938", + "loc": [-85.632923, 41.944373] + }, + "n939": { + "id": "n939", + "loc": [-85.632692, 41.944485] + }, + "n94": { + "id": "n94", + "loc": [-85.637565, 41.94226] + }, + "n940": { + "id": "n940", + "loc": [-85.632871, 41.944316] + }, + "n941": { + "id": "n941", + "loc": [-85.632655, 41.944421] + }, + "n942": { + "id": "n942", + "loc": [-85.632711, 41.944478] + }, + "n943": { + "id": "n943", + "loc": [-85.632825, 41.94426] + }, + "n944": { + "id": "n944", + "loc": [-85.632606, 41.944363] + }, + "n945": { + "id": "n945", + "loc": [-85.63275, 41.94418] + }, + "n946": { + "id": "n946", + "loc": [-85.632588, 41.944256] + }, + "n947": { + "id": "n947", + "loc": [-85.632611, 41.944279] + }, + "n948": { + "id": "n948", + "loc": [-85.632548, 41.944306] + }, + "n949": { + "id": "n949", + "loc": [-85.632512, 41.944406] + }, + "n95": { + "id": "n95", + "loc": [-85.637188, 41.942217] + }, + "n950": { + "id": "n950", + "loc": [-85.632565, 41.944463] + }, + "n951": { + "id": "n951", + "loc": [-85.632579, 41.944456] + }, + "n952": { + "id": "n952", + "loc": [-85.632634, 41.944518] + }, + "n953": { + "id": "n953", + "loc": [-85.632686, 41.944569] + }, + "n954": { + "id": "n954", + "loc": [-85.632745, 41.944537] + }, + "n955": { + "id": "n955", + "loc": [-85.632659, 41.944587] + }, + "n956": { + "id": "n956", + "loc": [-85.632778, 41.944705] + }, + "n957": { + "id": "n957", + "loc": [-85.632815, 41.944301], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "5", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Access Point Employment", + "office": "employment_agency" + } + }, + "n958": { + "id": "n958", + "loc": [-85.6332, 41.944174], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "6", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Paisley Emporium", + "shop": "second_hand" + } + }, + "n959": { + "id": "n959", + "loc": [-85.633578, 41.944568], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "22", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "name": "Lowry's Books", + "shop": "books" + } + }, + "n96": { + "id": "n96", + "loc": [-85.637189, 41.942303] + }, + "n960": { + "id": "n960", + "loc": [-85.63344, 41.944443], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "16", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "amenity": "restaurant", + "cuisine": "pizza", + "name": "Paisano's Bar and Grill" + } + }, + "n961": { + "id": "n961", + "loc": [-85.633009, 41.944542], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "13", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "amenity": "cafe", + "cuisine": "american", + "internet_access": "yes", + "name": "Main Street Cafe" + } + }, + "n962": { + "id": "n962", + "loc": [-85.633674, 41.944682], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "28", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "leisure": "fitness_centre", + "name": "Main Street Fitness" + } + }, + "n963": { + "id": "n963", + "loc": [-85.633376, 41.944868], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "27", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Main Street", + "leisure": "fitness_centre", + "name": "Main Street Barbell" + } + }, + "n964": { + "id": "n964", + "loc": [-85.633366, 41.944783] + }, + "n965": { + "id": "n965", + "loc": [-85.633296, 41.94482] + }, + "n966": { + "id": "n966", + "loc": [-85.633214, 41.94487] + }, + "n967": { + "id": "n967", + "loc": [-85.633005, 41.944988] + }, + "n968": { + "id": "n968", + "loc": [-85.633269, 41.944816] + }, + "n969": { + "id": "n969", + "loc": [-85.633215, 41.944842] + }, + "n97": { + "id": "n97", + "loc": [-85.637299, 41.942302] + }, + "n970": { + "id": "n970", + "loc": [-85.633245, 41.944871] + }, + "n971": { + "id": "n971", + "loc": [-85.633296, 41.944845] + }, + "n972": { + "id": "n972", + "loc": [-85.633254, 41.944845], + "tags": { + "natural": "tree" + } + }, + "n973": { + "id": "n973", + "loc": [-85.633557, 41.945515] + }, + "n974": { + "id": "n974", + "loc": [-85.633279, 41.945246] + }, + "n975": { + "id": "n975", + "loc": [-85.63324, 41.945226] + }, + "n976": { + "id": "n976", + "loc": [-85.6332, 41.945213] + }, + "n977": { + "id": "n977", + "loc": [-85.633133, 41.945164] + }, + "n978": { + "id": "n978", + "loc": [-85.63312, 41.945132] + }, + "n979": { + "id": "n979", + "loc": [-85.633095, 41.945081] + }, + "n98": { + "id": "n98", + "loc": [-85.637299, 41.942314] + }, + "n980": { + "id": "n980", + "loc": [-85.633064, 41.945047] + }, + "n981": { + "id": "n981", + "loc": [-85.632739, 41.944742] + }, + "n982": { + "id": "n982", + "loc": [-85.633281, 41.945026] + }, + "n983": { + "id": "n983", + "loc": [-85.633155, 41.944903] + }, + "n984": { + "id": "n984", + "loc": [-85.633079, 41.944829] + }, + "n985": { + "id": "n985", + "loc": [-85.63304, 41.944853] + }, + "n986": { + "id": "n986", + "loc": [-85.632949, 41.944776] + }, + "n987": { + "id": "n987", + "loc": [-85.632921, 41.944725] + }, + "n988": { + "id": "n988", + "loc": [-85.632859, 41.944673] + }, + "n989": { + "id": "n989", + "loc": [-85.632895, 41.94505] + }, + "n99": { + "id": "n99", + "loc": [-85.637396, 41.942313] + }, + "n990": { + "id": "n990", + "loc": [-85.633336, 41.945138] + }, + "n991": { + "id": "n991", + "loc": [-85.633466, 41.945265] + }, + "n992": { + "id": "n992", + "loc": [-85.633367, 41.945327] + }, + "n993": { + "id": "n993", + "loc": [-85.633163, 41.945189] + }, + "n994": { + "id": "n994", + "loc": [-85.633678, 41.945309] + }, + "n995": { + "id": "n995", + "loc": [-85.633619, 41.945261] + }, + "n996": { + "id": "n996", + "loc": [-85.63355, 41.945301] + }, + "n997": { + "id": "n997", + "loc": [-85.633607, 41.945352] + }, + "n998": { + "id": "n998", + "loc": [-85.633579, 41.945327], + "tags": { + "entrance": "yes" + } + }, + "n999": { + "id": "n999", + "loc": [-85.633445, 41.945404] + }, + "r2": { + "id": "r2", + "members": [{ + "id": "w225", "role": "outer", "type": "way" + }], + "tags": { + "type": "multipolygon", + "waterway": "riverbank" + } + }, + "r5": { + "id": "r5", + "members": [{ + "id": "w642", "role": "outer", "type": "way" + }], + "tags": { + "admin_level": "8", + "border_type": "city", + "boundary": "administrative", + "name": "Three Rivers", + "place": "city", + "type": "boundary" + } + }, + "w1": { + "id": "w1", + "nodes": ["n5", "n1797"], + "tags": { + "highway": "residential", + "name": "12th Avenue" + } + }, + "w10": { + "id": "w10", + "nodes": ["n54", "n55", "n56", "n57", "n891", "n890", "n54"], + "tags": { + "building": "yes" + } + }, + "w100": { + "id": "w100", + "nodes": ["n451", "n915", "n452"], + "tags": { + "highway": "footway" + } + }, + "w101": { + "id": "w101", + "nodes": ["n461", "n462", "n463", "n464", "n465", "n466"], + "tags": { + "barrier": "fence" + } + }, + "w102": { + "id": "w102", + "nodes": ["n467", "n468", "n469", "n470", "n472", "n467"], + "tags": { + "amenity": "parking" + } + }, + "w103": { + "id": "w103", + "nodes": ["n2597", "n2444", "n471", "n472"], + "tags": { + "highway": "footway" + } + }, + "w104": { + "id": "w104", + "nodes": ["n473", "n474", "n325"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w105": { + "id": "w105", + "nodes": ["n475", "n324", "n325"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w106": { + "id": "w106", + "nodes": ["n886", "n452", "n476"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w107": { + "id": "w107", + "nodes": ["n485", "n4678", "n486", "n18"], + "tags": { + "highway": "service" + } + }, + "w108": { + "id": "w108", + "nodes": ["n300", "n487", "n488", "n489", "n490"], + "tags": { + "highway": "footway" + } + }, + "w109": { + "id": "w109", + "nodes": ["n490", "n491"], + "tags": { + "highway": "footway" + } + }, + "w11": { + "id": "w11", + "nodes": ["n58", "n63", "n59", "n315", "n60"], + "tags": { + "highway": "service" + } + }, + "w110": { + "id": "w110", + "nodes": ["n492", "n493", "n494", "n495", "n496", "n497", "n492"], + "tags": { + "building": "yes" + } + }, + "w111": { + "id": "w111", + "nodes": ["n498", "n499", "n511"], + "tags": { + "highway": "service" + } + }, + "w112": { + "id": "w112", + "nodes": ["n510", "n500", "n501", "n502", "n503", "n504", "n505", "n506", "n507", "n508", "n509"], + "tags": { + "highway": "service" + } + }, + "w113": { + "id": "w113", + "nodes": ["n511", "n510"], + "tags": { + "covered": "yes", + "highway": "service" + } + }, + "w114": { + "id": "w114", + "nodes": ["n512", "n513", "n514", "n515", "n512"], + "tags": { + "building": "yes" + } + }, + "w115": { + "id": "w115", + "nodes": ["n516", "n517", "n518", "n519", "n516"], + "tags": { + "building": "yes" + } + }, + "w116": { + "id": "w116", + "nodes": ["n520", "n521", "n522", "n523", "n520"], + "tags": { + "building": "yes" + } + }, + "w117": { + "id": "w117", + "nodes": ["n524", "n525", "n526", "n527", "n528", "n529", "n530", "n531", "n532", "n533", "n534", "n535", "n524"], + "tags": { + "building": "yes" + } + }, + "w118": { + "id": "w118", + "nodes": ["n536", "n537", "n538", "n539", "n536"], + "tags": { + "building": "yes" + } + }, + "w119": { + "id": "w119", + "nodes": ["n540", "n541", "n542", "n543", "n544", "n545", "n546", "n547", "n540"], + "tags": { + "building": "yes" + } + }, + "w12": { + "id": "w12", + "nodes": ["n61", "n314", "n70", "n62", "n63"], + "tags": { + "highway": "service" + } + }, + "w120": { + "id": "w120", + "nodes": ["n548", "n549", "n550", "n551", "n552", "n553", "n554", "n555", "n556", "n557", "n548"], + "tags": { + "building": "yes" + } + }, + "w121": { + "id": "w121", + "nodes": ["n558", "n559", "n560", "n561", "n562", "n563", "n564", "n565", "n558"], + "tags": { + "building": "yes" + } + }, + "w122": { + "id": "w122", + "nodes": ["n566", "n567", "n568", "n569", "n566"], + "tags": { + "building": "yes" + } + }, + "w123": { + "id": "w123", + "nodes": ["n570", "n571", "n572", "n573", "n570"], + "tags": { + "building": "yes" + } + }, + "w124": { + "id": "w124", + "nodes": ["n574", "n575", "n576", "n577", "n574"], + "tags": { + "building": "yes" + } + }, + "w125": { + "id": "w125", + "nodes": ["n578", "n579", "n580", "n581", "n578"], + "tags": { + "building": "yes" + } + }, + "w126": { + "id": "w126", + "nodes": ["n582", "n583", "n584", "n585", "n582"], + "tags": { + "building": "yes" + } + }, + "w127": { + "id": "w127", + "nodes": ["n586", "n587", "n588", "n589", "n590", "n591", "n592", "n593", "n586"], + "tags": { + "building": "yes" + } + }, + "w128": { + "id": "w128", + "nodes": ["n594", "n595", "n596", "n597", "n598", "n599", "n600", "n601", "n594"], + "tags": { + "building": "yes" + } + }, + "w129": { + "id": "w129", + "nodes": ["n309", "n602", "n603"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w13": { + "id": "w13", + "nodes": ["n64", "n65", "n66", "n67", "n68", "n69", "n64"], + "tags": { + "amenity": "parking" + } + }, + "w130": { + "id": "w130", + "nodes": ["n603", "n604"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w131": { + "id": "w131", + "nodes": ["n604", "n605", "n606"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w132": { + "id": "w132", + "nodes": ["n606", "n607"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w133": { + "id": "w133", + "nodes": ["n607", "n610", "n608", "n603"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w134": { + "id": "w134", + "nodes": ["n609", "n610", "n611"], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "unpaved" + } + }, + "w135": { + "id": "w135", + "nodes": ["n244", "n245", "n246"], + "tags": { + "highway": "service" + } + }, + "w136": { + "id": "w136", + "nodes": ["n612", "n613", "n614", "n615", "n612"], + "tags": { + "amenity": "shelter" + } + }, + "w137": { + "id": "w137", + "nodes": [ + "n2779", + "n2788", + "n2776", + "n2778", + "n2775", + "n2787", + "n2440", + "n2437", + "n629", + "n2438", + "n630", + "n2439", + "n2407", + "n2408", + "n2409" + ], + "tags": { + "highway": "residential", + "name": "Foster Street" + } + }, + "w138": { + "id": "w138", + "nodes": ["n2779", "n625", "n626", "n627"], + "tags": { + "highway": "residential", + "name": "Foster Street", + "oneway": "yes" + } + }, + "w139": { + "id": "w139", + "nodes": ["n630", "n631", "n632", "n2437"], + "tags": { + "highway": "service" + } + }, + "w14": { + "id": "w14", + "nodes": ["n71", "n72", "n73", "n74", "n71"], + "tags": { + "building": "yes" + } + }, + "w140": { + "id": "w140", + "nodes": ["n643", "n637", "n715", "n2410"], + "tags": { + "highway": "footway", + "name": "Mural Mall" + } + }, + "w141": { + "id": "w141", + "nodes": ["n639", "n2516"], + "tags": { + "barrier": "wall" + } + }, + "w142": { + "id": "w142", + "nodes": ["n640", "n641", "n645", "n642", "n660", "n643", "n644"], + "tags": { + "highway": "service" + } + }, + "w143": { + "id": "w143", + "nodes": ["n646", "n647"], + "tags": { + "highway": "service" + } + }, + "w144": { + "id": "w144", + "nodes": ["n654", "n655", "n656"], + "tags": { + "barrier": "wall" + } + }, + "w145": { + "id": "w145", + "nodes": ["n665", "n666", "n667"], + "tags": { + "barrier": "wall" + } + }, + "w146": { + "id": "w146", + "nodes": ["n2727", "n662", "n2719"], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } + }, + "w147": { + "id": "w147", + "nodes": ["n2725", "n674"], + "tags": { + "highway": "service", + "oneway": "yes" + } + }, + "w148": { + "id": "w148", + "nodes": ["n2464", "n2460", "n2454", "n684", "n2455", "n2464"], + "tags": { + "building": "yes" + } + }, + "w149": { + "id": "w149", + "nodes": ["n2456", "n685", "n686", "n687", "n2456"], + "tags": { + "building": "yes" + } + }, + "w15": { + "id": "w15", + "nodes": ["n75", "n76", "n77", "n78", "n75"], + "tags": { + "building": "yes" + } + }, + "w150": { + "id": "w150", + "nodes": ["n685", "n688", "n689", "n690", "n691", "n692", "n686", "n685"], + "tags": { + "building": "yes" + } + }, + "w151": { + "id": "w151", + "nodes": ["n688", "n693", "n694", "n689", "n688"], + "tags": { + "building": "yes" + } + }, + "w152": { + "id": "w152", + "nodes": ["n693", "n695", "n702", "n696", "n697", "n694", "n693"], + "tags": { + "building": "yes" + } + }, + "w153": { + "id": "w153", + "nodes": ["n695", "n698", "n699", "n700", "n701", "n702", "n695"], + "tags": { + "building": "yes" + } + }, + "w154": { + "id": "w154", + "nodes": ["n698", "n703", "n707", "n704", "n699", "n698"], + "tags": { + "building": "yes" + } + }, + "w155": { + "id": "w155", + "nodes": ["n703", "n705", "n706", "n707", "n703"], + "tags": { + "building": "yes" + } + }, + "w156": { + "id": "w156", + "nodes": ["n705", "n708", "n709", "n706", "n705"], + "tags": { + "building": "yes" + } + }, + "w157": { + "id": "w157", + "nodes": ["n709", "n710", "n711", "n708", "n709"], + "tags": { + "building": "yes" + } + }, + "w158": { + "id": "w158", + "nodes": ["n369", "n712", "n725", "n713", "n714", "n715", "n727", "n716", "n717", "n718", "n719"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w159": { + "id": "w159", + "nodes": ["n714", "n720", "n721"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w16": { + "id": "w16", + "nodes": ["n79", "n80", "n81", "n82", "n83", "n84", "n85", "n86", "n79"], + "tags": { + "building": "yes" + } + }, + "w160": { + "id": "w160", + "nodes": ["n729", "n721", "n722", "n964", "n723", "n724"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w161": { + "id": "w161", + "nodes": ["n713", "n726", "n722"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w162": { + "id": "w162", + "nodes": ["n727", "n2411", "n728"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w163": { + "id": "w163", + "nodes": ["n729", "n730", "n731"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w164": { + "id": "w164", + "nodes": ["n365", "n732", "n733", "n738"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w165": { + "id": "w165", + "nodes": ["n724", "n734", "n367", "n735", "n736", "n737"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w166": { + "id": "w166", + "nodes": ["n739", "n2037", "n2038", "n2039", "n2040", "n1623", "n2032"], + "tags": { + "highway": "footway" + } + }, + "w167": { + "id": "w167", + "nodes": ["n150", "n751"], + "tags": { + "highway": "service" + } + }, + "w168": { + "id": "w168", + "nodes": ["n752", "n753", "n754", "n755", "n752"], + "tags": { + "building": "yes" + } + }, + "w169": { + "id": "w169", + "nodes": ["n756", "n757", "n758", "n759", "n756"], + "tags": { + "building": "yes" + } + }, + "w17": { + "id": "w17", + "nodes": ["n87", "n88", "n89", "n90", "n87"], + "tags": { + "building": "yes" + } + }, + "w170": { + "id": "w170", + "nodes": ["n760", "n761", "n762", "n763", "n764", "n765", "n760"], + "tags": { + "building": "yes" + } + }, + "w171": { + "id": "w171", + "nodes": ["n766", "n767", "n768", "n769", "n770", "n771", "n772", "n773", "n774", "n775", "n776", "n777", "n766"], + "tags": { + "building": "yes" + } + }, + "w172": { + "id": "w172", + "nodes": ["n778", "n779", "n780", "n781", "n782", "n783", "n784", "n785", "n778"], + "tags": { + "building": "yes" + } + }, + "w173": { + "id": "w173", + "nodes": ["n786", "n787", "n788", "n789", "n786"], + "tags": { + "building": "yes" + } + }, + "w174": { + "id": "w174", + "nodes": ["n790", "n791", "n792", "n793", "n794", "n795", "n796", "n797", "n798", "n799", "n800", "n801", "n790"], + "tags": { + "building": "yes" + } + }, + "w175": { + "id": "w175", + "nodes": ["n802", "n803", "n804", "n805", "n802"], + "tags": { + "building": "yes" + } + }, + "w176": { + "id": "w176", + "nodes": ["n806", "n807", "n808", "n809", "n810", "n811", "n812", "n813", "n814", "n815", "n806"], + "tags": { + "building": "yes" + } + }, + "w177": { + "id": "w177", + "nodes": ["n816", "n1140", "n817", "n818", "n819", "n820", "n821"], + "tags": { + "highway": "service" + } + }, + "w178": { + "id": "w178", + "nodes": ["n822", "n823", "n824", "n825", "n822"], + "tags": { + "building": "yes" + } + }, + "w179": { + "id": "w179", + "nodes": ["n841", "n842", "n843", "n844", "n841"], + "tags": { + "building": "yes" + } + }, + "w18": { + "id": "w18", + "nodes": ["n91", "n92", "n93", "n94", "n91"], + "tags": { + "building": "yes" + } + }, + "w180": { + "id": "w180", + "nodes": ["n845", "n856", "n846"], + "tags": { + "highway": "service" + } + }, + "w181": { + "id": "w181", + "nodes": ["n846", "n847", "n848", "n849", "n850", "n851", "n852", "n853", "n854", "n855", "n856"], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "drive-through" + } + }, + "w182": { + "id": "w182", + "nodes": ["n857", "n858"], + "tags": { + "highway": "service" + } + }, + "w183": { + "id": "w183", + "nodes": ["n859", "n860", "n861", "n862", "n859"], + "tags": { + "amenity": "parking" + } + }, + "w184": { + "id": "w184", + "nodes": ["n863", "n864", "n867", "n866", "n865"], + "tags": { + "highway": "service" + } + }, + "w185": { + "id": "w185", + "nodes": ["n883", "n884"], + "tags": { + "barrier": "fence" + } + }, + "w186": { + "id": "w186", + "nodes": ["n1954", "n622", "n1955"], + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + } + }, + "w187": { + "id": "w187", + "nodes": ["n621", "n1954"], + "tags": { + "highway": "steps", + "incline": "up", + "name": "Riverwalk Trail", + "surface": "wood" + } + }, + "w188": { + "id": "w188", + "nodes": ["n2274", "n2275", "n2276", "n2277", "n2278", "n2279", "n1953", "n621"], + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "wood" + } + }, + "w189": { + "id": "w189", + "nodes": ["n2273", "n2274"], + "tags": { + "highway": "steps", + "incline": "down", + "name": "Riverwalk Trail", + "surface": "wood" + } + }, + "w19": { + "id": "w19", + "nodes": ["n95", "n96", "n97", "n98", "n99", "n100", "n101", "n102", "n95"], + "tags": { + "building": "yes" + } + }, + "w190": { + "id": "w190", + "nodes": ["n821", "n894", "n900", "n903", "n901"], + "tags": { + "highway": "service" + } + }, + "w191": { + "id": "w191", + "nodes": ["n896", "n897", "n898", "n899", "n900", "n894", "n896"], + "tags": { + "amenity": "parking" + } + }, + "w192": { + "id": "w192", + "nodes": ["n903", "n904", "n905"], + "tags": { + "highway": "service" + } + }, + "w193": { + "id": "w193", + "nodes": ["n901", "n906", "n902"], + "tags": { + "highway": "service" + } + }, + "w194": { + "id": "w194", + "nodes": ["n912", "n913"], + "tags": { + "highway": "footway" + } + }, + "w195": { + "id": "w195", + "nodes": ["n914", "n915"], + "tags": { + "highway": "footway" + } + }, + "w196": { + "id": "w196", + "nodes": ["n2466", "n918", "n919", "n920", "n2466"], + "tags": { + "building": "yes" + } + }, + "w197": { + "id": "w197", + "nodes": ["n918", "n921", "n922", "n919", "n918"], + "tags": { + "building": "yes" + } + }, + "w198": { + "id": "w198", + "nodes": ["n923", "n925", "n926", "n924", "n923"], + "tags": { + "building": "yes" + } + }, + "w199": { + "id": "w199", + "nodes": ["n925", "n927", "n932", "n928", "n929", "n926", "n925"], + "tags": { + "building": "yes" + } + }, + "w2": { + "id": "w2", + "nodes": ["n3523", "n2182", "n2160"], + "tags": { + "highway": "service" + } + }, + "w20": { + "id": "w20", + "nodes": ["n103", "n104", "n105", "n106", "n107", "n108", "n109", "n110", "n111", "n112", "n113", "n114", "n103"], + "tags": { + "building": "yes" + } + }, + "w200": { + "id": "w200", + "nodes": ["n927", "n930", "n931", "n932", "n927"], + "tags": { + "building": "yes" + } + }, + "w201": { + "id": "w201", + "nodes": ["n930", "n933", "n934", "n935", "n931", "n930"], + "tags": { + "building": "yes" + } + }, + "w202": { + "id": "w202", + "nodes": ["n933", "n936", "n937", "n934", "n933"], + "tags": { + "building": "yes" + } + }, + "w203": { + "id": "w203", + "nodes": ["n936", "n938", "n942", "n939", "n954", "n937", "n936"], + "tags": { + "building": "yes" + } + }, + "w204": { + "id": "w204", + "nodes": ["n938", "n940", "n941", "n942", "n938"], + "tags": { + "building": "yes" + } + }, + "w205": { + "id": "w205", + "nodes": ["n940", "n943", "n944", "n941", "n940"], + "tags": { + "building": "yes" + } + }, + "w206": { + "id": "w206", + "nodes": ["n943", "n945", "n946", "n947", "n948", "n944", "n943"], + "tags": { + "building": "yes" + } + }, + "w207": { + "id": "w207", + "nodes": ["n944", "n949", "n950", "n951", "n941", "n944"], + "tags": { + "building": "yes" + } + }, + "w208": { + "id": "w208", + "nodes": ["n941", "n951", "n952", "n939", "n942", "n941"], + "tags": { + "building": "yes" + } + }, + "w209": { + "id": "w209", + "nodes": ["n952", "n953", "n954", "n939", "n952"], + "tags": { + "building": "yes" + } + }, + "w21": { + "id": "w21", + "nodes": ["n115", "n116", "n117", "n118", "n115"], + "tags": { + "building": "yes" + } + }, + "w210": { + "id": "w210", + "nodes": ["n953", "n955", "n956", "n934", "n937", "n954", "n953"], + "tags": { + "building": "yes" + } + }, + "w211": { + "id": "w211", + "nodes": ["n964", "n965"], + "tags": { + "highway": "footway" + } + }, + "w212": { + "id": "w212", + "nodes": ["n966", "n983", "n967", "n989"], + "tags": { + "highway": "footway" + } + }, + "w213": { + "id": "w213", + "nodes": ["n965", "n968", "n969", "n966", "n970", "n971", "n965"], + "tags": { + "highway": "footway" + } + }, + "w214": { + "id": "w214", + "nodes": [ + "n973", + "n999", + "n992", + "n974", + "n975", + "n976", + "n993", + "n977", + "n978", + "n979", + "n980", + "n967", + "n981", + "n1000", + "n1001", + "n1002", + "n1003", + "n1004", + "n1005", + "n1006", + "n1007", + "n1008", + "n1009" + ], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w215": { + "id": "w215", + "nodes": ["n978", "n982", "n983", "n984", "n985", "n986", "n987", "n988", "n981"], + "tags": { + "highway": "footway" + } + }, + "w216": { + "id": "w216", + "nodes": ["n976", "n990", "n991", "n992"], + "tags": { + "highway": "footway" + } + }, + "w217": { + "id": "w217", + "nodes": ["n998", "n999"], + "tags": { + "highway": "footway" + } + }, + "w218": { + "id": "w218", + "nodes": ["n1019", "n1020", "n1021", "n1022", "n731", "n728", "n1023", "n1025", "n1024", "n1019"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w219": { + "id": "w219", + "nodes": ["n719", "n1026", "n1027"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w22": { + "id": "w22", + "nodes": ["n119", "n120", "n121", "n122", "n119"], + "tags": { + "building": "yes" + } + }, + "w220": { + "id": "w220", + "nodes": ["n1027", "n1028", "n1019"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w221": { + "id": "w221", + "nodes": ["n2080", "n1828", "n1863", "n1829"], + "tags": { + "highway": "tertiary", + "name": "Constantine Street" + } + }, + "w222": { + "id": "w222", + "nodes": ["n1029", "n1030", "n1031"], + "tags": { + "highway": "service" + } + }, + "w223": { + "id": "w223", + "nodes": [ + "n2213", + "n2171", + "n2183", + "n2180", + "n2205", + "n2177", + "n2179", + "n2218", + "n2200", + "n2188", + "n2169", + "n2196", + "n2162", + "n2170", + "n2211", + "n2216", + "n2204", + "n2220", + "n2164", + "n2210", + "n2217", + "n2189", + "n460", + "n453", + "n2282" + ], + "tags": { + "name": "Rocky River", + "waterway": "river" + } + }, + "w224": { + "id": "w224", + "nodes": ["n3750", "n3751", "n3752"], + "tags": { + "highway": "service", + "service": "alley", + "surface": "unpaved" + } + }, + "w225": { + "id": "w225", + "nodes": [ + "n2134", + "n2127", + "n2313", + "n2109", + "n2112", + "n2129", + "n2156", + "n2146", + "n2126", + "n2153", + "n2288", + "n2283", + "n2284", + "n2131", + "n2286", + "n2287", + "n2285", + "n2132", + "n2140", + "n2289", + "n2122", + "n2114", + "n2149", + "n2119", + "n2106", + "n2111", + "n2145", + "n2113", + "n2117", + "n2159", + "n2143", + "n2123", + "n2142", + "n2116", + "n2154", + "n2139", + "n2150", + "n2157", + "n2120", + "n2138", + "n2130", + "n2136", + "n2155", + "n2107", + "n2141", + "n2124", + "n3754", + "n2121", + "n2105", + "n2108", + "n3755", + "n2128", + "n2110", + "n2152", + "n2125", + "n2135", + "n2186", + "n2115", + "n2144", + "n2137", + "n2133", + "n2148", + "n2118", + "n1871", + "n1875", + "n1872", + "n2041", + "n1873", + "n2042", + "n1874", + "n1884", + "n1870", + "n2151", + "n2147", + "n2158", + "n2104", + "n2134" + ] + }, + "w226": { + "id": "w226", + "nodes": [ + "n2243", + "n2280", + "n2244", + "n2245", + "n2246", + "n2247", + "n1931", + "n1932", + "n1933", + "n1934", + "n1935", + "n1936", + "n1937", + "n1938", + "n4681", + "n1939", + "n1940", + "n1941", + "n1942", + "n1943", + "n1944", + "n1945", + "n1946", + "n1947" + ], + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "asphalt", + "width": "3" + } + }, + "w227": { + "id": "w227", + "nodes": ["n2994", "n3012", "n3011", "n2958"], + "tags": { + "highway": "secondary", + "name": "Main Street" + } + }, + "w228": { + "id": "w228", + "nodes": [ + "n2747", + "n2762", + "n2757", + "n2746", + "n2761", + "n2758", + "n2760", + "n2755", + "n2749", + "n2691", + "n1028", + "n2432", + "n2414", + "n2413", + "n2412", + "n2411", + "n2410", + "n720", + "n726", + "n370", + "n368", + "n2748" + ], + "tags": { + "highway": "primary", + "name": "Main Street" + } + }, + "w229": { + "id": "w229", + "nodes": ["n2083", "n2103", "n2102", "n2084", "n2085", "n2086", "n2087", "n2242", "n471", "n324", "n2101", "n332", "n1868"], + "tags": { + "name": "Conrail Railroad", + "railway": "rail" + } + }, + "w23": { + "id": "w23", + "nodes": ["n123", "n124", "n125", "n126", "n123"], + "tags": { + "building": "yes" + } + }, + "w230": { + "id": "w230", + "nodes": [ + "n2232", + "n2236", + "n2231", + "n2230", + "n2226", + "n2241", + "n2237", + "n2227", + "n1182", + "n2233", + "n2228", + "n2229", + "n1183", + "n2234", + "n19", + "n1891", + "n20", + "n2223", + "n2224", + "n2238", + "n2235", + "n2240", + "n2225", + "n2239" + ], + "tags": { + "name": "Saint Joseph River", + "waterway": "river" + } + }, + "w231": { + "id": "w231", + "nodes": ["n456", "n1036", "n1037", "n1038"], + "tags": { + "barrier": "wall" + } + }, + "w232": { + "id": "w232", + "nodes": ["n1034", "n1039", "n1040"], + "tags": { + "barrier": "wall" + } + }, + "w233": { + "id": "w233", + "nodes": ["n1041", "n1042", "n1043", "n1044", "n1045", "n1046", "n1041"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w234": { + "id": "w234", + "nodes": ["n1047", "n1048"], + "tags": { + "barrier": "hedge" + } + }, + "w235": { + "id": "w235", + "nodes": ["n1049", "n1050", "n1051", "n1052", "n1049"], + "tags": { + "building": "yes" + } + }, + "w236": { + "id": "w236", + "nodes": ["n1053", "n1054", "n1055", "n1056", "n1057", "n1058", "n1059", "n1060", "n1053"], + "tags": { + "building": "yes" + } + }, + "w237": { + "id": "w237", + "nodes": ["n1061", "n1062", "n1063", "n1064", "n1065", "n1061"], + "tags": { + "building": "yes" + } + }, + "w238": { + "id": "w238", + "nodes": ["n1066", "n1067", "n1068", "n1069", "n1070", "n1071", "n1066"], + "tags": { + "building": "yes" + } + }, + "w239": { + "id": "w239", + "nodes": ["n1072", "n1073", "n1074", "n1075", "n1072"], + "tags": { + "building": "yes" + } + }, + "w24": { + "id": "w24", + "nodes": ["n127", "n128", "n129", "n130", "n127"], + "tags": { + "building": "yes" + } + }, + "w240": { + "id": "w240", + "nodes": ["n1076", "n1077", "n1078", "n1079", "n1080", "n1081", "n1076"], + "tags": { + "building": "yes" + } + }, + "w241": { + "id": "w241", + "nodes": ["n1082", "n1083", "n1084", "n1085", "n1082"], + "tags": { + "building": "yes" + } + }, + "w242": { + "id": "w242", + "nodes": ["n1086", "n1087", "n1088", "n1089", "n1086"], + "tags": { + "building": "yes" + } + }, + "w243": { + "id": "w243", + "nodes": ["n1090", "n1091", "n1092", "n1093", "n1094", "n1095", "n1096", "n1097", "n1090"], + "tags": { + "building": "yes" + } + }, + "w244": { + "id": "w244", + "nodes": ["n1098", "n1099", "n1100", "n1101"], + "tags": { + "barrier": "fence" + } + }, + "w245": { + "id": "w245", + "nodes": [ + "n1102", + "n835", + "n30", + "n2590", + "n35", + "n29", + "n2591", + "n34", + "n28", + "n2592", + "n2312", + "n32", + "n2593", + "n31", + "n33", + "n2594", + "n2595", + "n1102" + ], + "tags": { + "highway": "service" + } + }, + "w246": { + "id": "w246", + "nodes": ["n1103", "n1139", "n1104"], + "tags": { + "barrier": "fence" + } + }, + "w247": { + "id": "w247", + "nodes": ["n1105", "n1106", "n1107", "n1108", "n1109", "n1110", "n1111", "n1112", "n1113", "n1114", "n1105"], + "tags": { + "building": "yes" + } + }, + "w248": { + "id": "w248", + "nodes": ["n1115", "n1116", "n1117", "n1118", "n1119", "n1120", "n1115"], + "tags": { + "building": "yes" + } + }, + "w249": { + "id": "w249", + "nodes": ["n1121", "n1122", "n1123", "n1124", "n1121"], + "tags": { + "building": "yes" + } + }, + "w25": { + "id": "w25", + "nodes": ["n131", "n132", "n133", "n134", "n135", "n136", "n137", "n138", "n139", "n140", "n141", "n142", "n131"], + "tags": { + "building": "yes" + } + }, + "w250": { + "id": "w250", + "nodes": ["n1125", "n1126", "n1127", "n1128", "n1129", "n1130", "n1131", "n1132", "n1133", "n1134", "n1135", "n1136", "n1125"], + "tags": { + "building": "yes" + } + }, + "w251": { + "id": "w251", + "nodes": ["n1137", "n1138", "n1139"], + "tags": { + "barrier": "fence" + } + }, + "w252": { + "id": "w252", + "nodes": ["n876", "n1140", "n1141"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w253": { + "id": "w253", + "nodes": ["n1141", "n1142", "n1143", "n1144", "n1145", "n1146"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w254": { + "id": "w254", + "nodes": ["n1146", "n4743", "n1147", "n1148"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w255": { + "id": "w255", + "nodes": ["n1148", "n1149", "n1150", "n1151"], + "tags": { + "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", + "layer": "1" + } + }, + "w256": { + "id": "w256", + "nodes": ["n1151", "n1153", "n1154", "n1155"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w257": { + "id": "w257", + "nodes": ["n1155", "n1156"], + "tags": { + "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", + "layer": "1" + } + }, + "w258": { + "id": "w258", + "nodes": ["n1157", "n1158"], + "tags": { + "barrier": "retaining_wall" + } + }, + "w259": { + "id": "w259", + "nodes": ["n1156", "n1161", "n1159", "n1160", "n719"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w26": { + "id": "w26", + "nodes": ["n143", "n608", "n144"], + "tags": { + "highway": "service" + } + }, + "w260": { + "id": "w260", + "nodes": ["n1162", "n1163", "n1164", "n1165", "n1166", "n1167", "n1168", "n1169", "n1170", "n2528"], + "tags": { + "highway": "footway" + } + }, + "w261": { + "id": "w261", + "nodes": ["n1171", "n1172", "n1173"], + "tags": { + "barrier": "wall" + } + }, + "w262": { + "id": "w262", + "nodes": ["n1175", "n1176", "n1177", "n1178", "n1179", "n1180", "n1181", "n1175"], + "tags": { + "natural": "wood" + } + }, + "w263": { + "id": "w263", + "nodes": [ + "n1947", + "n1184", + "n1948", + "n1185", + "n1949", + "n1957", + "n1950", + "n480", + "n1951", + "n479", + "n478", + "n477", + "n1952", + "n1851", + "n1956", + "n2248", + "n619", + "n618", + "n2249", + "n2250", + "n2251", + "n617", + "n2252", + "n616", + "n2253", + "n829", + "n2254", + "n827", + "n828", + "n2255", + "n830", + "n2256", + "n826", + "n2257", + "n831", + "n2258", + "n832", + "n835", + "n834", + "n2312", + "n2267", + "n2259", + "n833", + "n2268", + "n2260", + "n836", + "n2261", + "n837", + "n2262", + "n838", + "n2263", + "n2264", + "n839", + "n2265", + "n840", + "n2266" + ], + "tags": { + "highway": "path", + "name": "Riverwalk Trail", + "surface": "asphalt", + "width": "3" + } + }, + "w264": { + "id": "w264", + "nodes": ["n1186", "n1187", "n1188", "n1189", "n1186"], + "tags": { + "building": "yes" + } + }, + "w265": { + "id": "w265", + "nodes": ["n1190", "n1191", "n1192", "n1193", "n1190"], + "tags": { + "building": "yes" + } + }, + "w266": { + "id": "w266", + "nodes": ["n1194", "n1195", "n1196", "n1197", "n1198", "n1199", "n1200", "n1201", "n1194"], + "tags": { + "building": "yes" + } + }, + "w267": { + "id": "w267", + "nodes": ["n1205", "n1206", "n1207", "n1208", "n1209", "n1210", "n1205"], + "tags": { + "building": "house" + } + }, + "w268": { + "id": "w268", + "nodes": ["n1211", "n1212", "n1213", "n1214", "n1215", "n1216", "n1217", "n1218", "n1219", "n1220", "n1211"], + "tags": { + "building": "house" + } + }, + "w269": { + "id": "w269", + "nodes": ["n1221", "n1225", "n1222", "n1223", "n1224", "n1221"], + "tags": { + "building": "house" + } + }, + "w27": { + "id": "w27", + "nodes": ["n145", "n147", "n146"], + "tags": { + "highway": "footway" + } + }, + "w270": { + "id": "w270", + "nodes": ["n1225", "n1226", "n1227", "n1229", "n1228"], + "tags": { + "barrier": "fence" + } + }, + "w271": { + "id": "w271", + "nodes": ["n1229", "n1230"], + "tags": { + "barrier": "fence" + } + }, + "w272": { + "id": "w272", + "nodes": ["n1231", "n1232", "n1233", "n1234", "n1235", "n1236", "n1237", "n1238", "n1231"], + "tags": { + "building": "house" + } + }, + "w273": { + "id": "w273", + "nodes": ["n1239", "n1240", "n1241", "n1242", "n1243", "n1244", "n1245", "n1246", "n1239"], + "tags": { + "building": "house" + } + }, + "w274": { + "id": "w274", + "nodes": ["n1247", "n1248", "n1249", "n1250", "n1247"], + "tags": { + "building": "house" + } + }, + "w275": { + "id": "w275", + "nodes": ["n1251", "n1252", "n1253", "n1254", "n1255", "n1256", "n1251"], + "tags": { + "building": "house" + } + }, + "w276": { + "id": "w276", + "nodes": ["n1257", "n1258", "n1259", "n1260", "n1257"], + "tags": { + "building": "shed" + } + }, + "w277": { + "id": "w277", + "nodes": ["n1261", "n1262", "n1263", "n1264", "n1265", "n1266", "n1267", "n1268", "n1261"], + "tags": { + "building": "house" + } + }, + "w278": { + "id": "w278", + "nodes": ["n1269", "n1270", "n1271", "n1272", "n1273", "n1274", "n1284", "n1269"], + "tags": { + "building": "house" + } + }, + "w279": { + "id": "w279", + "nodes": ["n1275", "n1276", "n1277", "n1278", "n1279", "n1280", "n1275"], + "tags": { + "building": "house" + } + }, + "w28": { + "id": "w28", + "nodes": ["n147", "n148"], + "tags": { + "highway": "footway" + } + }, + "w280": { + "id": "w280", + "nodes": ["n1281", "n1282", "n1283", "n1284"], + "tags": { + "barrier": "fence" + } + }, + "w281": { + "id": "w281", + "nodes": ["n1285", "n1286", "n1287", "n1288", "n1285"], + "tags": { + "building": "house" + } + }, + "w282": { + "id": "w282", + "nodes": ["n1289", "n1290", "n1291", "n1292", "n1293", "n1294", "n1295", "n1296", "n1289"], + "tags": { + "building": "house" + } + }, + "w283": { + "id": "w283", + "nodes": ["n1297", "n1298", "n1299", "n1300", "n1301", "n1302", "n1297"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w284": { + "id": "w284", + "nodes": ["n1303", "n1304", "n1305", "n1306", "n1307", "n1308", "n1309", "n1310", "n1311", "n1312", "n1303"], + "tags": { + "building": "house" + } + }, + "w285": { + "id": "w285", + "nodes": ["n1313", "n1314", "n1315", "n1316", "n1313"], + "tags": { + "building": "house" + } + }, + "w286": { + "id": "w286", + "nodes": [ + "n1317", + "n1318", + "n1319", + "n1320", + "n1321", + "n1322", + "n1323", + "n1324", + "n1325", + "n1326", + "n1327", + "n1328", + "n1329", + "n1330", + "n1317" + ], + "tags": { + "building": "house" + } + }, + "w287": { + "id": "w287", + "nodes": ["n1331", "n1332", "n1333", "n1334", "n1465", "n1335", "n1336", "n1331"], + "tags": { + "building": "yes" + } + }, + "w288": { + "id": "w288", + "nodes": [ + "n1349", + "n1350", + "n1351", + "n1352", + "n1353", + "n1354", + "n1355", + "n1337", + "n1338", + "n1341", + "n1342", + "n1343", + "n1344", + "n1345", + "n1346", + "n1347", + "n1348", + "n1339", + "n1340", + "n1349" + ], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w289": { + "id": "w289", + "nodes": ["n1356", "n1331"], + "tags": { + "barrier": "fence" + } + }, + "w29": { + "id": "w29", + "nodes": ["n149", "n874", "n150", "n151", "n897", "n898", "n875", "n152"], + "tags": { + "highway": "service", + "oneway": "yes" + } + }, + "w290": { + "id": "w290", + "nodes": ["n1357", "n1358", "n1359", "n1360", "n1357"], + "tags": { + "building": "shed" + } + }, + "w291": { + "id": "w291", + "nodes": ["n1358", "n1361", "n1362"], + "tags": { + "barrier": "fence" + } + }, + "w292": { + "id": "w292", + "nodes": ["n1363", "n1364", "n1365", "n1366", "n1367", "n1368", "n1363"], + "tags": { + "building": "house" + } + }, + "w293": { + "id": "w293", + "nodes": ["n1369", "n1370", "n1371", "n1372", "n1373", "n1374", "n1369"], + "tags": { + "leisure": "swimming_pool" + } + }, + "w294": { + "id": "w294", + "nodes": ["n1367", "n1375", "n1376", "n1377"], + "tags": { + "barrier": "fence" + } + }, + "w295": { + "id": "w295", + "nodes": ["n1378", "n1379", "n1380", "n1381", "n1378"], + "tags": { + "building": "house" + } + }, + "w296": { + "id": "w296", + "nodes": ["n1382", "n1383", "n1384", "n1385", "n1386", "n1387", "n1382"], + "tags": { + "building": "house" + } + }, + "w297": { + "id": "w297", + "nodes": ["n1388", "n1389", "n1390", "n1391", "n1392", "n1393", "n1388"], + "tags": { + "building": "house" + } + }, + "w298": { + "id": "w298", + "nodes": ["n1394", "n1395", "n1396", "n1397", "n1394"], + "tags": { + "building": "house" + } + }, + "w299": { + "id": "w299", + "nodes": ["n1398", "n1399", "n1400", "n1401", "n1398"], + "tags": { + "access": "private3", + "leisure": "swimming_pool" + } + }, + "w3": { + "id": "w3", + "nodes": ["n1", "n2"], + "tags": { + "highway": "track", + "name": "Water Street" + } + }, + "w30": { + "id": "w30", + "nodes": ["n153", "n154", "n155", "n156", "n153"], + "tags": { + "amenity": "parking" + } + }, + "w300": { + "id": "w300", + "nodes": ["n1402", "n1403", "n1404", "n1405", "n1406", "n1407", "n1408", "n1409", "n1410", "n1411", "n1412", "n1413", "n1402"], + "tags": { + "building": "house" + } + }, + "w301": { + "id": "w301", + "nodes": ["n1414", "n1415", "n1416", "n1417", "n1414"], + "tags": { + "building": "garage" + } + }, + "w302": { + "id": "w302", + "nodes": ["n1406", "n1418", "n1419", "n1403"], + "tags": { + "barrier": "fence" + } + }, + "w303": { + "id": "w303", + "nodes": ["n1423", "n1424", "n1425", "n1426", "n1427", "n1428", "n1429", "n1430", "n1431", "n1432", "n1423"], + "tags": { + "building": "house" + } + }, + "w304": { + "id": "w304", + "nodes": [ + "n1433", + "n1434", + "n1435", + "n1446", + "n1436", + "n1437", + "n1438", + "n1439", + "n1444", + "n1440", + "n1441", + "n1445", + "n1442", + "n1443", + "n1433" + ], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w305": { + "id": "w305", + "nodes": ["n1447", "n1448", "n1452", "n1453", "n1454", "n1451", "n1449", "n1450", "n1447"], + "tags": { + "building": "house" + } + }, + "w306": { + "id": "w306", + "nodes": ["n1455", "n1456", "n1457", "n1458", "n1455"], + "tags": { + "building": "shed" + } + }, + "w307": { + "id": "w307", + "nodes": ["n1459", "n1460", "n1461", "n1462", "n1459"], + "tags": { + "building": "shed" + } + }, + "w308": { + "id": "w308", + "nodes": ["n1463", "n1464"], + "tags": { + "barrier": "fence" + } + }, + "w309": { + "id": "w309", + "nodes": ["n1465", "n1466", "n1467", "n1468"], + "tags": { + "barrier": "fence" + } + }, + "w31": { + "id": "w31", + "nodes": ["n157", "n605", "n158"], + "tags": { + "highway": "service" + } + }, + "w310": { + "id": "w310", + "nodes": ["n1469", "n1481", "n1463"], + "tags": { + "barrier": "hedge" + } + }, + "w311": { + "id": "w311", + "nodes": ["n1470", "n1471", "n1472", "n1473", "n1474", "n1475", "n1480", "n1476", "n1477", "n1478", "n1479", "n1470"], + "tags": { + "building": "house" + } + }, + "w312": { + "id": "w312", + "nodes": ["n1480", "n1481"], + "tags": { + "barrier": "wall" + } + }, + "w313": { + "id": "w313", + "nodes": ["n1482", "n1483", "n1484", "n1485", "n1486", "n1487", "n1488", "n1489", "n1490", "n1491", "n1482"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w314": { + "id": "w314", + "nodes": [ + "n1492", + "n1493", + "n1494", + "n1495", + "n1496", + "n1497", + "n1498", + "n1499", + "n1500", + "n1501", + "n1502", + "n1503", + "n1504", + "n1505", + "n1492" + ], + "tags": { + "building": "house" + } + }, + "w315": { + "id": "w315", + "nodes": ["n1506", "n1507", "n1508", "n1509", "n1510", "n1511", "n1512", "n1513", "n1514", "n1515", "n1506"], + "tags": { + "building": "house" + } + }, + "w316": { + "id": "w316", + "nodes": ["n1516", "n1517", "n1518", "n1519", "n1520", "n1521", "n1522", "n1523", "n1516"], + "tags": { + "building": "house" + } + }, + "w317": { + "id": "w317", + "nodes": ["n1524", "n1525", "n1526", "n1527", "n1528", "n1529", "n1530", "n1531", "n1524"], + "tags": { + "building": "house" + } + }, + "w318": { + "id": "w318", + "nodes": ["n1532", "n1533"], + "tags": { + "barrier": "fence" + } + }, + "w319": { + "id": "w319", + "nodes": ["n1534", "n1532", "n1535"], + "tags": { + "barrier": "fence" + } + }, + "w32": { + "id": "w32", + "nodes": ["n159", "n160", "n161", "n162", "n159"], + "tags": { + "amenity": "parking" + } + }, + "w320": { + "id": "w320", + "nodes": ["n1536", "n1537", "n1538", "n1539", "n1536"], + "tags": { + "building": "shed" + } + }, + "w321": { + "id": "w321", + "nodes": ["n1540", "n1541", "n1542", "n1543", "n1540"], + "tags": { + "building": "shed" + } + }, + "w322": { + "id": "w322", + "nodes": ["n1544", "n1545", "n1546", "n1547", "n1544"], + "tags": { + "building": "shed" + } + }, + "w323": { + "id": "w323", + "nodes": ["n1548", "n1549", "n1550", "n1551", "n1548"], + "tags": { + "building": "house" + } + }, + "w324": { + "id": "w324", + "nodes": ["n1552", "n1553", "n1554", "n1555", "n1556", "n1557", "n1558", "n1559", "n1552"], + "tags": { + "building": "house" + } + }, + "w325": { + "id": "w325", + "nodes": ["n1560", "n1561", "n1562", "n1563", "n1564", "n1565", "n1566", "n1567", "n1560"], + "tags": { + "building": "house" + } + }, + "w326": { + "id": "w326", + "nodes": ["n1561", "n1568", "n1569", "n1570"], + "tags": { + "barrier": "wall" + } + }, + "w327": { + "id": "w327", + "nodes": ["n1571", "n1572"], + "tags": { + "barrier": "fence" + } + }, + "w328": { + "id": "w328", + "nodes": ["n1573", "n1574", "n1575", "n1576", "n1573"], + "tags": { + "building": "house" + } + }, + "w329": { + "id": "w329", + "nodes": ["n1577", "n1578", "n1579", "n1580", "n1581", "n1582", "n1583", "n1584", "n1585", "n1586", "n1577"], + "tags": { + "building": "house" + } + }, + "w33": { + "id": "w33", + "nodes": ["n157", "n163"], + "tags": { + "highway": "service" + } + }, + "w330": { + "id": "w330", + "nodes": ["n1587", "n1588", "n1589", "n1590", "n1591", "n1592", "n1593", "n1594", "n1587"], + "tags": { + "building": "house" + } + }, + "w331": { + "id": "w331", + "nodes": ["n1595", "n1596", "n1597", "n1598", "n1599", "n1600", "n1601", "n1595"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w332": { + "id": "w332", + "nodes": ["n1602", "n1603", "n1604", "n1605", "n1606", "n1607", "n1608", "n1609", "n1611", "n1610", "n1612", "n1613", "n1602"], + "tags": { + "building": "house" + } + }, + "w333": { + "id": "w333", + "nodes": ["n2018", "n1626", "n1627", "n2017", "n2018"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + } + }, + "w334": { + "id": "w334", + "nodes": ["n2", "n3", "n2764"], + "tags": { + "highway": "service", + "name": "Water Street" + } + }, + "w335": { + "id": "w335", + "nodes": ["n3", "n1628", "n1614"], + "tags": { + "highway": "service" + } + }, + "w336": { + "id": "w336", + "nodes": ["n3198", "n4545", "n2747"], + "tags": { + "highway": "residential", + "name": "Morris Avenue" + } + }, + "w337": { + "id": "w337", + "nodes": ["n1629", "n3504"], + "tags": { + "highway": "service", + "service": "alley", + "surface": "unpaved" + } + }, + "w338": { + "id": "w338", + "nodes": ["n1813", "n1635", "n1814", "n1634", "n1815", "n1632", "n1816", "n1817"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } + }, + "w339": { + "id": "w339", + "nodes": ["n1827", "n4684", "n4690", "n1842", "n4686", "n4685", "n1826", "n1828", "n1846", "n1645", "n1637", "n4703", "n1641"], + "tags": { + "highway": "residential", + "name": "Millard Street" + } + }, + "w34": { + "id": "w34", + "nodes": ["n164", "n165", "n166", "n171", "n866", "n172", "n167", "n168", "n169", "n910", "n170", "n164"], + "tags": { + "amenity": "parking" + } + }, + "w340": { + "id": "w340", + "nodes": ["n1824", "n1825"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } + }, + "w341": { + "id": "w341", + "nodes": ["n1701", "n1702", "n1703", "n1704", "n1705", "n1706", "n1701"], + "tags": { + "building": "yes" + } + }, + "w342": { + "id": "w342", + "nodes": ["n1855", "n1860", "n1856", "n1775", "n1804", "n1776", "n1855"], + "tags": { + "amenity": "parking", + "fee": "no" + } + }, + "w343": { + "id": "w343", + "nodes": ["n1757", "n1758", "n1759", "n1760", "n1757"], + "tags": { + "building": "yes" + } + }, + "w344": { + "id": "w344", + "nodes": ["n1659", "n1660", "n1661", "n1662", "n1663", "n1664", "n1665", "n1666", "n1659"], + "tags": { + "building": "school" + } + }, + "w345": { + "id": "w345", + "nodes": ["n1751", "n1752", "n1753", "n1754", "n1755", "n1756", "n1751"], + "tags": { + "building": "yes" + } + }, + "w346": { + "id": "w346", + "nodes": ["n1641", "n1676", "n1673", "n1639", "n1810", "n1642", "n1849", "n4759", "n1845"], + "tags": { + "highway": "residential", + "name": "Douglas Avenue" + } + }, + "w347": { + "id": "w347", + "nodes": [ + "n1642", + "n1643", + "n1031", + "n1630", + "n845", + "n1631", + "n816", + "n1831", + "n902", + "n905", + "n152", + "n149", + "n1832", + "n1850", + "n878", + "n1833", + "n1852", + "n42", + "n1834", + "n61", + "n60", + "n1851", + "n1835" + ], + "tags": { + "highway": "primary", + "name": "Michigan Avenue" + } + }, + "w348": { + "id": "w348", + "nodes": ["n1650", "n1651", "n1652", "n1653", "n1654", "n1655", "n1656", "n1657", "n1658", "n1650"], + "tags": { + "leisure": "playground" + } + }, + "w349": { + "id": "w349", + "nodes": ["n1861", "n1818", "n1819", "n1820", "n1821", "n1825", "n1823", "n1639"], + "tags": { + "highway": "service" + } + }, + "w35": { + "id": "w35", + "nodes": ["n168", "n167", "n172"], + "tags": { + "barrier": "fence", + "fence_type": "chain_link" + } + }, + "w350": { + "id": "w350", + "nodes": ["n1783", "n1819", "n1784", "n1857", "n1861", "n1858", "n1783"], + "tags": { + "amenity": "parking" + } + }, + "w351": { + "id": "w351", + "nodes": ["n1717", "n1718", "n1719", "n1720", "n1717"], + "tags": { + "building": "yes" + } + }, + "w352": { + "id": "w352", + "nodes": ["n1743", "n1744", "n1745", "n1746", "n1747", "n1748", "n1749", "n1750", "n1743"], + "tags": { + "building": "yes" + } + }, + "w353": { + "id": "w353", + "nodes": ["n1637", "n1636", "n1029", "n4715", "n1630"], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue" + } + }, + "w354": { + "id": "w354", + "nodes": ["n1713", "n1714", "n1715", "n1716", "n1713"], + "tags": { + "building": "yes" + } + }, + "w355": { + "id": "w355", + "nodes": ["n1689", "n1690", "n1691", "n1692", "n1693", "n1694", "n1695", "n1696", "n1689"], + "tags": { + "building": "yes" + } + }, + "w356": { + "id": "w356", + "nodes": ["n1631", "n4717", "n1840", "n4745", "n1841"], + "tags": { + "highway": "residential", + "name": "Hook Avenue" + } + }, + "w357": { + "id": "w357", + "nodes": ["n1737", "n1738", "n1739", "n1740", "n1741", "n1742", "n1737"], + "tags": { + "building": "yes" + } + }, + "w358": { + "id": "w358", + "nodes": ["n1707", "n1708", "n1709", "n1710", "n1711", "n1712", "n1707"], + "tags": { + "building": "yes" + } + }, + "w359": { + "id": "w359", + "nodes": ["n1829", "n4695", "n4697", "n1843", "n4698", "n4701", "n1638", "n4702", "n4705", "n1636", "n4706", "n4707", "n1633"], + "tags": { + "highway": "residential", + "name": "South Street" + } + }, + "w36": { + "id": "w36", + "nodes": ["n910", "n171", "n866", "n172"], + "tags": { + "barrier": "fence", + "fence_type": "chain_link" + } + }, + "w360": { + "id": "w360", + "nodes": ["n1767", "n1768", "n1769", "n1770", "n1771", "n1772", "n1773", "n1774", "n1767"], + "tags": { + "building": "yes" + } + }, + "w361": { + "id": "w361", + "nodes": [ + "n1859", + "n1860", + "n1804", + "n1640", + "n1805", + "n1817", + "n1806", + "n1644", + "n1811", + "n1807", + "n1808", + "n3419", + "n1812", + "n1790", + "n3418", + "n3744", + "n1809", + "n1813", + "n1810" + ], + "tags": { + "highway": "service" + } + }, + "w362": { + "id": "w362", + "nodes": ["n1639", "n1683", "n4710", "n1633"], + "tags": { + "highway": "residential", + "name": "South Street", + "oneway": "yes" + } + }, + "w363": { + "id": "w363", + "nodes": ["n1646", "n1647", "n1648", "n1649", "n1646"], + "tags": { + "leisure": "pitch", + "pitch": "basketball" + } + }, + "w364": { + "id": "w364", + "nodes": [ + "n3820", + "n3821", + "n3822", + "n3823", + "n3824", + "n3825", + "n3826", + "n3827", + "n3828", + "n3829", + "n3830", + "n3838", + "n3839", + "n3820" + ], + "tags": { + "amenity": "school", + "name": "Three Rivers Middle School" + } + }, + "w365": { + "id": "w365", + "nodes": [ + "n1721", + "n1722", + "n1723", + "n1724", + "n1725", + "n1726", + "n1727", + "n1728", + "n1729", + "n1730", + "n1731", + "n1732", + "n1733", + "n1734", + "n1735", + "n1736", + "n1721" + ], + "tags": { + "building": "yes" + } + }, + "w366": { + "id": "w366", + "nodes": ["n1791", "n1792", "n1793", "n1794", "n1795", "n1796", "n1798", "n1799", "n1800", "n1801", "n1802", "n1803", "n1791"], + "tags": { + "amenity": "parking" + } + }, + "w367": { + "id": "w367", + "nodes": ["n1633", "n4708", "n4711", "n1643", "n4712", "n1838", "n4752", "n1839"], + "tags": { + "highway": "residential", + "name": "Grant Avenue" + } + }, + "w368": { + "id": "w368", + "nodes": ["n1853", "n1687", "n1688", "n1854", "n1853"], + "tags": { + "amenity": "library", + "building": "yes", + "name": "Three Rivers Public Library" + } + }, + "w369": { + "id": "w369", + "nodes": ["n1777", "n1778", "n1779", "n1780", "n1781", "n1782", "n1777"], + "tags": { + "amenity": "parking" + } + }, + "w37": { + "id": "w37", + "nodes": ["n173", "n174", "n175", "n176", "n177", "n178", "n179", "n180", "n173"], + "tags": { + "building": "yes" + } + }, + "w370": { + "id": "w370", + "nodes": ["n1645", "n1638", "n858", "n4718", "n1631"], + "tags": { + "highway": "residential", + "name": "Hook Avenue" + } + }, + "w371": { + "id": "w371", + "nodes": ["n3836", "n3835", "n4624", "n3831", "n4632", "n3834", "n3832", "n3833", "n3830", "n3838", "n3839", "n3837", "n3836"], + "tags": { + "amenity": "school", + "name": "Three Rivers High School" + } + }, + "w372": { + "id": "w372", + "nodes": ["n1697", "n1698", "n1699", "n1700", "n1697"], + "tags": { + "building": "yes" + } + }, + "w373": { + "id": "w373", + "nodes": ["n2891", "n1785", "n1786", "n3394", "n1787", "n1788", "n1789", "n1830", "n1836", "n1837", "n1848", "n3409", "n2891"], + "tags": { + "amenity": "parking" + } + }, + "w374": { + "id": "w374", + "nodes": ["n1761", "n1762", "n1763", "n1764", "n1765", "n1766", "n1761"], + "tags": { + "building": "yes" + } + }, + "w375": { + "id": "w375", + "nodes": ["n1822", "n1823"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } + }, + "w376": { + "id": "w376", + "nodes": ["n1677", "n1678", "n1679", "n1680", "n1681", "n1682", "n1677"], + "tags": { + "amenity": "parking" + } + }, + "w377": { + "id": "w377", + "nodes": ["n1676", "n1675", "n1674", "n1673"], + "tags": { + "highway": "service", + "oneway": "yes" + } + }, + "w378": { + "id": "w378", + "nodes": ["n1667", "n1668", "n1669", "n1670", "n1671", "n1672", "n1667"], + "tags": { + "amenity": "school", + "name": "Andrews Elementary School" + } + }, + "w379": { + "id": "w379", + "nodes": ["n1630", "n4714", "n1847", "n4750", "n1844"], + "tags": { + "highway": "residential", + "name": "Lincoln Avenue" + } + }, + "w38": { + "id": "w38", + "nodes": ["n181", "n182", "n183", "n185", "n184", "n181"], + "tags": { + "building": "yes" + } + }, + "w380": { + "id": "w380", + "nodes": ["n1683", "n3745", "n1686", "n1633"], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } + }, + "w381": { + "id": "w381", + "nodes": ["n2022", "n2037"], + "tags": { + "highway": "footway" + } + }, + "w382": { + "id": "w382", + "nodes": ["n1826", "n1863"], + "tags": { + "highway": "residential" + } + }, + "w383": { + "id": "w383", + "nodes": ["n2011", "n2012", "n739", "n2013", "n2014", "n2029", "n2011"], + "tags": { + "amenity": "shelter", + "building": "yes", + "shelter_type": "picnic_shelter" + } + }, + "w384": { + "id": "w384", + "nodes": [ + "n2064", + "n2065", + "n2066", + "n2067", + "n2068", + "n2069", + "n2070", + "n2071", + "n2072", + "n2073", + "n2074", + "n2075", + "n2076", + "n2077", + "n2078", + "n2079", + "n2064" + ], + "tags": { + "building": "yes" + } + }, + "w385": { + "id": "w385", + "nodes": ["n1923", "n1924", "n1925", "n1926", "n1927", "n1928", "n1930", "n1929", "n1923"], + "tags": { + "natural": "water" + } + }, + "w386": { + "id": "w386", + "nodes": [ + "n1827", + "n14", + "n1886", + "n15", + "n1887", + "n16", + "n1888", + "n18", + "n17", + "n1889", + "n12", + "n13", + "n1890", + "n485", + "n1864", + "n11", + "n10", + "n2058", + "n2036", + "n1865", + "n2020", + "n9", + "n8", + "n1866", + "n295", + "n1867" + ], + "tags": { + "highway": "service" + } + }, + "w387": { + "id": "w387", + "nodes": ["n1846", "n1843", "n865", "n157", "n4721", "n1831"], + "tags": { + "highway": "residential", + "name": "Andrews Street" + } + }, + "w388": { + "id": "w388", + "nodes": ["n2019", "n2020", "n2021", "n2022", "n2023", "n2024", "n2025", "n2026", "n2027", "n2028", "n2029"], + "tags": { + "highway": "footway" + } + }, + "w389": { + "id": "w389", + "nodes": [ + "n2217", + "n2222", + "n2221", + "n2219", + "n1877", + "n1879", + "n1882", + "n1883", + "n484", + "n1885", + "n483", + "n1880", + "n1881", + "n1878", + "n1884", + "n2223" + ], + "tags": { + "name": "Rocky River", + "waterway": "river" + } + }, + "w39": { + "id": "w39", + "nodes": ["n185", "n186", "n187"], + "tags": { + "barrier": "fence" + } + }, + "w390": { + "id": "w390", + "nodes": ["n2050", "n2051", "n2052", "n2053", "n2050"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + } + }, + "w391": { + "id": "w391", + "nodes": [ + "n2089", + "n2090", + "n2091", + "n2092", + "n2093", + "n2094", + "n2311", + "n2095", + "n2096", + "n2097", + "n2098", + "n1174", + "n2099", + "n751", + "n43", + "n2062", + "n4725", + "n873", + "n1832" + ], + "tags": { + "highway": "residential", + "name": "Constantine Street" + } + }, + "w392": { + "id": "w392", + "nodes": ["n1869", "n212", "n436", "n2281", "n2081"], + "tags": { + "highway": "primary", + "name": "Michigan Avenue" + } + }, + "w393": { + "id": "w393", + "nodes": ["n1829", "n611", "n144", "n4694", "n602", "n1832"], + "tags": { + "highway": "tertiary", + "name": "Constantine Street" + } + }, + "w394": { + "id": "w394", + "nodes": ["n1997", "n1998", "n2000", "n1999"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } + }, + "w395": { + "id": "w395", + "nodes": ["n1835", "n1869"], + "tags": { + "bridge": "yes", + "highway": "primary", + "name": "Michigan Avenue" + } + }, + "w396": { + "id": "w396", + "nodes": ["n2000", "n2001"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } + }, + "w397": { + "id": "w397", + "nodes": ["n2082", "n4688", "n1842", "n308", "n498", "n509", "n246", "n241", "n1867", "n4645", "n293", "n1834"], + "tags": { + "highway": "residential", + "name": "Spring Street" + } + }, + "w398": { + "id": "w398", + "nodes": ["n2015", "n2016", "n2017", "n2018", "n2015"], + "tags": { + "building": "yes" + } + }, + "w399": { + "id": "w399", + "nodes": ["n2062", "n45", "n2063", "n877", "n41", "n1852"], + "tags": { + "highway": "service" + } + }, + "w4": { + "id": "w4", + "nodes": ["n7", "n38", "n378", "n379", "n7"], + "tags": { + "building": "yes" + } + }, + "w40": { + "id": "w40", + "nodes": ["n188", "n189", "n190", "n191", "n192", "n193", "n188"], + "tags": { + "building": "house" + } + }, + "w400": { + "id": "w400", + "nodes": ["n1968", "n1969", "n1970", "n1971", "n2007", "n1972", "n1973", "n1978", "n1974", "n1977", "n1976", "n1975", "n1968"], + "tags": { + "amenity": "parking" + } + }, + "w401": { + "id": "w401", + "nodes": ["n1963", "n1964"], + "tags": { + "bridge": "yes", + "highway": "footway" + } + }, + "w402": { + "id": "w402", + "nodes": ["n1892", "n1893", "n1894", "n1895", "n1896", "n1897", "n1898", "n1899", "n1900", "n1901", "n1902", "n1903", "n1892"], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "112", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Spring Street", + "barrier": "fence", + "name": "Scidmore Park Petting Zoo", + "tourism": "zoo", + "zoo": "petting_zoo" + } + }, + "w403": { + "id": "w403", + "nodes": ["n1957", "n1958", "n1959", "n481", "n1960", "n482", "n1949"], + "tags": { + "highway": "path" + } + }, + "w404": { + "id": "w404", + "nodes": ["n2281", "n27", "n330", "n1987", "n1988"], + "tags": { + "highway": "service" + } + }, + "w405": { + "id": "w405", + "nodes": ["n2249", "n2269", "n2270", "n2271", "n2272", "n454", "n455", "n2273"], + "tags": { + "highway": "path", + "name": "Riverwalk Trail" + } + }, + "w406": { + "id": "w406", + "nodes": ["n1947", "n1624", "n1625", "n2030", "n2033", "n4658", "n4659", "n2031", "n2032", "n2021"], + "tags": { + "highway": "footway" + } + }, + "w407": { + "id": "w407", + "nodes": ["n2034", "n2036", "n2009"], + "tags": { + "highway": "footway" + } + }, + "w408": { + "id": "w408", + "nodes": ["n1964", "n1965", "n2002", "n1966", "n21", "n1967", "n1969"], + "tags": { + "highway": "footway" + } + }, + "w409": { + "id": "w409", + "nodes": [ + "n1904", + "n1905", + "n1906", + "n1907", + "n1908", + "n1909", + "n748", + "n1910", + "n747", + "n1911", + "n749", + "n1912", + "n750", + "n1913", + "n1922", + "n1914", + "n1921", + "n1915", + "n746", + "n1916", + "n745", + "n1917", + "n744", + "n1918", + "n743", + "n742", + "n1919", + "n741", + "n1920", + "n740", + "n1904" + ], + "tags": { + "natural": "water" + } + }, + "w41": { + "id": "w41", + "nodes": ["n194", "n195", "n196", "n197", "n198", "n199", "n200", "n201", "n202", "n203", "n204", "n205", "n194"], + "tags": { + "building": "house" + } + }, + "w410": { + "id": "w410", + "nodes": ["n1868", "n2088"], + "tags": { + "bridge": "yes", + "name": "Conrail Railroad", + "railway": "rail" + } + }, + "w411": { + "id": "w411", + "nodes": ["n2010", "n2019", "n2009", "n2008", "n2058", "n2035", "n1961", "n1962", "n1947", "n1963"], + "tags": { + "highway": "footway" + } + }, + "w412": { + "id": "w412", + "nodes": [ + "n2290", + "n2043", + "n2044", + "n2045", + "n1872", + "n2041", + "n1873", + "n2042", + "n1874", + "n2046", + "n2047", + "n2048", + "n2049", + "n2290" + ], + "tags": { + "addr:city": "Three Rivers", + "addr:housenumber": "112", + "addr:postcode": "49093", + "addr:state": "MI", + "addr:street": "Spring Street", + "leisure": "park", + "name": "Scidmore Park" + } + }, + "w413": { + "id": "w413", + "nodes": ["n1831", "n876", "n4720", "n821", "n2089"], + "tags": { + "highway": "residential", + "name": "Andrews Street" + } + }, + "w414": { + "id": "w414", + "nodes": ["n2002", "n2003", "n2004", "n2005", "n2006", "n2007"], + "tags": { + "highway": "footway" + } + }, + "w415": { + "id": "w415", + "nodes": ["n1979", "n1980", "n1981", "n1982", "n1979"], + "tags": { + "amenity": "parking" + } + }, + "w416": { + "id": "w416", + "nodes": ["n2054", "n2055", "n2056", "n2057", "n2054"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + } + }, + "w417": { + "id": "w417", + "nodes": [ + "n2291", + "n2292", + "n2293", + "n2294", + "n2295", + "n2296", + "n2297", + "n2298", + "n2299", + "n1098", + "n2300", + "n2301", + "n2302", + "n2303", + "n2304", + "n2059", + "n2060", + "n2305", + "n2307", + "n2306", + "n2310", + "n2308", + "n2309", + "n2291" + ], + "tags": { + "leisure": "park", + "name": "Memory Isle Park" + } + }, + "w418": { + "id": "w418", + "nodes": ["n2033", "n2034", "n2035"], + "tags": { + "highway": "footway" + } + }, + "w419": { + "id": "w419", + "nodes": ["n1983", "n1984", "n1985", "n1986", "n1983"], + "tags": { + "amenity": "parking" + } + }, + "w42": { + "id": "w42", + "nodes": ["n206", "n207", "n208", "n209", "n210", "n211", "n206"], + "tags": { + "building": "house" + } + }, "w420": { "id": "w420", + "nodes": ["n1840", "n4746", "n4748", "n1847", "n4749", "n4755", "n1838", "n4754", "n4756", "n1849"], "tags": { "highway": "residential", "name": "French Street" - }, - "nodes": ["n1840", "n1847", "n1838", "n1849"] + } }, "w421": { "id": "w421", + "nodes": ["n2337", "n2268"], "tags": { "highway": "path" - }, - "nodes": ["n2337", "n2268"] + } }, "w422": { "id": "w422", - "tags": { - "natural": "water" - }, "nodes": [ "n2338", "n2339", @@ -3748,13 +23337,13 @@ "n2347", "n2348", "n2338" - ] + ], + "tags": { + "natural": "water" + } }, "w423": { "id": "w423", - "tags": { - "natural": "wetland" - }, "nodes": [ "n2180", "n2349", @@ -3803,22 +23392,21 @@ "n2323", "n2403", "n2180" - ] + ], + "tags": { + "natural": "wetland" + } }, "w424": { "id": "w424", + "nodes": ["n2324", "n2316", "n1841", "n2315", "n2314", "n1844", "n1839", "n4758", "n1845"], "tags": { "highway": "residential", "name": "Pealer Street" - }, - "nodes": ["n2324", "n2316", "n1841", "n2315", "n2314", "n1844", "n1839", "n1845"] + } }, "w425": { "id": "w425", - "tags": { - "highway": "path", - "name": "Riverwalk Trail" - }, "nodes": [ "n2267", "n2337", @@ -3837,1985 +23425,455 @@ "n2326", "n2325", "n2266" - ] - }, - "n2405": { - "id": "n2405", - "loc": [-85.63666, 41.944492], + ], "tags": { - "name": "Memory Isle", - "place": "island" + "highway": "path", + "name": "Riverwalk Trail" } }, - "n2406": { - "id": "n2406", - "loc": [-85.635, 41.946389], - "tags": { - "amenity": "post_office", - "name": "Three Rivers Post Office" - } - }, - "n2407": { - "id": "n2407", - "loc": [-85.633676, 41.946036] - }, - "n2408": { - "id": "n2408", - "loc": [-85.633736, 41.946078] - }, - "n2409": { - "id": "n2409", - "loc": [-85.633997, 41.946185] - }, - "n2410": { - "id": "n2410", - "loc": [-85.634448, 41.945626], - "tags": { - "highway": "traffic_signals", - "traffic_signals": "signal" - } - }, - "n2411": { - "id": "n2411", - "loc": [-85.63456, 41.945731], - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n2412": { - "id": "n2412", - "loc": [-85.634592, 41.94578] - }, - "n2413": { - "id": "n2413", - "loc": [-85.634607, 41.945815] - }, - "n2414": { - "id": "n2414", - "loc": [-85.634614, 41.945864] - }, - "n2415": { - "id": "n2415", - "loc": [-85.636066, 41.946185] - }, - "n2416": { - "id": "n2416", - "loc": [-85.636128, 41.946352] - }, - "n2417": { - "id": "n2417", - "loc": [-85.636142, 41.946452] - }, - "n2418": { - "id": "n2418", - "loc": [-85.635327, 41.945292] - }, - "n2419": { - "id": "n2419", - "loc": [-85.635648, 41.94558] - }, - "n2420": { - "id": "n2420", - "loc": [-85.635769, 41.945729] - }, - "n2421": { - "id": "n2421", - "loc": [-85.637349, 41.945897] - }, - "n2423": { - "id": "n2423", - "loc": [-85.635942, 41.94598] - }, - "n2424": { - "id": "n2424", - "loc": [-85.636443, 41.946042] - }, - "n2425": { - "id": "n2425", - "loc": [-85.635819, 41.946052] - }, - "n2426": { - "id": "n2426", - "loc": [-85.636669, 41.946025] - }, - "n2427": { - "id": "n2427", - "loc": [-85.636832, 41.946005] - }, - "n2428": { - "id": "n2428", - "loc": [-85.637039, 41.945968] - }, - "n2429": { - "id": "n2429", - "loc": [-85.636291, 41.946046] - }, - "n2430": { - "id": "n2430", - "loc": [-85.634005, 41.943367] - }, - "n2431": { - "id": "n2431", - "loc": [-85.633366, 41.943724] - }, - "n2432": { - "id": "n2432", - "loc": [-85.634617, 41.946057] - }, - "n2433": { - "id": "n2433", - "loc": [-85.636534, 41.944793] - }, - "n2434": { - "id": "n2434", - "loc": [-85.637055, 41.945188] - }, - "n2435": { - "id": "n2435", - "loc": [-85.636153, 41.944618] - }, - "n2436": { - "id": "n2436", - "loc": [-85.636803, 41.944944] - }, - "n2437": { - "id": "n2437", - "loc": [-85.633389, 41.945735] - }, - "n2438": { - "id": "n2438", - "loc": [-85.633536, 41.94585] - }, - "n2439": { - "id": "n2439", - "loc": [-85.63363, 41.945993] - }, - "n2440": { - "id": "n2440", - "loc": [-85.633268, 41.94568] - }, - "n2441": { - "id": "n2441", - "loc": [-85.635947, 41.94546] - }, - "n2442": { - "id": "n2442", - "loc": [-85.636277, 41.945268] - }, - "n2443": { - "id": "n2443", - "loc": [-85.635203, 41.944287] - }, - "n2444": { - "id": "n2444", - "loc": [-85.634876, 41.944477] - }, - "n2445": { - "id": "n2445", - "loc": [-85.634975, 41.944419] - }, - "n2446": { - "id": "n2446", - "loc": [-85.633877, 41.943438] - }, - "n2447": { - "id": "n2447", - "loc": [-85.63508, 41.945113] - }, - "n2448": { - "id": "n2448", - "loc": [-85.635372, 41.944932] - }, - "n2449": { - "id": "n2449", - "loc": [-85.636594, 41.945935] - }, - "n2450": { - "id": "n2450", - "loc": [-85.636901, 41.945747] - }, - "n2451": { - "id": "n2451", - "loc": [-85.636329, 41.945228] - }, - "n2452": { - "id": "n2452", - "loc": [-85.636025, 41.945417] - }, - "n2453": { - "id": "n2453", - "loc": [-85.634002, 41.944644] - }, - "n2454": { - "id": "n2454", - "loc": [-85.63407, 41.944692] - }, - "n2455": { - "id": "n2455", - "loc": [-85.634114, 41.944756] - }, - "n2456": { - "id": "n2456", - "loc": [-85.633762, 41.944809] - }, - "n2457": { - "id": "n2457", - "loc": [-85.634184, 41.944807] - }, - "n2458": { - "id": "n2458", - "loc": [-85.634291, 41.944819] - }, - "n2459": { - "id": "n2459", - "loc": [-85.634639, 41.944845] - }, - "n2460": { - "id": "n2460", - "loc": [-85.633822, 41.944861] - }, - "n2461": { - "id": "n2461", - "loc": [-85.63411, 41.944855] - }, - "n2462": { - "id": "n2462", - "loc": [-85.63435, 41.944872] - }, - "n2463": { - "id": "n2463", - "loc": [-85.63441, 41.944903] - }, - "n2464": { - "id": "n2464", - "loc": [-85.633883, 41.944913] - }, - "n2465": { - "id": "n2465", - "loc": [-85.634164, 41.944896] - }, - "n2466": { - "id": "n2466", - "loc": [-85.633487, 41.944926] - }, - "n2467": { - "id": "n2467", - "loc": [-85.634736, 41.944929] - }, - "n2468": { - "id": "n2468", - "loc": [-85.633944, 41.944965] - }, - "n2469": { - "id": "n2469", - "loc": [-85.633555, 41.944983] - }, - "n2470": { - "id": "n2470", - "loc": [-85.633995, 41.945013] - }, - "n2471": { - "id": "n2471", - "loc": [-85.633614, 41.945037] - }, - "n2472": { - "id": "n2472", - "loc": [-85.634848, 41.945031] - }, - "n2473": { - "id": "n2473", - "loc": [-85.634049, 41.945061] - }, - "n2474": { - "id": "n2474", - "loc": [-85.633678, 41.945094] - }, - "n2475": { - "id": "n2475", - "loc": [-85.63317, 41.945111] - }, - "n2476": { - "id": "n2476", - "loc": [-85.633357, 41.945103] - }, - "n2477": { - "id": "n2477", - "loc": [-85.633728, 41.945136] - }, - "n2478": { - "id": "n2478", - "loc": [-85.634146, 41.945148] - }, - "n2479": { - "id": "n2479", - "loc": [-85.633416, 41.945157] - }, - "n2480": { - "id": "n2480", - "loc": [-85.634625, 41.945172] - }, - "n2481": { - "id": "n2481", - "loc": [-85.633239, 41.945174] - }, - "n2482": { - "id": "n2482", - "loc": [-85.63469, 41.945185] - }, - "n2483": { - "id": "n2483", - "loc": [-85.634661, 41.945203] - }, - "n2484": { - "id": "n2484", - "loc": [-85.63348, 41.945214] - }, - "n2485": { - "id": "n2485", - "loc": [-85.633578, 41.945221] - }, - "n2486": { - "id": "n2486", - "loc": [-85.634742, 41.945231] - }, - "n2487": { - "id": "n2487", - "loc": [-85.634251, 41.94525] - }, - "n2488": { - "id": "n2488", - "loc": [-85.633524, 41.945254] - }, - "n2489": { - "id": "n2489", - "loc": [-85.63468, 41.945271] - }, - "n2490": { - "id": "n2490", - "loc": [-85.633885, 41.945272] - }, - "n2491": { - "id": "n2491", - "loc": [-85.634795, 41.945288] - }, - "n2492": { - "id": "n2492", - "loc": [-85.634742, 41.94532] - }, - "n2493": { - "id": "n2493", - "loc": [-85.633946, 41.945327] - }, - "n2494": { - "id": "n2494", - "loc": [-85.634844, 41.945331] - }, - "n2495": { - "id": "n2495", - "loc": [-85.63435, 41.945349] - }, - "n2496": { - "id": "n2496", - "loc": [-85.633733, 41.945357] - }, - "n2497": { - "id": "n2497", - "loc": [-85.633987, 41.945375] - }, - "n2498": { - "id": "n2498", - "loc": [-85.634911, 41.945419] - }, - "n2499": { - "id": "n2499", - "loc": [-85.634049, 41.945431] - }, - "n2500": { - "id": "n2500", - "loc": [-85.633705, 41.945461] - }, - "n2501": { - "id": "n2501", - "loc": [-85.633642, 41.945408] - }, - "n2502": { - "id": "n2502", - "loc": [-85.634493, 41.945475] - }, - "n2503": { - "id": "n2503", - "loc": [-85.634106, 41.945484] - }, - "n2504": { - "id": "n2504", - "loc": [-85.635008, 41.945505] - }, - "n2505": { - "id": "n2505", - "loc": [-85.633757, 41.945506] - }, - "n2506": { - "id": "n2506", - "loc": [-85.634542, 41.945519] - }, - "n2507": { - "id": "n2507", - "loc": [-85.634162, 41.945536] - }, - "n2508": { - "id": "n2508", - "loc": [-85.633843, 41.945547] - }, - "n2509": { - "id": "n2509", - "loc": [-85.634919, 41.94556] - }, - "n2510": { - "id": "n2510", - "loc": [-85.633818, 41.945561] - }, - "n2511": { - "id": "n2511", - "loc": [-85.634638, 41.94559] - }, - "n2512": { - "id": "n2512", - "loc": [-85.633901, 41.945598] - }, - "n2513": { - "id": "n2513", - "loc": [-85.634257, 41.945626] - }, - "n2514": { - "id": "n2514", - "loc": [-85.633967, 41.945652] - }, - "n2515": { - "id": "n2515", - "loc": [-85.634735, 41.945676] - }, - "n2516": { - "id": "n2516", - "loc": [-85.635057, 41.945683] - }, - "n2517": { - "id": "n2517", - "loc": [-85.635296, 41.945703] - }, - "n2518": { - "id": "n2518", - "loc": [-85.635112, 41.945703] - }, - "n2519": { - "id": "n2519", - "loc": [-85.634782, 41.945729] - }, - "n2520": { - "id": "n2520", - "loc": [-85.634052, 41.945747] - }, - "n2521": { - "id": "n2521", - "loc": [-85.635296, 41.945757] - }, - "n2522": { - "id": "n2522", - "loc": [-85.635314, 41.945757] - }, - "n2523": { - "id": "n2523", - "loc": [-85.635112, 41.945761] - }, - "n2524": { - "id": "n2524", - "loc": [-85.63484, 41.945778] - }, - "n2525": { - "id": "n2525", - "loc": [-85.635314, 41.945938] - }, - "n2526": { - "id": "n2526", - "loc": [-85.63484, 41.945922] - }, - "n2527": { - "id": "n2527", - "loc": [-85.635461, 41.944879] - }, - "n2528": { - "id": "n2528", - "loc": [-85.636024, 41.945384] - }, - "n2529": { - "id": "n2529", - "loc": [-85.636145, 41.945312] - }, - "n2530": { - "id": "n2530", - "loc": [-85.6356, 41.944797] - }, - "n2531": { - "id": "n2531", - "loc": [-85.635135, 41.944354] - }, - "n2532": { - "id": "n2532", - "loc": [-85.632988, 41.945369] - }, - "n2533": { - "id": "n2533", - "loc": [-85.633376, 41.94563] - }, - "n2534": { - "id": "n2534", - "loc": [-85.633539, 41.945534] - }, - "n2535": { - "id": "n2535", - "loc": [-85.633238, 41.945248] - }, - "n2536": { - "id": "n2536", - "loc": [-85.633166, 41.945216] - }, - "n2537": { - "id": "n2537", - "loc": [-85.633114, 41.945188] - }, - "n2538": { - "id": "n2538", - "loc": [-85.633078, 41.945127] - }, - "n2539": { - "id": "n2539", - "loc": [-85.633066, 41.94508] - }, - "n2540": { - "id": "n2540", - "loc": [-85.633222, 41.945358] - }, - "n2541": { - "id": "n2541", - "loc": [-85.633425, 41.945541] - }, - "n2542": { - "id": "n2542", - "loc": [-85.63299, 41.9455] - }, - "n2543": { - "id": "n2543", - "loc": [-85.634374, 41.944327] - }, - "n2544": { - "id": "n2544", - "loc": [-85.633648, 41.943697] - }, - "n2545": { - "id": "n2545", - "loc": [-85.633533, 41.943764] - }, - "n2546": { - "id": "n2546", - "loc": [-85.634239, 41.944417] - }, - "n2547": { - "id": "n2547", - "loc": [-85.634122, 41.944395] - }, - "n2548": { - "id": "n2548", - "loc": [-85.634235, 41.944326] - }, - "n2549": { - "id": "n2549", - "loc": [-85.633613, 41.943787] - }, - "n2550": { - "id": "n2550", - "loc": [-85.633915, 41.943613] - }, - "n2551": { - "id": "n2551", - "loc": [-85.634015, 41.943555] - }, - "n2552": { - "id": "n2552", - "loc": [-85.63433, 41.943839] - }, - "n2553": { - "id": "n2553", - "loc": [-85.634236, 41.943894] - }, - "n2554": { - "id": "n2554", - "loc": [-85.635413, 41.946052] - }, - "n2555": { - "id": "n2555", - "loc": [-85.635405, 41.94569] - }, - "n2556": { - "id": "n2556", - "loc": [-85.635684, 41.945925] - }, - "n2557": { - "id": "n2557", - "loc": [-85.635614, 41.945742] - }, - "n2558": { - "id": "n2558", - "loc": [-85.635401, 41.945745] - }, - "n2559": { - "id": "n2559", - "loc": [-85.635406, 41.945928] - }, - "n2560": { - "id": "n2560", - "loc": [-85.633478, 41.943663] - }, - "n2561": { - "id": "n2561", - "loc": [-85.633291, 41.943526] - }, - "n2562": { - "id": "n2562", - "loc": [-85.633094, 41.943541] - }, - "n2563": { - "id": "n2563", - "loc": [-85.633302, 41.943492] - }, - "n2564": { - "id": "n2564", - "loc": [-85.633047, 41.943623] - }, - "n2565": { - "id": "n2565", - "loc": [-85.633275, 41.943562] - }, - "n2566": { - "id": "n2566", - "loc": [-85.633351, 41.943518] - }, - "n2567": { - "id": "n2567", - "loc": [-85.633224, 41.9434] - }, - "n2568": { - "id": "n2568", - "loc": [-85.633235, 41.943369] - }, - "n2569": { - "id": "n2569", - "loc": [-85.635179, 41.943911] - }, - "n2570": { - "id": "n2570", - "loc": [-85.635146, 41.943918] - }, - "n2571": { - "id": "n2571", - "loc": [-85.634888, 41.943905] - }, - "n2572": { - "id": "n2572", - "loc": [-85.634832, 41.943911] - }, - "n2573": { - "id": "n2573", - "loc": [-85.634638, 41.944007] - }, - "n2574": { - "id": "n2574", - "loc": [-85.634568, 41.94405] - }, - "n2575": { - "id": "n2575", - "loc": [-85.635994, 41.94501] - }, - "n2576": { - "id": "n2576", - "loc": [-85.636388, 41.944608] - }, - "n2577": { - "id": "n2577", - "loc": [-85.636215, 41.944787] - }, - "n2578": { - "id": "n2578", - "loc": [-85.637948, 41.944587] - }, - "n2579": { - "id": "n2579", - "loc": [-85.637849, 41.944567] - }, - "n2580": { - "id": "n2580", - "loc": [-85.637895, 41.944455] - }, - "n2581": { - "id": "n2581", - "loc": [-85.637996, 41.944477] - }, - "n2582": { - "id": "n2582", - "loc": [-85.635525, 41.94337] - }, - "n2583": { - "id": "n2583", - "loc": [-85.637847, 41.943923] - }, - "n2584": { - "id": "n2584", - "loc": [-85.637891, 41.944124] - }, - "n2585": { - "id": "n2585", - "loc": [-85.638167, 41.944229] - }, - "n2586": { - "id": "n2586", - "loc": [-85.638236, 41.944097] - }, - "n2587": { - "id": "n2587", - "loc": [-85.638207, 41.944025] - }, - "n2588": { - "id": "n2588", - "loc": [-85.638141, 41.943997] - }, - "n2589": { - "id": "n2589", - "loc": [-85.638057, 41.944015] - }, - "n2590": { - "id": "n2590", - "loc": [-85.637902, 41.944231] - }, - "n2591": { - "id": "n2591", - "loc": [-85.638134, 41.944307] - }, - "n2592": { - "id": "n2592", - "loc": [-85.638242, 41.944294] - }, - "n2593": { - "id": "n2593", - "loc": [-85.638274, 41.944222] - }, - "n2594": { - "id": "n2594", - "loc": [-85.638236, 41.944174] - }, - "n2595": { - "id": "n2595", - "loc": [-85.638207, 41.944157] - }, - "n2596": { - "id": "n2596", - "loc": [-85.637818, 41.943984] - }, - "n2597": { - "id": "n2597", - "loc": [-85.634996, 41.944439] - }, - "n2598": { - "id": "n2598", - "loc": [-85.633946, 41.945804] - }, - "n2599": { - "id": "n2599", - "loc": [-85.634102, 41.945864] - }, - "n2600": { - "id": "n2600", - "loc": [-85.633819, 41.945756] - }, - "n2601": { - "id": "n2601", - "loc": [-85.634025, 41.945975] - }, - "n2602": { - "id": "n2602", - "loc": [-85.633742, 41.945867] - }, - "n2603": { - "id": "n2603", - "loc": [-85.63373, 41.946004] - }, - "n2604": { - "id": "n2604", - "loc": [-85.633947, 41.946081] - }, - "n2605": { - "id": "n2605", - "loc": [-85.633872, 41.945917] - }, - "n2606": { - "id": "n2606", - "loc": [-85.633825, 41.945985] - }, - "n2607": { - "id": "n2607", - "loc": [-85.633762, 41.94596] - }, - "n2608": { - "id": "n2608", - "loc": [-85.634224, 41.946037] - }, - "n2609": { - "id": "n2609", - "loc": [-85.634357, 41.945851] - }, - "n2610": { - "id": "n2610", - "loc": [-85.634398, 41.945813] - }, - "n2611": { - "id": "n2611", - "loc": [-85.634461, 41.945812] - }, - "n2612": { - "id": "n2612", - "loc": [-85.634501, 41.945852] - }, - "n2613": { - "id": "n2613", - "loc": [-85.634503, 41.94597] - }, - "n2614": { - "id": "n2614", - "loc": [-85.634462, 41.945971] - }, - "n2615": { - "id": "n2615", - "loc": [-85.634465, 41.946036] - }, - "n2616": { - "id": "n2616", - "loc": [-85.634235, 41.946072] - }, - "n2617": { - "id": "n2617", - "loc": [-85.634447, 41.946036] - }, - "n2618": { - "id": "n2618", - "loc": [-85.634448, 41.946052] - }, - "n2619": { - "id": "n2619", - "loc": [-85.634494, 41.946051] - }, - "n2620": { - "id": "n2620", - "loc": [-85.634497, 41.946144] - }, - "n2621": { - "id": "n2621", - "loc": [-85.634453, 41.946144] - }, - "n2622": { - "id": "n2622", - "loc": [-85.634454, 41.94616] - }, - "n2623": { - "id": "n2623", - "loc": [-85.634393, 41.946161] - }, - "n2624": { - "id": "n2624", - "loc": [-85.634394, 41.94618] - }, - "n2625": { - "id": "n2625", - "loc": [-85.634345, 41.94618] - }, - "n2626": { - "id": "n2626", - "loc": [-85.634344, 41.946162] - }, - "n2627": { - "id": "n2627", - "loc": [-85.63427, 41.946163] - }, - "n2628": { - "id": "n2628", - "loc": [-85.634266, 41.946071] - }, - "n2629": { - "id": "n2629", - "loc": [-85.634148, 41.946163] - }, - "n2630": { - "id": "n2630", - "loc": [-85.634213, 41.946072] - }, - "n2631": { - "id": "n2631", - "loc": [-85.633293, 41.946309] - }, - "n2632": { - "id": "n2632", - "loc": [-85.633122, 41.946239] - }, - "n2633": { - "id": "n2633", - "loc": [-85.633295, 41.946005] - }, - "n2634": { - "id": "n2634", - "loc": [-85.633395, 41.946047] - }, - "n2635": { - "id": "n2635", - "loc": [-85.633404, 41.946035] - }, - "n2636": { - "id": "n2636", - "loc": [-85.633459, 41.946057] - }, - "n2637": { - "id": "n2637", - "loc": [-85.633387, 41.946154] - }, - "n2638": { - "id": "n2638", - "loc": [-85.633403, 41.946161] - }, - "n2639": { - "id": "n2639", - "loc": [-85.634176, 41.946415] - }, - "n2640": { - "id": "n2640", - "loc": [-85.634179, 41.946339] - }, - "n2641": { - "id": "n2641", - "loc": [-85.634455, 41.946345] - }, - "n2642": { - "id": "n2642", - "loc": [-85.634452, 41.946422] - }, - "n2643": { - "id": "n2643", - "loc": [-85.63437, 41.946421] - }, - "n2644": { - "id": "n2644", - "loc": [-85.634367, 41.946497] - }, - "n2645": { - "id": "n2645", - "loc": [-85.634289, 41.946495] - }, - "n2646": { - "id": "n2646", - "loc": [-85.634291, 41.946448] - }, - "n2647": { - "id": "n2647", - "loc": [-85.634269, 41.946448] - }, - "n2648": { - "id": "n2648", - "loc": [-85.63427, 41.946417] - }, - "n2649": { - "id": "n2649", - "loc": [-85.63484, 41.946328] - }, - "n2650": { - "id": "n2650", - "loc": [-85.634839, 41.946187] - }, - "n2651": { - "id": "n2651", - "loc": [-85.635148, 41.946186] - }, - "n2652": { - "id": "n2652", - "loc": [-85.635148, 41.946216] - }, - "n2653": { - "id": "n2653", - "loc": [-85.63521, 41.946216] - }, - "n2654": { - "id": "n2654", - "loc": [-85.63521, 41.946348] - }, - "n2655": { - "id": "n2655", - "loc": [-85.635154, 41.946348] - }, - "n2656": { - "id": "n2656", - "loc": [-85.635153, 41.946327] - }, - "n2657": { - "id": "n2657", - "loc": [-85.634037, 41.946957] - }, - "n2658": { - "id": "n2658", - "loc": [-85.634253, 41.946953] - }, - "n2659": { - "id": "n2659", - "loc": [-85.63481, 41.946543] - }, - "n2660": { - "id": "n2660", - "loc": [-85.634809, 41.946459] - }, - "n2661": { - "id": "n2661", - "loc": [-85.635154, 41.946458] - }, - "n2662": { - "id": "n2662", - "loc": [-85.635155, 41.946554] - }, - "n2663": { - "id": "n2663", - "loc": [-85.635022, 41.946547] - }, - "n2664": { - "id": "n2664", - "loc": [-85.635022, 41.946573] - }, - "n2665": { - "id": "n2665", - "loc": [-85.634909, 41.946574] - }, - "n2666": { - "id": "n2666", - "loc": [-85.634909, 41.946561] - }, - "n2667": { - "id": "n2667", - "loc": [-85.634896, 41.947159] - }, - "n2668": { - "id": "n2668", - "loc": [-85.634894, 41.947032] - }, - "n2669": { - "id": "n2669", - "loc": [-85.635024, 41.947031] - }, - "n2670": { - "id": "n2670", - "loc": [-85.635026, 41.947158] - }, - "n2671": { - "id": "n2671", - "loc": [-85.635233, 41.947105] - }, - "n2672": { - "id": "n2672", - "loc": [-85.635236, 41.946991] - }, - "n2673": { - "id": "n2673", - "loc": [-85.635369, 41.946993] - }, - "n2674": { - "id": "n2674", - "loc": [-85.635366, 41.947107] - }, - "n2675": { - "id": "n2675", - "loc": [-85.634824, 41.946929] - }, - "n2676": { - "id": "n2676", - "loc": [-85.634825, 41.946818] - }, - "n2677": { - "id": "n2677", - "loc": [-85.63512, 41.946819] - }, - "n2678": { - "id": "n2678", - "loc": [-85.635119, 41.94693] - }, - "n2679": { - "id": "n2679", - "loc": [-85.634796, 41.946806] - }, - "n2680": { - "id": "n2680", - "loc": [-85.634792, 41.946604] - }, - "n2681": { - "id": "n2681", - "loc": [-85.634948, 41.946602] - }, - "n2682": { - "id": "n2682", - "loc": [-85.634949, 41.946645] - }, - "n2683": { - "id": "n2683", - "loc": [-85.634975, 41.946644] - }, - "n2684": { - "id": "n2684", - "loc": [-85.634974, 41.946599] - }, - "n2685": { - "id": "n2685", - "loc": [-85.635117, 41.946598] - }, - "n2686": { - "id": "n2686", - "loc": [-85.635122, 41.946801] - }, - "n2687": { - "id": "n2687", - "loc": [-85.634981, 41.946803] - }, - "n2688": { - "id": "n2688", - "loc": [-85.634979, 41.946752] - }, - "n2689": { - "id": "n2689", - "loc": [-85.634952, 41.946752] - }, - "n2690": { - "id": "n2690", - "loc": [-85.634953, 41.946804] - }, - "n2691": { - "id": "n2691", - "loc": [-85.634649, 41.946841] - }, - "n2692": { - "id": "n2692", - "loc": [-85.634331, 41.94684] - }, - "n2693": { - "id": "n2693", - "loc": [-85.634183, 41.946809] - }, - "n2694": { - "id": "n2694", - "loc": [-85.633699, 41.946607] - }, - "n2695": { - "id": "n2695", - "loc": [-85.634487, 41.946664] - }, - "n2696": { - "id": "n2696", - "loc": [-85.634486, 41.946598] - }, - "n2697": { - "id": "n2697", - "loc": [-85.63423, 41.946599] - }, - "n2698": { - "id": "n2698", - "loc": [-85.634231, 41.946662] - }, - "n2699": { - "id": "n2699", - "loc": [-85.634284, 41.946662] - }, - "n2700": { - "id": "n2700", - "loc": [-85.634284, 41.946679] - }, - "n2701": { - "id": "n2701", - "loc": [-85.634365, 41.946679] - }, - "n2702": { - "id": "n2702", - "loc": [-85.634365, 41.946664] - }, - "n2703": { - "id": "n2703", - "loc": [-85.635443, 41.947015] - }, - "n2704": { - "id": "n2704", - "loc": [-85.635442, 41.946801] - }, - "n2705": { - "id": "n2705", - "loc": [-85.63603, 41.9468] - }, - "n2706": { - "id": "n2706", - "loc": [-85.636028, 41.947016] - }, - "n2707": { - "id": "n2707", - "loc": [-85.635457, 41.946582] - }, - "n2708": { - "id": "n2708", - "loc": [-85.635455, 41.946211] - }, - "n2709": { - "id": "n2709", - "loc": [-85.635636, 41.946579] - }, - "n2710": { - "id": "n2710", - "loc": [-85.635716, 41.9468] - }, - "n2711": { - "id": "n2711", - "loc": [-85.635969, 41.9468] - }, - "n2712": { - "id": "n2712", - "loc": [-85.635973, 41.946295] - }, - "n2713": { - "id": "n2713", - "loc": [-85.636019, 41.946484] - }, - "n2714": { - "id": "n2714", - "loc": [-85.636022, 41.946388] - }, - "n2715": { - "id": "n2715", - "loc": [-85.635961, 41.946493] - }, - "n2716": { - "id": "n2716", - "loc": [-85.635713, 41.94621] - }, - "n2717": { - "id": "n2717", - "loc": [-85.635416, 41.946142] - }, - "n2718": { - "id": "n2718", - "loc": [-85.635759, 41.946203] - }, - "n2719": { - "id": "n2719", - "loc": [-85.636153, 41.946747] - }, - "n2720": { - "id": "n2720", - "loc": [-85.635417, 41.946915] - }, - "n2721": { - "id": "n2721", - "loc": [-85.636154, 41.946915] - }, - "n2722": { - "id": "n2722", - "loc": [-85.635866, 41.946473] - }, - "n2723": { - "id": "n2723", - "loc": [-85.635717, 41.946633] - }, - "n2724": { - "id": "n2724", - "loc": [-85.635556, 41.946166] - }, - "n2725": { - "id": "n2725", - "loc": [-85.63556, 41.946556] - }, - "n2726": { - "id": "n2726", - "loc": [-85.635731, 41.946594] - }, - "n2727": { - "id": "n2727", - "loc": [-85.635866, 41.946595] - }, - "n2728": { - "id": "n2728", - "loc": [-85.635456, 41.947028] - }, - "n2729": { - "id": "n2729", - "loc": [-85.635796, 41.947023] - }, - "n2730": { - "id": "n2730", - "loc": [-85.635798, 41.947091] - }, - "n2731": { - "id": "n2731", - "loc": [-85.63573, 41.947092] - }, - "n2732": { - "id": "n2732", - "loc": [-85.635733, 41.947233] - }, - "n2733": { - "id": "n2733", - "loc": [-85.636283, 41.946863] - }, - "n2734": { - "id": "n2734", - "loc": [-85.63628, 41.946706] - }, - "n2735": { - "id": "n2735", - "loc": [-85.636341, 41.946705] - }, - "n2736": { - "id": "n2736", - "loc": [-85.636273, 41.946584] - }, - "n2737": { - "id": "n2737", - "loc": [-85.636396, 41.946545] - }, - "n2738": { - "id": "n2738", - "loc": [-85.636474, 41.946684] - }, - "n2739": { - "id": "n2739", - "loc": [-85.636511, 41.946861] - }, - "n2740": { - "id": "n2740", - "loc": [-85.633713, 41.947184] - }, - "n2741": { - "id": "n2741", - "loc": [-85.633651, 41.94716] - }, - "n2742": { - "id": "n2742", - "loc": [-85.633704, 41.947085] - }, - "n2743": { - "id": "n2743", - "loc": [-85.6336, 41.947044] - }, - "n2744": { - "id": "n2744", - "loc": [-85.633506, 41.947177] - }, - "n2745": { - "id": "n2745", - "loc": [-85.629586, 41.952469] - }, - "n2746": { - "id": "n2746", - "loc": [-85.634723, 41.953681] - }, - "n2747": { - "id": "n2747", - "loc": [-85.63478, 41.959007] - }, - "n2748": { - "id": "n2748", - "loc": [-85.632793, 41.94405], - "tags": { - "highway": "traffic_signals", - "traffic_signals": "signal" - } - }, - "n2749": { - "id": "n2749", - "loc": [-85.634648, 41.947325] - }, - "n2751": { - "id": "n2751", - "loc": [-85.633195, 41.94734] - }, - "n2752": { - "id": "n2752", - "loc": [-85.626447, 41.957168] - }, - "n2753": { - "id": "n2753", - "loc": [-85.632023, 41.949012] - }, - "n2754": { - "id": "n2754", - "loc": [-85.630835, 41.950656] - }, - "n2755": { - "id": "n2755", - "loc": [-85.634655, 41.948612] - }, - "n2756": { - "id": "n2756", - "loc": [-85.636182, 41.948605] - }, - "n2757": { - "id": "n2757", - "loc": [-85.634729, 41.954667] - }, - "n2758": { - "id": "n2758", - "loc": [-85.634686, 41.951159] - }, - "n2759": { - "id": "n2759", - "loc": [-85.636206, 41.951146] - }, - "n2760": { - "id": "n2760", - "loc": [-85.634668, 41.949891] - }, - "n2761": { - "id": "n2761", - "loc": [-85.634701, 41.952422] - }, - "n2762": { - "id": "n2762", - "loc": [-85.634747, 41.955907] - }, - "n2763": { - "id": "n2763", - "loc": [-85.627936, 41.954693] - }, - "n2764": { - "id": "n2764", - "loc": [-85.626832, 41.954698] - }, - "n2765": { - "id": "n2765", - "loc": [-85.632278, 41.948624] - }, - "n2766": { - "id": "n2766", - "loc": [-85.628639, 41.953725] - }, - "n2767": { - "id": "n2767", - "loc": [-85.636233, 41.95241] - }, - "n2768": { - "id": "n2768", - "loc": [-85.631385, 41.949913] - }, - "n2769": { - "id": "n2769", - "loc": [-85.630486, 41.951194] - }, - "n2772": { - "id": "n2772", - "loc": [-85.636162, 41.94731] - }, - "n2773": { - "id": "n2773", - "loc": [-85.636188, 41.949881] - }, - "n2774": { - "id": "n2774", - "loc": [-85.631422, 41.948294] - }, - "n2775": { - "id": "n2775", - "loc": [-85.632844, 41.945547] - }, - "n2776": { - "id": "n2776", - "loc": [-85.632484, 41.945344] - }, - "n2777": { - "id": "n2777", - "loc": [-85.631775, 41.944636] - }, - "n2778": { - "id": "n2778", - "loc": [-85.632656, 41.945471] - }, - "n2779": { - "id": "n2779", - "loc": [-85.631959, 41.944827] - }, - "n2780": { - "id": "n2780", - "loc": [-85.631679, 41.94438] - }, - "n2781": { - "id": "n2781", - "loc": [-85.625129, 41.959272] - }, - "n2782": { - "id": "n2782", - "loc": [-85.632446, 41.944861] - }, - "n2783": { - "id": "n2783", - "loc": [-85.632804, 41.945477] - }, - "n2784": { - "id": "n2784", - "loc": [-85.632255, 41.944962] - }, - "n2785": { - "id": "n2785", - "loc": [-85.632736, 41.944757] - }, - "n2786": { - "id": "n2786", - "loc": [-85.632543, 41.94486] - }, - "n2787": { - "id": "n2787", - "loc": [-85.632889, 41.945561] - }, - "n2788": { - "id": "n2788", - "loc": [-85.632091, 41.944949] - }, - "n2789": { - "id": "n2789", - "loc": [-85.632537, 41.944713] - }, - "n2790": { - "id": "n2790", - "loc": [-85.632279, 41.94485] - }, - "n2791": { - "id": "n2791", - "loc": [-85.632749, 41.943247] - }, - "n2792": { - "id": "n2792", - "loc": [-85.632824, 41.943152] - }, - "n2793": { - "id": "n2793", - "loc": [-85.632929, 41.94317] - }, - "n2794": { - "id": "n2794", - "loc": [-85.632897, 41.943078] - }, - "n2795": { - "id": "n2795", - "loc": [-85.632626, 41.943231] - }, - "n2796": { - "id": "n2796", - "loc": [-85.634048, 41.947257] - }, - "n2797": { - "id": "n2797", - "loc": [-85.634264, 41.947252] - }, - "n2798": { - "id": "n2798", - "loc": [-85.635418, 41.947317] - }, - "n2799": { - "id": "n2799", - "loc": [-85.635461, 41.947237] - }, - "n2800": { - "id": "n2800", - "loc": [-85.632868, 41.946229] - }, - "n2801": { - "id": "n2801", - "loc": [-85.633673, 41.947242] - }, "w426": { "id": "w426", + "nodes": ["n2478", "n681", "n680", "n679", "n2459", "n2467", "n2487", "n2478"], "tags": { "building": "yes" - }, - "nodes": ["n2478", "n681", "n680", "n679", "n2459", "n2467", "n2487", "n2478"] + } }, "w427": { "id": "w427", + "nodes": ["n2671", "n2672", "n2673", "n2674", "n2671"], "tags": { "building": "yes" - }, - "nodes": ["n2671", "n2672", "n2673", "n2674", "n2671"] + } }, "w428": { "id": "w428", + "nodes": ["n2483", "n2482", "n2486", "n2489", "n2492", "n2502", "n2495", "n2480", "n2483"], "tags": { "building": "yes" - }, - "nodes": ["n2483", "n2482", "n2486", "n2489", "n2492", "n2502", "n2495", "n2480", "n2483"] + } }, "w429": { "id": "w429", + "nodes": ["n2707", "n2708", "n2716", "n2712", "n2714", "n2713", "n2715", "n2711", "n2710", "n2723", "n2709", "n2707"], "tags": { "amenity": "parking" - }, - "nodes": ["n2707", "n2708", "n2716", "n2712", "n2714", "n2713", "n2715", "n2711", "n2710", "n2723", "n2709", "n2707"] + } + }, + "w43": { + "id": "w43", + "nodes": ["n1955", "n1956"], + "tags": { + "footway": "sidewalk", + "highway": "footway", + "name": "Riverwalk Trail" + } }, "w430": { "id": "w430", + "nodes": ["n2471", "n2474", "n2484", "n2479", "n2471"], "tags": { "building": "yes" - }, - "nodes": ["n2471", "n2474", "n2484", "n2479", "n2471"] + } }, "w431": { "id": "w431", + "nodes": ["n2218", "n2434", "n2436", "n2433", "n2435", "n2210"], "tags": { "name": "Rocky River", "waterway": "river" - }, - "nodes": ["n2218", "n2434", "n2436", "n2433", "n2435", "n2210"] + } }, "w432": { "id": "w432", + "nodes": ["n2782", "n2532", "n2783", "n2784", "n2782"], "tags": { "amenity": "parking" - }, - "nodes": ["n2782", "n2532", "n2783", "n2784", "n2782"] + } }, "w433": { "id": "w433", + "nodes": ["n2513", "n649", "n2520", "n2514", "n2507", "n2513"], "tags": { "building": "yes" - }, - "nodes": ["n2513", "n649", "n2520", "n2514", "n2507", "n2513"] + } }, "w434": { "id": "w434", + "nodes": ["n2470", "n2468", "n2461", "n2465", "n2470"], "tags": { "building": "yes" - }, - "nodes": ["n2470", "n2468", "n2461", "n2465", "n2470"] + } }, "w435": { "id": "w435", + "nodes": ["n2598", "n2599", "n648", "n649", "n2520", "n2598"], "tags": { "building": "yes" - }, - "nodes": ["n2598", "n2599", "n648", "n649", "n2520", "n2598"] + } }, "w436": { "id": "w436", + "nodes": ["n2639", "n2640", "n2641", "n2642", "n2643", "n2644", "n2645", "n2646", "n2647", "n2648", "n2639"], "tags": { "building": "yes" - }, - "nodes": ["n2639", "n2640", "n2641", "n2642", "n2643", "n2644", "n2645", "n2646", "n2647", "n2648", "n2639"] + } }, "w437": { "id": "w437", + "nodes": ["n2503", "n2512", "n2508", "n2499", "n2503"], "tags": { "building": "yes" - }, - "nodes": ["n2503", "n2512", "n2508", "n2499", "n2503"] + } }, "w438": { "id": "w438", + "nodes": ["n2440", "n2800", "n2774", "n1"], "tags": { "highway": "residential", "name": "Water Street" - }, - "nodes": ["n2440", "n2800", "n2774", "n1"] + } }, "w439": { "id": "w439", + "nodes": ["n2675", "n2676", "n2677", "n2678", "n2675"], "tags": { "building": "yes" - }, - "nodes": ["n2675", "n2676", "n2677", "n2678", "n2675"] + } + }, + "w44": { + "id": "w44", + "nodes": ["n213", "n214", "n215", "n216", "n213"], + "tags": { + "building": "yes" + } }, "w440": { "id": "w440", + "nodes": ["n2512", "n2503", "n2507", "n2514", "n2512"], "tags": { "building": "yes" - }, - "nodes": ["n2512", "n2503", "n2507", "n2514", "n2512"] + } }, "w441": { "id": "w441", + "nodes": ["n2554", "n2717", "n674", "n2720", "n2798"], "tags": { - "highway": "service" - }, - "nodes": ["n2554", "n2717", "n674", "n2720", "n2798"] + "highway": "service", + "oneway": "yes" + } }, "w442": { "id": "w442", + "nodes": ["n2583", "n2596", "n2584", "n2585", "n2595", "n2586", "n2587", "n2588", "n2589", "n2583"], "tags": { "amenity": "parking" - }, - "nodes": ["n2583", "n2596", "n2584", "n2585", "n2595", "n2586", "n2587", "n2588", "n2589", "n2583"] + } }, "w443": { "id": "w443", + "nodes": ["n2629", "n2627", "n2628", "n2616", "n2630", "n2629"], "tags": { "building": "yes" - }, - "nodes": ["n2629", "n2627", "n2628", "n2616", "n2630", "n2629"] + } }, "w444": { "id": "w444", + "nodes": ["n2717", "n2724", "n670", "n2718", "n669", "n668", "n2722", "n2727"], "tags": { "highway": "service", - "service": "parking_aisle", - "oneway": "yes" - }, - "nodes": ["n2717", "n2724", "n670", "n2718", "n669", "n668", "n2722", "n2727"] + "oneway": "yes", + "service": "parking_aisle" + } }, "w445": { "id": "w445", + "nodes": ["n2572", "n2573"], "tags": { "bridge": "yes", "highway": "path", "name": "Riverwalk Trail" - }, - "nodes": ["n2572", "n2573"] + } }, "w446": { "id": "w446", + "nodes": ["n2603", "n2604", "n2601", "n2605", "n2606", "n2607", "n2603"], "tags": { "building": "yes" - }, - "nodes": ["n2603", "n2604", "n2601", "n2605", "n2606", "n2607", "n2603"] + } }, "w447": { "id": "w447", + "nodes": ["n2780", "n2777", "n628", "n624", "n2779"], "tags": { "highway": "residential", "name": "Foster Street", "oneway": "yes" - }, - "nodes": ["n2780", "n2777", "n628", "n624", "n2779"] + } }, "w448": { "id": "w448", + "nodes": ["n2733", "n2734", "n2735", "n2736", "n2737", "n2738", "n663", "n664", "n2739", "n2733"], "tags": { "building": "yes" - }, - "nodes": ["n2733", "n2734", "n2735", "n2736", "n2737", "n2738", "n663", "n664", "n2739", "n2733"] + } }, "w449": { "id": "w449", + "nodes": ["n2564", "n2565", "n2566", "n2567", "n2568", "n2794", "n2795", "n2564"], "tags": { "amenity": "parking" - }, - "nodes": ["n2564", "n2565", "n2566", "n2567", "n2568", "n2794", "n2795", "n2564"] + } + }, + "w45": { + "id": "w45", + "nodes": ["n217", "n218", "n219", "n220", "n217"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + } }, "w450": { "id": "w450", + "nodes": ["n2799", "n2728", "n2729", "n2730", "n2731", "n2732", "n2799"], "tags": { "building": "yes" - }, - "nodes": ["n2799", "n2728", "n2729", "n2730", "n2731", "n2732", "n2799"] + } }, "w451": { "id": "w451", + "nodes": ["n2441", "n1170", "n2442", "n2575", "n2443", "n2445", "n2444", "n2448", "n2441"], "tags": { "amenity": "parking" - }, - "nodes": ["n2441", "n1170", "n2442", "n2575", "n2443", "n2445", "n2444", "n2448", "n2441"] + } }, "w452": { "id": "w452", + "nodes": ["n2273", "n457", "n2569", "n458", "n2570"], "tags": { "highway": "path", "name": "Riverwalk Trail" - }, - "nodes": ["n2273", "n457", "n2569", "n458", "n2570"] + } }, "w453": { "id": "w453", + "nodes": ["n2447", "n2242", "n2448", "n2527", "n2530"], "tags": { "highway": "service" - }, - "nodes": ["n2447", "n2242", "n2448", "n2527", "n2530"] + } }, "w454": { "id": "w454", + "nodes": ["n2560", "n333", "n2561"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2560", "n333", "n2561"] + } }, "w455": { "id": "w455", + "nodes": ["n2679", "n2680", "n2681", "n2682", "n2683", "n2684", "n2685", "n2686", "n2687", "n2688", "n2689", "n2690", "n2679"], "tags": { "building": "yes" - }, - "nodes": ["n2679", "n2680", "n2681", "n2682", "n2683", "n2684", "n2685", "n2686", "n2687", "n2688", "n2689", "n2690", "n2679"] + } }, "w456": { "id": "w456", + "nodes": ["n2425", "n2429", "n2424"], "tags": { "bridge": "yes", "highway": "residential", "name": "Moore Street" - }, - "nodes": ["n2425", "n2429", "n2424"] + } }, "w457": { "id": "w457", + "nodes": ["n2487", "n2467", "n2472", "n2480", "n2495", "n2487"], "tags": { "building": "yes" - }, - "nodes": ["n2487", "n2467", "n2472", "n2480", "n2495", "n2487"] + } }, "w458": { "id": "w458", + "nodes": ["n2659", "n2660", "n2661", "n2662", "n678", "n677", "n2663", "n2664", "n2665", "n2666", "n675", "n676", "n2659"], "tags": { "building": "yes" - }, - "nodes": ["n2659", "n2660", "n2661", "n2662", "n678", "n677", "n2663", "n2664", "n2665", "n2666", "n675", "n676", "n2659"] + } }, "w459": { "id": "w459", + "nodes": ["n2600", "n2598", "n2599", "n2601", "n2605", "n2602", "n2600"], "tags": { "building": "yes" - }, - "nodes": ["n2600", "n2598", "n2599", "n2601", "n2605", "n2602", "n2600"] + } + }, + "w46": { + "id": "w46", + "nodes": ["n221", "n222", "n223", "n224", "n221"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelter" + } }, "w460": { "id": "w460", + "nodes": ["n2468", "n2464", "n2455", "n2457", "n2461", "n2468"], "tags": { "building": "yes" - }, - "nodes": ["n2468", "n2464", "n2455", "n2457", "n2461", "n2468"] + } }, "w461": { "id": "w461", + "nodes": ["n2478", "n2473", "n683", "n682", "n2463", "n681", "n2478"], "tags": { "building": "yes" - }, - "nodes": ["n2478", "n2473", "n683", "n682", "n2463", "n681", "n2478"] + } }, "w462": { "id": "w462", + "nodes": ["n2547", "n473", "n2548", "n2549"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2547", "n473", "n2548", "n2549"] + } }, "w463": { "id": "w463", + "nodes": ["n2573", "n2574"], "tags": { "highway": "path", "name": "Riverwalk Trail" - }, - "nodes": ["n2573", "n2574"] + } }, "w464": { "id": "w464", + "nodes": ["n2445", "n2597", "n2527", "n2528", "n2529", "n2530", "n2531", "n2597"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2445", "n2597", "n2527", "n2528", "n2529", "n2530", "n2531", "n2597"] + } }, "w465": { "id": "w465", + "nodes": ["n2571", "n459", "n2572"], "tags": { "highway": "path", "name": "Riverwalk Trail" - }, - "nodes": ["n2571", "n459", "n2572"] + } }, "w466": { "id": "w466", + "nodes": ["n2445", "n2574", "n2552", "n442", "n2551", "n4727", "n323", "n2446"], "tags": { "highway": "service" - }, - "nodes": ["n2445", "n2574", "n2552", "n442", "n2551", "n323", "n2446"] + } }, "w467": { "id": "w467", + "nodes": ["n2484", "n2474", "n2477", "n2485", "n2488", "n2484"], "tags": { "building": "yes" - }, - "nodes": ["n2484", "n2474", "n2477", "n2485", "n2488", "n2484"] + } }, "w468": { "id": "w468", + "nodes": ["n2695", "n2696", "n2697", "n2698", "n2699", "n2700", "n2701", "n2702", "n2695"], "tags": { "building": "yes" - }, - "nodes": ["n2695", "n2696", "n2697", "n2698", "n2699", "n2700", "n2701", "n2702", "n2695"] + } }, "w469": { "id": "w469", + "nodes": ["n2469", "n2476", "n2481", "n2475", "n920", "n2466", "n2469"], "tags": { "building": "yes" - }, - "nodes": ["n2469", "n2476", "n2481", "n2475", "n920", "n2466", "n2469"] + } + }, + "w47": { + "id": "w47", + "nodes": [ + "n1988", + "n1997", + "n1989", + "n25", + "n24", + "n1990", + "n26", + "n1991", + "n21", + "n1992", + "n2006", + "n1993", + "n22", + "n1994", + "n23", + "n1995", + "n1999", + "n1996", + "n2001", + "n1988" + ], + "tags": { + "highway": "service" + } }, "w470": { "id": "w470", + "nodes": ["n2473", "n2470", "n2465", "n2458", "n2462", "n683", "n2473"], "tags": { "building": "yes" - }, - "nodes": ["n2473", "n2470", "n2465", "n2458", "n2462", "n683", "n2473"] + } }, "w471": { "id": "w471", + "nodes": ["n2490", "n2496", "n994", "n997", "n998", "n996", "n995", "n2485", "n2477", "n2490"], "tags": { "building": "yes" - }, - "nodes": ["n2490", "n2496", "n994", "n997", "n998", "n996", "n995", "n2485", "n2477", "n2490"] + } }, "w472": { "id": "w472", + "nodes": ["n2424", "n2426", "n2427", "n2428"], "tags": { "highway": "residential", "name": "Moore Street" - }, - "nodes": ["n2424", "n2426", "n2427", "n2428"] + } }, "w473": { "id": "w473", + "nodes": ["n2432", "n1026", "n4741", "n2554", "n2425"], "tags": { "highway": "residential", "name": "Moore Street" - }, - "nodes": ["n2432", "n1026", "n2554", "n2425"] + } }, "w474": { "id": "w474", + "nodes": ["n2577", "n2576"], "tags": { "bridge": "yes", "highway": "footway" - }, - "nodes": ["n2577", "n2576"] + } }, "w475": { "id": "w475", + "nodes": ["n2497", "n2505", "n2500", "n2493", "n2497"], "tags": { "building": "yes" - }, - "nodes": ["n2497", "n2505", "n2500", "n2493", "n2497"] + } }, "w476": { "id": "w476", + "nodes": ["n2493", "n2500", "n2501", "n2496", "n2490", "n2493"], "tags": { "building": "yes" - }, - "nodes": ["n2493", "n2500", "n2501", "n2496", "n2490", "n2493"] + } }, "w477": { "id": "w477", - "tags": { - "highway": "residential", - "name": "Railroad Drive" - }, "nodes": [ "n2431", "n360", + "n4726", "n418", "n397", "n396", @@ -5829,20 +23887,21 @@ "n2419", "n2420", "n2423" - ] + ], + "tags": { + "highway": "residential", + "name": "Railroad Drive" + } }, "w478": { "id": "w478", + "nodes": ["n2515", "n2511", "n2498", "n2504", "n2509", "n2515"], "tags": { "building": "yes" - }, - "nodes": ["n2515", "n2511", "n2498", "n2504", "n2509", "n2515"] + } }, "w479": { "id": "w479", - "tags": { - "building": "yes" - }, "nodes": [ "n2525", "n651", @@ -5859,70 +23918,77 @@ "n2521", "n2522", "n2525" - ] + ], + "tags": { + "building": "yes" + } + }, + "w48": { + "id": "w48", + "nodes": ["n225", "n237", "n226", "n227", "n228", "n229", "n230", "n231", "n232", "n233", "n234", "n235", "n236", "n225"], + "tags": { + "building": "yes" + } }, "w480": { "id": "w480", + "nodes": ["n2703", "n2704", "n2710", "n2711", "n2705", "n2706", "n2703"], "tags": { "amenity": "parking" - }, - "nodes": ["n2703", "n2704", "n2710", "n2711", "n2705", "n2706", "n2703"] + } }, "w481": { "id": "w481", + "nodes": ["n2796", "n2657", "n2658", "n2797", "n2796"], "tags": { "building": "yes" - }, - "nodes": ["n2796", "n2657", "n2658", "n2797", "n2796"] + } }, "w482": { "id": "w482", + "nodes": ["n2550", "n2551", "n442", "n2552", "n2553", "n2550"], "tags": { "amenity": "parking" - }, - "nodes": ["n2550", "n2551", "n442", "n2552", "n2553", "n2550"] + } }, "w483": { "id": "w483", + "nodes": ["n2790", "n2542"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2790", "n2542"] + } }, "w484": { "id": "w484", + "nodes": ["n2311", "n1102"], "tags": { "highway": "service" - }, - "nodes": ["n2311", "n1102"] + } }, "w485": { "id": "w485", + "nodes": ["n2515", "n2509", "n2516", "n2519", "n2515"], "tags": { "building": "yes" - }, - "nodes": ["n2515", "n2509", "n2516", "n2519", "n2515"] + } }, "w486": { "id": "w486", + "nodes": ["n2506", "n2502", "n2492", "n2491", "n2494", "n2506"], "tags": { "building": "yes" - }, - "nodes": ["n2506", "n2502", "n2492", "n2491", "n2494", "n2506"] + } }, "w487": { "id": "w487", + "nodes": ["n2667", "n2668", "n2669", "n2670", "n2667"], "tags": { "building": "yes" - }, - "nodes": ["n2667", "n2668", "n2669", "n2670", "n2667"] + } }, "w488": { "id": "w488", - "tags": { - "building": "yes" - }, "nodes": [ "n2616", "n2608", @@ -5939,23 +24005,29 @@ "n2627", "n2628", "n2616" - ] + ], + "tags": { + "building": "yes" + } }, "w489": { "id": "w489", + "nodes": ["n2081", "n2430"], "tags": { "bridge": "yes", "highway": "primary", "name": "Michigan Avenue" - }, - "nodes": ["n2081", "n2430"] + } + }, + "w49": { + "id": "w49", + "nodes": ["n237", "n238"], + "tags": { + "highway": "footway" + } }, "w490": { "id": "w490", - "tags": { - "highway": "residential", - "name": "Portage Avenue" - }, "nodes": [ "n2410", "n636", @@ -5971,566 +24043,328 @@ "n2769", "n2745", "n2766", + "n4503", "n2763", + "n4501", "n2752", "n2781" - ] + ], + "tags": { + "highway": "residential", + "name": "Portage Avenue" + } }, "w491": { "id": "w491", + "nodes": ["n2578", "n2579", "n2580", "n2581", "n2578"], "tags": { "amenity": "shelter", "building": "yes", "shelter_type": "picnic_shelter" - }, - "nodes": ["n2578", "n2579", "n2580", "n2581", "n2578"] + } }, "w492": { "id": "w492", + "nodes": ["n2556", "n2557", "n2558", "n2559", "n2556"], "tags": { "amenity": "parking" - }, - "nodes": ["n2556", "n2557", "n2558", "n2559", "n2556"] + } }, "w493": { "id": "w493", + "nodes": ["n2460", "n2456", "n687", "n2453", "n2454", "n2460"], "tags": { "building": "yes" - }, - "nodes": ["n2460", "n2456", "n687", "n2453", "n2454", "n2460"] + } }, "w494": { "id": "w494", + "nodes": ["n2471", "n2479", "n2476", "n2469", "n2471"], "tags": { "building": "yes" - }, - "nodes": ["n2471", "n2479", "n2476", "n2469", "n2471"] + } }, "w495": { "id": "w495", + "nodes": ["n2724", "n2725", "n673", "n672", "n671", "n2726", "n2727"], "tags": { "highway": "service", - "service": "parking_aisle", - "oneway": "yes" - }, - "nodes": ["n2724", "n2725", "n673", "n672", "n671", "n2726", "n2727"] + "oneway": "yes", + "service": "parking_aisle" + } }, "w496": { "id": "w496", + "nodes": ["n2649", "n2650", "n2651", "n2652", "n2653", "n2654", "n2655", "n2656", "n2649"], "tags": { "building": "yes" - }, - "nodes": ["n2649", "n2650", "n2651", "n2652", "n2653", "n2654", "n2655", "n2656", "n2649"] + } }, "w497": { "id": "w497", + "nodes": ["n2430", "n2446", "n343", "n2101", "n2560", "n2431", "n363", "n2748"], "tags": { "highway": "primary", "name": "Michigan Avenue" - }, - "nodes": ["n2430", "n2446", "n343", "n2101", "n2560", "n2431", "n363", "n2748"] + } }, "w498": { "id": "w498", + "nodes": ["n2691", "n2692", "n634", "n633", "n2693", "n2694"], "tags": { "highway": "service" - }, - "nodes": ["n2691", "n2692", "n634", "n633", "n2693", "n2694"] + } }, "w499": { "id": "w499", + "nodes": ["n2423", "n2415", "n661", "n2416", "n2417", "n2719", "n2721", "n2772", "n2756", "n2773", "n2759", "n2767"], "tags": { "highway": "residential", "name": "West Street" - }, - "nodes": ["n2423", "n2415", "n661", "n2416", "n2417", "n2719", "n2721", "n2772", "n2756", "n2773", "n2759", "n2767"] + } + }, + "w5": { + "id": "w5", + "nodes": ["n380", "n381", "n382", "n383", "n429", "n430", "n380"], + "tags": { + "building": "yes" + } + }, + "w50": { + "id": "w50", + "nodes": ["n239", "n499", "n508", "n245", "n238", "n242", "n240"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w500": { "id": "w500", + "nodes": ["n2428", "n1152", "n2421", "n2324"], "tags": { "bridge": "yes", "highway": "residential", "name": "Moore Street" - }, - "nodes": ["n2428", "n1152", "n2421", "n2324"] + } }, "w501": { "id": "w501", + "nodes": ["n2608", "n2609", "n2610", "n2611", "n2612", "n2613", "n2614", "n2615", "n2617", "n2608"], "tags": { "building": "yes" - }, - "nodes": ["n2608", "n2609", "n2610", "n2611", "n2612", "n2613", "n2614", "n2615", "n2617", "n2608"] + } }, "w502": { "id": "w502", + "nodes": ["n2570", "n2571"], "tags": { "bridge": "yes", "highway": "path", "name": "Riverwalk Trail" - }, - "nodes": ["n2570", "n2571"] + } }, "w503": { "id": "w503", + "nodes": ["n2540", "n2542", "n2787"], "tags": { "highway": "service" - }, - "nodes": ["n2540", "n2542", "n2787"] + } }, "w504": { "id": "w504", + "nodes": ["n2269", "n2582", "n2250"], "tags": { "highway": "path" - }, - "nodes": ["n2269", "n2582", "n2250"] + } }, "w505": { "id": "w505", + "nodes": ["n2631", "n2632", "n2633", "n2634", "n2635", "n2636", "n2637", "n2638", "n2631"], "tags": { "building": "yes" - }, - "nodes": ["n2631", "n2632", "n2633", "n2634", "n2635", "n2636", "n2637", "n2638", "n2631"] + } }, "w506": { "id": "w506", + "nodes": ["n2543", "n2544", "n2545", "n395", "n2546", "n2543"], "tags": { "amenity": "parking" - }, - "nodes": ["n2543", "n2544", "n2545", "n395", "n2546", "n2543"] + } }, "w507": { "id": "w507", + "nodes": ["n2449", "n2450", "n2451", "n2452", "n1162", "n2449"], "tags": { "leisure": "pitch", "sport": "tennis" - }, - "nodes": ["n2449", "n2450", "n2451", "n2452", "n1162", "n2449"] + } }, "w508": { "id": "w508", + "nodes": ["n2554", "n1160", "n2559", "n2558", "n659", "n2555", "n658", "n657", "n2419"], "tags": { "highway": "service" - }, - "nodes": ["n2554", "n1160", "n2559", "n2558", "n659", "n2555", "n658", "n657", "n2419"] + } }, "w509": { "id": "w509", + "nodes": ["n2499", "n2508", "n2510", "n2505", "n2497", "n2499"], "tags": { "building": "yes" - }, - "nodes": ["n2499", "n2508", "n2510", "n2505", "n2497", "n2499"] + } + }, + "w51": { + "id": "w51", + "nodes": ["n241", "n242", "n243", "n244"], + "tags": { + "highway": "service", + "surface": "unpaved" + } }, "w510": { "id": "w510", + "nodes": ["n2575", "n2577"], "tags": { "highway": "footway" - }, - "nodes": ["n2575", "n2577"] + } }, "w511": { "id": "w511", + "nodes": ["n2533", "n2534", "n2535", "n2536", "n2537", "n2538", "n2539", "n2785", "n2786", "n2533"], "tags": { "amenity": "parking" - }, - "nodes": ["n2533", "n2534", "n2535", "n2536", "n2537", "n2538", "n2539", "n2785", "n2786", "n2533"] + } }, "w512": { "id": "w512", + "nodes": ["n2801", "n2740", "n2741", "n2742", "n2743", "n2744", "n2801"], "tags": { "building": "yes" - }, - "nodes": ["n2801", "n2740", "n2741", "n2742", "n2743", "n2744", "n2801"] + } }, "w513": { "id": "w513", + "nodes": ["n2720", "n2721"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2720", "n2721"] + } }, "w514": { "id": "w514", + "nodes": ["n2788", "n2790", "n2789", "n989", "n2540", "n2541"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2788", "n2790", "n2789", "n989", "n2540", "n2541"] - }, - "n2802": { - "id": "n2802", - "loc": [-85.623604, 41.945881], - "tags": { - "amenity": "school", - "name": "Barrows School" } }, - "n2803": { - "id": "n2803", - "loc": [-85.627401, 41.943496] - }, - "n2804": { - "id": "n2804", - "loc": [-85.627403, 41.943625] - }, - "n2805": { - "id": "n2805", - "loc": [-85.626409, 41.943215] - }, - "n2806": { - "id": "n2806", - "loc": [-85.624884, 41.943508] - }, - "n2807": { - "id": "n2807", - "loc": [-85.625191, 41.943509] - }, - "n2808": { - "id": "n2808", - "loc": [-85.624882, 41.94382] - }, - "n2809": { - "id": "n2809", - "loc": [-85.624893, 41.945618] - }, - "n2810": { - "id": "n2810", - "loc": [-85.624912, 41.946524] - }, - "n2811": { - "id": "n2811", - "loc": [-85.622721, 41.946535] - }, - "n2812": { - "id": "n2812", - "loc": [-85.627399, 41.94469] - }, - "n2813": { - "id": "n2813", - "loc": [-85.622716, 41.945622] - }, - "n2814": { - "id": "n2814", - "loc": [-85.624886, 41.944724] - }, - "n2815": { - "id": "n2815", - "loc": [-85.622674, 41.944737] - }, - "n2816": { - "id": "n2816", - "loc": [-85.625092, 41.945063] - }, - "n2817": { - "id": "n2817", - "loc": [-85.625233, 41.945064] - }, - "n2818": { - "id": "n2818", - "loc": [-85.625229, 41.944871] - }, - "n2819": { - "id": "n2819", - "loc": [-85.625066, 41.944871] - }, - "n2820": { - "id": "n2820", - "loc": [-85.625024, 41.944901] - }, - "n2821": { - "id": "n2821", - "loc": [-85.625025, 41.944924] - }, - "n2822": { - "id": "n2822", - "loc": [-85.625087, 41.944926] - }, - "n2823": { - "id": "n2823", - "loc": [-85.625349, 41.944506] - }, - "n2824": { - "id": "n2824", - "loc": [-85.625347, 41.944388] - }, - "n2825": { - "id": "n2825", - "loc": [-85.625152, 41.94439] - }, - "n2826": { - "id": "n2826", - "loc": [-85.625152, 41.944431] - }, - "n2827": { - "id": "n2827", - "loc": [-85.625134, 41.944431] - }, - "n2828": { - "id": "n2828", - "loc": [-85.625136, 41.944508] - }, - "n2829": { - "id": "n2829", - "loc": [-85.623236, 41.946341] - }, - "n2830": { - "id": "n2830", - "loc": [-85.623241, 41.946067] - }, - "n2831": { - "id": "n2831", - "loc": [-85.623207, 41.946067] - }, - "n2832": { - "id": "n2832", - "loc": [-85.623212, 41.945827] - }, - "n2833": { - "id": "n2833", - "loc": [-85.622981, 41.945825] - }, - "n2834": { - "id": "n2834", - "loc": [-85.622976, 41.946063] - }, - "n2835": { - "id": "n2835", - "loc": [-85.623006, 41.946063] - }, - "n2836": { - "id": "n2836", - "loc": [-85.623002, 41.946256] - }, - "n2837": { - "id": "n2837", - "loc": [-85.623075, 41.946256] - }, - "n2838": { - "id": "n2838", - "loc": [-85.623074, 41.946339] - }, - "n2843": { - "id": "n2843", - "loc": [-85.615273, 41.945637] - }, - "n2844": { - "id": "n2844", - "loc": [-85.620172, 41.945627] - }, - "n2846": { - "id": "n2846", - "loc": [-85.622758, 41.947422] - }, - "n2847": { - "id": "n2847", - "loc": [-85.624908, 41.947416] - }, - "n2848": { - "id": "n2848", - "loc": [-85.627046, 41.940995] - }, - "n2849": { - "id": "n2849", - "loc": [-85.627295, 41.941304] - }, - "n2850": { - "id": "n2850", - "loc": [-85.627352, 41.94148] - }, - "n2851": { - "id": "n2851", - "loc": [-85.62737, 41.942261] - }, - "n2852": { - "id": "n2852", - "loc": [-85.6264, 41.942263] - }, - "n2853": { - "id": "n2853", - "loc": [-85.622769, 41.949238] - }, - "n2854": { - "id": "n2854", - "loc": [-85.624937, 41.949237] - }, - "n2855": { - "id": "n2855", - "loc": [-85.630001, 41.944664] - }, - "n2856": { - "id": "n2856", - "loc": [-85.624873, 41.942022] - }, - "n2857": { - "id": "n2857", - "loc": [-85.622761, 41.948333] - }, - "n2858": { - "id": "n2858", - "loc": [-85.624924, 41.948334] - }, - "n2859": { - "id": "n2859", - "loc": [-85.620051, 41.94383] - }, - "n2860": { - "id": "n2860", - "loc": [-85.627629, 41.946498] - }, - "n2861": { - "id": "n2861", - "loc": [-85.622769, 41.950119] - }, - "n2862": { - "id": "n2862", - "loc": [-85.623685, 41.954624] - }, - "n2863": { - "id": "n2863", - "loc": [-85.621459, 41.944756] - }, - "n2864": { - "id": "n2864", - "loc": [-85.628637, 41.944676] - }, - "n2865": { - "id": "n2865", - "loc": [-85.630125, 41.944654] - }, - "n2867": { - "id": "n2867", - "loc": [-85.630257, 41.944637] - }, - "n2868": { - "id": "n2868", - "loc": [-85.631247, 41.944459] - }, - "n2869": { - "id": "n2869", - "loc": [-85.624867, 41.94159] - }, - "n2870": { - "id": "n2870", - "loc": [-85.624958, 41.950322] - }, - "n2871": { - "id": "n2871", - "loc": [-85.624948, 41.950484] - }, - "n2872": { - "id": "n2872", - "loc": [-85.624813, 41.950983] - }, - "n2877": { - "id": "n2877", - "loc": [-85.628481, 41.945611] - }, - "n2878": { - "id": "n2878", - "loc": [-85.620072, 41.946538] - }, - "n2879": { - "id": "n2879", - "loc": [-85.622778, 41.95099] - }, - "n2880": { - "id": "n2880", - "loc": [-85.62814, 41.946963] - }, - "n2881": { - "id": "n2881", - "loc": [-85.628245, 41.947031] - }, - "n2882": { - "id": "n2882", - "loc": [-85.628331, 41.947066] - }, "w515": { "id": "w515", + "nodes": ["n2848", "n2849", "n2850", "n2851", "n2803", "n2804", "n2812"], "tags": { "highway": "residential", "name": "Middle Street" - }, - "nodes": ["n2848", "n2849", "n2850", "n2851", "n2803", "n2804", "n2812"] + } }, "w516": { "id": "w516", + "nodes": ["n2852", "n2805"], "tags": { "access": "private", "highway": "service", "name": "Battle Street" - }, - "nodes": ["n2852", "n2805"] + } }, "w517": { "id": "w517", + "nodes": ["n2863", "n2815", "n2814", "n2812", "n2864", "n2855", "n2865", "n2867", "n2868"], "tags": { "highway": "secondary", "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" - }, - "nodes": ["n2863", "n2815", "n2814", "n2812", "n2864", "n2855", "n2865", "n2867", "n2868"] + } }, "w518": { "id": "w518", + "nodes": ["n2859", "n2808"], "tags": { "highway": "residential", "name": "2nd Avenue" - }, - "nodes": ["n2859", "n2808"] + } }, "w519": { "id": "w519", + "nodes": ["n2823", "n2824", "n2825", "n2826", "n2827", "n2828", "n2823"], "tags": { "building": "yes" - }, - "nodes": ["n2823", "n2824", "n2825", "n2826", "n2827", "n2828", "n2823"] + } + }, + "w52": { + "id": "w52", + "nodes": ["n247", "n248", "n249", "n250", "n247"], + "tags": { + "amenity": "parking" + } }, "w520": { "id": "w520", + "nodes": ["n2806", "n2807", "n2803"], "tags": { "highway": "residential", "name": "2nd Avenue" - }, - "nodes": ["n2806", "n2807", "n2803"] + } }, "w521": { "id": "w521", + "nodes": ["n2829", "n2830", "n2831", "n2832", "n2833", "n2834", "n2835", "n2836", "n2837", "n2838", "n2829"], "tags": { "building": "yes" - }, - "nodes": ["n2829", "n2830", "n2831", "n2832", "n2833", "n2834", "n2835", "n2836", "n2837", "n2838", "n2829"] + } }, "w522": { "id": "w522", + "nodes": [ + "n2815", + "n2813", + "n2811", + "n4597", + "n2846", + "n4596", + "n2857", + "n4601", + "n2853", + "n4602", + "n2861", + "n4", + "n2879", + "n4560", + "n3550", + "n5", + "n1685" + ], "tags": { "highway": "residential", "name": "Washington Street" - }, - "nodes": ["n2815", "n2813", "n2811", "n2846", "n2857", "n2853", "n2861", "n2879", "n3550", "n5", "n4"] + } }, "w523": { "id": "w523", + "nodes": ["n2878", "n2811", "n2810", "n2860", "n2880", "n2881", "n2882"], "tags": { "highway": "residential", "name": "5th Avenue" - }, - "nodes": ["n2878", "n2811", "n2810", "n2860", "n2880", "n2881", "n2882"] + } }, "w524": { "id": "w524", + "nodes": ["n2816", "n2817", "n2818", "n2819", "n2820", "n2821", "n2822", "n2816"], "tags": { "building": "yes" - }, - "nodes": ["n2816", "n2817", "n2818", "n2819", "n2820", "n2821", "n2822", "n2816"] + } }, "w525": { "id": "w525", - "tags": { - "highway": "residential", - "name": "Wood Street" - }, "nodes": [ "n2869", "n2856", @@ -6546,464 +24380,57 @@ "n2871", "n6", "n2872", + "n2839", "n2862" - ] + ], + "tags": { + "highway": "residential", + "name": "Wood Street" + } }, "w526": { "id": "w526", + "nodes": ["n2877", "n2809", "n2813", "n2844", "n2843"], "tags": { "highway": "residential", "name": "4th Avenue" - }, - "nodes": ["n2877", "n2809", "n2813", "n2844", "n2843"] - }, - "n2883": { - "id": "n2883", - "loc": [-85.629722, 41.944444], - "tags": { - "leisure": "park", - "name": "Scouter Park" } }, - "n2884": { - "id": "n2884", - "loc": [-85.629977, 41.943907] - }, - "n2885": { - "id": "n2885", - "loc": [-85.629947, 41.943775] - }, - "n2886": { - "id": "n2886", - "loc": [-85.629899, 41.943625] - }, - "n2887": { - "id": "n2887", - "loc": [-85.632286, 41.944257] - }, - "n2888": { - "id": "n2888", - "loc": [-85.632523, 41.944179] - }, - "n2889": { - "id": "n2889", - "loc": [-85.632141, 41.944293] - }, - "n2890": { - "id": "n2890", - "loc": [-85.631571, 41.9444] - }, - "n2892": { - "id": "n2892", - "loc": [-85.62865, 41.945353] - }, - "n2893": { - "id": "n2893", - "loc": [-85.628594, 41.945481] - }, - "n2894": { - "id": "n2894", - "loc": [-85.628581, 41.947169] - }, - "n2895": { - "id": "n2895", - "loc": [-85.631843, 41.943793] - }, - "n2896": { - "id": "n2896", - "loc": [-85.632299, 41.943472] - }, - "n2897": { - "id": "n2897", - "loc": [-85.631519, 41.944881] - }, - "n2898": { - "id": "n2898", - "loc": [-85.628429, 41.947219] - }, - "n2899": { - "id": "n2899", - "loc": [-85.63145, 41.945162] - }, - "n2900": { - "id": "n2900", - "loc": [-85.630939, 41.945519] - }, - "n2901": { - "id": "n2901", - "loc": [-85.62903, 41.945719] - }, - "n2902": { - "id": "n2902", - "loc": [-85.630521, 41.945559] - }, - "n2903": { - "id": "n2903", - "loc": [-85.629294, 41.945585] - }, - "n2904": { - "id": "n2904", - "loc": [-85.629845, 41.945543] - }, - "n2905": { - "id": "n2905", - "loc": [-85.631497, 41.944625] - }, - "n2906": { - "id": "n2906", - "loc": [-85.630281, 41.945553] - }, - "n2907": { - "id": "n2907", - "loc": [-85.628553, 41.946973] - }, - "n2908": { - "id": "n2908", - "loc": [-85.631383, 41.945338] - }, - "n2909": { - "id": "n2909", - "loc": [-85.628843, 41.946103] - }, - "n2910": { - "id": "n2910", - "loc": [-85.631193, 41.945473] - }, - "n2911": { - "id": "n2911", - "loc": [-85.628897, 41.945944] - }, - "n2912": { - "id": "n2912", - "loc": [-85.628789, 41.946454] - }, - "n2913": { - "id": "n2913", - "loc": [-85.632548, 41.944563] - }, - "n2914": { - "id": "n2914", - "loc": [-85.627527, 41.944555] - }, - "n2915": { - "id": "n2915", - "loc": [-85.62752, 41.943726] - }, - "n2916": { - "id": "n2916", - "loc": [-85.627894, 41.943723] - }, - "n2917": { - "id": "n2917", - "loc": [-85.627897, 41.943919] - }, - "n2918": { - "id": "n2918", - "loc": [-85.627991, 41.943934] - }, - "n2919": { - "id": "n2919", - "loc": [-85.628082, 41.943966] - }, - "n2920": { - "id": "n2920", - "loc": [-85.628177, 41.944015] - }, - "n2921": { - "id": "n2921", - "loc": [-85.628193, 41.944048] - }, - "n2922": { - "id": "n2922", - "loc": [-85.628167, 41.944054] - }, - "n2923": { - "id": "n2923", - "loc": [-85.628193, 41.944094] - }, - "n2924": { - "id": "n2924", - "loc": [-85.628213, 41.944144] - }, - "n2925": { - "id": "n2925", - "loc": [-85.628214, 41.944199] - }, - "n2926": { - "id": "n2926", - "loc": [-85.62833, 41.944196] - }, - "n2927": { - "id": "n2927", - "loc": [-85.628328, 41.944262] - }, - "n2928": { - "id": "n2928", - "loc": [-85.628173, 41.944262] - }, - "n2929": { - "id": "n2929", - "loc": [-85.628171, 41.944293] - }, - "n2930": { - "id": "n2930", - "loc": [-85.628039, 41.944296] - }, - "n2931": { - "id": "n2931", - "loc": [-85.62804, 41.944329] - }, - "n2932": { - "id": "n2932", - "loc": [-85.627829, 41.944335] - }, - "n2933": { - "id": "n2933", - "loc": [-85.627835, 41.94455] - }, - "n2934": { - "id": "n2934", - "loc": [-85.632105, 41.946034] - }, - "n2935": { - "id": "n2935", - "loc": [-85.632278, 41.945784] - }, - "n2936": { - "id": "n2936", - "loc": [-85.632823, 41.945994] - }, - "n2937": { - "id": "n2937", - "loc": [-85.632684, 41.946196] - }, - "n2938": { - "id": "n2938", - "loc": [-85.632566, 41.946151] - }, - "n2939": { - "id": "n2939", - "loc": [-85.632532, 41.946198] - }, - "n2940": { - "id": "n2940", - "loc": [-85.632192, 41.945973] - }, - "n2941": { - "id": "n2941", - "loc": [-85.63226, 41.94587] - }, - "n2942": { - "id": "n2942", - "loc": [-85.632721, 41.946036] - }, - "n2943": { - "id": "n2943", - "loc": [-85.632641, 41.946142] - }, - "n2944": { - "id": "n2944", - "loc": [-85.62937, 41.947467] - }, - "n2945": { - "id": "n2945", - "loc": [-85.62959, 41.942936] - }, - "n2946": { - "id": "n2946", - "loc": [-85.629551, 41.94284] - }, - "n2947": { - "id": "n2947", - "loc": [-85.629501, 41.942704] - }, - "n2948": { - "id": "n2948", - "loc": [-85.629472, 41.942578] - }, - "n2949": { - "id": "n2949", - "loc": [-85.629361, 41.941801] - }, - "n2950": { - "id": "n2950", - "loc": [-85.629339, 41.941716] - }, - "n2951": { - "id": "n2951", - "loc": [-85.629315, 41.94166] - }, - "n2952": { - "id": "n2952", - "loc": [-85.629279, 41.941602] - }, - "n2953": { - "id": "n2953", - "loc": [-85.629227, 41.941556] - }, - "n2955": { - "id": "n2955", - "loc": [-85.629153, 41.941524] - }, - "n2956": { - "id": "n2956", - "loc": [-85.626904, 41.941098] - }, - "n2958": { - "id": "n2958", - "loc": [-85.631844, 41.942945] - }, - "n2959": { - "id": "n2959", - "loc": [-85.625854, 41.949222] - }, - "n2960": { - "id": "n2960", - "loc": [-85.625146, 41.955238] - }, - "n2961": { - "id": "n2961", - "loc": [-85.626745, 41.948296] - }, - "n2962": { - "id": "n2962", - "loc": [-85.625721, 41.95524] - }, - "n2963": { - "id": "n2963", - "loc": [-85.624706, 41.952317] - }, - "n2964": { - "id": "n2964", - "loc": [-85.62609, 41.956147] - }, - "n2965": { - "id": "n2965", - "loc": [-85.624401, 41.954928] - }, - "n2966": { - "id": "n2966", - "loc": [-85.626558, 41.955367] - }, - "n2967": { - "id": "n2967", - "loc": [-85.62468, 41.955096] - }, - "n2968": { - "id": "n2968", - "loc": [-85.624159, 41.953929] - }, - "n2969": { - "id": "n2969", - "loc": [-85.62506, 41.951113] - }, - "n2970": { - "id": "n2970", - "loc": [-85.624942, 41.951591] - }, - "n2971": { - "id": "n2971", - "loc": [-85.627399, 41.947546] - }, - "n2972": { - "id": "n2972", - "loc": [-85.627695, 41.947404] - }, - "n2973": { - "id": "n2973", - "loc": [-85.625925, 41.94896] - }, - "n2974": { - "id": "n2974", - "loc": [-85.625725, 41.950211] - }, - "n2975": { - "id": "n2975", - "loc": [-85.627008, 41.947963] - }, - "n2976": { - "id": "n2976", - "loc": [-85.624373, 41.953458] - }, - "n2977": { - "id": "n2977", - "loc": [-85.624137, 41.954392] - }, - "n2978": { - "id": "n2978", - "loc": [-85.628257, 41.947307] - }, - "n2979": { - "id": "n2979", - "loc": [-85.625281, 41.95066] - }, - "n2980": { - "id": "n2980", - "loc": [-85.625865, 41.949804] - }, - "n2981": { - "id": "n2981", - "loc": [-85.626508, 41.955932] - }, - "n2982": { - "id": "n2982", - "loc": [-85.626333, 41.955216] - }, - "n2983": { - "id": "n2983", - "loc": [-85.626637, 41.955676] - }, - "n2984": { - "id": "n2984", - "loc": [-85.624223, 41.954599] - }, - "n2985": { - "id": "n2985", - "loc": [-85.626219, 41.948671] - }, - "n2986": { - "id": "n2986", - "loc": [-85.624556, 41.953043] - }, - "n2987": { - "id": "n2987", - "loc": [-85.625598, 41.956302] - }, - "n2988": { - "id": "n2988", - "loc": [-85.624571, 41.952971] - }, "w527": { "id": "w527", + "nodes": ["n2934", "n2935", "n2936", "n2937", "n2938", "n2939", "n2934"], "tags": { "amenity": "parking" - }, - "nodes": ["n2934", "n2935", "n2936", "n2937", "n2938", "n2939", "n2934"] + } }, "w528": { "id": "w528", + "nodes": ["n2864", "n2892", "n2893", "n2877", "n2860", "n3840"], "tags": { "highway": "residential", "name": "Garden Street" - }, - "nodes": ["n2864", "n2892", "n2893", "n2877", "n2860", "n3840"] + } }, "w529": { "id": "w529", + "nodes": ["n2868", "n2890"], "tags": { "bridge": "yes", "highway": "secondary", "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" - }, - "nodes": ["n2868", "n2890"] + } + }, + "w53": { + "id": "w53", + "nodes": ["n251", "n252", "n253", "n254", "n255", "n256", "n257", "n258", "n259", "n260", "n261", "n262", "n251"], + "tags": { + "building": "yes" + } }, "w530": { "id": "w530", - "tags": { - "building": "yes" - }, "nodes": [ "n2914", "n2915", @@ -7026,65 +24453,71 @@ "n2932", "n2933", "n2914" - ] + ], + "tags": { + "building": "yes" + } }, "w531": { "id": "w531", + "nodes": ["n2958", "n2896"], "tags": { "bridge": "yes", "highway": "secondary", "name": "Main Street" - }, - "nodes": ["n2958", "n2896"] + } }, "w532": { "id": "w532", + "nodes": ["n2896", "n394", "n364", "n2748"], "tags": { "highway": "secondary", "name": "Main Street" - }, - "nodes": ["n2896", "n394", "n364", "n2748"] + } }, "w533": { "id": "w533", + "nodes": ["n2800", "n2943", "n2940", "n2941", "n2942", "n2943"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n2800", "n2943", "n2940", "n2941", "n2942", "n2943"] + } + }, + "w534": { + "id": "w534", + "nodes": ["n3836", "n3837", "n3839", "n3838", "n3834", "n4632", "n3831", "n4624", "n3835", "n3836"], + "tags": { + "barrier": "fence" + } }, "w535": { "id": "w535", + "nodes": ["n2894", "n2944", "n2774", "n2765"], "tags": { "highway": "residential", "name": "5th Avenue" - }, - "nodes": ["n2894", "n2944", "n2774", "n2765"] + } }, "w536": { "id": "w536", + "nodes": ["n2890", "n2780", "n627", "n2889", "n2887", "n623", "n2888", "n366", "n2748"], "tags": { "highway": "secondary", "name": "Michigan Avenue", "name_1": "State Highway 60", "ref": "M 60" - }, - "nodes": ["n2890", "n2780", "n627", "n2889", "n2887", "n623", "n2888", "n366", "n2748"] + } }, "w537": { "id": "w537", + "nodes": ["n2895", "n738", "n2887", "n737", "n2913"], "tags": { "highway": "residential", "name": "Water Street" - }, - "nodes": ["n2895", "n738", "n2887", "n737", "n2913"] + } }, "w538": { "id": "w538", - "tags": { - "highway": "residential", - "name": "River Drive" - }, "nodes": [ "n2855", "n3756", @@ -7104,23 +24537,30 @@ "n2848", "n2956", "n2856" - ] + ], + "tags": { + "highway": "residential", + "name": "River Drive" + } }, "w539": { "id": "w539", + "nodes": ["n2882", "n2894"], "tags": { "bridge": "yes", "highway": "residential", "name": "5th Avenue" - }, - "nodes": ["n2882", "n2894"] + } + }, + "w54": { + "id": "w54", + "nodes": ["n263", "n264", "n265", "n266", "n267", "n268", "n269", "n270", "n271", "n272", "n273", "n274", "n275", "n276", "n263"], + "tags": { + "building": "yes" + } }, "w540": { "id": "w540", - "tags": { - "name": "Portage River", - "waterway": "river" - }, "nodes": [ "n2987", "n2964", @@ -7170,851 +24610,55 @@ "n2905", "n2186", "n2233" - ] - }, - "n2989": { - "id": "n2989", - "loc": [-85.627141, 41.940727] - }, - "n2990": { - "id": "n2990", - "loc": [-85.627102, 41.939144] - }, - "n2991": { - "id": "n2991", - "loc": [-85.627127, 41.940086] - }, - "n2992": { - "id": "n2992", - "loc": [-85.627116, 41.940843] - }, - "n2993": { - "id": "n2993", - "loc": [-85.627132, 41.9402] - }, - "n2994": { - "id": "n2994", - "loc": [-85.629734, 41.940078] - }, - "n2995": { - "id": "n2995", - "loc": [-85.6276, 41.937412] - }, - "n2996": { - "id": "n2996", - "loc": [-85.627451, 41.937549] - }, - "n2997": { - "id": "n2997", - "loc": [-85.627375, 41.937618] - }, - "n2998": { - "id": "n2998", - "loc": [-85.627278, 41.937728] - }, - "n2999": { - "id": "n2999", - "loc": [-85.627199, 41.937842] - }, - "n3000": { - "id": "n3000", - "loc": [-85.627141, 41.937981] - }, - "n3001": { - "id": "n3001", - "loc": [-85.627109, 41.938153] - }, - "n3002": { - "id": "n3002", - "loc": [-85.627101, 41.938699] - }, - "n3003": { - "id": "n3003", - "loc": [-85.628311, 41.942261] - }, - "n3004": { - "id": "n3004", - "loc": [-85.628439, 41.940082] - }, - "n3005": { - "id": "n3005", - "loc": [-85.619538, 41.942622], + ], "tags": { - "leisure": "slipway" + "name": "Portage River", + "waterway": "river" } }, - "n3006": { - "id": "n3006", - "loc": [-85.619872, 41.942618] - }, - "n3007": { - "id": "n3007", - "loc": [-85.619755, 41.942612] - }, - "n3008": { - "id": "n3008", - "loc": [-85.619647, 41.942628] - }, - "n3009": { - "id": "n3009", - "loc": [-85.619415, 41.942626] - }, - "n3010": { - "id": "n3010", - "loc": [-85.619212, 41.942623] - }, "w541": { "id": "w541", + "nodes": ["n2852", "n2851", "n3003"], "tags": { "highway": "residential", "name": "1st Avenue" - }, - "nodes": ["n2852", "n2851", "n3003"] + } }, "w542": { "id": "w542", + "nodes": ["n2991", "n3004", "n2994"], "tags": { "highway": "residential", "name": "River Street" - }, - "nodes": ["n2991", "n3004", "n2994"] + } }, "w543": { "id": "w543", + "nodes": ["n2993", "n2989"], "tags": { "bridge": "yes", "highway": "residential", "name": "6th Street" - }, - "nodes": ["n2993", "n2989"] + } }, "w544": { "id": "w544", + "nodes": ["n2995", "n2996", "n2997", "n2998", "n2999", "n3000", "n3001", "n3002", "n2990", "n2991", "n2993"], "tags": { "highway": "residential", "name": "6th Street" - }, - "nodes": ["n2995", "n2996", "n2997", "n2998", "n2999", "n3000", "n3001", "n3002", "n2990", "n2991", "n2993"] + } }, "w545": { "id": "w545", + "nodes": ["n2989", "n2992", "n2848"], "tags": { "highway": "residential", "name": "6th Street" - }, - "nodes": ["n2989", "n2992", "n2848"] - }, - "n3011": { - "id": "n3011", - "loc": [-85.631485, 41.942472] - }, - "n3012": { - "id": "n3012", - "loc": [-85.630986, 41.941786] - }, - "n3013": { - "id": "n3013", - "loc": [-85.631797, 41.942006] - }, - "n3014": { - "id": "n3014", - "loc": [-85.630972, 41.941162] - }, - "n3015": { - "id": "n3015", - "loc": [-85.631396, 41.941611], - "tags": { - "railway": "level_crossing" } }, - "n3016": { - "id": "n3016", - "loc": [-85.631878, 41.941545] - }, - "n3017": { - "id": "n3017", - "loc": [-85.630461, 41.94055] - }, - "n3018": { - "id": "n3018", - "loc": [-85.629751, 41.939539], - "tags": { - "railway": "level_crossing" - } - }, - "n3019": { - "id": "n3019", - "loc": [-85.631663, 41.941513] - }, - "n3020": { - "id": "n3020", - "loc": [-85.631328, 41.941375] - }, - "n3021": { - "id": "n3021", - "loc": [-85.632554, 41.941779] - }, - "n3022": { - "id": "n3022", - "loc": [-85.63245, 41.941769] - }, - "n3023": { - "id": "n3023", - "loc": [-85.632475, 41.941644] - }, - "n3024": { - "id": "n3024", - "loc": [-85.632581, 41.941654] - }, - "n3025": { - "id": "n3025", - "loc": [-85.631957, 41.941352] - }, - "n3026": { - "id": "n3026", - "loc": [-85.632293, 41.941139] - }, - "n3027": { - "id": "n3027", - "loc": [-85.632315, 41.941153] - }, - "n3028": { - "id": "n3028", - "loc": [-85.632302, 41.941262] - }, - "n3029": { - "id": "n3029", - "loc": [-85.63237, 41.941267] - }, - "n3030": { - "id": "n3030", - "loc": [-85.632356, 41.941538] - }, - "n3031": { - "id": "n3031", - "loc": [-85.632134, 41.941678] - }, - "n3032": { - "id": "n3032", - "loc": [-85.631942, 41.941687] - }, - "n3033": { - "id": "n3033", - "loc": [-85.63203, 41.941694] - }, - "n3034": { - "id": "n3034", - "loc": [-85.632166, 41.941555] - }, - "n3035": { - "id": "n3035", - "loc": [-85.632412, 41.941416] - }, - "n3036": { - "id": "n3036", - "loc": [-85.63248, 41.941342] - }, - "n3037": { - "id": "n3037", - "loc": [-85.632502, 41.941259] - }, - "n3038": { - "id": "n3038", - "loc": [-85.632453, 41.941161] - }, - "n3039": { - "id": "n3039", - "loc": [-85.63235, 41.941103] - }, - "n3040": { - "id": "n3040", - "loc": [-85.632236, 41.941118] - }, - "n3041": { - "id": "n3041", - "loc": [-85.631894, 41.941355] - }, - "n3042": { - "id": "n3042", - "loc": [-85.631859, 41.941411] - }, - "n3043": { - "id": "n3043", - "loc": [-85.632011, 41.941587] - }, - "n3044": { - "id": "n3044", - "loc": [-85.632446, 41.941379] - }, - "n3045": { - "id": "n3045", - "loc": [-85.632511, 41.941416] - }, - "n3046": { - "id": "n3046", - "loc": [-85.632545, 41.941634] - }, - "n3047": { - "id": "n3047", - "loc": [-85.632612, 41.94164] - }, - "n3048": { - "id": "n3048", - "loc": [-85.632595, 41.942197] - }, - "n3049": { - "id": "n3049", - "loc": [-85.632565, 41.942241] - }, - "n3050": { - "id": "n3050", - "loc": [-85.632515, 41.942256] - }, - "n3051": { - "id": "n3051", - "loc": [-85.63245, 41.94223] - }, - "n3052": { - "id": "n3052", - "loc": [-85.632401, 41.942174] - }, - "n3053": { - "id": "n3053", - "loc": [-85.632391, 41.942115] - }, - "n3054": { - "id": "n3054", - "loc": [-85.632029, 41.941859] - }, - "n3055": { - "id": "n3055", - "loc": [-85.631828, 41.941639] - }, - "n3056": { - "id": "n3056", - "loc": [-85.631829, 41.941508] - }, - "n3057": { - "id": "n3057", - "loc": [-85.631281, 41.94312] - }, - "n3058": { - "id": "n3058", - "loc": [-85.631421, 41.943065] - }, - "n3059": { - "id": "n3059", - "loc": [-85.631339, 41.942949] - }, - "n3060": { - "id": "n3060", - "loc": [-85.631199, 41.943004] - }, - "n3061": { - "id": "n3061", - "loc": [-85.631102, 41.942931] - }, - "n3062": { - "id": "n3062", - "loc": [-85.631009, 41.942809] - }, - "n3063": { - "id": "n3063", - "loc": [-85.631383, 41.94265] - }, - "n3064": { - "id": "n3064", - "loc": [-85.631477, 41.942773] - }, - "n3065": { - "id": "n3065", - "loc": [-85.630638, 41.942809] - }, - "n3066": { - "id": "n3066", - "loc": [-85.630738, 41.942943] - }, - "n3067": { - "id": "n3067", - "loc": [-85.630841, 41.9429] - }, - "n3068": { - "id": "n3068", - "loc": [-85.630741, 41.942766] - }, - "n3069": { - "id": "n3069", - "loc": [-85.63054, 41.942603] - }, - "n3070": { - "id": "n3070", - "loc": [-85.630498, 41.942619] - }, - "n3071": { - "id": "n3071", - "loc": [-85.630567, 41.942718] - }, - "n3072": { - "id": "n3072", - "loc": [-85.630616, 41.942698] - }, - "n3073": { - "id": "n3073", - "loc": [-85.630642, 41.94273] - }, - "n3074": { - "id": "n3074", - "loc": [-85.630686, 41.942714] - }, - "n3075": { - "id": "n3075", - "loc": [-85.630715, 41.942754] - }, - "n3076": { - "id": "n3076", - "loc": [-85.6309, 41.942681] - }, - "n3077": { - "id": "n3077", - "loc": [-85.630843, 41.942605] - }, - "n3078": { - "id": "n3078", - "loc": [-85.6309, 41.942581] - }, - "n3079": { - "id": "n3079", - "loc": [-85.630832, 41.942487] - }, - "n3080": { - "id": "n3080", - "loc": [-85.630773, 41.942509] - }, - "n3081": { - "id": "n3081", - "loc": [-85.630718, 41.942436] - }, - "n3082": { - "id": "n3082", - "loc": [-85.630485, 41.942524] - }, - "n3083": { - "id": "n3083", - "loc": [-85.631468, 41.941233] - }, - "n3084": { - "id": "n3084", - "loc": [-85.631334, 41.94114] - }, - "n3085": { - "id": "n3085", - "loc": [-85.632052, 41.940568] - }, - "n3086": { - "id": "n3086", - "loc": [-85.63219, 41.940663] - }, - "n3087": { - "id": "n3087", - "loc": [-85.631323, 41.940834] - }, - "n3088": { - "id": "n3088", - "loc": [-85.631122, 41.941002] - }, - "n3089": { - "id": "n3089", - "loc": [-85.631321, 41.941133] - }, - "n3090": { - "id": "n3090", - "loc": [-85.631521, 41.940966] - }, - "n3091": { - "id": "n3091", - "loc": [-85.631103, 41.940253] - }, - "n3092": { - "id": "n3092", - "loc": [-85.631226, 41.940211] - }, - "n3093": { - "id": "n3093", - "loc": [-85.631597, 41.940805] - }, - "n3094": { - "id": "n3094", - "loc": [-85.631474, 41.940847] - }, - "n3095": { - "id": "n3095", - "loc": [-85.631811, 41.940534] - }, - "n3096": { - "id": "n3096", - "loc": [-85.631588, 41.94061] - }, - "n3097": { - "id": "n3097", - "loc": [-85.631438, 41.940366] - }, - "n3098": { - "id": "n3098", - "loc": [-85.631661, 41.94029] - }, - "n3099": { - "id": "n3099", - "loc": [-85.630621, 41.940041] - }, - "n3100": { - "id": "n3100", - "loc": [-85.630436, 41.939773] - }, - "n3101": { - "id": "n3101", - "loc": [-85.63059, 41.939714] - }, - "n3102": { - "id": "n3102", - "loc": [-85.630775, 41.939983] - }, - "n3103": { - "id": "n3103", - "loc": [-85.63047, 41.940167] - }, - "n3104": { - "id": "n3104", - "loc": [-85.63013, 41.939686] - }, - "n3105": { - "id": "n3105", - "loc": [-85.630302, 41.939618] - }, - "n3106": { - "id": "n3106", - "loc": [-85.630641, 41.9401] - }, - "n3107": { - "id": "n3107", - "loc": [-85.630966, 41.940619] - }, - "n3108": { - "id": "n3108", - "loc": [-85.630874, 41.940493] - }, - "n3109": { - "id": "n3109", - "loc": [-85.630933, 41.940469] - }, - "n3110": { - "id": "n3110", - "loc": [-85.630763, 41.940236] - }, - "n3111": { - "id": "n3111", - "loc": [-85.63088, 41.940189] - }, - "n3112": { - "id": "n3112", - "loc": [-85.631142, 41.940548] - }, - "n3113": { - "id": "n3113", - "loc": [-85.630958, 41.940871] - }, - "n3114": { - "id": "n3114", - "loc": [-85.630874, 41.940778] - }, - "n3115": { - "id": "n3115", - "loc": [-85.631062, 41.940684] - }, - "n3116": { - "id": "n3116", - "loc": [-85.631146, 41.940777] - }, - "n3117": { - "id": "n3117", - "loc": [-85.632031, 41.940575] - }, - "n3118": { - "id": "n3118", - "loc": [-85.631777, 41.940186] - }, - "n3119": { - "id": "n3119", - "loc": [-85.631346, 41.940179] - }, - "n3120": { - "id": "n3120", - "loc": [-85.631342, 41.94012] - }, - "n3121": { - "id": "n3121", - "loc": [-85.631831, 41.940118] - }, - "n3122": { - "id": "n3122", - "loc": [-85.632115, 41.940543] - }, - "n3123": { - "id": "n3123", - "loc": [-85.631031, 41.941683] - }, - "n3124": { - "id": "n3124", - "loc": [-85.630981, 41.941608] - }, - "n3125": { - "id": "n3125", - "loc": [-85.631209, 41.941516] - }, - "n3126": { - "id": "n3126", - "loc": [-85.631264, 41.941586] - }, - "n3127": { - "id": "n3127", - "loc": [-85.630938, 41.94155] - }, - "n3128": { - "id": "n3128", - "loc": [-85.631156, 41.941462] - }, - "n3129": { - "id": "n3129", - "loc": [-85.631197, 41.94152] - }, - "n3130": { - "id": "n3130", - "loc": [-85.630895, 41.941485] - }, - "n3131": { - "id": "n3131", - "loc": [-85.630824, 41.941389] - }, - "n3132": { - "id": "n3132", - "loc": [-85.630986, 41.941323] - }, - "n3133": { - "id": "n3133", - "loc": [-85.631057, 41.941419] - }, - "n3134": { - "id": "n3134", - "loc": [-85.630777, 41.941328] - }, - "n3135": { - "id": "n3135", - "loc": [-85.630907, 41.941274] - }, - "n3136": { - "id": "n3136", - "loc": [-85.630953, 41.941335] - }, - "n3137": { - "id": "n3137", - "loc": [-85.630797, 41.941247] - }, - "n3138": { - "id": "n3138", - "loc": [-85.630701, 41.94117] - }, - "n3139": { - "id": "n3139", - "loc": [-85.630829, 41.941113] - }, - "n3140": { - "id": "n3140", - "loc": [-85.6309, 41.941201] - }, - "n3141": { - "id": "n3141", - "loc": [-85.630765, 41.941206] - }, - "n3142": { - "id": "n3142", - "loc": [-85.630739, 41.941218] - }, - "n3143": { - "id": "n3143", - "loc": [-85.630582, 41.941039] - }, - "n3144": { - "id": "n3144", - "loc": [-85.630412, 41.940818] - }, - "n3145": { - "id": "n3145", - "loc": [-85.630509, 41.940777] - }, - "n3146": { - "id": "n3146", - "loc": [-85.630678, 41.941004] - }, - "n3147": { - "id": "n3147", - "loc": [-85.630773, 41.942166] - }, - "n3148": { - "id": "n3148", - "loc": [-85.630708, 41.942074] - }, - "n3149": { - "id": "n3149", - "loc": [-85.630863, 41.942013] - }, - "n3150": { - "id": "n3150", - "loc": [-85.630928, 41.942105] - }, - "n3151": { - "id": "n3151", - "loc": [-85.630701, 41.942026] - }, - "n3152": { - "id": "n3152", - "loc": [-85.630665, 41.941971] - }, - "n3153": { - "id": "n3153", - "loc": [-85.630793, 41.941918] - }, - "n3154": { - "id": "n3154", - "loc": [-85.630837, 41.94197] - }, - "n3155": { - "id": "n3155", - "loc": [-85.630757, 41.941871] - }, - "n3156": { - "id": "n3156", - "loc": [-85.630629, 41.941923] - }, - "n3157": { - "id": "n3157", - "loc": [-85.630694, 41.941783] - }, - "n3158": { - "id": "n3158", - "loc": [-85.630534, 41.941847] - }, - "n3159": { - "id": "n3159", - "loc": [-85.630598, 41.941935] - }, - "n3160": { - "id": "n3160", - "loc": [-85.631548, 41.93938] - }, - "n3161": { - "id": "n3161", - "loc": [-85.631525, 41.939919] - }, - "n3162": { - "id": "n3162", - "loc": [-85.631648, 41.940043] - }, - "n3169": { - "id": "n3169", - "loc": [-85.633628, 41.935437] - }, - "n3170": { - "id": "n3170", - "loc": [-85.632849, 41.935518] - }, - "n3171": { - "id": "n3171", - "loc": [-85.632376, 41.93574] - }, - "n3172": { - "id": "n3172", - "loc": [-85.631517, 41.935897] - }, - "n3173": { - "id": "n3173", - "loc": [-85.630433, 41.936124] - }, - "n3174": { - "id": "n3174", - "loc": [-85.630207, 41.936427] - }, - "n3175": { - "id": "n3175", - "loc": [-85.630346, 41.936795] - }, - "n3176": { - "id": "n3176", - "loc": [-85.62996, 41.936974] - }, - "n3177": { - "id": "n3177", - "loc": [-85.629916, 41.937488] - }, - "n3178": { - "id": "n3178", - "loc": [-85.629946, 41.937802] - }, - "n3179": { - "id": "n3179", - "loc": [-85.629977, 41.937905] - }, - "n3180": { - "id": "n3180", - "loc": [-85.63016, 41.937909] - }, - "n3181": { - "id": "n3181", - "loc": [-85.630804, 41.937791] - }, - "n3182": { - "id": "n3182", - "loc": [-85.631688, 41.937808] - }, - "n3183": { - "id": "n3183", - "loc": [-85.631685, 41.938008] - }, - "n3184": { - "id": "n3184", - "loc": [-85.631845, 41.938116] - }, - "n3185": { - "id": "n3185", - "loc": [-85.63207, 41.938181] - }, - "n3186": { - "id": "n3186", - "loc": [-85.632143, 41.938371] - }, - "n3187": { - "id": "n3187", - "loc": [-85.632056, 41.938435] - }, - "n3188": { - "id": "n3188", - "loc": [-85.631787, 41.938457] - }, - "n3189": { - "id": "n3189", - "loc": [-85.631657, 41.938728] - }, - "n3190": { - "id": "n3190", - "loc": [-85.631595, 41.93775] - }, - "n3191": { - "id": "n3191", - "loc": [-85.630264, 41.937839] - }, "w546": { "id": "w546", - "tags": { - "natural": "wetland" - }, "nodes": [ "n2313", "n3169", @@ -8050,36 +24694,43 @@ "n2112", "n2109", "n2313" - ] + ], + "tags": { + "natural": "wetland" + } }, "w547": { "id": "w547", + "nodes": ["n2088", "n3013", "n3015", "n3014", "n3017", "n3018"], "tags": { "name": "Conrail Railroad", "railway": "rail" - }, - "nodes": ["n2088", "n3013", "n3015", "n3014", "n3017", "n3018"] + } }, "w548": { "id": "w548", + "nodes": ["n3083", "n3084", "n3085", "n3086", "n3083"], "tags": { "building": "yes" - }, - "nodes": ["n3083", "n3084", "n3085", "n3086", "n3083"] + } }, "w549": { "id": "w549", + "nodes": ["n3020", "n2288", "n2283", "n2284", "n2131", "n2286", "n2287", "n2285", "n2132", "n2140", "n2289", "n3020"], "tags": { "leisure": "park", "name": "Conservation Park" - }, - "nodes": ["n3020", "n2288", "n2283", "n2284", "n2131", "n2286", "n2287", "n2285", "n2132", "n2140", "n2289", "n3020"] + } + }, + "w55": { + "id": "w55", + "nodes": ["n277", "n278", "n279", "n280", "n281", "n282", "n283", "n284", "n277"], + "tags": { + "building": "yes" + } }, "w550": { "id": "w550", - "tags": { - "highway": "service" - }, "nodes": [ "n3056", "n3042", @@ -8098,34 +24749,34 @@ "n3019", "n3015", "n3012" - ] + ], + "tags": { + "highway": "service" + } }, "w551": { "id": "w551", + "nodes": ["n3044", "n3045", "n3046", "n3047", "n3048", "n3049", "n3050", "n3051", "n3052", "n3053", "n3054", "n3055", "n3016"], "tags": { "highway": "footway" - }, - "nodes": ["n3044", "n3045", "n3046", "n3047", "n3048", "n3049", "n3050", "n3051", "n3052", "n3053", "n3054", "n3055", "n3016"] + } }, "w552": { "id": "w552", + "nodes": ["n3117", "n3118", "n3119", "n3120", "n3121", "n3122", "n3117"], "tags": { "building": "yes" - }, - "nodes": ["n3117", "n3118", "n3119", "n3120", "n3121", "n3122", "n3117"] + } }, "w553": { "id": "w553", + "nodes": ["n3123", "n3124", "n3129", "n3125", "n3126", "n3123"], "tags": { "building": "yes" - }, - "nodes": ["n3123", "n3124", "n3129", "n3125", "n3126", "n3123"] + } }, "w554": { "id": "w554", - "tags": { - "building": "yes" - }, "nodes": [ "n3069", "n3070", @@ -8142,619 +24793,331 @@ "n3081", "n3082", "n3069" - ] + ], + "tags": { + "building": "yes" + } }, "w555": { "id": "w555", + "nodes": ["n3087", "n3088", "n3089", "n3090", "n3087"], "tags": { "building": "yes" - }, - "nodes": ["n3087", "n3088", "n3089", "n3090", "n3087"] + } }, "w556": { "id": "w556", + "nodes": ["n3113", "n3114", "n3115", "n3116", "n3113"], "tags": { "building": "yes" - }, - "nodes": ["n3113", "n3114", "n3115", "n3116", "n3113"] + } }, "w557": { "id": "w557", + "nodes": ["n3103", "n3104", "n3105", "n3106", "n3103"], "tags": { "building": "yes" - }, - "nodes": ["n3103", "n3104", "n3105", "n3106", "n3103"] + } }, "w558": { "id": "w558", + "nodes": ["n3127", "n3128", "n3129", "n3124", "n3127"], "tags": { "building": "yes" - }, - "nodes": ["n3127", "n3128", "n3129", "n3124", "n3127"] + } }, "w559": { "id": "w559", + "nodes": ["n3137", "n3141", "n3142", "n3138", "n3139", "n3140", "n3137"], "tags": { "building": "yes" - }, - "nodes": ["n3137", "n3141", "n3142", "n3138", "n3139", "n3140", "n3137"] + } + }, + "w56": { + "id": "w56", + "nodes": ["n285", "n286", "n287", "n288", "n285"], + "tags": { + "amenity": "parking" + } }, "w560": { "id": "w560", + "nodes": ["n3091", "n3092", "n3093", "n3094", "n3091"], "tags": { "building": "yes" - }, - "nodes": ["n3091", "n3092", "n3093", "n3094", "n3091"] + } }, "w561": { "id": "w561", + "nodes": ["n3155", "n3157", "n3158", "n3159", "n3156", "n3155"], "tags": { "building": "yes" - }, - "nodes": ["n3155", "n3157", "n3158", "n3159", "n3156", "n3155"] + } }, "w562": { "id": "w562", + "nodes": ["n3057", "n3058", "n3059", "n3060", "n3057"], "tags": { "building": "yes" - }, - "nodes": ["n3057", "n3058", "n3059", "n3060", "n3057"] + } }, "w563": { "id": "w563", + "nodes": ["n3107", "n3108", "n3109", "n3110", "n3111", "n3112", "n3107"], "tags": { "building": "yes" - }, - "nodes": ["n3107", "n3108", "n3109", "n3110", "n3111", "n3112", "n3107"] + } }, "w564": { "id": "w564", + "nodes": ["n3134", "n3135", "n3136", "n3131", "n3134"], "tags": { "building": "yes" - }, - "nodes": ["n3134", "n3135", "n3136", "n3131", "n3134"] + } }, "w565": { "id": "w565", + "nodes": ["n3143", "n3144", "n3145", "n3146", "n3143"], "tags": { "building": "yes" - }, - "nodes": ["n3143", "n3144", "n3145", "n3146", "n3143"] + } }, "w566": { "id": "w566", + "nodes": ["n3095", "n3096", "n3097", "n3098", "n3095"], "tags": { "building": "yes" - }, - "nodes": ["n3095", "n3096", "n3097", "n3098", "n3095"] + } }, "w567": { "id": "w567", + "nodes": ["n3130", "n3131", "n3136", "n3132", "n3133", "n3130"], "tags": { "building": "yes" - }, - "nodes": ["n3130", "n3131", "n3136", "n3132", "n3133", "n3130"] + } }, "w568": { "id": "w568", + "nodes": ["n3025", "n3026", "n3027", "n3028", "n3029", "n3030", "n3031", "n3033", "n3032", "n3025"], "tags": { "amenity": "parking" - }, - "nodes": ["n3025", "n3026", "n3027", "n3028", "n3029", "n3030", "n3031", "n3033", "n3032", "n3025"] + } }, "w569": { "id": "w569", + "nodes": ["n3061", "n3062", "n3063", "n3064", "n3061"], "tags": { "building": "yes" - }, - "nodes": ["n3061", "n3062", "n3063", "n3064", "n3061"] + } + }, + "w57": { + "id": "w57", + "nodes": ["n289", "n290", "n291", "n292", "n289"], + "tags": { + "amenity": "parking" + } }, "w570": { "id": "w570", + "nodes": ["n3155", "n3156", "n3152", "n3153", "n3155"], "tags": { "building": "yes" - }, - "nodes": ["n3155", "n3156", "n3152", "n3153", "n3155"] + } }, "w571": { "id": "w571", + "nodes": ["n3099", "n3100", "n3101", "n3102", "n3099"], "tags": { "building": "yes" - }, - "nodes": ["n3099", "n3100", "n3101", "n3102", "n3099"] + } }, "w572": { "id": "w572", + "nodes": ["n3147", "n3148", "n3149", "n3150", "n3147"], "tags": { "building": "yes" - }, - "nodes": ["n3147", "n3148", "n3149", "n3150", "n3147"] + } }, "w573": { "id": "w573", + "nodes": ["n3039", "n2284"], "tags": { "highway": "service" - }, - "nodes": ["n3039", "n2284"] + } }, "w574": { "id": "w574", + "nodes": ["n3151", "n3152", "n3153", "n3154", "n3151"], "tags": { "building": "yes" - }, - "nodes": ["n3151", "n3152", "n3153", "n3154", "n3151"] + } }, "w575": { "id": "w575", + "nodes": ["n3021", "n3022", "n3023", "n3024", "n3021"], "tags": { "amenity": "shelter", "shelter_type": "picnic_shelter" - }, - "nodes": ["n3021", "n3022", "n3023", "n3024", "n3021"] + } }, "w576": { "id": "w576", + "nodes": ["n3065", "n3066", "n3067", "n3068", "n3065"], "tags": { "building": "yes" - }, - "nodes": ["n3065", "n3066", "n3067", "n3068", "n3065"] - }, - "n3192": { - "id": "n3192", - "loc": [-85.628591, 41.948536] - }, - "n3193": { - "id": "n3193", - "loc": [-85.63205, 41.951181] - }, - "n3194": { - "id": "n3194", - "loc": [-85.632034, 41.949909] - }, - "n3195": { - "id": "n3195", - "loc": [-85.630841, 41.951191] - }, - "n3196": { - "id": "n3196", - "loc": [-85.632083, 41.9537] - }, - "n3197": { - "id": "n3197", - "loc": [-85.630929, 41.959037] - }, - "n3198": { - "id": "n3198", - "loc": [-85.632151, 41.959028] - }, - "n3199": { - "id": "n3199", - "loc": [-85.630911, 41.957428] - }, - "n3200": { - "id": "n3200", - "loc": [-85.63213, 41.957427] - }, - "n3201": { - "id": "n3201", - "loc": [-85.632072, 41.952447] - }, - "n3202": { - "id": "n3202", - "loc": [-85.632095, 41.954677] - }, - "n3203": { - "id": "n3203", - "loc": [-85.632111, 41.955911] - }, - "n3204": { - "id": "n3204", - "loc": [-85.630855, 41.952457] - }, - "n3205": { - "id": "n3205", - "loc": [-85.630869, 41.953709] - }, - "n3206": { - "id": "n3206", - "loc": [-85.63088, 41.954682] - }, - "n3207": { - "id": "n3207", - "loc": [-85.630894, 41.955913] - }, - "n3208": { - "id": "n3208", - "loc": [-85.633214, 41.948619] - }, - "n3209": { - "id": "n3209", - "loc": [-85.633253, 41.951171] - }, - "n3210": { - "id": "n3210", - "loc": [-85.633234, 41.949901] - }, - "n3211": { - "id": "n3211", - "loc": [-85.633922, 41.948616] + } }, "w577": { "id": "w577", + "nodes": ["n2944", "n3192", "n3757", "n3813", "n3814", "n3815", "n3816", "n3817", "n3818", "n3819"], "tags": { "highway": "service", + "name": "Willow Drive", "service": "driveway", - "surface": "unpaved", - "name": "Willow Drive" - }, - "nodes": ["n2944", "n3192", "n3757", "n3813", "n3814", "n3815", "n3816", "n3817", "n3818", "n3819"] + "surface": "unpaved" + } + }, + "w578": { + "id": "w578", + "nodes": ["n2163", "n2165", "n2166", "n2167", "n2168", "n2172", "n2173", "n2174", "n2175", "n2176", "n2178", "n2181", "n2163"], + "tags": { + "building": "yes" + } }, "w579": { "id": "w579", + "nodes": [ + "n2754", + "n3195", + "n3204", + "n3205", + "n4537", + "n4540", + "n3206", + "n4530", + "n4536", + "n3207", + "n4524", + "n3199", + "n4521", + "n3197", + "n1032" + ], "tags": { "highway": "residential", "name": "Elm Street" - }, - "nodes": ["n2754", "n3195", "n3204", "n3205", "n3206", "n3207", "n3199", "n3197", "n1032"] + } + }, + "w58": { + "id": "w58", + "nodes": ["n240", "n293", "n294"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w580": { + "id": "w580", + "nodes": ["n2184", "n2185", "n2187", "n2190", "n2191", "n2192", "n2184"], + "tags": { + "building": "yes" + } }, "w581": { "id": "w581", + "nodes": ["n2765", "n3208", "n3211", "n2755", "n3280", "n2756", "n3346"], "tags": { "highway": "residential", "name": "Kelsey Street" - }, - "nodes": ["n2765", "n3208", "n3211", "n2755", "n3280", "n2756", "n3346"] + } }, "w582": { "id": "w582", + "nodes": ["n2753", "n3194", "n3193", "n3201", "n3196", "n4551", "n3202", "n4550", "n3203", "n3200", "n3198", "n1033"], "tags": { "highway": "residential", "name": "Walnut Street" - }, - "nodes": ["n2753", "n3194", "n3193", "n3201", "n3196", "n3202", "n3203", "n3200", "n3198", "n1033"] - }, - "n3212": { - "id": "n3212", - "loc": [-85.625188, 41.947832] - }, - "n3213": { - "id": "n3213", - "loc": [-85.625208, 41.947775] - }, - "n3214": { - "id": "n3214", - "loc": [-85.625229, 41.94776] - }, - "n3215": { - "id": "n3215", - "loc": [-85.625201, 41.947749] - }, - "n3216": { - "id": "n3216", - "loc": [-85.625168, 41.947707] - }, - "n3217": { - "id": "n3217", - "loc": [-85.625171, 41.947609] - }, - "n3218": { - "id": "n3218", - "loc": [-85.625213, 41.947564] - }, - "n3219": { - "id": "n3219", - "loc": [-85.62529, 41.94756] - }, - "n3220": { - "id": "n3220", - "loc": [-85.625303, 41.947533] - }, - "n3221": { - "id": "n3221", - "loc": [-85.625344, 41.947482] - }, - "n3222": { - "id": "n3222", - "loc": [-85.625442, 41.947468] - }, - "n3223": { - "id": "n3223", - "loc": [-85.62565, 41.947494] - }, - "n3224": { - "id": "n3224", - "loc": [-85.625726, 41.947613] - }, - "n3225": { - "id": "n3225", - "loc": [-85.625703, 41.947728] - }, - "n3226": { - "id": "n3226", - "loc": [-85.625534, 41.94781] - }, - "n3227": { - "id": "n3227", - "loc": [-85.625391, 41.947822] - }, - "n3228": { - "id": "n3228", - "loc": [-85.625304, 41.947859] - }, - "n3229": { - "id": "n3229", - "loc": [-85.625203, 41.947885] - }, - "n3230": { - "id": "n3230", - "loc": [-85.624688, 41.948662] - }, - "n3231": { - "id": "n3231", - "loc": [-85.624313, 41.948658] - }, - "n3232": { - "id": "n3232", - "loc": [-85.624306, 41.949057] - }, - "n3233": { - "id": "n3233", - "loc": [-85.624681, 41.94906] - }, - "n3234": { - "id": "n3234", - "loc": [-85.623623, 41.949606] - }, - "n3235": { - "id": "n3235", - "loc": [-85.623623, 41.9497] - }, - "n3236": { - "id": "n3236", - "loc": [-85.623357, 41.9497] - }, - "n3237": { - "id": "n3237", - "loc": [-85.623357, 41.949614] - }, - "n3238": { - "id": "n3238", - "loc": [-85.623974, 41.949429] - }, - "n3239": { - "id": "n3239", - "loc": [-85.623974, 41.949605] - }, - "n3240": { - "id": "n3240", - "loc": [-85.624497, 41.951229] - }, - "n3241": { - "id": "n3241", - "loc": [-85.624497, 41.951126] - }, - "n3242": { - "id": "n3242", - "loc": [-85.624315, 41.951126] - }, - "n3243": { - "id": "n3243", - "loc": [-85.624315, 41.951229] - }, - "n3244": { - "id": "n3244", - "loc": [-85.624121, 41.950866] - }, - "n3245": { - "id": "n3245", - "loc": [-85.624115, 41.950525] - }, - "n3246": { - "id": "n3246", - "loc": [-85.624315, 41.950523] - }, - "n3247": { - "id": "n3247", - "loc": [-85.62432, 41.950865] - }, - "n3248": { - "id": "n3248", - "loc": [-85.624393, 41.950867] - }, - "n3249": { - "id": "n3249", - "loc": [-85.62439, 41.950596] - }, - "n3250": { - "id": "n3250", - "loc": [-85.624673, 41.950594] - }, - "n3251": { - "id": "n3251", - "loc": [-85.624675, 41.95082] - }, - "n3252": { - "id": "n3252", - "loc": [-85.62451, 41.950821] - }, - "n3253": { - "id": "n3253", - "loc": [-85.62451, 41.950866] - }, - "n3254": { - "id": "n3254", - "loc": [-85.624101, 41.949346] - }, - "n3255": { - "id": "n3255", - "loc": [-85.624244, 41.949346] - }, - "n3256": { - "id": "n3256", - "loc": [-85.624244, 41.949368] - }, - "n3257": { - "id": "n3257", - "loc": [-85.62434, 41.949368] - }, - "n3258": { - "id": "n3258", - "loc": [-85.624342, 41.949351] - }, - "n3259": { - "id": "n3259", - "loc": [-85.624725, 41.949348] - }, - "n3260": { - "id": "n3260", - "loc": [-85.624755, 41.950495] - }, - "n3261": { - "id": "n3261", - "loc": [-85.624121, 41.950502] - }, - "n3262": { - "id": "n3262", - "loc": [-85.62544, 41.950174] - }, - "n3263": { - "id": "n3263", - "loc": [-85.625441, 41.949987] - }, - "n3264": { - "id": "n3264", - "loc": [-85.625536, 41.949988] - }, - "n3265": { - "id": "n3265", - "loc": [-85.625537, 41.949844] - }, - "n3266": { - "id": "n3266", - "loc": [-85.625564, 41.949844] - }, - "n3267": { - "id": "n3267", - "loc": [-85.625565, 41.949667] - }, - "n3268": { - "id": "n3268", - "loc": [-85.625182, 41.949666] - }, - "n3269": { - "id": "n3269", - "loc": [-85.625179, 41.950173] - }, - "n3270": { - "id": "n3270", - "loc": [-85.622992, 41.949614] - }, - "n3271": { - "id": "n3271", - "loc": [-85.622991, 41.949431] - }, - "n3272": { - "id": "n3272", - "loc": [-85.620103, 41.951] - }, - "n3273": { - "id": "n3273", - "loc": [-85.605644, 41.947468] - }, - "n3274": { - "id": "n3274", - "loc": [-85.617437, 41.947436] - }, - "n3275": { - "id": "n3275", - "loc": [-85.620088, 41.947429] - }, - "n3276": { - "id": "n3276", - "loc": [-85.620087, 41.94924] - }, - "n3277": { - "id": "n3277", - "loc": [-85.62156, 41.948333] - }, - "n3278": { - "id": "n3278", - "loc": [-85.620106, 41.950132] + } }, "w583": { "id": "w583", + "nodes": ["n3272", "n4469", "n4588", "n2879", "n4564", "n2872"], "tags": { "highway": "residential", "name": "10th Avenue" - }, - "nodes": ["n3272", "n2879", "n2872"] + } }, "w584": { "id": "w584", + "nodes": ["n3243", "n3242", "n3241", "n3240", "n3243"], "tags": { "building": "yes" - }, - "nodes": ["n3243", "n3242", "n3241", "n3240", "n3243"] + } }, "w585": { "id": "w585", + "nodes": ["n3273", "n3274", "n4631", "n4593", "n3275", "n4592", "n2846", "n4611", "n2847"], "tags": { "highway": "residential", "name": "6th Avenue" - }, - "nodes": ["n3273", "n3274", "n3275", "n2846", "n2847"] + } }, "w586": { "id": "w586", + "nodes": ["n3276", "n4591", "n2853", "n4605", "n2854"], "tags": { "highway": "residential", "name": "8th Avenue" - }, - "nodes": ["n3276", "n2853", "n2854"] + } }, "w587": { "id": "w587", + "nodes": ["n3269", "n3268", "n3267", "n3266", "n3265", "n3264", "n3263", "n3262", "n3269"], "tags": { "building": "yes" - }, - "nodes": ["n3269", "n3268", "n3267", "n3266", "n3265", "n3264", "n3263", "n3262", "n3269"] + } }, "w588": { "id": "w588", + "nodes": ["n3277", "n4599", "n2857", "n4598", "n4608", "n2858"], "tags": { "highway": "residential", "name": "7th Avenue" - }, - "nodes": ["n3277", "n2857", "n2858"] + } }, "w589": { "id": "w589", + "nodes": ["n3239", "n3238", "n3271", "n3270", "n3237", "n3236", "n3235", "n3234", "n3239"], "tags": { "building": "yes" - }, - "nodes": ["n3239", "n3238", "n3271", "n3270", "n3237", "n3236", "n3235", "n3234", "n3239"] + } + }, + "w59": { + "id": "w59", + "nodes": ["n294", "n295", "n296", "n297", "n298", "n299", "n300", "n301", "n302", "n303", "n491", "n304", "n305", "n306", "n307"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w590": { "id": "w590", + "nodes": ["n3278", "n4458", "n4589", "n4604", "n2861"], "tags": { "highway": "residential", "name": "9th Avenue" - }, - "nodes": ["n3278", "n2861"] + } }, "w591": { "id": "w591", + "nodes": ["n3253", "n3252", "n3251", "n3250", "n3249", "n3248", "n3253"], "tags": { "building": "yes" - }, - "nodes": ["n3253", "n3252", "n3251", "n3250", "n3249", "n3248", "n3253"] + } }, "w592": { "id": "w592", - "tags": { - "natural": "water", - "water": "pond" - }, "nodes": [ "n3229", "n3228", @@ -8775,596 +25138,57 @@ "n3213", "n3212", "n3229" - ] + ], + "tags": { + "natural": "water", + "water": "pond" + } }, "w593": { "id": "w593", + "nodes": ["n3261", "n3260", "n3259", "n3258", "n3257", "n3256", "n3255", "n3254", "n3261"], "tags": { "building": "yes" - }, - "nodes": ["n3261", "n3260", "n3259", "n3258", "n3257", "n3256", "n3255", "n3254", "n3261"] + } }, "w594": { "id": "w594", + "nodes": ["n3233", "n3232", "n3231", "n3230", "n3233"], "tags": { "building": "yes" - }, - "nodes": ["n3233", "n3232", "n3231", "n3230", "n3233"] + } }, "w595": { "id": "w595", + "nodes": ["n3247", "n3246", "n3245", "n3244", "n3247"], "tags": { "building": "yes" - }, - "nodes": ["n3247", "n3246", "n3245", "n3244", "n3247"] - }, - "n3279": { - "id": "n3279", - "loc": [-85.637412, 41.951136] + } }, "w596": { "id": "w596", + "nodes": ["n2769", "n3195", "n3193", "n3209", "n2758", "n2759", "n3279"], "tags": { "highway": "residential", "name": "Armitage Street" - }, - "nodes": ["n2769", "n3195", "n3193", "n3209", "n2758", "n2759", "n3279"] + } }, - "n3280": { - "id": "n3280", - "loc": [-85.635429, 41.948608] - }, - "n3281": { - "id": "n3281", - "loc": [-85.635047, 41.947788] - }, - "n3282": { - "id": "n3282", - "loc": [-85.635048, 41.947796] - }, - "n3283": { - "id": "n3283", - "loc": [-85.635002, 41.947797] - }, - "n3284": { - "id": "n3284", - "loc": [-85.635002, 41.947788] - }, - "n3285": { - "id": "n3285", - "loc": [-85.634914, 41.94779] - }, - "n3286": { - "id": "n3286", - "loc": [-85.634913, 41.947753] - }, - "n3287": { - "id": "n3287", - "loc": [-85.63494, 41.947753] - }, - "n3288": { - "id": "n3288", - "loc": [-85.634938, 41.947708] - }, - "n3289": { - "id": "n3289", - "loc": [-85.635124, 41.947705] - }, - "n3290": { - "id": "n3290", - "loc": [-85.635126, 41.947787] - }, - "n3291": { - "id": "n3291", - "loc": [-85.634972, 41.947599] - }, - "n3292": { - "id": "n3292", - "loc": [-85.634921, 41.9476] - }, - "n3293": { - "id": "n3293", - "loc": [-85.63485, 41.947546] - }, - "n3294": { - "id": "n3294", - "loc": [-85.63485, 41.947508] - }, - "n3295": { - "id": "n3295", - "loc": [-85.634924, 41.947457] - }, - "n3296": { - "id": "n3296", - "loc": [-85.634967, 41.947456] - }, - "n3297": { - "id": "n3297", - "loc": [-85.635041, 41.947512] - }, - "n3298": { - "id": "n3298", - "loc": [-85.635041, 41.947542] - }, - "n3299": { - "id": "n3299", - "loc": [-85.634244, 41.947839] - }, - "n3300": { - "id": "n3300", - "loc": [-85.634243, 41.947793] - }, - "n3301": { - "id": "n3301", - "loc": [-85.634244, 41.947686] - }, - "n3302": { - "id": "n3302", - "loc": [-85.634243, 41.947657] - }, - "n3303": { - "id": "n3303", - "loc": [-85.634462, 41.947653] - }, - "n3304": { - "id": "n3304", - "loc": [-85.634468, 41.947835] - }, - "n3305": { - "id": "n3305", - "loc": [-85.634416, 41.948006] - }, - "n3306": { - "id": "n3306", - "loc": [-85.634415, 41.947898] - }, - "n3307": { - "id": "n3307", - "loc": [-85.634275, 41.947899] - }, - "n3308": { - "id": "n3308", - "loc": [-85.634275, 41.947927] - }, - "n3309": { - "id": "n3309", - "loc": [-85.63425, 41.947927] - }, - "n3310": { - "id": "n3310", - "loc": [-85.63425, 41.947976] - }, - "n3311": { - "id": "n3311", - "loc": [-85.634274, 41.947976] - }, - "n3312": { - "id": "n3312", - "loc": [-85.634275, 41.948007] - }, - "n3313": { - "id": "n3313", - "loc": [-85.634342, 41.947635] - }, - "n3314": { - "id": "n3314", - "loc": [-85.634339, 41.947497] - }, - "n3315": { - "id": "n3315", - "loc": [-85.634313, 41.94748] - }, - "n3316": { - "id": "n3316", - "loc": [-85.634287, 41.947474] - }, - "n3317": { - "id": "n3317", - "loc": [-85.63498, 41.94815] - }, - "n3318": { - "id": "n3318", - "loc": [-85.634891, 41.94815] - }, - "n3319": { - "id": "n3319", - "loc": [-85.634892, 41.948169] - }, - "n3320": { - "id": "n3320", - "loc": [-85.634852, 41.948169] - }, - "n3321": { - "id": "n3321", - "loc": [-85.634853, 41.948268] - }, - "n3322": { - "id": "n3322", - "loc": [-85.634832, 41.948268] - }, - "n3323": { - "id": "n3323", - "loc": [-85.634832, 41.948296] - }, - "n3324": { - "id": "n3324", - "loc": [-85.634965, 41.948295] - }, - "n3325": { - "id": "n3325", - "loc": [-85.634966, 41.948321] - }, - "n3326": { - "id": "n3326", - "loc": [-85.634999, 41.948321] - }, - "n3327": { - "id": "n3327", - "loc": [-85.634999, 41.948295] - }, - "n3328": { - "id": "n3328", - "loc": [-85.635175, 41.948293] - }, - "n3329": { - "id": "n3329", - "loc": [-85.635175, 41.948262] - }, - "n3330": { - "id": "n3330", - "loc": [-85.635159, 41.948262] - }, - "n3331": { - "id": "n3331", - "loc": [-85.635158, 41.948152] - }, - "n3332": { - "id": "n3332", - "loc": [-85.635067, 41.948152] - }, - "n3333": { - "id": "n3333", - "loc": [-85.635065, 41.947966] - }, - "n3334": { - "id": "n3334", - "loc": [-85.634979, 41.947966] - }, - "n3335": { - "id": "n3335", - "loc": [-85.634307, 41.948326] - }, - "n3336": { - "id": "n3336", - "loc": [-85.634305, 41.948298] - }, - "n3337": { - "id": "n3337", - "loc": [-85.634331, 41.948055] - }, - "n3338": { - "id": "n3338", - "loc": [-85.634331, 41.948046] - }, - "n3339": { - "id": "n3339", - "loc": [-85.634435, 41.948047] - }, - "n3340": { - "id": "n3340", - "loc": [-85.634434, 41.948375] - }, - "n3341": { - "id": "n3341", - "loc": [-85.634463, 41.948373] - }, - "n3342": { - "id": "n3342", - "loc": [-85.634464, 41.948456] - }, - "n3343": { - "id": "n3343", - "loc": [-85.63443, 41.948457] - }, - "n3344": { - "id": "n3344", - "loc": [-85.634432, 41.948505] - }, - "n3345": { - "id": "n3345", - "loc": [-85.637386, 41.94906] - }, - "n3346": { - "id": "n3346", - "loc": [-85.637113, 41.9486] - }, - "n3347": { - "id": "n3347", - "loc": [-85.635448, 41.949424] - }, - "n3348": { - "id": "n3348", - "loc": [-85.636042, 41.949416] - }, - "n3349": { - "id": "n3349", - "loc": [-85.636046, 41.94958] - }, - "n3350": { - "id": "n3350", - "loc": [-85.635746, 41.949584] - }, - "n3351": { - "id": "n3351", - "loc": [-85.635751, 41.949784] - }, - "n3352": { - "id": "n3352", - "loc": [-85.635457, 41.949787] - }, - "n3353": { - "id": "n3353", - "loc": [-85.635459, 41.949886] - }, - "n3354": { - "id": "n3354", - "loc": [-85.634961, 41.949749] - }, - "n3355": { - "id": "n3355", - "loc": [-85.634961, 41.949764] - }, - "n3356": { - "id": "n3356", - "loc": [-85.634906, 41.94971] - }, - "n3357": { - "id": "n3357", - "loc": [-85.634905, 41.949657] - }, - "n3358": { - "id": "n3358", - "loc": [-85.634884, 41.949657] - }, - "n3359": { - "id": "n3359", - "loc": [-85.634883, 41.94971] - }, - "n3360": { - "id": "n3360", - "loc": [-85.635227, 41.949774] - }, - "n3361": { - "id": "n3361", - "loc": [-85.635218, 41.949779] - }, - "n3362": { - "id": "n3362", - "loc": [-85.635118, 41.949781] - }, - "n3363": { - "id": "n3363", - "loc": [-85.635118, 41.949746] - }, - "n3364": { - "id": "n3364", - "loc": [-85.634884, 41.949765] - }, - "n3365": { - "id": "n3365", - "loc": [-85.634883, 41.949624] - }, - "n3366": { - "id": "n3366", - "loc": [-85.635127, 41.949621] - }, - "n3367": { - "id": "n3367", - "loc": [-85.635126, 41.949589] - }, - "n3368": { - "id": "n3368", - "loc": [-85.635196, 41.949588] - }, - "n3369": { - "id": "n3369", - "loc": [-85.635192, 41.949452] - }, - "n3370": { - "id": "n3370", - "loc": [-85.6354, 41.949449] - }, - "n3371": { - "id": "n3371", - "loc": [-85.635407, 41.949771] - }, - "n3372": { - "id": "n3372", - "loc": [-85.634423, 41.950964] - }, - "n3373": { - "id": "n3373", - "loc": [-85.634424, 41.95074] - }, - "n3374": { - "id": "n3374", - "loc": [-85.634394, 41.950284] - }, - "n3375": { - "id": "n3375", - "loc": [-85.634398, 41.950626] - }, - "n3376": { - "id": "n3376", - "loc": [-85.63452, 41.951063] - }, - "n3377": { - "id": "n3377", - "loc": [-85.634511, 41.949977] - }, - "n3378": { - "id": "n3378", - "loc": [-85.637409, 41.949873] - }, - "n3379": { - "id": "n3379", - "loc": [-85.634824, 41.94996] - }, - "n3380": { - "id": "n3380", - "loc": [-85.635437, 41.949954] - }, - "n3381": { - "id": "n3381", - "loc": [-85.634844, 41.951064] - }, - "n3382": { - "id": "n3382", - "loc": [-85.635458, 41.951058] - }, - "n3383": { - "id": "n3383", - "loc": [-85.633921, 41.947333] - }, - "n3384": { - "id": "n3384", - "loc": [-85.634208, 41.947793] - }, - "n3385": { - "id": "n3385", - "loc": [-85.634204, 41.947687] - }, - "n3386": { - "id": "n3386", - "loc": [-85.63424, 41.947475] - }, - "n3387": { - "id": "n3387", - "loc": [-85.63424, 41.947635] - }, - "n3388": { - "id": "n3388", - "loc": [-85.634089, 41.948328] - }, - "n3389": { - "id": "n3389", - "loc": [-85.63424, 41.948299] - }, - "n3390": { - "id": "n3390", - "loc": [-85.634239, 41.948212] - }, - "n3391": { - "id": "n3391", - "loc": [-85.634086, 41.948214] - }, - "n3392": { - "id": "n3392", - "loc": [-85.63408, 41.948056] - }, - "n3393": { - "id": "n3393", - "loc": [-85.634093, 41.948506] - }, - "n3395": { - "id": "n3395", - "loc": [-85.63378, 41.95099] - }, - "n3396": { - "id": "n3396", - "loc": [-85.633779, 41.950967] - }, - "n3397": { - "id": "n3397", - "loc": [-85.63375, 41.950746] - }, - "n3398": { - "id": "n3398", - "loc": [-85.63375, 41.950697] - }, - "n3399": { - "id": "n3399", - "loc": [-85.633903, 41.950696] - }, - "n3400": { - "id": "n3400", - "loc": [-85.633901, 41.950436] - }, - "n3401": { - "id": "n3401", - "loc": [-85.633492, 41.950438] - }, - "n3402": { - "id": "n3402", - "loc": [-85.633494, 41.950756] - }, - "n3403": { - "id": "n3403", - "loc": [-85.633454, 41.950756] - }, - "n3404": { - "id": "n3404", - "loc": [-85.633456, 41.950992] - }, - "n3405": { - "id": "n3405", - "loc": [-85.633994, 41.950284] - }, - "n3406": { - "id": "n3406", - "loc": [-85.633998, 41.950628] - }, - "n3407": { - "id": "n3407", - "loc": [-85.633364, 41.951068] - }, - "n3408": { - "id": "n3408", - "loc": [-85.633356, 41.949982] - }, - "n3410": { - "id": "n3410", - "loc": [-85.633292, 41.953691] - }, - "n3411": { - "id": "n3411", - "loc": [-85.637432, 41.952399] - }, - "n3412": { - "id": "n3412", - "loc": [-85.633349, 41.957422] - }, - "n3413": { - "id": "n3413", - "loc": [-85.633326, 41.955909] - }, - "n3414": { - "id": "n3414", - "loc": [-85.633307, 41.954673] - }, - "n3415": { - "id": "n3415", - "loc": [-85.633273, 41.952436] - }, - "n3416": { - "id": "n3416", - "loc": [-85.633361, 41.95823], + "w597": { + "id": "w597", + "nodes": ["n2193", "n2194", "n2195", "n2197", "n2193"], "tags": { - "highway": "turning_circle" + "building": "yes" } }, "w598": { "id": "w598", + "nodes": ["n3404", "n3403", "n3402", "n3401", "n3400", "n3399", "n3398", "n3397", "n3373", "n3372", "n3396", "n3395", "n3404"], "tags": { "building": "school" - }, - "nodes": ["n3404", "n3403", "n3402", "n3401", "n3400", "n3399", "n3398", "n3397", "n3373", "n3372", "n3396", "n3395", "n3404"] + } }, "w599": { "id": "w599", - "tags": { - "building": "yes" - }, "nodes": [ "n3371", "n3370", @@ -9385,27 +25209,43 @@ "n3361", "n3360", "n3371" - ] + ], + "tags": { + "building": "yes" + } + }, + "w6": { + "id": "w6", + "nodes": ["n879", "n880", "n881", "n882", "n879"], + "tags": { + "building": "shed" + } + }, + "w60": { + "id": "w60", + "nodes": ["n239", "n308", "n307"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } }, "w600": { "id": "w600", + "nodes": ["n3387", "n3386", "n3316", "n3315", "n3314", "n3313", "n3387"], "tags": { "building": "yes" - }, - "nodes": ["n3387", "n3386", "n3316", "n3315", "n3314", "n3313", "n3387"] + } }, "w601": { "id": "w601", + "nodes": ["n3304", "n3303", "n3302", "n3301", "n3385", "n3384", "n3300", "n3299", "n3304"], "tags": { "building": "yes" - }, - "nodes": ["n3304", "n3303", "n3302", "n3301", "n3385", "n3384", "n3300", "n3299", "n3304"] + } }, "w602": { "id": "w602", - "tags": { - "building": "yes" - }, "nodes": [ "n3334", "n3333", @@ -9426,91 +25266,113 @@ "n3318", "n3317", "n3334" - ] + ], + "tags": { + "building": "yes" + } }, "w603": { "id": "w603", + "nodes": ["n3353", "n3352", "n3347", "n3280", "n2798"], "tags": { "highway": "service", "service": "alley", "surface": "unpaved" - }, - "nodes": ["n3353", "n3352", "n3347", "n3280", "n2798"] + } }, "w604": { "id": "w604", + "nodes": ["n3753", "n3211", "n3383"], "tags": { "highway": "service", "service": "alley" - }, - "nodes": ["n3753", "n3211", "n3383"] + } }, "w605": { "id": "w605", + "nodes": ["n3290", "n3289", "n3288", "n3287", "n3286", "n3285", "n3284", "n3283", "n3282", "n3281", "n3290"], "tags": { "building": "yes" - }, - "nodes": ["n3290", "n3289", "n3288", "n3287", "n3286", "n3285", "n3284", "n3283", "n3282", "n3281", "n3290"] + } + }, + "w606": { + "id": "w606", + "nodes": ["n2198", "n2199", "n2201", "n2202", "n2203", "n2206", "n2198"], + "tags": { + "building": "yes" + } + }, + "w607": { + "id": "w607", + "nodes": ["n2198", "n2207"], + "tags": { + "barrier": "wall" + } }, "w608": { "id": "w608", + "nodes": ["n2751", "n3208", "n3210", "n3209", "n3415", "n3410", "n3414", "n3413", "n3412", "n3416"], "tags": { "highway": "residential", "name": "East Street" - }, - "nodes": ["n2751", "n3208", "n3210", "n3209", "n3415", "n3410", "n3414", "n3413", "n3412", "n3416"] + } }, "w609": { "id": "w609", + "nodes": ["n2772", "n3346", "n3746", "n3748", "n3747", "n3345", "n3378", "n3279", "n3411"], "tags": { "highway": "residential", "name": "Maple Street" - }, - "nodes": ["n2772", "n3346", "n3746", "n3748", "n3747", "n3345", "n3378", "n3279", "n3411"] + } + }, + "w61": { + "id": "w61", + "nodes": ["n309", "n310", "n311", "n312", "n313", "n240"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w610": { "id": "w610", + "nodes": ["n3379", "n3380", "n3382", "n3381", "n3379"], "tags": { "leisure": "park", "name": "LaFayette Park" - }, - "nodes": ["n3379", "n3380", "n3382", "n3381", "n3379"] + } }, "w611": { "id": "w611", + "nodes": ["n2768", "n3194", "n3210", "n3753", "n2760", "n3353", "n2773", "n3378"], "tags": { "highway": "residential", "name": "Bennett Street" - }, - "nodes": ["n2768", "n3194", "n3210", "n3753", "n2760", "n3353", "n2773", "n3378"] + } }, "w612": { "id": "w612", + "nodes": ["n2751", "n3383", "n2749", "n2798", "n2772"], "tags": { "highway": "residential", "name": "Market Street" - }, - "nodes": ["n2751", "n3383", "n2749", "n2798", "n2772"] + } }, "w613": { "id": "w613", + "nodes": ["n3298", "n3297", "n3296", "n3295", "n3294", "n3293", "n3292", "n3291", "n3298"], "tags": { "building": "yes" - }, - "nodes": ["n3298", "n3297", "n3296", "n3295", "n3294", "n3293", "n3292", "n3291", "n3298"] + } }, "w614": { "id": "w614", + "nodes": ["n3375", "n3406", "n3405", "n3374", "n3375"], "tags": { "leisure": "playground" - }, - "nodes": ["n3375", "n3406", "n3405", "n3374", "n3375"] + } }, "w615": { "id": "w615", - "tags": { - "building": "yes" - }, "nodes": [ "n3393", "n3344", @@ -9529,387 +25391,83 @@ "n3335", "n3388", "n3393" - ] + ], + "tags": { + "building": "yes" + } }, "w616": { "id": "w616", + "nodes": ["n3376", "n3407", "n3408", "n3377", "n3376"], "tags": { "amenity": "school", "name": "Three Rivers Elementary School" - }, - "nodes": ["n3376", "n3407", "n3408", "n3377", "n3376"] + } }, "w617": { "id": "w617", + "nodes": ["n3312", "n3311", "n3310", "n3309", "n3308", "n3307", "n3306", "n3305", "n3312"], "tags": { "building": "yes" - }, - "nodes": ["n3312", "n3311", "n3310", "n3309", "n3308", "n3307", "n3306", "n3305", "n3312"] + } }, "w618": { "id": "w618", + "nodes": ["n3352", "n3351", "n3350", "n3349", "n3348", "n3347", "n3352"], "tags": { "amenity": "parking" - }, - "nodes": ["n3352", "n3351", "n3350", "n3349", "n3348", "n3347", "n3352"] - }, - "n3417": { - "id": "n3417", - "loc": [-85.619899, 41.945527] - }, - "n3420": { - "id": "n3420", - "loc": [-85.620088, 41.945571] - }, - "n3421": { - "id": "n3421", - "loc": [-85.620051, 41.945505] - }, - "n3422": { - "id": "n3422", - "loc": [-85.62001, 41.94541] - }, - "n3423": { - "id": "n3423", - "loc": [-85.620982, 41.944742] - }, - "n3424": { - "id": "n3424", - "loc": [-85.621305, 41.944782] - }, - "n3425": { - "id": "n3425", - "loc": [-85.621174, 41.944819] - }, - "n3426": { - "id": "n3426", - "loc": [-85.621029, 41.944871] - }, - "n3427": { - "id": "n3427", - "loc": [-85.620741, 41.945011] - }, - "n3428": { - "id": "n3428", - "loc": [-85.620616, 41.945085] - }, - "n3429": { - "id": "n3429", - "loc": [-85.620506, 41.945172] - }, - "n3430": { - "id": "n3430", - "loc": [-85.620394, 41.945273] - }, - "n3431": { - "id": "n3431", - "loc": [-85.620316, 41.94536] - }, - "n3432": { - "id": "n3432", - "loc": [-85.620257, 41.945452] - }, - "n3433": { - "id": "n3433", - "loc": [-85.620212, 41.945535] - }, - "n3434": { - "id": "n3434", - "loc": [-85.620101, 41.945811] - }, - "n3435": { - "id": "n3435", - "loc": [-85.620081, 41.945937] - }, - "n3436": { - "id": "n3436", - "loc": [-85.619899, 41.943718] - }, - "n3437": { - "id": "n3437", - "loc": [-85.619969, 41.943211] - }, - "n3438": { - "id": "n3438", - "loc": [-85.619894, 41.943292] - }, - "n3439": { - "id": "n3439", - "loc": [-85.620047, 41.944738] - }, - "n3440": { - "id": "n3440", - "loc": [-85.620226, 41.946088] - }, - "n3441": { - "id": "n3441", - "loc": [-85.620225, 41.945864] - }, - "n3442": { - "id": "n3442", - "loc": [-85.620518, 41.945863] - }, - "n3443": { - "id": "n3443", - "loc": [-85.620519, 41.945944] - }, - "n3444": { - "id": "n3444", - "loc": [-85.620388, 41.945944] - }, - "n3445": { - "id": "n3445", - "loc": [-85.620389, 41.946088] - }, - "n3446": { - "id": "n3446", - "loc": [-85.618405, 41.946566] - }, - "n3447": { - "id": "n3447", - "loc": [-85.619156, 41.946562] - }, - "n3448": { - "id": "n3448", - "loc": [-85.619154, 41.946319] - }, - "n3449": { - "id": "n3449", - "loc": [-85.618736, 41.946322] - }, - "n3450": { - "id": "n3450", - "loc": [-85.618733, 41.94612] - }, - "n3451": { - "id": "n3451", - "loc": [-85.619317, 41.946116] - }, - "n3452": { - "id": "n3452", - "loc": [-85.619316, 41.946023] - }, - "n3453": { - "id": "n3453", - "loc": [-85.619622, 41.946021] - }, - "n3454": { - "id": "n3454", - "loc": [-85.619624, 41.946171] - }, - "n3455": { - "id": "n3455", - "loc": [-85.61977, 41.94617] - }, - "n3456": { - "id": "n3456", - "loc": [-85.619769, 41.94602] - }, - "n3457": { - "id": "n3457", - "loc": [-85.619732, 41.94602] - }, - "n3458": { - "id": "n3458", - "loc": [-85.619731, 41.945856] - }, - "n3459": { - "id": "n3459", - "loc": [-85.619617, 41.945857] - }, - "n3460": { - "id": "n3460", - "loc": [-85.619616, 41.945776] - }, - "n3461": { - "id": "n3461", - "loc": [-85.619447, 41.945777] - }, - "n3462": { - "id": "n3462", - "loc": [-85.619415, 41.945778] - }, - "n3463": { - "id": "n3463", - "loc": [-85.618378, 41.945788] - }, - "n3464": { - "id": "n3464", - "loc": [-85.618384, 41.946132] - }, - "n3465": { - "id": "n3465", - "loc": [-85.618503, 41.94613] - }, - "n3466": { - "id": "n3466", - "loc": [-85.618506, 41.946319] - }, - "n3467": { - "id": "n3467", - "loc": [-85.6184, 41.94632] - }, - "n3468": { - "id": "n3468", - "loc": [-85.618248, 41.946416] - }, - "n3469": { - "id": "n3469", - "loc": [-85.618247, 41.946319] - }, - "n3470": { - "id": "n3470", - "loc": [-85.618039, 41.946321] - }, - "n3471": { - "id": "n3471", - "loc": [-85.61804, 41.946418] - }, - "n3472": { - "id": "n3472", - "loc": [-85.620118, 41.951895] - }, - "n3473": { - "id": "n3473", - "loc": [-85.617062, 41.954691] - }, - "n3474": { - "id": "n3474", - "loc": [-85.620112, 41.952114] - }, - "n3475": { - "id": "n3475", - "loc": [-85.620091, 41.95232] - }, - "n3476": { - "id": "n3476", - "loc": [-85.620047, 41.952505] - }, - "n3477": { - "id": "n3477", - "loc": [-85.61998, 41.952715] - }, - "n3478": { - "id": "n3478", - "loc": [-85.619861, 41.952986] - }, - "n3479": { - "id": "n3479", - "loc": [-85.619622, 41.953365] - }, - "n3480": { - "id": "n3480", - "loc": [-85.619441, 41.953567] - }, - "n3481": { - "id": "n3481", - "loc": [-85.619259, 41.953741] - }, - "n3482": { - "id": "n3482", - "loc": [-85.618835, 41.954056] - }, - "n3483": { - "id": "n3483", - "loc": [-85.618602, 41.954194] - }, - "n3484": { - "id": "n3484", - "loc": [-85.618305, 41.954347] - }, - "n3485": { - "id": "n3485", - "loc": [-85.618006, 41.954466] - }, - "n3486": { - "id": "n3486", - "loc": [-85.617611, 41.954587] - }, - "n3487": { - "id": "n3487", - "loc": [-85.615094, 41.943412] - }, - "n3488": { - "id": "n3488", - "loc": [-85.619337, 41.943025] - }, - "n3489": { - "id": "n3489", - "loc": [-85.610477, 41.945527] - }, - "n3490": { - "id": "n3490", - "loc": [-85.610477, 41.943718] - }, - "n3491": { - "id": "n3491", - "loc": [-85.619804, 41.942976] - }, - "n3492": { - "id": "n3492", - "loc": [-85.61921, 41.942672] - }, - "n3493": { - "id": "n3493", - "loc": [-85.619862, 41.942836] - }, - "n3494": { - "id": "n3494", - "loc": [-85.616326, 41.942769] - }, - "n3495": { - "id": "n3495", - "loc": [-85.617953, 41.942917] - }, - "n3496": { - "id": "n3496", - "loc": [-85.61972, 41.942728] - }, - "n3497": { - "id": "n3497", - "loc": [-85.61944, 41.942784] - }, - "n3498": { - "id": "n3498", - "loc": [-85.615323, 41.942841] - }, - "n3499": { - "id": "n3499", - "loc": [-85.612923, 41.943718] - }, - "n3500": { - "id": "n3500", - "loc": [-85.61958, 41.942756] + } }, "w619": { "id": "w619", + "nodes": ["n2863", "n3424", "n3425", "n3426", "n3427", "n3428", "n3429", "n3430", "n3431", "n3432", "n3433", "n2844"], "tags": { "highway": "secondary", "name": "Michigan Avenue", "ref": "M 60" - }, - "nodes": ["n2863", "n3424", "n3425", "n3426", "n3427", "n3428", "n3429", "n3430", "n3431", "n3432", "n3433", "n2844"] + } + }, + "w62": { + "id": "w62", + "nodes": [ + "n876", + "n906", + "n904", + "n875", + "n874", + "n873", + "n872", + "n871", + "n870", + "n869", + "n41", + "n868", + "n146", + "n314", + "n315", + "n1956" + ], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w620": { "id": "w620", + "nodes": ["n2844", "n3420", "n3421", "n3422", "n3439", "n2859", "n3437", "n3493", "n3496", "n3500", "n3497"], "tags": { "highway": "residential" - }, - "nodes": ["n2844", "n3420", "n3421", "n3422", "n3439", "n2859", "n3437", "n3493", "n3496", "n3500", "n3497"] + } }, "w621": { "id": "w621", + "nodes": ["n3468", "n3469", "n3470", "n3471", "n3468"], "tags": { "building": "yes" - }, - "nodes": ["n3468", "n3469", "n3470", "n3471", "n3468"] + } }, "w622": { "id": "w622", - "tags": { - "name": "Riverside Cemetery", - "landuse": "cemetery" - }, "nodes": [ "n3417", "n3436", @@ -9925,20 +25483,21 @@ "n3490", "n3489", "n3417" - ] + ], + "tags": { + "landuse": "cemetery", + "name": "Riverside Cemetery" + } }, "w623": { "id": "w623", + "nodes": ["n3440", "n3441", "n3442", "n3443", "n3444", "n3445", "n3440"], "tags": { "building": "yes" - }, - "nodes": ["n3440", "n3441", "n3442", "n3443", "n3444", "n3445", "n3440"] + } }, "w624": { "id": "w624", - "tags": { - "building": "yes" - }, "nodes": [ "n3446", "n3447", @@ -9963,24 +25522,23 @@ "n3466", "n3467", "n3446" - ] + ], + "tags": { + "building": "yes" + } }, "w625": { "id": "w625", - "tags": { - "highway": "secondary", - "name": "Jefferson Street", - "name_1": "State Highway 60", - "ref": "M 60" - }, "nodes": [ "n2844", "n3434", "n3435", "n2878", "n3275", + "n4621", "n3276", "n3278", + "n4463", "n3272", "n3472", "n3474", @@ -9997,899 +25555,144 @@ "n3483", "n3484", "n3485", + "n4574", "n3486", "n3473" - ] + ], + "tags": { + "highway": "secondary", + "name": "Jefferson Street", + "name_1": "State Highway 60", + "ref": "M 60" + } }, "w626": { "id": "w626", + "nodes": ["n3439", "n3423", "n2863"], "tags": { "highway": "unclassified", "name": "Michigan Avenue", "name_1": "State Highway 60" - }, - "nodes": ["n3439", "n3423", "n2863"] - }, - "n3501": { - "id": "n3501", - "loc": [-85.619643, 41.942647], - "tags": { - "leisure": "fishing" } }, - "n3502": { - "id": "n3502", - "loc": [-85.619935, 41.942962] - }, "w627": { "id": "w627", + "nodes": ["n3500", "n3005"], "tags": { "highway": "service" - }, - "nodes": ["n3500", "n3005"] + } }, "w628": { "id": "w628", + "nodes": ["n3491", "n3488", "n3492", "n3010", "n3009", "n3005", "n3008", "n3007", "n3006", "n3502", "n3491"], "tags": { "leisure": "park", "name": "Marina Park" - }, - "nodes": ["n3491", "n3488", "n3492", "n3010", "n3009", "n3005", "n3008", "n3007", "n3006", "n3502", "n3491"] + } }, - "n3503": { - "id": "n3503", - "loc": [-85.629677, 41.954687] + "w629": { + "id": "w629", + "nodes": ["n2208", "n2209", "n2212", "n2214", "n2208"], + "tags": { + "building": "yes" + } }, - "n3504": { - "id": "n3504", - "loc": [-85.629083, 41.953722] - }, - "n3507": { - "id": "n3507", - "loc": [-85.629665, 41.953718] - }, - "n3508": { - "id": "n3508", - "loc": [-85.624454, 41.954707] + "w63": { + "id": "w63", + "nodes": ["n1955", "n316"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w630": { "id": "w630", + "nodes": [ + "n2757", + "n3414", + "n3202", + "n4542", + "n3206", + "n4538", + "n3750", + "n3503", + "n1629", + "n4500", + "n2763", + "n4502", + "n2764", + "n3508" + ], "tags": { "highway": "residential", "name": "Hoffman Street" - }, - "nodes": ["n2757", "n3414", "n3202", "n3206", "n3750", "n3503", "n1629", "n2763", "n2764", "n3508"] + } + }, + "w631": { + "id": "w631", + "nodes": ["n2215", "n2750", "n2770", "n2771", "n2215"], + "tags": { + "building": "yes" + } }, "w632": { "id": "w632", + "nodes": ["n2766", "n3504", "n3507", "n3751", "n3205", "n3196", "n3410", "n2746"], "tags": { "highway": "residential", "name": "Cushman Street" - }, - "nodes": ["n2766", "n3504", "n3507", "n3751", "n3205", "n3196", "n3410", "n2746"] + } }, "w633": { "id": "w633", + "nodes": ["n2745", "n3749", "n3507", "n4535", "n3503"], "tags": { "highway": "residential", "name": "Pine Street" - }, - "nodes": ["n2745", "n3749", "n3507", "n3503"] - }, - "n3509": { - "id": "n3509", - "loc": [-85.634609, 41.954585] - }, - "n3510": { - "id": "n3510", - "loc": [-85.634595, 41.953772] - }, - "n3511": { - "id": "n3511", - "loc": [-85.633425, 41.953783] - }, - "n3512": { - "id": "n3512", - "loc": [-85.633439, 41.954596] - }, - "n3513": { - "id": "n3513", - "loc": [-85.63727, 41.952289] - }, - "n3514": { - "id": "n3514", - "loc": [-85.637268, 41.952158] - }, - "n3515": { - "id": "n3515", - "loc": [-85.63695, 41.952162] - }, - "n3516": { - "id": "n3516", - "loc": [-85.636953, 41.952293] + } }, "w634": { "id": "w634", + "nodes": ["n3510", "n3511", "n3512", "n3509", "n3510"], "tags": { "leisure": "park", "name": "Bowman Park" - }, - "nodes": ["n3510", "n3511", "n3512", "n3509", "n3510"] + } }, "w635": { "id": "w635", + "nodes": ["n3513", "n3514", "n3515", "n3516", "n3513"], "tags": { "building": "yes" - }, - "nodes": ["n3513", "n3514", "n3515", "n3516", "n3513"] + } }, "w636": { "id": "w636", + "nodes": ["n2745", "n3752", "n3204", "n3201", "n3415", "n2761", "n2767", "n3411"], "tags": { "highway": "residential", "name": "Wheeler Street" - }, - "nodes": ["n2745", "n3752", "n3204", "n3201", "n3415", "n2761", "n2767", "n3411"] - }, - "n3518": { - "id": "n3518", - "loc": [-85.624105, 41.954704] - }, - "n3519": { - "id": "n3519", - "loc": [-85.623348, 41.954547] - }, - "n3520": { - "id": "n3520", - "loc": [-85.623123, 41.954502] - }, - "n3521": { - "id": "n3521", - "loc": [-85.622923, 41.954469] - }, - "n3522": { - "id": "n3522", - "loc": [-85.622787, 41.954457] - }, - "n3523": { - "id": "n3523", - "loc": [-85.622612, 41.954458] - }, - "n3524": { - "id": "n3524", - "loc": [-85.622368, 41.954472] - }, - "n3525": { - "id": "n3525", - "loc": [-85.62403, 41.954895] - }, - "n3526": { - "id": "n3526", - "loc": [-85.623579, 41.954855] - }, - "n3527": { - "id": "n3527", - "loc": [-85.623836, 41.954951] - }, - "n3528": { - "id": "n3528", - "loc": [-85.622473, 41.954592] - }, - "n3529": { - "id": "n3529", - "loc": [-85.622753, 41.95458] - }, - "n3530": { - "id": "n3530", - "loc": [-85.62404, 41.955078] - }, - "n3531": { - "id": "n3531", - "loc": [-85.624126, 41.954999] - }, - "n3532": { - "id": "n3532", - "loc": [-85.623171, 41.954687] - }, - "n3533": { - "id": "n3533", - "loc": [-85.624276, 41.955206] - }, - "n3534": { - "id": "n3534", - "loc": [-85.62491, 41.952801] - }, - "n3535": { - "id": "n3535", - "loc": [-85.625186, 41.952756] - }, - "n3536": { - "id": "n3536", - "loc": [-85.625552, 41.952792] - }, - "n3537": { - "id": "n3537", - "loc": [-85.626001, 41.952948] - }, - "n3538": { - "id": "n3538", - "loc": [-85.626528, 41.952984] - }, - "n3539": { - "id": "n3539", - "loc": [-85.626942, 41.952886] - }, - "n3540": { - "id": "n3540", - "loc": [-85.627092, 41.952685] - }, - "n3541": { - "id": "n3541", - "loc": [-85.627212, 41.95244] - }, - "n3542": { - "id": "n3542", - "loc": [-85.627158, 41.952226] - }, - "n3543": { - "id": "n3543", - "loc": [-85.627002, 41.951972] - }, - "n3544": { - "id": "n3544", - "loc": [-85.626822, 41.951838] - }, - "n3545": { - "id": "n3545", - "loc": [-85.626528, 41.951807] - }, - "n3546": { - "id": "n3546", - "loc": [-85.625653, 41.951852] - }, - "n3547": { - "id": "n3547", - "loc": [-85.625348, 41.951834] - }, - "n3548": { - "id": "n3548", - "loc": [-85.625114, 41.951767] - }, - "n3549": { - "id": "n3549", - "loc": [-85.620627, 41.954682] - }, - "n3550": { - "id": "n3550", - "loc": [-85.622758, 41.951884] - }, - "n3551": { - "id": "n3551", - "loc": [-85.618673, 41.954734] - }, - "n3552": { - "id": "n3552", - "loc": [-85.620229, 41.95472] - }, - "n3553": { - "id": "n3553", - "loc": [-85.624491, 41.955573] - }, - "n3554": { - "id": "n3554", - "loc": [-85.621792, 41.958314] - }, - "n3555": { - "id": "n3555", - "loc": [-85.623395, 41.960001] - }, - "n3556": { - "id": "n3556", - "loc": [-85.620461, 41.956212] - }, - "n3557": { - "id": "n3557", - "loc": [-85.62109, 41.956766] - }, - "n3558": { - "id": "n3558", - "loc": [-85.620246, 41.956224] - }, - "n3559": { - "id": "n3559", - "loc": [-85.625017, 41.956068] - }, - "n3560": { - "id": "n3560", - "loc": [-85.622795, 41.959702] - }, - "n3561": { - "id": "n3561", - "loc": [-85.621573, 41.958457] - }, - "n3562": { - "id": "n3562", - "loc": [-85.619631, 41.9573] - }, - "n3563": { - "id": "n3563", - "loc": [-85.62095, 41.956311] - }, - "n3564": { - "id": "n3564", - "loc": [-85.619694, 41.957408] - }, - "n3565": { - "id": "n3565", - "loc": [-85.621079, 41.957751] - }, - "n3566": { - "id": "n3566", - "loc": [-85.622426, 41.961142] - }, - "n3567": { - "id": "n3567", - "loc": [-85.623251, 41.960484] - }, - "n3568": { - "id": "n3568", - "loc": [-85.619084, 41.956291] - }, - "n3569": { - "id": "n3569", - "loc": [-85.622227, 41.959303] - }, - "n3570": { - "id": "n3570", - "loc": [-85.620976, 41.959104] - }, - "n3571": { - "id": "n3571", - "loc": [-85.621208, 41.95653] - }, - "n3572": { - "id": "n3572", - "loc": [-85.623531, 41.95951] - }, - "n3573": { - "id": "n3573", - "loc": [-85.623556, 41.957935] - }, - "n3574": { - "id": "n3574", - "loc": [-85.623037, 41.95746] - }, - "n3575": { - "id": "n3575", - "loc": [-85.621175, 41.956427] - }, - "n3576": { - "id": "n3576", - "loc": [-85.622651, 41.960109] - }, - "n3577": { - "id": "n3577", - "loc": [-85.621803, 41.960747] - }, - "n3578": { - "id": "n3578", - "loc": [-85.620791, 41.961874] - }, - "n3579": { - "id": "n3579", - "loc": [-85.625295, 41.956786] - }, - "n3580": { - "id": "n3580", - "loc": [-85.619662, 41.956894] - }, - "n3581": { - "id": "n3581", - "loc": [-85.622442, 41.958708] - }, - "n3582": { - "id": "n3582", - "loc": [-85.621744, 41.955864] - }, - "n3583": { - "id": "n3583", - "loc": [-85.621336, 41.959212] - }, - "n3584": { - "id": "n3584", - "loc": [-85.622801, 41.957304] - }, - "n3585": { - "id": "n3585", - "loc": [-85.619973, 41.957433] - }, - "n3586": { - "id": "n3586", - "loc": [-85.619556, 41.955717] - }, - "n3587": { - "id": "n3587", - "loc": [-85.622978, 41.958601] - }, - "n3588": { - "id": "n3588", - "loc": [-85.625396, 41.956264] - }, - "n3589": { - "id": "n3589", - "loc": [-85.623525, 41.958034] - }, - "n3590": { - "id": "n3590", - "loc": [-85.623299, 41.959631] - }, - "n3591": { - "id": "n3591", - "loc": [-85.622678, 41.959873] - }, - "n3592": { - "id": "n3592", - "loc": [-85.625553, 41.956179] - }, - "n3593": { - "id": "n3593", - "loc": [-85.623557, 41.959231] - }, - "n3594": { - "id": "n3594", - "loc": [-85.622843, 41.957373] - }, - "n3595": { - "id": "n3595", - "loc": [-85.619378, 41.955677] - }, - "n3596": { - "id": "n3596", - "loc": [-85.620092, 41.955425] - }, - "n3597": { - "id": "n3597", - "loc": [-85.622666, 41.96044] - }, - "n3598": { - "id": "n3598", - "loc": [-85.621996, 41.960256] - }, - "n3599": { - "id": "n3599", - "loc": [-85.623273, 41.959997] - }, - "n3600": { - "id": "n3600", - "loc": [-85.62477, 41.95689] - }, - "n3601": { - "id": "n3601", - "loc": [-85.621641, 41.955015] - }, - "n3602": { - "id": "n3602", - "loc": [-85.622495, 41.960392] - }, - "n3603": { - "id": "n3603", - "loc": [-85.61918, 41.955565] - }, - "n3604": { - "id": "n3604", - "loc": [-85.620017, 41.955505] - }, - "n3605": { - "id": "n3605", - "loc": [-85.621739, 41.956315] - }, - "n3606": { - "id": "n3606", - "loc": [-85.622957, 41.959837] - }, - "n3607": { - "id": "n3607", - "loc": [-85.620912, 41.960919] - }, - "n3608": { - "id": "n3608", - "loc": [-85.625231, 41.956235] - }, - "n3609": { - "id": "n3609", - "loc": [-85.620976, 41.961868] - }, - "n3610": { - "id": "n3610", - "loc": [-85.620956, 41.958908] - }, - "n3611": { - "id": "n3611", - "loc": [-85.619035, 41.956139] - }, - "n3612": { - "id": "n3612", - "loc": [-85.623643, 41.958669] - }, - "n3613": { - "id": "n3613", - "loc": [-85.61949, 41.956539] - }, - "n3614": { - "id": "n3614", - "loc": [-85.621927, 41.958242] - }, - "n3615": { - "id": "n3615", - "loc": [-85.620826, 41.955721] - }, - "n3616": { - "id": "n3616", - "loc": [-85.621202, 41.961321] - }, - "n3617": { - "id": "n3617", - "loc": [-85.624877, 41.95594] - }, - "n3618": { - "id": "n3618", - "loc": [-85.62065, 41.958369] - }, - "n3619": { - "id": "n3619", - "loc": [-85.621524, 41.956279] - }, - "n3620": { - "id": "n3620", - "loc": [-85.624662, 41.955932] - }, - "n3621": { - "id": "n3621", - "loc": [-85.623048, 41.958509] - }, - "n3622": { - "id": "n3622", - "loc": [-85.62111, 41.95754] - }, - "n3623": { - "id": "n3623", - "loc": [-85.621508, 41.954847] - }, - "n3624": { - "id": "n3624", - "loc": [-85.620655, 41.958601] - }, - "n3625": { - "id": "n3625", - "loc": [-85.62154, 41.954971] - }, - "n3626": { - "id": "n3626", - "loc": [-85.621691, 41.955521] - }, - "n3627": { - "id": "n3627", - "loc": [-85.62154, 41.954739] - }, - "n3628": { - "id": "n3628", - "loc": [-85.621996, 41.959913] - }, - "n3629": { - "id": "n3629", - "loc": [-85.622286, 41.960699] - }, - "n3630": { - "id": "n3630", - "loc": [-85.622844, 41.9572] - }, - "n3631": { - "id": "n3631", - "loc": [-85.620252, 41.955446] - }, - "n3632": { - "id": "n3632", - "loc": [-85.623434, 41.957528] - }, - "n3633": { - "id": "n3633", - "loc": [-85.623429, 41.956858] - }, - "n3634": { - "id": "n3634", - "loc": [-85.622957, 41.957137] - }, - "n3635": { - "id": "n3635", - "loc": [-85.622554, 41.959027] - }, - "n3636": { - "id": "n3636", - "loc": [-85.623289, 41.958314] - }, - "n3637": { - "id": "n3637", - "loc": [-85.622977, 41.960855] - }, - "n3638": { - "id": "n3638", - "loc": [-85.624008, 41.956953] - }, - "n3639": { - "id": "n3639", - "loc": [-85.621278, 41.960855] - }, - "n3640": { - "id": "n3640", - "loc": [-85.623128, 41.956993] - }, - "n3641": { - "id": "n3641", - "loc": [-85.622452, 41.959183] - }, - "n3642": { - "id": "n3642", - "loc": [-85.621095, 41.961082] - }, - "n3643": { - "id": "n3643", - "loc": [-85.622011, 41.960544] - }, - "n3644": { - "id": "n3644", - "loc": [-85.621637, 41.955385] - }, - "n3645": { - "id": "n3645", - "loc": [-85.620999, 41.959271] - }, - "n3646": { - "id": "n3646", - "loc": [-85.620044, 41.956347] - }, - "n3647": { - "id": "n3647", - "loc": [-85.621936, 41.959682] - }, - "n3648": { - "id": "n3648", - "loc": [-85.623761, 41.95685] - }, - "n3649": { - "id": "n3649", - "loc": [-85.621239, 41.959343] - }, - "n3650": { - "id": "n3650", - "loc": [-85.621073, 41.956012] - }, - "n3651": { - "id": "n3651", - "loc": [-85.621271, 41.956184] - }, - "n3652": { - "id": "n3652", - "loc": [-85.623444, 41.95778] - }, - "n3653": { - "id": "n3653", - "loc": [-85.62125, 41.96186] - }, - "n3654": { - "id": "n3654", - "loc": [-85.62169, 41.961059] - }, - "n3655": { - "id": "n3655", - "loc": [-85.620012, 41.955637] - }, - "n3656": { - "id": "n3656", - "loc": [-85.621058, 41.9573] - }, - "n3657": { - "id": "n3657", - "loc": [-85.621138, 41.957663] - }, - "n3658": { - "id": "n3658", - "loc": [-85.620773, 41.957895] - }, - "n3659": { - "id": "n3659", - "loc": [-85.62007, 41.957157] - }, - "n3660": { - "id": "n3660", - "loc": [-85.624534, 41.955844] - }, - "n3661": { - "id": "n3661", - "loc": [-85.621932, 41.960807] - }, - "n3662": { - "id": "n3662", - "loc": [-85.623358, 41.958138] - }, - "n3663": { - "id": "n3663", - "loc": [-85.620456, 41.955514] - }, - "n3664": { - "id": "n3664", - "loc": [-85.623504, 41.957607] - }, - "n3665": { - "id": "n3665", - "loc": [-85.621444, 41.960751] - }, - "n3666": { - "id": "n3666", - "loc": [-85.623492, 41.960213] - }, - "n3667": { - "id": "n3667", - "loc": [-85.621669, 41.954655] - }, - "n3668": { - "id": "n3668", - "loc": [-85.623106, 41.958685] - }, - "n3669": { - "id": "n3669", - "loc": [-85.620922, 41.957867] - }, - "n3670": { - "id": "n3670", - "loc": [-85.620092, 41.957296] - }, - "n3671": { - "id": "n3671", - "loc": [-85.621669, 41.955222] - }, - "n3672": { - "id": "n3672", - "loc": [-85.621614, 41.960967] - }, - "n3673": { - "id": "n3673", - "loc": [-85.621691, 41.955732] - }, - "n3674": { - "id": "n3674", - "loc": [-85.619207, 41.956419] - }, - "n3675": { - "id": "n3675", - "loc": [-85.621116, 41.956603] - }, - "n3676": { - "id": "n3676", - "loc": [-85.623311, 41.956929] - }, - "n3677": { - "id": "n3677", - "loc": [-85.625671, 41.956499] - }, - "n3678": { - "id": "n3678", - "loc": [-85.623525, 41.956738] - }, - "n3679": { - "id": "n3679", - "loc": [-85.625381, 41.956634] - }, - "n3680": { - "id": "n3680", - "loc": [-85.620096, 41.95677] - }, - "n3681": { - "id": "n3681", - "loc": [-85.623803, 41.958745] - }, - "n3682": { - "id": "n3682", - "loc": [-85.623498, 41.958457] - }, - "n3683": { - "id": "n3683", - "loc": [-85.624223, 41.957009] - }, - "n3684": { - "id": "n3684", - "loc": [-85.620026, 41.956946] - }, - "n3685": { - "id": "n3685", - "loc": [-85.623005, 41.960124] - }, - "n3686": { - "id": "n3686", - "loc": [-85.619073, 41.955832] - }, - "n3687": { - "id": "n3687", - "loc": [-85.621744, 41.95501] - }, - "n3688": { - "id": "n3688", - "loc": [-85.620804, 41.958781] - }, - "n3689": { - "id": "n3689", - "loc": [-85.619844, 41.957448] - }, - "n3690": { - "id": "n3690", - "loc": [-85.623713, 41.958872] - }, - "n3691": { - "id": "n3691", - "loc": [-85.622329, 41.960507] - }, - "n3692": { - "id": "n3692", - "loc": [-85.620804, 41.956244] - }, - "n3693": { - "id": "n3693", - "loc": [-85.621818, 41.955968] - }, - "n3694": { - "id": "n3694", - "loc": [-85.621405, 41.958697] - }, - "n3695": { - "id": "n3695", - "loc": [-85.620998, 41.960996] - }, - "n3696": { - "id": "n3696", - "loc": [-85.621621, 41.960444] - }, - "n3697": { - "id": "n3697", - "loc": [-85.620941, 41.961637] - }, - "n3698": { - "id": "n3698", - "loc": [-85.622195, 41.958333] - }, - "n3699": { - "id": "n3699", - "loc": [-85.621668, 41.961529] - }, - "n3700": { - "id": "n3700", - "loc": [-85.621015, 41.957049] - }, - "n3701": { - "id": "n3701", - "loc": [-85.619368, 41.955521] + } }, "w637": { "id": "w637", + "nodes": ["n3550", "n4586", "n4476", "n3472"], "tags": { "highway": "residential", "name": "11th Avenue" - }, - "nodes": ["n3550", "n3472"] + } }, "w638": { "id": "w638", + "nodes": ["n3508", "n3518"], "tags": { "bridge": "yes", "highway": "residential", "name": "Hoffman Street" - }, - "nodes": ["n3508", "n3518"] + } }, "w639": { "id": "w639", - "tags": { - "highway": "residential", - "name": "Hoffman Street" - }, "nodes": [ "n3518", "n1204", @@ -10898,23 +25701,37 @@ "n3520", "n3521", "n3522", - "n4", "n3523", + "n2161", "n3524", "n3549", "n3552", + "n4239", "n3551", - "n1684", - "n3473" - ] + "n4577", + "n4582", + "n4578", + "n4583", + "n4579", + "n4574" + ], + "tags": { + "highway": "residential", + "name": "Hoffman Street" + } + }, + "w64": { + "id": "w64", + "nodes": ["n316", "n317"], + "tags": { + "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", + "layer": "1" + } }, "w640": { "id": "w640", - "tags": { - "landuse": "reservoir", - "name": "Hoffman Pond", - "natural": "water" - }, "nodes": [ "n3634", "n3640", @@ -11076,13 +25893,15 @@ "n3584", "n3630", "n3634" - ] + ], + "tags": { + "landuse": "reservoir", + "name": "Hoffman Pond", + "natural": "water" + } }, "w641": { "id": "w641", - "tags": { - "waterway": "river" - }, "nodes": [ "n2988", "n3534", @@ -11101,183 +25920,13 @@ "n3547", "n3548", "n2970" - ] - }, - "n3702": { - "id": "n3702", - "loc": [-85.651578, 41.942534] - }, - "n3703": { - "id": "n3703", - "loc": [-85.651541, 41.943847] - }, - "n3704": { - "id": "n3704", - "loc": [-85.651365, 41.944817] - }, - "n3705": { - "id": "n3705", - "loc": [-85.651076, 41.945985] - }, - "n3706": { - "id": "n3706", - "loc": [-85.650626, 41.947213] - }, - "n3707": { - "id": "n3707", - "loc": [-85.649669, 41.949161] - }, - "n3708": { - "id": "n3708", - "loc": [-85.641802, 41.961801] - }, - "n3709": { - "id": "n3709", - "loc": [-85.623333, 41.961987] - }, - "n3710": { - "id": "n3710", - "loc": [-85.620621, 41.965658] - }, - "n3711": { - "id": "n3711", - "loc": [-85.605673, 41.965764] - }, - "n3712": { - "id": "n3712", - "loc": [-85.605664, 41.962094] - }, - "n3713": { - "id": "n3713", - "loc": [-85.583774, 41.962178] - }, - "n3714": { - "id": "n3714", - "loc": [-85.583774, 41.961789] - }, - "n3715": { - "id": "n3715", - "loc": [-85.581303, 41.961783] - }, - "n3716": { - "id": "n3716", - "loc": [-85.581245, 41.958394] - }, - "n3717": { - "id": "n3717", - "loc": [-85.585299, 41.955483] - }, - "n3718": { - "id": "n3718", - "loc": [-85.585588, 41.955331] - }, - "n3719": { - "id": "n3719", - "loc": [-85.586053, 41.955163] - }, - "n3720": { - "id": "n3720", - "loc": [-85.58632, 41.955076] - }, - "n3721": { - "id": "n3721", - "loc": [-85.586478, 41.955025] - }, - "n3722": { - "id": "n3722", - "loc": [-85.58692, 41.954947] - }, - "n3723": { - "id": "n3723", - "loc": [-85.587345, 41.954913] - }, - "n3724": { - "id": "n3724", - "loc": [-85.605592, 41.954766] - }, - "n3725": { - "id": "n3725", - "loc": [-85.605303, 41.936236] - }, - "n3726": { - "id": "n3726", - "loc": [-85.606941, 41.936117] - }, - "n3727": { - "id": "n3727", - "loc": [-85.60876, 41.935856] - }, - "n3728": { - "id": "n3728", - "loc": [-85.610092, 41.935451] - }, - "n3729": { - "id": "n3729", - "loc": [-85.610681, 41.935247] - }, - "n3730": { - "id": "n3730", - "loc": [-85.611446, 41.934955] - }, - "n3731": { - "id": "n3731", - "loc": [-85.612057, 41.934696] - }, - "n3732": { - "id": "n3732", - "loc": [-85.613256, 41.934084] - }, - "n3733": { - "id": "n3733", - "loc": [-85.613948, 41.933682] - }, - "n3734": { - "id": "n3734", - "loc": [-85.614638, 41.933212] - }, - "n3735": { - "id": "n3735", - "loc": [-85.619801, 41.929305] - }, - "n3736": { - "id": "n3736", - "loc": [-85.619768, 41.925548] - }, - "n3737": { - "id": "n3737", - "loc": [-85.625761, 41.925597] - }, - "n3738": { - "id": "n3738", - "loc": [-85.6263, 41.927323] - }, - "n3739": { - "id": "n3739", - "loc": [-85.633708, 41.927402] - }, - "n3740": { - "id": "n3740", - "loc": [-85.633927, 41.929109] - }, - "n3741": { - "id": "n3741", - "loc": [-85.639213, 41.929088] - }, - "n3742": { - "id": "n3742", - "loc": [-85.639204, 41.925488] - }, - "n3743": { - "id": "n3743", - "loc": [-85.651425, 41.925406] + ], + "tags": { + "waterway": "river" + } }, "w642": { "id": "w642", - "tags": { - "admin_level": "8", - "boundary": "administrative", - "landuse": "residential" - }, "nodes": [ "n3702", "n3703", @@ -11322,798 +25971,257 @@ "n3742", "n3743", "n3702" - ] - }, - "r5": { - "id": "r5", + ], "tags": { "admin_level": "8", - "border_type": "city", "boundary": "administrative", - "name": "Three Rivers", - "place": "city", - "type": "boundary" - }, - "members": [{ - "id": "w642", "type": "way", "role": "outer" - }] + "landuse": "residential" + } }, - "n3758": { - "id": "n3758", - "loc": [-85.627415, 41.957442] + "w643": { + "id": "w643", + "nodes": ["n2839", "n2873"], + "tags": { + "highway": "service", + "service": "driveway" + } }, - "n3759": { - "id": "n3759", - "loc": [-85.627019, 41.957369] + "w644": { + "id": "w644", + "nodes": ["n2873", "n2840"], + "tags": { + "bridge": "yes", + "highway": "service", + "layer": "1", + "service": "driveway" + } }, - "n3778": { - "id": "n3778", - "loc": [-85.626158, 41.958996] - }, - "n3779": { - "id": "n3779", - "loc": [-85.626319, 41.958686] - }, - "n3780": { - "id": "n3780", - "loc": [-85.626119, 41.958629] - }, - "n3781": { - "id": "n3781", - "loc": [-85.626064, 41.958733] - }, - "n3782": { - "id": "n3782", - "loc": [-85.626155, 41.958759] - }, - "n3783": { - "id": "n3783", - "loc": [-85.626048, 41.958965] + "w645": { + "id": "w645", + "nodes": ["n2840", "n2841", "n2842", "n2845", "n2866"], + "tags": { + "highway": "service", + "service": "driveway", + "surface": "unpaved" + } }, "w646": { "id": "w646", + "nodes": [ + "n2752", + "n3759", + "n1420", + "n1421", + "n1422", + "n3758", + "n4507", + "n4506", + "n4505", + "n4520", + "n3199", + "n4522", + "n4504", + "n4546", + "n3200", + "n4547", + "n3412" + ], "tags": { "highway": "residential", "name": "Flower Street" - }, - "nodes": ["n2752", "n3759", "n1420", "n1421", "n1422", "n3758", "n3199", "n3200", "n3412"] + } + }, + "w647": { + "id": "w647", + "nodes": ["n2874", "n2875", "n2876", "n2954", "n2874"], + "tags": { + "building": "yes" + } }, "w648": { "id": "w648", + "nodes": ["n3778", "n3779", "n3780", "n3781", "n3782", "n3783", "n3778"], "tags": { "building": "yes" - }, - "nodes": ["n3778", "n3779", "n3780", "n3781", "n3782", "n3783", "n3778"] + } }, "w649": { "id": "w649", + "nodes": ["n3197", "n4543", "n4544", "n3198"], "tags": { "highway": "residential", "name": "Morris Avenue", "surface": "unpaved" - }, - "nodes": ["n3197", "n3198"] + } + }, + "w65": { + "id": "w65", + "nodes": ["n317", "n318", "n319", "n320", "n321"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w650": { "id": "w650", + "nodes": ["n3207", "n4526", "n4528", "n4548", "n3203", "n4549", "n3413", "n2762"], "tags": { "highway": "residential", "name": "Adams Street" - }, - "nodes": ["n3207", "n3203", "n3413", "n2762"] - }, - "n3785": { - "id": "n3785", - "loc": [-85.63826, 41.961213] - }, - "n3786": { - "id": "n3786", - "loc": [-85.638003, 41.961614] - }, - "n3787": { - "id": "n3787", - "loc": [-85.638817, 41.961902] - }, - "n3788": { - "id": "n3788", - "loc": [-85.639073, 41.961501] + } }, "w651": { "id": "w651", + "nodes": ["n3788", "n3785", "n3786", "n3787", "n3788"], "tags": { "power": "station" - }, - "nodes": ["n3788", "n3785", "n3786", "n3787", "n3788"] + } }, - "n3800": { - "id": "n3800", - "loc": [-85.620773, 41.955585] - }, - "n3801": { - "id": "n3801", - "loc": [-85.621265, 41.955989] - }, - "n3802": { - "id": "n3802", - "loc": [-85.620692, 41.954969] - }, - "n3803": { - "id": "n3803", - "loc": [-85.620691, 41.955367] + "w652": { + "id": "w652", + "nodes": ["n2957", "n3163", "n3241"], + "tags": { + "barrier": "wall" + } }, "w653": { "id": "w653", + "nodes": ["n3549", "n3802", "n3803", "n3800", "n3801"], "tags": { "highway": "service", "surface": "unpaved" - }, - "nodes": ["n3549", "n3802", "n3803", "n3800", "n3801"] - }, - "n3857": { - "id": "n3857", - "loc": [-85.618937, 41.951943] - }, - "n3858": { - "id": "n3858", - "loc": [-85.616755, 41.952231] - }, - "n3859": { - "id": "n3859", - "loc": [-85.616799, 41.95472] - }, - "n3860": { - "id": "n3860", - "loc": [-85.616458, 41.954735] - }, - "n3861": { - "id": "n3861", - "loc": [-85.61763, 41.951515] - }, - "n3862": { - "id": "n3862", - "loc": [-85.617735, 41.951572] - }, - "n3863": { - "id": "n3863", - "loc": [-85.61929, 41.951573] - }, - "n3864": { - "id": "n3864", - "loc": [-85.617148, 41.951358] - }, - "n3865": { - "id": "n3865", - "loc": [-85.616598, 41.95192] - }, - "n3866": { - "id": "n3866", - "loc": [-85.616572, 41.951992] - }, - "n3867": { - "id": "n3867", - "loc": [-85.616583, 41.952076] - }, - "n3868": { - "id": "n3868", - "loc": [-85.616636, 41.952145] - }, - "n3869": { - "id": "n3869", - "loc": [-85.616916, 41.952279] - }, - "n3870": { - "id": "n3870", - "loc": [-85.617088, 41.952254] - }, - "n3871": { - "id": "n3871", - "loc": [-85.61892, 41.951467] - }, - "n3872": { - "id": "n3872", - "loc": [-85.618035, 41.951473] - }, - "n3873": { - "id": "n3873", - "loc": [-85.618036, 41.951572] - }, - "n3874": { - "id": "n3874", - "loc": [-85.61892, 41.951573] - }, - "n3875": { - "id": "n3875", - "loc": [-85.618919, 41.951957] - }, - "n3876": { - "id": "n3876", - "loc": [-85.619457, 41.952237] - }, - "n3877": { - "id": "n3877", - "loc": [-85.618178, 41.953618] - }, - "n3878": { - "id": "n3878", - "loc": [-85.617658, 41.953366] - }, - "n3879": { - "id": "n3879", - "loc": [-85.617987, 41.953024] - }, - "n3880": { - "id": "n3880", - "loc": [-85.618429, 41.953248] - }, - "n3881": { - "id": "n3881", - "loc": [-85.618554, 41.953119] - }, - "n3882": { - "id": "n3882", - "loc": [-85.618077, 41.952868] - }, - "n3883": { - "id": "n3883", - "loc": [-85.618039, 41.952886] - }, - "n3884": { - "id": "n3884", - "loc": [-85.619375, 41.952169] - }, - "n3885": { - "id": "n3885", - "loc": [-85.618137, 41.953538] - }, - "n3886": { - "id": "n3886", - "loc": [-85.61799, 41.953555] - }, - "n3887": { - "id": "n3887", - "loc": [-85.617729, 41.953423] - }, - "n3888": { - "id": "n3888", - "loc": [-85.618101, 41.953029] - }, - "n3889": { - "id": "n3889", - "loc": [-85.618516, 41.953119] - }, - "n3890": { - "id": "n3890", - "loc": [-85.619132, 41.952042] - }, - "n3891": { - "id": "n3891", - "loc": [-85.618235, 41.952981] - }, - "n3892": { - "id": "n3892", - "loc": [-85.618485, 41.952425] - }, - "n3893": { - "id": "n3893", - "loc": [-85.618676, 41.952519] - }, - "n3894": { - "id": "n3894", - "loc": [-85.618942, 41.952648] - }, - "n3895": { - "id": "n3895", - "loc": [-85.618287, 41.953122] - }, - "n3896": { - "id": "n3896", - "loc": [-85.617914, 41.953516] - }, - "n3897": { - "id": "n3897", - "loc": [-85.617836, 41.953573] - }, - "n3898": { - "id": "n3898", - "loc": [-85.616567, 41.952971] - }, - "n3899": { - "id": "n3899", - "loc": [-85.618441, 41.953201] - }, - "n3900": { - "id": "n3900", - "loc": [-85.617514, 41.953335] - }, - "n3901": { - "id": "n3901", - "loc": [-85.617187, 41.953168] - }, - "n3902": { - "id": "n3902", - "loc": [-85.61722, 41.953131] - }, - "n3903": { - "id": "n3903", - "loc": [-85.617189, 41.953116] - }, - "n3904": { - "id": "n3904", - "loc": [-85.617173, 41.953128] - }, - "n3905": { - "id": "n3905", - "loc": [-85.616765, 41.952921] - }, - "n3906": { - "id": "n3906", - "loc": [-85.616756, 41.952936] - }, - "n3907": { - "id": "n3907", - "loc": [-85.616477, 41.952791] - }, - "n3908": { - "id": "n3908", - "loc": [-85.616823, 41.952426] - }, - "n3909": { - "id": "n3909", - "loc": [-85.617191, 41.952616] - }, - "n3910": { - "id": "n3910", - "loc": [-85.61724, 41.952559] - }, - "n3911": { - "id": "n3911", - "loc": [-85.61721, 41.952542] - }, - "n3912": { - "id": "n3912", - "loc": [-85.617395, 41.952351] - }, - "n3913": { - "id": "n3913", - "loc": [-85.617426, 41.952368] - }, - "n3914": { - "id": "n3914", - "loc": [-85.617483, 41.952309] - }, - "n3915": { - "id": "n3915", - "loc": [-85.617332, 41.952229] - }, - "n3916": { - "id": "n3916", - "loc": [-85.617451, 41.952102] - }, - "n3917": { - "id": "n3917", - "loc": [-85.617477, 41.952115] - }, - "n3918": { - "id": "n3918", - "loc": [-85.617658, 41.951923] - }, - "n3919": { - "id": "n3919", - "loc": [-85.617634, 41.95191] - }, - "n3920": { - "id": "n3920", - "loc": [-85.617747, 41.951786] - }, - "n3921": { - "id": "n3921", - "loc": [-85.618268, 41.952056] - }, - "n3922": { - "id": "n3922", - "loc": [-85.618211, 41.952122] - }, - "n3923": { - "id": "n3923", - "loc": [-85.618386, 41.95222] - }, - "n3924": { - "id": "n3924", - "loc": [-85.618098, 41.952527] - }, - "n3925": { - "id": "n3925", - "loc": [-85.617916, 41.95243] - }, - "n3926": { - "id": "n3926", - "loc": [-85.617854, 41.952498] - }, - "n3927": { - "id": "n3927", - "loc": [-85.617769, 41.952453] - }, - "n3928": { - "id": "n3928", - "loc": [-85.617472, 41.952776] - }, - "n3929": { - "id": "n3929", - "loc": [-85.617855, 41.952976] - }, - "n3930": { - "id": "n3930", - "loc": [-85.617174, 41.953638] - }, - "n3931": { - "id": "n3931", - "loc": [-85.618016, 41.953578] - }, - "n3932": { - "id": "n3932", - "loc": [-85.618107, 41.953628] - }, - "n3933": { - "id": "n3933", - "loc": [-85.618067, 41.954268] - }, - "n3934": { - "id": "n3934", - "loc": [-85.617864, 41.954263] - }, - "n3935": { - "id": "n3935", - "loc": [-85.61762, 41.954205] - }, - "n3936": { - "id": "n3936", - "loc": [-85.617437, 41.954103] - }, - "n3937": { - "id": "n3937", - "loc": [-85.617294, 41.953978] - }, - "n3938": { - "id": "n3938", - "loc": [-85.617217, 41.95384] - }, - "n3939": { - "id": "n3939", - "loc": [-85.616814, 41.954327] - }, - "n3940": { - "id": "n3940", - "loc": [-85.616778, 41.95381] - }, - "n3941": { - "id": "n3941", - "loc": [-85.616585, 41.953707] - }, - "n3942": { - "id": "n3942", - "loc": [-85.616458, 41.954318] - }, - "n3943": { - "id": "n3943", - "loc": [-85.616643, 41.954345] - }, - "n3944": { - "id": "n3944", - "loc": [-85.618133, 41.951412] - }, - "n3945": { - "id": "n3945", - "loc": [-85.618326, 41.951411] - }, - "n3946": { - "id": "n3946", - "loc": [-85.618503, 41.95141] - }, - "n3947": { - "id": "n3947", - "loc": [-85.618681, 41.951409] - }, - "n3948": { - "id": "n3948", - "loc": [-85.618868, 41.951408] - }, - "n3949": { - "id": "n3949", - "loc": [-85.617047, 41.95136] - }, - "n3950": { - "id": "n3950", - "loc": [-85.616494, 41.951959] - }, - "n3951": { - "id": "n3951", - "loc": [-85.616497, 41.952072] - }, - "n3952": { - "id": "n3952", - "loc": [-85.616565, 41.952165] - }, - "n3953": { - "id": "n3953", - "loc": [-85.616663, 41.952218] - }, - "n3954": { - "id": "n3954", - "loc": [-85.616733, 41.952255] - }, - "n3955": { - "id": "n3955", - "loc": [-85.617238, 41.952512] - }, - "n3956": { - "id": "n3956", - "loc": [-85.617043, 41.952406] - }, - "n3957": { - "id": "n3957", - "loc": [-85.617691, 41.951711] - }, - "n3958": { - "id": "n3958", - "loc": [-85.617773, 41.951679] - }, - "n3959": { - "id": "n3959", - "loc": [-85.619085, 41.951681] - }, - "n3960": { - "id": "n3960", - "loc": [-85.617943, 41.952895] - }, - "n3961": { - "id": "n3961", - "loc": [-85.618039, 41.952938] - }, - "n3962": { - "id": "n3962", - "loc": [-85.61763, 41.95336] - }, - "n3963": { - "id": "n3963", - "loc": [-85.617554, 41.95344] - }, - "n3964": { - "id": "n3964", - "loc": [-85.617381, 41.952366] - }, - "n3965": { - "id": "n3965", - "loc": [-85.617184, 41.952254] - }, - "n3966": { - "id": "n3966", - "loc": [-85.617208, 41.952496] - }, - "n3967": { - "id": "n3967", - "loc": [-85.617124, 41.952581] - }, - "n3968": { - "id": "n3968", - "loc": [-85.618094, 41.952735] - }, - "n3969": { - "id": "n3969", - "loc": [-85.617702, 41.952525] - }, - "n3970": { - "id": "n3970", - "loc": [-85.617554, 41.952686] - }, - "n3971": { - "id": "n3971", - "loc": [-85.617959, 41.952878] - }, - "n3972": { - "id": "n3972", - "loc": [-85.616325, 41.952701] - }, - "n3973": { - "id": "n3973", - "loc": [-85.616376, 41.952855] - }, - "n3974": { - "id": "n3974", - "loc": [-85.619777, 41.951075] - }, - "n3977": { - "id": "n3977", - "loc": [-85.617375, 41.947559] - }, - "n3978": { - "id": "n3978", - "loc": [-85.617416, 41.95108] - }, - "n3980": { - "id": "n3980", - "loc": [-85.610238, 41.954774] - }, - "n3981": { - "id": "n3981", - "loc": [-85.617464, 41.950694] - }, - "n3982": { - "id": "n3982", - "loc": [-85.617303, 41.95129] - }, - "n3983": { - "id": "n3983", - "loc": [-85.61745, 41.950197] - }, - "n3984": { - "id": "n3984", - "loc": [-85.617413, 41.948914] - }, - "n3985": { - "id": "n3985", - "loc": [-85.615915, 41.953804] - }, - "n3986": { - "id": "n3986", - "loc": [-85.615953, 41.953968] - }, - "n3987": { - "id": "n3987", - "loc": [-85.616031, 41.954085] - }, - "n3988": { - "id": "n3988", - "loc": [-85.616135, 41.954181] - }, - "n3989": { - "id": "n3989", - "loc": [-85.616273, 41.954263] - }, - "n3990": { - "id": "n3990", - "loc": [-85.618327, 41.951083] - }, - "n3991": { - "id": "n3991", - "loc": [-85.618135, 41.951084] - }, - "n3992": { - "id": "n3992", - "loc": [-85.618503, 41.951082] - }, - "n3993": { - "id": "n3993", - "loc": [-85.618682, 41.951081] - }, - "n3994": { - "id": "n3994", - "loc": [-85.618864, 41.951082] - }, - "n3995": { - "id": "n3995", - "loc": [-85.616761, 41.950101] - }, - "n3996": { - "id": "n3996", - "loc": [-85.617317, 41.947558] - }, - "n3997": { - "id": "n3997", - "loc": [-85.617336, 41.948883] - }, - "n3998": { - "id": "n3998", - "loc": [-85.616779, 41.949295] - }, - "n3999": { - "id": "n3999", - "loc": [-85.616754, 41.949349] - }, - "n4000": { - "id": "n4000", - "loc": [-85.616765, 41.950913] - }, - "n4001": { - "id": "n4001", - "loc": [-85.616883, 41.951041] - }, - "n4002": { - "id": "n4002", - "loc": [-85.617004, 41.951142] - }, - "n4003": { - "id": "n4003", - "loc": [-85.617062, 41.951248] - }, - "n4004": { - "id": "n4004", - "loc": [-85.616809, 41.949273] - }, - "n4005": { - "id": "n4005", - "loc": [-85.616755, 41.949489] - }, - "n4006": { - "id": "n4006", - "loc": [-85.616759, 41.949971] - }, - "n4007": { - "id": "n4007", - "loc": [-85.616757, 41.949702] + } + }, + "w654": { + "id": "w654", + "nodes": ["n3164", "n3165", "n3166", "n3167", "n3168", "n3505", "n3164"], + "tags": { + "building": "yes" + } + }, + "w655": { + "id": "w655", + "nodes": ["n3506", "n3517", "n3760", "n3761", "n3762", "n3763", "n3506"], + "tags": { + "building": "yes" + } + }, + "w656": { + "id": "w656", + "nodes": ["n3764", "n3765", "n3766", "n3767", "n3768", "n3769", "n3770", "n3771", "n3764"], + "tags": { + "building": "yes" + } + }, + "w657": { + "id": "w657", + "nodes": ["n3772", "n3773", "n3774", "n3775", "n3772"], + "tags": { + "building": "yes" + } + }, + "w658": { + "id": "w658", + "nodes": ["n3776", "n3777", "n3784", "n3789", "n3776"], + "tags": { + "building": "yes" + } }, "w659": { "id": "w659", + "nodes": ["n3930", "n3931", "n3932", "n3933", "n3934", "n3935", "n3936", "n3937", "n3938", "n3930"], "tags": { "leisure": "pitch", "sport": "baseball" - }, - "nodes": ["n3930", "n3931", "n3932", "n3933", "n3934", "n3935", "n3936", "n3937", "n3938", "n3930"] + } + }, + "w66": { + "id": "w66", + "nodes": ["n321", "n322"], + "tags": { + "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", + "layer": "1" + } }, "w660": { "id": "w660", + "nodes": ["n3982", "n3842", "n3864", "n3865", "n3866", "n3867", "n3868", "n3858", "n3869", "n3870", "n3862"], "tags": { "highway": "service" - }, - "nodes": ["n3982", "n3864", "n3865", "n3866", "n3867", "n3868", "n3858", "n3869", "n3870", "n3862"] + } }, "w661": { "id": "w661", + "nodes": ["n3968", "n3969"], "tags": { "highway": "footway" - }, - "nodes": ["n3968", "n3969"] + } }, "w662": { "id": "w662", + "nodes": ["n3875", "n3876", "n3877", "n3878", "n3879", "n3880", "n3881", "n3882", "n3875"], "tags": { "amenity": "parking" - }, - "nodes": ["n3875", "n3876", "n3877", "n3878", "n3879", "n3880", "n3881", "n3882", "n3875"] + } }, "w663": { "id": "w663", + "nodes": ["n3964", "n3965"], "tags": { "highway": "footway" - }, - "nodes": ["n3964", "n3965"] + } }, "w664": { "id": "w664", + "nodes": ["n3966", "n3967"], "tags": { "highway": "footway" - }, - "nodes": ["n3966", "n3967"] + } }, "w665": { "id": "w665", + "nodes": ["n3857", "n3890", "n3884", "n3894", "n3889", "n3899", "n3885", "n3886", "n3896", "n3887"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n3857", "n3890", "n3884", "n3894", "n3889", "n3899", "n3885", "n3886", "n3896", "n3887"] + } }, "w666": { "id": "w666", + "nodes": ["n3895", "n3896"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n3895", "n3896"] + } }, "w667": { "id": "w667", + "nodes": [ + "n3274", + "n3977", + "n3984", + "n3983", + "n3981", + "n3844", + "n3978", + "n3982", + "n3861", + "n3862", + "n3873", + "n3874", + "n4468", + "n3863" + ], "tags": { "access": "private", "highway": "service", "name": "Collins Drive" - }, - "nodes": ["n3274", "n3977", "n3984", "n3983", "n3981", "n3978", "n3982", "n3861", "n3862", "n3873", "n3874", "n3863"] + } }, "w668": { "id": "w668", - "tags": { - "building": "school" - }, "nodes": [ "n3900", "n3901", @@ -12121,6 +26229,8 @@ "n3903", "n3904", "n3905", + "n3808", + "n3809", "n3906", "n3907", "n3908", @@ -12149,77 +26259,86 @@ "n3969", "n3970", "n3928", + "n3807", "n3929", "n3900" - ] + ], + "tags": { + "building": "school" + } }, "w669": { "id": "w669", + "nodes": ["n3272", "n39", "n40", "n3974", "n3863", "n3857", "n3892", "n3883", "n3891", "n3889"], "tags": { "highway": "service" - }, - "nodes": ["n3272", "n39", "n40", "n3974", "n3863", "n3857", "n3892", "n3883", "n3891", "n3889"] + } + }, + "w67": { + "id": "w67", + "nodes": ["n322", "n886", "n323", "n475"], + "tags": { + "footway": "crossing", + "highway": "footway" + } }, "w670": { "id": "w670", + "nodes": ["n3473", "n3859", "n3860", "n3980"], "tags": { "highway": "secondary", "name": "Hoffman Street", "ref": "M 60" - }, - "nodes": ["n3473", "n3859", "n3860", "n3980"] + } }, "w671": { "id": "w671", + "nodes": ["n3970", "n3806", "n3971"], "tags": { "highway": "footway" - }, - "nodes": ["n3970", "n3971"] + } }, "w672": { "id": "w672", + "nodes": ["n3892", "n3893", "n3894"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n3892", "n3893", "n3894"] + } }, "w673": { "id": "w673", + "nodes": ["n3945", "n3946", "n3992", "n3990", "n3945"], "tags": { "leisure": "pitch", "sport": "tennis" - }, - "nodes": ["n3945", "n3946", "n3992", "n3990", "n3945"] + } }, "w674": { "id": "w674", + "nodes": ["n3890", "n3893", "n3891"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n3890", "n3893", "n3891"] + } }, "w675": { "id": "w675", + "nodes": ["n3947", "n3948", "n3994", "n3993", "n3947"], "tags": { "leisure": "pitch", "sport": "tennis" - }, - "nodes": ["n3947", "n3948", "n3994", "n3993", "n3947"] + } }, "w676": { "id": "w676", + "nodes": ["n3858", "n3954", "n3972", "n3810", "n3811", "n3812", "n3841", "n3973", "n3898", "n3963", "n3897", "n3896"], "tags": { "highway": "service" - }, - "nodes": ["n3858", "n3954", "n3972", "n3973", "n3898", "n3963", "n3897", "n3896"] + } }, "w677": { "id": "w677", - "tags": { - "highway": "footway" - }, "nodes": [ "n3977", "n3996", @@ -12232,6 +26351,7 @@ "n4006", "n3995", "n4000", + "n3843", "n4001", "n4002", "n4003", @@ -12244,189 +26364,216 @@ "n3956", "n3966", "n3955" - ] + ], + "tags": { + "highway": "footway" + } }, "w678": { "id": "w678", + "nodes": ["n3887", "n3888", "n3895", "n3899"], "tags": { "highway": "service", "service": "parking_aisle" - }, - "nodes": ["n3887", "n3888", "n3895", "n3899"] + } }, "w679": { "id": "w679", + "nodes": ["n3946", "n3947", "n3993", "n3992", "n3946"], "tags": { "leisure": "pitch", "sport": "tennis" - }, - "nodes": ["n3946", "n3947", "n3993", "n3992", "n3946"] + } + }, + "w68": { + "id": "w68", + "nodes": ["n294", "n1952", "n326"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w680": { "id": "w680", + "nodes": ["n3939", "n3940", "n3941", "n3985", "n3986", "n3987", "n3988", "n3989", "n3942", "n3943", "n3939"], "tags": { "leisure": "pitch", "sport": "baseball" - }, - "nodes": ["n3939", "n3940", "n3941", "n3985", "n3986", "n3987", "n3988", "n3989", "n3942", "n3943", "n3939"] + } }, "w681": { "id": "w681", + "nodes": ["n3990", "n3991", "n3944", "n3945", "n3990"], "tags": { "leisure": "pitch", "sport": "tennis" - }, - "nodes": ["n3990", "n3991", "n3944", "n3945", "n3990"] + } }, "w682": { "id": "w682", + "nodes": ["n3871", "n3872", "n3873", "n3874", "n3871"], "tags": { "amenity": "parking" - }, - "nodes": ["n3871", "n3872", "n3873", "n3874", "n3871"] + } }, "w683": { "id": "w683", + "nodes": ["n3956", "n3965", "n3957", "n3958", "n3959"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w684": { + "id": "w684", + "nodes": ["n3790", "n3791", "n3792", "n3793", "n3790"], + "tags": { + "building": "shed" + } + }, + "w685": { + "id": "w685", + "nodes": ["n3794", "n3795", "n3796", "n3797", "n3794"], + "tags": { + "building": "yes" + } + }, + "w686": { + "id": "w686", + "nodes": ["n3798", "n3799", "n3804", "n3805", "n3798"], + "tags": { + "building": "yes" + } + }, + "w687": { + "id": "w687", + "nodes": ["n3806", "n3807"], "tags": { "highway": "footway" - }, - "nodes": ["n3956", "n3965", "n3957", "n3958", "n3959", "n3968", "n3971", "n3960", "n3961", "n3962", "n3963"] + } }, - "n6": { - "id": "n6", - "loc": [-85.624908, 41.95064] + "w688": { + "id": "w688", + "nodes": ["n3845", "n3846", "n3847", "n3848", "n3845"], + "tags": { + "leisure": "pitch", + "sport": "american_football" + } }, - "n8": { - "id": "n8", - "loc": [-85.635241, 41.941948] + "w689": { + "id": "w689", + "nodes": [ + "n3849", + "n4021", + "n3850", + "n3851", + "n3852", + "n3853", + "n3854", + "n3855", + "n3856", + "n3975", + "n3976", + "n3979", + "n4008", + "n4009", + "n4010", + "n4011", + "n4012", + "n4013", + "n4014", + "n4015", + "n4016", + "n4017", + "n4018", + "n4019", + "n4020", + "n4021" + ], + "tags": { + "leisure": "track", + "sport": "running" + } }, - "n9": { - "id": "n9", - "loc": [-85.635159, 41.941926] + "w69": { + "id": "w69", + "nodes": ["n326", "n327"], + "tags": { + "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", + "layer": "1" + } }, - "n10": { - "id": "n10", - "loc": [-85.634733, 41.941588] + "w690": { + "id": "w690", + "nodes": ["n4022", "n4023", "n4024", "n4025", "n4026", "n4027", "n4022"], + "tags": { + "building": "yes" + } }, - "n11": { - "id": "n11", - "loc": [-85.634602, 41.941523] + "w691": { + "id": "w691", + "nodes": ["n4028", "n4029", "n4030", "n4031", "n4028"], + "tags": { + "building": "yes" + } }, - "n12": { - "id": "n12", - "loc": [-85.63359, 41.941093] + "w692": { + "id": "w692", + "nodes": ["n4032", "n4033", "n4034", "n4035", "n4032"], + "tags": { + "building": "yes" + } }, - "n13": { - "id": "n13", - "loc": [-85.633643, 41.941143] + "w693": { + "id": "w693", + "nodes": ["n4036", "n4037", "n4038", "n4039", "n4036"], + "tags": { + "building": "yes" + } }, - "n14": { - "id": "n14", - "loc": [-85.633643, 41.940122] + "w694": { + "id": "w694", + "nodes": ["n4040", "n4041", "n4042", "n4043", "n4040"], + "tags": { + "building": "yes" + } }, - "n15": { - "id": "n15", - "loc": [-85.633477, 41.940187] + "w695": { + "id": "w695", + "nodes": ["n4044", "n4045", "n4050", "n4053", "n4046", "n4047", "n4048", "n4049", "n4044"], + "tags": { + "building": "yes" + } }, - "n16": { - "id": "n16", - "loc": [-85.63341, 41.94032] + "w696": { + "id": "w696", + "nodes": ["n4050", "n4051", "n4052", "n4053", "n4050"], + "tags": { + "building": "roof" + } }, - "n17": { - "id": "n17", - "loc": [-85.633478, 41.94081] + "w697": { + "id": "w697", + "nodes": ["n4054", "n4068", "n4055", "n4056", "n4057", "n4054"], + "tags": { + "building": "yes" + } }, - "n18": { - "id": "n18", - "loc": [-85.63345, 41.94071] + "w698": { + "id": "w698", + "nodes": ["n4058", "n4059", "n4060", "n4061", "n4062", "n4063", "n4058"], + "tags": { + "building": "yes" + } }, - "n19": { - "id": "n19", - "loc": [-85.633009, 41.942229] - }, - "n20": { - "id": "n20", - "loc": [-85.633013, 41.941438] - }, - "n21": { - "id": "n21", - "loc": [-85.634126, 41.942228] - }, - "n22": { - "id": "n22", - "loc": [-85.633531, 41.942357] - }, - "n23": { - "id": "n23", - "loc": [-85.633504, 41.942418] - }, - "n24": { - "id": "n24", - "loc": [-85.634346, 41.942792] - }, - "n25": { - "id": "n25", - "loc": [-85.634333, 41.942809] - }, - "n26": { - "id": "n26", - "loc": [-85.634346, 41.942744] - }, - "n27": { - "id": "n27", - "loc": [-85.634136, 41.943183] - }, - "n28": { - "id": "n28", - "loc": [-85.63821, 41.944308] - }, - "n29": { - "id": "n29", - "loc": [-85.637963, 41.944263] - }, - "n30": { - "id": "n30", - "loc": [-85.637882, 41.944205] - }, - "n31": { - "id": "n31", - "loc": [-85.63827, 41.944203] - }, - "n32": { - "id": "n32", - "loc": [-85.638273, 41.944246] - }, - "n33": { - "id": "n33", - "loc": [-85.638257, 41.944188] - }, - "n34": { - "id": "n34", - "loc": [-85.638176, 41.944312] - }, - "n35": { - "id": "n35", - "loc": [-85.637928, 41.944249] - }, - "n36": { - "id": "n36", - "loc": [-85.637894, 41.945551] - }, - "n37": { - "id": "n37", - "loc": [-85.637611, 41.945383] - }, - "n41": { - "id": "n41", - "loc": [-85.636233, 41.942764] - }, - "n42": { - "id": "n42", - "loc": [-85.635996, 41.942727] - }, - "n43": { - "loc": [-85.637047, 41.943054], - "id": "n43" + "w699": { + "id": "w699", + "nodes": ["n4064", "n4066", "n4065"], + "tags": { + "barrier": "fence" + } }, "w7": { "id": "w7", @@ -12435,1762 +26582,352 @@ "highway": "service" } }, - "n44": { - "loc": [-85.636799, 41.943055], - "id": "n44" - }, - "n45": { - "loc": [-85.636791, 41.942792], - "id": "n45" - }, - "n46": { - "loc": [-85.637131, 41.94307], - "id": "n46" - }, - "w8": { - "tags": { - "amenity": "parking" - }, - "id": "w8", - "nodes": ["n46", "n47", "n145", "n48", "n49", "n46"] - }, - "n47": { - "loc": [-85.636693, 41.943073], - "id": "n47" - }, - "n48": { - "loc": [-85.636689, 41.94276], - "id": "n48" - }, - "n49": { - "loc": [-85.637127, 41.942757], - "id": "n49" - }, - "n50": { - "loc": [-85.636673, 41.943143], - "id": "n50" - }, - "w9": { - "tags": { - "building": "yes" - }, - "id": "w9", - "nodes": ["n50", "n51", "n148", "n52", "n57", "n891", "n53", "n50"] - }, - "n51": { - "loc": [-85.636673, 41.942864], - "id": "n51" - }, - "n52": { - "loc": [-85.636227, 41.942864], - "id": "n52" - }, - "n53": { - "loc": [-85.636227, 41.943143], - "id": "n53" - }, - "n54": { - "loc": [-85.636198, 41.943119], - "id": "n54" - }, - "w10": { - "tags": { - "building": "yes" - }, - "id": "w10", - "nodes": ["n54", "n55", "n56", "n57", "n891", "n890", "n54"] - }, - "n55": { - "loc": [-85.635945, 41.94312], - "id": "n55" - }, - "n56": { - "loc": [-85.635943, 41.942909], - "id": "n56" - }, - "n57": { - "loc": [-85.636227, 41.942909], - "id": "n57" - }, - "n58": { - "loc": [-85.63627, 41.943175], - "id": "n58" - }, - "w11": { - "id": "w11", - "nodes": ["n58", "n63", "n59", "n315", "n60"], - "tags": { - "highway": "service" - } - }, - "n59": { - "loc": [-85.635531, 41.943176], - "id": "n59" - }, - "n60": { - "loc": [-85.63542, 41.942883], - "id": "n60" - }, - "n61": { - "loc": [-85.635701, 41.942802], - "id": "n61" - }, - "w12": { - "id": "w12", - "nodes": ["n61", "n314", "n70", "n62", "n63"], - "tags": { - "highway": "service" - } - }, - "n62": { - "loc": [-85.6358, 41.942997], - "id": "n62" - }, - "n63": { - "loc": [-85.635808, 41.943176], - "id": "n63" - }, - "n64": { - "loc": [-85.63631, 41.943253], - "id": "n64" - }, - "w13": { - "tags": { - "amenity": "parking" - }, - "id": "w13", - "nodes": ["n64", "n65", "n66", "n67", "n68", "n69", "n64"] - }, - "n65": { - "loc": [-85.635398, 41.943259], - "id": "n65" - }, - "n66": { - "loc": [-85.635336, 41.943036], - "id": "n66" - }, - "n67": { - "loc": [-85.635911, 41.942899], - "id": "n67" - }, - "n68": { - "loc": [-85.635915, 41.943156], - "id": "n68" - }, - "n69": { - "loc": [-85.63631, 41.943157], - "id": "n69" - }, - "n70": { - "id": "n70", - "loc": [-85.63579, 41.942967] - }, - "n71": { - "loc": [-85.637506, 41.942824], - "id": "n71" - }, - "w14": { - "tags": { - "building": "yes" - }, - "id": "w14", - "nodes": ["n71", "n72", "n73", "n74", "n71"] - }, - "n72": { - "loc": [-85.637511, 41.943056], - "id": "n72" - }, - "n73": { - "loc": [-85.637361, 41.943058], - "id": "n73" - }, - "n74": { - "loc": [-85.637356, 41.942825], - "id": "n74" - }, - "n75": { - "loc": [-85.638097, 41.942833], - "id": "n75" - }, - "w15": { - "tags": { - "building": "yes" - }, - "id": "w15", - "nodes": ["n75", "n76", "n77", "n78", "n75"] - }, - "n76": { - "loc": [-85.638098, 41.942912], - "id": "n76" - }, - "n77": { - "loc": [-85.637705, 41.942913], - "id": "n77" - }, - "n78": { - "loc": [-85.637705, 41.942834], - "id": "n78" - }, - "n79": { - "loc": [-85.638071, 41.942298], - "id": "n79" - }, - "w16": { - "tags": { - "building": "yes" - }, - "id": "w16", - "nodes": ["n79", "n80", "n81", "n82", "n83", "n84", "n85", "n86", "n79"] - }, - "n80": { - "loc": [-85.638074, 41.942431], - "id": "n80" - }, - "n81": { - "loc": [-85.637836, 41.942433], - "id": "n81" - }, - "n82": { - "loc": [-85.637835, 41.94242], - "id": "n82" - }, - "n83": { - "loc": [-85.63776, 41.942421], - "id": "n83" - }, - "n84": { - "loc": [-85.637758, 41.942339], - "id": "n84" - }, - "n85": { - "loc": [-85.637836, 41.942339], - "id": "n85" - }, - "n86": { - "loc": [-85.637835, 41.942301], - "id": "n86" - }, - "n87": { - "loc": [-85.637566, 41.942367], - "id": "n87" - }, - "w17": { - "tags": { - "building": "yes" - }, - "id": "w17", - "nodes": ["n87", "n88", "n89", "n90", "n87"] - }, - "n88": { - "loc": [-85.637566, 41.94241], - "id": "n88" - }, - "n89": { - "loc": [-85.637455, 41.94241], - "id": "n89" - }, - "n90": { - "loc": [-85.637454, 41.942367], - "id": "n90" - }, - "n91": { - "loc": [-85.637565, 41.942341], - "id": "n91" - }, - "w18": { - "tags": { - "building": "yes" - }, - "id": "w18", - "nodes": ["n91", "n92", "n93", "n94", "n91"] - }, - "n92": { - "loc": [-85.637481, 41.942341], - "id": "n92" - }, - "n93": { - "loc": [-85.637481, 41.94226], - "id": "n93" - }, - "n94": { - "loc": [-85.637565, 41.94226], - "id": "n94" - }, - "n95": { - "loc": [-85.637188, 41.942217], - "id": "n95" - }, - "w19": { - "tags": { - "building": "yes" - }, - "id": "w19", - "nodes": ["n95", "n96", "n97", "n98", "n99", "n100", "n101", "n102", "n95"] - }, - "n96": { - "loc": [-85.637189, 41.942303], - "id": "n96" - }, - "n97": { - "loc": [-85.637299, 41.942302], - "id": "n97" - }, - "n98": { - "loc": [-85.637299, 41.942314], - "id": "n98" - }, - "n99": { - "loc": [-85.637396, 41.942313], - "id": "n99" - }, - "n100": { - "loc": [-85.637395, 41.942252], - "id": "n100" - }, - "n101": { - "loc": [-85.637357, 41.942252], - "id": "n101" - }, - "n102": { - "loc": [-85.637357, 41.942216], - "id": "n102" - }, - "n103": { - "loc": [-85.637386, 41.942054], - "id": "n103" - }, - "w20": { - "tags": { - "building": "yes" - }, - "id": "w20", - "nodes": ["n103", "n104", "n105", "n106", "n107", "n108", "n109", "n110", "n111", "n112", "n113", "n114", "n103"] - }, - "n104": { - "loc": [-85.637387, 41.942125], - "id": "n104" - }, - "n105": { - "loc": [-85.637319, 41.942125], - "id": "n105" - }, - "n106": { - "loc": [-85.637319, 41.942137], - "id": "n106" - }, - "n107": { - "loc": [-85.637259, 41.942137], - "id": "n107" - }, - "n108": { - "loc": [-85.637259, 41.942126], - "id": "n108" - }, - "n109": { - "loc": [-85.637193, 41.942126], - "id": "n109" - }, - "n110": { - "loc": [-85.637192, 41.942053], - "id": "n110" - }, - "n111": { - "loc": [-85.637248, 41.942053], - "id": "n111" - }, - "n112": { - "loc": [-85.637248, 41.942042], - "id": "n112" - }, - "n113": { - "loc": [-85.637338, 41.942041], - "id": "n113" - }, - "n114": { - "loc": [-85.637338, 41.942055], - "id": "n114" - }, - "n115": { - "loc": [-85.637583, 41.941943], - "id": "n115" - }, - "w21": { - "tags": { - "building": "yes" - }, - "id": "w21", - "nodes": ["n115", "n116", "n117", "n118", "n115"] - }, - "n116": { - "loc": [-85.637584, 41.941983], - "id": "n116" - }, - "n117": { - "loc": [-85.63751, 41.941983], - "id": "n117" - }, - "n118": { - "loc": [-85.637509, 41.941944], - "id": "n118" - }, - "n119": { - "loc": [-85.637724, 41.941973], - "id": "n119" - }, - "w22": { - "tags": { - "building": "yes" - }, - "id": "w22", - "nodes": ["n119", "n120", "n121", "n122", "n119"] - }, - "n120": { - "loc": [-85.637633, 41.941973], - "id": "n120" - }, - "n121": { - "loc": [-85.637633, 41.941853], - "id": "n121" - }, - "n122": { - "loc": [-85.637724, 41.941853], - "id": "n122" - }, - "n123": { - "loc": [-85.637773, 41.941988], - "id": "n123" - }, - "w23": { - "tags": { - "building": "yes" - }, - "id": "w23", - "nodes": ["n123", "n124", "n125", "n126", "n123"] - }, - "n124": { - "loc": [-85.637773, 41.942046], - "id": "n124" - }, - "n125": { - "loc": [-85.637693, 41.942047], - "id": "n125" - }, - "n126": { - "loc": [-85.637692, 41.941988], - "id": "n126" - }, - "n127": { - "loc": [-85.637604, 41.941994], - "id": "n127" - }, - "w24": { - "tags": { - "building": "yes" - }, - "id": "w24", - "nodes": ["n127", "n128", "n129", "n130", "n127"] - }, - "n128": { - "loc": [-85.637604, 41.942057], - "id": "n128" - }, - "n129": { - "loc": [-85.63748, 41.942057], - "id": "n129" - }, - "n130": { - "loc": [-85.63748, 41.941994], - "id": "n130" - }, - "n131": { - "loc": [-85.637431, 41.941832], - "id": "n131" - }, - "w25": { - "tags": { - "building": "yes" - }, - "id": "w25", - "nodes": ["n131", "n132", "n133", "n134", "n135", "n136", "n137", "n138", "n139", "n140", "n141", "n142", "n131"] - }, - "n132": { - "loc": [-85.637432, 41.94189], - "id": "n132" - }, - "n133": { - "loc": [-85.637412, 41.94189], - "id": "n133" - }, - "n134": { - "loc": [-85.637413, 41.941938], - "id": "n134" - }, - "n135": { - "loc": [-85.637342, 41.941939], - "id": "n135" - }, - "n136": { - "loc": [-85.637342, 41.941914], - "id": "n136" - }, - "n137": { - "loc": [-85.637212, 41.941916], - "id": "n137" - }, - "n138": { - "loc": [-85.637211, 41.941835], - "id": "n138" - }, - "n139": { - "loc": [-85.637293, 41.941834], - "id": "n139" - }, - "n140": { - "loc": [-85.637293, 41.941823], - "id": "n140" - }, - "n141": { - "loc": [-85.637363, 41.941822], - "id": "n141" - }, - "n142": { - "id": "n142", - "loc": [-85.637364, 41.941833] - }, - "n143": { - "loc": [-85.637559, 41.942448], - "id": "n143" - }, - "w26": { - "id": "w26", - "nodes": ["n143", "n608", "n144"], - "tags": { - "highway": "service" - } - }, - "n144": { - "loc": [-85.637036, 41.942454], - "id": "n144" - }, - "n145": { - "loc": [-85.636692, 41.942828], - "id": "n145" - }, - "w27": { - "id": "w27", - "nodes": ["n145", "n147", "n146"], - "tags": { - "highway": "footway" - } - }, - "n146": { - "loc": [-85.635929, 41.942826], - "id": "n146" - }, - "n147": { - "loc": [-85.636433, 41.942828], - "id": "n147" - }, - "w28": { - "id": "w28", - "nodes": ["n147", "n148"], - "tags": { - "highway": "footway" - } - }, - "n148": { - "loc": [-85.636435, 41.942864], - "id": "n148", - "tags": { - "entrance": "yes" - } - }, - "n149": { - "loc": [-85.637235, 41.942622], - "id": "n149" - }, - "w29": { - "id": "w29", - "nodes": ["n149", "n874", "n150", "n151", "n897", "n898", "n875", "n152"], - "tags": { - "highway": "service", - "oneway": "yes" - } - }, - "n150": { - "loc": [-85.637247, 41.943116], - "id": "n150" - }, - "n151": { - "loc": [-85.637564, 41.943116], - "id": "n151" - }, - "n152": { - "loc": [-85.637552, 41.942619], - "id": "n152" - }, - "n153": { - "loc": [-85.63763, 41.942528], - "id": "n153" - }, - "w30": { - "tags": { - "amenity": "parking" - }, - "id": "w30", - "nodes": ["n153", "n154", "n155", "n156", "n153"] - }, - "n154": { - "loc": [-85.637151, 41.94253], - "id": "n154" - }, - "n155": { - "loc": [-85.63715, 41.942424], - "id": "n155" - }, - "n156": { - "loc": [-85.637629, 41.942422], - "id": "n156" - }, - "n157": { - "loc": [-85.638232, 41.942477], - "id": "n157" - }, - "w31": { - "id": "w31", - "nodes": ["n157", "n605", "n158"], - "tags": { - "highway": "service" - } - }, - "n158": { - "loc": [-85.637775, 41.942483], - "id": "n158" - }, - "n159": { - "loc": [-85.638107, 41.942512], - "id": "n159" - }, - "w32": { - "tags": { - "amenity": "parking" - }, - "id": "w32", - "nodes": ["n159", "n160", "n161", "n162", "n159"] - }, - "n160": { - "loc": [-85.637763, 41.942514], - "id": "n160" - }, - "n161": { - "loc": [-85.637763, 41.942445], - "id": "n161" - }, - "n162": { - "loc": [-85.638107, 41.942443], - "id": "n162" - }, - "w33": { - "id": "w33", - "nodes": ["n157", "n163"], - "tags": { - "highway": "service" - } - }, - "n163": { - "loc": [-85.638813, 41.942475], - "id": "n163" - }, - "n164": { - "loc": [-85.63883, 41.942422], - "id": "n164" - }, - "w34": { - "tags": { - "amenity": "parking" - }, - "id": "w34", - "nodes": ["n164", "n165", "n166", "n171", "n866", "n172", "n167", "n168", "n169", "n910", "n170", "n164"] - }, - "n165": { - "loc": [-85.63883, 41.942508], - "id": "n165" - }, - "n166": { - "loc": [-85.638364, 41.942508], - "id": "n166" - }, - "n167": { - "loc": [-85.638836, 41.942167], - "id": "n167" - }, - "n168": { - "loc": [-85.638836, 41.94229], - "id": "n168" - }, - "n169": { - "loc": [-85.638594, 41.94229], - "id": "n169" - }, - "n170": { - "loc": [-85.638594, 41.942422], - "id": "n170" - }, - "w35": { - "id": "w35", - "nodes": ["n168", "n167", "n172"], - "tags": { - "barrier": "fence", - "fence_type": "chain_link" - } - }, - "n171": { - "loc": [-85.638364, 41.942356], - "id": "n171" - }, - "w36": { - "id": "w36", - "nodes": ["n910", "n171", "n866", "n172"], - "tags": { - "barrier": "fence", - "fence_type": "chain_link" - } - }, - "n172": { - "loc": [-85.638364, 41.942167], - "id": "n172" - }, - "n173": { - "loc": [-85.639038, 41.942463], - "id": "n173" - }, - "w37": { - "tags": { - "building": "yes" - }, - "id": "w37", - "nodes": ["n173", "n174", "n175", "n176", "n177", "n178", "n179", "n180", "n173"] - }, - "n174": { - "loc": [-85.638897, 41.942464], - "id": "n174" - }, - "n175": { - "loc": [-85.638897, 41.942423], - "id": "n175" - }, - "n176": { - "loc": [-85.638853, 41.942423], - "id": "n176" - }, - "n177": { - "loc": [-85.638852, 41.94237], - "id": "n177" - }, - "n178": { - "loc": [-85.638892, 41.94237], - "id": "n178" - }, - "n179": { - "loc": [-85.638891, 41.942334], - "id": "n179" - }, - "n180": { - "loc": [-85.639037, 41.942334], - "id": "n180" - }, - "n181": { - "loc": [-85.638074, 41.941839], - "id": "n181" - }, - "w38": { - "tags": { - "building": "yes" - }, - "id": "w38", - "nodes": ["n181", "n182", "n183", "n185", "n184", "n181"] - }, - "n182": { - "loc": [-85.638076, 41.941942], - "id": "n182" - }, - "n183": { - "loc": [-85.637955, 41.941944], - "id": "n183" - }, - "n184": { - "loc": [-85.637953, 41.94184], - "id": "n184" - }, - "n185": { - "loc": [-85.637953, 41.941866], - "id": "n185" - }, - "w39": { - "id": "w39", - "nodes": ["n185", "n186", "n187"], - "tags": { - "barrier": "fence" - } - }, - "n186": { - "loc": [-85.637873, 41.941867], - "id": "n186" - }, - "n187": { - "loc": [-85.637877, 41.941975], - "id": "n187" - }, - "w40": { - "tags": { - "building": "house" - }, - "id": "w40", - "nodes": ["n188", "n189", "n190", "n191", "n192", "n193", "n188"] - }, - "n188": { - "loc": [-85.636855, 41.942488], - "id": "n188" - }, - "n189": { - "loc": [-85.636702, 41.942488], - "id": "n189" - }, - "n190": { - "loc": [-85.636702, 41.942434], - "id": "n190" - }, - "n191": { - "loc": [-85.636761, 41.942434], - "id": "n191" - }, - "n192": { - "loc": [-85.636761, 41.942369], - "id": "n192" - }, - "n193": { - "loc": [-85.636855, 41.942369], - "id": "n193" - }, - "n194": { - "loc": [-85.636645, 41.94249], - "id": "n194" - }, - "w41": { - "tags": { - "building": "house" - }, - "id": "w41", - "nodes": ["n194", "n195", "n196", "n197", "n198", "n199", "n200", "n201", "n202", "n203", "n204", "n205", "n194"] - }, - "n195": { - "loc": [-85.636565, 41.94249], - "id": "n195" - }, - "n196": { - "loc": [-85.636565, 41.942474], - "id": "n196" - }, - "n197": { - "loc": [-85.636514, 41.942474], - "id": "n197" - }, - "n198": { - "loc": [-85.636514, 41.942326], - "id": "n198" - }, - "n199": { - "loc": [-85.636561, 41.942326], - "id": "n199" - }, - "n200": { - "loc": [-85.636561, 41.942311], - "id": "n200" - }, - "n201": { - "loc": [-85.636621, 41.942311], - "id": "n201" - }, - "n202": { - "loc": [-85.636621, 41.942351], - "id": "n202" - }, - "n203": { - "loc": [-85.63666, 41.942351], - "id": "n203" - }, - "n204": { - "loc": [-85.63666, 41.942453], - "id": "n204" - }, - "n205": { - "loc": [-85.636645, 41.942453], - "id": "n205" - }, - "n206": { - "loc": [-85.636394, 41.942471], - "id": "n206" - }, - "w42": { - "tags": { - "building": "house" - }, - "id": "w42", - "nodes": ["n206", "n207", "n208", "n209", "n210", "n211", "n206"] - }, - "n207": { - "loc": [-85.636262, 41.942472], - "id": "n207" - }, - "n208": { - "loc": [-85.636261, 41.94233], - "id": "n208" - }, - "n209": { - "loc": [-85.636353, 41.942329], - "id": "n209" - }, - "n210": { - "loc": [-85.636354, 41.94239], - "id": "n210" - }, - "n211": { - "loc": [-85.636393, 41.94239], - "id": "n211" - }, - "w43": { - "tags": { - "name": "Riverwalk Trail", - "highway": "footway", - "footway": "sidewalk" - }, - "id": "w43", - "nodes": ["n1955", "n1956"] - }, - "n212": { - "id": "n212", - "loc": [-85.63444, 41.943176] - }, - "n213": { - "loc": [-85.63375, 41.942814], - "id": "n213" - }, - "w44": { - "tags": { - "building": "yes" - }, - "id": "w44", - "nodes": ["n213", "n214", "n215", "n216", "n213"] - }, - "n214": { - "loc": [-85.633674, 41.942869], - "id": "n214" - }, - "n215": { - "loc": [-85.633542, 41.942768], - "id": "n215" - }, - "n216": { - "loc": [-85.633618, 41.942714], - "id": "n216" - }, - "n217": { - "loc": [-85.634001, 41.942336], - "id": "n217" - }, - "w45": { - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "id": "w45", - "nodes": ["n217", "n218", "n219", "n220", "n217"] - }, - "n218": { - "loc": [-85.633825, 41.942376], - "id": "n218" - }, - "n219": { - "loc": [-85.633807, 41.942334], - "id": "n219" - }, - "n220": { - "loc": [-85.633983, 41.942294], - "id": "n220" - }, - "n221": { - "loc": [-85.634182, 41.942495], - "id": "n221" - }, - "w46": { - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "id": "w46", - "nodes": ["n221", "n222", "n223", "n224", "n221"] - }, - "n222": { - "loc": [-85.634149, 41.942503], - "id": "n222" - }, - "n223": { - "loc": [-85.634098, 41.942373], - "id": "n223" - }, - "n224": { - "loc": [-85.634131, 41.942366], - "id": "n224" - }, - "w47": { - "tags": { - "highway": "service" - }, - "id": "w47", - "nodes": [ - "n1988", - "n1997", - "n1989", - "n25", - "n24", - "n1990", - "n26", - "n1991", - "n21", - "n1992", - "n2006", - "n1993", - "n22", - "n1994", - "n23", - "n1995", - "n1999", - "n1996", - "n2001", - "n1988" - ] - }, - "n225": { - "loc": [-85.635986, 41.94177], - "id": "n225" - }, - "w48": { - "tags": { - "building": "yes" - }, - "id": "w48", - "nodes": ["n225", "n237", "n226", "n227", "n228", "n229", "n230", "n231", "n232", "n233", "n234", "n235", "n236", "n225"] - }, - "n226": { - "loc": [-85.635982, 41.941523], - "id": "n226" - }, - "n227": { - "loc": [-85.636108, 41.941521], - "id": "n227" - }, - "n228": { - "loc": [-85.636109, 41.941559], - "id": "n228" - }, - "n229": { - "loc": [-85.636145, 41.941559], - "id": "n229" - }, - "n230": { - "loc": [-85.636145, 41.941551], - "id": "n230" - }, - "n231": { - "loc": [-85.636312, 41.941549], - "id": "n231" - }, - "n232": { - "loc": [-85.636314, 41.941649], - "id": "n232" - }, - "n233": { - "loc": [-85.636152, 41.94165], - "id": "n233" - }, - "n234": { - "loc": [-85.636152, 41.941628], - "id": "n234" - }, - "n235": { - "loc": [-85.63611, 41.941628], - "id": "n235" - }, - "n236": { - "loc": [-85.636113, 41.941768], - "id": "n236" - }, - "n237": { - "loc": [-85.635983, 41.941589], - "id": "n237", - "tags": { - "entrance": "yes" - } - }, - "w49": { - "id": "w49", - "nodes": ["n237", "n238"], - "tags": { - "highway": "footway" - } - }, - "n238": { - "loc": [-85.635906, 41.94159], - "id": "n238" - }, - "n239": { - "loc": [-85.635883, 41.940182], - "id": "n239" - }, - "w50": { - "id": "w50", - "nodes": ["n239", "n499", "n508", "n245", "n238", "n242", "n240"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n240": { - "loc": [-85.635916, 41.94264], - "id": "n240" - }, - "n241": { - "loc": [-85.635795, 41.941906], - "id": "n241" - }, - "w51": { - "id": "w51", - "nodes": ["n241", "n242", "n243", "n244"], - "tags": { - "highway": "service", - "surface": "unpaved" - } - }, - "n242": { - "loc": [-85.635909, 41.941906], - "id": "n242" - }, - "n243": { - "loc": [-85.636359, 41.941904], - "id": "n243" - }, - "n244": { - "loc": [-85.636351, 41.941438], - "id": "n244" - }, - "n245": { - "loc": [-85.635903, 41.941436], - "id": "n245" - }, - "n246": { - "loc": [-85.635788, 41.941436], - "id": "n246" - }, - "n247": { - "loc": [-85.635929, 41.941511], - "id": "n247" - }, - "w52": { - "tags": { - "amenity": "parking" - }, - "id": "w52", - "nodes": ["n247", "n248", "n249", "n250", "n247"] - }, - "n248": { - "loc": [-85.635929, 41.941317], - "id": "n248" - }, - "n249": { - "loc": [-85.636414, 41.941316], - "id": "n249" - }, - "n250": { - "loc": [-85.636414, 41.941511], - "id": "n250" - }, - "n251": { - "loc": [-85.636819, 41.941617], - "id": "n251" - }, - "w53": { - "tags": { - "building": "yes" - }, - "id": "w53", - "nodes": ["n251", "n252", "n253", "n254", "n255", "n256", "n257", "n258", "n259", "n260", "n261", "n262", "n251"] - }, - "n252": { - "loc": [-85.636718, 41.941619], - "id": "n252" - }, - "n253": { - "loc": [-85.636716, 41.941509], - "id": "n253" - }, - "n254": { - "loc": [-85.636732, 41.941509], - "id": "n254" - }, - "n255": { - "loc": [-85.636731, 41.941461], - "id": "n255" - }, - "n256": { - "loc": [-85.636799, 41.941461], - "id": "n256" - }, - "n257": { - "loc": [-85.6368, 41.9415], - "id": "n257" - }, - "n258": { - "loc": [-85.636814, 41.9415], - "id": "n258" - }, - "n259": { - "loc": [-85.636815, 41.941538], - "id": "n259" - }, - "n260": { - "loc": [-85.636827, 41.941538], - "id": "n260" - }, - "n261": { - "loc": [-85.636828, 41.941584], - "id": "n261" - }, - "n262": { - "loc": [-85.636819, 41.941585], - "id": "n262" - }, - "n263": { - "loc": [-85.636854, 41.941714], - "id": "n263" - }, - "w54": { - "tags": { - "building": "yes" - }, - "id": "w54", - "nodes": ["n263", "n264", "n265", "n266", "n267", "n268", "n269", "n270", "n271", "n272", "n273", "n274", "n275", "n276", "n263"] - }, - "n264": { - "loc": [-85.636855, 41.941774], - "id": "n264" - }, - "n265": { - "loc": [-85.636822, 41.941774], - "id": "n265" - }, - "n266": { - "loc": [-85.636822, 41.941778], - "id": "n266" - }, - "n267": { - "loc": [-85.636756, 41.941779], - "id": "n267" - }, - "n268": { - "loc": [-85.636756, 41.941774], - "id": "n268" - }, - "n269": { - "loc": [-85.636721, 41.941774], - "id": "n269" - }, - "n270": { - "loc": [-85.63672, 41.941714], - "id": "n270" - }, - "n271": { - "loc": [-85.636767, 41.941713], - "id": "n271" - }, - "n272": { - "loc": [-85.636767, 41.941706], - "id": "n272" - }, - "n273": { - "loc": [-85.636779, 41.941698], - "id": "n273" - }, - "n274": { - "loc": [-85.636798, 41.941697], - "id": "n274" - }, - "n275": { - "loc": [-85.63681, 41.941705], - "id": "n275" - }, - "n276": { - "loc": [-85.63681, 41.941714], - "id": "n276" - }, - "n277": { - "loc": [-85.636861, 41.942041], - "id": "n277" - }, - "w55": { - "tags": { - "building": "yes" - }, - "id": "w55", - "nodes": ["n277", "n278", "n279", "n280", "n281", "n282", "n283", "n284", "n277"] - }, - "n278": { - "loc": [-85.636862, 41.942099], - "id": "n278" - }, - "n279": { - "loc": [-85.636807, 41.942099], - "id": "n279" - }, - "n280": { - "loc": [-85.636807, 41.942126], - "id": "n280" - }, - "n281": { - "loc": [-85.636726, 41.942126], - "id": "n281" - }, - "n282": { - "loc": [-85.636726, 41.942098], - "id": "n282" - }, - "n283": { - "loc": [-85.636708, 41.942098], - "id": "n283" - }, - "n284": { - "loc": [-85.636708, 41.942041], - "id": "n284" - }, - "n285": { - "loc": [-85.635618, 41.941852], - "id": "n285" - }, - "w56": { - "id": "w56", - "nodes": ["n285", "n286", "n287", "n288", "n285"], - "tags": { - "amenity": "parking" - } - }, - "n286": { - "loc": [-85.635621, 41.94202], - "id": "n286" - }, - "n287": { - "loc": [-85.63524, 41.942023], - "id": "n287" - }, - "n288": { - "loc": [-85.635237, 41.941855], - "id": "n288" - }, - "n289": { - "loc": [-85.635568, 41.940475], - "id": "n289" - }, - "w57": { - "tags": { - "amenity": "parking" - }, - "id": "w57", - "nodes": ["n289", "n290", "n291", "n292", "n289"] - }, - "n290": { - "loc": [-85.634584, 41.940477], - "id": "n290" - }, - "n291": { - "loc": [-85.634583, 41.940203], - "id": "n291" - }, - "n292": { - "loc": [-85.635567, 41.940201], - "id": "n292" - }, - "w58": { - "id": "w58", - "nodes": ["n240", "n293", "n294"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n293": { - "loc": [-85.635816, 41.942673], - "id": "n293", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n294": { - "loc": [-85.635696, 41.942712], - "id": "n294" - }, - "w59": { - "id": "w59", - "nodes": ["n294", "n295", "n296", "n297", "n298", "n299", "n300", "n301", "n302", "n303", "n491", "n304", "n305", "n306", "n307"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n295": { - "loc": [-85.635679, 41.941962], - "id": "n295" - }, - "n296": { - "loc": [-85.635672, 41.941337], - "id": "n296" - }, - "n297": { - "loc": [-85.635658, 41.941284], - "id": "n297" - }, - "n298": { - "loc": [-85.635602, 41.941166], - "id": "n298" - }, - "n299": { - "loc": [-85.635598, 41.941138], - "id": "n299" - }, - "n300": { - "loc": [-85.635614, 41.941076], - "id": "n300" - }, - "n301": { - "loc": [-85.635659, 41.940956], - "id": "n301" - }, - "n302": { - "loc": [-85.635666, 41.940922], - "id": "n302" - }, - "n303": { - "loc": [-85.635667, 41.940877], - "id": "n303" - }, - "n304": { - "loc": [-85.635668, 41.940655], - "id": "n304" - }, - "n305": { - "loc": [-85.635628, 41.940617], - "id": "n305" - }, - "n306": { - "loc": [-85.635623, 41.940272], - "id": "n306" - }, - "n307": { - "loc": [-85.635651, 41.940183], - "id": "n307" - }, - "w60": { - "id": "w60", - "nodes": ["n239", "n308", "n307"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n308": { - "loc": [-85.63577, 41.940183], - "id": "n308", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n309": { - "loc": [-85.636939, 41.942544], - "id": "n309" - }, - "w61": { - "id": "w61", - "nodes": ["n309", "n310", "n311", "n312", "n313", "n240"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n310": { - "loc": [-85.636323, 41.942552], - "id": "n310" - }, - "n311": { - "loc": [-85.636257, 41.942555], - "id": "n311" - }, - "n312": { - "loc": [-85.636208, 41.942561], - "id": "n312" - }, - "n313": { - "loc": [-85.636159, 41.942573], - "id": "n313" - }, - "w62": { - "id": "w62", - "nodes": [ - "n876", - "n906", - "n904", - "n875", - "n874", - "n873", - "n872", - "n871", - "n870", - "n869", - "n41", - "n868", - "n146", - "n314", - "n315", - "n1956" - ], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n314": { - "loc": [-85.635743, 41.942881], - "id": "n314" - }, - "n315": { - "loc": [-85.635452, 41.942966], - "id": "n315" - }, - "w63": { - "id": "w63", - "nodes": ["n1955", "n316"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n316": { - "loc": [-85.634911, 41.943118], - "id": "n316" - }, - "w64": { - "id": "w64", - "nodes": ["n316", "n317"], - "tags": { - "highway": "footway", - "footway": "sidewalk", - "bridge": "yes", - "layer": "1" - } - }, - "n317": { - "loc": [-85.634743, 41.943167], - "id": "n317" - }, - "w65": { - "id": "w65", - "nodes": ["n317", "n318", "n319", "n320", "n321"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n318": { - "loc": [-85.634401, 41.94328], - "id": "n318" - }, - "n319": { - "loc": [-85.634345, 41.943299], - "id": "n319" - }, - "n320": { - "loc": [-85.634287, 41.943326], - "id": "n320" - }, - "n321": { - "loc": [-85.634233, 41.943354], - "id": "n321" - }, - "w66": { - "id": "w66", - "nodes": ["n321", "n322"], - "tags": { - "highway": "footway", - "footway": "sidewalk", - "layer": "1", - "bridge": "yes" - } - }, - "n322": { - "loc": [-85.634099, 41.943429], - "id": "n322" - }, - "w67": { - "id": "w67", - "nodes": ["n322", "n886", "n323", "n475"], - "tags": { - "highway": "footway", - "footway": "crossing" - } - }, - "n323": { - "loc": [-85.633958, 41.943507], - "id": "n323", - "tags": { - "highway": "crossing" - } - }, - "n324": { - "loc": [-85.633698, 41.943651], - "id": "n324", - "tags": { - "railway": "crossing" - } - }, - "n325": { - "loc": [-85.633508, 41.943757], - "id": "n325" - }, - "w68": { - "id": "w68", - "nodes": ["n294", "n1952", "n326"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n326": { - "loc": [-85.634839, 41.942974], - "id": "n326" - }, - "w69": { - "id": "w69", - "nodes": ["n326", "n327"], - "tags": { - "highway": "footway", - "footway": "sidewalk", - "bridge": "yes", - "layer": "1" - } - }, - "n327": { - "loc": [-85.634657, 41.943028], - "id": "n327" - }, "w70": { "id": "w70", "nodes": ["n327", "n328", "n27", "n329"], "tags": { - "highway": "footway", - "footway": "sidewalk" + "footway": "sidewalk", + "highway": "footway" } }, - "n328": { - "loc": [-85.634222, 41.943152], - "id": "n328" + "w700": { + "id": "w700", + "nodes": ["n4066", "n4067", "n4068"], + "tags": { + "barrier": "fence" + } }, - "n329": { - "loc": [-85.634099, 41.943202], - "id": "n329" + "w701": { + "id": "w701", + "nodes": ["n4069", "n4070", "n4071", "n4072", "n4069"], + "tags": { + "building": "shed" + } }, - "n330": { - "id": "n330", - "loc": [-85.634093, 41.943138] + "w702": { + "id": "w702", + "nodes": ["n4073", "n4074", "n4075", "n4076", "n4077", "n4078", "n4079", "n4080", "n4081", "n4082", "n4083", "n4084", "n4073"], + "tags": { + "building": "yes" + } + }, + "w703": { + "id": "w703", + "nodes": ["n4085", "n4093", "n4086", "n4087", "n4088", "n4089", "n4090", "n4091", "n4092", "n4085"], + "tags": { + "building": "yes" + } + }, + "w704": { + "id": "w704", + "nodes": ["n4093", "n4094", "n4095", "n4096"], + "tags": { + "barrier": "fence" + } + }, + "w705": { + "id": "w705", + "nodes": ["n4097", "n4098", "n4099", "n4100", "n4097"], + "tags": { + "building": "yes" + } + }, + "w706": { + "id": "w706", + "nodes": ["n4098", "n4102", "n4087"], + "tags": { + "barrier": "fence" + } + }, + "w707": { + "id": "w707", + "nodes": ["n4101", "n4102", "n4096", "n4170", "n4103"], + "tags": { + "barrier": "fence" + } + }, + "w708": { + "id": "w708", + "nodes": ["n4104", "n4105", "n4106", "n4107", "n4104"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w709": { + "id": "w709", + "nodes": ["n4108", "n4109", "n4110", "n4111", "n4108"], + "tags": { + "building": "yes" + } }, "w71": { "id": "w71", "nodes": ["n329", "n331"], "tags": { - "highway": "footway", - "footway": "sidewalk", "bridge": "yes", + "footway": "sidewalk", + "highway": "footway", "layer": "1" } }, - "n331": { - "loc": [-85.633938, 41.943291], - "id": "n331" + "w710": { + "id": "w710", + "nodes": ["n4112", "n4113", "n4114", "n4115", "n4116", "n4117", "n4118", "n4119", "n4112"], + "tags": { + "building": "yes" + } + }, + "w711": { + "id": "w711", + "nodes": ["n4120", "n4121", "n4122", "n4123", "n4120"], + "tags": { + "building": "yes" + } + }, + "w712": { + "id": "w712", + "nodes": ["n4124", "n4125", "n4126", "n4127", "n4128", "n4129", "n4124"], + "tags": { + "building": "yes" + } + }, + "w713": { + "id": "w713", + "nodes": ["n4130", "n4131", "n4132", "n4133", "n4130"], + "tags": { + "building": "shed" + } + }, + "w714": { + "id": "w714", + "nodes": ["n4134", "n4135", "n4136", "n4137", "n4138", "n4139", "n4140", "n4141", "n4142", "n4143", "n4134"], + "tags": { + "building": "yes" + } + }, + "w715": { + "id": "w715", + "nodes": ["n4144", "n4145", "n4146", "n4147", "n4148", "n4149", "n4144"], + "tags": { + "building": "yes" + } + }, + "w716": { + "id": "w716", + "nodes": ["n4150", "n4151", "n4152", "n4153", "n4150"], + "tags": { + "building": "yes" + } + }, + "w717": { + "id": "w717", + "nodes": ["n4154", "n4155", "n4156", "n4157", "n4154"], + "tags": { + "building": "yes" + } + }, + "w718": { + "id": "w718", + "nodes": ["n4158", "n4159", "n4160", "n4161", "n4162", "n4163", "n4164", "n4165", "n4158"], + "tags": { + "building": "yes" + } + }, + "w719": { + "id": "w719", + "nodes": ["n4166", "n4167", "n4168", "n4169", "n4166"], + "tags": { + "building": "yes" + } }, "w72": { "id": "w72", "nodes": ["n331", "n344", "n332", "n333", "n334"], "tags": { - "highway": "footway", - "footway": "sidewalk" + "footway": "sidewalk", + "highway": "footway" } }, - "n332": { - "loc": [-85.633535, 41.943511], - "id": "n332", + "w720": { + "id": "w720", + "nodes": ["n4170", "n4171"], "tags": { - "railway": "crossing" + "barrier": "fence" } }, - "n333": { - "loc": [-85.63339, 41.943596], - "id": "n333" + "w721": { + "id": "w721", + "nodes": ["n4138", "n4103"], + "tags": { + "barrier": "fence" + } }, - "n334": { - "loc": [-85.632842, 41.943895], - "id": "n334" + "w722": { + "id": "w722", + "nodes": ["n4103", "n4172"], + "tags": { + "barrier": "fence" + } }, - "n335": { - "loc": [-85.633856, 41.943315], - "id": "n335" + "w723": { + "id": "w723", + "nodes": ["n4173", "n4174"], + "tags": { + "barrier": "fence" + } }, - "w73": { + "w724": { + "id": "w724", + "nodes": ["n4175", "n4176", "n4177", "n4178", "n4175"], "tags": { "building": "yes" - }, + } + }, + "w725": { + "id": "w725", + "nodes": ["n4179", "n4180", "n4181", "n4182", "n4183", "n4184", "n4179"], + "tags": { + "building": "yes" + } + }, + "w726": { + "id": "w726", + "nodes": ["n4185", "n4186", "n4187", "n4188", "n4185"], + "tags": { + "building": "yes" + } + }, + "w727": { + "id": "w727", + "nodes": [ + "n4189", + "n4190", + "n4191", + "n4192", + "n4193", + "n4194", + "n4195", + "n4196", + "n4197", + "n4198", + "n4199", + "n4200", + "n4201", + "n4202", + "n4189" + ], + "tags": { + "building": "yes" + } + }, + "w728": { + "id": "w728", + "nodes": ["n4203", "n4204", "n4205", "n4206", "n4207", "n4208", "n4209", "n4210", "n4203"], + "tags": { + "building": "yes" + } + }, + "w729": { + "id": "w729", + "nodes": ["n4211", "n4212", "n4213", "n4214", "n4211"], + "tags": { + "building": "shed" + } + }, + "w73": { "id": "w73", - "nodes": ["n335", "n336", "n337", "n338", "n339", "n340", "n341", "n342", "n335"] + "nodes": ["n335", "n336", "n337", "n338", "n339", "n340", "n341", "n342", "n335"], + "tags": { + "building": "yes" + } }, - "n336": { - "loc": [-85.633697, 41.943405], - "id": "n336" + "w730": { + "id": "w730", + "nodes": ["n4215", "n4216", "n4217", "n4218", "n4215"], + "tags": { + "building": "yes" + } }, - "n337": { - "loc": [-85.63347, 41.943181], - "id": "n337" + "w731": { + "id": "w731", + "nodes": ["n4219", "n4220", "n4221", "n4222", "n4223", "n4224", "n4225", "n4226", "n4227", "n4228", "n4229", "n4230", "n4219"], + "tags": { + "building": "yes" + } }, - "n338": { - "loc": [-85.633597, 41.943109], - "id": "n338" + "w732": { + "id": "w732", + "nodes": ["n4231", "n4232", "n4233", "n4234", "n4235", "n4236", "n4237", "n4238", "n4231"], + "tags": { + "building": "yes" + } }, - "n339": { - "loc": [-85.633673, 41.943184], - "id": "n339" + "w733": { + "id": "w733", + "nodes": ["n4239", "n4240", "n4241", "n4242", "n4243", "n4244", "n4245", "n4246", "n4247", "n4248", "n4241"], + "tags": { + "highway": "service" + } }, - "n340": { - "loc": [-85.633714, 41.94316], - "id": "n340" + "w734": { + "id": "w734", + "nodes": ["n4240", "n4249", "n4248"], + "tags": { + "highway": "service", + "service": "parking_aisle" + } }, - "n341": { - "loc": [-85.633811, 41.943256], - "id": "n341" + "w735": { + "id": "w735", + "nodes": ["n4250", "n4251", "n4252", "n4253", "n4254", "n4255", "n4256", "n4257", "n4258", "n4250"], + "tags": { + "amenity": "parking" + } }, - "n342": { - "loc": [-85.633801, 41.943261], - "id": "n342" + "w736": { + "id": "w736", + "nodes": ["n4259", "n4260", "n4261", "n4262", "n4259"], + "tags": { + "building": "yes" + } }, - "n343": { - "loc": [-85.63374, 41.943514], - "id": "n343" + "w737": { + "id": "w737", + "nodes": [ + "n4263", + "n4264", + "n4265", + "n4266", + "n4267", + "n4268", + "n4269", + "n4270", + "n4271", + "n4272", + "n4273", + "n4274", + "n4275", + "n4276", + "n4263" + ], + "tags": { + "building": "yes" + } + }, + "w738": { + "id": "w738", + "nodes": ["n4277", "n4278", "n4279", "n4280", "n4281", "n4282", "n4277"], + "tags": { + "building": "yes" + } + }, + "w739": { + "id": "w739", + "nodes": ["n4283", "n4284", "n4285", "n4286", "n4287", "n4288", "n4289", "n4290", "n4291", "n4292", "n4293", "n4294", "n4283"], + "tags": { + "building": "yes" + } }, "w74": { "id": "w74", @@ -14199,51 +26936,188 @@ "highway": "service" } }, - "n344": { - "loc": [-85.633665, 41.943441], - "id": "n344" + "w740": { + "id": "w740", + "nodes": ["n4295", "n4296", "n4297", "n4298", "n4295"], + "tags": { + "building": "yes" + } }, - "n345": { - "loc": [-85.633162, 41.942947], - "id": "n345" + "w741": { + "id": "w741", + "nodes": ["n4299", "n4300", "n4301", "n4302", "n4303", "n4304", "n4305", "n4306", "n4307", "n4308", "n4309", "n4310", "n4299"], + "tags": { + "building": "yes" + } }, - "n346": { - "loc": [-85.633598, 41.943083], - "id": "n346" + "w742": { + "id": "w742", + "nodes": ["n4311", "n4312", "n4313", "n4314", "n4311"], + "tags": { + "building": "shed" + } + }, + "w743": { + "id": "w743", + "nodes": ["n4315", "n4316", "n4317", "n4318", "n4319", "n4320", "n4315"], + "tags": { + "building": "yes" + } + }, + "w744": { + "id": "w744", + "nodes": [ + "n4321", + "n4322", + "n4323", + "n4324", + "n4325", + "n4326", + "n4327", + "n4328", + "n4329", + "n4330", + "n4331", + "n4332", + "n4333", + "n4334", + "n4321" + ], + "tags": { + "building": "yes" + } + }, + "w745": { + "id": "w745", + "nodes": ["n4335", "n4336", "n4337", "n4338", "n4335"], + "tags": { + "building": "shed" + } + }, + "w746": { + "id": "w746", + "nodes": ["n4339", "n4340", "n4341", "n4342", "n4343", "n4344", "n4339"], + "tags": { + "building": "yes" + } + }, + "w747": { + "id": "w747", + "nodes": ["n4345", "n4346", "n4347", "n4348", "n4345"], + "tags": { + "building": "yes" + } + }, + "w748": { + "id": "w748", + "nodes": ["n4349", "n4350", "n4351", "n4352", "n4349"], + "tags": { + "building": "yes" + } + }, + "w749": { + "id": "w749", + "nodes": ["n4353", "n4354", "n4355", "n4356", "n4357", "n4358", "n4353"], + "tags": { + "building": "yes" + } }, "w75": { + "id": "w75", + "nodes": ["n346", "n347", "n348", "n349", "n350", "n351", "n346"], "tags": { "amenity": "parking" - }, - "id": "w75", - "nodes": ["n346", "n347", "n348", "n349", "n350", "n351", "n346"] + } }, - "n347": { - "loc": [-85.63343, 41.943179], - "id": "n347" + "w750": { + "id": "w750", + "nodes": ["n4612", "n4359", "n4360"], + "tags": { + "barrier": "fence" + } }, - "n348": { - "loc": [-85.633669, 41.94341], - "id": "n348" + "w751": { + "id": "w751", + "nodes": ["n4361", "n4362", "n4363", "n4364", "n4361"], + "tags": { + "building": "yes" + } }, - "n349": { - "loc": [-85.633566, 41.943466], - "id": "n349" + "w752": { + "id": "w752", + "nodes": ["n4365", "n4366", "n4367", "n4368", "n4365"], + "tags": { + "building": "yes" + } }, - "n350": { - "loc": [-85.633031, 41.942986], - "id": "n350" + "w753": { + "id": "w753", + "nodes": ["n4369", "n4370", "n4371", "n4372", "n4375", "n4369"], + "tags": { + "building": "yes" + } }, - "n351": { - "loc": [-85.633238, 41.94283], - "id": "n351" + "w754": { + "id": "w754", + "nodes": ["n4373", "n4374", "n4375"], + "tags": { + "barrier": "fence" + } + }, + "w755": { + "id": "w755", + "nodes": ["n4376", "n4377", "n4378", "n4379", "n4376"], + "tags": { + "building": "shed" + } + }, + "w756": { + "id": "w756", + "nodes": ["n4380", "n4381", "n4382", "n4383", "n4384", "n4385", "n4386", "n4387", "n4388", "n4389", "n4390", "n4391", "n4380"], + "tags": { + "building": "yes" + } + }, + "w757": { + "id": "w757", + "nodes": ["n4392", "n4393", "n4394", "n4395", "n4392"], + "tags": { + "building": "yes" + } + }, + "w758": { + "id": "w758", + "nodes": ["n4396", "n4397", "n4398", "n4399", "n4396"], + "tags": { + "building": "shed" + } + }, + "w759": { + "id": "w759", + "nodes": [ + "n4400", + "n4401", + "n4402", + "n4403", + "n4404", + "n4405", + "n4406", + "n4407", + "n4408", + "n4409", + "n4410", + "n4411", + "n4412", + "n4413", + "n4414", + "n4415", + "n4400" + ], + "tags": { + "building": "yes" + } }, "w76": { - "tags": { - "highway": "service", - "service": "parking_aisle", - "oneway": "yes" - }, "id": "w76", "nodes": [ "n2561", @@ -14261,177 +27135,541 @@ "n352", "n358", "n2561" - ] + ], + "tags": { + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + } }, - "n352": { - "id": "n352", - "loc": [-85.633173, 41.943556] + "w760": { + "id": "w760", + "nodes": ["n4416", "n4417"], + "tags": { + "barrier": "fence" + } }, - "n353": { - "id": "n353", - "loc": [-85.633127, 41.943552] + "w761": { + "id": "w761", + "nodes": ["n4418", "n4416", "n4419"], + "tags": { + "barrier": "fence" + } }, - "n354": { - "id": "n354", - "loc": [-85.632745, 41.943222] + "w762": { + "id": "w762", + "nodes": ["n4420", "n4421"], + "tags": { + "barrier": "fence" + } }, - "n355": { - "id": "n355", - "loc": [-85.632756, 41.943199] + "w763": { + "id": "w763", + "nodes": ["n4422", "n4423", "n4424", "n4425", "n4426", "n4427", "n4428", "n4429", "n4430", "n4431", "n4432", "n4433", "n4422"], + "tags": { + "building": "yes" + } }, - "n356": { - "id": "n356", - "loc": [-85.632855, 41.943147] + "w764": { + "id": "w764", + "nodes": ["n4434", "n4435", "n4436", "n4437", "n4438", "n4439", "n4440", "n4441", "n4442", "n4445", "n4444", "n4443", "n4434"], + "tags": { + "building": "yes" + } }, - "n357": { - "id": "n357", - "loc": [-85.632888, 41.94315] + "w765": { + "id": "w765", + "nodes": ["n4446", "n4447", "n4448", "n4449", "n4446"], + "tags": { + "building": "yes" + } }, - "n358": { - "id": "n358", - "loc": [-85.633232, 41.943547] + "w766": { + "id": "w766", + "nodes": ["n4450", "n4451", "n4452", "n4453", "n4450"], + "tags": { + "building": "yes" + } }, - "n359": { - "id": "n359", - "loc": [-85.633302, 41.94351] + "w767": { + "id": "w767", + "nodes": ["n4454", "n4455", "n4456", "n4457", "n4454"], + "tags": { + "building": "yes" + } + }, + "w768": { + "id": "w768", + "nodes": ["n4461", "n4458", "n4460"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w769": { + "id": "w769", + "nodes": ["n4460", "n4462", "n4459"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } }, "w77": { "id": "w77", "nodes": ["n325", "n360", "n361"], "tags": { - "highway": "footway", - "footway": "crossing" + "footway": "crossing", + "highway": "footway" } }, - "n360": { - "loc": [-85.633442, 41.943794], - "id": "n360", + "w770": { + "id": "w770", + "nodes": ["n4462", "n4463", "n4464"], "tags": { - "highway": "crossing" + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" } }, - "n361": { - "loc": [-85.633381, 41.94383], - "id": "n361" + "w771": { + "id": "w771", + "nodes": ["n4464", "n4465", "n4466", "n4467"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w772": { + "id": "w772", + "nodes": ["n3959", "n3968", "n3971", "n3960", "n3961", "n3962", "n3963"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w773": { + "id": "w773", + "nodes": ["n4467", "n4468", "n3959"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w774": { + "id": "w774", + "nodes": ["n4459", "n4469", "n4470"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w775": { + "id": "w775", + "nodes": ["n4470", "n4471", "n4472", "n4473", "n4474", "n4475"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w776": { + "id": "w776", + "nodes": ["n4475", "n4476", "n4477"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w777": { + "id": "w777", + "nodes": ["n4477", "n4478", "n4479", "n4480", "n4481", "n4482", "n4483", "n4484", "n4485", "n4486", "n4487"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w778": { + "id": "w778", + "nodes": ["n4488", "n4489", "n4490", "n4491", "n4488"], + "tags": { + "building": "yes" + } + }, + "w779": { + "id": "w779", + "nodes": ["n4492", "n4493", "n4494", "n4495", "n4492"], + "tags": { + "building": "yes" + } }, "w78": { "id": "w78", "nodes": ["n361", "n362", "n369"], "tags": { - "highway": "footway", - "footway": "sidewalk" + "footway": "sidewalk", + "highway": "footway" } }, - "n362": { - "loc": [-85.632977, 41.944053], - "id": "n362" + "w780": { + "id": "w780", + "nodes": ["n4496", "n4497", "n4498", "n4499", "n4496"], + "tags": { + "access": "private", + "leisure": "swimming_pool" + } + }, + "w781": { + "id": "w781", + "nodes": ["n4508", "n4509"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w782": { + "id": "w782", + "nodes": ["n4510", "n4511"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w783": { + "id": "w783", + "nodes": ["n4512", "n4513"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w784": { + "id": "w784", + "nodes": ["n4513", "n4514"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w785": { + "id": "w785", + "nodes": ["n4515", "n4516"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w786": { + "id": "w786", + "nodes": ["n4517", "n4515"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w787": { + "id": "w787", + "nodes": ["n4518", "n4519"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w788": { + "id": "w788", + "nodes": ["n4519", "n4520", "n4513"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w789": { + "id": "w789", + "nodes": ["n4515", "n4521", "n4513"], + "tags": { + "footway": "crossing", + "highway": "footway" + } }, "w79": { "id": "w79", "nodes": ["n362", "n363", "n334"], "tags": { - "highway": "footway", + "crossing": "zebra", "footway": "crossing", - "crossing": "zebra" + "highway": "footway" } }, - "n363": { - "loc": [-85.632915, 41.943981], - "id": "n363", + "w790": { + "id": "w790", + "nodes": ["n4515", "n4522", "n4523"], "tags": { - "highway": "crossing", - "crossing": "zebra" + "footway": "crossing", + "highway": "footway" + } + }, + "w791": { + "id": "w791", + "nodes": ["n4523", "n4524", "n4519"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w792": { + "id": "w792", + "nodes": ["n4523", "n4525"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w793": { + "id": "w793", + "nodes": ["n4525", "n4526", "n4527"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w794": { + "id": "w794", + "nodes": ["n4527", "n4529"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w795": { + "id": "w795", + "nodes": ["n4529", "n4530", "n4518"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w796": { + "id": "w796", + "nodes": ["n4518", "n4531"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w797": { + "id": "w797", + "nodes": ["n4531", "n4532"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w798": { + "id": "w798", + "nodes": ["n4533", "n4534"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w799": { + "id": "w799", + "nodes": ["n4518", "n4538", "n4539"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w8": { + "id": "w8", + "nodes": ["n46", "n47", "n145", "n48", "n49", "n46"], + "tags": { + "amenity": "parking" } }, "w80": { "id": "w80", "nodes": ["n334", "n364", "n365"], "tags": { - "highway": "footway", + "crossing": "zebra", "footway": "crossing", - "crossing": "zebra" + "highway": "footway" } }, - "n364": { - "loc": [-85.632724, 41.943969], - "id": "n364", + "w800": { + "id": "w800", + "nodes": ["n4539", "n4540", "n4541"], "tags": { - "highway": "crossing", - "crossing": "zebra" + "footway": "crossing", + "highway": "footway" } }, - "n365": { - "loc": [-85.632621, 41.944034], - "id": "n365" + "w801": { + "id": "w801", + "nodes": ["n4541", "n4542", "n4529"], + "tags": { + "footway": "crossing", + "highway": "footway" + } + }, + "w802": { + "id": "w802", + "nodes": ["n4552", "n4553"], + "tags": { + "footway": "sidewalk", + "highway": "footway" + } + }, + "w803": { + "id": "w803", + "nodes": ["n4554", "n4555", "n4556", "n4557", "n4558", "n4559", "n4554"], + "tags": { + "building": "yes" + } + }, + "w804": { + "id": "w804", + "nodes": ["n4562", "n4563"], + "tags": { + "barrier": "retaining_wall" + } + }, + "w805": { + "id": "w805", + "nodes": ["n4568", "n4569", "n4570", "n4571", "n4568"], + "tags": { + "building": "yes" + } + }, + "w806": { + "id": "w806", + "nodes": ["n3473", "n4575", "n4576", "n4581", "n4580", "n3551"], + "tags": { + "highway": "residential", + "oneway": "yes" + } + }, + "w807": { + "id": "w807", + "nodes": ["n4613", "n4614", "n4615", "n4616", "n4617", "n4618", "n4619", "n4620", "n4613"], + "tags": { + "leisure": "pitch", + "sport": "baseball" + } + }, + "w808": { + "id": "w808", + "nodes": ["n4621", "n4622", "n4623", "n4624", "n4625", "n4626", "n4627", "n4628", "n4629", "n4630"], + "tags": { + "highway": "service" + } + }, + "w809": { + "id": "w809", + "nodes": ["n4631", "n4632", "n4633", "n4637", "n4634", "n4638", "n4635", "n4636"], + "tags": { + "highway": "service" + } }, "w81": { "id": "w81", "nodes": ["n365", "n366", "n367"], "tags": { - "highway": "footway", + "crossing": "zebra", "footway": "crossing", - "crossing": "zebra" + "highway": "footway" } }, - "n366": { - "loc": [-85.632684, 41.944109], - "id": "n366", + "w810": { + "id": "w810", + "nodes": ["n4639", "n4640", "n4641"], "tags": { - "highway": "crossing", - "crossing": "zebra" + "barrier": "fence" } }, - "n367": { - "loc": [-85.632738, 41.944172], - "id": "n367" + "w811": { + "id": "w811", + "nodes": ["n4649", "n4650", "n4651", "n4652", "n4649"], + "tags": { + "building": "yes" + } + }, + "w812": { + "id": "w812", + "nodes": ["n4654", "n4655"], + "tags": { + "barrier": "fence" + } + }, + "w813": { + "id": "w813", + "nodes": ["n4656", "n4657"], + "tags": { + "barrier": "fence" + } + }, + "w814": { + "id": "w814", + "nodes": ["n4669", "n4670", "n4671", "n4672", "n4669"], + "tags": { + "amenity": "shelter", + "shelter_type": "picnic_shelters" + } + }, + "w815": { + "id": "w815", + "nodes": ["n4678", "n4679", "n4680", "n1889"], + "tags": { + "highway": "service" + } + }, + "w816": { + "id": "w816", + "nodes": ["n239", "n4686", "n4687"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w817": { + "id": "w817", + "nodes": ["n4687", "n4688", "n4689"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w818": { + "id": "w818", + "nodes": ["n4689", "n4690", "n307"], + "tags": { + "crossing": "zebra", + "footway": "crossing", + "highway": "footway" + } + }, + "w819": { + "id": "w819", + "nodes": ["n2266", "n4743"], + "tags": { + "highway": "path" + } }, "w82": { "id": "w82", "nodes": ["n724", "n368", "n369"], "tags": { - "highway": "footway", + "crossing": "zebra", "footway": "crossing", - "crossing": "zebra" + "highway": "footway" } }, - "n368": { - "loc": [-85.63287, 41.944135], - "id": "n368", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n369": { - "loc": [-85.63298, 41.944076], - "id": "n369" - }, - "n370": { - "id": "n370", - "loc": [-85.633191, 41.944471] - }, - "n371": { - "loc": [-85.633132, 41.94372], - "id": "n371" - }, "w83": { + "id": "w83", + "nodes": ["n371", "n372", "n373", "n374", "n371"], "tags": { "building": "yes" - }, - "id": "w83", - "nodes": ["n371", "n372", "n373", "n374", "n371"] - }, - "n372": { - "loc": [-85.633011, 41.943788], - "id": "n372" - }, - "n373": { - "loc": [-85.632854, 41.943632], - "id": "n373" - }, - "n374": { - "loc": [-85.632974, 41.943565], - "id": "n374" + } }, "w84": { "id": "w84", @@ -14440,82 +27678,33 @@ "building": "yes" } }, - "n375": { - "loc": [-85.632741, 41.943351], - "id": "n375" - }, - "n376": { - "loc": [-85.63251, 41.943481], - "id": "n376" - }, - "n377": { - "loc": [-85.632706, 41.943715], - "id": "n377" - }, - "n384": { - "loc": [-85.632616, 41.944021], - "id": "n384" + "w85": { + "id": "w85", + "nodes": ["n431", "n432", "n1038", "n433", "n434", "n1040", "n431"], + "tags": { + "building": "yes" + } }, "w86": { + "id": "w86", + "nodes": ["n384", "n385", "n386", "n387", "n384"], "tags": { "building": "yes" - }, - "id": "w86", - "nodes": ["n384", "n385", "n386", "n387", "n384"] - }, - "n385": { - "loc": [-85.632319, 41.944172], - "id": "n385" - }, - "n386": { - "loc": [-85.63221, 41.944066], - "id": "n386" - }, - "n387": { - "loc": [-85.632524, 41.943912], - "id": "n387" + } }, "w87": { + "id": "w87", + "nodes": ["n387", "n388", "n389", "n386", "n387"], "tags": { "building": "yes" - }, - "id": "w87", - "nodes": ["n387", "n388", "n389", "n386", "n387"] - }, - "n388": { - "loc": [-85.632268, 41.943621], - "id": "n388" - }, - "n389": { - "loc": [-85.631951, 41.943773], - "id": "n389" - }, - "n390": { - "loc": [-85.631981, 41.943654], - "id": "n390" + } }, "w88": { + "id": "w88", + "nodes": ["n390", "n391", "n392", "n393", "n390"], "tags": { "building": "yes" - }, - "id": "w88", - "nodes": ["n390", "n391", "n392", "n393", "n390"] - }, - "n391": { - "loc": [-85.631886, 41.943699], - "id": "n391" - }, - "n392": { - "loc": [-85.631807, 41.943606], - "id": "n392" - }, - "n393": { - "loc": [-85.631902, 41.943561], - "id": "n393" - }, - "n394": { - "loc": [-85.63236, 41.943543], - "id": "n394" + } }, "w89": { "id": "w89", @@ -14524,26 +27713,14 @@ "highway": "service" } }, - "n395": { - "id": "n395", - "loc": [-85.633839, 41.944082] - }, - "n396": { - "id": "n396", - "loc": [-85.63376, 41.944097] - }, - "n397": { - "id": "n397", - "loc": [-85.63361, 41.943957] - }, - "n398": { - "loc": [-85.633309, 41.943886], - "id": "n398" - }, - "w90": { + "w9": { + "id": "w9", + "nodes": ["n50", "n51", "n148", "n52", "n57", "n891", "n53", "n50"], "tags": { "building": "yes" - }, + } + }, + "w90": { "id": "w90", "nodes": [ "n398", @@ -14567,87 +27744,10 @@ "n416", "n417", "n398" - ] - }, - "n399": { - "loc": [-85.633226, 41.943931], - "id": "n399" - }, - "n400": { - "loc": [-85.63326, 41.943966], - "id": "n400" - }, - "n401": { - "loc": [-85.63324, 41.943976], - "id": "n401" - }, - "n402": { - "loc": [-85.63327, 41.944006], - "id": "n402" - }, - "n403": { - "loc": [-85.633278, 41.944002], - "id": "n403" - }, - "n404": { - "loc": [-85.63331, 41.944036], - "id": "n404" - }, - "n405": { - "loc": [-85.633348, 41.944015], - "id": "n405" - }, - "n406": { - "loc": [-85.63338, 41.944048], - "id": "n406" - }, - "n407": { - "loc": [-85.633431, 41.94402], - "id": "n407" - }, - "n408": { - "loc": [-85.633425, 41.944014], - "id": "n408" - }, - "n409": { - "loc": [-85.633457, 41.943997], - "id": "n409" - }, - "n410": { - "loc": [-85.633429, 41.943969], - "id": "n410" - }, - "n411": { - "loc": [-85.633442, 41.943962], - "id": "n411" - }, - "n412": { - "loc": [-85.633411, 41.943932], - "id": "n412" - }, - "n413": { - "loc": [-85.633421, 41.943926], - "id": "n413" - }, - "n414": { - "loc": [-85.633376, 41.94388], - "id": "n414" - }, - "n415": { - "loc": [-85.633348, 41.943895], - "id": "n415" - }, - "n416": { - "loc": [-85.633341, 41.943888], - "id": "n416" - }, - "n417": { - "loc": [-85.633321, 41.943898], - "id": "n417" - }, - "n418": { - "loc": [-85.633547, 41.943896], - "id": "n418" + ], + "tags": { + "building": "yes" + } }, "w91": { "id": "w91", @@ -14656,80 +27756,43 @@ "highway": "service" } }, - "n419": { - "loc": [-85.633467, 41.944075], - "id": "n419" - }, - "n420": { - "loc": [-85.633578, 41.944055], - "id": "n420" - }, "w92": { + "id": "w92", + "nodes": ["n420", "n421", "n422", "n423", "n420"], "tags": { "amenity": "parking" - }, - "id": "w92", - "nodes": ["n420", "n421", "n422", "n423", "n420"] - }, - "n421": { - "loc": [-85.633462, 41.944125], - "id": "n421" - }, - "n422": { - "loc": [-85.633372, 41.944061], - "id": "n422" - }, - "n423": { - "loc": [-85.633509, 41.943981], - "id": "n423" - }, - "n424": { - "id": "n424", - "loc": [-85.635421, 41.945367] + } }, "w93": { + "id": "w93", + "nodes": ["n2282", "n1876"], "tags": { "name": "Rocky River", - "waterway": "river", - "tunnel": "building_passage" - }, - "id": "w93", - "nodes": ["n2282", "n1876"] + "tunnel": "building_passage", + "waterway": "river" + } }, "w94": { + "id": "w94", + "nodes": ["n1876", "n885", "n1875", "n2234"], "tags": { "name": "Rocky River", "waterway": "river" - }, - "id": "w94", - "nodes": ["n1876", "n885", "n1875", "n2234"] - }, - "n425": { - "loc": [-85.634425, 41.943552], - "id": "n425" + } }, "w95": { + "id": "w95", + "nodes": ["n425", "n426", "n427", "n914", "n428", "n913", "n425"], "tags": { "building": "yes" - }, - "id": "w95", - "nodes": ["n425", "n426", "n427", "n914", "n428", "n913", "n425"] + } }, - "n426": { - "loc": [-85.634248, 41.943654], - "id": "n426" - }, - "n427": { - "loc": [-85.634177, 41.943585], - "id": "n427" - }, - "n428": { - "loc": [-85.634354, 41.943484], - "id": "n428" - }, - "n435": { - "loc": [-85.634427, 41.943533], - "id": "n435" + "w96": { + "id": "w96", + "nodes": ["n456", "n620", "n1034", "n1035", "n456"], + "tags": { + "building": "yes" + } }, "w97": { "id": "w97", @@ -14738,10 +27801,6 @@ "highway": "footway" } }, - "n436": { - "loc": [-85.63428, 41.943229], - "id": "n436" - }, "w98": { "id": "w98", "nodes": ["n436", "n319", "n437", "n438", "n439", "n440", "n441", "n476", "n442"], @@ -14749,7712 +27808,12 @@ "highway": "service" } }, - "n437": { - "loc": [-85.634499, 41.943461], - "id": "n437" - }, - "n438": { - "loc": [-85.634514, 41.943486], - "id": "n438" - }, - "n439": { - "loc": [-85.63452, 41.943511], - "id": "n439" - }, - "n440": { - "loc": [-85.63451, 41.943534], - "id": "n440" - }, - "n441": { - "loc": [-85.634483, 41.943556], - "id": "n441" - }, - "n442": { - "loc": [-85.63419, 41.943713], - "id": "n442" - }, - "n443": { - "loc": [-85.634462, 41.943294], - "id": "n443" - }, "w99": { - "tags": { - "amenity": "parking" - }, "id": "w99", - "nodes": ["n443", "n444", "n445", "n446", "n447", "n448", "n449", "n450", "n443"] - }, - "n444": { - "loc": [-85.634298, 41.943389], - "id": "n444" - }, - "n445": { - "loc": [-85.634527, 41.943623], - "id": "n445" - }, - "n446": { - "loc": [-85.634608, 41.943577], - "id": "n446" - }, - "n447": { - "loc": [-85.634555, 41.943531], - "id": "n447" - }, - "n448": { - "loc": [-85.634555, 41.943482], - "id": "n448" - }, - "n449": { - "loc": [-85.634509, 41.943427], - "id": "n449" - }, - "n450": { - "loc": [-85.63453, 41.943365], - "id": "n450" - }, - "n451": { - "loc": [-85.634356, 41.943468], - "id": "n451" - }, - "w100": { - "id": "w100", - "nodes": ["n451", "n915", "n452"], - "tags": { - "highway": "footway" - } - }, - "n452": { - "loc": [-85.634123, 41.943596], - "id": "n452" - }, - "n453": { - "id": "n453", - "loc": [-85.634709, 41.943926] - }, - "n454": { - "id": "n454", - "loc": [-85.63525, 41.943855] - }, - "n455": { - "id": "n455", - "loc": [-85.635224, 41.943869] - }, - "n457": { - "id": "n457", - "loc": [-85.635186, 41.943901] - }, - "n458": { - "id": "n458", - "loc": [-85.635162, 41.943917] - }, - "n459": { - "id": "n459", - "loc": [-85.634856, 41.943905] - }, - "n460": { - "id": "n460", - "loc": [-85.634811, 41.944007] - }, - "n461": { - "loc": [-85.634987, 41.943112], - "id": "n461" - }, - "w101": { - "id": "w101", - "nodes": ["n461", "n462", "n463", "n464", "n465", "n466"], - "tags": { - "barrier": "fence" - } - }, - "n462": { - "loc": [-85.634698, 41.943194], - "id": "n462" - }, - "n463": { - "loc": [-85.634632, 41.943219], - "id": "n463" - }, - "n464": { - "loc": [-85.63459, 41.943239], - "id": "n464" - }, - "n465": { - "loc": [-85.634555, 41.943263], - "id": "n465" - }, - "n466": { - "loc": [-85.634526, 41.943289], - "id": "n466" - }, - "n467": { - "loc": [-85.635163, 41.944985], - "id": "n467" - }, - "w102": { + "nodes": ["n443", "n444", "n445", "n446", "n447", "n448", "n449", "n450", "n443"], "tags": { "amenity": "parking" - }, - "id": "w102", - "nodes": ["n467", "n468", "n469", "n470", "n472", "n467"] - }, - "n468": { - "loc": [-85.635095, 41.945035], - "id": "n468" - }, - "n469": { - "loc": [-85.634269, 41.944431], - "id": "n469" - }, - "n470": { - "loc": [-85.634352, 41.944376], - "id": "n470" - }, - "w103": { - "id": "w103", - "nodes": ["n2597", "n2444", "n471", "n472"], - "tags": { - "highway": "footway" } - }, - "n471": { - "loc": [-85.634747, 41.944561], - "id": "n471", - "tags": { - "railway": "crossing" - } - }, - "n472": { - "loc": [-85.634667, 41.944613], - "id": "n472" - }, - "n473": { - "loc": [-85.634161, 41.944371], - "id": "n473" - }, - "w104": { - "id": "w104", - "nodes": ["n473", "n474", "n325"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n474": { - "loc": [-85.633861, 41.944117], - "id": "n474" - }, - "n475": { - "id": "n475", - "loc": [-85.633906, 41.943535] - }, - "w105": { - "tags": { - "highway": "footway", - "footway": "sidewalk" - }, - "id": "w105", - "nodes": ["n475", "n324", "n325"] - }, - "w106": { - "id": "w106", - "nodes": ["n886", "n452", "n476"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n476": { - "loc": [-85.63423, 41.943692], - "id": "n476" - }, - "n477": { - "id": "n477", - "loc": [-85.635096, 41.942814] - }, - "n478": { - "id": "n478", - "loc": [-85.635058, 41.942795] - }, - "n479": { - "id": "n479", - "loc": [-85.635002, 41.94279] - }, - "n480": { - "id": "n480", - "loc": [-85.634908, 41.94279] - }, - "n481": { - "id": "n481", - "loc": [-85.634478, 41.942342] - }, - "n482": { - "id": "n482", - "loc": [-85.634521, 41.942254] - }, - "n483": { - "id": "n483", - "loc": [-85.63425, 41.941819] - }, - "n484": { - "id": "n484", - "loc": [-85.634324, 41.942131] - }, - "n485": { - "loc": [-85.634211, 41.941374], - "id": "n485" - }, - "w107": { - "id": "w107", - "nodes": ["n485", "n486", "n18"], - "tags": { - "highway": "service" - } - }, - "n486": { - "loc": [-85.634085, 41.940704], - "id": "n486" - }, - "w108": { - "id": "w108", - "nodes": ["n300", "n487", "n488", "n489", "n490"], - "tags": { - "highway": "footway" - } - }, - "n487": { - "loc": [-85.635567, 41.940944], - "id": "n487" - }, - "n488": { - "loc": [-85.635542, 41.940919], - "id": "n488" - }, - "n489": { - "loc": [-85.635514, 41.940906], - "id": "n489" - }, - "n490": { - "loc": [-85.635469, 41.940896], - "id": "n490" - }, - "w109": { - "id": "w109", - "nodes": ["n490", "n491"], - "tags": { - "highway": "footway" - } - }, - "n491": { - "loc": [-85.635667, 41.940826], - "id": "n491" - }, - "n492": { - "loc": [-85.636197, 41.940599], - "id": "n492" - }, - "w110": { - "tags": { - "building": "yes" - }, - "id": "w110", - "nodes": ["n492", "n493", "n494", "n495", "n496", "n497", "n492"] - }, - "n493": { - "loc": [-85.6362, 41.940686], - "id": "n493" - }, - "n494": { - "loc": [-85.635969, 41.94069], - "id": "n494" - }, - "n495": { - "loc": [-85.635965, 41.940561], - "id": "n495" - }, - "n496": { - "loc": [-85.636031, 41.94056], - "id": "n496" - }, - "n497": { - "loc": [-85.636032, 41.940602], - "id": "n497" - }, - "n498": { - "loc": [-85.635776, 41.940583], - "id": "n498" - }, - "w111": { - "id": "w111", - "nodes": ["n498", "n499", "n511"], - "tags": { - "highway": "service" - } - }, - "n499": { - "loc": [-85.63589, 41.940578], - "id": "n499" - }, - "n500": { - "loc": [-85.636198, 41.940578], - "id": "n500" - }, - "n501": { - "loc": [-85.636251, 41.940584], - "id": "n501" - }, - "n502": { - "loc": [-85.636279, 41.940605], - "id": "n502" - }, - "n503": { - "loc": [-85.636285, 41.940633], - "id": "n503" - }, - "n504": { - "loc": [-85.636281, 41.940662], - "id": "n504" - }, - "n505": { - "loc": [-85.636266, 41.940688], - "id": "n505" - }, - "n506": { - "loc": [-85.636236, 41.940701], - "id": "n506" - }, - "n507": { - "loc": [-85.63619, 41.940706], - "id": "n507" - }, - "n508": { - "loc": [-85.635892, 41.940707], - "id": "n508" - }, - "n509": { - "loc": [-85.635777, 41.9407], - "id": "n509" - }, - "n510": { - "id": "n510", - "loc": [-85.636044, 41.940578] - }, - "w112": { - "tags": { - "highway": "service" - }, - "id": "w112", - "nodes": ["n510", "n500", "n501", "n502", "n503", "n504", "n505", "n506", "n507", "n508", "n509"] - }, - "n511": { - "id": "n511", - "loc": [-85.635946, 41.940578] - }, - "w113": { - "tags": { - "highway": "service", - "covered": "yes" - }, - "id": "w113", - "nodes": ["n511", "n510"] - }, - "n512": { - "loc": [-85.636475, 41.940732], - "id": "n512" - }, - "w114": { - "tags": { - "building": "yes" - }, - "id": "w114", - "nodes": ["n512", "n513", "n514", "n515", "n512"] - }, - "n513": { - "loc": [-85.636475, 41.940777], - "id": "n513" - }, - "n514": { - "loc": [-85.636405, 41.940777], - "id": "n514" - }, - "n515": { - "loc": [-85.636405, 41.940732], - "id": "n515" - }, - "n516": { - "loc": [-85.636471, 41.940916], - "id": "n516" - }, - "w115": { - "tags": { - "building": "yes" - }, - "id": "w115", - "nodes": ["n516", "n517", "n518", "n519", "n516"] - }, - "n517": { - "loc": [-85.636471, 41.940961], - "id": "n517" - }, - "n518": { - "loc": [-85.636404, 41.940961], - "id": "n518" - }, - "n519": { - "loc": [-85.636404, 41.940916], - "id": "n519" - }, - "n520": { - "loc": [-85.636286, 41.941127], - "id": "n520" - }, - "w116": { - "tags": { - "building": "yes" - }, - "id": "w116", - "nodes": ["n520", "n521", "n522", "n523", "n520"] - }, - "n521": { - "loc": [-85.636203, 41.941126], - "id": "n521" - }, - "n522": { - "loc": [-85.636204, 41.941083], - "id": "n522" - }, - "n523": { - "loc": [-85.636287, 41.941083], - "id": "n523" - }, - "n524": { - "loc": [-85.636124, 41.941064], - "id": "n524" - }, - "w117": { - "tags": { - "building": "yes" - }, - "id": "w117", - "nodes": ["n524", "n525", "n526", "n527", "n528", "n529", "n530", "n531", "n532", "n533", "n534", "n535", "n524"] - }, - "n525": { - "loc": [-85.636, 41.941065], - "id": "n525" - }, - "n526": { - "loc": [-85.636, 41.940964], - "id": "n526" - }, - "n527": { - "loc": [-85.636045, 41.940964], - "id": "n527" - }, - "n528": { - "loc": [-85.636045, 41.940928], - "id": "n528" - }, - "n529": { - "loc": [-85.636111, 41.940928], - "id": "n529" - }, - "n530": { - "loc": [-85.636111, 41.940961], - "id": "n530" - }, - "n531": { - "loc": [-85.636123, 41.940961], - "id": "n531" - }, - "n532": { - "loc": [-85.636124, 41.940997], - "id": "n532" - }, - "n533": { - "loc": [-85.636164, 41.940997], - "id": "n533" - }, - "n534": { - "loc": [-85.636164, 41.941044], - "id": "n534" - }, - "n535": { - "loc": [-85.636124, 41.941044], - "id": "n535" - }, - "n536": { - "loc": [-85.636534, 41.941256], - "id": "n536" - }, - "w118": { - "tags": { - "building": "yes" - }, - "id": "w118", - "nodes": ["n536", "n537", "n538", "n539", "n536"] - }, - "n537": { - "loc": [-85.63645, 41.941246], - "id": "n537" - }, - "n538": { - "loc": [-85.636462, 41.941189], - "id": "n538" - }, - "n539": { - "loc": [-85.636546, 41.941199], - "id": "n539" - }, - "n540": { - "loc": [-85.636802, 41.941226], - "id": "n540" - }, - "w119": { - "tags": { - "building": "yes" - }, - "id": "w119", - "nodes": ["n540", "n541", "n542", "n543", "n544", "n545", "n546", "n547", "n540"] - }, - "n541": { - "loc": [-85.636701, 41.941215], - "id": "n541" - }, - "n542": { - "loc": [-85.636709, 41.941174], - "id": "n542" - }, - "n543": { - "loc": [-85.636656, 41.941168], - "id": "n543" - }, - "n544": { - "loc": [-85.636666, 41.941122], - "id": "n544" - }, - "n545": { - "loc": [-85.636781, 41.941136], - "id": "n545" - }, - "n546": { - "loc": [-85.636774, 41.94117], - "id": "n546" - }, - "n547": { - "loc": [-85.636812, 41.941175], - "id": "n547" - }, - "n548": { - "loc": [-85.636803, 41.941047], - "id": "n548" - }, - "w120": { - "tags": { - "building": "yes" - }, - "id": "w120", - "nodes": ["n548", "n549", "n550", "n551", "n552", "n553", "n554", "n555", "n556", "n557", "n548"] - }, - "n549": { - "loc": [-85.636785, 41.941047], - "id": "n549" - }, - "n550": { - "loc": [-85.636785, 41.941058], - "id": "n550" - }, - "n551": { - "loc": [-85.636644, 41.941059], - "id": "n551" - }, - "n552": { - "loc": [-85.636644, 41.941038], - "id": "n552" - }, - "n553": { - "loc": [-85.636581, 41.941039], - "id": "n553" - }, - "n554": { - "loc": [-85.636581, 41.940995], - "id": "n554" - }, - "n555": { - "loc": [-85.636746, 41.940995], - "id": "n555" - }, - "n556": { - "loc": [-85.636746, 41.940978], - "id": "n556" - }, - "n557": { - "loc": [-85.636803, 41.940978], - "id": "n557" - }, - "n558": { - "loc": [-85.636781, 41.940768], - "id": "n558" - }, - "w121": { - "tags": { - "building": "yes" - }, - "id": "w121", - "nodes": ["n558", "n559", "n560", "n561", "n562", "n563", "n564", "n565", "n558"] - }, - "n559": { - "loc": [-85.636783, 41.940828], - "id": "n559" - }, - "n560": { - "loc": [-85.636761, 41.940828], - "id": "n560" - }, - "n561": { - "loc": [-85.636762, 41.940857], - "id": "n561" - }, - "n562": { - "loc": [-85.636641, 41.940859], - "id": "n562" - }, - "n563": { - "loc": [-85.63664, 41.940805], - "id": "n563" - }, - "n564": { - "loc": [-85.636676, 41.940804], - "id": "n564" - }, - "n565": { - "loc": [-85.636675, 41.940769], - "id": "n565" - }, - "n566": { - "loc": [-85.636733, 41.94033], - "id": "n566" - }, - "w122": { - "tags": { - "building": "yes" - }, - "id": "w122", - "nodes": ["n566", "n567", "n568", "n569", "n566"] - }, - "n567": { - "loc": [-85.636471, 41.940334], - "id": "n567" - }, - "n568": { - "loc": [-85.636469, 41.940262], - "id": "n568" - }, - "n569": { - "loc": [-85.636731, 41.940257], - "id": "n569" - }, - "n570": { - "loc": [-85.636798, 41.940419], - "id": "n570" - }, - "w123": { - "tags": { - "building": "yes" - }, - "id": "w123", - "nodes": ["n570", "n571", "n572", "n573", "n570"] - }, - "n571": { - "loc": [-85.6368, 41.940524], - "id": "n571" - }, - "n572": { - "loc": [-85.63664, 41.940526], - "id": "n572" - }, - "n573": { - "loc": [-85.636638, 41.940421], - "id": "n573" - }, - "n574": { - "loc": [-85.636372, 41.940551], - "id": "n574" - }, - "w124": { - "tags": { - "building": "yes" - }, - "id": "w124", - "nodes": ["n574", "n575", "n576", "n577", "n574"] - }, - "n575": { - "loc": [-85.636338, 41.94055], - "id": "n575" - }, - "n576": { - "loc": [-85.636339, 41.940524], - "id": "n576" - }, - "n577": { - "loc": [-85.636373, 41.940525], - "id": "n577" - }, - "n578": { - "loc": [-85.636388, 41.940435], - "id": "n578" - }, - "w125": { - "tags": { - "building": "yes" - }, - "id": "w125", - "nodes": ["n578", "n579", "n580", "n581", "n578"] - }, - "n579": { - "loc": [-85.636222, 41.940436], - "id": "n579" - }, - "n580": { - "loc": [-85.636222, 41.940366], - "id": "n580" - }, - "n581": { - "loc": [-85.636387, 41.940365], - "id": "n581" - }, - "n582": { - "loc": [-85.636158, 41.940482], - "id": "n582" - }, - "w126": { - "tags": { - "building": "yes" - }, - "id": "w126", - "nodes": ["n582", "n583", "n584", "n585", "n582"] - }, - "n583": { - "loc": [-85.635963, 41.940484], - "id": "n583" - }, - "n584": { - "loc": [-85.635961, 41.940399], - "id": "n584" - }, - "n585": { - "loc": [-85.636156, 41.940397], - "id": "n585" - }, - "w127": { - "tags": { - "building": "yes" - }, - "id": "w127", - "nodes": ["n586", "n587", "n588", "n589", "n590", "n591", "n592", "n593", "n586"] - }, - "n586": { - "loc": [-85.635987, 41.940314], - "id": "n586" - }, - "n587": { - "loc": [-85.635987, 41.940268], - "id": "n587" - }, - "n588": { - "loc": [-85.635968, 41.940268], - "id": "n588" - }, - "n589": { - "loc": [-85.635967, 41.940212], - "id": "n589" - }, - "n590": { - "loc": [-85.636082, 41.940211], - "id": "n590" - }, - "n591": { - "loc": [-85.636083, 41.94027], - "id": "n591" - }, - "n592": { - "loc": [-85.636064, 41.94027], - "id": "n592" - }, - "n593": { - "loc": [-85.636064, 41.940313], - "id": "n593" - }, - "n594": { - "loc": [-85.638071, 41.941562], - "id": "n594" - }, - "w128": { - "tags": { - "building": "yes" - }, - "id": "w128", - "nodes": ["n594", "n595", "n596", "n597", "n598", "n599", "n600", "n601", "n594"] - }, - "n595": { - "loc": [-85.637953, 41.941562], - "id": "n595" - }, - "n596": { - "loc": [-85.637952, 41.941522], - "id": "n596" - }, - "n597": { - "loc": [-85.637876, 41.941523], - "id": "n597" - }, - "n598": { - "loc": [-85.637876, 41.941471], - "id": "n598" - }, - "n599": { - "loc": [-85.638035, 41.94147], - "id": "n599" - }, - "n600": { - "loc": [-85.638035, 41.941513], - "id": "n600" - }, - "n601": { - "loc": [-85.638071, 41.941512], - "id": "n601" - }, - "w129": { - "id": "w129", - "nodes": ["n309", "n602", "n603"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n602": { - "loc": [-85.637038, 41.942543], - "id": "n602", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n603": { - "loc": [-85.637134, 41.942542], - "id": "n603" - }, - "w130": { - "id": "w130", - "nodes": ["n603", "n604"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n604": { - "loc": [-85.638122, 41.942532], - "id": "n604" - }, - "w131": { - "id": "w131", - "nodes": ["n604", "n605", "n606"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n605": { - "loc": [-85.638121, 41.942478], - "id": "n605" - }, - "n606": { - "loc": [-85.638104, 41.941424], - "id": "n606" - }, - "w132": { - "id": "w132", - "nodes": ["n606", "n607"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n607": { - "loc": [-85.637115, 41.941438], - "id": "n607" - }, - "w133": { - "id": "w133", - "nodes": ["n607", "n610", "n608", "n603"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n608": { - "loc": [-85.637133, 41.942453], - "id": "n608" - }, - "n609": { - "loc": [-85.637429, 41.942004], - "id": "n609" - }, - "w134": { - "id": "w134", - "nodes": ["n609", "n610", "n611"], - "tags": { - "highway": "service", - "service": "driveway", - "surface": "unpaved" - } - }, - "n610": { - "loc": [-85.637125, 41.942004], - "id": "n610" - }, - "n611": { - "loc": [-85.637022, 41.942004], - "id": "n611" - }, - "w135": { - "tags": { - "highway": "service" - }, - "id": "w135", - "nodes": ["n244", "n245", "n246"] - }, - "n612": { - "loc": [-85.635952, 41.943579], - "id": "n612" - }, - "w136": { - "tags": { - "amenity": "shelter" - }, - "id": "w136", - "nodes": ["n612", "n613", "n614", "n615", "n612"] - }, - "n613": { - "loc": [-85.635872, 41.943594], - "id": "n613" - }, - "n614": { - "loc": [-85.635857, 41.943551], - "id": "n614" - }, - "n615": { - "loc": [-85.635937, 41.943535], - "id": "n615" - }, - "n616": { - "id": "n616", - "loc": [-85.63671, 41.94344] - }, - "n617": { - "id": "n617", - "loc": [-85.636427, 41.94334] - }, - "n618": { - "id": "n618", - "loc": [-85.635353, 41.943279] - }, - "n619": { - "id": "n619", - "loc": [-85.635319, 41.943257] - }, - "n621": { - "id": "n621", - "loc": [-85.634957, 41.943146] - }, - "n622": { - "id": "n622", - "loc": [-85.635012, 41.943119] - }, - "n623": { - "id": "n623", - "loc": [-85.632409, 41.944222] - }, - "w137": { - "tags": { - "highway": "residential", - "name": "Foster Street" - }, - "id": "w137", - "nodes": [ - "n2779", - "n2788", - "n2776", - "n2778", - "n2775", - "n2787", - "n2440", - "n2437", - "n629", - "n2438", - "n630", - "n2439", - "n2407", - "n2408", - "n2409" - ] - }, - "n624": { - "id": "n624", - "loc": [-85.631863, 41.944749] - }, - "w138": { - "id": "w138", - "nodes": ["n2779", "n625", "n626", "n627"], - "tags": { - "highway": "residential", - "name": "Foster Street", - "oneway": "yes" - } - }, - "n625": { - "loc": [-85.631915, 41.944722], - "id": "n625" - }, - "n626": { - "loc": [-85.631884, 41.94464], - "id": "n626" - }, - "n627": { - "loc": [-85.631792, 41.944359], - "id": "n627" - }, - "n628": { - "id": "n628", - "loc": [-85.631817, 41.944703] - }, - "n629": { - "id": "n629", - "loc": [-85.633464, 41.945787] - }, - "n630": { - "id": "n630", - "loc": [-85.633583, 41.945919] - }, - "w139": { - "id": "w139", - "nodes": ["n630", "n631", "n632", "n2437"], - "tags": { - "highway": "service" - } - }, - "n631": { - "loc": [-85.63382, 41.945698], - "id": "n631" - }, - "n632": { - "loc": [-85.633681, 41.945571], - "id": "n632" - }, - "n633": { - "id": "n633", - "loc": [-85.634217, 41.946824] - }, - "n634": { - "id": "n634", - "loc": [-85.634271, 41.946836] - }, - "n635": { - "id": "n635", - "loc": [-85.634319, 41.94573] - }, - "n636": { - "id": "n636", - "loc": [-85.634377, 41.945672] - }, - "n637": { - "loc": [-85.634909, 41.945354], - "id": "n637" - }, - "w140": { - "id": "w140", - "nodes": ["n643", "n637", "n715", "n2410"], - "tags": { - "highway": "footway", - "name": "Mural Mall" - } - }, - "n638": { - "loc": [-85.634726, 41.945493], - "id": "n638", - "tags": { - "tourism": "artwork", - "artwork_type": "mural" - } - }, - "n639": { - "loc": [-85.63546, 41.945612], - "id": "n639" - }, - "w141": { - "id": "w141", - "nodes": ["n639", "n2516"], - "tags": { - "barrier": "wall" - } - }, - "n640": { - "loc": [-85.635561, 41.945493], - "id": "n640" - }, - "w142": { - "id": "w142", - "nodes": ["n640", "n641", "n645", "n642", "n660", "n643", "n644"], - "tags": { - "highway": "service" - } - }, - "n641": { - "loc": [-85.635417, 41.945565], - "id": "n641" - }, - "n642": { - "loc": [-85.635315, 41.945583], - "id": "n642" - }, - "n643": { - "loc": [-85.63506, 41.945383], - "id": "n643" - }, - "n644": { - "loc": [-85.635198, 41.945199], - "id": "n644" - }, - "n645": { - "id": "n645", - "loc": [-85.635361, 41.94558] - }, - "n646": { - "loc": [-85.635017, 41.945066], - "id": "n646" - }, - "w143": { - "id": "w143", - "nodes": ["n646", "n647"], - "tags": { - "highway": "service" - } - }, - "n647": { - "loc": [-85.634779, 41.945206], - "id": "n647" - }, - "n648": { - "loc": [-85.63425, 41.945655], - "id": "n648" - }, - "n649": { - "id": "n649", - "loc": [-85.634247, 41.945631] - }, - "n650": { - "id": "n650", - "loc": [-85.634889, 41.945921] - }, - "n651": { - "id": "n651", - "loc": [-85.634889, 41.945939] - }, - "n652": { - "id": "n652", - "loc": [-85.634889, 41.945761] - }, - "n653": { - "id": "n653", - "loc": [-85.634889, 41.945778] - }, - "n654": { - "loc": [-85.635112, 41.945715], - "id": "n654" - }, - "w144": { - "id": "w144", - "nodes": ["n654", "n655", "n656"], - "tags": { - "barrier": "wall" - } - }, - "n655": { - "loc": [-85.635025, 41.945714], - "id": "n655" - }, - "n656": { - "loc": [-85.635027, 41.945761], - "id": "n656" - }, - "n657": { - "id": "n657", - "loc": [-85.635438, 41.945665] - }, - "n658": { - "id": "n658", - "loc": [-85.635416, 41.945676] - }, - "n659": { - "id": "n659", - "loc": [-85.635401, 41.945709] - }, - "n660": { - "id": "n660", - "loc": [-85.635271, 41.945566] - }, - "n661": { - "id": "n661", - "loc": [-85.636106, 41.946268] - }, - "n662": { - "id": "n662", - "loc": [-85.635867, 41.946747] - }, - "n663": { - "id": "n663", - "loc": [-85.636476, 41.946797] - }, - "n664": { - "id": "n664", - "loc": [-85.63651, 41.946796] - }, - "n665": { - "loc": [-85.635367, 41.946389], - "id": "n665" - }, - "w145": { - "id": "w145", - "nodes": ["n665", "n666", "n667"], - "tags": { - "barrier": "wall" - } - }, - "n666": { - "loc": [-85.635367, 41.946437], - "id": "n666" - }, - "n667": { - "loc": [-85.634787, 41.946441], - "id": "n667" - }, - "w146": { - "tags": { - "highway": "service", - "service": "parking_aisle", - "oneway": "yes" - }, - "id": "w146", - "nodes": ["n2727", "n662", "n2719"] - }, - "n668": { - "loc": [-85.6358, 41.946243], - "id": "n668" - }, - "n669": { - "id": "n669", - "loc": [-85.635784, 41.94622] - }, - "n670": { - "id": "n670", - "loc": [-85.635727, 41.946195] - }, - "n671": { - "id": "n671", - "loc": [-85.635708, 41.946588] - }, - "n672": { - "id": "n672", - "loc": [-85.635648, 41.946561] - }, - "n673": { - "id": "n673", - "loc": [-85.635624, 41.946555] - }, - "w147": { - "id": "w147", - "nodes": ["n2725", "n674"], - "tags": { - "highway": "service", - "oneway": "yes" - } - }, - "n674": { - "loc": [-85.635417, 41.946559], - "id": "n674" - }, - "n675": { - "id": "n675", - "loc": [-85.634866, 41.946561] - }, - "n676": { - "id": "n676", - "loc": [-85.634866, 41.946543] - }, - "n677": { - "id": "n677", - "loc": [-85.635085, 41.946546] - }, - "n678": { - "id": "n678", - "loc": [-85.635085, 41.946554] - }, - "n679": { - "id": "n679", - "loc": [-85.634584, 41.94488] - }, - "n680": { - "id": "n680", - "loc": [-85.634557, 41.944882] - }, - "n681": { - "id": "n681", - "loc": [-85.634455, 41.944943] - }, - "n682": { - "id": "n682", - "loc": [-85.634305, 41.944968] - }, - "n683": { - "id": "n683", - "loc": [-85.634261, 41.944927] - }, - "w148": { - "tags": { - "building": "yes" - }, - "id": "w148", - "nodes": ["n2464", "n2460", "n2454", "n684", "n2455", "n2464"] - }, - "n684": { - "loc": [-85.634132, 41.944741], - "id": "n684" - }, - "w149": { - "tags": { - "building": "yes" - }, - "id": "w149", - "nodes": ["n2456", "n685", "n686", "n687", "n2456"] - }, - "n685": { - "loc": [-85.633705, 41.944759], - "id": "n685" - }, - "n686": { - "loc": [-85.633918, 41.944616], - "id": "n686" - }, - "n687": { - "loc": [-85.633974, 41.944663], - "id": "n687" - }, - "w150": { - "tags": { - "building": "yes" - }, - "id": "w150", - "nodes": ["n685", "n688", "n689", "n690", "n691", "n692", "n686", "n685"] - }, - "n688": { - "loc": [-85.6336, 41.944665], - "id": "n688" - }, - "n689": { - "loc": [-85.633817, 41.944528], - "id": "n689" - }, - "n690": { - "loc": [-85.633889, 41.944485], - "id": "n690" - }, - "n691": { - "loc": [-85.633931, 41.944525], - "id": "n691" - }, - "n692": { - "loc": [-85.633864, 41.944563], - "id": "n692" - }, - "w151": { - "tags": { - "building": "yes" - }, - "id": "w151", - "nodes": ["n688", "n693", "n694", "n689", "n688"] - }, - "n693": { - "loc": [-85.633456, 41.944524], - "id": "n693" - }, - "n694": { - "loc": [-85.633676, 41.944399], - "id": "n694" - }, - "w152": { - "tags": { - "building": "yes" - }, - "id": "w152", - "nodes": ["n693", "n695", "n702", "n696", "n697", "n694", "n693"] - }, - "n695": { - "loc": [-85.633352, 41.944415], - "id": "n695" - }, - "n696": { - "loc": [-85.633655, 41.944234], - "id": "n696" - }, - "n697": { - "loc": [-85.633761, 41.94435], - "id": "n697" - }, - "w153": { - "tags": { - "building": "yes" - }, - "id": "w153", - "nodes": ["n695", "n698", "n699", "n700", "n701", "n702", "n695"] - }, - "n698": { - "loc": [-85.633254, 41.944318], - "id": "n698" - }, - "n699": { - "loc": [-85.633472, 41.944188], - "id": "n699" - }, - "n700": { - "loc": [-85.633524, 41.944237], - "id": "n700" - }, - "n701": { - "loc": [-85.633583, 41.944202], - "id": "n701" - }, - "n702": { - "loc": [-85.633632, 41.944247], - "id": "n702" - }, - "w154": { - "tags": { - "building": "yes" - }, - "id": "w154", - "nodes": ["n698", "n703", "n707", "n704", "n699", "n698"] - }, - "n703": { - "loc": [-85.633165, 41.944228], - "id": "n703" - }, - "n704": { - "loc": [-85.633388, 41.944105], - "id": "n704" - }, - "w155": { - "tags": { - "building": "yes" - }, - "id": "w155", - "nodes": ["n703", "n705", "n706", "n707", "n703"] - }, - "n705": { - "loc": [-85.633117, 41.944175], - "id": "n705" - }, - "n706": { - "loc": [-85.633302, 41.944077], - "id": "n706" - }, - "n707": { - "loc": [-85.633352, 41.944126], - "id": "n707" - }, - "w156": { - "tags": { - "building": "yes" - }, - "id": "w156", - "nodes": ["n705", "n708", "n709", "n706", "n705"] - }, - "n708": { - "loc": [-85.633052, 41.944107], - "id": "n708" - }, - "n709": { - "loc": [-85.633237, 41.944009], - "id": "n709" - }, - "w157": { - "tags": { - "building": "yes" - }, - "id": "w157", - "nodes": ["n709", "n710", "n711", "n708", "n709"] - }, - "n710": { - "loc": [-85.633187, 41.943955], - "id": "n710" - }, - "n711": { - "loc": [-85.633, 41.944054], - "id": "n711" - }, - "w158": { - "id": "w158", - "nodes": ["n369", "n712", "n725", "n713", "n714", "n715", "n727", "n716", "n717", "n718", "n719"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n712": { - "loc": [-85.633155, 41.944265], - "id": "n712" - }, - "n713": { - "loc": [-85.633669, 41.944765], - "id": "n713" - }, - "n714": { - "loc": [-85.634468, 41.945503], - "id": "n714" - }, - "n715": { - "loc": [-85.63455, 41.945566], - "id": "n715" - }, - "n716": { - "loc": [-85.634737, 41.945729], - "id": "n716" - }, - "n717": { - "loc": [-85.634753, 41.945752], - "id": "n717" - }, - "n718": { - "loc": [-85.634756, 41.945781], - "id": "n718" - }, - "n719": { - "loc": [-85.634758, 41.945978], - "id": "n719" - }, - "w159": { - "id": "w159", - "nodes": ["n714", "n720", "n721"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n720": { - "loc": [-85.634363, 41.945548], - "id": "n720", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n721": { - "loc": [-85.634245, 41.945599], - "id": "n721" - }, - "w160": { - "id": "w160", - "nodes": ["n729", "n721", "n722", "n964", "n723", "n724"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n722": { - "loc": [-85.633474, 41.944889], - "id": "n722" - }, - "n723": { - "loc": [-85.632997, 41.944418], - "id": "n723" - }, - "n724": { - "loc": [-85.63278, 41.944183], - "id": "n724" - }, - "n725": { - "id": "n725", - "loc": [-85.63331, 41.944429] - }, - "w161": { - "id": "w161", - "nodes": ["n713", "n726", "n722"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n726": { - "loc": [-85.633575, 41.944824], - "id": "n726", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n727": { - "loc": [-85.634669, 41.94567], - "id": "n727" - }, - "w162": { - "id": "w162", - "nodes": ["n727", "n2411", "n728"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n728": { - "loc": [-85.634462, 41.945787], - "id": "n728" - }, - "n729": { - "loc": [-85.634272, 41.945625], - "id": "n729" - }, - "w163": { - "id": "w163", - "nodes": ["n729", "n730", "n731"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n730": { - "loc": [-85.634344, 41.945699], - "id": "n730", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n731": { - "loc": [-85.634426, 41.945783], - "id": "n731" - }, - "w164": { - "id": "w164", - "nodes": ["n365", "n732", "n733", "n738"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n732": { - "loc": [-85.632425, 41.944137], - "id": "n732" - }, - "n733": { - "loc": [-85.632302, 41.944192], - "id": "n733" - }, - "w165": { - "id": "w165", - "nodes": ["n724", "n734", "n367", "n735", "n736", "n737"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n734": { - "loc": [-85.632762, 41.944174], - "id": "n734" - }, - "n735": { - "loc": [-85.632713, 41.944179], - "id": "n735" - }, - "n736": { - "loc": [-85.632411, 41.944327], - "id": "n736" - }, - "n737": { - "loc": [-85.632362, 41.944341], - "id": "n737" - }, - "n738": { - "loc": [-85.632236, 41.944204], - "id": "n738" - }, - "w166": { - "tags": { - "highway": "footway" - }, - "id": "w166", - "nodes": ["n739", "n2037", "n2038", "n2039", "n2040", "n1623", "n2032"] - }, - "n739": { - "loc": [-85.634939, 41.942165], - "id": "n739" - }, - "n740": { - "id": "n740", - "loc": [-85.635079, 41.941535] - }, - "n741": { - "id": "n741", - "loc": [-85.635112, 41.941595] - }, - "n742": { - "id": "n742", - "loc": [-85.635113, 41.941633] - }, - "n743": { - "id": "n743", - "loc": [-85.635067, 41.941652] - }, - "n744": { - "id": "n744", - "loc": [-85.634989, 41.941651] - }, - "n745": { - "id": "n745", - "loc": [-85.634921, 41.941609] - }, - "n746": { - "id": "n746", - "loc": [-85.634881, 41.941544] - }, - "n747": { - "id": "n747", - "loc": [-85.635537, 41.940939] - }, - "n748": { - "id": "n748", - "loc": [-85.635573, 41.941048] - }, - "n749": { - "id": "n749", - "loc": [-85.635453, 41.94091] - }, - "n750": { - "id": "n750", - "loc": [-85.635319, 41.940943] - }, - "w167": { - "id": "w167", - "nodes": ["n150", "n751"], - "tags": { - "highway": "service" - } - }, - "n751": { - "loc": [-85.637057, 41.943224], - "id": "n751" - }, - "n752": { - "loc": [-85.636989, 41.943296], - "id": "n752" - }, - "w168": { - "tags": { - "building": "yes" - }, - "id": "w168", - "nodes": ["n752", "n753", "n754", "n755", "n752"] - }, - "n753": { - "loc": [-85.636851, 41.943299], - "id": "n753" - }, - "n754": { - "loc": [-85.636848, 41.94322], - "id": "n754" - }, - "n755": { - "loc": [-85.636986, 41.943217], - "id": "n755" - }, - "n756": { - "loc": [-85.637569, 41.943454], - "id": "n756" - }, - "w169": { - "tags": { - "building": "yes" - }, - "id": "w169", - "nodes": ["n756", "n757", "n758", "n759", "n756"] - }, - "n757": { - "loc": [-85.637437, 41.943458], - "id": "n757" - }, - "n758": { - "loc": [-85.637432, 41.943384], - "id": "n758" - }, - "n759": { - "loc": [-85.637564, 41.94338], - "id": "n759" - }, - "n760": { - "loc": [-85.637213, 41.943378], - "id": "n760" - }, - "w170": { - "tags": { - "building": "yes" - }, - "id": "w170", - "nodes": ["n760", "n761", "n762", "n763", "n764", "n765", "n760"] - }, - "n761": { - "loc": [-85.637217, 41.943435], - "id": "n761" - }, - "n762": { - "loc": [-85.637235, 41.943434], - "id": "n762" - }, - "n763": { - "loc": [-85.637237, 41.943465], - "id": "n763" - }, - "n764": { - "loc": [-85.637424, 41.943459], - "id": "n764" - }, - "n765": { - "loc": [-85.637418, 41.943371], - "id": "n765" - }, - "n766": { - "loc": [-85.638094, 41.943149], - "id": "n766" - }, - "w171": { - "tags": { - "building": "yes" - }, - "id": "w171", - "nodes": ["n766", "n767", "n768", "n769", "n770", "n771", "n772", "n773", "n774", "n775", "n776", "n777", "n766"] - }, - "n767": { - "loc": [-85.638096, 41.943201], - "id": "n767" - }, - "n768": { - "loc": [-85.638041, 41.943202], - "id": "n768" - }, - "n769": { - "loc": [-85.638042, 41.943216], - "id": "n769" - }, - "n770": { - "loc": [-85.637927, 41.943218], - "id": "n770" - }, - "n771": { - "loc": [-85.637926, 41.943201], - "id": "n771" - }, - "n772": { - "loc": [-85.637897, 41.943201], - "id": "n772" - }, - "n773": { - "loc": [-85.637896, 41.943155], - "id": "n773" - }, - "n774": { - "loc": [-85.637962, 41.943153], - "id": "n774" - }, - "n775": { - "loc": [-85.637962, 41.943134], - "id": "n775" - }, - "n776": { - "loc": [-85.638017, 41.943132], - "id": "n776" - }, - "n777": { - "loc": [-85.638018, 41.943151], - "id": "n777" - }, - "n778": { - "loc": [-85.638045, 41.943289], - "id": "n778" - }, - "w172": { - "tags": { - "building": "yes" - }, - "id": "w172", - "nodes": ["n778", "n779", "n780", "n781", "n782", "n783", "n784", "n785", "n778"] - }, - "n779": { - "loc": [-85.638048, 41.943363], - "id": "n779" - }, - "n780": { - "loc": [-85.637842, 41.943367], - "id": "n780" - }, - "n781": { - "loc": [-85.637839, 41.943296], - "id": "n781" - }, - "n782": { - "loc": [-85.637896, 41.943295], - "id": "n782" - }, - "n783": { - "loc": [-85.637897, 41.943314], - "id": "n783" - }, - "n784": { - "loc": [-85.637957, 41.943312], - "id": "n784" - }, - "n785": { - "loc": [-85.637957, 41.943291], - "id": "n785" - }, - "n786": { - "loc": [-85.637816, 41.943375], - "id": "n786" - }, - "w173": { - "tags": { - "building": "yes" - }, - "id": "w173", - "nodes": ["n786", "n787", "n788", "n789", "n786"] - }, - "n787": { - "loc": [-85.637815, 41.943416], - "id": "n787" - }, - "n788": { - "loc": [-85.637715, 41.943415], - "id": "n788" - }, - "n789": { - "loc": [-85.637716, 41.943374], - "id": "n789" - }, - "n790": { - "loc": [-85.637912, 41.943545], - "id": "n790" - }, - "w174": { - "tags": { - "building": "yes" - }, - "id": "w174", - "nodes": ["n790", "n791", "n792", "n793", "n794", "n795", "n796", "n797", "n798", "n799", "n800", "n801", "n790"] - }, - "n791": { - "loc": [-85.637909, 41.943479], - "id": "n791" - }, - "n792": { - "loc": [-85.637967, 41.943477], - "id": "n792" - }, - "n793": { - "loc": [-85.637967, 41.94346], - "id": "n793" - }, - "n794": { - "loc": [-85.638077, 41.943457], - "id": "n794" - }, - "n795": { - "loc": [-85.638078, 41.943473], - "id": "n795" - }, - "n796": { - "loc": [-85.638124, 41.943471], - "id": "n796" - }, - "n797": { - "loc": [-85.638126, 41.943514], - "id": "n797" - }, - "n798": { - "loc": [-85.638079, 41.943515], - "id": "n798" - }, - "n799": { - "loc": [-85.638079, 41.943532], - "id": "n799" - }, - "n800": { - "loc": [-85.638028, 41.943534], - "id": "n800" - }, - "n801": { - "loc": [-85.638028, 41.943542], - "id": "n801" - }, - "n802": { - "loc": [-85.638845, 41.942983], - "id": "n802" - }, - "w175": { - "tags": { - "building": "yes" - }, - "id": "w175", - "nodes": ["n802", "n803", "n804", "n805", "n802"] - }, - "n803": { - "loc": [-85.638846, 41.94305], - "id": "n803" - }, - "n804": { - "loc": [-85.638661, 41.943052], - "id": "n804" - }, - "n805": { - "loc": [-85.63866, 41.942984], - "id": "n805" - }, - "n806": { - "loc": [-85.638579, 41.942753], - "id": "n806" - }, - "w176": { - "tags": { - "building": "yes" - }, - "id": "w176", - "nodes": ["n806", "n807", "n808", "n809", "n810", "n811", "n812", "n813", "n814", "n815", "n806"] - }, - "n807": { - "loc": [-85.638445, 41.942755], - "id": "n807" - }, - "n808": { - "loc": [-85.638452, 41.942978], - "id": "n808" - }, - "n809": { - "loc": [-85.638545, 41.942976], - "id": "n809" - }, - "n810": { - "loc": [-85.638543, 41.942935], - "id": "n810" - }, - "n811": { - "loc": [-85.638571, 41.942934], - "id": "n811" - }, - "n812": { - "loc": [-85.63857, 41.942901], - "id": "n812" - }, - "n813": { - "loc": [-85.638611, 41.9429], - "id": "n813" - }, - "n814": { - "loc": [-85.638607, 41.942769], - "id": "n814" - }, - "n815": { - "loc": [-85.63858, 41.94277], - "id": "n815" - }, - "n816": { - "loc": [-85.638597, 41.942614], - "id": "n816" - }, - "w177": { - "id": "w177", - "nodes": ["n816", "n1140", "n817", "n818", "n819", "n820", "n821"], - "tags": { - "highway": "service" - } - }, - "n817": { - "loc": [-85.638601, 41.94273], - "id": "n817" - }, - "n818": { - "loc": [-85.638686, 41.942731], - "id": "n818" - }, - "n819": { - "loc": [-85.638689, 41.942917], - "id": "n819" - }, - "n820": { - "loc": [-85.638558, 41.943018], - "id": "n820" - }, - "n821": { - "loc": [-85.638243, 41.943019], - "id": "n821" - }, - "n822": { - "loc": [-85.637536, 41.943887], - "id": "n822" - }, - "w178": { - "tags": { - "building": "yes" - }, - "id": "w178", - "nodes": ["n822", "n823", "n824", "n825", "n822"] - }, - "n823": { - "loc": [-85.63749, 41.943926], - "id": "n823" - }, - "n824": { - "loc": [-85.63743, 41.943886], - "id": "n824" - }, - "n825": { - "loc": [-85.637476, 41.943847], - "id": "n825" - }, - "n826": { - "id": "n826", - "loc": [-85.637527, 41.943846] - }, - "n827": { - "id": "n827", - "loc": [-85.637141, 41.943728] - }, - "n828": { - "id": "n828", - "loc": [-85.637201, 41.943755] - }, - "n829": { - "id": "n829", - "loc": [-85.636987, 41.943608] - }, - "n830": { - "id": "n830", - "loc": [-85.637441, 41.943807] - }, - "n831": { - "id": "n831", - "loc": [-85.637673, 41.94399] - }, - "n832": { - "id": "n832", - "loc": [-85.637783, 41.944137] - }, - "n833": { - "id": "n833", - "loc": [-85.63845, 41.944333] - }, - "n834": { - "id": "n834", - "loc": [-85.638159, 41.944248] - }, - "n835": { - "id": "n835", - "loc": [-85.637859, 41.94416] - }, - "n836": { - "id": "n836", - "loc": [-85.638685, 41.944542] - }, - "n837": { - "id": "n837", - "loc": [-85.638714, 41.944611] - }, - "n838": { - "id": "n838", - "loc": [-85.638711, 41.944757] - }, - "n839": { - "id": "n839", - "loc": [-85.638774, 41.945069] - }, - "n840": { - "id": "n840", - "loc": [-85.638742, 41.945205] - }, - "n841": { - "loc": [-85.640267, 41.942403], - "id": "n841" - }, - "w179": { - "tags": { - "building": "yes" - }, - "id": "w179", - "nodes": ["n841", "n842", "n843", "n844", "n841"] - }, - "n842": { - "loc": [-85.640154, 41.942404], - "id": "n842" - }, - "n843": { - "loc": [-85.640152, 41.942249], - "id": "n843" - }, - "n844": { - "loc": [-85.640266, 41.942248], - "id": "n844" - }, - "n845": { - "loc": [-85.640366, 41.942599], - "id": "n845" - }, - "w180": { - "id": "w180", - "nodes": ["n845", "n856", "n846"], - "tags": { - "highway": "service" - } - }, - "n846": { - "loc": [-85.640362, 41.942192], - "id": "n846" - }, - "w181": { - "id": "w181", - "nodes": ["n846", "n847", "n848", "n849", "n850", "n851", "n852", "n853", "n854", "n855", "n856"], - "tags": { - "highway": "service", - "service": "drive-through", - "oneway": "yes" - } - }, - "n847": { - "loc": [-85.640146, 41.942191], - "id": "n847" - }, - "n848": { - "loc": [-85.640122, 41.942196], - "id": "n848" - }, - "n849": { - "loc": [-85.640108, 41.942211], - "id": "n849" - }, - "n850": { - "loc": [-85.640101, 41.942236], - "id": "n850" - }, - "n851": { - "loc": [-85.640103, 41.94241], - "id": "n851" - }, - "n852": { - "loc": [-85.64011, 41.942435], - "id": "n852" - }, - "n853": { - "loc": [-85.640126, 41.942445], - "id": "n853" - }, - "n854": { - "loc": [-85.640153, 41.942451], - "id": "n854" - }, - "n855": { - "loc": [-85.640183, 41.942452], - "id": "n855" - }, - "n856": { - "loc": [-85.640364, 41.942452], - "id": "n856" - }, - "n857": { - "loc": [-85.640007, 41.942452], - "id": "n857" - }, - "w182": { - "id": "w182", - "nodes": ["n857", "n858"], - "tags": { - "highway": "service" - } - }, - "n858": { - "loc": [-85.639449, 41.942461], - "id": "n858" - }, - "n859": { - "loc": [-85.640049, 41.942391], - "id": "n859" - }, - "w183": { - "tags": { - "amenity": "parking" - }, - "id": "w183", - "nodes": ["n859", "n860", "n861", "n862", "n859"] - }, - "n860": { - "loc": [-85.640052, 41.942503], - "id": "n860" - }, - "n861": { - "loc": [-85.639575, 41.94251], - "id": "n861" - }, - "n862": { - "loc": [-85.639572, 41.942398], - "id": "n862" - }, - "n863": { - "loc": [-85.638782, 41.942227], - "id": "n863" - }, - "w184": { - "id": "w184", - "nodes": ["n863", "n864", "n867", "n866", "n865"], - "tags": { - "highway": "service" - } - }, - "n864": { - "loc": [-85.63843, 41.942226], - "id": "n864" - }, - "n865": { - "loc": [-85.63823, 41.942183], - "id": "n865" - }, - "n866": { - "id": "n866", - "loc": [-85.638363, 41.942216], - "tags": { - "barrier": "gate" - } - }, - "n867": { - "id": "n867", - "loc": [-85.6384, 41.942223] - }, - "n868": { - "loc": [-85.636042, 41.942797], - "id": "n868" - }, - "n869": { - "loc": [-85.636308, 41.942752], - "id": "n869" - }, - "n870": { - "loc": [-85.636516, 41.942729], - "id": "n870" - }, - "n871": { - "loc": [-85.636782, 41.942712], - "id": "n871" - }, - "n872": { - "loc": [-85.636944, 41.942706], - "id": "n872" - }, - "n873": { - "loc": [-85.63704, 41.942706], - "id": "n873" - }, - "n874": { - "loc": [-85.637237, 41.942703], - "id": "n874" - }, - "n875": { - "loc": [-85.637553, 41.9427], - "id": "n875" - }, - "n876": { - "loc": [-85.638236, 41.942697], - "id": "n876" - }, - "n877": { - "id": "n877", - "loc": [-85.636284, 41.942781] - }, - "n878": { - "id": "n878", - "loc": [-85.636551, 41.942641] - }, - "n879": { - "loc": [-85.633914, 41.943693], - "id": "n879" - }, - "w6": { - "tags": { - "building": "shed" - }, - "id": "w6", - "nodes": ["n879", "n880", "n881", "n882", "n879"] - }, - "n880": { - "loc": [-85.63389, 41.943708], - "id": "n880" - }, - "n881": { - "loc": [-85.633866, 41.943686], - "id": "n881" - }, - "n882": { - "loc": [-85.63389, 41.943671], - "id": "n882" - }, - "n883": { - "loc": [-85.633857, 41.943609], - "id": "n883" - }, - "w185": { - "id": "w185", - "nodes": ["n883", "n884"], - "tags": { - "barrier": "fence" - } - }, - "n884": { - "loc": [-85.634858, 41.944474], - "id": "n884" - }, - "n885": { - "id": "n885", - "loc": [-85.633988, 41.943234] - }, - "n886": { - "loc": [-85.633999, 41.943485], - "id": "n886" - }, - "n887": { - "loc": [-85.634109, 41.943449], - "id": "n887", - "tags": { - "emergency": "fire_hydrant" - } - }, - "w186": { - "tags": { - "highway": "path", - "name": "Riverwalk Trail" - }, - "id": "w186", - "nodes": ["n1954", "n622", "n1955"] - }, - "w187": { - "tags": { - "name": "Riverwalk Trail", - "highway": "steps", - "incline": "up", - "surface": "wood" - }, - "id": "w187", - "nodes": ["n621", "n1954"] - }, - "w188": { - "tags": { - "highway": "path", - "name": "Riverwalk Trail", - "surface": "wood" - }, - "id": "w188", - "nodes": ["n2274", "n2275", "n2276", "n2277", "n2278", "n2279", "n1953", "n621"] - }, - "w189": { - "tags": { - "name": "Riverwalk Trail", - "surface": "wood", - "highway": "steps", - "incline": "down" - }, - "id": "w189", - "nodes": ["n2273", "n2274"] - }, - "n888": { - "loc": [-85.635728, 41.942655], - "id": "n888", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n889": { - "loc": [-85.636499, 41.942845], - "id": "n889", - "tags": { - "man_made": "flagpole" - } - }, - "n890": { - "id": "n890", - "loc": [-85.636197, 41.943073] - }, - "n891": { - "id": "n891", - "loc": [-85.636227, 41.943073] - }, - "n892": { - "loc": [-85.637433, 41.942933], - "id": "n892", - "tags": { - "name": "Pizza Hut", - "cuisine": "pizza", - "amenity": "restaurant", - "addr:housenumber": "401", - "addr:street": "Michigan Avenue", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n893": { - "loc": [-85.637907, 41.942879], - "id": "n893", - "tags": { - "amenity": "car_wash" - } - }, - "w190": { - "id": "w190", - "nodes": ["n821", "n894", "n900", "n903", "n901"], - "tags": { - "highway": "service" - } - }, - "n894": { - "loc": [-85.637661, 41.943018], - "id": "n894" - }, - "n895": { - "loc": [-85.636933, 41.942733], - "id": "n895", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n896": { - "loc": [-85.637661, 41.94304], - "id": "n896" - }, - "w191": { - "tags": { - "amenity": "parking" - }, - "id": "w191", - "nodes": ["n896", "n897", "n898", "n899", "n900", "n894", "n896"] - }, - "n897": { - "loc": [-85.637562, 41.943041], - "id": "n897" - }, - "n898": { - "loc": [-85.637556, 41.942725], - "id": "n898" - }, - "n899": { - "loc": [-85.637656, 41.942724], - "id": "n899" - }, - "n900": { - "loc": [-85.637657, 41.942779], - "id": "n900" - }, - "n901": { - "loc": [-85.637983, 41.942777], - "id": "n901" - }, - "n902": { - "loc": [-85.637982, 41.942616], - "id": "n902" - }, - "n903": { - "loc": [-85.637777, 41.942778], - "id": "n903" - }, - "w192": { - "id": "w192", - "nodes": ["n903", "n904", "n905"], - "tags": { - "highway": "service" - } - }, - "n904": { - "loc": [-85.637775, 41.942699], - "id": "n904" - }, - "n905": { - "loc": [-85.637772, 41.942618], - "id": "n905" - }, - "w193": { - "tags": { - "highway": "service" - }, - "id": "w193", - "nodes": ["n901", "n906", "n902"] - }, - "n906": { - "id": "n906", - "loc": [-85.637982, 41.942698] - }, - "n907": { - "loc": [-85.637941, 41.942378], - "id": "n907", - "tags": { - "shop": "pawnbroker", - "name": "Gem Pawnbroker", - "addr:housenumber": "416", - "addr:street": "Michigan Avenue", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n908": { - "loc": [-85.637515, 41.942394], - "id": "n908", - "tags": { - "shop": "car", - "second_hand": "only" - } - }, - "n909": { - "loc": [-85.638743, 41.942374], - "id": "n909", - "tags": { - "shop": "car_repair", - "name": "William Towing", - "addr:housenumber": "500", - "addr:street": "Michigan Avenue", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093", - "service:vehicle:towing": "yes", - "service:vehicle:tyres": "yes" - } - }, - "n910": { - "loc": [-85.638594, 41.942357], - "id": "n910" - }, - "n911": { - "loc": [-85.634312, 41.943562], - "id": "n911", - "tags": { - "amenity": "cafe", - "cuisine": "coffee_shop", - "name": "L.A.'s Coffee Cafe", - "addr:housenumber": "145", - "addr:street": "Michigan Avenue", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093", - "outdoor_seating": "yes" - } - }, - "n912": { - "loc": [-85.634404, 41.943512], - "id": "n912" - }, - "w194": { - "id": "w194", - "nodes": ["n912", "n913"], - "tags": { - "highway": "footway" - } - }, - "n913": { - "loc": [-85.634391, 41.943519], - "id": "n913", - "tags": { - "entrance": "yes" - } - }, - "n914": { - "loc": [-85.634259, 41.943538], - "id": "n914", - "tags": { - "entrance": "yes" - } - }, - "w195": { - "id": "w195", - "nodes": ["n914", "n915"], - "tags": { - "highway": "footway" - } - }, - "n915": { - "loc": [-85.634247, 41.943528], - "id": "n915" - }, - "n916": { - "loc": [-85.633747, 41.943322], - "id": "n916", - "tags": { - "office": "insurance", - "name": "Preferred Insurance Services", - "addr:housenumber": "132", - "addr:street": "Michigan Avenue", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n917": { - "loc": [-85.63299, 41.943686], - "id": "n917", - "tags": { - "shop": "car_repair", - "name": "Lynn's Garage", - "addr:housenumber": "101", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093", - "service:vehicle:tyres": "yes" - } - }, - "w196": { - "tags": { - "building": "yes" - }, - "id": "w196", - "nodes": ["n2466", "n918", "n919", "n920", "n2466"] - }, - "n918": { - "loc": [-85.633438, 41.944883], - "id": "n918" - }, - "n919": { - "loc": [-85.633265, 41.944983], - "id": "n919" - }, - "n920": { - "loc": [-85.633315, 41.945027], - "id": "n920" - }, - "w197": { - "tags": { - "building": "yes" - }, - "id": "w197", - "nodes": ["n918", "n921", "n922", "n919", "n918"] - }, - "n921": { - "loc": [-85.633376, 41.944827], - "id": "n921" - }, - "n922": { - "loc": [-85.633199, 41.944922], - "id": "n922" - }, - "n923": { - "loc": [-85.633316, 41.944772], - "id": "n923" - }, - "n924": { - "loc": [-85.633147, 41.944867], - "id": "n924" - }, - "w198": { - "tags": { - "building": "yes" - }, - "id": "w198", - "nodes": ["n923", "n925", "n926", "n924", "n923"] - }, - "n925": { - "loc": [-85.633261, 41.944719], - "id": "n925" - }, - "n926": { - "loc": [-85.633096, 41.944812], - "id": "n926" - }, - "w199": { - "tags": { - "building": "yes" - }, - "id": "w199", - "nodes": ["n925", "n927", "n932", "n928", "n929", "n926", "n925"] - }, - "n927": { - "loc": [-85.633191, 41.944645], - "id": "n927" - }, - "n928": { - "loc": [-85.632981, 41.94476], - "id": "n928" - }, - "n929": { - "loc": [-85.633062, 41.94483], - "id": "n929" - }, - "w200": { - "tags": { - "building": "yes" - }, - "id": "w200", - "nodes": ["n927", "n930", "n931", "n932", "n927"] - }, - "n930": { - "loc": [-85.633146, 41.944602], - "id": "n930" - }, - "n931": { - "loc": [-85.632969, 41.944703], - "id": "n931" - }, - "n932": { - "loc": [-85.633008, 41.944745], - "id": "n932" - }, - "w201": { - "tags": { - "building": "yes" - }, - "id": "w201", - "nodes": ["n930", "n933", "n934", "n935", "n931", "n930"] - }, - "n933": { - "loc": [-85.633088, 41.944545], - "id": "n933" - }, - "n934": { - "loc": [-85.632868, 41.944655], - "id": "n934" - }, - "n935": { - "loc": [-85.632941, 41.944718], - "id": "n935" - }, - "w202": { - "tags": { - "building": "yes" - }, - "id": "w202", - "nodes": ["n933", "n936", "n937", "n934", "n933"] - }, - "n936": { - "loc": [-85.633028, 41.944483], - "id": "n936" - }, - "n937": { - "loc": [-85.632817, 41.944605], - "id": "n937" - }, - "w203": { - "tags": { - "building": "yes" - }, - "id": "w203", - "nodes": ["n936", "n938", "n942", "n939", "n954", "n937", "n936"] - }, - "n938": { - "loc": [-85.632923, 41.944373], - "id": "n938" - }, - "n939": { - "loc": [-85.632692, 41.944485], - "id": "n939" - }, - "w204": { - "tags": { - "building": "yes" - }, - "id": "w204", - "nodes": ["n938", "n940", "n941", "n942", "n938"] - }, - "n940": { - "loc": [-85.632871, 41.944316], - "id": "n940" - }, - "n941": { - "loc": [-85.632655, 41.944421], - "id": "n941" - }, - "n942": { - "loc": [-85.632711, 41.944478], - "id": "n942" - }, - "w205": { - "tags": { - "building": "yes" - }, - "id": "w205", - "nodes": ["n940", "n943", "n944", "n941", "n940"] - }, - "n943": { - "loc": [-85.632825, 41.94426], - "id": "n943" - }, - "n944": { - "loc": [-85.632606, 41.944363], - "id": "n944" - }, - "w206": { - "tags": { - "building": "yes" - }, - "id": "w206", - "nodes": ["n943", "n945", "n946", "n947", "n948", "n944", "n943"] - }, - "n945": { - "loc": [-85.63275, 41.94418], - "id": "n945" - }, - "n946": { - "loc": [-85.632588, 41.944256], - "id": "n946" - }, - "n947": { - "loc": [-85.632611, 41.944279], - "id": "n947" - }, - "n948": { - "loc": [-85.632548, 41.944306], - "id": "n948" - }, - "w207": { - "tags": { - "building": "yes" - }, - "id": "w207", - "nodes": ["n944", "n949", "n950", "n951", "n941", "n944"] - }, - "n949": { - "loc": [-85.632512, 41.944406], - "id": "n949" - }, - "n950": { - "loc": [-85.632565, 41.944463], - "id": "n950" - }, - "w208": { - "tags": { - "building": "yes" - }, - "id": "w208", - "nodes": ["n941", "n951", "n952", "n939", "n942", "n941"] - }, - "n951": { - "loc": [-85.632579, 41.944456], - "id": "n951" - }, - "n952": { - "loc": [-85.632634, 41.944518], - "id": "n952" - }, - "w209": { - "tags": { - "building": "yes" - }, - "id": "w209", - "nodes": ["n952", "n953", "n954", "n939", "n952"] - }, - "n953": { - "loc": [-85.632686, 41.944569], - "id": "n953" - }, - "n954": { - "loc": [-85.632745, 41.944537], - "id": "n954" - }, - "w210": { - "tags": { - "building": "yes" - }, - "id": "w210", - "nodes": ["n953", "n955", "n956", "n934", "n937", "n954", "n953"] - }, - "n955": { - "loc": [-85.632659, 41.944587], - "id": "n955" - }, - "n956": { - "loc": [-85.632778, 41.944705], - "id": "n956" - }, - "n957": { - "loc": [-85.632815, 41.944301], - "id": "n957", - "tags": { - "office": "employment_agency", - "name": "Access Point Employment", - "addr:housenumber": "5", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n958": { - "loc": [-85.6332, 41.944174], - "id": "n958", - "tags": { - "shop": "second_hand", - "name": "Paisley Emporium", - "addr:housenumber": "6", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n959": { - "loc": [-85.633578, 41.944568], - "id": "n959", - "tags": { - "shop": "books", - "name": "Lowry's Books", - "addr:housenumber": "22", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n960": { - "loc": [-85.63344, 41.944443], - "id": "n960", - "tags": { - "name": "Paisano's Bar and Grill", - "amenity": "restaurant", - "cuisine": "pizza", - "addr:housenumber": "16", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n961": { - "loc": [-85.633009, 41.944542], - "id": "n961", - "tags": { - "amenity": "cafe", - "name": "Main Street Cafe", - "cuisine": "american", - "internet_access": "yes", - "addr:housenumber": "13", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n962": { - "loc": [-85.633674, 41.944682], - "id": "n962", - "tags": { - "leisure": "fitness_centre", - "name": "Main Street Fitness", - "addr:housenumber": "28", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n963": { - "loc": [-85.633376, 41.944868], - "id": "n963", - "tags": { - "leisure": "fitness_centre", - "name": "Main Street Barbell", - "addr:housenumber": "27", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n964": { - "loc": [-85.633366, 41.944783], - "id": "n964" - }, - "w211": { - "id": "w211", - "nodes": ["n964", "n965"], - "tags": { - "highway": "footway" - } - }, - "n965": { - "loc": [-85.633296, 41.94482], - "id": "n965" - }, - "n966": { - "loc": [-85.633214, 41.94487], - "id": "n966" - }, - "w212": { - "id": "w212", - "nodes": ["n966", "n983", "n967", "n989"], - "tags": { - "highway": "footway" - } - }, - "n967": { - "loc": [-85.633005, 41.944988], - "id": "n967" - }, - "w213": { - "id": "w213", - "nodes": ["n965", "n968", "n969", "n966", "n970", "n971", "n965"], - "tags": { - "highway": "footway" - } - }, - "n968": { - "loc": [-85.633269, 41.944816], - "id": "n968" - }, - "n969": { - "loc": [-85.633215, 41.944842], - "id": "n969" - }, - "n970": { - "loc": [-85.633245, 41.944871], - "id": "n970" - }, - "n971": { - "loc": [-85.633296, 41.944845], - "id": "n971" - }, - "n972": { - "loc": [-85.633254, 41.944845], - "id": "n972", - "tags": { - "natural": "tree" - } - }, - "n973": { - "loc": [-85.633557, 41.945515], - "id": "n973" - }, - "w214": { - "id": "w214", - "nodes": [ - "n973", - "n999", - "n992", - "n974", - "n975", - "n976", - "n993", - "n977", - "n978", - "n979", - "n980", - "n967", - "n981", - "n1000", - "n1001", - "n1002", - "n1003", - "n1004", - "n1005", - "n1006", - "n1007", - "n1008", - "n1009" - ], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n974": { - "loc": [-85.633279, 41.945246], - "id": "n974" - }, - "n975": { - "loc": [-85.63324, 41.945226], - "id": "n975" - }, - "n976": { - "loc": [-85.6332, 41.945213], - "id": "n976" - }, - "n977": { - "loc": [-85.633133, 41.945164], - "id": "n977" - }, - "n978": { - "loc": [-85.63312, 41.945132], - "id": "n978" - }, - "n979": { - "loc": [-85.633095, 41.945081], - "id": "n979" - }, - "n980": { - "loc": [-85.633064, 41.945047], - "id": "n980" - }, - "n981": { - "loc": [-85.632739, 41.944742], - "id": "n981" - }, - "w215": { - "id": "w215", - "nodes": ["n978", "n982", "n983", "n984", "n985", "n986", "n987", "n988", "n981"], - "tags": { - "highway": "footway" - } - }, - "n982": { - "loc": [-85.633281, 41.945026], - "id": "n982" - }, - "n983": { - "loc": [-85.633155, 41.944903], - "id": "n983" - }, - "n984": { - "loc": [-85.633079, 41.944829], - "id": "n984" - }, - "n985": { - "loc": [-85.63304, 41.944853], - "id": "n985" - }, - "n986": { - "loc": [-85.632949, 41.944776], - "id": "n986" - }, - "n987": { - "loc": [-85.632921, 41.944725], - "id": "n987" - }, - "n988": { - "loc": [-85.632859, 41.944673], - "id": "n988" - }, - "n989": { - "loc": [-85.632895, 41.94505], - "id": "n989" - }, - "w216": { - "id": "w216", - "nodes": ["n976", "n990", "n991", "n992"], - "tags": { - "highway": "footway" - } - }, - "n990": { - "loc": [-85.633336, 41.945138], - "id": "n990" - }, - "n991": { - "loc": [-85.633466, 41.945265], - "id": "n991" - }, - "n992": { - "loc": [-85.633367, 41.945327], - "id": "n992" - }, - "n993": { - "id": "n993", - "loc": [-85.633163, 41.945189] - }, - "n994": { - "id": "n994", - "loc": [-85.633678, 41.945309] - }, - "n995": { - "id": "n995", - "loc": [-85.633619, 41.945261] - }, - "n996": { - "id": "n996", - "loc": [-85.63355, 41.945301] - }, - "n997": { - "id": "n997", - "loc": [-85.633607, 41.945352] - }, - "n998": { - "loc": [-85.633579, 41.945327], - "id": "n998", - "tags": { - "entrance": "yes" - } - }, - "w217": { - "id": "w217", - "nodes": ["n998", "n999"], - "tags": { - "highway": "footway" - } - }, - "n999": { - "loc": [-85.633445, 41.945404], - "id": "n999" - }, - "n1000": { - "loc": [-85.632699, 41.944763], - "id": "n1000" - }, - "n1001": { - "loc": [-85.632685, 41.944763], - "id": "n1001" - }, - "n1002": { - "loc": [-85.632673, 41.944755], - "id": "n1002" - }, - "n1003": { - "loc": [-85.632595, 41.944682], - "id": "n1003" - }, - "n1004": { - "loc": [-85.632576, 41.944673], - "id": "n1004" - }, - "n1005": { - "loc": [-85.632551, 41.944667], - "id": "n1005" - }, - "n1006": { - "loc": [-85.63253, 41.944667], - "id": "n1006" - }, - "n1007": { - "loc": [-85.632502, 41.944669], - "id": "n1007" - }, - "n1008": { - "loc": [-85.632483, 41.944677], - "id": "n1008" - }, - "n1009": { - "loc": [-85.632383, 41.944731], - "id": "n1009" - }, - "n1010": { - "loc": [-85.63349, 41.944976], - "id": "n1010", - "tags": { - "shop": "paint", - "name": "Sherwin-Williams", - "addr:housenumber": "31", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1011": { - "loc": [-85.633548, 41.945034], - "id": "n1011", - "tags": { - "shop": "jewelry", - "name": "Unique Jewelry", - "addr:housenumber": "33", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1012": { - "loc": [-85.633683, 41.945129], - "id": "n1012", - "tags": { - "shop": "gift", - "name": "World Fare", - "addr:housenumber": "37", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1013": { - "loc": [-85.634563, 41.945469], - "id": "n1013", - "tags": { - "shop": "frame", - "name": "Golden Finch Framing", - "addr:housenumber": "62", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1014": { - "loc": [-85.634469, 41.945379], - "id": "n1014", - "tags": { - "shop": "second_hand", - "name": "Dollar Tree", - "addr:housenumber": "58", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1015": { - "loc": [-85.634227, 41.945159], - "id": "n1015", - "tags": { - "amenity": "theatre", - "name": "Riviera Theatre", - "addr:housenumber": "48", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1016": { - "loc": [-85.634057, 41.945012], - "id": "n1016", - "tags": { - "shop": "appliance", - "name": "River City Appliance", - "addr:housenumber": "42", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1017": { - "loc": [-85.633879, 41.945325], - "id": "n1017", - "tags": { - "shop": "tattoo", - "name": "Paparazzi Tattoo", - "addr:housenumber": "45", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1018": { - "loc": [-85.634914, 41.945839], - "id": "n1018", - "tags": { - "amenity": "bank", - "name": "Southern Michigan Bank", - "addr:housenumber": "88", - "addr:street": "Main Street", - "addr:city": "Three Rivers", - "addr:state": "MI", - "addr:postcode": "49093" - } - }, - "n1019": { - "loc": [-85.634514, 41.946176], - "id": "n1019" - }, - "w218": { - "id": "w218", - "nodes": ["n1019", "n1020", "n1021", "n1022", "n731", "n728", "n1023", "n1025", "n1024", "n1019"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1020": { - "loc": [-85.634087, 41.946178], - "id": "n1020" - }, - "n1021": { - "loc": [-85.634357, 41.945805], - "id": "n1021" - }, - "n1022": { - "loc": [-85.634389, 41.945788], - "id": "n1022" - }, - "n1023": { - "loc": [-85.634491, 41.94581], - "id": "n1023" - }, - "n1024": { - "loc": [-85.634513, 41.945853], - "id": "n1024" - }, - "n1025": { - "id": "n1025", - "loc": [-85.634506, 41.94583] - }, - "w219": { - "id": "w219", - "nodes": ["n719", "n1026", "n1027"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n1026": { - "loc": [-85.634762, 41.946056], - "id": "n1026", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "n1027": { - "loc": [-85.634767, 41.946172], - "id": "n1027" - }, - "w220": { - "id": "w220", - "nodes": ["n1027", "n1028", "n1019"], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - } - }, - "n1028": { - "loc": [-85.634622, 41.946175], - "id": "n1028", - "tags": { - "highway": "crossing", - "crossing": "zebra" - } - }, - "w221": { - "tags": { - "highway": "tertiary", - "name": "Constantine Street" - }, - "id": "w221", - "nodes": ["n2080", "n1828", "n1863", "n1829"] - }, - "w225": { - "id": "w225", - "nodes": [ - "n2134", - "n2127", - "n2313", - "n2109", - "n2112", - "n2129", - "n2156", - "n2146", - "n2126", - "n2153", - "n2288", - "n2283", - "n2284", - "n2131", - "n2286", - "n2287", - "n2285", - "n2132", - "n2140", - "n2289", - "n2122", - "n2114", - "n2149", - "n2119", - "n2106", - "n2111", - "n2145", - "n2113", - "n2117", - "n2159", - "n2143", - "n2123", - "n2142", - "n2116", - "n2154", - "n2139", - "n2150", - "n2157", - "n2120", - "n2138", - "n2130", - "n2136", - "n2155", - "n2107", - "n2141", - "n2124", - "n3754", - "n2121", - "n2105", - "n2108", - "n3755", - "n2128", - "n2110", - "n2152", - "n2125", - "n2135", - "n2186", - "n2115", - "n2144", - "n2137", - "n2133", - "n2148", - "n2118", - "n1871", - "n1875", - "n1872", - "n2041", - "n1873", - "n2042", - "n1874", - "n1884", - "n1870", - "n2151", - "n2147", - "n2158", - "n2104", - "n2134" - ] - }, - "r2": { - "tags": { - "waterway": "riverbank", - "type": "multipolygon" - }, - "members": [{ - "id": "w225", "role": "outer", "type": "way" - }], - "id": "r2" - }, - "w226": { - "tags": { - "highway": "path", - "name": "Riverwalk Trail", - "surface": "asphalt", - "width": "3" - }, - "id": "w226", - "nodes": [ - "n2243", - "n2280", - "n2244", - "n2245", - "n2246", - "n2247", - "n1931", - "n1932", - "n1933", - "n1934", - "n1935", - "n1936", - "n1937", - "n1938", - "n1939", - "n1940", - "n1941", - "n1942", - "n1943", - "n1944", - "n1945", - "n1946", - "n1947" - ] - }, - "w227": { - "tags": { - "highway": "secondary", - "name": "Main Street" - }, - "id": "w227", - "nodes": ["n2994", "n3012", "n3011", "n2958"] - }, - "w228": { - "tags": { - "highway": "primary", - "name": "Main Street" - }, - "id": "w228", - "nodes": [ - "n2747", - "n2762", - "n2757", - "n2746", - "n2761", - "n2758", - "n2760", - "n2755", - "n2749", - "n2691", - "n1028", - "n2432", - "n2414", - "n2413", - "n2412", - "n2411", - "n2410", - "n720", - "n726", - "n370", - "n368", - "n2748" - ] - }, - "w229": { - "tags": { - "name": "Conrail Railroad", - "railway": "rail" - }, - "id": "w229", - "nodes": ["n2083", "n2103", "n2102", "n2084", "n2085", "n2086", "n2087", "n2242", "n471", "n324", "n2101", "n332", "n1868"] - }, - "n1032": { - "loc": [-85.630957, 41.960953], - "id": "n1032" - }, - "n1033": { - "loc": [-85.632178, 41.960694], - "id": "n1033" - }, - "w230": { - "tags": { - "name": "Saint Joseph River", - "waterway": "river" - }, - "id": "w230", - "nodes": [ - "n2232", - "n2236", - "n2231", - "n2230", - "n2226", - "n2241", - "n2237", - "n2227", - "n1182", - "n2233", - "n2228", - "n2229", - "n1183", - "n2234", - "n19", - "n1891", - "n20", - "n2223", - "n2224", - "n2238", - "n2235", - "n2240", - "n2225", - "n2239" - ] - }, - "n7": { - "loc": [-85.638791, 41.943231], - "id": "n7" - }, - "w4": { - "tags": { - "building": "yes" - }, - "id": "w4", - "nodes": ["n7", "n38", "n378", "n379", "n7"] - }, - "n38": { - "loc": [-85.63879, 41.943295], - "id": "n38" - }, - "n378": { - "loc": [-85.638683, 41.943295], - "id": "n378" - }, - "n379": { - "loc": [-85.638684, 41.94323], - "id": "n379" - }, - "n380": { - "loc": [-85.638627, 41.94322], - "id": "n380" - }, - "w5": { - "tags": { - "building": "yes" - }, - "id": "w5", - "nodes": ["n380", "n381", "n382", "n383", "n429", "n430", "n380"] - }, - "n381": { - "loc": [-85.638624, 41.943294], - "id": "n381" - }, - "n382": { - "loc": [-85.638437, 41.943291], - "id": "n382" - }, - "n383": { - "loc": [-85.63844, 41.943209], - "id": "n383" - }, - "n429": { - "loc": [-85.638577, 41.943212], - "id": "n429" - }, - "n430": { - "loc": [-85.638576, 41.943219], - "id": "n430" - }, - "n431": { - "loc": [-85.638653, 41.943078], - "id": "n431" - }, - "w85": { - "tags": { - "building": "yes" - }, - "id": "w85", - "nodes": ["n431", "n432", "n1038", "n433", "n434", "n1040", "n431"] - }, - "n432": { - "loc": [-85.638654, 41.943148], - "id": "n432" - }, - "n433": { - "loc": [-85.638387, 41.943151], - "id": "n433" - }, - "n434": { - "loc": [-85.638386, 41.94308], - "id": "n434" - }, - "n456": { - "loc": [-85.638854, 41.943104], - "id": "n456" - }, - "w96": { - "tags": { - "building": "yes" - }, - "id": "w96", - "nodes": ["n456", "n620", "n1034", "n1035", "n456"] - }, - "n620": { - "loc": [-85.638786, 41.943105], - "id": "n620" - }, - "n1034": { - "loc": [-85.638785, 41.943066], - "id": "n1034" - }, - "n1035": { - "loc": [-85.638853, 41.943065], - "id": "n1035" - }, - "w231": { - "id": "w231", - "nodes": ["n456", "n1036", "n1037", "n1038"], - "tags": { - "barrier": "wall" - } - }, - "n1036": { - "loc": [-85.638855, 41.943183], - "id": "n1036" - }, - "n1037": { - "loc": [-85.638552, 41.943189], - "id": "n1037" - }, - "n1038": { - "loc": [-85.63855, 41.943149], - "id": "n1038" - }, - "w232": { - "id": "w232", - "nodes": ["n1034", "n1039", "n1040"], - "tags": { - "barrier": "wall" - } - }, - "n1039": { - "loc": [-85.638638, 41.943068], - "id": "n1039" - }, - "n1040": { - "loc": [-85.638638, 41.943078], - "id": "n1040" - }, - "n1041": { - "loc": [-85.638813, 41.943163], - "id": "n1041" - }, - "w233": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w233", - "nodes": ["n1041", "n1042", "n1043", "n1044", "n1045", "n1046", "n1041"] - }, - "n1042": { - "loc": [-85.638684, 41.943165], - "id": "n1042" - }, - "n1043": { - "loc": [-85.638682, 41.943105], - "id": "n1043" - }, - "n1044": { - "loc": [-85.638706, 41.943105], - "id": "n1044" - }, - "n1045": { - "loc": [-85.638707, 41.943117], - "id": "n1045" - }, - "n1046": { - "loc": [-85.638812, 41.943115], - "id": "n1046" - }, - "n1047": { - "loc": [-85.638769, 41.943407], - "id": "n1047" - }, - "w234": { - "id": "w234", - "nodes": ["n1047", "n1048"], - "tags": { - "barrier": "hedge" - } - }, - "n1048": { - "loc": [-85.638549, 41.943407], - "id": "n1048" - }, - "n1049": { - "loc": [-85.638567, 41.943555], - "id": "n1049" - }, - "w235": { - "tags": { - "building": "yes" - }, - "id": "w235", - "nodes": ["n1049", "n1050", "n1051", "n1052", "n1049"] - }, - "n1050": { - "loc": [-85.638426, 41.943554], - "id": "n1050" - }, - "n1051": { - "loc": [-85.638427, 41.94346], - "id": "n1051" - }, - "n1052": { - "loc": [-85.638568, 41.943461], - "id": "n1052" - }, - "n1053": { - "loc": [-85.639264, 41.943415], - "id": "n1053" - }, - "w236": { - "tags": { - "building": "yes" - }, - "id": "w236", - "nodes": ["n1053", "n1054", "n1055", "n1056", "n1057", "n1058", "n1059", "n1060", "n1053"] - }, - "n1054": { - "loc": [-85.639082, 41.943417], - "id": "n1054" - }, - "n1055": { - "loc": [-85.63908, 41.943331], - "id": "n1055" - }, - "n1056": { - "loc": [-85.639136, 41.94333], - "id": "n1056" - }, - "n1057": { - "loc": [-85.639158, 41.943312], - "id": "n1057" - }, - "n1058": { - "loc": [-85.639188, 41.943313], - "id": "n1058" - }, - "n1059": { - "loc": [-85.639211, 41.943331], - "id": "n1059" - }, - "n1060": { - "loc": [-85.639262, 41.943331], - "id": "n1060" - }, - "n1061": { - "loc": [-85.638986, 41.943515], - "id": "n1061" - }, - "w237": { - "tags": { - "building": "yes" - }, - "id": "w237", - "nodes": ["n1061", "n1062", "n1063", "n1064", "n1065", "n1061"] - }, - "n1062": { - "loc": [-85.63888, 41.943521], - "id": "n1062" - }, - "n1063": { - "loc": [-85.638871, 41.943436], - "id": "n1063" - }, - "n1064": { - "loc": [-85.638958, 41.943431], - "id": "n1064" - }, - "n1065": { - "loc": [-85.638979, 41.943443], - "id": "n1065" - }, - "n1066": { - "loc": [-85.63926, 41.943703], - "id": "n1066" - }, - "w238": { - "tags": { - "building": "yes" - }, - "id": "w238", - "nodes": ["n1066", "n1067", "n1068", "n1069", "n1070", "n1071", "n1066"] - }, - "n1067": { - "loc": [-85.639152, 41.943704], - "id": "n1067" - }, - "n1068": { - "loc": [-85.639152, 41.943691], - "id": "n1068" - }, - "n1069": { - "loc": [-85.639063, 41.943691], - "id": "n1069" - }, - "n1070": { - "loc": [-85.639062, 41.943613], - "id": "n1070" - }, - "n1071": { - "loc": [-85.639259, 41.943611], - "id": "n1071" - }, - "n1072": { - "loc": [-85.639117, 41.943726], - "id": "n1072" - }, - "w239": { - "tags": { - "building": "yes" - }, - "id": "w239", - "nodes": ["n1072", "n1073", "n1074", "n1075", "n1072"] - }, - "n1073": { - "loc": [-85.639118, 41.943767], - "id": "n1073" - }, - "n1074": { - "loc": [-85.639051, 41.943768], - "id": "n1074" - }, - "n1075": { - "loc": [-85.63905, 41.943727], - "id": "n1075" - }, - "n1076": { - "loc": [-85.638627, 41.943716], - "id": "n1076" - }, - "w240": { - "tags": { - "building": "yes" - }, - "id": "w240", - "nodes": ["n1076", "n1077", "n1078", "n1079", "n1080", "n1081", "n1076"] - }, - "n1077": { - "loc": [-85.63863, 41.943634], - "id": "n1077" - }, - "n1078": { - "loc": [-85.63844, 41.943631], - "id": "n1078" - }, - "n1079": { - "loc": [-85.638437, 41.943729], - "id": "n1079" - }, - "n1080": { - "loc": [-85.638533, 41.94373], - "id": "n1080" - }, - "n1081": { - "loc": [-85.638534, 41.943715], - "id": "n1081" - }, - "n1082": { - "loc": [-85.638678, 41.943941], - "id": "n1082" - }, - "w241": { - "tags": { - "building": "yes" - }, - "id": "w241", - "nodes": ["n1082", "n1083", "n1084", "n1085", "n1082"] - }, - "n1083": { - "loc": [-85.638522, 41.943944], - "id": "n1083" - }, - "n1084": { - "loc": [-85.63852, 41.943864], - "id": "n1084" - }, - "n1085": { - "loc": [-85.638676, 41.943861], - "id": "n1085" - }, - "n1086": { - "loc": [-85.638663, 41.944059], - "id": "n1086" - }, - "w242": { - "tags": { - "building": "yes" - }, - "id": "w242", - "nodes": ["n1086", "n1087", "n1088", "n1089", "n1086"] - }, - "n1087": { - "loc": [-85.638513, 41.944061], - "id": "n1087" - }, - "n1088": { - "loc": [-85.638511, 41.943991], - "id": "n1088" - }, - "n1089": { - "loc": [-85.638661, 41.943989], - "id": "n1089" - }, - "n1090": { - "loc": [-85.63865, 41.944134], - "id": "n1090" - }, - "w243": { - "tags": { - "building": "yes" - }, - "id": "w243", - "nodes": ["n1090", "n1091", "n1092", "n1093", "n1094", "n1095", "n1096", "n1097", "n1090"] - }, - "n1091": { - "loc": [-85.638429, 41.944144], - "id": "n1091" - }, - "n1092": { - "loc": [-85.638426, 41.944106], - "id": "n1092" - }, - "n1093": { - "loc": [-85.638476, 41.944104], - "id": "n1093" - }, - "n1094": { - "loc": [-85.638475, 41.94409], - "id": "n1094" - }, - "n1095": { - "loc": [-85.638594, 41.944084], - "id": "n1095" - }, - "n1096": { - "loc": [-85.638595, 41.944101], - "id": "n1096" - }, - "n1097": { - "loc": [-85.638647, 41.944099], - "id": "n1097" - }, - "n1098": { - "loc": [-85.63829, 41.944154], - "id": "n1098" - }, - "w244": { - "id": "w244", - "nodes": ["n1098", "n1099", "n1100", "n1101"], - "tags": { - "barrier": "fence" - } - }, - "n1099": { - "loc": [-85.638558, 41.944155], - "id": "n1099" - }, - "n1100": { - "loc": [-85.638558, 41.944338], - "id": "n1100" - }, - "n1101": { - "loc": [-85.638851, 41.944408], - "id": "n1101" - }, - "n1102": { - "loc": [-85.637771, 41.943989], - "id": "n1102" - }, - "w245": { - "tags": { - "highway": "service" - }, - "id": "w245", - "nodes": [ - "n1102", - "n835", - "n30", - "n2590", - "n35", - "n29", - "n2591", - "n34", - "n28", - "n2592", - "n2312", - "n32", - "n2593", - "n31", - "n33", - "n2594", - "n2595", - "n1102" - ] - }, - "n1103": { - "loc": [-85.639345, 41.943964], - "id": "n1103" - }, - "w246": { - "id": "w246", - "nodes": ["n1103", "n1139", "n1104"], - "tags": { - "barrier": "fence" - } - }, - "n1104": { - "loc": [-85.638515, 41.94397], - "id": "n1104" - }, - "n1105": { - "loc": [-85.639256, 41.943928], - "id": "n1105" - }, - "w247": { - "tags": { - "building": "yes" - }, - "id": "w247", - "nodes": ["n1105", "n1106", "n1107", "n1108", "n1109", "n1110", "n1111", "n1112", "n1113", "n1114", "n1105"] - }, - "n1106": { - "loc": [-85.639157, 41.943929], - "id": "n1106" - }, - "n1107": { - "loc": [-85.639156, 41.9439], - "id": "n1107" - }, - "n1108": { - "loc": [-85.639118, 41.9439], - "id": "n1108" - }, - "n1109": { - "loc": [-85.639116, 41.94382], - "id": "n1109" - }, - "n1110": { - "loc": [-85.639202, 41.943819], - "id": "n1110" - }, - "n1111": { - "loc": [-85.639202, 41.943837], - "id": "n1111" - }, - "n1112": { - "loc": [-85.639293, 41.943836], - "id": "n1112" - }, - "n1113": { - "loc": [-85.639295, 41.943898], - "id": "n1113" - }, - "n1114": { - "loc": [-85.639255, 41.943898], - "id": "n1114" - }, - "n1115": { - "loc": [-85.639296, 41.944083], - "id": "n1115" - }, - "w248": { - "tags": { - "building": "yes" - }, - "id": "w248", - "nodes": ["n1115", "n1116", "n1117", "n1118", "n1119", "n1120", "n1115"] - }, - "n1116": { - "loc": [-85.639144, 41.944084], - "id": "n1116" - }, - "n1117": { - "loc": [-85.639143, 41.944026], - "id": "n1117" - }, - "n1118": { - "loc": [-85.639162, 41.944026], - "id": "n1118" - }, - "n1119": { - "loc": [-85.639162, 41.944], - "id": "n1119" - }, - "n1120": { - "loc": [-85.639295, 41.943999], - "id": "n1120" - }, - "n1121": { - "loc": [-85.639131, 41.944139], - "id": "n1121" - }, - "w249": { - "tags": { - "building": "yes" - }, - "id": "w249", - "nodes": ["n1121", "n1122", "n1123", "n1124", "n1121"] - }, - "n1122": { - "loc": [-85.63901, 41.94414], - "id": "n1122" - }, - "n1123": { - "loc": [-85.63901, 41.944076], - "id": "n1123" - }, - "n1124": { - "loc": [-85.63913, 41.944075], - "id": "n1124" - }, - "n1125": { - "loc": [-85.639092, 41.944155], - "id": "n1125" - }, - "w250": { - "tags": { - "building": "yes" - }, - "id": "w250", - "nodes": ["n1125", "n1126", "n1127", "n1128", "n1129", "n1130", "n1131", "n1132", "n1133", "n1134", "n1135", "n1136", "n1125"] - }, - "n1126": { - "loc": [-85.639093, 41.944308], - "id": "n1126" - }, - "n1127": { - "loc": [-85.639225, 41.944308], - "id": "n1127" - }, - "n1128": { - "loc": [-85.639225, 41.94429], - "id": "n1128" - }, - "n1129": { - "loc": [-85.639253, 41.944289], - "id": "n1129" - }, - "n1130": { - "loc": [-85.639253, 41.944269], - "id": "n1130" - }, - "n1131": { - "loc": [-85.639243, 41.944269], - "id": "n1131" - }, - "n1132": { - "loc": [-85.639243, 41.944229], - "id": "n1132" - }, - "n1133": { - "loc": [-85.639224, 41.944229], - "id": "n1133" - }, - "n1134": { - "loc": [-85.639224, 41.944196], - "id": "n1134" - }, - "n1135": { - "loc": [-85.639195, 41.944196], - "id": "n1135" - }, - "n1136": { - "loc": [-85.639195, 41.944155], - "id": "n1136" - }, - "n1137": { - "loc": [-85.639072, 41.944154], - "id": "n1137" - }, - "w251": { - "id": "w251", - "nodes": ["n1137", "n1138", "n1139"], - "tags": { - "barrier": "fence" - } - }, - "n1138": { - "loc": [-85.638865, 41.944154], - "id": "n1138" - }, - "n1139": { - "loc": [-85.638863, 41.943967], - "id": "n1139" - }, - "w252": { - "id": "w252", - "nodes": ["n876", "n1140", "n1141"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1140": { - "loc": [-85.6386, 41.942698], - "id": "n1140" - }, - "n1141": { - "loc": [-85.639348, 41.942698], - "id": "n1141" - }, - "w253": { - "id": "w253", - "nodes": ["n1141", "n1142", "n1143", "n1144", "n1145", "n1146"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1142": { - "loc": [-85.639377, 41.944984], - "id": "n1142" - }, - "n1143": { - "loc": [-85.63937, 41.945013], - "id": "n1143" - }, - "n1144": { - "loc": [-85.639357, 41.945033], - "id": "n1144" - }, - "n1145": { - "loc": [-85.639353, 41.945053], - "id": "n1145" - }, - "n1146": { - "loc": [-85.639352, 41.945084], - "id": "n1146" - }, - "w254": { - "id": "w254", - "nodes": ["n1146", "n1147", "n1148"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1147": { - "loc": [-85.638278, 41.945516], - "id": "n1147" - }, - "n1148": { - "loc": [-85.637505, 41.945801], - "id": "n1148" - }, - "w255": { - "id": "w255", - "nodes": ["n1148", "n1149", "n1150", "n1151"], - "tags": { - "highway": "footway", - "footway": "sidewalk", - "bridge": "yes", - "layer": "1" - } - }, - "n1149": { - "loc": [-85.637327, 41.945857], - "id": "n1149" - }, - "n1150": { - "loc": [-85.637168, 41.945899], - "id": "n1150" - }, - "n1151": { - "loc": [-85.637017, 41.94593], - "id": "n1151" - }, - "n1152": { - "id": "n1152", - "loc": [-85.637185, 41.945938] - }, - "w256": { - "id": "w256", - "nodes": ["n1151", "n1153", "n1154", "n1155"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1153": { - "loc": [-85.63682, 41.945963], - "id": "n1153" - }, - "n1154": { - "loc": [-85.636639, 41.945984], - "id": "n1154" - }, - "n1155": { - "loc": [-85.636439, 41.945999], - "id": "n1155" - }, - "w257": { - "id": "w257", - "nodes": ["n1155", "n1156"], - "tags": { - "highway": "footway", - "footway": "sidewalk", - "bridge": "yes", - "layer": "1" - } - }, - "n1156": { - "loc": [-85.635801, 41.945999], - "id": "n1156" - }, - "n1157": { - "loc": [-85.635769, 41.945908], - "id": "n1157" - }, - "w258": { - "id": "w258", - "nodes": ["n1157", "n1158"], - "tags": { - "barrier": "retaining_wall" - } - }, - "n1158": { - "loc": [-85.635953, 41.946154], - "id": "n1158" - }, - "w259": { - "id": "w259", - "nodes": ["n1156", "n1161", "n1159", "n1160", "n719"], - "tags": { - "highway": "footway", - "footway": "sidewalk" - } - }, - "n1159": { - "loc": [-85.635472, 41.94598], - "id": "n1159" - }, - "n1160": { - "loc": [-85.635409, 41.945981], - "id": "n1160" - }, - "n1161": { - "id": "n1161", - "loc": [-85.635583, 41.945987] - }, - "n1162": { - "loc": [-85.636452, 41.945805], - "id": "n1162" - }, - "w260": { - "id": "w260", - "nodes": ["n1162", "n1163", "n1164", "n1165", "n1166", "n1167", "n1168", "n1169", "n1170", "n2528"], - "tags": { - "highway": "footway" - } - }, - "n1163": { - "loc": [-85.636425, 41.94582], - "id": "n1163" - }, - "n1164": { - "loc": [-85.636396, 41.945817], - "id": "n1164" - }, - "n1165": { - "loc": [-85.636368, 41.945797], - "id": "n1165" - }, - "n1166": { - "loc": [-85.636346, 41.945767], - "id": "n1166" - }, - "n1167": { - "loc": [-85.636307, 41.945745], - "id": "n1167" - }, - "n1168": { - "loc": [-85.636194, 41.94565], - "id": "n1168" - }, - "n1169": { - "loc": [-85.636121, 41.945579], - "id": "n1169" - }, - "n1170": { - "loc": [-85.635995, 41.945432], - "id": "n1170" - }, - "n1171": { - "loc": [-85.637564, 41.943538], - "id": "n1171" - }, - "w261": { - "id": "w261", - "nodes": ["n1171", "n1172", "n1173"], - "tags": { - "barrier": "wall" - } - }, - "n1172": { - "loc": [-85.63756, 41.943505], - "id": "n1172" - }, - "n1173": { - "loc": [-85.637435, 41.943489], - "id": "n1173" - }, - "n1174": { - "id": "n1174", - "loc": [-85.637093, 41.943556] - }, - "n1175": { - "loc": [-85.634836, 41.941574], - "id": "n1175" - }, - "w262": { - "tags": { - "natural": "wood" - }, - "id": "w262", - "nodes": ["n1175", "n1176", "n1177", "n1178", "n1179", "n1180", "n1181", "n1175"] - }, - "n1176": { - "loc": [-85.634692, 41.9415], - "id": "n1176" - }, - "n1177": { - "loc": [-85.634261, 41.941337], - "id": "n1177" - }, - "n1178": { - "loc": [-85.634208, 41.940962], - "id": "n1178" - }, - "n1179": { - "loc": [-85.635247, 41.940968], - "id": "n1179" - }, - "n1180": { - "loc": [-85.63514, 41.941205], - "id": "n1180" - }, - "n1181": { - "loc": [-85.634858, 41.941511], - "id": "n1181" - }, - "n1182": { - "id": "n1182", - "loc": [-85.630725, 41.943465] - }, - "n1183": { - "id": "n1183", - "loc": [-85.632591, 41.942826] - }, - "n1184": { - "id": "n1184", - "loc": [-85.634487, 41.941928] - }, - "n1185": { - "id": "n1185", - "loc": [-85.634499, 41.942056] - }, - "w263": { - "tags": { - "highway": "path", - "name": "Riverwalk Trail", - "surface": "asphalt", - "width": "3" - }, - "id": "w263", - "nodes": [ - "n1947", - "n1184", - "n1948", - "n1185", - "n1949", - "n1957", - "n1950", - "n480", - "n1951", - "n479", - "n478", - "n477", - "n1952", - "n1851", - "n1956", - "n2248", - "n619", - "n618", - "n2249", - "n2250", - "n2251", - "n617", - "n2252", - "n616", - "n2253", - "n829", - "n2254", - "n827", - "n828", - "n2255", - "n830", - "n2256", - "n826", - "n2257", - "n831", - "n2258", - "n832", - "n835", - "n834", - "n2312", - "n2267", - "n2259", - "n833", - "n2268", - "n2260", - "n836", - "n2261", - "n837", - "n2262", - "n838", - "n2263", - "n2264", - "n839", - "n2265", - "n840", - "n2266" - ] - }, - "n1186": { - "loc": [-85.63433, 41.943102], - "id": "n1186" - }, - "w264": { - "tags": { - "building": "yes" - }, - "id": "w264", - "nodes": ["n1186", "n1187", "n1188", "n1189", "n1186"] - }, - "n1187": { - "loc": [-85.634158, 41.943151], - "id": "n1187" - }, - "n1188": { - "loc": [-85.634107, 41.94305], - "id": "n1188" - }, - "n1189": { - "loc": [-85.634279, 41.943002], - "id": "n1189" - }, - "n1190": { - "loc": [-85.634362, 41.943762], - "id": "n1190" - }, - "w265": { - "tags": { - "building": "yes" - }, - "id": "w265", - "nodes": ["n1190", "n1191", "n1192", "n1193", "n1190"] - }, - "n1191": { - "loc": [-85.634331, 41.943731], - "id": "n1191" - }, - "n1192": { - "loc": [-85.634396, 41.943695], - "id": "n1192" - }, - "n1193": { - "loc": [-85.634426, 41.943726], - "id": "n1193" - }, - "n1194": { - "loc": [-85.621569, 41.956021], - "id": "n1194" - }, - "w266": { - "tags": { - "building": "yes" - }, - "id": "w266", - "nodes": ["n1194", "n1195", "n1196", "n1197", "n1198", "n1199", "n1200", "n1201", "n1194"] - }, - "n1195": { - "loc": [-85.621574, 41.956164], - "id": "n1195" - }, - "n1196": { - "loc": [-85.621489, 41.956165], - "id": "n1196" - }, - "n1197": { - "loc": [-85.621488, 41.956136], - "id": "n1197" - }, - "n1198": { - "loc": [-85.621372, 41.956139], - "id": "n1198" - }, - "n1199": { - "loc": [-85.621369, 41.956049], - "id": "n1199" - }, - "n1200": { - "loc": [-85.621493, 41.956047], - "id": "n1200" - }, - "n1201": { - "loc": [-85.621492, 41.956022], - "id": "n1201" - }, - "n1204": { - "id": "n1204", - "loc": [-85.623984, 41.95469] - }, - "n1205": { - "loc": [-85.630159, 41.958208], - "id": "n1205" - }, - "w267": { - "tags": { - "building": "house" - }, - "id": "w267", - "nodes": ["n1205", "n1206", "n1207", "n1208", "n1209", "n1210", "n1205"] - }, - "n1206": { - "loc": [-85.63002, 41.958208], - "id": "n1206" - }, - "n1207": { - "loc": [-85.630021, 41.95814], - "id": "n1207" - }, - "n1208": { - "loc": [-85.63, 41.95814], - "id": "n1208" - }, - "n1209": { - "loc": [-85.63, 41.958043], - "id": "n1209" - }, - "n1210": { - "loc": [-85.630159, 41.958043], - "id": "n1210" - }, - "n1211": { - "loc": [-85.630304, 41.957566], - "id": "n1211" - }, - "w268": { - "tags": { - "building": "house" - }, - "id": "w268", - "nodes": ["n1211", "n1212", "n1213", "n1214", "n1215", "n1216", "n1217", "n1218", "n1219", "n1220", "n1211"] - }, - "n1212": { - "loc": [-85.630303, 41.957684], - "id": "n1212" - }, - "n1213": { - "loc": [-85.630073, 41.957683], - "id": "n1213" - }, - "n1214": { - "loc": [-85.630072, 41.957721], - "id": "n1214" - }, - "n1215": { - "loc": [-85.629993, 41.95772], - "id": "n1215" - }, - "n1216": { - "loc": [-85.629993, 41.95768], - "id": "n1216" - }, - "n1217": { - "loc": [-85.629968, 41.95768], - "id": "n1217" - }, - "n1218": { - "loc": [-85.629969, 41.957588], - "id": "n1218" - }, - "n1219": { - "loc": [-85.630219, 41.95759], - "id": "n1219" - }, - "n1220": { - "loc": [-85.630219, 41.957566], - "id": "n1220" - }, - "n1221": { - "loc": [-85.630717, 41.957744], - "id": "n1221" - }, - "w269": { - "tags": { - "building": "house" - }, - "id": "w269", - "nodes": ["n1221", "n1225", "n1222", "n1223", "n1224", "n1221"] - }, - "n1222": { - "loc": [-85.630596, 41.957745], - "id": "n1222" - }, - "n1223": { - "loc": [-85.630598, 41.957553], - "id": "n1223" - }, - "n1224": { - "loc": [-85.630717, 41.957555], - "id": "n1224" - }, - "n1225": { - "loc": [-85.630609, 41.957745], - "id": "n1225" - }, - "w270": { - "id": "w270", - "nodes": ["n1225", "n1226", "n1227", "n1229", "n1228"], - "tags": { - "barrier": "fence" - } - }, - "n1226": { - "loc": [-85.63061, 41.957789], - "id": "n1226" - }, - "n1227": { - "loc": [-85.630327, 41.957791], - "id": "n1227" - }, - "n1228": { - "loc": [-85.630324, 41.95752], - "id": "n1228" - }, - "n1229": { - "loc": [-85.630325, 41.95756], - "id": "n1229" - }, - "w271": { - "id": "w271", - "nodes": ["n1229", "n1230"], - "tags": { - "barrier": "fence" - } - }, - "n1230": { - "loc": [-85.63057, 41.95756], - "id": "n1230" - }, - "n1231": { - "loc": [-85.63069, 41.958016], - "id": "n1231" - }, - "w272": { - "tags": { - "building": "house" - }, - "id": "w272", - "nodes": ["n1231", "n1232", "n1233", "n1234", "n1235", "n1236", "n1237", "n1238", "n1231"] - }, - "n1232": { - "loc": [-85.630586, 41.958017], - "id": "n1232" - }, - "n1233": { - "loc": [-85.630584, 41.957956], - "id": "n1233" - }, - "n1234": { - "loc": [-85.630614, 41.957956], - "id": "n1234" - }, - "n1235": { - "loc": [-85.630611, 41.957835], - "id": "n1235" - }, - "n1236": { - "loc": [-85.630737, 41.957833], - "id": "n1236" - }, - "n1237": { - "loc": [-85.630739, 41.957921], - "id": "n1237" - }, - "n1238": { - "loc": [-85.630688, 41.957922], - "id": "n1238" - }, - "n1239": { - "loc": [-85.630719, 41.958291], - "id": "n1239" - }, - "w273": { - "tags": { - "building": "house" - }, - "id": "w273", - "nodes": ["n1239", "n1240", "n1241", "n1242", "n1243", "n1244", "n1245", "n1246", "n1239"] - }, - "n1240": { - "loc": [-85.630592, 41.958291], - "id": "n1240" - }, - "n1241": { - "loc": [-85.630593, 41.958108], - "id": "n1241" - }, - "n1242": { - "loc": [-85.630701, 41.958109], - "id": "n1242" - }, - "n1243": { - "loc": [-85.6307, 41.958173], - "id": "n1243" - }, - "n1244": { - "loc": [-85.630711, 41.958173], - "id": "n1244" - }, - "n1245": { - "loc": [-85.630711, 41.958233], - "id": "n1245" - }, - "n1246": { - "loc": [-85.630719, 41.958233], - "id": "n1246" - }, - "n1247": { - "loc": [-85.630523, 41.958329], - "id": "n1247" - }, - "w274": { - "tags": { - "building": "house" - }, - "id": "w274", - "nodes": ["n1247", "n1248", "n1249", "n1250", "n1247"] - }, - "n1248": { - "loc": [-85.630388, 41.958329], - "id": "n1248" - }, - "n1249": { - "loc": [-85.630387, 41.958262], - "id": "n1249" - }, - "n1250": { - "loc": [-85.630523, 41.958261], - "id": "n1250" - }, - "n1251": { - "loc": [-85.63072, 41.958636], - "id": "n1251" - }, - "w275": { - "tags": { - "building": "house" - }, - "id": "w275", - "nodes": ["n1251", "n1252", "n1253", "n1254", "n1255", "n1256", "n1251"] - }, - "n1252": { - "loc": [-85.630721, 41.958709], - "id": "n1252" - }, - "n1253": { - "loc": [-85.630503, 41.958712], - "id": "n1253" - }, - "n1254": { - "loc": [-85.630498, 41.958511], - "id": "n1254" - }, - "n1255": { - "loc": [-85.630635, 41.95851], - "id": "n1255" - }, - "n1256": { - "loc": [-85.630638, 41.958636], - "id": "n1256" - }, - "n1257": { - "loc": [-85.630437, 41.958822], - "id": "n1257" - }, - "w276": { - "tags": { - "building": "shed" - }, - "id": "w276", - "nodes": ["n1257", "n1258", "n1259", "n1260", "n1257"] - }, - "n1258": { - "loc": [-85.630437, 41.958849], - "id": "n1258" - }, - "n1259": { - "loc": [-85.630393, 41.958849], - "id": "n1259" - }, - "n1260": { - "loc": [-85.630393, 41.958822], - "id": "n1260" - }, - "n1261": { - "loc": [-85.630605, 41.959102], - "id": "n1261" - }, - "w277": { - "tags": { - "building": "house" - }, - "id": "w277", - "nodes": ["n1261", "n1262", "n1263", "n1264", "n1265", "n1266", "n1267", "n1268", "n1261"] - }, - "n1262": { - "loc": [-85.63049, 41.959104], - "id": "n1262" - }, - "n1263": { - "loc": [-85.630487, 41.958996], - "id": "n1263" - }, - "n1264": { - "loc": [-85.630462, 41.958996], - "id": "n1264" - }, - "n1265": { - "loc": [-85.63046, 41.958922], - "id": "n1265" - }, - "n1266": { - "loc": [-85.630562, 41.958921], - "id": "n1266" - }, - "n1267": { - "loc": [-85.630564, 41.958992], - "id": "n1267" - }, - "n1268": { - "loc": [-85.630602, 41.958992], - "id": "n1268" - }, - "n1269": { - "loc": [-85.630126, 41.957096], - "id": "n1269" - }, - "w278": { - "tags": { - "building": "house" - }, - "id": "w278", - "nodes": ["n1269", "n1270", "n1271", "n1272", "n1273", "n1274", "n1284", "n1269"] - }, - "n1270": { - "loc": [-85.630129, 41.957283], - "id": "n1270" - }, - "n1271": { - "loc": [-85.629993, 41.957284], - "id": "n1271" - }, - "n1272": { - "loc": [-85.629992, 41.957216], - "id": "n1272" - }, - "n1273": { - "loc": [-85.630015, 41.957215], - "id": "n1273" - }, - "n1274": { - "loc": [-85.630013, 41.957097], - "id": "n1274" - }, - "n1275": { - "loc": [-85.630211, 41.956592], - "id": "n1275" - }, - "w279": { - "tags": { - "building": "house" - }, - "id": "w279", - "nodes": ["n1275", "n1276", "n1277", "n1278", "n1279", "n1280", "n1275"] - }, - "n1276": { - "loc": [-85.630211, 41.956676], - "id": "n1276" - }, - "n1277": { - "loc": [-85.630162, 41.956676], - "id": "n1277" - }, - "n1278": { - "loc": [-85.630162, 41.95676], - "id": "n1278" - }, - "n1279": { - "loc": [-85.630037, 41.956761], - "id": "n1279" - }, - "n1280": { - "loc": [-85.630037, 41.956592], - "id": "n1280" - }, - "n1281": { - "loc": [-85.630309, 41.95653], - "id": "n1281" - }, - "w280": { - "id": "w280", - "nodes": ["n1281", "n1282", "n1283", "n1284"], - "tags": { - "barrier": "fence" - } - }, - "n1282": { - "loc": [-85.630326, 41.957065], - "id": "n1282" - }, - "n1283": { - "loc": [-85.630118, 41.957065], - "id": "n1283" - }, - "n1284": { - "loc": [-85.630119, 41.957096], - "id": "n1284" - }, - "n1285": { - "loc": [-85.63067, 41.957307], - "id": "n1285" - }, - "w281": { - "tags": { - "building": "house" - }, - "id": "w281", - "nodes": ["n1285", "n1286", "n1287", "n1288", "n1285"] - }, - "n1286": { - "loc": [-85.630536, 41.957308], - "id": "n1286" - }, - "n1287": { - "loc": [-85.630533, 41.957111], - "id": "n1287" - }, - "n1288": { - "loc": [-85.630667, 41.95711], - "id": "n1288" - }, - "n1289": { - "loc": [-85.630676, 41.956808], - "id": "n1289" - }, - "w282": { - "tags": { - "building": "house" - }, - "id": "w282", - "nodes": ["n1289", "n1290", "n1291", "n1292", "n1293", "n1294", "n1295", "n1296", "n1289"] - }, - "n1290": { - "loc": [-85.630551, 41.956808], - "id": "n1290" - }, - "n1291": { - "loc": [-85.630552, 41.956982], - "id": "n1291" - }, - "n1292": { - "loc": [-85.63059, 41.956982], - "id": "n1292" - }, - "n1293": { - "loc": [-85.63059, 41.957001], - "id": "n1293" - }, - "n1294": { - "loc": [-85.630692, 41.957001], - "id": "n1294" - }, - "n1295": { - "loc": [-85.630692, 41.956936], - "id": "n1295" - }, - "n1296": { - "loc": [-85.630676, 41.956936], - "id": "n1296" - }, - "n1297": { - "loc": [-85.630496, 41.956889], - "id": "n1297" - }, - "w283": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w283", - "nodes": ["n1297", "n1298", "n1299", "n1300", "n1301", "n1302", "n1297"] - }, - "n1298": { - "loc": [-85.630501, 41.956947], - "id": "n1298" - }, - "n1299": { - "loc": [-85.630377, 41.956953], - "id": "n1299" - }, - "n1300": { - "loc": [-85.630359, 41.956938], - "id": "n1300" - }, - "n1301": { - "loc": [-85.630359, 41.956912], - "id": "n1301" - }, - "n1302": { - "loc": [-85.63038, 41.956894], - "id": "n1302" - }, - "n1303": { - "loc": [-85.630679, 41.956747], - "id": "n1303" - }, - "w284": { - "tags": { - "building": "house" - }, - "id": "w284", - "nodes": ["n1303", "n1304", "n1305", "n1306", "n1307", "n1308", "n1309", "n1310", "n1311", "n1312", "n1303"] - }, - "n1304": { - "loc": [-85.630572, 41.956748], - "id": "n1304" - }, - "n1305": { - "loc": [-85.63057, 41.956668], - "id": "n1305" - }, - "n1306": { - "loc": [-85.630501, 41.956669], - "id": "n1306" - }, - "n1307": { - "loc": [-85.630499, 41.95659], - "id": "n1307" - }, - "n1308": { - "loc": [-85.630565, 41.956589], - "id": "n1308" - }, - "n1309": { - "loc": [-85.630564, 41.956541], - "id": "n1309" - }, - "n1310": { - "loc": [-85.630686, 41.956539], - "id": "n1310" - }, - "n1311": { - "loc": [-85.630688, 41.956631], - "id": "n1311" - }, - "n1312": { - "loc": [-85.630676, 41.956631], - "id": "n1312" - }, - "n1313": { - "loc": [-85.630686, 41.956487], - "id": "n1313" - }, - "w285": { - "tags": { - "building": "house" - }, - "id": "w285", - "nodes": ["n1313", "n1314", "n1315", "n1316", "n1313"] - }, - "n1314": { - "loc": [-85.63059, 41.956487], - "id": "n1314" - }, - "n1315": { - "loc": [-85.63059, 41.956396], - "id": "n1315" - }, - "n1316": { - "loc": [-85.630686, 41.956396], - "id": "n1316" - }, - "n1317": { - "loc": [-85.630643, 41.9563], - "id": "n1317" - }, - "w286": { - "tags": { - "building": "house" - }, - "id": "w286", - "nodes": [ - "n1317", - "n1318", - "n1319", - "n1320", - "n1321", - "n1322", - "n1323", - "n1324", - "n1325", - "n1326", - "n1327", - "n1328", - "n1329", - "n1330", - "n1317" - ] - }, - "n1318": { - "loc": [-85.630548, 41.956301], - "id": "n1318" - }, - "n1319": { - "loc": [-85.630545, 41.956217], - "id": "n1319" - }, - "n1320": { - "loc": [-85.630529, 41.956214], - "id": "n1320" - }, - "n1321": { - "loc": [-85.630521, 41.956202], - "id": "n1321" - }, - "n1322": { - "loc": [-85.63052, 41.95618], - "id": "n1322" - }, - "n1323": { - "loc": [-85.630527, 41.956169], - "id": "n1323" - }, - "n1324": { - "loc": [-85.630544, 41.956163], - "id": "n1324" - }, - "n1325": { - "loc": [-85.630543, 41.956094], - "id": "n1325" - }, - "n1326": { - "loc": [-85.630641, 41.956093], - "id": "n1326" - }, - "n1327": { - "loc": [-85.630642, 41.956134], - "id": "n1327" - }, - "n1328": { - "loc": [-85.630656, 41.956134], - "id": "n1328" - }, - "n1329": { - "loc": [-85.630657, 41.956252], - "id": "n1329" - }, - "n1330": { - "loc": [-85.630643, 41.956252], - "id": "n1330" - }, - "n1331": { - "loc": [-85.630409, 41.956044], - "id": "n1331" - }, - "w287": { - "tags": { - "building": "yes" - }, - "id": "w287", - "nodes": ["n1331", "n1332", "n1333", "n1334", "n1465", "n1335", "n1336", "n1331"] - }, - "n1332": { - "loc": [-85.630409, 41.956075], - "id": "n1332" - }, - "n1333": { - "loc": [-85.630195, 41.956078], - "id": "n1333" - }, - "n1334": { - "loc": [-85.630195, 41.9561], - "id": "n1334" - }, - "n1335": { - "loc": [-85.630088, 41.956101], - "id": "n1335" - }, - "n1336": { - "loc": [-85.630087, 41.956048], - "id": "n1336" - }, - "n1337": { - "loc": [-85.630345, 41.956114], - "id": "n1337" - }, - "w288": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w288", - "nodes": [ - "n1349", - "n1350", - "n1351", - "n1352", - "n1353", - "n1354", - "n1355", - "n1337", - "n1338", - "n1341", - "n1342", - "n1343", - "n1344", - "n1345", - "n1346", - "n1347", - "n1348", - "n1339", - "n1340", - "n1349" - ] - }, - "n1338": { - "loc": [-85.630328, 41.956113], - "id": "n1338" - }, - "n1339": { - "loc": [-85.63034, 41.956189], - "id": "n1339" - }, - "n1340": { - "loc": [-85.630355, 41.956185], - "id": "n1340" - }, - "n1341": { - "loc": [-85.630311, 41.956117], - "id": "n1341" - }, - "n1342": { - "loc": [-85.630297, 41.956125], - "id": "n1342" - }, - "n1343": { - "loc": [-85.630287, 41.956136], - "id": "n1343" - }, - "n1344": { - "loc": [-85.630283, 41.956149], - "id": "n1344" - }, - "n1345": { - "loc": [-85.630285, 41.956162], - "id": "n1345" - }, - "n1346": { - "loc": [-85.630293, 41.956174], - "id": "n1346" - }, - "n1347": { - "loc": [-85.630306, 41.956183], - "id": "n1347" - }, - "n1348": { - "loc": [-85.630322, 41.956188], - "id": "n1348" - }, - "n1349": { - "loc": [-85.630368, 41.956179], - "id": "n1349" - }, - "n1350": { - "loc": [-85.630378, 41.95617], - "id": "n1350" - }, - "n1351": { - "loc": [-85.630384, 41.956159], - "id": "n1351" - }, - "n1352": { - "loc": [-85.630385, 41.956147], - "id": "n1352" - }, - "n1353": { - "loc": [-85.630381, 41.956136], - "id": "n1353" - }, - "n1354": { - "loc": [-85.630372, 41.956126], - "id": "n1354" - }, - "n1355": { - "loc": [-85.63036, 41.956118], - "id": "n1355" - }, - "n1356": { - "loc": [-85.630776, 41.956041], - "id": "n1356" - }, - "w289": { - "id": "w289", - "nodes": ["n1356", "n1331"], - "tags": { - "barrier": "fence" - } - }, - "n1357": { - "loc": [-85.630195, 41.956036], - "id": "n1357" - }, - "w290": { - "tags": { - "building": "shed" - }, - "id": "w290", - "nodes": ["n1357", "n1358", "n1359", "n1360", "n1357"] - }, - "n1358": { - "loc": [-85.630137, 41.956037], - "id": "n1358" - }, - "n1359": { - "loc": [-85.630136, 41.956006], - "id": "n1359" - }, - "n1360": { - "loc": [-85.630194, 41.956005], - "id": "n1360" - }, - "w291": { - "id": "w291", - "nodes": ["n1358", "n1361", "n1362"], - "tags": { - "barrier": "fence" - } - }, - "n1361": { - "loc": [-85.629864, 41.956039], - "id": "n1361" - }, - "n1362": { - "loc": [-85.629864, 41.955862], - "id": "n1362" - }, - "n1363": { - "loc": [-85.629541, 41.958291], - "id": "n1363" - }, - "w292": { - "tags": { - "building": "house" - }, - "id": "w292", - "nodes": ["n1363", "n1364", "n1365", "n1366", "n1367", "n1368", "n1363"] - }, - "n1364": { - "loc": [-85.629419, 41.958292], - "id": "n1364" - }, - "n1365": { - "loc": [-85.629417, 41.958168], - "id": "n1365" - }, - "n1366": { - "loc": [-85.629445, 41.958168], - "id": "n1366" - }, - "n1367": { - "loc": [-85.629444, 41.958109], - "id": "n1367" - }, - "n1368": { - "loc": [-85.629537, 41.958108], - "id": "n1368" - }, - "n1369": { - "loc": [-85.629351, 41.958136], - "id": "n1369" - }, - "w293": { - "tags": { - "leisure": "swimming_pool" - }, - "id": "w293", - "nodes": ["n1369", "n1370", "n1371", "n1372", "n1373", "n1374", "n1369"] - }, - "n1370": { - "loc": [-85.629352, 41.958202], - "id": "n1370" - }, - "n1371": { - "loc": [-85.629365, 41.958202], - "id": "n1371" - }, - "n1372": { - "loc": [-85.629365, 41.958223], - "id": "n1372" - }, - "n1373": { - "loc": [-85.629291, 41.958224], - "id": "n1373" - }, - "n1374": { - "loc": [-85.62929, 41.958137], - "id": "n1374" - }, - "w294": { - "id": "w294", - "nodes": ["n1367", "n1375", "n1376", "n1377"], - "tags": { - "barrier": "fence" - } - }, - "n1375": { - "loc": [-85.629443, 41.958073], - "id": "n1375" - }, - "n1376": { - "loc": [-85.629252, 41.958075], - "id": "n1376" - }, - "n1377": { - "loc": [-85.629253, 41.95827], - "id": "n1377" - }, - "n1378": { - "loc": [-85.629566, 41.957585], - "id": "n1378" - }, - "w295": { - "tags": { - "building": "house" - }, - "id": "w295", - "nodes": ["n1378", "n1379", "n1380", "n1381", "n1378"] - }, - "n1379": { - "loc": [-85.629566, 41.957692], - "id": "n1379" - }, - "n1380": { - "loc": [-85.629281, 41.957693], - "id": "n1380" - }, - "n1381": { - "loc": [-85.62928, 41.957585], - "id": "n1381" - }, - "n1382": { - "loc": [-85.629004, 41.957599], - "id": "n1382" - }, - "w296": { - "tags": { - "building": "house" - }, - "id": "w296", - "nodes": ["n1382", "n1383", "n1384", "n1385", "n1386", "n1387", "n1382"] - }, - "n1383": { - "loc": [-85.629004, 41.957682], - "id": "n1383" - }, - "n1384": { - "loc": [-85.628902, 41.957682], - "id": "n1384" - }, - "n1385": { - "loc": [-85.628902, 41.957723], - "id": "n1385" - }, - "n1386": { - "loc": [-85.628731, 41.957724], - "id": "n1386" - }, - "n1387": { - "loc": [-85.628731, 41.9576], - "id": "n1387" - }, - "n1388": { - "loc": [-85.62836, 41.957679], - "id": "n1388" - }, - "w297": { - "tags": { - "building": "house" - }, - "id": "w297", - "nodes": ["n1388", "n1389", "n1390", "n1391", "n1392", "n1393", "n1388"] - }, - "n1389": { - "loc": [-85.628359, 41.957759], - "id": "n1389" - }, - "n1390": { - "loc": [-85.628062, 41.957757], - "id": "n1390" - }, - "n1391": { - "loc": [-85.628063, 41.957657], - "id": "n1391" - }, - "n1392": { - "loc": [-85.628198, 41.957657], - "id": "n1392" - }, - "n1393": { - "loc": [-85.628198, 41.957678], - "id": "n1393" - }, - "n1394": { - "loc": [-85.627775, 41.958095], - "id": "n1394" - }, - "w298": { - "tags": { - "building": "house" - }, - "id": "w298", - "nodes": ["n1394", "n1395", "n1396", "n1397", "n1394"] - }, - "n1395": { - "loc": [-85.627608, 41.958095], - "id": "n1395" - }, - "n1396": { - "loc": [-85.627606, 41.957829], - "id": "n1396" - }, - "n1397": { - "loc": [-85.627774, 41.957829], - "id": "n1397" - }, - "n1398": { - "loc": [-85.626816, 41.957636], - "id": "n1398" - }, - "w299": { - "tags": { - "leisure": "swimming_pool", - "access": "private3" - }, - "id": "w299", - "nodes": ["n1398", "n1399", "n1400", "n1401", "n1398"] - }, - "n1399": { - "loc": [-85.626787, 41.957681], - "id": "n1399" - }, - "n1400": { - "loc": [-85.626673, 41.95764], - "id": "n1400" - }, - "n1401": { - "loc": [-85.626703, 41.957594], - "id": "n1401" - }, - "n1402": { - "loc": [-85.62694, 41.95752], - "id": "n1402" - }, - "w300": { - "tags": { - "building": "house" - }, - "id": "w300", - "nodes": ["n1402", "n1403", "n1404", "n1405", "n1406", "n1407", "n1408", "n1409", "n1410", "n1411", "n1412", "n1413", "n1402"] - }, - "n1403": { - "loc": [-85.62688, 41.957611], - "id": "n1403" - }, - "n1404": { - "loc": [-85.626798, 41.957582], - "id": "n1404" - }, - "n1405": { - "loc": [-85.626793, 41.95759], - "id": "n1405" - }, - "n1406": { - "loc": [-85.626657, 41.95754], - "id": "n1406" - }, - "n1407": { - "loc": [-85.626666, 41.957526], - "id": "n1407" - }, - "n1408": { - "loc": [-85.626584, 41.957497], - "id": "n1408" - }, - "n1409": { - "loc": [-85.626638, 41.957415], - "id": "n1409" - }, - "n1410": { - "loc": [-85.626731, 41.957449], - "id": "n1410" - }, - "n1411": { - "loc": [-85.626725, 41.957457], - "id": "n1411" - }, - "n1412": { - "loc": [-85.626843, 41.9575], - "id": "n1412" - }, - "n1413": { - "loc": [-85.626851, 41.957487], - "id": "n1413" - }, - "n1414": { - "loc": [-85.626579, 41.957521], - "id": "n1414" - }, - "w301": { - "tags": { - "building": "garage" - }, - "id": "w301", - "nodes": ["n1414", "n1415", "n1416", "n1417", "n1414"] - }, - "n1415": { - "loc": [-85.626537, 41.957587], - "id": "n1415" - }, - "n1416": { - "loc": [-85.626427, 41.957551], - "id": "n1416" - }, - "n1417": { - "loc": [-85.626468, 41.957483], - "id": "n1417" - }, - "w302": { - "id": "w302", - "nodes": ["n1406", "n1418", "n1419", "n1403"], - "tags": { - "barrier": "fence" - } - }, - "n1418": { - "loc": [-85.626592, 41.957639], - "id": "n1418" - }, - "n1419": { - "loc": [-85.626807, 41.957713], - "id": "n1419" - }, - "n1420": { - "id": "n1420", - "loc": [-85.627129, 41.957401] - }, - "n1421": { - "id": "n1421", - "loc": [-85.627209, 41.95742] - }, - "n1422": { - "id": "n1422", - "loc": [-85.627302, 41.957435] - }, - "n1423": { - "loc": [-85.629566, 41.957048], - "id": "n1423" - }, - "w303": { - "tags": { - "building": "house" - }, - "id": "w303", - "nodes": ["n1423", "n1424", "n1425", "n1426", "n1427", "n1428", "n1429", "n1430", "n1431", "n1432", "n1423"] - }, - "n1424": { - "loc": [-85.629568, 41.957215], - "id": "n1424" - }, - "n1425": { - "loc": [-85.629383, 41.957216], - "id": "n1425" - }, - "n1426": { - "loc": [-85.629384, 41.95727], - "id": "n1426" - }, - "n1427": { - "loc": [-85.629231, 41.957271], - "id": "n1427" - }, - "n1428": { - "loc": [-85.62923, 41.957198], - "id": "n1428" - }, - "n1429": { - "loc": [-85.629322, 41.957198], - "id": "n1429" - }, - "n1430": { - "loc": [-85.629321, 41.957108], - "id": "n1430" - }, - "n1431": { - "loc": [-85.629441, 41.957108], - "id": "n1431" - }, - "n1432": { - "loc": [-85.62944, 41.957049], - "id": "n1432" - }, - "n1433": { - "loc": [-85.629337, 41.957018], - "id": "n1433" - }, - "w304": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w304", - "nodes": [ - "n1433", - "n1434", - "n1435", - "n1446", - "n1436", - "n1437", - "n1438", - "n1439", - "n1444", - "n1440", - "n1441", - "n1445", - "n1442", - "n1443", - "n1433" - ] - }, - "n1434": { - "loc": [-85.629366, 41.957028], - "id": "n1434" - }, - "n1435": { - "loc": [-85.629375, 41.957044], - "id": "n1435" - }, - "n1436": { - "loc": [-85.629354, 41.957071], - "id": "n1436" - }, - "n1437": { - "loc": [-85.629317, 41.957071], - "id": "n1437" - }, - "n1438": { - "loc": [-85.62929, 41.957074], - "id": "n1438" - }, - "n1439": { - "loc": [-85.62927, 41.957084], - "id": "n1439" - }, - "n1440": { - "loc": [-85.629232, 41.957081], - "id": "n1440" - }, - "n1441": { - "loc": [-85.629222, 41.957057], - "id": "n1441" - }, - "n1442": { - "loc": [-85.629259, 41.957025], - "id": "n1442" - }, - "n1443": { - "loc": [-85.629293, 41.957017], - "id": "n1443" - }, - "n1444": { - "id": "n1444", - "loc": [-85.629251, 41.957085] - }, - "n1445": { - "id": "n1445", - "loc": [-85.629235, 41.957041] - }, - "n1446": { - "id": "n1446", - "loc": [-85.62937, 41.95706] - }, - "n1447": { - "loc": [-85.629531, 41.956909], - "id": "n1447" - }, - "w305": { - "tags": { - "building": "house" - }, - "id": "w305", - "nodes": ["n1447", "n1448", "n1452", "n1453", "n1454", "n1451", "n1449", "n1450", "n1447"] - }, - "n1448": { - "loc": [-85.629408, 41.956909], - "id": "n1448" - }, - "n1449": { - "loc": [-85.629402, 41.956681], - "id": "n1449" - }, - "n1450": { - "loc": [-85.62953, 41.956681], - "id": "n1450" - }, - "n1451": { - "id": "n1451", - "loc": [-85.629402, 41.956728] - }, - "n1452": { - "id": "n1452", - "loc": [-85.629408, 41.956845] - }, - "n1453": { - "id": "n1453", - "loc": [-85.629385, 41.956845] - }, - "n1454": { - "id": "n1454", - "loc": [-85.629384, 41.956728] - }, - "n1455": { - "loc": [-85.629063, 41.956973], - "id": "n1455" - }, - "w306": { - "tags": { - "building": "shed" - }, - "id": "w306", - "nodes": ["n1455", "n1456", "n1457", "n1458", "n1455"] - }, - "n1456": { - "loc": [-85.629064, 41.957009], - "id": "n1456" - }, - "n1457": { - "loc": [-85.62902, 41.957009], - "id": "n1457" - }, - "n1458": { - "loc": [-85.629019, 41.956973], - "id": "n1458" - }, - "n1459": { - "loc": [-85.629136, 41.956633], - "id": "n1459" - }, - "w307": { - "tags": { - "building": "shed" - }, - "id": "w307", - "nodes": ["n1459", "n1460", "n1461", "n1462", "n1459"] - }, - "n1460": { - "loc": [-85.629084, 41.956632], - "id": "n1460" - }, - "n1461": { - "loc": [-85.629084, 41.956605], - "id": "n1461" - }, - "n1462": { - "loc": [-85.629136, 41.956605], - "id": "n1462" - }, - "n1463": { - "loc": [-85.629153, 41.956657], - "id": "n1463" - }, - "w308": { - "id": "w308", - "nodes": ["n1463", "n1464"], - "tags": { - "barrier": "fence" - } - }, - "n1464": { - "loc": [-85.627914, 41.956661], - "id": "n1464" - }, - "n1465": { - "loc": [-85.630096, 41.956101], - "id": "n1465" - }, - "w309": { - "id": "w309", - "nodes": ["n1465", "n1466", "n1467", "n1468"], - "tags": { - "barrier": "fence" - } - }, - "n1466": { - "loc": [-85.630097, 41.95612], - "id": "n1466" - }, - "n1467": { - "loc": [-85.630011, 41.956121], - "id": "n1467" - }, - "n1468": { - "loc": [-85.630015, 41.956374], - "id": "n1468" - }, - "n1469": { - "loc": [-85.629148, 41.95626], - "id": "n1469" - }, - "w310": { - "id": "w310", - "nodes": ["n1469", "n1481", "n1463"], - "tags": { - "barrier": "hedge" - } - }, - "n1470": { - "loc": [-85.629527, 41.956591], - "id": "n1470" - }, - "w311": { - "tags": { - "building": "house" - }, - "id": "w311", - "nodes": ["n1470", "n1471", "n1472", "n1473", "n1474", "n1475", "n1480", "n1476", "n1477", "n1478", "n1479", "n1470"] - }, - "n1471": { - "loc": [-85.629405, 41.956591], - "id": "n1471" - }, - "n1472": { - "loc": [-85.629405, 41.956459], - "id": "n1472" - }, - "n1473": { - "loc": [-85.629369, 41.956459], - "id": "n1473" - }, - "n1474": { - "loc": [-85.629369, 41.956424], - "id": "n1474" - }, - "n1475": { - "loc": [-85.629413, 41.956424], - "id": "n1475" - }, - "n1476": { - "loc": [-85.629414, 41.956326], - "id": "n1476" - }, - "n1477": { - "loc": [-85.629522, 41.956326], - "id": "n1477" - }, - "n1478": { - "loc": [-85.629522, 41.956487], - "id": "n1478" - }, - "n1479": { - "loc": [-85.629527, 41.956487], - "id": "n1479" - }, - "n1480": { - "loc": [-85.629414, 41.95634], - "id": "n1480" - }, - "w312": { - "id": "w312", - "nodes": ["n1480", "n1481"], - "tags": { - "barrier": "wall" - } - }, - "n1481": { - "loc": [-85.629149, 41.956338], - "id": "n1481" - }, - "n1482": { - "loc": [-85.62931, 41.956531], - "id": "n1482" - }, - "w313": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w313", - "nodes": ["n1482", "n1483", "n1484", "n1485", "n1486", "n1487", "n1488", "n1489", "n1490", "n1491", "n1482"] - }, - "n1483": { - "loc": [-85.629291, 41.95655], - "id": "n1483" - }, - "n1484": { - "loc": [-85.629255, 41.95655], - "id": "n1484" - }, - "n1485": { - "loc": [-85.629236, 41.956533], - "id": "n1485" - }, - "n1486": { - "loc": [-85.629237, 41.956461], - "id": "n1486" - }, - "n1487": { - "loc": [-85.629257, 41.956445], - "id": "n1487" - }, - "n1488": { - "loc": [-85.629257, 41.956428], - "id": "n1488" - }, - "n1489": { - "loc": [-85.629287, 41.956428], - "id": "n1489" - }, - "n1490": { - "loc": [-85.629287, 41.956445], - "id": "n1490" - }, - "n1491": { - "loc": [-85.62931, 41.95646], - "id": "n1491" - }, - "n1492": { - "loc": [-85.629049, 41.956425], - "id": "n1492" - }, - "w314": { - "tags": { - "building": "house" - }, - "id": "w314", - "nodes": [ - "n1492", - "n1493", - "n1494", - "n1495", - "n1496", - "n1497", - "n1498", - "n1499", - "n1500", - "n1501", - "n1502", - "n1503", - "n1504", - "n1505", - "n1492" - ] - }, - "n1493": { - "loc": [-85.628907, 41.956427], - "id": "n1493" - }, - "n1494": { - "loc": [-85.628907, 41.956455], - "id": "n1494" - }, - "n1495": { - "loc": [-85.628841, 41.956455], - "id": "n1495" - }, - "n1496": { - "loc": [-85.62884, 41.956424], - "id": "n1496" - }, - "n1497": { - "loc": [-85.628764, 41.956425], - "id": "n1497" - }, - "n1498": { - "loc": [-85.628762, 41.956323], - "id": "n1498" - }, - "n1499": { - "loc": [-85.628808, 41.956323], - "id": "n1499" - }, - "n1500": { - "loc": [-85.628808, 41.956314], - "id": "n1500" - }, - "n1501": { - "loc": [-85.628911, 41.956313], - "id": "n1501" - }, - "n1502": { - "loc": [-85.628911, 41.956322], - "id": "n1502" - }, - "n1503": { - "loc": [-85.62896, 41.956322], - "id": "n1503" - }, - "n1504": { - "loc": [-85.62896, 41.956348], - "id": "n1504" - }, - "n1505": { - "loc": [-85.629047, 41.956347], - "id": "n1505" - }, - "n1506": { - "loc": [-85.628893, 41.957263], - "id": "n1506" - }, - "w315": { - "tags": { - "building": "house" - }, - "id": "w315", - "nodes": ["n1506", "n1507", "n1508", "n1509", "n1510", "n1511", "n1512", "n1513", "n1514", "n1515", "n1506"] - }, - "n1507": { - "loc": [-85.628788, 41.957264], - "id": "n1507" - }, - "n1508": { - "loc": [-85.628786, 41.95711], - "id": "n1508" - }, - "n1509": { - "loc": [-85.628894, 41.957109], - "id": "n1509" - }, - "n1510": { - "loc": [-85.628893, 41.957075], - "id": "n1510" - }, - "n1511": { - "loc": [-85.628965, 41.957075], - "id": "n1511" - }, - "n1512": { - "loc": [-85.628965, 41.957111], - "id": "n1512" - }, - "n1513": { - "loc": [-85.629035, 41.95711], - "id": "n1513" - }, - "n1514": { - "loc": [-85.629036, 41.957209], - "id": "n1514" - }, - "n1515": { - "loc": [-85.628893, 41.95721], - "id": "n1515" - }, - "n1516": { - "loc": [-85.631348, 41.95773], - "id": "n1516" - }, - "w316": { - "tags": { - "building": "house" - }, - "id": "w316", - "nodes": ["n1516", "n1517", "n1518", "n1519", "n1520", "n1521", "n1522", "n1523", "n1516"] - }, - "n1517": { - "loc": [-85.631101, 41.957732], - "id": "n1517" - }, - "n1518": { - "loc": [-85.631099, 41.957558], - "id": "n1518" - }, - "n1519": { - "loc": [-85.63123, 41.957557], - "id": "n1519" - }, - "n1520": { - "loc": [-85.631231, 41.957618], - "id": "n1520" - }, - "n1521": { - "loc": [-85.63129, 41.957618], - "id": "n1521" - }, - "n1522": { - "loc": [-85.63129, 41.957651], - "id": "n1522" - }, - "n1523": { - "loc": [-85.631346, 41.957651], - "id": "n1523" - }, - "n1524": { - "loc": [-85.631366, 41.95802], - "id": "n1524" - }, - "w317": { - "tags": { - "building": "house" - }, - "id": "w317", - "nodes": ["n1524", "n1525", "n1526", "n1527", "n1528", "n1529", "n1530", "n1531", "n1524"] - }, - "n1525": { - "loc": [-85.631141, 41.958021], - "id": "n1525" - }, - "n1526": { - "loc": [-85.63114, 41.957943], - "id": "n1526" - }, - "n1527": { - "loc": [-85.631167, 41.957943], - "id": "n1527" - }, - "n1528": { - "loc": [-85.631166, 41.957808], - "id": "n1528" - }, - "n1529": { - "loc": [-85.631301, 41.957807], - "id": "n1529" - }, - "n1530": { - "loc": [-85.631302, 41.95789], - "id": "n1530" - }, - "n1531": { - "loc": [-85.631364, 41.95789], - "id": "n1531" - }, - "n1532": { - "loc": [-85.631539, 41.957754], - "id": "n1532" - }, - "w318": { - "id": "w318", - "nodes": ["n1532", "n1533"], - "tags": { - "barrier": "fence" - } - }, - "n1533": { - "loc": [-85.631069, 41.957756], - "id": "n1533" - }, - "n1534": { - "loc": [-85.631536, 41.957518], - "id": "n1534" - }, - "w319": { - "id": "w319", - "nodes": ["n1534", "n1532", "n1535"], - "tags": { - "barrier": "fence" - } - }, - "n1535": { - "loc": [-85.631543, 41.957995], - "id": "n1535" - }, - "n1536": { - "loc": [-85.631531, 41.957748], - "id": "n1536" - }, - "w320": { - "tags": { - "building": "shed" - }, - "id": "w320", - "nodes": ["n1536", "n1537", "n1538", "n1539", "n1536"] - }, - "n1537": { - "loc": [-85.631485, 41.957748], - "id": "n1537" - }, - "n1538": { - "loc": [-85.631484, 41.957698], - "id": "n1538" - }, - "n1539": { - "loc": [-85.631531, 41.957698], - "id": "n1539" - }, - "n1540": { - "loc": [-85.631586, 41.957742], - "id": "n1540" - }, - "w321": { - "tags": { - "building": "shed" - }, - "id": "w321", - "nodes": ["n1540", "n1541", "n1542", "n1543", "n1540"] - }, - "n1541": { - "loc": [-85.63155, 41.957742], - "id": "n1541" - }, - "n1542": { - "loc": [-85.631551, 41.957702], - "id": "n1542" - }, - "n1543": { - "loc": [-85.631587, 41.957702], - "id": "n1543" - }, - "n1544": { - "loc": [-85.631534, 41.95807], - "id": "n1544" - }, - "w322": { - "tags": { - "building": "shed" - }, - "id": "w322", - "nodes": ["n1544", "n1545", "n1546", "n1547", "n1544"] - }, - "n1545": { - "loc": [-85.631534, 41.958097], - "id": "n1545" - }, - "n1546": { - "loc": [-85.631491, 41.958097], - "id": "n1546" - }, - "n1547": { - "loc": [-85.631491, 41.95807], - "id": "n1547" - }, - "n1548": { - "loc": [-85.631304, 41.958861], - "id": "n1548" - }, - "w323": { - "tags": { - "building": "house" - }, - "id": "w323", - "nodes": ["n1548", "n1549", "n1550", "n1551", "n1548"] - }, - "n1549": { - "loc": [-85.631186, 41.958862], - "id": "n1549" - }, - "n1550": { - "loc": [-85.631182, 41.958653], - "id": "n1550" - }, - "n1551": { - "loc": [-85.6313, 41.958651], - "id": "n1551" - }, - "n1552": { - "loc": [-85.631293, 41.95854], - "id": "n1552" - }, - "w324": { - "tags": { - "building": "house" - }, - "id": "w324", - "nodes": ["n1552", "n1553", "n1554", "n1555", "n1556", "n1557", "n1558", "n1559", "n1552"] - }, - "n1553": { - "loc": [-85.631176, 41.958539], - "id": "n1553" - }, - "n1554": { - "loc": [-85.631176, 41.958377], - "id": "n1554" - }, - "n1555": { - "loc": [-85.631297, 41.958377], - "id": "n1555" - }, - "n1556": { - "loc": [-85.631297, 41.958422], - "id": "n1556" - }, - "n1557": { - "loc": [-85.631333, 41.958422], - "id": "n1557" - }, - "n1558": { - "loc": [-85.631333, 41.958479], - "id": "n1558" - }, - "n1559": { - "loc": [-85.631293, 41.958479], - "id": "n1559" - }, - "n1560": { - "loc": [-85.631951, 41.958908], - "id": "n1560" - }, - "w325": { - "tags": { - "building": "house" - }, - "id": "w325", - "nodes": ["n1560", "n1561", "n1562", "n1563", "n1564", "n1565", "n1566", "n1567", "n1560"] - }, - "n1561": { - "loc": [-85.631838, 41.958909], - "id": "n1561" - }, - "n1562": { - "loc": [-85.631837, 41.958847], - "id": "n1562" - }, - "n1563": { - "loc": [-85.631859, 41.958847], - "id": "n1563" - }, - "n1564": { - "loc": [-85.631858, 41.958746], - "id": "n1564" - }, - "n1565": { - "loc": [-85.631961, 41.958745], - "id": "n1565" - }, - "n1566": { - "loc": [-85.631962, 41.958812], - "id": "n1566" - }, - "n1567": { - "loc": [-85.631949, 41.958813], - "id": "n1567" - }, - "w326": { - "id": "w326", - "nodes": ["n1561", "n1568", "n1569", "n1570"], - "tags": { - "barrier": "wall" - } - }, - "n1568": { - "loc": [-85.631579, 41.958913], - "id": "n1568" - }, - "n1569": { - "loc": [-85.631567, 41.95864], - "id": "n1569" - }, - "n1570": { - "loc": [-85.631942, 41.958639], - "id": "n1570" - }, - "n1571": { - "loc": [-85.631543, 41.958594], - "id": "n1571" - }, - "w327": { - "id": "w327", - "nodes": ["n1571", "n1572"], - "tags": { - "barrier": "fence" - } - }, - "n1572": { - "loc": [-85.631543, 41.958065], - "id": "n1572" - }, - "n1573": { - "loc": [-85.631888, 41.958546], - "id": "n1573" - }, - "w328": { - "tags": { - "building": "house" - }, - "id": "w328", - "nodes": ["n1573", "n1574", "n1575", "n1576", "n1573"] - }, - "n1574": { - "loc": [-85.631804, 41.958546], - "id": "n1574" - }, - "n1575": { - "loc": [-85.631803, 41.95841], - "id": "n1575" - }, - "n1576": { - "loc": [-85.631886, 41.958409], - "id": "n1576" - }, - "n1577": { - "loc": [-85.631897, 41.958125], - "id": "n1577" - }, - "w329": { - "tags": { - "building": "house" - }, - "id": "w329", - "nodes": ["n1577", "n1578", "n1579", "n1580", "n1581", "n1582", "n1583", "n1584", "n1585", "n1586", "n1577"] - }, - "n1578": { - "loc": [-85.631755, 41.958126], - "id": "n1578" - }, - "n1579": { - "loc": [-85.631756, 41.958174], - "id": "n1579" - }, - "n1580": { - "loc": [-85.63178, 41.958174], - "id": "n1580" - }, - "n1581": { - "loc": [-85.631782, 41.958272], - "id": "n1581" - }, - "n1582": { - "loc": [-85.631922, 41.958271], - "id": "n1582" - }, - "n1583": { - "loc": [-85.631922, 41.958244], - "id": "n1583" - }, - "n1584": { - "loc": [-85.631883, 41.958245], - "id": "n1584" - }, - "n1585": { - "loc": [-85.631882, 41.958175], - "id": "n1585" - }, - "n1586": { - "loc": [-85.631898, 41.958175], - "id": "n1586" - }, - "n1587": { - "loc": [-85.631924, 41.958032], - "id": "n1587" - }, - "w330": { - "tags": { - "building": "house" - }, - "id": "w330", - "nodes": ["n1587", "n1588", "n1589", "n1590", "n1591", "n1592", "n1593", "n1594", "n1587"] - }, - "n1588": { - "loc": [-85.631762, 41.958032], - "id": "n1588" - }, - "n1589": { - "loc": [-85.63176, 41.957827], - "id": "n1589" - }, - "n1590": { - "loc": [-85.631888, 41.957826], - "id": "n1590" - }, - "n1591": { - "loc": [-85.631888, 41.957892], - "id": "n1591" - }, - "n1592": { - "loc": [-85.631871, 41.957892], - "id": "n1592" - }, - "n1593": { - "loc": [-85.631872, 41.957949], - "id": "n1593" - }, - "n1594": { - "loc": [-85.631923, 41.957949], - "id": "n1594" - }, - "n1595": { - "loc": [-85.631695, 41.95795], - "id": "n1595" - }, - "w331": { - "tags": { - "leisure": "swimming_pool", - "access": "private" - }, - "id": "w331", - "nodes": ["n1595", "n1596", "n1597", "n1598", "n1599", "n1600", "n1601", "n1595"] - }, - "n1596": { - "loc": [-85.631666, 41.957975], - "id": "n1596" - }, - "n1597": { - "loc": [-85.63163, 41.957975], - "id": "n1597" - }, - "n1598": { - "loc": [-85.6316, 41.957951], - "id": "n1598" - }, - "n1599": { - "loc": [-85.6316, 41.95785], - "id": "n1599" - }, - "n1600": { - "loc": [-85.63166, 41.95785], - "id": "n1600" - }, - "n1601": { - "loc": [-85.631696, 41.957873], - "id": "n1601" - }, - "n1602": { - "loc": [-85.631924, 41.957762], - "id": "n1602" - }, - "w332": { - "tags": { - "building": "house" - }, - "id": "w332", - "nodes": ["n1602", "n1603", "n1604", "n1605", "n1606", "n1607", "n1608", "n1609", "n1611", "n1610", "n1612", "n1613", "n1602"] - }, - "n1603": { - "loc": [-85.631762, 41.957762], - "id": "n1603" - }, - "n1604": { - "loc": [-85.631762, 41.957708], - "id": "n1604" - }, - "n1605": { - "loc": [-85.631785, 41.957708], - "id": "n1605" - }, - "n1606": { - "loc": [-85.631785, 41.957606], - "id": "n1606" - }, - "n1607": { - "loc": [-85.631734, 41.957606], - "id": "n1607" - }, - "n1608": { - "loc": [-85.631734, 41.957538], - "id": "n1608" - }, - "n1609": { - "id": "n1609", - "loc": [-85.631821, 41.957538] - }, - "n1610": { - "id": "n1610", - "loc": [-85.631935, 41.957545] - }, - "n1611": { - "id": "n1611", - "loc": [-85.631821, 41.957544] - }, - "n1612": { - "id": "n1612", - "loc": [-85.631935, 41.957645] - }, - "n1613": { - "id": "n1613", - "loc": [-85.631924, 41.957645] - }, - "n1615": { - "loc": [-85.633517, 41.941353], - "id": "n1615", - "tags": { - "man_made": "lighthouse" - } - }, - "n1616": { - "loc": [-85.633659, 41.942041], - "id": "n1616", - "tags": { - "amenity": "bbq" - } - }, - "n1617": { - "loc": [-85.63662, 41.942911], - "id": "n1617", - "tags": { - "amenity": "toilets" - } - }, - "n1618": { - "loc": [-85.63749, 41.94389], - "id": "n1618", - "tags": { - "amenity": "toilets" - } - }, - "n1619": { - "loc": [-85.634917, 41.941929], - "id": "n1619", - "tags": { - "amenity": "toilets" - } - }, - "n1620": { - "loc": [-85.632427, 41.941678], - "id": "n1620", - "tags": { - "amenity": "bbq" - } - }, - "n1621": { - "loc": [-85.638033, 41.944568], - "id": "n1621", - "tags": { - "amenity": "bbq" - } - }, - "n1622": { - "loc": [-85.638052, 41.944522], - "id": "n1622", - "tags": { - "amenity": "bbq" - } - }, - "n1623": { - "id": "n1623", - "loc": [-85.635001, 41.941965] - }, - "n1624": { - "id": "n1624", - "loc": [-85.634635, 41.941884] - }, - "n1625": { - "id": "n1625", - "loc": [-85.634667, 41.941894] - }, - "w333": { - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "id": "w333", - "nodes": ["n2018", "n1626", "n1627", "n2017", "n2018"] - }, - "n1626": { - "loc": [-85.634791, 41.942011], - "id": "n1626" - }, - "n1627": { - "loc": [-85.634749, 41.941938], - "id": "n1627" - }, - "n2367": { - "loc": [-85.631063, 41.957478], - "id": "n2367", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2368": { - "loc": [-85.630996, 41.955857], - "id": "n2368", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2369": { - "loc": [-85.630964, 41.954612], - "id": "n2369", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2376": { - "loc": [-85.628174, 41.95456], - "id": "n2376", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2379": { - "loc": [-85.627276, 41.953987], - "id": "n2379", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2384": { - "loc": [-85.62736, 41.955964], - "id": "n2384", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2385": { - "loc": [-85.626307, 41.957198], - "id": "n2385", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2387": { - "loc": [-85.62747, 41.957509], - "id": "n2387", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2388": { - "loc": [-85.628665, 41.957492], - "id": "n2388", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2394": { - "loc": [-85.630864, 41.959046], - "id": "n2394", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2395": { - "loc": [-85.632249, 41.958969], - "id": "n2395", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2398": { - "loc": [-85.632232, 41.95859], - "id": "n2398", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2399": { - "loc": [-85.632071, 41.958345], - "id": "n2399", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2400": { - "loc": [-85.632228, 41.9573], - "id": "n2400", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n2422": { - "loc": [-85.632211, 41.95596], - "id": "n2422", - "tags": { - "emergency": "fire_hydrant" - } - }, - "n1": { - "id": "n1", - "loc": [-85.631039, 41.948829] - }, - "w3": { - "tags": { - "name": "Water Street", - "highway": "track" - }, - "id": "w3", - "nodes": ["n1", "n2"] - }, - "n2": { - "id": "n2", - "loc": [-85.627421, 41.953877] - }, - "w334": { - "tags": { - "name": "Water Street", - "highway": "service" - }, - "id": "w334", - "nodes": ["n2", "n3", "n2764"] - }, - "n3": { - "loc": [-85.627345, 41.953983], - "id": "n3" - }, - "w335": { - "id": "w335", - "nodes": ["n3", "n1628", "n1614"], - "tags": { - "highway": "service" - } - }, - "n1614": { - "loc": [-85.627135, 41.953828], - "id": "n1614" - }, - "n1628": { - "id": "n1628", - "loc": [-85.627295, 41.953946], - "tags": { - "barrier": "gate" - } - }, - "w336": { - "tags": { - "highway": "residential", - "name": "Morris Avenue" - }, - "id": "w336", - "nodes": ["n3198", "n2747"] - }, - "n1629": { - "loc": [-85.629076, 41.954689], - "id": "n1629" - }, - "w337": { - "id": "w337", - "nodes": ["n1629", "n3504"], - "tags": { - "highway": "service", - "service": "alley", - "surface": "unpaved" - } - }, - "n1029": { - "loc": [-85.640655, 41.942057], - "id": "n1029" - }, - "w222": { - "id": "w222", - "nodes": ["n1029", "n1030", "n1031"], - "tags": { - "highway": "service" - } - }, - "n1030": { - "loc": [-85.640947, 41.942057], - "id": "n1030" - }, - "n1031": { - "loc": [-85.640957, 41.942593], - "id": "n1031" - }, - "n1632": { - "id": "n1632", - "loc": [-85.643407, 41.942336] - }, - "n1634": { - "id": "n1634", - "loc": [-85.643322, 41.942224] - }, - "n1635": { - "id": "n1635", - "loc": [-85.643301, 41.942124] - }, - "n1640": { - "id": "n1640", - "loc": [-85.64371, 41.942302] - }, - "n1644": { - "id": "n1644", - "loc": [-85.643549, 41.942209] - }, - "n1811": { - "id": "n1811", - "loc": [-85.643529, 41.94217] - }, - "n1830": { - "loc": [-85.643532, 41.94204], - "id": "n1830" - }, - "n1836": { - "loc": [-85.643482, 41.941976], - "id": "n1836" - }, - "n1837": { - "loc": [-85.64345, 41.941945], - "id": "n1837" - }, - "n1848": { - "loc": [-85.643397, 41.941924], - "id": "n1848" - }, - "n2891": { - "loc": [-85.643236, 41.941895], - "id": "n2891" - }, - "n3394": { - "id": "n3394", - "loc": [-85.64344, 41.941866] - }, - "n3409": { - "id": "n3409", - "loc": [-85.643327, 41.941903] - }, - "n3418": { - "id": "n3418", - "loc": [-85.643422, 41.941946] - }, - "n3419": { - "id": "n3419", - "loc": [-85.643505, 41.942033] - }, - "n3744": { - "id": "n3744", - "loc": [-85.643386, 41.941933] - }, - "n3745": { - "loc": [-85.642776, 41.941161], - "id": "n3745" - }, - "w223": { - "tags": { - "name": "Rocky River", - "waterway": "river" - }, - "id": "w223", - "nodes": [ - "n2213", - "n2171", - "n2183", - "n2180", - "n2205", - "n2177", - "n2179", - "n2218", - "n2200", - "n2188", - "n2169", - "n2196", - "n2162", - "n2170", - "n2211", - "n2216", - "n2204", - "n2220", - "n2164", - "n2210", - "n2217", - "n2189", - "n460", - "n453", - "n2282" - ] - }, - "n3746": { - "id": "n3746", - "loc": [-85.637277, 41.948812] - }, - "n3747": { - "id": "n3747", - "loc": [-85.637366, 41.94897] - }, - "n3748": { - "id": "n3748", - "loc": [-85.637329, 41.94889] - }, - "n3749": { - "id": "n3749", - "loc": [-85.629649, 41.952596] - }, - "n3750": { - "loc": [-85.630291, 41.954684], - "id": "n3750" - }, - "w224": { - "id": "w224", - "nodes": ["n3750", "n3751", "n3752"], - "tags": { - "highway": "service", - "service": "alley", - "surface": "unpaved" - } - }, - "n3751": { - "loc": [-85.630284, 41.953713], - "id": "n3751" - }, - "n3752": { - "loc": [-85.630269, 41.952463], - "id": "n3752" - }, - "n3753": { - "loc": [-85.633933, 41.949896], - "id": "n3753" - }, - "n3754": { - "id": "n3754", - "loc": [-85.629339, 41.941467] - }, - "n3755": { - "id": "n3755", - "loc": [-85.629857, 41.94316] - }, - "n3756": { - "id": "n3756", - "loc": [-85.629987, 41.944025] - }, - "n3757": { - "loc": [-85.628538, 41.948604], - "id": "n3757" - }, - "n3813": { - "loc": [-85.628479, 41.948649], - "id": "n3813" - }, - "n3814": { - "loc": [-85.628413, 41.948679], - "id": "n3814" - }, - "n3815": { - "loc": [-85.628336, 41.948694], - "id": "n3815" - }, - "n3816": { - "loc": [-85.62826, 41.948694], - "id": "n3816" - }, - "n3817": { - "loc": [-85.628185, 41.948679], - "id": "n3817" - }, - "n3818": { - "loc": [-85.628103, 41.948649], - "id": "n3818" - }, - "n3819": { - "loc": [-85.627482, 41.948395], - "id": "n3819" - }, - "n3820": { - "loc": [-85.619957, 41.951168], - "id": "n3820" - }, - "w364": { - "tags": { - "amenity": "school", - "name": "Three Rivers Middle School" - }, - "id": "w364", - "nodes": [ - "n3820", - "n3821", - "n3822", - "n3823", - "n3824", - "n3825", - "n3826", - "n3827", - "n3828", - "n3829", - "n3830", - "n3838", - "n3839", - "n3820" - ] - }, - "n3821": { - "loc": [-85.619955, 41.952077], - "id": "n3821" - }, - "n3822": { - "loc": [-85.619843, 41.952666], - "id": "n3822" - }, - "n3823": { - "loc": [-85.619513, 41.95324], - "id": "n3823" - }, - "n3824": { - "loc": [-85.619163, 41.953668], - "id": "n3824" - }, - "n3825": { - "loc": [-85.618813, 41.953947], - "id": "n3825" - }, - "n3826": { - "loc": [-85.618265, 41.954252], - "id": "n3826" - }, - "n3827": { - "loc": [-85.617691, 41.954458], - "id": "n3827" - }, - "n3828": { - "loc": [-85.616978, 41.95459], - "id": "n3828" - }, - "n3829": { - "loc": [-85.615408, 41.954628], - "id": "n3829" - }, - "n3830": { - "loc": [-85.615374, 41.951076], - "id": "n3830" - }, - "w371": { - "tags": { - "amenity": "school", - "name": "Three Rivers High School" - }, - "id": "w371", - "nodes": ["n3836", "n3835", "n3831", "n3834", "n3832", "n3833", "n3830", "n3838", "n3839", "n3837", "n3836"] - }, - "n3831": { - "loc": [-85.61932, 41.947564], - "id": "n3831" - }, - "n3832": { - "loc": [-85.610553, 41.94755], - "id": "n3832" - }, - "n3833": { - "loc": [-85.610572, 41.951065], - "id": "n3833" - }, - "w534": { - "id": "w534", - "nodes": ["n3836", "n3837", "n3839", "n3838", "n3834", "n3831", "n3835", "n3836"], - "tags": { - "barrier": "fence" - } - }, - "n3834": { - "loc": [-85.617548, 41.94757], - "id": "n3834" - }, - "n3835": { - "id": "n3835", - "loc": [-85.619842, 41.947939] - }, - "n3836": { - "loc": [-85.619874, 41.950905], - "id": "n3836" - }, - "n3837": { - "id": "n3837", - "loc": [-85.619695, 41.950911] - }, - "n3838": { - "id": "n3838", - "loc": [-85.617591, 41.951078] - }, - "n3839": { - "id": "n3839", - "loc": [-85.619551, 41.951065] - }, - "n3840": { - "loc": [-85.626813, 41.947337], - "id": "n3840" - }, - "n4": { - "loc": [-85.6227, 41.954457], - "id": "n4" - }, - "n5": { - "loc": [-85.622738, 41.952969], - "id": "n5" - }, - "w1": { - "id": "w1", - "nodes": ["n5", "n3478"], - "tags": { - "highway": "residential", - "name": "12th Avenue" - } - }, - "n39": { - "id": "n39", - "loc": [-85.619931, 41.951013] - }, - "n40": { - "id": "n40", - "loc": [-85.619841, 41.951037] - }, - "n1202": { - "id": "n1202", - "loc": [-85.619744, 41.953192] - }, - "n1203": { - "id": "n1203", - "loc": [-85.619059, 41.953902] - }, - "n1684": { - "id": "n1684", - "loc": [-85.61786, 41.95473] } } } From 436c32ede87e1b310dda54d5422aa3bf7a1ceb51 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 8 Apr 2017 11:23:33 -0400 Subject: [PATCH 61/91] Update delete lines walkthrough steps --- data/core.yaml | 10 +- dist/locales/en.json | 10 +- modules/ui/intro/line.js | 365 +++++++++++++++++++++++++++++++++------ 3 files changed, 321 insertions(+), 64 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index c9219f20d..308e583da 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -951,12 +951,14 @@ en: finish_drag_endpoint: "This spot looks good. **Finish dragging by releasing the left mouse button**" start_drag_midpoint: "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" - delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but did not build it. Let's delete the extra lines." - rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything beyond it. **Right click on the intersection node**" + delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this map by deleting the extra lines." + rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." - multi_select: "You can select several lines by holding down the shift key when you click the lines to select them. **Shift-click to select both the northern part of {street1} and the {street2}.**" - multi_rightclick: "**Right-click to show the edit menu.**" + select_segment_multi: "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**" + select_segment_single: "**Click the top part of {street2} to select it.**" + multi_select: "Let's also select {street1}. You can shift-click to select. **Shift-click on {street2}.**" + multi_rightclick: "Good! Both lines to delete are now selected. **Right-click on one of the lines to show the edit menu.**" multi_delete: "**Click on the {button} button to delete the extra lines.**" retry_delete: "You didn't click the Delete button. Try again." play: "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index da910401c..0585f32fb 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -814,12 +814,14 @@ "finish_drag_endpoint": "This spot looks good. **Finish dragging by releasing the left mouse button**", "start_drag_midpoint": "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", - "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but did not build it. Let's delete the extra lines.", - "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything beyond it. **Right click on the intersection node**", + "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this map by deleting the extra lines.", + "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", - "multi_select": "You can select several lines by holding down the shift key when you click the lines to select them. **Shift-click to select both the northern part of {street1} and the {street2}.**", - "multi_rightclick": "**Right-click to show the edit menu.**", + "select_segment_multi": "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**", + "select_segment_single": "**Click the top part of {street2} to select it.**", + "multi_select": "Let's also select {street1}. You can shift-click to select. **Shift-click on {street2}.**", + "multi_rightclick": "Good! Both lines to delete are now selected. **Right-click on one of the lines to show the edit menu.**", "multi_delete": "**Click on the {button} button to delete the extra lines.**", "retry_delete": "You didn't click the Delete button. Try again.", "play": "Great! Use the skills that you've learned in this chapter to practice editing some more lines. **When you are ready to continue to the next chapter, click '{next}'.**" diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 3451d213f..28c2fba74 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -25,7 +25,10 @@ export function uiIntroLine(context, reveal) { washingtonStreetId = 'w522', twelfthAvenueId = 'w1', eleventhAvenueEndId = 'n3550', - twelfthAvenue = [-85.6211739802704, 41.95194238444386]; + washingtonSegmentId = null, + eleventhAvenueEnd = context.entity(eleventhAvenueEndId).loc, + deleteLinesLoc = [-85.6219395542764, 41.95228033922477], + twelfthAvenue = [-85.62219310052491, 41.952505413152956]; var chapter = { @@ -333,6 +336,7 @@ export function uiIntroLine(context, reveal) { ); context.map().on('move.intro drawn.intro', function() { + var padding = 250 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadDragMidpoint, padding, context); reveal(box, t('intro.lines.update_line'), { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } @@ -354,11 +358,11 @@ export function uiIntroLine(context, reveal) { } var padding = 40 * Math.pow(2, context.map().zoom() - 19); - var box = pad(woodRoadAddNode, padding, context); reveal(box, t('intro.lines.add_node')); context.map().on('move.intro drawn.intro', function() { + var padding = 40 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadAddNode, padding, context); reveal(box, t('intro.lines.add_node'), { duration: 0 }); }); @@ -396,7 +400,6 @@ export function uiIntroLine(context, reveal) { } var padding = 100 * Math.pow(2, context.map().zoom() - 19); - var box = pad(woodRoadDragEndpoint, padding, context); reveal(box, t('intro.lines.start_drag_endpoint')); @@ -404,7 +407,7 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } - + var padding = 100 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadDragEndpoint, padding, context); reveal(box, t('intro.lines.start_drag_endpoint'), { duration: 0 }); @@ -435,7 +438,6 @@ export function uiIntroLine(context, reveal) { } var padding = 100 * Math.pow(2, context.map().zoom() - 19); - var box = pad(woodRoadDragEndpoint, padding, context); reveal(box, t('intro.lines.finish_drag_endpoint')); @@ -443,6 +445,7 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } + var padding = 100 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadDragEndpoint, padding, context); reveal(box, t('intro.lines.finish_drag_endpoint'), { duration: 0 }); @@ -473,7 +476,6 @@ export function uiIntroLine(context, reveal) { } var padding = 80 * Math.pow(2, context.map().zoom() - 19); - var box = pad(woodRoadDragMidpoint, padding, context); reveal(box, t('intro.lines.start_drag_midpoint')); @@ -481,6 +483,7 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } + var padding = 80 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadDragMidpoint, padding, context); reveal(box, t('intro.lines.start_drag_midpoint'), { duration: 0 }); }); @@ -513,7 +516,6 @@ export function uiIntroLine(context, reveal) { } var padding = 100 * Math.pow(2, context.map().zoom() - 19); - var box = pad(woodRoadDragEndpoint, padding, context); box.height += 400; @@ -530,6 +532,7 @@ export function uiIntroLine(context, reveal) { if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return continueTo(updateLine); } + var padding = 100 * Math.pow(2, context.map().zoom() - 19); var box = pad(woodRoadDragEndpoint, padding, context); box.height += 400; reveal(box, t('intro.lines.continue_drag_midpoint'), @@ -554,11 +557,11 @@ export function uiIntroLine(context, reveal) { return chapter.restart(); } - context.map().zoom(17).centerEase(twelfthAvenue, 500); + context.map().zoom(18).centerEase(deleteLinesLoc, 500); timeout(function() { - var padding = 200 * Math.pow(2, context.map().zoom() - 17); - var box = pad(twelfthAvenue, padding, context); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(deleteLinesLoc, padding, context); box.top -= 200; box.height += 400; var advance = function() { continueTo(rightClickIntersection); }; @@ -568,7 +571,8 @@ export function uiIntroLine(context, reveal) { ); context.map().on('move.intro drawn.intro', function() { - var box = pad(twelfthAvenue, padding, context); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(deleteLinesLoc, padding, context); box.top -= 200; box.height += 400; reveal(box, t('intro.lines.delete_lines', { street: t('intro.graph.name.12th-avenue') }), @@ -586,44 +590,46 @@ export function uiIntroLine(context, reveal) { function rightClickIntersection() { context.history().reset('doneUpdateLine'); + context.map().zoom(18).centerEase(eleventhAvenueEnd, 500); - if (!context.hasEntity(washingtonStreetId) || - !context.hasEntity(twelfthAvenueId) || - !context.hasEntity(eleventhAvenueEndId)) { - return chapter.restart(); - } - - var entity = context.entity(eleventhAvenueEndId); - var padding = 60 * Math.pow(2, context.map().zoom() - 17); - - var box = pad(entity.loc, padding, context); - reveal(box, t('intro.lines.rightclick_intersection', - { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }) - ); - - context.map().on('move.intro drawn.intro', function() { - var box = pad(entity.loc, padding, context); + timeout(function() { + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); reveal(box, t('intro.lines.rightclick_intersection', - { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }), - { duration: 0 } + { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }) ); - }); - context.on('enter.intro', function(mode) { - if (mode.id !== 'select') return; - var ids = context.selectedIDs(); - if (ids.length !== 1 || ids[0] !== eleventhAvenueEndId) return; + context.map().on('move.intro drawn.intro', function() { + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); + reveal(box, t('intro.lines.rightclick_intersection', + { street1: t('intro.graph.name.11th-avenue'), street2: t('intro.graph.name.washington-street') }), + { duration: 0 } + ); + }); - timeout(function() { - var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); - if (!node) return; - continueTo(splitIntersection); - }, 300); // after menu visible - }); + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== eleventhAvenueEndId) return; + + timeout(function() { + var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + if (!node) return; + continueTo(splitIntersection); + }, 300); // after menu visible + }); + + context.history().on('change.intro', function() { + context.history().reset('doneUpdateLine'); + }); + + }, 550); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); context.on('enter.intro', null); + context.history().on('change.intro', null); nextStep(); } } @@ -640,10 +646,10 @@ export function uiIntroLine(context, reveal) { if (!node) { return continueTo(rightClickIntersection); } var wasChanged = false; - var entity = context.entity(eleventhAvenueEndId); - var padding = 60 * Math.pow(2, context.map().zoom() - 17); + washingtonSegmentId = null; - var box = pad(entity.loc, padding, context); + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); box.width += 100; box.height += 120; @@ -655,7 +661,8 @@ export function uiIntroLine(context, reveal) { var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); if (!wasChanged && !node) { return continueTo(rightClickIntersection); } - var box = pad(entity.loc, padding, context); + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); box.width += 100; box.height += 120; reveal(box, t('intro.lines.split_intersection', @@ -667,20 +674,21 @@ export function uiIntroLine(context, reveal) { context.on('enter.intro', function(mode) { if (mode.id === 'browse') { continueTo(rightClickIntersection); - } else if (mode.id === 'move' || mode.id === 'rotate') { - continueTo(retrySplit); } }); - context.history().on('change.intro', function() { + context.history().on('change.intro', function(changed) { wasChanged = true; context.history().on('change.intro', null); + context.on('enter.intro', null); // Something changed. Wait for transition to complete and check undo annotation. timeout(function() { if (context.history().undoAnnotation() === t('operations.split.annotation.line')) { - continueTo(play); + washingtonSegmentId = changed.created()[0].id; + continueTo(singleSelect); } else { + washingtonSegmentId = null; continueTo(retrySplit); } }, 500); // after transitioned actions @@ -697,15 +705,256 @@ export function uiIntroLine(context, reveal) { function retrySplit() { context.enter(modeBrowse(context)); + var advance = function() { continueTo(rightClickIntersection); }; - var padding = 60 * Math.pow(2, context.map().zoom() - 17); - var box = pad(entity.loc, padding, context); - box.width += 100; - box.height += 120; + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); + reveal(box, t('intro.lines.retry_split'), + { buttonText: t('intro.ok'), buttonCallback: advance } + ); - reveal(box, t('intro.lines.retry_split'), { + context.map().on('move.intro drawn.intro', function() { + var padding = 60 * Math.pow(2, context.map().zoom() - 18); + var box = pad(eleventhAvenueEnd, padding, context); + reveal(box, t('intro.lines.retry_split'), + { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } + ); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + + function singleSelect() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + + context.map().zoom(18).centerEase(twelfthAvenue, 400); + + timeout(function() { + var ids = context.selectedIDs(); + var string = 'intro.lines.select_segment_' + (ids.length > 1 ? 'multi' : 'single'); + + var street = t('intro.graph.name.washington-street'); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + box.width = box.width / 2; + reveal(box, t(string, { street1: street, street2: street })); + + context.map().on('move.intro drawn.intro', function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + box.width = box.width / 2; + reveal(box, t(string, { street1: street, street2: street }), + { duration: 0 } + ); + }); + + context.on('enter.intro', function() { + var ids = context.selectedIDs(); + if (ids.length === 1 && ids[0] === washingtonSegmentId) { + continueTo(multiSelect); + } + }); + + context.history().on('change.intro', function() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + }); + + }, 450); + + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function multiSelect() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + + context.map().zoom(18).centerEase(twelfthAvenue, 400); + + timeout(function() { + var street = t('intro.graph.name.12th-avenue'); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_select', { street1: street, street2: street })); + + context.map().on('move.intro drawn.intro', function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_select', { street1: street, street2: street }), + { duration: 0 } + ); + }); + + context.on('enter.intro', function() { + var ids = context.selectedIDs(); + if (ids.length === 2 && + ids.indexOf(twelfthAvenueId) !== -1 && + ids.indexOf(washingtonSegmentId) !== -1) { + return continueTo(multiRightClick); + } else { + return continueTo(singleSelect); + } + }); + + context.history().on('change.intro', function() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + }); + }, 450); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('enter.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function multiRightClick() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_rightclick')); + + context.map().on('move.intro drawn.intro', function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_rightclick'), { duration: 0 }); + }); + + d3.select(window).on('click.intro contextmenu.intro', function() { + d3.select(window).on('click.intro contextmenu.intro', null, true); + var ids = context.selectedIDs(); + if (ids.length === 2 && + ids.indexOf(twelfthAvenueId) !== -1 && + ids.indexOf(washingtonSegmentId) !== -1) { + timeout(function() { + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) return; + continueTo(multiDelete); + }, 300); // after menu visible + } else if (ids.length === 1 && + ids.indexOf(washingtonSegmentId) !== -1) { + return continueTo(multiSelect); + } else { + return continueTo(singleSelect); + } + }, true); + + context.history().on('change.intro', function() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + d3.select(window).on('click.intro contextmenu.intro', null, true); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function multiDelete() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + + var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + if (!node) return continueTo(multiRightClick); + + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_delete')); + + context.map().on('move.intro drawn.intro', function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.multi_delete'), { duration: 0 }); + }); + + context.on('exit.intro', function() { + if (!washingtonSegmentId) { + return continueTo(rightClickIntersection); + } + if (context.hasEntity(washingtonSegmentId) || context.hasEntity(twelfthAvenueId)) { + return continueTo(multiRightClick); // roads still exist + } + }); + + context.history().on('change.intro', function(changed) { + if (changed.deleted().length === 2) + continueTo(play); + else + continueTo(retryDelete); + }); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + context.on('exit.intro', null); + context.history().on('change.intro', null); + nextStep(); + } + } + + + function retryDelete() { + context.enter(modeBrowse(context)); + + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + reveal(box, t('intro.lines.retry_delete'), { buttonText: t('intro.ok'), - buttonCallback: function() { continueTo(rightClickIntersection); } + buttonCallback: function() { continueTo(multiRightClick); } }); function continueTo(nextStep) { @@ -727,8 +976,12 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - context.map().zoom(18.5).centerEase(tulipRoadStart); - addLine(); + // context.map().zoom(18.5).centerEase(tulipRoadStart); + // addLine(); + +// for testing: +context.history().checkpoint('doneUpdateLine'); +deleteLines(); }; From 7371f869c89d31dae9047ce35704918a1f971564 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 9 Apr 2017 20:29:05 -0400 Subject: [PATCH 62/91] Allow curtain to be called with a null box (no cutout) --- modules/ui/curtain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 89b74de50..914612079 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -53,7 +53,7 @@ export function uiCurtain() { curtain.reveal = function(box, text, options) { if (typeof box === 'string') box = d3.select(box).node(); - if (box.getBoundingClientRect) box = copyBox(box.getBoundingClientRect()); + if (box && box.getBoundingClientRect) box = copyBox(box.getBoundingClientRect()); options = options || {}; From ec1e5cb50d320c5966eec4d1af2eba7a1fa500f7 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 9 Apr 2017 23:55:13 -0400 Subject: [PATCH 63/91] Finish delete lines section of the walkthrough, add selectMenuItem helper --- data/core.yaml | 6 +- dist/locales/en.json | 6 +- modules/ui/intro/building.js | 14 +-- modules/ui/intro/helper.js | 7 ++ modules/ui/intro/line.js | 227 ++++++++++++++++++++--------------- modules/ui/intro/point.js | 4 +- 6 files changed, 149 insertions(+), 115 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 308e583da..aae6c6b26 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -955,9 +955,9 @@ en: rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." - select_segment_multi: "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**" - select_segment_single: "**Click the top part of {street2} to select it.**" - multi_select: "Let's also select {street1}. You can shift-click to select. **Shift-click on {street2}.**" + did_split_multi: "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**" + did_split_single: "**Click the top part of {street2} to select it.**" + multi_select: "{selected} is now selected. Let's also select {other1}. You can shift-click to select multiple things. **Shift-click on {other2}.**" multi_rightclick: "Good! Both lines to delete are now selected. **Right-click on one of the lines to show the edit menu.**" multi_delete: "**Click on the {button} button to delete the extra lines.**" retry_delete: "You didn't click the Delete button. Try again." diff --git a/dist/locales/en.json b/dist/locales/en.json index 0585f32fb..25e99528d 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -818,9 +818,9 @@ "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", - "select_segment_multi": "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**", - "select_segment_single": "**Click the top part of {street2} to select it.**", - "multi_select": "Let's also select {street1}. You can shift-click to select. **Shift-click on {street2}.**", + "did_split_multi": "Good Job! {street1} is now split into two pieces. The top part can be removed. **Click the top part of {street2} to select it.**", + "did_split_single": "**Click the top part of {street2} to select it.**", + "multi_select": "{selected} is now selected. Let's also select {other1}. You can shift-click to select multiple things. **Shift-click on {other2}.**", "multi_rightclick": "Good! Both lines to delete are now selected. **Right-click on one of the lines to show the edit menu.**", "multi_delete": "**Click on the {button} button to delete the extra lines.**", "retry_delete": "You didn't click the Delete button. Try again.", diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 55aaa0f6f..c2283e26c 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -2,7 +2,7 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { modeBrowse } from '../../modes/browse'; import { utilRebind } from '../../util/rebind'; -import { icon, pad } from './helper'; +import { icon, pad, selectMenuItem } from './helper'; export function uiIntroBuilding(context, reveal) { @@ -229,7 +229,7 @@ export function uiIntroBuilding(context, reveal) { if (ids.length !== 1 || ids[0] !== houseId) return; timeout(function() { - var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + var node = selectMenuItem('orthogonalize').node(); if (!node) return; continueTo(clickSquare); }, 300); // after menu visible @@ -257,7 +257,7 @@ export function uiIntroBuilding(context, reveal) { var entity = context.hasEntity(houseId); if (!entity) return continueTo(rightClickHouse); - var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + var node = selectMenuItem('orthogonalize').node(); if (!node) { return continueTo(rightClickHouse); } var wasChanged = false; @@ -275,7 +275,7 @@ export function uiIntroBuilding(context, reveal) { }); context.map().on('move.intro drawn.intro', function() { - var node = d3.select('.edit-menu-item-orthogonalize, .radial-menu-item-orthogonalize').node(); + var node = selectMenuItem('orthogonalize').node(); if (!wasChanged && !node) { return continueTo(rightClickHouse); } revealHouse(house, @@ -510,7 +510,7 @@ export function uiIntroBuilding(context, reveal) { if (ids.length !== 1 || ids[0] !== tankId) return; timeout(function() { - var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + var node = selectMenuItem('circularize').node(); if (!node) return; continueTo(clickCircle); }, 300); // after menu visible @@ -538,7 +538,7 @@ export function uiIntroBuilding(context, reveal) { var entity = context.hasEntity(tankId); if (!entity) return continueTo(rightClickTank); - var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + var node = selectMenuItem('circularize').node(); if (!node) { return continueTo(rightClickTank); } var wasChanged = false; @@ -556,7 +556,7 @@ export function uiIntroBuilding(context, reveal) { }); context.map().on('move.intro drawn.intro', function() { - var node = d3.select('.edit-menu-item-circularize, .radial-menu-item-circularize').node(); + var node = selectMenuItem('circularize').node(); if (!wasChanged && !node) { return continueTo(rightClickTank); } revealTank(tank, diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index eeef881e3..ed3e845e0 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -1,3 +1,4 @@ +import * as d3 from 'd3'; import { t } from '../../util/locale'; export function pointBox(loc, context) { @@ -92,3 +93,9 @@ export function localize(obj) { return obj; } + +export function selectMenuItem(operation) { + var selector = '.edit-menu .edit-menu-item-' + operation + + ', .radial-menu .radial-menu-item-' + operation; + return d3.select(selector); +} diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 28c2fba74..1259a08c9 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -4,7 +4,7 @@ import { t } from '../../util/locale'; import { geoSphericalDistance } from '../../geo'; import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; -import { icon, pad } from './helper'; +import { icon, pad, selectMenuItem } from './helper'; export function uiIntroLine(context, reveal) { @@ -25,8 +25,10 @@ export function uiIntroLine(context, reveal) { washingtonStreetId = 'w522', twelfthAvenueId = 'w1', eleventhAvenueEndId = 'n3550', + twelfthAvenueEndId = 'n5', washingtonSegmentId = null, eleventhAvenueEnd = context.entity(eleventhAvenueEndId).loc, + twelfthAvenueEnd = context.entity(twelfthAvenueEndId).loc, deleteLinesLoc = [-85.6219395542764, 41.95228033922477], twelfthAvenue = [-85.62219310052491, 41.952505413152956]; @@ -579,10 +581,18 @@ export function uiIntroLine(context, reveal) { { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } ); }); + + context.history().on('change.intro', function() { + timeout(function() { + continueTo(deleteLines); + }, 500); // after any transition (e.g. if user deleted intersection) + }); + }, 550); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); + context.history().on('change.intro', null); nextStep(); } } @@ -590,6 +600,7 @@ export function uiIntroLine(context, reveal) { function rightClickIntersection() { context.history().reset('doneUpdateLine'); + context.enter(modeBrowse(context)); context.map().zoom(18).centerEase(eleventhAvenueEnd, 500); timeout(function() { @@ -614,14 +625,16 @@ export function uiIntroLine(context, reveal) { if (ids.length !== 1 || ids[0] !== eleventhAvenueEndId) return; timeout(function() { - var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + var node = selectMenuItem('split').node(); if (!node) return; continueTo(splitIntersection); }, 300); // after menu visible }); context.history().on('change.intro', function() { - context.history().reset('doneUpdateLine'); + timeout(function() { + continueTo(deleteLines); + }, 300); // after any transition (e.g. if user deleted intersection) }); }, 550); @@ -642,7 +655,7 @@ export function uiIntroLine(context, reveal) { return continueTo(deleteLines); } - var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + var node = selectMenuItem('split').node(); if (!node) { return continueTo(rightClickIntersection); } var wasChanged = false; @@ -658,7 +671,7 @@ export function uiIntroLine(context, reveal) { ); context.map().on('move.intro drawn.intro', function() { - var node = d3.select('.edit-menu-item-split, .radial-menu-item-split').node(); + var node = selectMenuItem('split').node(); if (!wasChanged && !node) { return continueTo(rightClickIntersection); } var padding = 60 * Math.pow(2, context.map().zoom() - 18); @@ -671,31 +684,20 @@ export function uiIntroLine(context, reveal) { ); }); - context.on('enter.intro', function(mode) { - if (mode.id === 'browse') { - continueTo(rightClickIntersection); - } - }); - context.history().on('change.intro', function(changed) { wasChanged = true; - context.history().on('change.intro', null); - context.on('enter.intro', null); - - // Something changed. Wait for transition to complete and check undo annotation. timeout(function() { if (context.history().undoAnnotation() === t('operations.split.annotation.line')) { washingtonSegmentId = changed.created()[0].id; - continueTo(singleSelect); + continueTo(didSplit); } else { washingtonSegmentId = null; continueTo(retrySplit); } - }, 500); // after transitioned actions + }, 300); // after any transition (e.g. if user deleted intersection) }); function continueTo(nextStep) { - context.on('enter.intro', null); context.map().on('move.intro drawn.intro', null); context.history().on('change.intro', null); nextStep(); @@ -705,6 +707,7 @@ export function uiIntroLine(context, reveal) { function retrySplit() { context.enter(modeBrowse(context)); + context.map().zoom(18).centerEase(eleventhAvenueEnd, 500); var advance = function() { continueTo(rightClickIntersection); }; var padding = 60 * Math.pow(2, context.map().zoom() - 18); @@ -728,7 +731,7 @@ export function uiIntroLine(context, reveal) { } - function singleSelect() { + function didSplit() { if (!washingtonSegmentId || !context.hasEntity(washingtonSegmentId) || !context.hasEntity(washingtonStreetId) || @@ -739,44 +742,40 @@ export function uiIntroLine(context, reveal) { context.map().zoom(18).centerEase(twelfthAvenue, 400); - timeout(function() { - var ids = context.selectedIDs(); - var string = 'intro.lines.select_segment_' + (ids.length > 1 ? 'multi' : 'single'); + var ids = context.selectedIDs(); + var string = 'intro.lines.did_split_' + (ids.length > 1 ? 'multi' : 'single'); - var street = t('intro.graph.name.washington-street'); + var street = t('intro.graph.name.washington-street'); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + box.width = box.width / 2; + reveal(box, t(string, { street1: street, street2: street })); + + context.map().on('move.intro drawn.intro', function() { var padding = 200 * Math.pow(2, context.map().zoom() - 18); var box = pad(twelfthAvenue, padding, context); box.width = box.width / 2; - reveal(box, t(string, { street1: street, street2: street })); + reveal(box, t(string, { street1: street, street2: street }), + { duration: 0 } + ); + }); - context.map().on('move.intro drawn.intro', function() { - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - box.width = box.width / 2; - reveal(box, t(string, { street1: street, street2: street }), - { duration: 0 } - ); - }); - - context.on('enter.intro', function() { - var ids = context.selectedIDs(); - if (ids.length === 1 && ids[0] === washingtonSegmentId) { - continueTo(multiSelect); - } - }); - - context.history().on('change.intro', function() { - if (!washingtonSegmentId || - !context.hasEntity(washingtonSegmentId) || - !context.hasEntity(washingtonStreetId) || - !context.hasEntity(twelfthAvenueId) || - !context.hasEntity(eleventhAvenueEndId)) { - return continueTo(rightClickIntersection); - } - }); - - }, 450); + context.on('enter.intro', function() { + var ids = context.selectedIDs(); + if (ids.length === 1 && ids[0] === washingtonSegmentId) { + continueTo(multiSelect); + } + }); + context.history().on('change.intro', function() { + if (!washingtonSegmentId || + !context.hasEntity(washingtonSegmentId) || + !context.hasEntity(washingtonStreetId) || + !context.hasEntity(twelfthAvenueId) || + !context.hasEntity(eleventhAvenueEndId)) { + return continueTo(rightClickIntersection); + } + }); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -796,31 +795,61 @@ export function uiIntroLine(context, reveal) { return continueTo(rightClickIntersection); } + var ids = context.selectedIDs(); + var hasWashington = ids.indexOf(washingtonSegmentId) !== -1; + var hasTwelfth = ids.indexOf(twelfthAvenueId) !== -1; + + if (hasWashington && hasTwelfth) { + return continueTo(multiRightClick); + } else if (!hasWashington && !hasTwelfth) { + return continueTo(didSplit); + } + context.map().zoom(18).centerEase(twelfthAvenue, 400); timeout(function() { - var street = t('intro.graph.name.12th-avenue'); - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - reveal(box, t('intro.lines.multi_select', { street1: street, street2: street })); + var selected, other, padding, box; + if (hasWashington) { + selected = t('intro.graph.name.washington-street'); + other = t('intro.graph.name.12th-avenue'); + padding = 60 * Math.pow(2, context.map().zoom() - 18); + box = pad(twelfthAvenueEnd, padding, context); + box.width *= 3; + } else { + selected = t('intro.graph.name.12th-avenue'); + other = t('intro.graph.name.washington-street'); + padding = 200 * Math.pow(2, context.map().zoom() - 18); + box = pad(twelfthAvenue, padding, context); + box.width /= 2; + } + + reveal(box, + t('intro.lines.multi_select', { selected: selected, other1: other, other2: other }) + ); context.map().on('move.intro drawn.intro', function() { - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - reveal(box, t('intro.lines.multi_select', { street1: street, street2: street }), + if (hasWashington) { + selected = t('intro.graph.name.washington-street'); + other = t('intro.graph.name.12th-avenue'); + padding = 60 * Math.pow(2, context.map().zoom() - 18); + box = pad(twelfthAvenueEnd, padding, context); + box.width *= 3; + } else { + selected = t('intro.graph.name.12th-avenue'); + other = t('intro.graph.name.washington-street'); + padding = 200 * Math.pow(2, context.map().zoom() - 18); + box = pad(twelfthAvenue, padding, context); + box.width /= 2; + } + + reveal(box, + t('intro.lines.multi_select', { selected: selected, other1: other, other2: other }), { duration: 0 } ); }); context.on('enter.intro', function() { - var ids = context.selectedIDs(); - if (ids.length === 2 && - ids.indexOf(twelfthAvenueId) !== -1 && - ids.indexOf(washingtonSegmentId) !== -1) { - return continueTo(multiRightClick); - } else { - return continueTo(singleSelect); - } + continueTo(multiSelect); }); context.history().on('change.intro', function() { @@ -863,22 +892,21 @@ export function uiIntroLine(context, reveal) { }); d3.select(window).on('click.intro contextmenu.intro', function() { - d3.select(window).on('click.intro contextmenu.intro', null, true); - var ids = context.selectedIDs(); - if (ids.length === 2 && - ids.indexOf(twelfthAvenueId) !== -1 && - ids.indexOf(washingtonSegmentId) !== -1) { - timeout(function() { - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); - if (!node) return; - continueTo(multiDelete); - }, 300); // after menu visible - } else if (ids.length === 1 && - ids.indexOf(washingtonSegmentId) !== -1) { - return continueTo(multiSelect); - } else { - return continueTo(singleSelect); - } + timeout(function() { + var ids = context.selectedIDs(); + if (ids.length === 2 && + ids.indexOf(twelfthAvenueId) !== -1 && + ids.indexOf(washingtonSegmentId) !== -1) { + var node = selectMenuItem('delete').node(); + if (!node) return; + continueTo(multiDelete); + } else if (ids.length === 1 && + ids.indexOf(washingtonSegmentId) !== -1) { + return continueTo(multiSelect); + } else { + return continueTo(didSplit); + } + }, 300); // after edit menu visible }, true); context.history().on('change.intro', function() { @@ -909,33 +937,36 @@ export function uiIntroLine(context, reveal) { return continueTo(rightClickIntersection); } - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + var node = selectMenuItem('delete').node(); if (!node) return continueTo(multiRightClick); var padding = 200 * Math.pow(2, context.map().zoom() - 18); var box = pad(twelfthAvenue, padding, context); - reveal(box, t('intro.lines.multi_delete')); + reveal(box, + t('intro.lines.multi_delete', { button: icon('#operation-delete', 'pre-text') }) + ); context.map().on('move.intro drawn.intro', function() { var padding = 200 * Math.pow(2, context.map().zoom() - 18); var box = pad(twelfthAvenue, padding, context); - reveal(box, t('intro.lines.multi_delete'), { duration: 0 }); + reveal(box, + t('intro.lines.multi_delete', { button: icon('#operation-delete', 'pre-text') }), + { duration: 0 } + ); }); context.on('exit.intro', function() { - if (!washingtonSegmentId) { - return continueTo(rightClickIntersection); - } if (context.hasEntity(washingtonSegmentId) || context.hasEntity(twelfthAvenueId)) { - return continueTo(multiRightClick); // roads still exist + return continueTo(multiSelect); // left select mode but roads still exist } }); - context.history().on('change.intro', function(changed) { - if (changed.deleted().length === 2) + context.history().on('change.intro', function() { + if (context.hasEntity(washingtonSegmentId) || context.hasEntity(twelfthAvenueId)) { + continueTo(retryDelete); // changed something but roads still exist + } else { continueTo(play); - else - continueTo(retryDelete); + } }); function continueTo(nextStep) { @@ -954,7 +985,7 @@ export function uiIntroLine(context, reveal) { var box = pad(twelfthAvenue, padding, context); reveal(box, t('intro.lines.retry_delete'), { buttonText: t('intro.ok'), - buttonCallback: function() { continueTo(multiRightClick); } + buttonCallback: function() { continueTo(multiSelect); } }); function continueTo(nextStep) { @@ -976,12 +1007,8 @@ export function uiIntroLine(context, reveal) { chapter.enter = function() { context.history().reset('initial'); - // context.map().zoom(18.5).centerEase(tulipRoadStart); - // addLine(); - -// for testing: -context.history().checkpoint('doneUpdateLine'); -deleteLines(); + context.map().zoom(18.5).centerEase(tulipRoadStart); + addLine(); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index 7f6677942..b5f4ee626 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,7 +1,7 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { icon, pointBox, pad } from './helper'; +import { icon, pointBox, pad, selectMenuItem } from './helper'; export function uiIntroPoint(context, reveal) { @@ -285,7 +285,7 @@ export function uiIntroPoint(context, reveal) { if (ids.length !== 1 || ids[0] !== pointId) return; timeout(function() { - var node = d3.select('.edit-menu-item-delete, .radial-menu-item-delete').node(); + var node = selectMenuItem('delete').node(); if (!node) return; continueTo(enterDelete); }, 300); // after menu visible From 8a2e1633c91d757fd506543801a463e1beb7bb37 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 10 Apr 2017 16:59:41 -0400 Subject: [PATCH 64/91] Adjust timings, language, transitions in walkthrough --- css/80_app.css | 6 ++ data/core.yaml | 45 +++++------ dist/locales/en.json | 45 +++++------ modules/ui/intro/area.js | 58 +++++++++------ modules/ui/intro/building.js | 120 ++++++++++++++++-------------- modules/ui/intro/helper.js | 15 ++++ modules/ui/intro/line.js | 112 ++++++++++++++++++---------- modules/ui/intro/navigation.js | 55 ++++++++------ modules/ui/intro/point.js | 63 +++++++++------- modules/ui/intro/start_editing.js | 93 ++++++++++++----------- 10 files changed, 358 insertions(+), 254 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 49173a01e..8b11425d1 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3674,6 +3674,12 @@ img.tile-removing { margin: 0; } +.curtain-tooltip .tooltip-inner .icon.pre-text { + vertical-align: text-top; + margin-right: 0; + display: inline-block; +} + .curtain-tooltip.intro-points-describe { top: 133px !important; } diff --git a/data/core.yaml b/data/core.yaml index aae6c6b26..cde32efdd 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -901,25 +901,25 @@ en: drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**" selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." - pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**" + pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" - chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**" + chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" add_point: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" place_point: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**" - search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{name}'**" - choose_cafe: "**Choose {name} from the list.**" + search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**" + choose_cafe: "**Choose {preset} from the list.**" feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." add_name: "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**" add_close: "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**" reselect: "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**" update: "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**" update_close: "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**" - rightclick: "You can right-click on features to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" - delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" + rightclick: "You can right-click on any feature to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**" + delete: "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**" undo: "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**" play: "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" areas: @@ -927,11 +927,11 @@ en: add_playground: "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**" start_playground: "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**" continue_playground: "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**" - search_playground: "**Search for '{name}'.**" - choose_playground: "**Choose {name} from the list.**" + search_playground: "**Search for '{preset}'.**" + choose_playground: "**Choose {preset} from the list.**" add_field: "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**" - choose_field: "**Choose {name} from the list.**" - retry_add_field: "You didn't select the {name} field. Let's try again." + choose_field: "**Choose {field} from the list.**" + retry_add_field: "You didn't select the {field} field. Let's try again." describe_playground: "**Add a description, then click the {button} button to close the feature editor.**" play: "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" lines: @@ -941,17 +941,18 @@ en: intersect: "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**" retry_intersect: "The road needs to intersect {name}. Let's try again!" continue_line: "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**" - choose_category_road: "**Select {name} from the list**" - choose_preset_residential: "There are many different types of roads, but this one is a residential road. **Choose the {name} type**" - retry_preset_residential: "You didn't select the {name} type. **Click here to choose again**" + choose_category_road: "**Select {category} from the list**" + choose_preset_residential: "There are many different types of roads, but this one is a residential road. **Choose the {preset} type**" + retry_preset_residential: "You didn't select the {preset} type. **Click here to choose again**" name_road: "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**" + did_name_road: "Looks good! Next we will learn how to update the shape of a line." update_line: "Sometimes you will need to change the shape of an existing line. Here is a road that doesn't look quite right." add_node: "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**" start_drag_endpoint: "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**" - finish_drag_endpoint: "This spot looks good. **Finish dragging by releasing the left mouse button**" + finish_drag_endpoint: "This spot looks good. **Release the left mouse button to finish dragging.**" start_drag_midpoint: "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**" continue_drag_midpoint: "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**" - delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this map by deleting the extra lines." + delete_lines: "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines." rightclick_intersection: "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**" split_intersection: "**Click on the {button} button to split {street}.**" retry_split: "You didn't click the Split button. Try again." @@ -967,9 +968,9 @@ en: add_building: "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**" start_building: "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**" continue_building: "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**" - choose_category_building: "**Choose {name} from the list**" - choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**" - close: "**Hit escape, or click the {button} button to close the feature editor**" + choose_category_building: "**Choose {category} from the list**" + choose_preset_house: "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**" + close: "**Hit escape or click the {button} button to close the feature editor**" rightclick_building: "**Right-click to select the building you created and show the edit menu.**" square_building: "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**" retry_square: "You didn't click the Square button. Try again." @@ -977,14 +978,14 @@ en: add_tank: "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**" start_tank: "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**" continue_tank: "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**" - search_tank: "**Search for '{name}'**" - choose_tank: "**Choose {name} from the list.**" + search_tank: "**Search for '{preset}'**" + choose_tank: "**Choose {preset} from the list.**" rightclick_tank: "**Right-click to select the storage tank you created and show the edit menu.**" circle_tank: "**Click on the {button} button to make the tank a circle.**" retry_circle: "You didn't click the Circularize button. Try again." - play: "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" + play: "Great Job! Practice tracing a few more buildings, and try some of the other commands on the edit menu. **When you are ready to continue to the next chapter, click '{next}'.**" startediting: title: "Start Editing" - help: "You can replay this walkthrough or view more documentation by clicking the {button} Help button." + help: "You're now ready to edit OpenStreetMap! You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button." save: "Don't forget to regularly save your changes!" start: "Start mapping!" diff --git a/dist/locales/en.json b/dist/locales/en.json index 25e99528d..d2f2fc71a 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -761,26 +761,26 @@ "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", - "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by pressing the {button} button in the top right.**", + "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", - "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by pressing the {button} button.**", + "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { "title": "Points", "add_point": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", "place_point": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**", - "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{name}'**", - "choose_cafe": "**Choose {name} from the list.**", + "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**", + "choose_cafe": "**Choose {preset} from the list.**", "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", "add_name": "In OpenStreetMap, all of the fields are optional, and it's ok to leave a field blank if you are unsure. Let's pretend that you have local knowledge of this cafe, and you know its name. **Add a name for the cafe**", "add_close": "The feature editor will remember all of your changes automatically. **When you are finished adding the name, hit escape, return, or click the {button} button to close the feature editor**", "reselect": "Often points will already exist, but have mistakes or be incomplete. We can edit existing points. **Click to select the cafe you just created.**", "update": "Let's fill in some more details for this cafe. You can change its name, add a cuisine, or add an address. **Change the cafe details**", "update_close": "**When you are finished updating the cafe, hit escape, return, or click the {button} button to close the feature editor**", - "rightclick": "You can right-click on features to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", - "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", + "rightclick": "You can right-click on any feature to see the edit menu, which shows a list of editing operations that can be performed. **Right-click to select the point you created and show the edit menu.**", + "delete": "It's ok to delete features that don't exist in the real world. Deleting a feature from OpenStreetMap removes it from the map that everyone uses, so you should make sure a feature is really gone before you delete it. **Click on the {button} button to delete the point.**", "undo": "You can always undo any changes up until you save your edits to OpenStreetMap. **Click on the {button} button to undo the delete and get the point back.**", "play": "Now that you know how to create and edit points, try creating a few more points for practice! **When you are ready to continue to the next chapter, click '{next}'.**" }, @@ -789,11 +789,11 @@ "add_playground": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the {button} Area button to add a new area.**", "start_playground": "Areas are drawn by placing nodes along the outer edge of the area. **Click or press spacebar to place a starting node on one of the corners of the playground.**", "continue_playground": "Continue drawing the area by placing more nodes around the playground. Finish the area by clicking on the starting node. **Draw an area for the playground.**", - "search_playground": "**Search for '{name}'.**", - "choose_playground": "**Choose {name} from the list.**", + "search_playground": "**Search for '{preset}'.**", + "choose_playground": "**Choose {preset} from the list.**", "add_field": "This playground doesn't have an official name, so we won't add anything in the Name field. Instead let's add some additional details about the playground to the Description field. **Open the Add Field list.**", - "choose_field": "**Choose {name} from the list.**", - "retry_add_field": "You didn't select the {name} field. Let's try again.", + "choose_field": "**Choose {field} from the list.**", + "retry_add_field": "You didn't select the {field} field. Let's try again.", "describe_playground": "**Add a description, then click the {button} button to close the feature editor.**", "play": "Good job! Try drawing a few more areas. Explore the presets and see what other kinds of areas you can add to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, @@ -804,17 +804,18 @@ "intersect": "Click or press spacebar to add more nodes to the line. Roads, and many other types of lines, are part of a larger network. It is important for these lines to be connected properly in order for routing applications to work. **Click on {name} to create an intersection connecting the two lines.**", "retry_intersect": "The road needs to intersect {name}. Let's try again!", "continue_line": "Continue drawing the line for the new road. Remember that you can drag and zoom the map if needed. When you are finished drawing, click on the last node again. **Finish drawing the road.**", - "choose_category_road": "**Select {name} from the list**", - "choose_preset_residential": "There are many different types of roads, but this one is a residential road. **Choose the {name} type**", - "retry_preset_residential": "You didn't select the {name} type. **Click here to choose again**", + "choose_category_road": "**Select {category} from the list**", + "choose_preset_residential": "There are many different types of roads, but this one is a residential road. **Choose the {preset} type**", + "retry_preset_residential": "You didn't select the {preset} type. **Click here to choose again**", "name_road": "**Give this road a name, then hit escape, return, or click the {button} button to close the feature editor.**", + "did_name_road": "Looks good! Next we will learn how to update the shape of a line.", "update_line": "Sometimes you will need to change the shape of an existing line. Here is a road that doesn't look quite right.", "add_node": "We can add some nodes to this line to improve its shape. One way to add a node is to double-click the line where you want to add a node. **Double-click on the line to create a new node.**", "start_drag_endpoint": "When a line is selected, you can drag any of its nodes by clicking and holding down the left mouse button while you drag. **Drag the endpoint to the place where these roads should intersect.**", - "finish_drag_endpoint": "This spot looks good. **Finish dragging by releasing the left mouse button**", + "finish_drag_endpoint": "This spot looks good. **Release the left mouse button to finish dragging.**", "start_drag_midpoint": "Small triangles are drawn at the midpoints between nodes. Another way to create a new node is to drag a midpoint to a new location. **Drag the midpoint triangle to create a new node along the curve of the road.**", "continue_drag_midpoint": "This line is looking much better! Continue to adjust this line by double-clicking or dragging midpoints until the curve matches the road shape. **When you're happy with how the line looks, click OK.**", - "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this map by deleting the extra lines.", + "delete_lines": "It is ok to delete lines for roads that don't exist in the real world. Here's an example where the city planned a {street} but never built it. We can improve this part of the map by deleting the extra lines.", "rightclick_intersection": "The last real street is {street1}, so we will split {street2} at this intersection and remove everything above it. **Right click on the intersection node**", "split_intersection": "**Click on the {button} button to split {street}.**", "retry_split": "You didn't click the Split button. Try again.", @@ -831,9 +832,9 @@ "add_building": "OpenStreetMap is the world's largest database of buildings. You can help improve this database by tracing buildings that aren't already mapped. **Click the {button} Area button to add a new area.**", "start_building": "Let's add this house to the map by tracing its outline. Buildings should be traced around their footprint as accurately as possible. **Click or press spacebar to place a starting node on one of the corners of the building.**", "continue_building": "Continue adding more nodes to trace the outline of the building. Remember that you can zoom in if you want to add more details. Finish the building shape by clicking on the starting node. **Continue tracing the building.**", - "choose_category_building": "**Choose {name} from the list**", - "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {name} building type**", - "close": "**Hit escape, or click the {button} button to close the feature editor**", + "choose_category_building": "**Choose {category} from the list**", + "choose_preset_house": "There are many different types of buildings, but this one is clearly a house. If you're not sure of the type, it's OK to just pick the generic Building preset. **Choose the {preset} building type**", + "close": "**Hit escape or click the {button} button to close the feature editor**", "rightclick_building": "**Right-click to select the building you created and show the edit menu.**", "square_building": "The house that you just added will look even better with perfectly square corners. **Click on the {button} button to square the building shape.**", "retry_square": "You didn't click the Square button. Try again.", @@ -841,16 +842,16 @@ "add_tank": "Next we'll trace this circular storage tank. **Click the {button} Area button to add a new area.**", "start_tank": "Don't worry, you won't need to draw a perfect circle. Just draw an area inside the tank that touches its edge. **Click or press spacebar to place a starting node on the edge of the tank.**", "continue_tank": "Add a few more points around the edge. The circle will be created outside the points that you draw. Finish the area by clicking on the starting node. **Continue tracing the tank.**", - "search_tank": "**Search for '{name}'**", - "choose_tank": "**Choose {name} from the list.**", + "search_tank": "**Search for '{preset}'**", + "choose_tank": "**Choose {preset} from the list.**", "rightclick_tank": "**Right-click to select the storage tank you created and show the edit menu.**", "circle_tank": "**Click on the {button} button to make the tank a circle.**", "retry_circle": "You didn't click the Circularize button. Try again.", - "play": "Great Job! Try tracing a few more buildings. **When you are ready to continue to the next chapter, click '{next}'.**" + "play": "Great Job! Practice tracing a few more buildings, and try some of the other commands on the edit menu. **When you are ready to continue to the next chapter, click '{next}'.**" }, "startediting": { "title": "Start Editing", - "help": "You can replay this walkthrough or view more documentation by clicking the {button} Help button.", + "help": "You're now ready to edit OpenStreetMap! You can replay this walkthrough anytime or view more documentation by clicking the {button} Help button.", "save": "Don't forget to regularly save your changes!", "start": "Start mapping!" } diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index 86ff4477a..496b18240 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -1,7 +1,7 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { icon, pad } from './helper'; +import { icon, pad, transitionTime } from './helper'; export function uiIntroArea(context, reveal) { @@ -29,19 +29,27 @@ export function uiIntroArea(context, reveal) { function addArea() { - var tooltip = reveal('button.add-area', - t('intro.areas.add_playground', { button: icon('#icon-area', 'pre-text') })); + context.history().reset('initial'); - tooltip.selectAll('.tooltip-inner') - .insert('svg', 'span') - .attr('class', 'tooltip-illustration') - .append('use') - .attr('xlink:href', '#landuse-images'); + var msec = transitionTime(playground, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(playground, msec); - context.on('enter.intro', function(mode) { - if (mode.id !== 'add-area') return; - continueTo(startPlayground); - }); + timeout(function() { + var tooltip = reveal('button.add-area', + t('intro.areas.add_playground', { button: icon('#icon-area', 'pre-text') })); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#landuse-images'); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startPlayground); + }); + }, msec + 100); function continueTo(nextStep) { context.on('enter.intro', null); @@ -124,7 +132,7 @@ export function uiIntroArea(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.areas.search_playground', { name: playgroundPreset.name() }) + t('intro.areas.search_playground', { preset: playgroundPreset.name() }) ); }, 500); } @@ -135,7 +143,7 @@ export function uiIntroArea(context, reveal) { if (first.classed('preset-leisure-playground')) { reveal(first.select('.preset-list-button').node(), - t('intro.areas.choose_playground', { name: playgroundPreset.name() }), + t('intro.areas.choose_playground', { preset: playgroundPreset.name() }), { duration: 300 } ); @@ -163,13 +171,16 @@ export function uiIntroArea(context, reveal) { }); timeout(function() { - reveal('.more-fields .combobox-input', t('intro.areas.add_field')); + reveal('.more-fields .combobox-input', + t('intro.areas.add_field'), + { duration: 300 } + ); d3.select('.more-fields .combobox-input') .on('click.intro', function() { continueTo(chooseDescriptionField); }); - }, 500); + }, 300); // after editor pane visible function continueTo(nextStep) { d3.select('.more-fields .combobox-input').on('click.intro', null); @@ -185,7 +196,7 @@ export function uiIntroArea(context, reveal) { }); reveal('div.combobox', - t('intro.areas.choose_field', { name: descriptionField.label() }), + t('intro.areas.choose_field', { field: descriptionField.label() }), { duration: 300 } ); @@ -213,7 +224,8 @@ export function uiIntroArea(context, reveal) { }); reveal('.entity-editor-pane', - t('intro.areas.describe_playground', { button: icon('#icon-apply', 'pre-text') }) + t('intro.areas.describe_playground', { button: icon('#icon-apply', 'pre-text') }), + { duration: 300 } ); function continueTo(nextStep) { @@ -229,7 +241,7 @@ export function uiIntroArea(context, reveal) { }); reveal('.entity-editor-pane', - t('intro.areas.retry_add_field', { name: descriptionField.label() }), { + t('intro.areas.retry_add_field', { field: descriptionField.label() }), { buttonText: t('intro.ok'), buttonCallback: function() { continueTo(clickAddField); } }); @@ -242,19 +254,19 @@ export function uiIntroArea(context, reveal) { function play() { - dispatch.call('done'); reveal('.intro-nav-wrap .chapter-line', t('intro.areas.play', { next: t('intro.lines.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { reveal('#id-container'); } + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } } ); } chapter.enter = function() { - context.history().reset('initial'); - context.map().zoom(19).centerEase(playground); addArea(); }; diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index c2283e26c..39b82ed95 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -2,7 +2,7 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; import { modeBrowse } from '../../modes/browse'; import { utilRebind } from '../../util/rebind'; -import { icon, pad, selectMenuItem } from './helper'; +import { icon, pad, selectMenuItem, transitionTime } from './helper'; export function uiIntroBuilding(context, reveal) { @@ -39,6 +39,7 @@ export function uiIntroBuilding(context, reveal) { reveal(box, text, options); } + function revealTank(center, text, options) { var padding = 190 * Math.pow(2, context.map().zoom() - 19.5); var box = pad(center, padding, context); @@ -47,22 +48,32 @@ export function uiIntroBuilding(context, reveal) { function addHouse() { - var tooltip = reveal('button.add-area', - t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); - - tooltip.selectAll('.tooltip-inner') - .insert('svg', 'span') - .attr('class', 'tooltip-illustration') - .append('use') - .attr('xlink:href', '#building-images'); - houseId = null; + tankId = null; context.history().reset('initial'); - context.on('enter.intro', function(mode) { - if (mode.id !== 'add-area') return; - continueTo(startHouse); - }); + var msec = transitionTime(house, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(house, msec); + + timeout(function() { + var tooltip = reveal('button.add-area', + t('intro.buildings.add_building', { button: icon('#icon-area', 'pre-text') })); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#building-images'); + + houseId = null; + context.history().reset('initial'); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startHouse); + }); + }, msec + 100); function continueTo(nextStep) { context.on('enter.intro', null); @@ -144,7 +155,7 @@ export function uiIntroBuilding(context, reveal) { timeout(function() { reveal(button.node(), - t('intro.buildings.choose_category_building', { name: buildingCatetory.name() }) + t('intro.buildings.choose_category_building', { category: buildingCatetory.name() }) ); button.on('click.intro', function() { continueTo(choosePresetHouse); }); }, 500); @@ -171,7 +182,7 @@ export function uiIntroBuilding(context, reveal) { timeout(function() { reveal(button.node(), - t('intro.buildings.choose_preset_house', { name: housePreset.name() }), + t('intro.buildings.choose_preset_house', { preset: housePreset.name() }), { duration: 300 } ); button.on('click.intro', function() { continueTo(closeEditorHouse); }); @@ -336,18 +347,23 @@ export function uiIntroBuilding(context, reveal) { function addTank() { - reveal('button.add-area', - t('intro.buildings.add_tank', { button: icon('#icon-area', 'pre-text') }) - ); - tankId = null; context.history().reset('doneSquare'); - context.map().zoom(19.5).centerEase(tank, 500); - context.on('enter.intro', function(mode) { - if (mode.id !== 'add-area') return; - continueTo(startTank); - }); + var msec = transitionTime(tank, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19.5).centerEase(tank, msec); + + timeout(function() { + reveal('button.add-area', + t('intro.buildings.add_tank', { button: icon('#icon-area', 'pre-text') }) + ); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-area') return; + continueTo(startTank); + }); + }, msec + 100); function continueTo(nextStep) { context.on('enter.intro', null); @@ -427,7 +443,7 @@ export function uiIntroBuilding(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.buildings.search_tank', { name: tankPreset.name() }) + t('intro.buildings.search_tank', { preset: tankPreset.name() }) ); }, 500); @@ -444,7 +460,7 @@ export function uiIntroBuilding(context, reveal) { if (first.classed('preset-man_made-storage_tank')) { reveal(first.select('.preset-list-button').node(), - t('intro.buildings.choose_tank', { name: tankPreset.name() }), + t('intro.buildings.choose_tank', { preset: tankPreset.name() }), { duration: 300 } ); @@ -499,30 +515,28 @@ export function uiIntroBuilding(context, reveal) { context.map().centerEase(tank, 500); timeout(function() { - if (context.map().zoom() < 19.5) { - context.map().zoomEase(19.5, 500); - } - }, 520); + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + var ids = context.selectedIDs(); + if (ids.length !== 1 || ids[0] !== tankId) return; - context.on('enter.intro', function(mode) { - if (mode.id !== 'select') return; - var ids = context.selectedIDs(); - if (ids.length !== 1 || ids[0] !== tankId) return; + timeout(function() { + var node = selectMenuItem('circularize').node(); + if (!node) return; + continueTo(clickCircle); + }, 300); // after menu visible + }); - timeout(function() { - var node = selectMenuItem('circularize').node(); - if (!node) return; - continueTo(clickCircle); - }, 300); // after menu visible - }); + revealTank(tank, t('intro.buildings.rightclick_tank')); + context.map().on('move.intro drawn.intro', function() { + revealTank(tank, t('intro.buildings.rightclick_tank'), { duration: 0 }); + }); - context.map().on('move.intro drawn.intro', function() { - revealTank(tank, t('intro.buildings.rightclick_tank'), { duration: 0 }); - }); + context.history().on('change.intro', function() { + continueTo(rightClickTank); + }); - context.history().on('change.intro', function() { - continueTo(rightClickTank); - }); + }, 600); function continueTo(nextStep) { context.on('enter.intro', null); @@ -603,22 +617,20 @@ export function uiIntroBuilding(context, reveal) { function play() { - dispatch.call('done'); reveal('.intro-nav-wrap .chapter-startEditing', t('intro.buildings.play', { next: t('intro.startediting.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { reveal('#id-container'); } + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } } ); } chapter.enter = function() { - houseId = null; - tankId = null; - context.history().reset('initial'); - context.map().zoom(19).centerEase(house, 500); - timeout(addHouse, 520); + addHouse(); }; diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index ed3e845e0..2a144fdc3 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -1,5 +1,7 @@ import * as d3 from 'd3'; import { t } from '../../util/locale'; +import { geoSphericalDistance } from '../../geo'; + export function pointBox(loc, context) { var rect = context.surfaceRect(); @@ -99,3 +101,16 @@ export function selectMenuItem(operation) { ', .radial-menu .radial-menu-item-' + operation; return d3.select(selector); } + + +export function transitionTime(point1, point2) { + var distance = geoSphericalDistance(point1, point2); + if (distance === 0) + return 0; + else if (distance < 80) + return 500; + else if (distance < 160) + return 1000; + else + return 3000; +} diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index 1259a08c9..d46be9561 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -4,7 +4,7 @@ import { t } from '../../util/locale'; import { geoSphericalDistance } from '../../geo'; import { modeBrowse, modeSelect } from '../../modes'; import { utilRebind } from '../../util/rebind'; -import { icon, pad, selectMenuItem } from './helper'; +import { icon, pad, selectMenuItem, transitionTime } from './helper'; export function uiIntroLine(context, reveal) { @@ -50,19 +50,27 @@ export function uiIntroLine(context, reveal) { function addLine() { - var tooltip = reveal('button.add-line', - t('intro.lines.add_line', { button: icon('#icon-line', 'pre-text') })); + context.history().reset('initial'); - tooltip.selectAll('.tooltip-inner') - .insert('svg', 'span') - .attr('class', 'tooltip-illustration') - .append('use') - .attr('xlink:href', '#feature-images'); + var msec = transitionTime(tulipRoadStart, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(18.5).centerEase(tulipRoadStart, msec); - context.on('enter.intro', function(mode) { - if (mode.id !== 'add-line') return; - continueTo(startLine); - }); + timeout(function() { + var tooltip = reveal('button.add-line', + t('intro.lines.add_line', { button: icon('#icon-line', 'pre-text') })); + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#feature-images'); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-line') return; + continueTo(startLine); + }); + }, msec + 100); function continueTo(nextStep) { context.on('enter.intro', null); @@ -223,7 +231,7 @@ export function uiIntroLine(context, reveal) { timeout(function() { reveal(button.node(), - t('intro.lines.choose_category_road', { name: roadCategory.name() }) + t('intro.lines.choose_category_road', { category: roadCategory.name() }) ); button.on('click.intro', function() { continueTo(choosePresetResidential); }); }, 500); @@ -260,7 +268,7 @@ export function uiIntroLine(context, reveal) { timeout(function() { reveal(subgrid.node(), - t('intro.lines.choose_preset_residential', { name: residentialPreset.name() }), + t('intro.lines.choose_preset_residential', { preset: residentialPreset.name() }), { duration: 300 } ); }, 300); @@ -286,7 +294,7 @@ export function uiIntroLine(context, reveal) { timeout(function() { var button = d3.select('.entity-editor-pane .preset-list-button'); reveal(button.node(), - t('intro.lines.retry_preset_residential', { name: residentialPreset.name() }) + t('intro.lines.retry_preset_residential', { preset: residentialPreset.name() }) ); button.on('click.intro', function() { continueTo(chooseCategoryRoad); @@ -303,8 +311,7 @@ export function uiIntroLine(context, reveal) { function nameRoad() { context.on('exit.intro', function() { - context.history().checkpoint('doneAddLine'); - continueTo(updateLine); + continueTo(didNameRoad); }); timeout(function() { @@ -320,13 +327,31 @@ export function uiIntroLine(context, reveal) { } + function didNameRoad() { + context.history().checkpoint('doneAddLine'); + + timeout(function() { + reveal('#surface', t('intro.lines.did_name_road'), { + buttonText: t('intro.ok'), + buttonCallback: function() { continueTo(updateLine); } + }); + }, 500); + + function continueTo(nextStep) { + nextStep(); + } + } + + function updateLine() { context.history().reset('doneAddLine'); if (!context.hasEntity(woodRoadId) || !context.hasEntity(woodRoadEndId)) { return chapter.restart(); } - context.map().zoom(19).centerEase(woodRoadDragMidpoint, 500); + var msec = transitionTime(woodRoadDragMidpoint, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(woodRoadDragMidpoint, msec); timeout(function() { var padding = 250 * Math.pow(2, context.map().zoom() - 19); @@ -344,7 +369,7 @@ export function uiIntroLine(context, reveal) { { duration: 0, buttonText: t('intro.ok'), buttonCallback: advance } ); }); - }, 550); + }, msec + 100); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -559,7 +584,9 @@ export function uiIntroLine(context, reveal) { return chapter.restart(); } - context.map().zoom(18).centerEase(deleteLinesLoc, 500); + var msec = transitionTime(deleteLinesLoc, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(18).centerEase(deleteLinesLoc, msec); timeout(function() { var padding = 200 * Math.pow(2, context.map().zoom() - 18); @@ -588,7 +615,7 @@ export function uiIntroLine(context, reveal) { }, 500); // after any transition (e.g. if user deleted intersection) }); - }, 550); + }, msec + 100); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -601,6 +628,7 @@ export function uiIntroLine(context, reveal) { function rightClickIntersection() { context.history().reset('doneUpdateLine'); context.enter(modeBrowse(context)); + context.map().zoom(18).centerEase(eleventhAvenueEnd, 500); timeout(function() { @@ -637,7 +665,7 @@ export function uiIntroLine(context, reveal) { }, 300); // after any transition (e.g. if user deleted intersection) }); - }, 550); + }, 600); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -740,25 +768,29 @@ export function uiIntroLine(context, reveal) { return continueTo(rightClickIntersection); } - context.map().zoom(18).centerEase(twelfthAvenue, 400); - var ids = context.selectedIDs(); var string = 'intro.lines.did_split_' + (ids.length > 1 ? 'multi' : 'single'); - var street = t('intro.graph.name.washington-street'); + var padding = 200 * Math.pow(2, context.map().zoom() - 18); var box = pad(twelfthAvenue, padding, context); box.width = box.width / 2; - reveal(box, t(string, { street1: street, street2: street })); + reveal(box, t(string, { street1: street, street2: street }), + { duration: 500 } + ); - context.map().on('move.intro drawn.intro', function() { - var padding = 200 * Math.pow(2, context.map().zoom() - 18); - var box = pad(twelfthAvenue, padding, context); - box.width = box.width / 2; - reveal(box, t(string, { street1: street, street2: street }), - { duration: 0 } - ); - }); + timeout(function() { + context.map().zoom(18).centerEase(twelfthAvenue, 500); + + context.map().on('move.intro drawn.intro', function() { + var padding = 200 * Math.pow(2, context.map().zoom() - 18); + var box = pad(twelfthAvenue, padding, context); + box.width = box.width / 2; + reveal(box, t(string, { street1: street, street2: street }), + { duration: 0 } + ); + }); + }, 600); // after initial reveal and curtain cut context.on('enter.intro', function() { var ids = context.selectedIDs(); @@ -805,7 +837,7 @@ export function uiIntroLine(context, reveal) { return continueTo(didSplit); } - context.map().zoom(18).centerEase(twelfthAvenue, 400); + context.map().zoom(18).centerEase(twelfthAvenue, 500); timeout(function() { var selected, other, padding, box; @@ -861,7 +893,7 @@ export function uiIntroLine(context, reveal) { return continueTo(rightClickIntersection); } }); - }, 450); + }, 600); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -995,19 +1027,19 @@ export function uiIntroLine(context, reveal) { function play() { - dispatch.call('done'); reveal('.intro-nav-wrap .chapter-building', t('intro.lines.play', { next: t('intro.buildings.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { reveal('#id-container'); } + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } } ); } chapter.enter = function() { - context.history().reset('initial'); - context.map().zoom(18.5).centerEase(tulipRoadStart); addLine(); }; diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 6f0369886..7d2a5bbe4 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -1,13 +1,14 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { icon, pointBox } from './helper'; +import { icon, pointBox, transitionTime } from './helper'; export function uiIntroNavigation(context, reveal) { var dispatch = d3.dispatch('done'), timeouts = [], hallId = 'n2061', + townHall = [-85.63591, 41.94285], springStreet = [-85.63585099140167, 41.942506848938926]; @@ -34,25 +35,34 @@ export function uiIntroNavigation(context, reveal) { function dragMap() { - var dragged = false, - rect = context.surfaceRect(), - box = { - left: rect.left + (textDirection === 'rtl' ? 60 : 10), - top: rect.top + 70, - width: rect.width - 70, - height: rect.height - 170 - }; + context.history().reset('initial'); - context.map().centerZoom([-85.63591, 41.94285], 19); - reveal(box, t('intro.navigation.drag')); + var msec = transitionTime(townHall, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(townHall, msec); - context.map().on('move.intro', function() { - dragged = true; - }); + timeout(function() { + var dragged = false, + rect = context.surfaceRect(), + box = { + left: rect.left + (textDirection === 'rtl' ? 60 : 10), + top: rect.top + 70, + width: rect.width - 70, + height: rect.height - 170 + }; - d3.select(window).on('mouseup.intro', function() { - if (dragged) continueTo(clickTownHall); - }, true); + context.map().centerZoom([-85.63591, 41.94285], 19); + reveal(box, t('intro.navigation.drag')); + + context.map().on('move.intro', function() { + dragged = true; + }); + + d3.select(window).on('mouseup.intro', function() { + if (dragged) continueTo(clickTownHall); + }, true); + + }, msec + 100); function continueTo(nextStep) { context.map().on('move.intro', null); @@ -68,7 +78,7 @@ export function uiIntroNavigation(context, reveal) { } var hall = context.entity(hallId); - context.map().centerEase(hall.loc, 250); + context.map().centerEase(hall.loc, 600); context.on('enter.intro', function() { if (isTownHallSelected()) continueTo(selectedTownHall); @@ -82,7 +92,7 @@ export function uiIntroNavigation(context, reveal) { var box = pointBox(hall.loc, context); reveal(box, t('intro.navigation.select'), { duration: 0 }); }); - }, 260); // after centerEase + }, 700); // after centerEase function continueTo(nextStep) { context.on('enter.intro', null); @@ -197,18 +207,19 @@ export function uiIntroNavigation(context, reveal) { function play() { - dispatch.call('done'); reveal('.intro-nav-wrap .chapter-point', t('intro.navigation.play', { next: t('intro.points.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { reveal('#id-container'); } + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } } ); } chapter.enter = function() { - context.history().reset('initial'); dragMap(); }; diff --git a/modules/ui/intro/point.js b/modules/ui/intro/point.js index b5f4ee626..9ec9beedb 100644 --- a/modules/ui/intro/point.js +++ b/modules/ui/intro/point.js @@ -1,7 +1,7 @@ import * as d3 from 'd3'; import { t, textDirection } from '../../util/locale'; import { utilRebind } from '../../util/rebind'; -import { icon, pointBox, pad, selectMenuItem } from './helper'; +import { icon, pointBox, pad, selectMenuItem, transitionTime } from './helper'; export function uiIntroPoint(context, reveal) { @@ -30,21 +30,29 @@ export function uiIntroPoint(context, reveal) { function addPoint() { - var tooltip = reveal('button.add-point', - t('intro.points.add_point', { button: icon('#icon-point', 'pre-text') })); + context.history().reset('initial'); - pointId = null; + var msec = transitionTime(intersection, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(intersection, msec); - tooltip.selectAll('.tooltip-inner') - .insert('svg', 'span') - .attr('class', 'tooltip-illustration') - .append('use') - .attr('xlink:href', '#poi-images'); + timeout(function() { + var tooltip = reveal('button.add-point', + t('intro.points.add_point', { button: icon('#icon-point', 'pre-text') })); - context.on('enter.intro', function(mode) { - if (mode.id !== 'add-point') return; - continueTo(placePoint); - }); + pointId = null; + + tooltip.selectAll('.tooltip-inner') + .insert('svg', 'span') + .attr('class', 'tooltip-illustration') + .append('use') + .attr('xlink:href', '#poi-images'); + + context.on('enter.intro', function(mode) { + if (mode.id !== 'add-point') return; + continueTo(placePoint); + }); + }, msec + 100); function continueTo(nextStep) { context.on('enter.intro', null); @@ -95,7 +103,7 @@ export function uiIntroPoint(context, reveal) { timeout(function() { reveal('.preset-search-input', - t('intro.points.search_cafe', { name: cafePreset.name() }) + t('intro.points.search_cafe', { preset: cafePreset.name() }) ); }, 500); } @@ -106,7 +114,7 @@ export function uiIntroPoint(context, reveal) { if (first.classed('preset-amenity-cafe')) { reveal(first.select('.preset-list-button').node(), - t('intro.points.choose_cafe', { name: cafePreset.name() }), + t('intro.points.choose_cafe', { preset: cafePreset.name() }), { duration: 300 } ); @@ -192,12 +200,9 @@ export function uiIntroPoint(context, reveal) { var entity = context.hasEntity(pointId); if (!entity) return chapter.restart(); - context.map().centerEase(entity.loc, 250); - - context.on('enter.intro', function(mode) { - if (mode.id !== 'select') return; - continueTo(updatePoint); - }); + var msec = transitionTime(entity.loc, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().centerEase(entity.loc, msec); timeout(function() { var box = pointBox(entity.loc, context); @@ -209,7 +214,13 @@ export function uiIntroPoint(context, reveal) { var box = pointBox(entity.loc, context); reveal(box, t('intro.points.reselect'), { duration: 0 }); }); - }, 260); // after centerEase + + context.on('enter.intro', function(mode) { + if (mode.id !== 'select') return; + continueTo(updatePoint); + }); + + }, msec + 100); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); @@ -358,19 +369,19 @@ export function uiIntroPoint(context, reveal) { function play() { - dispatch.call('done'); reveal('.intro-nav-wrap .chapter-area', t('intro.points.play', { next: t('intro.areas.title') }), { buttonText: t('intro.ok'), - buttonCallback: function() { reveal('#id-container'); } + buttonCallback: function() { + dispatch.call('done'); + reveal('#id-container'); + } } ); } chapter.enter = function() { - context.history().reset('initial'); - context.map().zoom(19).centerEase(intersection); addPoint(); }; diff --git a/modules/ui/intro/start_editing.js b/modules/ui/intro/start_editing.js index 375494184..895fd7e71 100644 --- a/modules/ui/intro/start_editing.js +++ b/modules/ui/intro/start_editing.js @@ -7,8 +7,7 @@ import { utilRebind } from '../../util/rebind'; export function uiIntroStartEditing(context, reveal) { var dispatch = d3.dispatch('done', 'startEditing'), - modalSelection, - timeouts = []; + modalSelection = d3.select(null); var chapter = { @@ -16,57 +15,61 @@ export function uiIntroStartEditing(context, reveal) { }; - function timeout(f, t) { - timeouts.push(window.setTimeout(f, t)); + function showHelp() { + reveal('.map-control.help-control', + t('intro.startediting.help', { button: icon('#icon-help', 'pre-text') }), { + buttonText: t('intro.ok'), + buttonCallback: function() { showSave(); } + } + ); + } + + function showSave() { + reveal('#bar button.save', + t('intro.startediting.save'), { + buttonText: t('intro.ok'), + buttonCallback: function() { showStart(); } + } + ); + } + + function showStart() { + modalSelection = uiModal(context.container()); + + modalSelection.select('.modal') + .attr('class', 'modal-splash modal col6'); + + modalSelection.selectAll('.close').remove(); + + var startbutton = modalSelection.select('.content') + .attr('class', 'fillL') + .append('button') + .attr('class', 'modal-section huge-modal-button') + .on('click', function() { + modalSelection.remove(); + }); + + startbutton + .append('svg') + .attr('class', 'illustration') + .append('use') + .attr('xlink:href', '#logo-walkthrough'); + + startbutton + .append('h2') + .text(t('intro.startediting.start')); + + dispatch.call('startEditing'); } chapter.enter = function() { - reveal('.map-control.help-control', - t('intro.startediting.help', { button: icon('#icon-help', 'pre-text') })); - - timeout(function() { - reveal('#bar button.save', t('intro.startediting.save')); - }, 5000); - - timeout(function() { - reveal('#surface'); - }, 10000); - - timeout(function() { - modalSelection = uiModal(context.container()); - - modalSelection.select('.modal') - .attr('class', 'modal-splash modal col6'); - - modalSelection.selectAll('.close').remove(); - - var startbutton = modalSelection.select('.content') - .attr('class', 'fillL') - .append('button') - .attr('class', 'modal-section huge-modal-button') - .on('click', function() { - modalSelection.remove(); - }); - - startbutton - .append('svg') - .attr('class', 'illustration') - .append('use') - .attr('xlink:href', '#logo-walkthrough'); - - startbutton - .append('h2') - .text(t('intro.startediting.start')); - - dispatch.call('startEditing'); - }, 10500); + showHelp(); }; chapter.exit = function() { - if (modalSelection) { modalSelection.remove(); } - timeouts.forEach(window.clearTimeout); + modalSelection.remove(); }; From b9f5001017e92ddad4cff82eaecdd263c28912d2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 11 Apr 2017 22:33:30 -0400 Subject: [PATCH 65/91] Simplify language --- data/core.yaml | 2 +- dist/locales/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index cde32efdd..bb3baf2fa 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -904,7 +904,7 @@ en: pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" choose: "**Choose {name} from the list to select it.**" - chosen: "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" + chosen: "Great! {name} is now selected. The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" diff --git a/dist/locales/en.json b/dist/locales/en.json index d2f2fc71a..0b164f33a 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -764,7 +764,7 @@ "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", "choose": "**Choose {name} from the list to select it.**", - "chosen": "Great! {name} is now selected. See how the fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", + "chosen": "Great! {name} is now selected. The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { From 87618f9a6b2eb9f9c0433dd5d9eb9187107d253d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 11 Apr 2017 22:34:02 -0400 Subject: [PATCH 66/91] Make it so preset.init() can be called again to reset the datastructures (this is mostly so I can reset recent.collection for the walkthrough) --- modules/presets/collection.js | 8 ++++---- modules/presets/index.js | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/modules/presets/collection.js b/modules/presets/collection.js index ea13f6d8c..35e2b023b 100644 --- a/modules/presets/collection.js +++ b/modules/presets/collection.js @@ -12,14 +12,14 @@ export function presetCollection(collection) { item: function(id) { - return _.find(collection, function(d) { + return _.find(this.collection, function(d) { return d.id === id; }); }, matchGeometry: function(geometry) { - return presetCollection(collection.filter(function(d) { + return presetCollection(this.collection.filter(function(d) { return d.matchGeometry(geometry); })); }, @@ -44,10 +44,10 @@ export function presetCollection(collection) { value = value.toLowerCase(); - var searchable = _.filter(collection, function(a) { + var searchable = _.filter(this.collection, function(a) { return a.searchable !== false && a.suggestion !== true; }), - suggestions = _.filter(collection, function(a) { + suggestions = _.filter(this.collection, function(a) { return a.suggestion === true; }); diff --git a/modules/presets/index.js b/modules/presets/index.js index beb1eadab..16ca78c9c 100644 --- a/modules/presets/index.js +++ b/modules/presets/index.js @@ -107,6 +107,12 @@ export function presetIndex() { all.init = function() { var d = data.presets; + all.collection = []; + recent.collection = []; + fields = {}; + universal = []; + index = { point: {}, vertex: {}, line: {}, area: {}, relation: {} }; + if (d.fields) { _.forEach(d.fields, function(d, id) { fields[id] = presetField(id, d); From a16ae2187414bde91db5e2beabd428a2f762f083 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 11 Apr 2017 22:49:09 -0400 Subject: [PATCH 67/91] Clear away recent presets when switching to a new chapter --- modules/ui/intro/intro.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ui/intro/intro.js b/modules/ui/intro/intro.js index e9215a31c..472354947 100644 --- a/modules/ui/intro/intro.js +++ b/modules/ui/intro/intro.js @@ -81,6 +81,8 @@ export function uiIntro(context) { var chapters = chapterFlow.map(function(chapter, i) { var s = chapterUi[chapter](context, curtain.reveal) .on('done', function() { + context.presets().init(); // clear away "recent" presets + buttons.filter(function(d) { return d.title === s.title; }).classed('finished', true); From 5b81ea1f8f431cfc3e4cb1357540e229cde35c1a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 11 Apr 2017 22:59:19 -0400 Subject: [PATCH 68/91] Be less strict about where the endpoint can go --- modules/ui/intro/line.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ui/intro/line.js b/modules/ui/intro/line.js index d46be9561..8b09e66be 100644 --- a/modules/ui/intro/line.js +++ b/modules/ui/intro/line.js @@ -20,7 +20,7 @@ export function uiIntroLine(context, reveal) { woodRoadId = 'w525', woodRoadEndId = 'n2862', woodRoadAddNode = [-85.62390110349587, 41.95397111462291], - woodRoadDragEndpoint = [-85.62383958913921, 41.9546607846611], + woodRoadDragEndpoint = [-85.623867390213, 41.95466987786487], woodRoadDragMidpoint = [-85.62386254803509, 41.95430395953872], washingtonStreetId = 'w522', twelfthAvenueId = 'w1', @@ -439,7 +439,7 @@ export function uiIntroLine(context, reveal) { reveal(box, t('intro.lines.start_drag_endpoint'), { duration: 0 }); var entity = context.entity(woodRoadEndId); - if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) <= 2) { + if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) <= 4) { continueTo(finishDragEndpoint); } }); @@ -477,7 +477,7 @@ export function uiIntroLine(context, reveal) { reveal(box, t('intro.lines.finish_drag_endpoint'), { duration: 0 }); var entity = context.entity(woodRoadEndId); - if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) > 2.5) { + if (geoSphericalDistance(entity.loc, woodRoadDragEndpoint) > 4) { continueTo(startDragEndpoint); } }); From 84b917c3ba2ba1bb91ca6f23b35360b6ab26ccd7 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 11:26:01 -0400 Subject: [PATCH 69/91] Adjust language for placing point on the map --- data/core.yaml | 2 +- dist/locales/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index bb3baf2fa..638dc5f14 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -909,7 +909,7 @@ en: points: title: "Points" add_point: "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**" - place_point: "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**" + place_point: "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**" search_cafe: "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**" choose_cafe: "**Choose {preset} from the list.**" feature_editor: "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe." diff --git a/dist/locales/en.json b/dist/locales/en.json index 0b164f33a..9eeed0da4 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -770,7 +770,7 @@ "points": { "title": "Points", "add_point": "Points can be used to represent features such as shops, restaurants, and monuments. They mark a specific location, and describe what's there. **Click the {button} Point button to add a new point.**", - "place_point": "The point can be placed by clicking on the map or pressing the spacebar. **Click the map or press spacebar to place the new point on top of the building.**", + "place_point": "To place the new point on the map, position your mouse cursor where the point should go, then left-click or press the spacebar. **Move the mouse pointer over this building, then left-click or press the spacebar.**", "search_cafe": "There are many different features that can be represented by points. The point you just added is a cafe. **Search for '{preset}'**", "choose_cafe": "**Choose {preset} from the list.**", "feature_editor": "The point is now marked as a cafe. Using the feature editor, we can add more information about the cafe.", From 8b28772aef97372e74d5b794a40b54a81231d8a0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 13:23:17 -0400 Subject: [PATCH 70/91] Eliminate the very slow (3sec) transitions --- modules/ui/intro/helper.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 2a144fdc3..6b19c5c38 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -109,8 +109,6 @@ export function transitionTime(point1, point2) { return 0; else if (distance < 80) return 500; - else if (distance < 160) - return 1000; else - return 3000; + return 1000; } From b566cc9c906c635b49f3d13fb73605d21d320cc9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 14:08:51 -0400 Subject: [PATCH 71/91] Remove workaround for old Firefox bug that has been fixed --- modules/core/context.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/core/context.js b/modules/core/context.js index f412e583a..a57f7346d 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -257,12 +257,8 @@ export function coreContext() { context.layers = function() { return map.layers; }; context.surface = function() { return map.surface; }; context.editable = function() { return map.editable(); }; - context.surfaceRect = function() { - // Work around a bug in Firefox. - // http://stackoverflow.com/questions/18153989/ - // https://bugzilla.mozilla.org/show_bug.cgi?id=530985 - return context.surface().node().parentNode.getBoundingClientRect(); + return map.surface.node().getBoundingClientRect(); }; From bdcd4fd43113f628091392967175fd5e7d87b012 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 14:09:14 -0400 Subject: [PATCH 72/91] Use #map clientrect instread of #surface (which can be transformed) --- modules/ui/intro/navigation.js | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 7d2a5bbe4..06a82b90b 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -34,6 +34,17 @@ export function uiIntroNavigation(context, reveal) { } + function trimmedMap() { + var rect = d3.select('#map').node().getBoundingClientRect(); + return { + left: rect.left + (textDirection === 'rtl' ? 60 : 10), + top: rect.top + 70, + width: rect.width - 60, + height: rect.height - 170 + }; + } + + function dragMap() { context.history().reset('initial'); @@ -42,17 +53,13 @@ export function uiIntroNavigation(context, reveal) { context.map().zoom(19).centerEase(townHall, msec); timeout(function() { - var dragged = false, - rect = context.surfaceRect(), - box = { - left: rect.left + (textDirection === 'rtl' ? 60 : 10), - top: rect.top + 70, - width: rect.width - 70, - height: rect.height - 170 - }; + var dragged = false; - context.map().centerZoom([-85.63591, 41.94285], 19); - reveal(box, t('intro.navigation.drag')); + reveal(trimmedMap(), t('intro.navigation.drag')); + + context.map().on('drawn.intro', function() { + reveal(trimmedMap(), t('intro.navigation.drag'), { duration: 0 }); + }); context.map().on('move.intro', function() { dragged = true; @@ -62,10 +69,10 @@ export function uiIntroNavigation(context, reveal) { if (dragged) continueTo(clickTownHall); }, true); - }, msec + 100); + }, msec + 100 ); function continueTo(nextStep) { - context.map().on('move.intro', null); + context.map().on('move.intro drawn.intro', null); d3.select(window).on('mouseup.intro', null, true); nextStep(); } From 7b23d264e38345cb8710b2a11dca70a477234fde Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 15:21:42 -0400 Subject: [PATCH 73/91] Teach zoom, and make sure Spring Street is visible --- data/core.yaml | 1 + dist/locales/en.json | 1 + modules/ui/intro/navigation.js | 86 +++++++++++++++++++++++----------- 3 files changed, 60 insertions(+), 28 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 638dc5f14..350627d51 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -899,6 +899,7 @@ en: navigation: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" + zoom: "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**" select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**" selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" diff --git a/dist/locales/en.json b/dist/locales/en.json index 9eeed0da4..b6381ccba 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -759,6 +759,7 @@ "navigation": { "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", + "zoom": "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**", "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", diff --git a/modules/ui/intro/navigation.js b/modules/ui/intro/navigation.js index 06a82b90b..edcb0d6ea 100644 --- a/modules/ui/intro/navigation.js +++ b/modules/ui/intro/navigation.js @@ -53,53 +53,77 @@ export function uiIntroNavigation(context, reveal) { context.map().zoom(19).centerEase(townHall, msec); timeout(function() { - var dragged = false; + var centerStart = context.map().center(); reveal(trimmedMap(), t('intro.navigation.drag')); - context.map().on('drawn.intro', function() { reveal(trimmedMap(), t('intro.navigation.drag'), { duration: 0 }); }); context.map().on('move.intro', function() { - dragged = true; + var centerNow = context.map().center(); + if (centerStart[0] !== centerNow[0] || centerStart[1] !== centerNow[1]) { + context.map().on('move.intro', null); + timeout(function() { continueTo(zoomMap); }, 1500); + } }); - d3.select(window).on('mouseup.intro', function() { - if (dragged) continueTo(clickTownHall); - }, true); - - }, msec + 100 ); + }, msec + 100); + + function continueTo(nextStep) { + context.map().on('move.intro drawn.intro', null); + nextStep(); + } + } + + + function zoomMap() { + var zoomStart = context.map().zoom(); + + reveal(trimmedMap(), t('intro.navigation.zoom')); + context.map().on('drawn.intro', function() { + reveal(trimmedMap(), t('intro.navigation.zoom'), { duration: 0 }); + }); + + context.map().on('move.intro', function() { + if (context.map().zoom() !== zoomStart) { + context.map().on('move.intro', null); + timeout(function() { continueTo(clickTownHall); }, 1500); + } + }); function continueTo(nextStep) { context.map().on('move.intro drawn.intro', null); - d3.select(window).on('mouseup.intro', null, true); nextStep(); } } function clickTownHall() { - if (!context.hasEntity(hallId)) { - context.history().reset('initial'); - } - + context.history().reset('initial'); var hall = context.entity(hallId); - context.map().centerEase(hall.loc, 600); - context.on('enter.intro', function() { - if (isTownHallSelected()) continueTo(selectedTownHall); - }); + reveal(null, null, { duration: 0 }); + context.map().zoomEase(19, 250); timeout(function() { - var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select')); + context.map().centerEase(hall.loc, 250); - context.map().on('move.intro drawn.intro', function() { + timeout(function() { var box = pointBox(hall.loc, context); - reveal(box, t('intro.navigation.select'), { duration: 0 }); - }); - }, 700); // after centerEase + reveal(box, t('intro.navigation.select')); + + context.map().on('move.intro drawn.intro', function() { + var box = pointBox(hall.loc, context); + reveal(box, t('intro.navigation.select'), { duration: 0 }); + }); + + context.on('enter.intro', function() { + if (isTownHallSelected()) continueTo(selectedTownHall); + }); + }, 300); // after centerEase + + }, 300); // after zoomEase function continueTo(nextStep) { context.on('enter.intro', null); @@ -155,12 +179,18 @@ export function uiIntroNavigation(context, reveal) { function streetSearch() { context.history().reset('initial'); // ensure spring street exists - reveal('.search-header input', - t('intro.navigation.search', { name: t('intro.graph.name.spring-street') }) - ); + var msec = transitionTime(townHall, context.map().center()); + if (msec) { reveal(null, null, { duration: 0 }); } + context.map().zoom(19).centerEase(townHall, msec); // ..and user can see it - d3.select('.search-header input') - .on('keyup.intro', checkSearchResult); + timeout(function() { + reveal('.search-header input', + t('intro.navigation.search', { name: t('intro.graph.name.spring-street') }) + ); + + d3.select('.search-header input') + .on('keyup.intro', checkSearchResult); + }, msec + 100); } From 8d557c917e1b18dfca53a5147e030e45e730eb3d Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 17:42:52 -0400 Subject: [PATCH 74/91] Oxford comma --- data/core.yaml | 2 +- dist/locales/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 350627d51..2ea6dbfa2 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -900,7 +900,7 @@ en: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" zoom: "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**" - select: "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**" + select: "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**" selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" diff --git a/dist/locales/en.json b/dist/locales/en.json index b6381ccba..f0806077b 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -760,7 +760,7 @@ "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "zoom": "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**", - "select": "Map features are represented three ways: using points, lines or areas. All features can be selected by clicking on them. **Click on the point to select it.**", + "select": "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**", "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", From ecccee5c41ceca168d87201432e616694a686d80 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 17:49:35 -0400 Subject: [PATCH 75/91] Remove transparency from intro tooltips --- css/80_app.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/80_app.css b/css/80_app.css index 8b11425d1..5cdeada52 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3644,6 +3644,9 @@ img.tile-removing { display: inline-block; } +.curtain-tooltip.tooltip.in { + opacity: 1; +} .curtain-tooltip.tooltip { text-align: left; } From 5c687e5c1cdb7dc02ca50a6966c4ccdb7da24582 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 13 Apr 2017 15:26:21 -0400 Subject: [PATCH 76/91] Gentler introduction to jargon, add some more defensive code --- css/80_app.css | 7 +- data/core.yaml | 17 ++- dist/locales/en.json | 17 ++- modules/ui/curtain.js | 8 +- modules/ui/intro/navigation.js | 270 ++++++++++++++++++++++++++++----- 5 files changed, 265 insertions(+), 54 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index 5cdeada52..5a7d8fb3a 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -3660,8 +3660,11 @@ img.tile-removing { padding: 20px; } -.curtain-tooltip .tooltip-inner .button-section, .curtain-tooltip .tooltip-inner .bold { +} + +.curtain-tooltip .tooltip-inner .button-section, +.curtain-tooltip .tooltip-inner .instruction { font-weight: bold; display: block; border-top: 1px solid #CCC; @@ -3671,7 +3674,7 @@ img.tile-removing { padding: 10px 20px 0 20px; } -.curtain-tooltip .tooltip-inner .bold:only-child { +.curtain-tooltip .tooltip-inner .instruction:only-child { border: 0; padding: 0; margin: 0; diff --git a/data/core.yaml b/data/core.yaml index 2ea6dbfa2..69e8c3ae4 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -900,12 +900,17 @@ en: title: "Navigation" drag: "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**" zoom: "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**" - select: "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**" - selected: "Great! The point is now selected. Selected items are drawn with a pulsing glow." - pane: "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" - search: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" - choose: "**Choose {name} from the list to select it.**" - chosen: "Great! {name} is now selected. The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" + features: "We use the word *features* to describe the things that appear on the map. Anything in the real world can be mapped as a feature on OpenStreetMap." + click_townhall: "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**" + selected_townhall: "Great! The point is now selected. Selected features are drawn with a pulsing glow." + editor_townhall: "When a feature is selected, the *feature editor* is displayed alongside the map." + preset_townhall: "The top part of the feature editor shows the feature's type. This point is a {preset}." + fields_townhall: "The middle part of the feature editor shows the feature's attributes, such as its name and address." + close_townhall: "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**" + search_street: "You can also search for features in the current view, or worldwide. **Search for '{name}'**" + choose_street: "**Choose {name} from the list to select it.**" + selected_street: "Great! {name} is now selected." + editor_street: "The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**" play: "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" points: title: "Points" diff --git a/dist/locales/en.json b/dist/locales/en.json index f0806077b..a4a2e7606 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -760,12 +760,17 @@ "title": "Navigation", "drag": "The main map area shows OpenStreetMap data on top of a background. You can navigate by dragging and scrolling, just like any web map. **Drag the map!**", "zoom": "You can zoom in or out by scrolling with the mouse wheel or trackpad. **Zoom the map!**", - "select": "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**", - "selected": "Great! The point is now selected. Selected items are drawn with a pulsing glow.", - "pane": "When a feature is selected, the feature editor is displayed. The header shows us the feature type and the main pane shows the feature's attributes, such as its name and address. **Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", - "search": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", - "choose": "**Choose {name} from the list to select it.**", - "chosen": "Great! {name} is now selected. The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", + "features": "We use the word *features* to describe the things that appear on the map. Anything in the real world can be mapped as a feature on OpenStreetMap.", + "click_townhall": "Map features are represented three ways: using points, lines, or areas. All features can be selected by clicking on them. **Click on the point to select it.**", + "selected_townhall": "Great! The point is now selected. Selected features are drawn with a pulsing glow.", + "editor_townhall": "When a feature is selected, the *feature editor* is displayed alongside the map.", + "preset_townhall": "The top part of the feature editor shows the feature's type. This point is a {preset}.", + "fields_townhall": "The middle part of the feature editor shows the feature's attributes, such as its name and address.", + "close_townhall": "**Close the feature editor by hitting escape or pressing the {button} button in the upper corner.**", + "search_street": "You can also search for features in the current view, or worldwide. **Search for '{name}'**", + "choose_street": "**Choose {name} from the list to select it.**", + "selected_street": "Great! {name} is now selected.", + "editor_street": "The fields displayed for a street are different than the fields displayed for the town hall. **Close the feature editor by hitting escape or pressing the {button} button.**", "play": "Try moving the map and clicking on some other features to see what kinds of things can be added to OpenStreetMap. **When you are ready to continue to the next chapter, click '{next}'.**" }, "points": { diff --git a/modules/ui/curtain.js b/modules/ui/curtain.js index 914612079..1c31d6ecb 100644 --- a/modules/ui/curtain.js +++ b/modules/ui/curtain.js @@ -58,13 +58,17 @@ export function uiCurtain() { options = options || {}; if (text) { - // pseudo markdown bold text hack + // pseudo markdown hacks var parts = text.split('**'); var html = parts[0] ? '' + parts[0] + '' : ''; if (parts[1]) { - html += '' + parts[1] + ''; + html += '' + parts[1] + ''; } + // pseudo markdown bold text hack + html = html.replace(/\*(.*)\*/, '$1'); + + if (options.buttonText && options.buttonCallback) { html += '