From 34386a76ab5474d3d7825a4a5036dc34aa07b817 Mon Sep 17 00:00:00 2001 From: Elisadorable Date: Wed, 18 Feb 2026 22:08:45 +0100 Subject: [PATCH 1/3] Adding Toulouse MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Including line : - A - B - C - T1 - T2 - Téléo --- public/images/ToulouseA.svg | 76 + public/images/ToulouseB.svg | 79 + public/images/ToulouseC.svg | 98 + public/images/ToulouseT1.svg | 222 + public/images/ToulouseT2.svg | 222 + public/images/ToulouseTeleo.svg | 104 + src/app/(game)/toulouse/config.ts | 95 + src/app/(game)/toulouse/data/features.json | 1952 +++++++++ src/app/(game)/toulouse/data/routes.json | 4114 +++++++++++++++++++ src/app/(game)/toulouse/icon.ico | Bin 0 -> 16467 bytes src/app/(game)/toulouse/opengraph-image.jpg | Bin 0 -> 1182637 bytes src/app/(game)/toulouse/page.tsx | 34 + src/lib/citiesConfig.ts | 6 + 13 files changed, 7002 insertions(+) create mode 100644 public/images/ToulouseA.svg create mode 100644 public/images/ToulouseB.svg create mode 100644 public/images/ToulouseC.svg create mode 100644 public/images/ToulouseT1.svg create mode 100644 public/images/ToulouseT2.svg create mode 100644 public/images/ToulouseTeleo.svg create mode 100644 src/app/(game)/toulouse/config.ts create mode 100644 src/app/(game)/toulouse/data/features.json create mode 100644 src/app/(game)/toulouse/data/routes.json create mode 100644 src/app/(game)/toulouse/icon.ico create mode 100644 src/app/(game)/toulouse/opengraph-image.jpg create mode 100644 src/app/(game)/toulouse/page.tsx diff --git a/public/images/ToulouseA.svg b/public/images/ToulouseA.svg new file mode 100644 index 0000000..a239e2b --- /dev/null +++ b/public/images/ToulouseA.svg @@ -0,0 +1,76 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/public/images/ToulouseB.svg b/public/images/ToulouseB.svg new file mode 100644 index 0000000..d62f500 --- /dev/null +++ b/public/images/ToulouseB.svg @@ -0,0 +1,79 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/public/images/ToulouseC.svg b/public/images/ToulouseC.svg new file mode 100644 index 0000000..eb5736f --- /dev/null +++ b/public/images/ToulouseC.svg @@ -0,0 +1,98 @@ + + + + \ No newline at end of file diff --git a/public/images/ToulouseT2.svg b/public/images/ToulouseT2.svg deleted file mode 100644 index d295ef8..0000000 --- a/public/images/ToulouseT2.svg +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/src/app/(game)/lille/config.ts b/src/app/(game)/lille/config.ts index aedeb85..44dd484 100644 --- a/src/app/(game)/lille/config.ts +++ b/src/app/(game)/lille/config.ts @@ -60,7 +60,7 @@ export const MAP_CONFIG: MapboxOptions = { export const STRIPE_LINK = 'https://buy.stripe.com/cN2aFb0nI1rI9bi5km' -export const CITY_NAME = 'toulouse' +export const CITY_NAME = 'lille' export const LOCALE = 'fr' diff --git a/src/app/(game)/lille/data/download-osm-raw-data.ts b/src/app/(game)/lille/data/download-osm-raw-data.ts index 70ccddd..e1cc858 100644 --- a/src/app/(game)/lille/data/download-osm-raw-data.ts +++ b/src/app/(game)/lille/data/download-osm-raw-data.ts @@ -273,7 +273,7 @@ const main = async () => { ], } await fs.writeFile( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './source.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './source.json'), JSON.stringify(sourceData, null, 2), 'utf8', ) diff --git a/src/app/(game)/lille/data/preprocess.ts b/src/app/(game)/lille/data/preprocess.ts index 32bac52..fd318e5 100644 --- a/src/app/(game)/lille/data/preprocess.ts +++ b/src/app/(game)/lille/data/preprocess.ts @@ -149,7 +149,7 @@ async function parseOldStationsAndCreateStationIdGetter(): Promise< let maxStationId = 0 try { const oldFeatureCollection = Bun.file( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './features.json'), ) const { features, properties } = (await oldFeatureCollection.json()) as StationsFeatureCollection @@ -196,7 +196,7 @@ function isDefined(arg: T): arg is Exclude { } const main = async () => { - const data = Bun.file(path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './source.json')) + const data = Bun.file(path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './source.json')) const { lines, nodes, ways } = (await data.json()) as SourceJson const getStationId = await parseOldStationsAndCreateStationIdGetter() @@ -229,7 +229,7 @@ const main = async () => { console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './lines.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './lines.json'), JSON.stringify( sortedLineIds.reduce( (acc, lineId) => { @@ -466,7 +466,7 @@ const main = async () => { console.debug(` ${station.properties.line} ${station.properties.name}`), ) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './features.json'), JSON.stringify(stations, null, 2), ) @@ -511,7 +511,7 @@ const main = async () => { console.debug(`Writing ${routes.features.length} paths to routes.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lille/data', './routes.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lille/data', './routes.json'), JSON.stringify(routes, null, 2), ) } diff --git a/src/app/(game)/lyon/config.ts b/src/app/(game)/lyon/config.ts index 7fa959a..dd5d4b7 100644 --- a/src/app/(game)/lyon/config.ts +++ b/src/app/(game)/lyon/config.ts @@ -130,7 +130,7 @@ export const MAP_CONFIG: MapboxOptions = { export const STRIPE_LINK = 'https://buy.stripe.com/cN2aFb0nI1rI9bi5km' -export const CITY_NAME = 'toulouse' +export const CITY_NAME = 'lyon' export const LOCALE = 'fr' diff --git a/src/app/(game)/lyon/data/download-osm-raw-data.ts b/src/app/(game)/lyon/data/download-osm-raw-data.ts index 36cb9e5..4808f17 100644 --- a/src/app/(game)/lyon/data/download-osm-raw-data.ts +++ b/src/app/(game)/lyon/data/download-osm-raw-data.ts @@ -363,7 +363,7 @@ const main = async () => { ], } await fs.writeFile( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './source.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './source.json'), JSON.stringify(sourceData, null, 2), 'utf8', ) diff --git a/src/app/(game)/lyon/data/preprocess.ts b/src/app/(game)/lyon/data/preprocess.ts index 8ea2894..5cccd51 100644 --- a/src/app/(game)/lyon/data/preprocess.ts +++ b/src/app/(game)/lyon/data/preprocess.ts @@ -239,7 +239,7 @@ async function parseOldStationsAndCreateStationIdGetter(): Promise< let maxStationId = 0 try { const oldFeatureCollection = Bun.file( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './features.json'), ) const { features, properties } = (await oldFeatureCollection.json()) as StationsFeatureCollection @@ -286,7 +286,7 @@ function isDefined(arg: T): arg is Exclude { } const main = async () => { - const data = Bun.file(path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './source.json')) + const data = Bun.file(path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './source.json')) const { lines, nodes, ways } = (await data.json()) as SourceJson const getStationId = await parseOldStationsAndCreateStationIdGetter() @@ -319,7 +319,7 @@ const main = async () => { console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './lines.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './lines.json'), JSON.stringify( sortedLineIds.reduce( (acc, lineId) => { @@ -556,7 +556,7 @@ const main = async () => { console.debug(` ${station.properties.line} ${station.properties.name}`), ) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './features.json'), JSON.stringify(stations, null, 2), ) @@ -601,7 +601,7 @@ const main = async () => { console.debug(`Writing ${routes.features.length} paths to routes.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/lyon/data', './routes.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/lyon/data', './routes.json'), JSON.stringify(routes, null, 2), ) } diff --git a/src/app/(game)/marseille/config.ts b/src/app/(game)/marseille/config.ts index d45dc45..17186e6 100644 --- a/src/app/(game)/marseille/config.ts +++ b/src/app/(game)/marseille/config.ts @@ -67,7 +67,7 @@ export const MAP_CONFIG: MapboxOptions = { export const STRIPE_LINK = 'https://buy.stripe.com/cN2aFb0nI1rI9bi5km' -export const CITY_NAME = 'toulouse' +export const CITY_NAME = 'marseille' export const LOCALE = 'fr' diff --git a/src/app/(game)/marseille/data/download-osm-raw-data.ts b/src/app/(game)/marseille/data/download-osm-raw-data.ts index d5f1bce..ce6ceff 100644 --- a/src/app/(game)/marseille/data/download-osm-raw-data.ts +++ b/src/app/(game)/marseille/data/download-osm-raw-data.ts @@ -282,7 +282,7 @@ const main = async () => { ], } await fs.writeFile( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './source.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './source.json'), JSON.stringify(sourceData, null, 2), 'utf8', ) diff --git a/src/app/(game)/marseille/data/preprocess.ts b/src/app/(game)/marseille/data/preprocess.ts index 17c83d0..6847648 100644 --- a/src/app/(game)/marseille/data/preprocess.ts +++ b/src/app/(game)/marseille/data/preprocess.ts @@ -156,7 +156,7 @@ async function parseOldStationsAndCreateStationIdGetter(): Promise< let maxStationId = 0 try { const oldFeatureCollection = Bun.file( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './features.json'), ) const { features, properties } = (await oldFeatureCollection.json()) as StationsFeatureCollection @@ -203,7 +203,7 @@ function isDefined(arg: T): arg is Exclude { } const main = async () => { - const data = Bun.file(path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './source.json')) + const data = Bun.file(path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './source.json')) const { lines, nodes, ways } = (await data.json()) as SourceJson const getStationId = await parseOldStationsAndCreateStationIdGetter() @@ -236,7 +236,7 @@ const main = async () => { console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './lines.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './lines.json'), JSON.stringify( sortedLineIds.reduce( (acc, lineId) => { @@ -473,7 +473,7 @@ const main = async () => { console.debug(` ${station.properties.line} ${station.properties.name}`), ) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './features.json'), JSON.stringify(stations, null, 2), ) @@ -518,7 +518,7 @@ const main = async () => { console.debug(`Writing ${routes.features.length} paths to routes.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/marseille/data', './routes.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/marseille/data', './routes.json'), JSON.stringify(routes, null, 2), ) } diff --git a/src/app/(game)/montpellier/config.ts b/src/app/(game)/montpellier/config.ts new file mode 100644 index 0000000..5577244 --- /dev/null +++ b/src/app/(game)/montpellier/config.ts @@ -0,0 +1,88 @@ +import { Config, Line } from '@/lib/types' +import { MapboxOptions } from 'mapbox-gl' +import { Metadata } from 'next' + +export const BEG_THRESHOLD = 0.5 + +export const LINES: { + [name: string]: Line +} = { + Montpellier1: { + name: '1', + color: '#005BA1', + backgroundColor: '#002D51', + textColor: '#FFFFFF', + order: 1, + }, + Montpellier2: { + name: '2', + color: '#F18E00', + backgroundColor: '#784700', + textColor: '#FFFFFF', + order: 2, + }, + Montpellier3: { + name: '3', + color: '#CBD300', + backgroundColor: '#656A00', + textColor: '#FFFFFF', + order: 3, + }, + Montpellier4: { + name: '4', + color: '#4A2A15', + backgroundColor: '#25150A', + textColor: '#FFFFFF', + order: 4, + }, + Montpellier5: { + name: '5', + color: '#2D7431', + backgroundColor: '#163A18', + textColor: '#FFFFFF', + order: 5, + }, +} + +export const METADATA: Metadata = { + title: 'Montpellier Metro Memory', + description: 'Combien de stations de métro de Montpellier connaissez-vous ?', + openGraph: { + title: 'Montpellier Metro Memory', + description: + 'Combien de stations de Metro pouvez-vous nommer par cœur ? Jouez au Metro Memory de Montpellier et découvrez-le !', + type: 'website', + locale: 'fr_FR', + url: 'https://metro-memory.com/montpellier', + }, +} + +export const MAP_CONFIG: MapboxOptions = { + container: 'map', + style: 'mapbox://styles/benjamintd/cls4h02hy019201qygvumc0nb', + minZoom: 6, + fadeDuration: 50, + dragRotate: false, +} + +export const STRIPE_LINK = 'https://buy.stripe.com/cN2aFb0nI1rI9bi5km' + +export const CITY_NAME = 'montpellier' + +export const LOCALE = 'fr' + +export const MAP_FROM_DATA = true + +const config: Config = { + GAUGE_COLORS: 'inverted', + MAP_FROM_DATA, + LOCALE, + STRIPE_LINK, + CITY_NAME, + MAP_CONFIG, + METADATA, + LINES, + BEG_THRESHOLD, +} + +export default config diff --git a/src/app/(game)/montpellier/data/download-osm-raw-data.ts b/src/app/(game)/montpellier/data/download-osm-raw-data.ts new file mode 100644 index 0000000..e57560d --- /dev/null +++ b/src/app/(game)/montpellier/data/download-osm-raw-data.ts @@ -0,0 +1,297 @@ +import axios from 'axios' +import { promises as fs } from 'fs' +import * as path from 'path' + +const osmApi = axios.create({ + baseURL: 'https://www.openstreetmap.org/api/0.6/', +}) + +export type SourceJson = { + lines: { + lineId: string + relations: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + }[] + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; name?: string; lat: number; lon: number }[] +} + +// ---------------------------------------- +// line configuration +// ---------------------------------------- +export const linesMetadata: { + [id: string]: { + name: string + osm: { + relationIds: number[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + } + color: string + } +} = { + Montpellier1: { + name: '1', + osm: { + relationIds: [4107815], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#005BA1', + }, + Montpellier2: { + name: '2', + osm: { + relationIds: [4107772], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#F18E00', + }, + Montpellier3: { + name: '3', + osm: { + relationIds: [4107865], + extraStationNodeIds: [3127567487, 1680725835], + extraRouteWayIds: [ + 307563698, 208440292, 307170833, 208440295, 208440294, 307563691, + 1355961353, 1355961354, 307563703, 1355961355, 1355961356, 208440293, + 1355961357, 306902199, + ], + }, + color: '#CBD300', + }, + Montpellier4: { + name: '4', + osm: { + relationIds: [1852816], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#4A2A15', + }, + Montpellier5: { + name: '5', + osm: { + relationIds: [19846275], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#2D7431', + }, +} + +/** + * Retrieve IDs of stations (node in OSM) and routes (path of the line; way in OSM) for a given relation ID. + * If the relation includes child relations (e.g., relation is a route_master and includes multiple routes), + * those are retrieved as well (recursively). + */ +async function getOsmRelationsDetails(relationIds: number[]): Promise< + { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] +> { + const relationsDetails: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] = [] + await Promise.all( + relationIds.map(async (relationId) => { + const stationsNodeIds: number[] = [] + const routesWayIds: number[] = [] + const response = await osmApi.get(`relation/${relationId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'relation' || element.id !== relationId) continue + for (const member of element.members as { + type: string + ref: number + role: string + }[]) { + if (member.type === 'relation') { + const relationDetails = await getOsmRelationsDetails([member.ref]) + relationsDetails.push(...relationDetails) + } else if (member.type === 'node' && member.role.startsWith('stop')) { + stationsNodeIds.push(member.ref) + } else if (member.type === 'way' && member.role === '') { + // we ignore ways with role platform* + routesWayIds.push(member.ref) + } + } + } + relationsDetails.push({ relationId, stationsNodeIds, routesWayIds }) + }), + ) + return relationsDetails +} + +/** + * Retrieve details (name, lat, lon) for each station in a list of stations (OSM node IDs) + */ +async function getOsmStationsDetails( + stationsNodeIds: number[], +): Promise<{ nodeId: number; name: string; lat: number; lon: number }[]> { + const stationsDetails: { + nodeId: number + name: string + lat: number + lon: number + }[] = [] + await Promise.all( + stationsNodeIds.map(async (nodeId) => { + const response = await osmApi.get(`node/${nodeId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'node' || element.id !== nodeId) continue + stationsDetails.push({ + nodeId, + name: element.tags.name, + lat: element.lat, + lon: element.lon, + }) + } + }), + ) + return stationsDetails +} + +/** + * Retrieve list of coordinates (lat, lon) for each way in a list of OSM way IDs + */ +async function getOsmWaysDetails(wayIds: number[]): Promise<{ + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; lat: number; lon: number }[] +}> { + const ways: { + wayId: number + nodeIds: number[] + }[] = [] + await Promise.all( + wayIds.map(async (wayId) => { + const response = await osmApi.get(`way/${wayId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'way' || element.id !== wayId) continue + ways.push({ wayId, nodeIds: element.nodes }) + } + }), + ) + + const uniqueNodeIds = [...new Set(ways.map((way) => way.nodeIds).flat())] + console.debug( + `Fetched node IDs for ${ways.length} ways, now fetching details for ${uniqueNodeIds.length} nodes ...`, + ) + const nodes: { nodeId: number; lat: number; lon: number }[] = [] + await Promise.all( + uniqueNodeIds.map(async (nodeId, ix) => { + // very naive DoS protection: wait a bit for each request, to have max ~30 req/second + await wait(30 * ix) + const response = await osmApi.get(`node/${nodeId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'node' || element.id !== nodeId) continue + const { lat, lon } = element + nodes.push({ nodeId, lat, lon }) + } + if ((ix + 1) % 10 === 0) + console.debug(` Finished request #${ix + 1}/${uniqueNodeIds.length}`) + }), + ) + return { ways, nodes } +} + +async function wait(ms: number): Promise { + return new Promise((resolve) => setTimeout(resolve, ms)) +} + +const main = async () => { + // get OSM IDs of stops and routes + console.debug( + `Fetching stations and routes for ${ + Object.keys(linesMetadata).length + } lines...`, + ) + const relationsDetailsPerLine: SourceJson['lines'] = await Promise.all( + Object.entries(linesMetadata).map(async ([lineId, lineMetadata]) => { + const relations = await getOsmRelationsDetails( + lineMetadata.osm.relationIds, + ) + return { + lineId, + relations, + extraStationNodeIds: lineMetadata.osm.extraStationNodeIds ?? [], + extraRouteWayIds: lineMetadata.osm.extraRouteWayIds ?? [], + } + }), + ) + + const uniqueStationsNodeIds = [ + ...new Set( + relationsDetailsPerLine + .map((lineDetails) => [ + ...lineDetails.relations + .map((relation) => relation.stationsNodeIds) + .flat(), + ...lineDetails.extraStationNodeIds, + ]) + .flat(), + ), + ] + const uniqueRoutesWayIds = [ + ...new Set( + relationsDetailsPerLine + .map((lineDetails) => [ + ...lineDetails.relations + .map((relation) => relation.routesWayIds) + .flat(), + ...lineDetails.extraRouteWayIds, + ]) + .flat(), + ), + ] + console.debug( + `Fetched ${uniqueStationsNodeIds.length} unique station node IDs and ${uniqueRoutesWayIds.length} route way IDs`, + ) + + // get details of stations and routes + console.debug(`Fetching details for ${uniqueStationsNodeIds.length} nodes...`) + const stationsDetails = await getOsmStationsDetails(uniqueStationsNodeIds) + console.debug(`Fetched details for ${uniqueStationsNodeIds.length} nodes`) + + console.debug(`Fetching details for ${uniqueRoutesWayIds.length} ways...`) + const waysDetails = await getOsmWaysDetails(uniqueRoutesWayIds) + console.debug(`Fetched details for ${uniqueRoutesWayIds.length} ways`) + + console.debug(`Saving data...`) + + // store station node IDs for easier lookup + const setStationNodeIds = new Set( + stationsDetails.map((station) => station.nodeId), + ) + + // save data to source.json + const sourceData: SourceJson = { + lines: relationsDetailsPerLine, + ways: waysDetails.ways, + nodes: [ + ...stationsDetails, + ...waysDetails.nodes.filter( + (node) => setStationNodeIds.has(node.nodeId) === false, + ), + ], + } + await fs.writeFile( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './source.json', + ), + JSON.stringify(sourceData, null, 2), + 'utf8', + ) +} + +main() diff --git a/src/app/(game)/montpellier/data/features.json b/src/app/(game)/montpellier/data/features.json new file mode 100644 index 0000000..3c1b888 --- /dev/null +++ b/src/app/(game)/montpellier/data/features.json @@ -0,0 +1,2356 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8198414, + 43.6162888 + ] + }, + "properties": { + "id": 1, + "name": "Mosson", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 1 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8174028, + 43.6213447 + ] + }, + "properties": { + "id": 2, + "name": "Stade de la Mosson", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 2 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.817535, + 43.627657 + ] + }, + "properties": { + "id": 3, + "name": "Halles de la Paillade", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 3 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8212159, + 43.6306548 + ] + }, + "properties": { + "id": 4, + "name": "Saint-Paul", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 4 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.822705, + 43.6364094 + ] + }, + "properties": { + "id": 5, + "name": "Hauts de Massane", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 5 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8277875, + 43.6390018 + ] + }, + "properties": { + "id": 6, + "name": "Euromédecine", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 6 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.833307, + 43.6345296 + ] + }, + "properties": { + "id": 7, + "name": "Malbosc - Domaine d'Ô", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 7 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8430936, + 43.6316307 + ] + }, + "properties": { + "id": 8, + "name": "Château d'Ô", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 8 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8484797, + 43.634628 + ] + }, + "properties": { + "id": 9, + "name": "Occitanie - Hôpitaux-Facultés", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 9 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8525608, + 43.6316751 + ] + }, + "properties": { + "id": 10, + "name": "Hôpital Lapeyronie", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 10 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8616709, + 43.6291563 + ] + }, + "properties": { + "id": 11, + "name": "Université Montpellier - Triolet", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 11 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8657829, + 43.6269229 + ] + }, + "properties": { + "id": 12, + "name": "Saint-Éloi", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 12 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8681444, + 43.6224984 + ] + }, + "properties": { + "id": 13, + "name": "Boutonnet - Cité des Arts", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 13 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8694871, + 43.6189067 + ] + }, + "properties": { + "id": 14, + "name": "Stade Philippidès", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 14 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8741502, + 43.6164538 + ] + }, + "properties": { + "id": 15, + "name": "Albert 1er - Saint-Charles", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 15 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8782032, + 43.6147274 + ] + }, + "properties": { + "id": 16, + "name": "Louis Blanc - Agora de la Danse", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 16 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881957, + 43.6142561 + ] + }, + "properties": { + "id": 17, + "name": "Corum", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 17 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8797702, + 43.6084079 + ] + }, + "properties": { + "id": 18, + "name": "Comédie", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 18 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8801992, + 43.6056584 + ] + }, + "properties": { + "id": 19, + "name": "Gare Saint-Roch", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 19 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8833017, + 43.6071804 + ] + }, + "properties": { + "id": 20, + "name": "Du Guesclin", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 20 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8866898, + 43.6086092 + ] + }, + "properties": { + "id": 21, + "name": "Antigone", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 21 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8902941, + 43.6088993 + ] + }, + "properties": { + "id": 22, + "name": "Léon Blum", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 22 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8939097, + 43.6072981 + ] + }, + "properties": { + "id": 23, + "name": "Place de l'Europe", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 23 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8948979, + 43.6040961 + ] + }, + "properties": { + "id": 24, + "name": "Rives du Lez", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 24 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8955449, + 43.6005714 + ] + }, + "properties": { + "id": 25, + "name": "Moularès (Hôtel de Ville)", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 25 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8997688, + 43.6016281 + ] + }, + "properties": { + "id": 26, + "name": "Port Marianne", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 26 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9041182, + 43.6027649 + ] + }, + "properties": { + "id": 27, + "name": "Mondial 98", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 27 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9100221, + 43.6033557 + ] + }, + "properties": { + "id": 28, + "name": "Millénaire", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 28 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9157934, + 43.6037388 + ] + }, + "properties": { + "id": 29, + "name": "Place de France", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 29 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9203673, + 43.6038356 + ] + }, + "properties": { + "id": 30, + "name": "Odysseum", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 30 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9222244, + 43.5968999 + ] + }, + "properties": { + "id": 31, + "name": "Gare Sud de France", + "alternateNames": [], + "line": "Montpellier1", + "order": 1 + }, + "id": 31 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8306564, + 43.5748738 + ] + }, + "properties": { + "id": 32, + "name": "Saint-Jean-de-Védas Centre", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 32 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8379052, + 43.5708282 + ] + }, + "properties": { + "id": 33, + "name": "Saint-Jean-le-Sec", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 33 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8444363, + 43.5719919 + ] + }, + "properties": { + "id": 34, + "name": "La Condamine", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 34 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8499642, + 43.5752209 + ] + }, + "properties": { + "id": 35, + "name": "Victoire 2", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 35 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8601051, + 43.583879 + ] + }, + "properties": { + "id": 36, + "name": "Sabines", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 36 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.865695, + 43.5888673 + ] + }, + "properties": { + "id": 37, + "name": "Villeneuve d'Angoulême", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 37 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8664382, + 43.5925048 + ] + }, + "properties": { + "id": 38, + "name": "Croix d'Argent", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 38 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8679574, + 43.5955627 + ] + }, + "properties": { + "id": 39, + "name": "Mas Drevon", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 39 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8731927, + 43.59358 + ] + }, + "properties": { + "id": 40, + "name": "Lemasson", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 40 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8760145, + 43.594954 + ] + }, + "properties": { + "id": 41, + "name": "Saint-Cléophas", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 41 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8756775, + 43.5994208 + ] + }, + "properties": { + "id": 42, + "name": "Nouveau Saint-Roch", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 42 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8761818, + 43.6030665 + ] + }, + "properties": { + "id": 43, + "name": "Rondelet", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 43 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8802526, + 43.6056635 + ] + }, + "properties": { + "id": 44, + "name": "Gare Saint-Roch", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 44 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8798137, + 43.6083781 + ] + }, + "properties": { + "id": 45, + "name": "Comédie", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 45 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8818054, + 43.6144182 + ] + }, + "properties": { + "id": 46, + "name": "Corum", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 46 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8835972, + 43.6170502 + ] + }, + "properties": { + "id": 47, + "name": "Beaux-Arts", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 47 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8840706, + 43.6204816 + ] + }, + "properties": { + "id": 48, + "name": "Jeu de Mail des Abbés", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 48 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8833184, + 43.626274 + ] + }, + "properties": { + "id": 49, + "name": "Aiguelongue", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 49 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8887704, + 43.6267745 + ] + }, + "properties": { + "id": 50, + "name": "Saint-Lazare", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 50 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8978384, + 43.628648 + ] + }, + "properties": { + "id": 51, + "name": "Charles de Gaulle", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 51 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9026917, + 43.6301681 + ] + }, + "properties": { + "id": 52, + "name": "Clairval", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 52 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90911, + 43.6314509 + ] + }, + "properties": { + "id": 53, + "name": "La Galine", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 53 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9158063, + 43.6327881 + ] + }, + "properties": { + "id": 54, + "name": "Centurions", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 54 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9223924, + 43.6342577 + ] + }, + "properties": { + "id": 55, + "name": "Notre-Dame de Sablassou", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 55 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9248354, + 43.638641 + ] + }, + "properties": { + "id": 56, + "name": "Aube Rouge", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 56 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9294517, + 43.6468218 + ] + }, + "properties": { + "id": 57, + "name": "Via Domitia", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 57 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9209977, + 43.6493853 + ] + }, + "properties": { + "id": 58, + "name": "Georges Pompidou", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 58 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9128047, + 43.6545596 + ] + }, + "properties": { + "id": 59, + "name": "Jacou", + "alternateNames": [], + "line": "Montpellier2", + "order": 2 + }, + "id": 59 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9636474, + 43.5579564 + ] + }, + "properties": { + "id": 60, + "name": "Pérols Étang de l'Or", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 60 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9573953, + 43.5654383 + ] + }, + "properties": { + "id": 61, + "name": "Pérols - Centre", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 61 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9456566, + 43.5729444 + ] + }, + "properties": { + "id": 62, + "name": "Parc Expo", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 62 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9350421, + 43.5781392 + ] + }, + "properties": { + "id": 63, + "name": "Écopôle", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 63 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9256144, + 43.5827358 + ] + }, + "properties": { + "id": 64, + "name": "Soriech", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 64 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9201909, + 43.5854084 + ] + }, + "properties": { + "id": 65, + "name": "Boirargues", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 65 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9035259, + 43.5979503 + ] + }, + "properties": { + "id": 66, + "name": "Pablo Picasso", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 66 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8994636, + 43.601566 + ] + }, + "properties": { + "id": 67, + "name": "Port Marianne", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 67 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8955356, + 43.6006479 + ] + }, + "properties": { + "id": 68, + "name": "Moularès (Hôtel de Ville)", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 68 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8938614, + 43.6040207 + ] + }, + "properties": { + "id": 69, + "name": "Rives du Lez - Consuls de Mer", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 69 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8889694, + 43.6037185 + ] + }, + "properties": { + "id": 70, + "name": "Voltaire", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 70 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8842324, + 43.6037618 + ] + }, + "properties": { + "id": 71, + "name": "Place Carnot", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 71 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8797132, + 43.6052424 + ] + }, + "properties": { + "id": 72, + "name": "Gare Saint-Roch - République", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 72 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8766896, + 43.606427 + ] + }, + "properties": { + "id": 73, + "name": "Observatoire", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 73 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8727299, + 43.6062372 + ] + }, + "properties": { + "id": 74, + "name": "Gambetta - Chaptal", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 74 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8681304, + 43.6085626 + ] + }, + "properties": { + "id": 75, + "name": "Plan Cabanes", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 75 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8615025, + 43.6100217 + ] + }, + "properties": { + "id": 76, + "name": "Arceaux", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 76 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8548, + 43.610261 + ] + }, + "properties": { + "id": 77, + "name": "Astruc", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 77 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8466375, + 43.6114471 + ] + }, + "properties": { + "id": 78, + "name": "Jules Guesde", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 78 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8395235, + 43.6135181 + ] + }, + "properties": { + "id": 79, + "name": "Tonnelles", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 79 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8391413, + 43.6182507 + ] + }, + "properties": { + "id": 80, + "name": "Pergola", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 80 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8349511, + 43.6219189 + ] + }, + "properties": { + "id": 81, + "name": "Hôtel du Département", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 81 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8319619, + 43.6195151 + ] + }, + "properties": { + "id": 82, + "name": "Pilory", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 82 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8258568, + 43.6154832 + ] + }, + "properties": { + "id": 83, + "name": "Celleneuve", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 83 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8196588, + 43.6163397 + ] + }, + "properties": { + "id": 84, + "name": "Mosson", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 84 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.810219, + 43.6175115 + ] + }, + "properties": { + "id": 85, + "name": "Juvignac", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 85 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9052229, + 43.570666 + ] + }, + "properties": { + "id": 129, + "name": "Lattes Centre", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 129 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9141537, + 43.5713259 + ] + }, + "properties": { + "id": 130, + "name": "Cougourlude", + "alternateNames": [], + "line": "Montpellier3", + "order": 3 + }, + "id": 130 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8909614, + 43.5911314 + ] + }, + "properties": { + "id": 86, + "name": "Garcia Lorca", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 86 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8849928, + 43.5904199 + ] + }, + "properties": { + "id": 87, + "name": "Restanque", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 87 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8802527, + 43.5922458 + ] + }, + "properties": { + "id": 88, + "name": "Saint-Martin - Le Jam", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 88 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8756775, + 43.5994208 + ] + }, + "properties": { + "id": 89, + "name": "Nouveau Saint-Roch", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 89 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8761818, + 43.6030665 + ] + }, + "properties": { + "id": 90, + "name": "Rondelet", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 90 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8797132, + 43.6052424 + ] + }, + "properties": { + "id": 91, + "name": "Gare Saint-Roch - République", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 91 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8766896, + 43.606427 + ] + }, + "properties": { + "id": 92, + "name": "Observatoire", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 92 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8735437, + 43.6081284 + ] + }, + "properties": { + "id": 93, + "name": "Saint-Guilhem - Courreau", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 93 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8723484, + 43.6117993 + ] + }, + "properties": { + "id": 94, + "name": "Peyrou - Arc de Triomphe", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 94 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8737832, + 43.6148176 + ] + }, + "properties": { + "id": 95, + "name": "Albert 1er - Jardin des Plantes", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 95 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8782032, + 43.6147274 + ] + }, + "properties": { + "id": 96, + "name": "Louis Blanc - Agora de la Danse", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 96 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881957, + 43.6142561 + ] + }, + "properties": { + "id": 97, + "name": "Corum", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 97 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8883314, + 43.6139508 + ] + }, + "properties": { + "id": 98, + "name": "Les Aubes", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 98 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8949065, + 43.6125111 + ] + }, + "properties": { + "id": 99, + "name": "Pompignane", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 99 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8939097, + 43.6072981 + ] + }, + "properties": { + "id": 100, + "name": "Place de l'Europe", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 100 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8948979, + 43.6040961 + ] + }, + "properties": { + "id": 101, + "name": "Rives du Lez", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 101 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8949293, + 43.5994093 + ] + }, + "properties": { + "id": 102, + "name": "Georges Frêche - Hôtel de ville", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 102 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8958178, + 43.5935375 + ] + }, + "properties": { + "id": 103, + "name": "La Rauze", + "alternateNames": [], + "line": "Montpellier4", + "order": 4 + }, + "id": 103 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8237817, + 43.5929582 + ] + }, + "properties": { + "id": 104, + "name": "Grés de Montpellier", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 104 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8297902, + 43.5930997 + ] + }, + "properties": { + "id": 105, + "name": "Parc des Bouisses", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 105 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8374368, + 43.5952715 + ] + }, + "properties": { + "id": 106, + "name": "Parc Font-Colombe", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 106 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8424972, + 43.5935804 + ] + }, + "properties": { + "id": 107, + "name": "Parc Bagatelle", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 107 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8478678, + 43.5914263 + ] + }, + "properties": { + "id": 108, + "name": "Ovalie", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 108 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8498892, + 43.5951437 + ] + }, + "properties": { + "id": 109, + "name": "Yves du Manoir", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 109 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8495331, + 43.6007776 + ] + }, + "properties": { + "id": 110, + "name": "Estanove", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 110 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8547873, + 43.6027152 + ] + }, + "properties": { + "id": 111, + "name": "Chamberte - Les Roses", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 111 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8622907, + 43.6015548 + ] + }, + "properties": { + "id": 112, + "name": "Cité Créative - Parc Montcalm", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 112 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8682609, + 43.6014042 + ] + }, + "properties": { + "id": 113, + "name": "Place du 8 Mai 1945", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 113 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8718545, + 43.6032034 + ] + }, + "properties": { + "id": 114, + "name": "Parc Clemenceau", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 114 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8745798, + 43.6051115 + ] + }, + "properties": { + "id": 115, + "name": "Gambetta - Saint-Denis", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 115 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8735437, + 43.6081284 + ] + }, + "properties": { + "id": 116, + "name": "Saint-Guilhem - Courreau", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 116 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8723484, + 43.6117993 + ] + }, + "properties": { + "id": 117, + "name": "Peyrou - Arc de Triomphe", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 117 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8737832, + 43.6148176 + ] + }, + "properties": { + "id": 118, + "name": "Albert 1er - Jardin des Plantes", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 118 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8695186, + 43.6190802 + ] + }, + "properties": { + "id": 119, + "name": "Stade Philippidès", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 119 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.868106, + 43.6226771 + ] + }, + "properties": { + "id": 120, + "name": "Boutonnet - Cité des Arts", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 120 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8668751, + 43.6271863 + ] + }, + "properties": { + "id": 121, + "name": "Saint-Éloi - Docteur Pezet", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 121 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8695323, + 43.6301542 + ] + }, + "properties": { + "id": 122, + "name": "Université Paul Valéry", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 122 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8679954, + 43.6341878 + ] + }, + "properties": { + "id": 123, + "name": "Pôle Chimie Balard", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 123 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8657672, + 43.6383531 + ] + }, + "properties": { + "id": 124, + "name": "CNRS - Zoo de Lunaret", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 124 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8613349, + 43.6443985 + ] + }, + "properties": { + "id": 125, + "name": "Plan des 4 Seigneurs", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 125 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8686021, + 43.6461984 + ] + }, + "properties": { + "id": 126, + "name": "Agropolis", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 126 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8676268, + 43.6514042 + ] + }, + "properties": { + "id": 127, + "name": "Montferrier-sur-Lez", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 127 + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8729045, + 43.6537424 + ] + }, + "properties": { + "id": 128, + "name": "Clapiers", + "alternateNames": [], + "line": "Montpellier5", + "order": 5 + }, + "id": 128 + } + ], + "properties": { + "totalStations": 111, + "stationsPerLine": { + "Montpellier1": 31, + "Montpellier2": 28, + "Montpellier3": 28, + "Montpellier4": 18, + "Montpellier5": 25 + }, + "nextStationId": 131 + } +} \ No newline at end of file diff --git a/src/app/(game)/montpellier/data/lines.json b/src/app/(game)/montpellier/data/lines.json new file mode 100644 index 0000000..2e9a61f --- /dev/null +++ b/src/app/(game)/montpellier/data/lines.json @@ -0,0 +1,37 @@ +{ + "Montpellier1": { + "name": "1", + "color": "#005BA1", + "backgroundColor": "#002D51", + "textColor": "#FFFFFF", + "order": 1 + }, + "Montpellier2": { + "name": "2", + "color": "#F18E00", + "backgroundColor": "#784700", + "textColor": "#FFFFFF", + "order": 2 + }, + "Montpellier3": { + "name": "3", + "color": "#CBD300", + "backgroundColor": "#656A00", + "textColor": "#FFFFFF", + "order": 3 + }, + "Montpellier4": { + "name": "4", + "color": "#4A2A15", + "backgroundColor": "#25150A", + "textColor": "#FFFFFF", + "order": 4 + }, + "Montpellier5": { + "name": "5", + "color": "#2D7431", + "backgroundColor": "#163A18", + "textColor": "#FFFFFF", + "order": 5 + } +} \ No newline at end of file diff --git a/src/app/(game)/montpellier/data/preprocess.ts b/src/app/(game)/montpellier/data/preprocess.ts new file mode 100644 index 0000000..4fa8ba0 --- /dev/null +++ b/src/app/(game)/montpellier/data/preprocess.ts @@ -0,0 +1,547 @@ +import Color from 'color' +import { promises as fs } from 'fs' +import * as path from 'path' + +export type SourceJson = { + lines: { + lineId: string + relations: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + }[] + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; name?: string; lat: number; lon: number }[] +} + +// ---------------------------------------- +// line configuration +// ---------------------------------------- +export const linesMetadata: { + [id: string]: { + name: string + osm: { + relationIds: number[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + } + color: string + } +} = { + Montpellier1: { + name: '1', + osm: { + relationIds: [4107815], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#005BA1', + }, + Montpellier2: { + name: '2', + osm: { + relationIds: [4107772], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#F18E00', + }, + Montpellier3: { + name: '3', + osm: { + relationIds: [4107865], + extraStationNodeIds: [3127567487, 1680725835], + extraRouteWayIds: [ + 307563698, 208440292, 307170833, 208440295, 208440294, 307563691, + 1355961353, 1355961354, 307563703, 1355961355, 1355961356, 208440293, + 1355961357, 306902199, + ], + }, + color: '#CBD300', + }, + Montpellier4: { + name: '4', + osm: { + relationIds: [1852816], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#4A2A15', + }, + Montpellier5: { + name: '5', + osm: { + relationIds: [19846275], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#2D7431', + }, +} + +const Bun = { + file(path: string) { + return { + async json() { + return JSON.parse(await fs.readFile(path, 'utf8')) + }, + } + }, + + async write(path: string, content: string) { + await fs.writeFile(path, content, 'utf8') + }, +} + +type StationsFeatureCollection = { + type: 'FeatureCollection' + features: { + type: 'Feature' + geometry: { + type: 'Point' + coordinates: [number, number] + } + properties: { + id: number + name: string + alternate_names?: string[] + line: string + order: number + } + id: number + }[] + properties: { + totalStations: number + stationsPerLine: { + [lineId: string]: number + } + nextStationId?: number + } +} + +type RoutesFeatureCollection = { + type: 'FeatureCollection' + features: { + type: 'Feature' + geometry: { + type: 'LineString' + coordinates: [number, number][] + } + properties: { + line: string + name: string + color: string + order: number + } + }[] +} + +function getStationMapKeyByLineIdAndName(args: { + lineId: string + name: string +}): string { + return `${args.lineId}::${args.name}` +} + +function getStationMapKeyByLineIdAndNodeId(args: { + lineId: string + nodeId: number +}): string { + return `${args.lineId}::${args.nodeId}` +} + +async function parseOldStationsAndCreateStationIdGetter(): Promise< + (args: { lineId: string; name: string }) => number +> { + const oldStationsIdMap = new Map() + let maxStationId = 0 + try { + const oldFeatureCollection = Bun.file( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './features.json', + ), + ) + const { features, properties } = + (await oldFeatureCollection.json()) as StationsFeatureCollection + maxStationId = (properties.nextStationId ?? 1) - 1 + for (const feature of features) { + const { name, line, id } = feature.properties + oldStationsIdMap.set( + getStationMapKeyByLineIdAndName({ + lineId: line, + name, + }), + id, + ) + maxStationId = Math.max(maxStationId, id) + } + } catch (err) { + console.warn( + 'Could not find or parse old features.json', + (err as Error).message, + ) + } + let nextStationId = maxStationId + 1 + + function getStationId(args: { lineId: string; name: string }): number { + const mapKey = getStationMapKeyByLineIdAndName(args) + return oldStationsIdMap.get(mapKey) ?? nextStationId++ + } + return getStationId +} + +function toMap( + array: T[], + keyPropertyName: K, +): Map { + const map = new Map() + for (const item of array) { + map.set(item[keyPropertyName], item) + } + return map +} + +function isDefined(arg: T): arg is Exclude { + return arg !== null && typeof arg !== 'undefined' +} + +const main = async () => { + const data = Bun.file( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './source.json', + ), + ) + const { lines, nodes, ways } = (await data.json()) as SourceJson + + const getStationId = await parseOldStationsAndCreateStationIdGetter() + const waysMap = toMap(ways, 'wayId') + const nodesMap = toMap(nodes, 'nodeId') + + // lines + const augmentedLinesMetadataMap = new Map< + string, + (typeof linesMetadata)[string] & { + id: string + order: number + latLonOffset: number + } + >() + const sortedLineIds = Object.entries(linesMetadata) + .sort(([, lineMetadata1], [, lineMetadata2]) => + lineMetadata1.name.localeCompare(lineMetadata2.name), + ) + .map(([lineId, lineMetadata], ix, arr): string => { + const numLines = arr.length + augmentedLinesMetadataMap.set(lineId, { + ...lineMetadata, + id: lineId, + order: ix + 1, + latLonOffset: (ix / (numLines - 1) - 0.5) * 0.000_015, + }) + return lineId + }) + + console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './lines.json', + ), + JSON.stringify( + sortedLineIds.reduce( + (acc, lineId) => { + const lineMetadata = augmentedLinesMetadataMap.get(lineId)! + acc[lineId] = { + name: lineMetadata.name, + color: lineMetadata.color, + backgroundColor: Color(lineMetadata.color).darken(0.5).hex(), + textColor: '#FFFFFF', + order: lineMetadata.order, + } + return acc + }, + {} as { + [lineId: string]: { + name: string + color: string + backgroundColor: string + textColor: string + order: number + } + }, + ), + null, + 2, + ), + ) + + // stations + type StationDetails = { + name: string + coords: { + lat: number + lon: number + lineIds: Map + nodeIds: { lineId: string; nodeId: number }[] + }[] + stationIdByLineId: Map + alternateNames: string[] + } + /** + * Get station details but ensure we have each station only once (per line), i.e. usually a station has at least two + * nodes (one for each direction of the line) but we only want to have one. + * As we want to access it by lineId/nodeId later, we eventually build another map for that purpose. + */ + function getUniqueStationsByLineIdAndNodeId(): Map { + const mapUniqueStationsByName = new Map() + for (const line of lines) { + for (const stationNodeId of line.relations + .map((relation) => relation.stationsNodeIds) + .flat() + .concat(...line.extraStationNodeIds)) { + const stationNode = nodesMap.get(stationNodeId)! + if (!stationNode.name) + throw new Error( + `Unknown name for station with node id ${stationNodeId}`, + ) + const existingStation = mapUniqueStationsByName.get(stationNode.name) + if (existingStation === undefined) { + mapUniqueStationsByName.set(stationNode.name, { + name: stationNode.name, + coords: [ + { + lat: stationNode.lat, + lon: stationNode.lon, + lineIds: new Map([[line.lineId, true]]), + nodeIds: [{ lineId: line.lineId, nodeId: stationNodeId }], + }, + ], + stationIdByLineId: new Map([ + [ + line.lineId, + getStationId({ lineId: line.lineId, name: stationNode.name }), + ], + ]), + alternateNames: [], + }) + } else { + if (existingStation.stationIdByLineId.has(line.lineId) === false) { + existingStation.stationIdByLineId.set( + line.lineId, + getStationId({ lineId: line.lineId, name: stationNode.name }), + ) + } + const existingCoords = existingStation.coords.find( + (c) => c.lat === stationNode.lat && c.lon === stationNode.lon, + ) + if (existingCoords) { + existingCoords.lineIds.set(line.lineId, true) + existingCoords.nodeIds.push({ + lineId: line.lineId, + nodeId: stationNodeId, + }) + } else { + existingStation.coords.push({ + lat: stationNode.lat, + lon: stationNode.lon, + lineIds: new Map([[line.lineId, true]]), + nodeIds: [{ lineId: line.lineId, nodeId: stationNodeId }], + }) + } + } + } + } + const mapUniqueStationsByLineIdAndNodeId = new Map() + for (const stationDetails of mapUniqueStationsByName.values()) { + // sort nodes by which node covers more lines -> ideally first node covers all lines and only in rare cases we need to use 2nd+ node for some lines (if there's no node matching all lines) + stationDetails.coords.sort( + (c1, c2) => + c2.lineIds.size - c1.lineIds.size || + c1.lat - c2.lat || + c1.lon - c2.lon, + ) + for (const coords of stationDetails.coords) { + for (const { lineId, nodeId } of coords.nodeIds) { + mapUniqueStationsByLineIdAndNodeId.set( + getStationMapKeyByLineIdAndNodeId({ lineId, nodeId }), + stationDetails, + ) + } + } + } + + // print unique station names a-z (for easier review where alternate names are missing / might be helpful) + const stationSortedAtoZ = [...mapUniqueStationsByName.values()].sort( + (s1, s2) => s1.name.localeCompare(s2.name), + ) + console.debug(`Stations (a-z, ${stationSortedAtoZ.length}):`) + for (const station of stationSortedAtoZ) { + console.debug( + ` ${station.name}${ + station.alternateNames.length > 0 + ? ` (${station.alternateNames.join('; ')})` + : '' + }`, + ) + } + + return mapUniqueStationsByLineIdAndNodeId + } + const mapUniqueStationsByLineIdAndNodeId = + getUniqueStationsByLineIdAndNodeId() + const mapStationsUsed = new Map() + const stationFeatures: StationsFeatureCollection['features'] = lines + .map((line) => { + const nodeIds = [ + // we sort relations by length to get most-complete list of stations so that order of station names in output is closest to actual order and stations are not too scattered + ...line.relations + .sort((r1, r2) => + r1.stationsNodeIds.length !== r2.stationsNodeIds.length + ? r2.stationsNodeIds.length - r1.stationsNodeIds.length + : r1.relationId - r2.relationId, + ) + .map((relation) => relation.stationsNodeIds) + .flat(), + ...line.extraStationNodeIds, + ] + return nodeIds + .map((nodeId) => { + const stationDetails = mapUniqueStationsByLineIdAndNodeId.get( + getStationMapKeyByLineIdAndNodeId({ + lineId: line.lineId, + nodeId, + }), + )! + const coords = stationDetails.coords.find((c) => + c.lineIds.has(line.lineId), + )! + // we check if we already have station with that name at those coordinates for that line + const mapKey = `${line.lineId}::${stationDetails.name}::${coords.lat}::${coords.lon}` + if (mapStationsUsed.has(mapKey)) { + // we already have this station in the output => skip + return undefined + } else { + mapStationsUsed.set(mapKey, true) + return { + type: 'Feature' as const, + geometry: { + type: 'Point' as const, + coordinates: [coords.lon, coords.lat] as [number, number], + }, + properties: { + id: stationDetails.stationIdByLineId.get(line.lineId)!, + name: stationDetails.name, + alternateNames: [], + line: line.lineId, + order: augmentedLinesMetadataMap.get(line.lineId)!.order, + }, + id: stationDetails.stationIdByLineId.get(line.lineId)!, + } + } + }) + .filter(isDefined) + }) + .flat() + const mapStationsNamesUsed = new Map() + const mapStationsNamesUsedByLine = new Map() + const stations: StationsFeatureCollection = { + type: 'FeatureCollection', + features: stationFeatures, + properties: { + ...stationFeatures.reduce( + (properties, station) => { + if (mapStationsNamesUsed.has(station.properties.name) === false) { + mapStationsNamesUsed.set(station.properties.name, true) + properties.totalStations += 1 + } + const mapKey = getStationMapKeyByLineIdAndName({ + lineId: station.properties.line, + name: station.properties.name, + }) + if (mapStationsNamesUsedByLine.has(mapKey) === false) { + mapStationsNamesUsedByLine.set(mapKey, true) + properties.stationsPerLine[station.properties.line] += 1 + } + return properties + }, + { + totalStations: 0, + stationsPerLine: Object.fromEntries( + lines.map((line) => [line.lineId, 0]), + ), + }, + ), + // using a non-existant line/station to get next station id + nextStationId: getStationId({ lineId: '', name: '' }), + }, + } + + console.debug( + `Writing ${stations.features.length} stations to features.json ...`, + ) + stationFeatures.forEach((station) => + console.debug(` ${station.properties.line} ${station.properties.name}`), + ) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './features.json', + ), + JSON.stringify(stations, null, 2), + ) + + // routes + const routes: RoutesFeatureCollection = { + type: 'FeatureCollection', + features: lines + .map((line) => { + const wayIds = [ + ...line.relations.map((relation) => relation.routesWayIds).flat(), + ...line.extraRouteWayIds, + ] + const uniqueWayIds = [...new Set(wayIds)].sort((w1, w2) => w1 - w2) + return uniqueWayIds.map((wayId) => { + const nodeIds = waysMap.get(wayId)!.nodeIds + const nodes = nodeIds.map((nodeId) => nodesMap.get(nodeId)!) + const { latLonOffset, name, color, order } = + augmentedLinesMetadataMap.get(line.lineId)! + return { + type: 'Feature' as const, + geometry: { + type: 'LineString' as const, + coordinates: nodes.map( + (node) => + [node.lon + latLonOffset, node.lat + latLonOffset] as [ + number, + number, + ], + ), + }, + properties: { + line: line.lineId, + name, + color, + order, + }, + } + }) + }) + .flat(), + } + + console.debug(`Writing ${routes.features.length} paths to routes.json ...`) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/montpellier/data', + './routes.json', + ), + JSON.stringify(routes, null, 2), + ) +} + +main() diff --git a/src/app/(game)/montpellier/data/routes.json b/src/app/(game)/montpellier/data/routes.json new file mode 100644 index 0000000..33c9eb7 --- /dev/null +++ b/src/app/(game)/montpellier/data/routes.json @@ -0,0 +1,19873 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.882723, + 43.612293799999996 + ], + [ + 3.8827632999999997, + 43.611917399999996 + ], + [ + 3.8827767, + 43.6117985 + ], + [ + 3.8829246, + 43.610998599999995 + ], + [ + 3.8830088999999997, + 43.610625299999995 + ], + [ + 3.8830655, + 43.610374799999995 + ], + [ + 3.8830731999999997, + 43.6103222 + ], + [ + 3.8830636999999997, + 43.610256 + ], + [ + 3.8830529, + 43.6101842 + ], + [ + 3.8830188, + 43.6101056 + ], + [ + 3.8829768999999996, + 43.6100517 + ], + [ + 3.8829165, + 43.6100001 + ], + [ + 3.8828329, + 43.6099442 + ], + [ + 3.8826204, + 43.609861699999996 + ], + [ + 3.8818987, + 43.6095761 + ], + [ + 3.8817348999999997, + 43.609509499999994 + ], + [ + 3.8816208999999997, + 43.6094492 + ], + [ + 3.8815266, + 43.6093714 + ], + [ + 3.8812644, + 43.609164799999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8227719, + 43.631072499999995 + ], + [ + 3.8227826, + 43.6311067 + ], + [ + 3.8227921, + 43.6311447 + ], + [ + 3.8227993999999996, + 43.631212399999995 + ], + [ + 3.8227758, + 43.6326988 + ], + [ + 3.8227636, + 43.6332765 + ], + [ + 3.8227482999999998, + 43.6342503 + ], + [ + 3.8227469, + 43.6343393 + ], + [ + 3.8227444999999998, + 43.634443399999995 + ], + [ + 3.8227092, + 43.635914799999995 + ], + [ + 3.8226975, + 43.636401899999996 + ], + [ + 3.8226932999999996, + 43.636589699999995 + ], + [ + 3.8226898, + 43.6367487 + ], + [ + 3.8227026, + 43.6368539 + ], + [ + 3.822716, + 43.636902 + ], + [ + 3.8227379, + 43.6369475 + ], + [ + 3.8227818, + 43.637021399999995 + ], + [ + 3.8228256, + 43.6370751 + ], + [ + 3.8229048999999997, + 43.637142499999996 + ], + [ + 3.8229191, + 43.6371505 + ], + [ + 3.8230534, + 43.6372286 + ], + [ + 3.8232223999999997, + 43.637299399999996 + ], + [ + 3.8249389999999996, + 43.637955999999996 + ], + [ + 3.8260411, + 43.6383568 + ], + [ + 3.8274109999999997, + 43.638859 + ], + [ + 3.8277799999999997, + 43.6389943 + ], + [ + 3.8280065, + 43.6390785 + ], + [ + 3.8281810999999997, + 43.6391432 + ], + [ + 3.8282753, + 43.639168 + ], + [ + 3.8283313999999997, + 43.6391786 + ], + [ + 3.8283864999999997, + 43.6391825 + ], + [ + 3.8284740999999998, + 43.6391825 + ], + [ + 3.8285495999999997, + 43.6391758 + ], + [ + 3.8285891, + 43.6391669 + ], + [ + 3.8286659, + 43.639146399999994 + ], + [ + 3.8288123, + 43.6390951 + ], + [ + 3.8289432, + 43.639034699999996 + ], + [ + 3.8289811, + 43.6390172 + ], + [ + 3.8290661999999998, + 43.6389789 + ], + [ + 3.8292574999999998, + 43.6388639 + ], + [ + 3.8295459, + 43.638669799999995 + ], + [ + 3.8298543, + 43.638431 + ], + [ + 3.8302967, + 43.638042899999995 + ], + [ + 3.8305973, + 43.6377361 + ], + [ + 3.8308185999999997, + 43.6374828 + ], + [ + 3.8309016999999996, + 43.637375 + ], + [ + 3.8309531, + 43.637292099999996 + ], + [ + 3.8309604999999998, + 43.637279899999996 + ], + [ + 3.8310788, + 43.637045 + ], + [ + 3.8312475, + 43.6366355 + ], + [ + 3.8312798999999997, + 43.636564199999995 + ], + [ + 3.8313123, + 43.6364928 + ], + [ + 3.8313433999999997, + 43.636443299999996 + ], + [ + 3.831473, + 43.636222 + ], + [ + 3.8315827999999996, + 43.636074199999996 + ], + [ + 3.8317295, + 43.6358852 + ], + [ + 3.8319601, + 43.6356356 + ], + [ + 3.8321839, + 43.6354275 + ], + [ + 3.8326398, + 43.634999 + ], + [ + 3.8328458999999997, + 43.634834999999995 + ], + [ + 3.8329584999999997, + 43.6347549 + ], + [ + 3.8332995, + 43.6345221 + ], + [ + 3.8334968999999997, + 43.6343898 + ], + [ + 3.8336973, + 43.6342615 + ], + [ + 3.8337801999999996, + 43.6342089 + ], + [ + 3.8338961, + 43.6341478 + ], + [ + 3.8340954999999997, + 43.6340575 + ], + [ + 3.8344758, + 43.6339158 + ], + [ + 3.8353146999999996, + 43.6335905 + ], + [ + 3.8356181, + 43.6334684 + ], + [ + 3.835899, + 43.633342 + ], + [ + 3.8360482, + 43.6332689 + ], + [ + 3.8361935999999996, + 43.6331926 + ], + [ + 3.836356, + 43.633098499999996 + ], + [ + 3.8365324999999997, + 43.632991999999994 + ], + [ + 3.8366477, + 43.6329212 + ], + [ + 3.8367207, + 43.6328702 + ], + [ + 3.8369895, + 43.6326736 + ], + [ + 3.8371565999999997, + 43.6325394 + ], + [ + 3.8374870999999997, + 43.6322585 + ], + [ + 3.8376362, + 43.6321253 + ], + [ + 3.8377632, + 43.6320152 + ], + [ + 3.8379206999999997, + 43.6318926 + ], + [ + 3.838161, + 43.631737799999996 + ], + [ + 3.8383797, + 43.631617299999995 + ], + [ + 3.8385849, + 43.631526 + ], + [ + 3.8388196, + 43.6314372 + ], + [ + 3.8393623999999997, + 43.631284 + ], + [ + 3.8399072999999997, + 43.6311446 + ], + [ + 3.8404639, + 43.6310256 + ], + [ + 3.8406512, + 43.6309724 + ], + [ + 3.8408648, + 43.6308951 + ], + [ + 3.8410149999999996, + 43.6308265 + ], + [ + 3.8410998999999997, + 43.630777699999996 + ], + [ + 3.8414346, + 43.6305767 + ], + [ + 3.8415527999999997, + 43.630517499999996 + ], + [ + 3.8416352999999996, + 43.6304835 + ], + [ + 3.8417727, + 43.6304381 + ], + [ + 3.8418956, + 43.6304124 + ], + [ + 3.8420253, + 43.630395799999995 + ], + [ + 3.8421843, + 43.6303864 + ], + [ + 3.8423627, + 43.6303991 + ], + [ + 3.8424942, + 43.6304253 + ], + [ + 3.8426518, + 43.630468 + ], + [ + 3.8428006, + 43.6305262 + ], + [ + 3.8428369, + 43.630540599999996 + ], + [ + 3.8429411, + 43.6305985 + ], + [ + 3.8429930999999997, + 43.6306389 + ], + [ + 3.8430671999999997, + 43.6307033 + ], + [ + 3.8431268, + 43.6307877 + ], + [ + 3.8431614, + 43.6308757 + ], + [ + 3.8431667, + 43.6309591 + ], + [ + 3.843152, + 43.631091899999994 + ], + [ + 3.8431349, + 43.6312308 + ], + [ + 3.8431211999999997, + 43.631349799999995 + ], + [ + 3.8430861, + 43.6316232 + ], + [ + 3.8430722999999998, + 43.631727 + ], + [ + 3.8430549999999997, + 43.6318571 + ], + [ + 3.8430473999999997, + 43.6319142 + ], + [ + 3.8430293, + 43.6320085 + ], + [ + 3.8430253, + 43.632120099999995 + ], + [ + 3.8430247, + 43.63218 + ], + [ + 3.8430524999999998, + 43.6323327 + ], + [ + 3.8430611999999997, + 43.6323808 + ], + [ + 3.8430915999999997, + 43.6324705 + ], + [ + 3.8432866999999997, + 43.6330512 + ], + [ + 3.8433617, + 43.6332953 + ], + [ + 3.8433827999999997, + 43.6333749 + ], + [ + 3.8434021, + 43.6334568 + ], + [ + 3.8434222, + 43.6335796 + ], + [ + 3.8434391, + 43.633652899999994 + ], + [ + 3.8434760999999997, + 43.6338649 + ], + [ + 3.8434846, + 43.633913799999995 + ], + [ + 3.8435403, + 43.634099199999994 + ], + [ + 3.843566, + 43.6341726 + ], + [ + 3.8435778999999997, + 43.6341992 + ], + [ + 3.8438318999999996, + 43.6347069 + ], + [ + 3.8439231, + 43.6348068 + ], + [ + 3.8439753999999997, + 43.6348534 + ], + [ + 3.8440452, + 43.6348961 + ], + [ + 3.8440988, + 43.6349169 + ], + [ + 3.8444059, + 43.6350019 + ], + [ + 3.8446534999999997, + 43.6350735 + ], + [ + 3.8447533999999997, + 43.6351047 + ], + [ + 3.8452971999999996, + 43.6352836 + ], + [ + 3.8454520999999997, + 43.6353345 + ], + [ + 3.8466473999999997, + 43.635714899999996 + ], + [ + 3.8468677, + 43.635776 + ], + [ + 3.8470009999999997, + 43.6358027 + ], + [ + 3.8471281, + 43.635805999999995 + ], + [ + 3.8472774, + 43.6357906 + ], + [ + 3.8473121, + 43.6357833 + ], + [ + 3.8473818, + 43.635760499999996 + ], + [ + 3.8474619, + 43.6357295 + ], + [ + 3.8475243, + 43.635694 + ], + [ + 3.8475788, + 43.635658899999996 + ], + [ + 3.847616, + 43.6356231 + ], + [ + 3.8480859, + 43.635085399999994 + ], + [ + 3.8482339999999997, + 43.6349082 + ], + [ + 3.8484722, + 43.6346205 + ], + [ + 3.8488509, + 43.6341859 + ], + [ + 3.8488765, + 43.634156499999996 + ], + [ + 3.8489359999999997, + 43.6340976 + ], + [ + 3.8489997, + 43.6340371 + ], + [ + 3.8490195999999997, + 43.6340206 + ], + [ + 3.849148, + 43.633914399999995 + ], + [ + 3.8497752, + 43.6335001 + ], + [ + 3.8508928, + 43.632761699999996 + ], + [ + 3.851689, + 43.632236999999996 + ], + [ + 3.8517444, + 43.6321989 + ], + [ + 3.8523338999999996, + 43.6318117 + ], + [ + 3.8523506, + 43.6318007 + ], + [ + 3.8524284, + 43.631749299999996 + ], + [ + 3.8525533, + 43.6316676 + ], + [ + 3.852849, + 43.631471 + ], + [ + 3.8529624, + 43.6313956 + ], + [ + 3.8530555, + 43.631343699999995 + ], + [ + 3.8531397, + 43.631298099999995 + ], + [ + 3.8531579999999996, + 43.6312882 + ], + [ + 3.8532252, + 43.6312603 + ], + [ + 3.8532484, + 43.6312521 + ], + [ + 3.8534436, + 43.6311873 + ], + [ + 3.8537266, + 43.6311028 + ], + [ + 3.8539263999999998, + 43.631031 + ], + [ + 3.8541276, + 43.6309426 + ], + [ + 3.8543086, + 43.630837799999995 + ], + [ + 3.8552701999999996, + 43.630305899999996 + ], + [ + 3.8554808, + 43.6301865 + ], + [ + 3.8557395999999997, + 43.6300205 + ], + [ + 3.8559563, + 43.6298545 + ], + [ + 3.8563806, + 43.6294788 + ], + [ + 3.8567902, + 43.629052599999994 + ], + [ + 3.8569, + 43.628938299999994 + ], + [ + 3.8569948999999997, + 43.6288473 + ], + [ + 3.8573127, + 43.628520699999996 + ], + [ + 3.857469, + 43.6283739 + ], + [ + 3.8575310999999997, + 43.628328499999995 + ], + [ + 3.8576185, + 43.6282645 + ], + [ + 3.8577369, + 43.6282047 + ], + [ + 3.8577605999999998, + 43.6281937 + ], + [ + 3.8578376, + 43.6281581 + ], + [ + 3.8579067, + 43.6281373 + ], + [ + 3.8580512999999996, + 43.6281028 + ], + [ + 3.858088, + 43.628098599999994 + ], + [ + 3.8582342, + 43.6280818 + ], + [ + 3.8582782, + 43.6280794 + ], + [ + 3.8584335999999997, + 43.6280802 + ], + [ + 3.8586012, + 43.628099299999995 + ], + [ + 3.8587612, + 43.6281262 + ], + [ + 3.8596344, + 43.6284395 + ], + [ + 3.8610697, + 43.6289374 + ], + [ + 3.8612899, + 43.6290158 + ], + [ + 3.8616634, + 43.629148799999996 + ], + [ + 3.861906, + 43.6292368 + ], + [ + 3.8620441, + 43.6292869 + ], + [ + 3.8625947999999997, + 43.6294866 + ], + [ + 3.8627805, + 43.629542199999996 + ], + [ + 3.8628663999999997, + 43.629559099999994 + ], + [ + 3.8629312999999996, + 43.629566 + ], + [ + 3.8629898999999996, + 43.629570799999996 + ], + [ + 3.8630272999999997, + 43.6295709 + ], + [ + 3.8630679, + 43.6295709 + ], + [ + 3.8631151999999997, + 43.629568899999995 + ], + [ + 3.8631655, + 43.629563499999996 + ], + [ + 3.8632598, + 43.6295453 + ], + [ + 3.8633276, + 43.6295217 + ], + [ + 3.8633979, + 43.6294913 + ], + [ + 3.8634519, + 43.6294584 + ], + [ + 3.8635107, + 43.629416 + ], + [ + 3.8636203, + 43.629289899999996 + ], + [ + 3.8637189, + 43.629107499999996 + ], + [ + 3.8637726999999997, + 43.6290051 + ], + [ + 3.8641045999999997, + 43.628372999999996 + ], + [ + 3.8641836, + 43.6282402 + ], + [ + 3.8642689, + 43.628135099999994 + ], + [ + 3.8643674999999997, + 43.628032 + ], + [ + 3.8645198, + 43.6278857 + ], + [ + 3.8646396, + 43.627781399999996 + ], + [ + 3.8649934, + 43.627509599999996 + ], + [ + 3.865008, + 43.6274987 + ], + [ + 3.8654805999999997, + 43.6271439 + ], + [ + 3.8657754, + 43.626915399999994 + ], + [ + 3.8658568, + 43.626858399999996 + ], + [ + 3.8659383, + 43.626795599999994 + ], + [ + 3.8660465999999998, + 43.626708199999996 + ], + [ + 3.8661927, + 43.6265928 + ], + [ + 3.8662248, + 43.6265599 + ], + [ + 3.8662644, + 43.626506799999994 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8826516, + 43.612984399999995 + ], + [ + 3.8826525, + 43.6128505 + ], + [ + 3.8826753999999997, + 43.612578 + ], + [ + 3.882723, + 43.612293799999996 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8962641999999996, + 43.600234799999996 + ], + [ + 3.8966982, + 43.600458499999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8803387, + 43.6052622 + ], + [ + 3.8803562, + 43.605236899999994 + ], + [ + 3.880378, + 43.6052142 + ], + [ + 3.8803984, + 43.605193 + ], + [ + 3.8804252999999997, + 43.605174299999995 + ], + [ + 3.8804689999999997, + 43.6051535 + ], + [ + 3.8804974999999997, + 43.6051413 + ], + [ + 3.8805652, + 43.6051218 + ], + [ + 3.8806118, + 43.605115399999995 + ], + [ + 3.8806659, + 43.605114 + ], + [ + 3.8807221, + 43.605117899999996 + ], + [ + 3.8807546, + 43.6051223 + ], + [ + 3.8808214999999997, + 43.6051408 + ], + [ + 3.8808434999999997, + 43.6051511 + ], + [ + 3.8808567, + 43.605157299999995 + ], + [ + 3.8809066999999997, + 43.6051807 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8809066999999997, + 43.6051807 + ], + [ + 3.8812235, + 43.6053916 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8872955, + 43.609106399999995 + ], + [ + 3.888067, + 43.6090532 + ], + [ + 3.8882228999999997, + 43.6090434 + ], + [ + 3.8892401999999997, + 43.6089692 + ], + [ + 3.8894746, + 43.608952099999996 + ], + [ + 3.8897287, + 43.6089342 + ], + [ + 3.8902866, + 43.608891799999995 + ], + [ + 3.8905339999999997, + 43.608877 + ], + [ + 3.8906509, + 43.608869899999995 + ], + [ + 3.8908449, + 43.6088573 + ], + [ + 3.8912335, + 43.6088282 + ], + [ + 3.8916532, + 43.6087989 + ], + [ + 3.8925975999999998, + 43.608733 + ], + [ + 3.8935494, + 43.6086714 + ], + [ + 3.8936389, + 43.6086658 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8940110999999997, + 43.608421799999995 + ], + [ + 3.893951, + 43.6079375 + ], + [ + 3.8939323999999997, + 43.6077632 + ], + [ + 3.8939326999999997, + 43.6077574 + ], + [ + 3.893939, + 43.6076269 + ], + [ + 3.8939364999999997, + 43.6075458 + ], + [ + 3.8939022, + 43.6072906 + ], + [ + 3.893872, + 43.6070679 + ], + [ + 3.8938661, + 43.6070071 + ], + [ + 3.8938718999999997, + 43.606966299999996 + ], + [ + 3.8938762999999996, + 43.6069347 + ], + [ + 3.8938854, + 43.6069129 + ], + [ + 3.8938892999999997, + 43.6069034 + ], + [ + 3.8939057, + 43.6068639 + ], + [ + 3.8939209, + 43.606831199999995 + ], + [ + 3.8939713, + 43.6067234 + ], + [ + 3.8939841, + 43.6066959 + ], + [ + 3.8940246999999997, + 43.606609 + ], + [ + 3.8940414, + 43.6065739 + ], + [ + 3.8940533999999998, + 43.6065258 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8970832, + 43.6006569 + ], + [ + 3.8972339999999996, + 43.600732099999995 + ], + [ + 3.8973255, + 43.6007718 + ], + [ + 3.8973590999999996, + 43.6007864 + ], + [ + 3.8974023, + 43.600805199999996 + ], + [ + 3.8975367999999997, + 43.6008591 + ], + [ + 3.8977439, + 43.600940599999994 + ], + [ + 3.8986631, + 43.6012558 + ], + [ + 3.8988579, + 43.601319499999995 + ], + [ + 3.8989857, + 43.6013612 + ], + [ + 3.8997612999999998, + 43.6016206 + ], + [ + 3.9001995, + 43.6017723 + ], + [ + 3.9003926, + 43.601834999999994 + ], + [ + 3.9004828999999996, + 43.6018663 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8947125, + 43.6048214 + ], + [ + 3.8947566, + 43.6047112 + ], + [ + 3.8947753, + 43.604658099999995 + ], + [ + 3.8947890999999997, + 43.60461 + ], + [ + 3.8947988, + 43.6045729 + ], + [ + 3.8948104, + 43.6045223 + ], + [ + 3.8948247, + 43.604447199999996 + ], + [ + 3.8948329, + 43.604405799999995 + ], + [ + 3.8948904, + 43.6040886 + ], + [ + 3.8949070999999997, + 43.604005199999996 + ], + [ + 3.8949138, + 43.603974699999995 + ], + [ + 3.8949187999999997, + 43.6039496 + ], + [ + 3.89493, + 43.6038753 + ], + [ + 3.8949339999999997, + 43.6038028 + ], + [ + 3.8949333, + 43.6037664 + ], + [ + 3.8949268, + 43.6036971 + ], + [ + 3.8949213, + 43.603661699999996 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8949213, + 43.603661699999996 + ], + [ + 3.8949119, + 43.6036241 + ], + [ + 3.8948964999999998, + 43.603580699999995 + ], + [ + 3.8948115999999997, + 43.603384299999995 + ], + [ + 3.8947699, + 43.6032733 + ], + [ + 3.8947513, + 43.603225699999996 + ], + [ + 3.8947171999999997, + 43.603138699999995 + ], + [ + 3.8946582999999997, + 43.602930699999995 + ], + [ + 3.8946175999999997, + 43.6027566 + ], + [ + 3.8945657, + 43.602550099999995 + ], + [ + 3.8945556999999997, + 43.6025036 + ], + [ + 3.8945512, + 43.602460099999995 + ], + [ + 3.8945499, + 43.6024008 + ], + [ + 3.8945594, + 43.602331199999995 + ], + [ + 3.8945878, + 43.6022633 + ], + [ + 3.8946186, + 43.6022074 + ], + [ + 3.8946665, + 43.602156799999996 + ], + [ + 3.8949876999999997, + 43.6017837 + ], + [ + 3.8950164, + 43.601749 + ], + [ + 3.8950422, + 43.601700199999996 + ], + [ + 3.8950617, + 43.601661899999996 + ], + [ + 3.8950848, + 43.6015862 + ], + [ + 3.8951048999999998, + 43.601392499999996 + ], + [ + 3.8951241, + 43.601189399999996 + ], + [ + 3.8951338, + 43.6011088 + ], + [ + 3.8951422, + 43.6010498 + ], + [ + 3.8951629999999997, + 43.6009884 + ], + [ + 3.8951963999999997, + 43.600926099999995 + ], + [ + 3.8952258, + 43.6008879 + ], + [ + 3.8952682, + 43.600841499999994 + ], + [ + 3.8953412, + 43.6007663 + ], + [ + 3.8955374, + 43.6005639 + ], + [ + 3.8957004, + 43.6003975 + ], + [ + 3.895804, + 43.6002976 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8745174, + 43.615967399999995 + ], + [ + 3.8744725, + 43.615787 + ], + [ + 3.8744579, + 43.615709599999995 + ], + [ + 3.8744549, + 43.6156776 + ], + [ + 3.8744551, + 43.615634299999996 + ], + [ + 3.8744623, + 43.6155987 + ], + [ + 3.8744714, + 43.6155579 + ], + [ + 3.874495, + 43.6155129 + ], + [ + 3.8745194, + 43.6154733 + ], + [ + 3.8745480999999997, + 43.6154416 + ], + [ + 3.8745863, + 43.615407 + ], + [ + 3.874638, + 43.6153694 + ], + [ + 3.8746603, + 43.615358 + ], + [ + 3.8746758999999997, + 43.6153513 + ], + [ + 3.8747778999999998, + 43.6153106 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8812644, + 43.609164799999995 + ], + [ + 3.8811383, + 43.6090814 + ], + [ + 3.8810278, + 43.6090149 + ], + [ + 3.8808217999999997, + 43.608919 + ], + [ + 3.8805565, + 43.608818 + ], + [ + 3.8804439, + 43.608775099999995 + ], + [ + 3.8803862, + 43.608753099999994 + ], + [ + 3.8803734999999997, + 43.608747099999995 + ], + [ + 3.8802535, + 43.6086903 + ], + [ + 3.8800858999999996, + 43.6085967 + ], + [ + 3.8799267, + 43.6085 + ], + [ + 3.8797626999999997, + 43.6084004 + ], + [ + 3.8795447, + 43.6082636 + ], + [ + 3.8794779999999998, + 43.608221799999995 + ], + [ + 3.8794022, + 43.6081633 + ], + [ + 3.8793563, + 43.608097099999995 + ], + [ + 3.8793343, + 43.608036 + ], + [ + 3.8793362, + 43.6079776 + ], + [ + 3.8793504, + 43.6079309 + ], + [ + 3.8793642999999998, + 43.607884999999996 + ], + [ + 3.8793704, + 43.6078693 + ], + [ + 3.8797699, + 43.606842699999994 + ], + [ + 3.8799417, + 43.606344799999995 + ], + [ + 3.8799541, + 43.6063123 + ], + [ + 3.8800018, + 43.6061747 + ], + [ + 3.8801639, + 43.605723399999995 + ], + [ + 3.8801916999999997, + 43.6056509 + ], + [ + 3.8802507999999998, + 43.6054971 + ], + [ + 3.8803275999999998, + 43.6052919 + ], + [ + 3.8803327999999997, + 43.6052781 + ], + [ + 3.8803387, + 43.6052622 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8822745, + 43.614365 + ], + [ + 3.8823507, + 43.614384099999995 + ], + [ + 3.8823906, + 43.614394399999995 + ], + [ + 3.8824351, + 43.614402999999996 + ], + [ + 3.8824863, + 43.614411499999996 + ], + [ + 3.8825197, + 43.6144134 + ], + [ + 3.8825608, + 43.614412599999994 + ], + [ + 3.8825976, + 43.6144092 + ], + [ + 3.8826302999999998, + 43.614402899999995 + ], + [ + 3.8826551, + 43.6143949 + ], + [ + 3.8826821, + 43.614385999999996 + ], + [ + 3.882713, + 43.614372599999996 + ], + [ + 3.8827395, + 43.614360299999994 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8825608999999996, + 43.605988599999996 + ], + [ + 3.8826718999999996, + 43.6061342 + ], + [ + 3.8827409, + 43.6062247 + ], + [ + 3.8827878, + 43.6062899 + ], + [ + 3.8829266999999996, + 43.606482799999995 + ], + [ + 3.8830552, + 43.6066776 + ], + [ + 3.8830902999999997, + 43.6067308 + ], + [ + 3.8831084999999996, + 43.6067671 + ], + [ + 3.8831843999999998, + 43.6069183 + ], + [ + 3.8832942, + 43.607172899999995 + ], + [ + 3.8833688, + 43.6073331 + ], + [ + 3.8834052, + 43.607431899999995 + ], + [ + 3.8834426, + 43.6075363 + ], + [ + 3.8834687999999997, + 43.6076431 + ], + [ + 3.8834917, + 43.607810699999995 + ], + [ + 3.8835138, + 43.607881299999995 + ], + [ + 3.8835579, + 43.6079532 + ], + [ + 3.8836158999999997, + 43.6079961 + ], + [ + 3.883635, + 43.6080103 + ], + [ + 3.8837121999999997, + 43.6080348 + ], + [ + 3.8837287999999996, + 43.6080367 + ], + [ + 3.8838131, + 43.6080465 + ], + [ + 3.8839156999999997, + 43.6080324 + ], + [ + 3.8839878, + 43.608012699999996 + ], + [ + 3.8842752, + 43.6078519 + ], + [ + 3.8845389, + 43.607707 + ], + [ + 3.8847118999999997, + 43.607629599999996 + ], + [ + 3.8848398, + 43.6075807 + ], + [ + 3.8849044, + 43.607555899999994 + ], + [ + 3.8850884, + 43.607494499999994 + ], + [ + 3.8851902, + 43.6074731 + ], + [ + 3.8852792, + 43.6074651 + ], + [ + 3.8853766999999997, + 43.6074651 + ], + [ + 3.8854607, + 43.6074749 + ], + [ + 3.8855967, + 43.6074997 + ], + [ + 3.8856986, + 43.6075131 + ], + [ + 3.8857554, + 43.607516399999994 + ], + [ + 3.8858303999999997, + 43.607518199999994 + ], + [ + 3.8859185, + 43.607517699999995 + ], + [ + 3.8861068, + 43.6075082 + ], + [ + 3.8862009, + 43.6075057 + ], + [ + 3.8862593999999997, + 43.6075112 + ], + [ + 3.8863315, + 43.6075229 + ], + [ + 3.8864069999999997, + 43.607547499999995 + ], + [ + 3.8864718, + 43.6075849 + ], + [ + 3.8865060999999996, + 43.6076214 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8173979, + 43.6214307 + ], + [ + 3.8173987, + 43.6214564 + ], + [ + 3.8174004999999998, + 43.6215105 + ], + [ + 3.8174021999999996, + 43.6215603 + ], + [ + 3.8174395, + 43.622690999999996 + ], + [ + 3.817443, + 43.6227884 + ], + [ + 3.8174457, + 43.6228639 + ], + [ + 3.8174653, + 43.623609599999995 + ], + [ + 3.8174704999999998, + 43.623712399999995 + ], + [ + 3.8174726, + 43.623805 + ], + [ + 3.8174896, + 43.6245386 + ], + [ + 3.8174918, + 43.624633499999995 + ], + [ + 3.8174957, + 43.6247385 + ], + [ + 3.8175333, + 43.6257783 + ], + [ + 3.8175364, + 43.625865399999995 + ], + [ + 3.8175413999999996, + 43.6259745 + ], + [ + 3.8175643999999997, + 43.6267462 + ], + [ + 3.8175480999999998, + 43.6268691 + ], + [ + 3.8175274999999997, + 43.6270361 + ], + [ + 3.8175133, + 43.627187 + ], + [ + 3.8175139999999996, + 43.627228099999996 + ], + [ + 3.8175274999999997, + 43.6276495 + ], + [ + 3.8175440999999997, + 43.6281849 + ], + [ + 3.8175482, + 43.6283288 + ], + [ + 3.8175524, + 43.6284646 + ], + [ + 3.8175662999999997, + 43.6289357 + ], + [ + 3.8175778, + 43.629049099999996 + ], + [ + 3.8175831999999996, + 43.6290876 + ], + [ + 3.8176047, + 43.6291526 + ], + [ + 3.8176623999999997, + 43.6292565 + ], + [ + 3.8177898, + 43.6293982 + ], + [ + 3.8182026, + 43.6298435 + ], + [ + 3.8186347, + 43.6303078 + ], + [ + 3.8187393, + 43.630401899999995 + ], + [ + 3.8188288999999997, + 43.630463199999994 + ], + [ + 3.8189579, + 43.630530099999994 + ], + [ + 3.8190557999999997, + 43.6305718 + ], + [ + 3.8192394999999997, + 43.630628099999996 + ], + [ + 3.8193629, + 43.6306495 + ], + [ + 3.8195077, + 43.630666 + ], + [ + 3.8195823, + 43.6306678 + ], + [ + 3.8197322, + 43.630674799999994 + ], + [ + 3.8199845, + 43.630674799999994 + ], + [ + 3.8206575, + 43.6306576 + ], + [ + 3.8207505999999998, + 43.6306562 + ], + [ + 3.8212083999999997, + 43.6306473 + ], + [ + 3.8217616, + 43.630634799999996 + ], + [ + 3.8218272, + 43.6306338 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.895804, + 43.6002976 + ], + [ + 3.8958494, + 43.600262699999995 + ], + [ + 3.8958717999999997, + 43.600246399999996 + ], + [ + 3.8959205999999997, + 43.600219599999996 + ], + [ + 3.8959667, + 43.6002027 + ], + [ + 3.8960265, + 43.6001908 + ], + [ + 3.8960871999999998, + 43.6001887 + ], + [ + 3.8961506999999997, + 43.6001938 + ], + [ + 3.8961891, + 43.6002042 + ], + [ + 3.8962344, + 43.6002194 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9017549999999996, + 43.602205299999994 + ], + [ + 3.903616, + 43.602636399999994 + ], + [ + 3.9036321999999997, + 43.602640199999996 + ], + [ + 3.9041107, + 43.602757399999994 + ], + [ + 3.9044277999999997, + 43.602835299999995 + ], + [ + 3.9062829, + 43.603301599999995 + ], + [ + 3.9063222, + 43.603311299999994 + ], + [ + 3.9064525, + 43.6033434 + ], + [ + 3.9067624999999997, + 43.603417199999996 + ], + [ + 3.9068452999999996, + 43.6034371 + ], + [ + 3.9069455, + 43.603454299999996 + ], + [ + 3.907024, + 43.6034632 + ], + [ + 3.9071152999999996, + 43.6034696 + ], + [ + 3.9072210999999997, + 43.6034724 + ], + [ + 3.9073227999999998, + 43.6034714 + ], + [ + 3.9073927, + 43.6034679 + ], + [ + 3.9074866999999998, + 43.6034606 + ], + [ + 3.9075694999999997, + 43.6034516 + ], + [ + 3.9075963, + 43.603448099999994 + ], + [ + 3.9085552999999997, + 43.6033438 + ], + [ + 3.9089278, + 43.6033081 + ], + [ + 3.9091779, + 43.6032964 + ], + [ + 3.9093323, + 43.6032957 + ], + [ + 3.9095771, + 43.603309599999996 + ], + [ + 3.9100146, + 43.6033482 + ], + [ + 3.9103166999999996, + 43.6033737 + ], + [ + 3.910421, + 43.603382499999995 + ], + [ + 3.9105849999999998, + 43.603403 + ], + [ + 3.910741, + 43.6034314 + ], + [ + 3.9109990999999997, + 43.6034861 + ], + [ + 3.9116253, + 43.603631899999996 + ], + [ + 3.9117028, + 43.603646299999994 + ], + [ + 3.9117851, + 43.6036538 + ], + [ + 3.9118641, + 43.6036581 + ], + [ + 3.9119382, + 43.6036605 + ], + [ + 3.9120249, + 43.6036545 + ], + [ + 3.9121634999999997, + 43.603645 + ], + [ + 3.9125354, + 43.603604499999996 + ], + [ + 3.9128279999999998, + 43.603562399999994 + ], + [ + 3.9131923, + 43.6034927 + ], + [ + 3.9132582, + 43.6034754 + ], + [ + 3.9133708, + 43.6034521 + ], + [ + 3.9134427, + 43.6034339 + ], + [ + 3.9134545999999997, + 43.6034316 + ], + [ + 3.9138602999999996, + 43.603353399999996 + ], + [ + 3.9139383999999997, + 43.6033432 + ], + [ + 3.9140091, + 43.603341699999994 + ], + [ + 3.9140827, + 43.603341699999994 + ], + [ + 3.9141611, + 43.6033493 + ], + [ + 3.9143567, + 43.603393 + ], + [ + 3.9147843, + 43.6034942 + ], + [ + 3.9155881999999997, + 43.6036845 + ], + [ + 3.9156698, + 43.6037038 + ], + [ + 3.9157379, + 43.603719899999994 + ], + [ + 3.9157484, + 43.603722399999995 + ], + [ + 3.9157859, + 43.6037313 + ], + [ + 3.9158177, + 43.6037387 + ], + [ + 3.9159021, + 43.6037584 + ], + [ + 3.9162961, + 43.6038502 + ], + [ + 3.916759, + 43.603959599999996 + ], + [ + 3.9187155, + 43.604422 + ], + [ + 3.9191672, + 43.6045284 + ], + [ + 3.9195187, + 43.6046112 + ], + [ + 3.9195949, + 43.604621099999996 + ], + [ + 3.9196594, + 43.6046244 + ], + [ + 3.9196929999999996, + 43.6046214 + ], + [ + 3.9198076, + 43.6046068 + ], + [ + 3.9198929999999996, + 43.604581599999996 + ], + [ + 3.9199441, + 43.604553499999994 + ], + [ + 3.9199979999999996, + 43.6045149 + ], + [ + 3.9200321, + 43.604484 + ], + [ + 3.920057, + 43.604459299999995 + ], + [ + 3.9200747, + 43.6044378 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9200747, + 43.6044378 + ], + [ + 3.9202276, + 43.6041202 + ], + [ + 3.9202904, + 43.6039812 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9206323, + 43.603227499999996 + ], + [ + 3.9208445999999997, + 43.6027559 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9203598, + 43.603828099999994 + ], + [ + 3.9204252, + 43.603676899999996 + ], + [ + 3.9204496, + 43.6036303 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9204808, + 43.6035615 + ], + [ + 3.9205297, + 43.603453599999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8223004, + 43.6306783 + ], + [ + 3.8223570999999996, + 43.6307001 + ], + [ + 3.8224077999999997, + 43.630721799999996 + ], + [ + 3.8224460999999996, + 43.630741 + ], + [ + 3.822486, + 43.630763599999995 + ], + [ + 3.822526, + 43.6307897 + ], + [ + 3.8225628, + 43.6308163 + ], + [ + 3.8225924, + 43.6308386 + ], + [ + 3.8226240999999996, + 43.630868 + ], + [ + 3.8226584, + 43.6309008 + ], + [ + 3.8226882, + 43.6309353 + ], + [ + 3.8227148, + 43.6309695 + ], + [ + 3.8227412, + 43.631012399999996 + ], + [ + 3.8227599999999997, + 43.631044599999996 + ], + [ + 3.8227719, + 43.631072499999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8219993999999997, + 43.6306296 + ], + [ + 3.8220847, + 43.630633499999995 + ], + [ + 3.8221230999999998, + 43.630637799999995 + ], + [ + 3.8221589, + 43.6306428 + ], + [ + 3.8222066999999997, + 43.630652999999995 + ], + [ + 3.822256, + 43.6306654 + ], + [ + 3.8223004, + 43.6306783 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8812235, + 43.6053916 + ], + [ + 3.8815784, + 43.6056277 + ], + [ + 3.8816623, + 43.6056793 + ], + [ + 3.8817352, + 43.605706899999994 + ], + [ + 3.8817861, + 43.605722899999996 + ], + [ + 3.8818335, + 43.605729 + ], + [ + 3.8819030999999997, + 43.6057272 + ], + [ + 3.8819613, + 43.6057199 + ], + [ + 3.8819934999999997, + 43.6057158 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8962344, + 43.6002194 + ], + [ + 3.8962641999999996, + 43.600234799999996 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8827342, + 43.6137229 + ], + [ + 3.8827034, + 43.6136171 + ], + [ + 3.8826823, + 43.6135169 + ], + [ + 3.8826712999999997, + 43.6134036 + ], + [ + 3.8826536999999997, + 43.613156 + ], + [ + 3.8826516, + 43.612984399999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8173858999999997, + 43.621046799999995 + ], + [ + 3.8173953, + 43.6213372 + ], + [ + 3.8173979, + 43.6214307 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8172582, + 43.6193895 + ], + [ + 3.8171956999999996, + 43.6194847 + ], + [ + 3.8171644999999996, + 43.6195522 + ], + [ + 3.8171540999999998, + 43.619584499999995 + ], + [ + 3.8171266, + 43.6196705 + ], + [ + 3.8171207, + 43.6197251 + ], + [ + 3.8171207, + 43.6198018 + ], + [ + 3.8171383999999997, + 43.6198913 + ], + [ + 3.8171602, + 43.6199546 + ], + [ + 3.817193, + 43.6200304 + ], + [ + 3.8172188, + 43.6200863 + ], + [ + 3.8172534999999996, + 43.620168299999996 + ], + [ + 3.8172791, + 43.620222899999995 + ], + [ + 3.8173097, + 43.6202883 + ], + [ + 3.8173575, + 43.620450299999995 + ], + [ + 3.8173687, + 43.620498999999995 + ], + [ + 3.8173825, + 43.6209146 + ], + [ + 3.8173827, + 43.6209645 + ], + [ + 3.8173858999999997, + 43.621046799999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9202904, + 43.6039812 + ], + [ + 3.9203598, + 43.603828099999994 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8752682, + 43.6152005 + ], + [ + 3.8756036, + 43.6151324 + ], + [ + 3.8760667, + 43.615038399999996 + ], + [ + 3.8768276, + 43.614883899999995 + ], + [ + 3.877363, + 43.6147905 + ], + [ + 3.8774791, + 43.6147674 + ], + [ + 3.8775918999999996, + 43.614757999999995 + ], + [ + 3.8777369, + 43.614747799999996 + ], + [ + 3.8781957, + 43.6147199 + ], + [ + 3.8788199, + 43.6146819 + ], + [ + 3.8789987, + 43.614670999999994 + ], + [ + 3.8794671999999997, + 43.614643699999995 + ], + [ + 3.8796559999999998, + 43.614621899999996 + ], + [ + 3.8798087999999997, + 43.6145852 + ], + [ + 3.8799585999999997, + 43.6145254 + ], + [ + 3.8802019999999997, + 43.6143746 + ], + [ + 3.8804206999999997, + 43.6142063 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8743828, + 43.6162752 + ], + [ + 3.8743969, + 43.6162651 + ], + [ + 3.8744411999999997, + 43.616230599999994 + ], + [ + 3.8744680999999996, + 43.616205799999996 + ], + [ + 3.8744910999999997, + 43.6161793 + ], + [ + 3.874506, + 43.616156999999994 + ], + [ + 3.8745195999999997, + 43.616122399999995 + ], + [ + 3.874529, + 43.6160906 + ], + [ + 3.87453, + 43.616059199999995 + ], + [ + 3.8745295, + 43.6160278 + ], + [ + 3.8745243, + 43.615997799999995 + ], + [ + 3.8745174, + 43.615967399999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8818848, + 43.6142245 + ], + [ + 3.8819494999999997, + 43.614248599999996 + ], + [ + 3.8820856999999998, + 43.614298299999994 + ], + [ + 3.8821290999999998, + 43.614314099999994 + ], + [ + 3.8821757, + 43.6143304 + ], + [ + 3.8822745, + 43.614365 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8816678, + 43.6141438 + ], + [ + 3.8818848, + 43.6142245 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8183637, + 43.6181396 + ], + [ + 3.8179589999999997, + 43.618511999999996 + ], + [ + 3.8176812, + 43.6188272 + ], + [ + 3.8176278999999997, + 43.6189034 + ], + [ + 3.8175019999999997, + 43.6190722 + ], + [ + 3.8172582, + 43.6193895 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8196855, + 43.616589 + ], + [ + 3.8196377999999997, + 43.6166941 + ], + [ + 3.8195547, + 43.6168553 + ], + [ + 3.819501, + 43.6169544 + ], + [ + 3.8193962999999997, + 43.617092299999996 + ], + [ + 3.8193294, + 43.617173699999995 + ], + [ + 3.8192174, + 43.6173071 + ], + [ + 3.8190464, + 43.6175156 + ], + [ + 3.8189264, + 43.6176336 + ], + [ + 3.8187343, + 43.617812699999995 + ], + [ + 3.818565, + 43.6179622 + ], + [ + 3.8183895999999997, + 43.6181164 + ], + [ + 3.8183637, + 43.6181396 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8198339, + 43.6162813 + ], + [ + 3.8197094999999996, + 43.6165391 + ], + [ + 3.8196855, + 43.616589 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9205297, + 43.603453599999995 + ], + [ + 3.9206323, + 43.603227499999996 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9204496, + 43.6036303 + ], + [ + 3.9204808, + 43.6035615 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8218272, + 43.6306338 + ], + [ + 3.8219871, + 43.6306303 + ], + [ + 3.8219993999999997, + 43.6306296 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8662644, + 43.626506799999994 + ], + [ + 3.8662851, + 43.6264675 + ], + [ + 3.8662997, + 43.6264445 + ], + [ + 3.8663220999999997, + 43.6264092 + ], + [ + 3.866339, + 43.6263784 + ], + [ + 3.8663686, + 43.626324399999994 + ], + [ + 3.8663811999999997, + 43.6262961 + ], + [ + 3.8664099999999997, + 43.626231499999996 + ], + [ + 3.8667536, + 43.6254887 + ], + [ + 3.8671292, + 43.624674399999996 + ], + [ + 3.8676478, + 43.623553799999996 + ], + [ + 3.8679536, + 43.6228893 + ], + [ + 3.8679816999999996, + 43.6228282 + ], + [ + 3.8681368999999997, + 43.622490899999995 + ], + [ + 3.8681745999999997, + 43.622407599999995 + ], + [ + 3.8685541, + 43.621587 + ], + [ + 3.8689983999999997, + 43.6206287 + ], + [ + 3.8693435999999997, + 43.619875699999994 + ], + [ + 3.8693826999999996, + 43.6197738 + ], + [ + 3.8694302, + 43.6196552 + ], + [ + 3.8694488, + 43.619555999999996 + ], + [ + 3.8694604, + 43.6194718 + ], + [ + 3.8694697, + 43.619199099999996 + ], + [ + 3.8694796, + 43.618899199999994 + ], + [ + 3.8694835999999997, + 43.6187506 + ], + [ + 3.869504, + 43.6179924 + ], + [ + 3.8695258999999997, + 43.6178877 + ], + [ + 3.8695785, + 43.617798099999995 + ], + [ + 3.8696748999999997, + 43.6177005 + ], + [ + 3.8697405999999996, + 43.617652199999995 + ], + [ + 3.8698265, + 43.617610299999996 + ], + [ + 3.8700365999999997, + 43.6175356 + ], + [ + 3.8702634999999996, + 43.6174744 + ], + [ + 3.8703678999999998, + 43.617467299999994 + ], + [ + 3.8704961, + 43.617467299999994 + ], + [ + 3.8709453999999996, + 43.6175236 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9192323, + 43.600213499999995 + ], + [ + 3.9198383999999997, + 43.5995539 + ], + [ + 3.9198774999999997, + 43.599511299999996 + ], + [ + 3.9199238999999997, + 43.5994585 + ], + [ + 3.9199384, + 43.5994421 + ], + [ + 3.9207691, + 43.5985235 + ], + [ + 3.9212906, + 43.5979497 + ], + [ + 3.9217166, + 43.5974608 + ], + [ + 3.9217885999999997, + 43.597376499999996 + ], + [ + 3.9218382999999997, + 43.5973201 + ], + [ + 3.9220604, + 43.5970692 + ], + [ + 3.9222169, + 43.596892399999994 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9208445999999997, + 43.6027559 + ], + [ + 3.9209267999999997, + 43.6025711 + ], + [ + 3.9209376999999996, + 43.602505199999996 + ], + [ + 3.9209384999999997, + 43.6024623 + ], + [ + 3.9209275, + 43.6024112 + ], + [ + 3.9209036, + 43.6023516 + ], + [ + 3.9208619999999996, + 43.6022916 + ], + [ + 3.9208095999999997, + 43.6022453 + ], + [ + 3.9207541999999997, + 43.6022055 + ], + [ + 3.9207251, + 43.602193299999996 + ], + [ + 3.9206803, + 43.6021773 + ], + [ + 3.9206581, + 43.60217 + ], + [ + 3.9206187, + 43.602158499999994 + ], + [ + 3.9205546, + 43.602142699999995 + ], + [ + 3.9194470999999997, + 43.602000999999994 + ], + [ + 3.918647, + 43.6019435 + ], + [ + 3.9185244999999997, + 43.601929399999996 + ], + [ + 3.9184055, + 43.601895299999995 + ], + [ + 3.918352, + 43.6018749 + ], + [ + 3.9182938, + 43.601842 + ], + [ + 3.9182789, + 43.6018335 + ], + [ + 3.9182230999999996, + 43.6017855 + ], + [ + 3.9181944, + 43.6017589 + ], + [ + 3.9181743, + 43.6017327 + ], + [ + 3.9181388999999998, + 43.601680599999995 + ], + [ + 3.9181331, + 43.601662399999995 + ], + [ + 3.9181136, + 43.6016051 + ], + [ + 3.9181231999999997, + 43.6015181 + ], + [ + 3.9181567999999998, + 43.6014485 + ], + [ + 3.9182278999999998, + 43.601332799999994 + ], + [ + 3.9188625, + 43.6006274 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9192323, + 43.600213499999995 + ], + [ + 3.9188625, + 43.6006274 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8747778999999998, + 43.6153106 + ], + [ + 3.8749281, + 43.6152695 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8749281, + 43.6152695 + ], + [ + 3.8752682, + 43.6152005 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8741426999999997, + 43.6164463 + ], + [ + 3.8742847, + 43.6163451 + ], + [ + 3.8743828, + 43.6162752 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8709453999999996, + 43.6175236 + ], + [ + 3.8711537999999996, + 43.6175491 + ], + [ + 3.8712887, + 43.617549399999994 + ], + [ + 3.8714133, + 43.6175323 + ], + [ + 3.871546, + 43.617494 + ], + [ + 3.871924, + 43.617332399999995 + ], + [ + 3.8729595, + 43.617005 + ], + [ + 3.8730713, + 43.616966 + ], + [ + 3.8731869999999997, + 43.616932299999995 + ], + [ + 3.8732216, + 43.6169215 + ], + [ + 3.8732637, + 43.6169084 + ], + [ + 3.8733936, + 43.616867899999995 + ], + [ + 3.8735084, + 43.616832099999996 + ], + [ + 3.8736574999999998, + 43.616772499999996 + ], + [ + 3.8737681999999998, + 43.6167075 + ], + [ + 3.8738496999999996, + 43.6166505 + ], + [ + 3.8739057, + 43.6166096 + ], + [ + 3.8741426999999997, + 43.6164463 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8819934999999997, + 43.6057158 + ], + [ + 3.8821041, + 43.6057079 + ], + [ + 3.8821277, + 43.6057062 + ], + [ + 3.8821535999999996, + 43.6057096 + ], + [ + 3.8821866999999997, + 43.605715 + ], + [ + 3.882224, + 43.6057211 + ], + [ + 3.8822417, + 43.605727099999996 + ], + [ + 3.8822886999999997, + 43.6057431 + ], + [ + 3.8823706, + 43.6057852 + ], + [ + 3.882428, + 43.605829799999995 + ], + [ + 3.8824365999999997, + 43.605836499999995 + ], + [ + 3.882494, + 43.6059008 + ], + [ + 3.8825608999999996, + 43.605988599999996 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8865060999999996, + 43.6076214 + ], + [ + 3.8865475, + 43.6076778 + ], + [ + 3.8865607, + 43.607715999999996 + ], + [ + 3.8865727, + 43.607771299999996 + ], + [ + 3.8865919, + 43.6079248 + ], + [ + 3.8866311, + 43.6082426 + ], + [ + 3.8866357, + 43.6082749 + ], + [ + 3.8866823, + 43.608601699999994 + ], + [ + 3.8867129, + 43.6088508 + ], + [ + 3.8867255, + 43.6089254 + ], + [ + 3.8867458999999998, + 43.6089771 + ], + [ + 3.8867836, + 43.609023099999995 + ], + [ + 3.8868376, + 43.6090644 + ], + [ + 3.8869130999999997, + 43.6090995 + ], + [ + 3.8870234999999997, + 43.6091182 + ], + [ + 3.8871371, + 43.609117299999994 + ], + [ + 3.8872955, + 43.609106399999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8827395, + 43.614360299999994 + ], + [ + 3.8827624999999997, + 43.6143432 + ], + [ + 3.8828055, + 43.6142999 + ], + [ + 3.8828212, + 43.614274099999996 + ], + [ + 3.8828329, + 43.6142471 + ], + [ + 3.8828394999999998, + 43.6142253 + ], + [ + 3.8828424, + 43.6142026 + ], + [ + 3.8828422999999996, + 43.614104399999995 + ], + [ + 3.8828147, + 43.613957 + ], + [ + 3.8827865, + 43.6138754 + ], + [ + 3.8827342, + 43.6137229 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8804206999999997, + 43.6142063 + ], + [ + 3.8804588, + 43.614177 + ], + [ + 3.8805400999999997, + 43.6141145 + ], + [ + 3.8806239999999996, + 43.614061199999995 + ], + [ + 3.8807015999999996, + 43.614026499999994 + ], + [ + 3.880814, + 43.6139899 + ], + [ + 3.8809275999999997, + 43.6139678 + ], + [ + 3.8810426, + 43.6139647 + ], + [ + 3.8811644999999997, + 43.613974 + ], + [ + 3.8812598, + 43.6139951 + ], + [ + 3.8814271, + 43.614051499999995 + ], + [ + 3.8816678, + 43.6141438 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9004828999999996, + 43.6018663 + ], + [ + 3.9009049, + 43.6019964 + ], + [ + 3.9009326, + 43.6020033 + ], + [ + 3.9014697, + 43.6021382 + ], + [ + 3.901722, + 43.6021976 + ], + [ + 3.9017549999999996, + 43.602205299999994 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8966982, + 43.600458499999995 + ], + [ + 3.8970832, + 43.6006569 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8936389, + 43.6086658 + ], + [ + 3.8937196, + 43.6086545 + ], + [ + 3.8938298, + 43.6086305 + ], + [ + 3.8939087, + 43.6085918 + ], + [ + 3.8939179, + 43.6085832 + ], + [ + 3.8939706, + 43.6085341 + ], + [ + 3.8940006, + 43.6084749 + ], + [ + 3.8940110999999997, + 43.608421799999995 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8940533999999998, + 43.6065258 + ], + [ + 3.8940611, + 43.6064728 + ], + [ + 3.8940683, + 43.6063133 + ], + [ + 3.8940699, + 43.6062776 + ], + [ + 3.894084, + 43.6062091 + ], + [ + 3.8941002, + 43.606134 + ], + [ + 3.8941239, + 43.606065 + ], + [ + 3.8941888999999996, + 43.6059316 + ], + [ + 3.8942096999999998, + 43.605889 + ], + [ + 3.8944902, + 43.6052993 + ], + [ + 3.8947125, + 43.6048214 + ] + ] + }, + "properties": { + "line": "Montpellier1", + "name": "1", + "color": "#005BA1", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88235015, + 43.61452855 + ], + [ + 3.88229545, + 43.614516650000006 + ], + [ + 3.8822407500000002, + 43.61450475 + ], + [ + 3.8818016500000003, + 43.614414450000005 + ], + [ + 3.88167155, + 43.61438865 + ], + [ + 3.88156085, + 43.61437405 + ], + [ + 3.88153895, + 43.61437405 + ], + [ + 3.88151425, + 43.61437415 + ], + [ + 3.8814440500000003, + 43.614392450000004 + ], + [ + 3.8813816500000002, + 43.61441725 + ], + [ + 3.8813387500000003, + 43.61444195 + ], + [ + 3.8813072500000003, + 43.61447115 + ], + [ + 3.88127775, + 43.61450845 + ], + [ + 3.88125155, + 43.61455995 + ], + [ + 3.8812464500000003, + 43.61458005 + ], + [ + 3.8812448500000003, + 43.61461675 + ], + [ + 3.8812502500000003, + 43.61465665 + ], + [ + 3.88125495, + 43.614671650000005 + ], + [ + 3.88127325, + 43.61470535 + ], + [ + 3.88129715, + 43.61474365 + ], + [ + 3.88133675, + 43.61478565 + ], + [ + 3.88142575, + 43.61486355 + ], + [ + 3.8814334500000003, + 43.61487255 + ], + [ + 3.88156845, + 43.61499175 + ], + [ + 3.88161355, + 43.61504325 + ], + [ + 3.8819712500000003, + 43.61538285 + ], + [ + 3.88219015, + 43.61560295 + ], + [ + 3.88221255, + 43.61562545 + ], + [ + 3.88221705, + 43.61563025 + ], + [ + 3.8823012500000003, + 43.61572115 + ], + [ + 3.88242595, + 43.61585585 + ], + [ + 3.8826778500000003, + 43.61610625 + ], + [ + 3.88284875, + 43.616276150000004 + ], + [ + 3.88289455, + 43.61632075 + ], + [ + 3.88302145, + 43.61644425 + ], + [ + 3.88323185, + 43.61668035 + ], + [ + 3.88328635, + 43.61674155 + ], + [ + 3.88332575, + 43.61678065 + ], + [ + 3.8835934500000002, + 43.617046450000004 + ], + [ + 3.88377235, + 43.617228350000005 + ], + [ + 3.88377635, + 43.61723245 + ], + [ + 3.88382005, + 43.61728745 + ], + [ + 3.88384565, + 43.61736365 + ], + [ + 3.88387245, + 43.61745365 + ], + [ + 3.8839100500000003, + 43.61754005 + ], + [ + 3.88396985, + 43.617616950000006 + ], + [ + 3.8841689500000003, + 43.61784835 + ], + [ + 3.88420785, + 43.61791695 + ], + [ + 3.88422495, + 43.61799045 + ], + [ + 3.88421925, + 43.61805495 + ], + [ + 3.8842050500000003, + 43.618110550000004 + ], + [ + 3.8841708500000003, + 43.618168950000005 + ], + [ + 3.88411395, + 43.61823485 + ], + [ + 3.8840229500000003, + 43.618297950000006 + ], + [ + 3.8838560500000003, + 43.61838925 + ], + [ + 3.88339085, + 43.61866555 + ], + [ + 3.88330645, + 43.61872455 + ], + [ + 3.88327225, + 43.618763050000005 + ], + [ + 3.88324765, + 43.61880215 + ], + [ + 3.8832390500000002, + 43.61884475 + ], + [ + 3.8832371500000002, + 43.61889415 + ], + [ + 3.88325145, + 43.61894015 + ], + [ + 3.88328935, + 43.61900055 + ], + [ + 3.88359685, + 43.61931405 + ], + [ + 3.88359905, + 43.619316350000005 + ], + [ + 3.8841100500000003, + 43.619848950000005 + ], + [ + 3.88415235, + 43.61989375 + ], + [ + 3.88417105, + 43.61991355 + ], + [ + 3.88419325, + 43.619946750000004 + ], + [ + 3.88420325, + 43.61996165 + ], + [ + 3.88421665, + 43.619995550000006 + ], + [ + 3.88422205, + 43.620037350000004 + ], + [ + 3.88421865, + 43.62009415 + ], + [ + 3.8842101500000004, + 43.620121950000005 + ], + [ + 3.88420055, + 43.62015335 + ], + [ + 3.88409475, + 43.620410150000005 + ], + [ + 3.88406685, + 43.62047785 + ], + [ + 3.88399605, + 43.62065355 + ], + [ + 3.88398855, + 43.62067265 + ], + [ + 3.88394765, + 43.62075415 + ], + [ + 3.8839027500000003, + 43.62081285 + ], + [ + 3.88386655, + 43.62084835 + ], + [ + 3.88383975, + 43.62087455 + ], + [ + 3.8837969500000002, + 43.620913050000006 + ], + [ + 3.88376825, + 43.62093875 + ], + [ + 3.8835258500000003, + 43.62117165 + ], + [ + 3.88350095, + 43.62120745 + ], + [ + 3.88347825, + 43.621240050000004 + ], + [ + 3.8834373500000003, + 43.62131095 + ], + [ + 3.88328905, + 43.62160835 + ], + [ + 3.8830292500000003, + 43.62215985 + ], + [ + 3.88298945, + 43.62224405 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89408755, + 43.628617250000005 + ], + [ + 3.89425005, + 43.628708450000005 + ], + [ + 3.8943888500000003, + 43.62877745 + ], + [ + 3.89451955, + 43.62882355 + ], + [ + 3.89465305, + 43.628862350000006 + ], + [ + 3.8947877500000003, + 43.62888805 + ], + [ + 3.8949022500000003, + 43.62890515 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.83065265, + 43.57487005 + ], + [ + 3.83091565, + 43.574723250000005 + ], + [ + 3.83099305, + 43.574680050000005 + ], + [ + 3.8310547500000003, + 43.574646050000005 + ], + [ + 3.83114585, + 43.574600450000005 + ], + [ + 3.83135775, + 43.574509250000006 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92008385, + 43.650895750000004 + ], + [ + 3.92001385, + 43.65102385 + ], + [ + 3.91996315, + 43.651148250000006 + ], + [ + 3.91993305, + 43.651238250000006 + ], + [ + 3.91990185, + 43.65135885 + ], + [ + 3.9198900500000002, + 43.651482650000005 + ], + [ + 3.91986065, + 43.65207495 + ], + [ + 3.91985195, + 43.65216945 + ], + [ + 3.91983775, + 43.65223945 + ], + [ + 3.91981875, + 43.652328250000004 + ], + [ + 3.9197893500000003, + 43.65242465 + ], + [ + 3.91975765, + 43.65251405 + ], + [ + 3.9197125500000003, + 43.65261495 + ], + [ + 3.9196531500000003, + 43.652720450000004 + ], + [ + 3.91960555, + 43.65279495 + ], + [ + 3.91953985, + 43.652888950000005 + ], + [ + 3.91937105, + 43.653109650000005 + ], + [ + 3.9192355500000002, + 43.65328685 + ], + [ + 3.91916895, + 43.65336305 + ], + [ + 3.91905675, + 43.65346985 + ], + [ + 3.91900445, + 43.65352055 + ], + [ + 3.91897805, + 43.65355435 + ], + [ + 3.91889565, + 43.653637450000005 + ], + [ + 3.91881405, + 43.65370335 + ], + [ + 3.9187047500000003, + 43.65378535 + ], + [ + 3.9186135500000003, + 43.653850750000004 + ], + [ + 3.91852955, + 43.653908650000005 + ], + [ + 3.91842425, + 43.65397685 + ], + [ + 3.91828085, + 43.654057050000006 + ], + [ + 3.91813025, + 43.65413625 + ], + [ + 3.9180201500000003, + 43.654188350000005 + ], + [ + 3.91790765, + 43.654239950000004 + ], + [ + 3.91777135, + 43.65429275 + ], + [ + 3.9176358500000004, + 43.654342050000004 + ], + [ + 3.91744965, + 43.65440335 + ], + [ + 3.9171667500000003, + 43.654479550000005 + ], + [ + 3.91690535, + 43.65453465 + ], + [ + 3.91666915, + 43.654570150000005 + ], + [ + 3.91648065, + 43.654590250000005 + ], + [ + 3.9163363500000004, + 43.65459965 + ], + [ + 3.91623635, + 43.654604850000005 + ], + [ + 3.9160579500000003, + 43.65460745 + ], + [ + 3.9159445500000003, + 43.65460795 + ], + [ + 3.91589205, + 43.65460815 + ], + [ + 3.91583535, + 43.654608350000004 + ], + [ + 3.9156631500000003, + 43.654607850000005 + ], + [ + 3.9140502500000003, + 43.654562750000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92040335, + 43.65038035 + ], + [ + 3.92008385, + 43.650895750000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88280585, + 43.61437475 + ], + [ + 3.88274175, + 43.614444750000004 + ], + [ + 3.8827199500000003, + 43.61446215 + ], + [ + 3.88269315, + 43.61448055 + ], + [ + 3.88266765, + 43.61449425 + ], + [ + 3.88264025, + 43.61450535 + ], + [ + 3.88261295, + 43.61451575 + ], + [ + 3.88258495, + 43.614523850000005 + ], + [ + 3.8825394500000003, + 43.614530450000004 + ], + [ + 3.88249625, + 43.61453575 + ], + [ + 3.88245475, + 43.61453875 + ], + [ + 3.8824124500000003, + 43.61453685 + ], + [ + 3.88235015, + 43.61452855 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.83675325, + 43.57115325 + ], + [ + 3.8369004500000004, + 43.571059850000005 + ], + [ + 3.83702385, + 43.57098155 + ], + [ + 3.83709575, + 43.57094035 + ], + [ + 3.83718545, + 43.57090015 + ], + [ + 3.8373007500000003, + 43.570868950000005 + ], + [ + 3.8374472500000003, + 43.57085335 + ], + [ + 3.83790145, + 43.57082445 + ], + [ + 3.83828775, + 43.57079385 + ], + [ + 3.8384678500000002, + 43.57078115 + ], + [ + 3.83870675, + 43.57076875 + ], + [ + 3.8393293500000003, + 43.57077065 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8393293500000003, + 43.57077065 + ], + [ + 3.83969175, + 43.57077445 + ], + [ + 3.83992205, + 43.57078235 + ], + [ + 3.84022625, + 43.570802750000006 + ], + [ + 3.84044395, + 43.57082435 + ], + [ + 3.8406532500000004, + 43.570851350000005 + ], + [ + 3.8414746500000003, + 43.57098435 + ], + [ + 3.84165045, + 43.571017250000004 + ], + [ + 3.84192365, + 43.57107215 + ], + [ + 3.8420873500000003, + 43.57111045 + ], + [ + 3.84246625, + 43.57120745 + ], + [ + 3.8429459500000003, + 43.57135385 + ], + [ + 3.8433087500000003, + 43.57148455 + ], + [ + 3.84354285, + 43.57157745 + ], + [ + 3.84375555, + 43.57166955 + ], + [ + 3.84414765, + 43.57185405 + ], + [ + 3.84443145, + 43.571987650000004 + ], + [ + 3.84443255, + 43.57198815 + ], + [ + 3.84532955, + 43.572436450000005 + ], + [ + 3.8457747500000004, + 43.57265435 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8614046500000003, + 43.58243035 + ], + [ + 3.86133315, + 43.58250945 + ], + [ + 3.8612478500000003, + 43.582603750000004 + ], + [ + 3.86084495, + 43.58305025 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9205445500000002, + 43.650120050000005 + ], + [ + 3.92040335, + 43.65038035 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9215664500000003, + 43.648432150000005 + ], + [ + 3.92138695, + 43.64873455 + ], + [ + 3.9213048500000003, + 43.64886855 + ], + [ + 3.92099395, + 43.64938155 + ], + [ + 3.9205445500000002, + 43.650120050000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92903475, + 43.647346850000005 + ], + [ + 3.92894545, + 43.64744485 + ], + [ + 3.92889315, + 43.647496450000006 + ], + [ + 3.9288115500000003, + 43.64755435 + ], + [ + 3.9287474500000004, + 43.64759385 + ], + [ + 3.92866345, + 43.64763225 + ], + [ + 3.92858815, + 43.64766155 + ], + [ + 3.9284962500000002, + 43.64768565 + ], + [ + 3.9283781500000003, + 43.64770965 + ], + [ + 3.92818075, + 43.64774535 + ], + [ + 3.9279502500000003, + 43.647785750000004 + ], + [ + 3.92779975, + 43.647810050000004 + ], + [ + 3.92761835, + 43.64783125 + ], + [ + 3.92747575, + 43.64784495 + ], + [ + 3.9272482500000003, + 43.64785415 + ], + [ + 3.92696135, + 43.64785655 + ], + [ + 3.92672545, + 43.64784985 + ], + [ + 3.92644405, + 43.64782125 + ], + [ + 3.92619125, + 43.64778375 + ], + [ + 3.92395585, + 43.647351650000004 + ], + [ + 3.9237182500000003, + 43.647315150000004 + ], + [ + 3.92353895, + 43.64730625 + ], + [ + 3.92336975, + 43.64730865 + ], + [ + 3.92319385, + 43.64732085 + ], + [ + 3.92297755, + 43.647354050000004 + ], + [ + 3.92283165, + 43.647385650000004 + ], + [ + 3.92265935, + 43.647439250000005 + ], + [ + 3.92252555, + 43.64749125 + ], + [ + 3.92241635, + 43.64754235 + ], + [ + 3.9222909500000003, + 43.647607050000005 + ], + [ + 3.92227775, + 43.64761535 + ], + [ + 3.9222372500000002, + 43.64764095 + ], + [ + 3.9221096500000003, + 43.64773035 + ], + [ + 3.92198475, + 43.647839850000004 + ], + [ + 3.92186645, + 43.64796555 + ], + [ + 3.92180725, + 43.64804505 + ], + [ + 3.9217566500000003, + 43.64811975 + ], + [ + 3.9215664500000003, + 43.648432150000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.93008625, + 43.645855250000004 + ], + [ + 3.9299636500000004, + 43.64608565 + ], + [ + 3.92984715, + 43.646265650000004 + ], + [ + 3.92968245, + 43.64650145 + ], + [ + 3.92944795, + 43.64681805 + ], + [ + 3.92927885, + 43.647054950000005 + ], + [ + 3.92914815, + 43.647217850000004 + ], + [ + 3.92903475, + 43.647346850000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92748915, + 43.639680150000004 + ], + [ + 3.9277627500000003, + 43.63971405 + ], + [ + 3.92786975, + 43.63973355 + ], + [ + 3.92833565, + 43.63984425 + ], + [ + 3.92853835, + 43.639886450000006 + ], + [ + 3.9288324500000003, + 43.63993545 + ], + [ + 3.9291105500000003, + 43.63997785 + ], + [ + 3.92931945, + 43.640012850000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92931945, + 43.640012850000005 + ], + [ + 3.9295249500000002, + 43.64004545 + ], + [ + 3.9297034500000003, + 43.64007385 + ], + [ + 3.9297704500000004, + 43.640093050000004 + ], + [ + 3.92984545, + 43.64012575 + ], + [ + 3.92989705, + 43.64015985 + ], + [ + 3.9299324500000004, + 43.640186750000005 + ], + [ + 3.92996595, + 43.64023255 + ], + [ + 3.93000135, + 43.64030145 + ], + [ + 3.93013865, + 43.64061465 + ], + [ + 3.93037165, + 43.64111245 + ], + [ + 3.93048925, + 43.64138315 + ], + [ + 3.93063765, + 43.64176175 + ], + [ + 3.93085445, + 43.64233095 + ], + [ + 3.93092285, + 43.642533650000004 + ], + [ + 3.9309744500000003, + 43.642725750000004 + ], + [ + 3.93101475, + 43.64294635 + ], + [ + 3.93103375, + 43.643144150000005 + ], + [ + 3.9310382500000003, + 43.643355750000005 + ], + [ + 3.9310214500000003, + 43.64355365 + ], + [ + 3.9309934500000003, + 43.64374095 + ], + [ + 3.93095535, + 43.64390805 + ], + [ + 3.93089595, + 43.644111550000005 + ], + [ + 3.93079845, + 43.64436125 + ], + [ + 3.93062845, + 43.64476165 + ], + [ + 3.93051335, + 43.645030750000004 + ], + [ + 3.93042595, + 43.64521485 + ], + [ + 3.93008625, + 43.645855250000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92502895, + 43.63810935 + ], + [ + 3.9250090500000003, + 43.638196050000005 + ], + [ + 3.92499535, + 43.63826145 + ], + [ + 3.92498295, + 43.638297650000005 + ], + [ + 3.9249732500000003, + 43.638327450000006 + ], + [ + 3.9248316500000002, + 43.63863725 + ], + [ + 3.92474825, + 43.63880495 + ], + [ + 3.92473035, + 43.638841850000006 + ], + [ + 3.92469395, + 43.63889985 + ], + [ + 3.9246552500000003, + 43.638945650000004 + ], + [ + 3.92462055, + 43.638987050000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92462055, + 43.638987050000004 + ], + [ + 3.9245860500000003, + 43.639062550000006 + ], + [ + 3.92457535, + 43.639099050000006 + ], + [ + 3.9245686500000003, + 43.639149350000004 + ], + [ + 3.92457375, + 43.63918995 + ], + [ + 3.92459385, + 43.639234550000005 + ], + [ + 3.92461935, + 43.63926995 + ], + [ + 3.92465155, + 43.63930105 + ], + [ + 3.92468855, + 43.63932305 + ], + [ + 3.92472855, + 43.639342250000006 + ], + [ + 3.92476415, + 43.639354350000005 + ], + [ + 3.92482305, + 43.63936665 + ], + [ + 3.9253938500000003, + 43.63941675 + ], + [ + 3.9255878500000003, + 43.63943855 + ], + [ + 3.9259417500000002, + 43.63948495 + ], + [ + 3.92678005, + 43.639589650000005 + ], + [ + 3.92700315, + 43.63962035 + ], + [ + 3.92709775, + 43.63963085 + ], + [ + 3.92748915, + 43.639680150000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8949022500000003, + 43.62890515 + ], + [ + 3.89505325, + 43.62890995 + ], + [ + 3.8951117500000003, + 43.62890765 + ], + [ + 3.8952113500000003, + 43.628904850000005 + ], + [ + 3.89538305, + 43.62888185 + ], + [ + 3.8955714500000003, + 43.62883765 + ], + [ + 3.8957437500000003, + 43.628771650000004 + ], + [ + 3.89590885, + 43.62868395 + ], + [ + 3.89630235, + 43.62845875 + ], + [ + 3.89646785, + 43.62835805 + ], + [ + 3.89660515, + 43.62829705 + ], + [ + 3.89676805, + 43.62824855 + ], + [ + 3.89690885, + 43.62822765 + ], + [ + 3.8970389500000002, + 43.62821995 + ], + [ + 3.89707115, + 43.62822125 + ], + [ + 3.89717575, + 43.62822915 + ], + [ + 3.89730315, + 43.62825195 + ], + [ + 3.89739455, + 43.62827835 + ], + [ + 3.89744655, + 43.62830245 + ], + [ + 3.89749495, + 43.62833355 + ], + [ + 3.89752235, + 43.62835925 + ], + [ + 3.8975555500000003, + 43.628389150000004 + ], + [ + 3.89783465, + 43.62864425 + ], + [ + 3.89800775, + 43.62880285 + ], + [ + 3.89810005, + 43.62889665 + ], + [ + 3.89818275, + 43.62897985 + ], + [ + 3.89825115, + 43.629038550000004 + ], + [ + 3.89828725, + 43.629069550000004 + ], + [ + 3.89836005, + 43.62913695 + ], + [ + 3.8985508500000003, + 43.62931365 + ], + [ + 3.89863375, + 43.629380950000005 + ], + [ + 3.89874915, + 43.62944745 + ], + [ + 3.89889485, + 43.62950665 + ], + [ + 3.8990338500000004, + 43.62955205 + ], + [ + 3.89925905, + 43.62959105 + ], + [ + 3.89933525, + 43.629601050000005 + ], + [ + 3.8994751500000002, + 43.62962215 + ], + [ + 3.89980035, + 43.629664950000006 + ], + [ + 3.8999182500000003, + 43.62968095 + ], + [ + 3.9005683500000004, + 43.629771850000004 + ], + [ + 3.90107955, + 43.62984705 + ], + [ + 3.90146775, + 43.62991765 + ], + [ + 3.9022521500000003, + 43.63007915 + ], + [ + 3.9026879500000002, + 43.63016435 + ], + [ + 3.90296135, + 43.630220650000005 + ], + [ + 3.90422715, + 43.630470550000005 + ], + [ + 3.9068016500000002, + 43.630986750000005 + ], + [ + 3.90801515, + 43.63122825 + ], + [ + 3.90813795, + 43.63125225 + ], + [ + 3.9085347500000003, + 43.63133295 + ], + [ + 3.90863235, + 43.63135375 + ], + [ + 3.9091062500000002, + 43.63144715 + ], + [ + 3.90936545, + 43.631498750000006 + ], + [ + 3.9110583500000002, + 43.63183815 + ], + [ + 3.91387675, + 43.63240005 + ], + [ + 3.91535175, + 43.632694050000005 + ], + [ + 3.91580255, + 43.63278435 + ], + [ + 3.91608475, + 43.632842350000004 + ], + [ + 3.91620825, + 43.63286585 + ], + [ + 3.91659885, + 43.63294465 + ], + [ + 3.91674245, + 43.632972550000005 + ], + [ + 3.91775055, + 43.633174950000004 + ], + [ + 3.91854075, + 43.63333965 + ], + [ + 3.9193752500000003, + 43.63351355 + ], + [ + 3.91989235, + 43.63362645 + ], + [ + 3.9211002500000003, + 43.63389015 + ], + [ + 3.92122975, + 43.63391205 + ], + [ + 3.92141985, + 43.63395905 + ], + [ + 3.92161925, + 43.63401265 + ], + [ + 3.9217520500000003, + 43.634053050000006 + ], + [ + 3.9223886500000003, + 43.63425395 + ], + [ + 3.92265325, + 43.63433345 + ], + [ + 3.92273145, + 43.634363150000006 + ], + [ + 3.92278285, + 43.634396450000004 + ], + [ + 3.92287035, + 43.63447035 + ], + [ + 3.9229793500000003, + 43.63456905 + ], + [ + 3.92308935, + 43.634654350000005 + ], + [ + 3.92316045, + 43.63469645 + ], + [ + 3.92374665, + 43.634961350000005 + ], + [ + 3.92437345, + 43.63523885 + ], + [ + 3.92445735, + 43.63527595 + ], + [ + 3.92463635, + 43.63539075 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.92463635, + 43.63539075 + ], + [ + 3.9262876500000004, + 43.63612415 + ], + [ + 3.92637415, + 43.63616475 + ], + [ + 3.92646115, + 43.63621135 + ], + [ + 3.92650005, + 43.63623965 + ], + [ + 3.9265158500000004, + 43.63625085 + ], + [ + 3.92655545, + 43.63628585 + ], + [ + 3.92659305, + 43.63633155 + ], + [ + 3.92660225, + 43.63635295 + ], + [ + 3.92661015, + 43.63637585 + ], + [ + 3.92661485, + 43.636422350000004 + ], + [ + 3.92661095, + 43.63646305 + ], + [ + 3.9265975500000003, + 43.636495350000004 + ], + [ + 3.9265886500000002, + 43.63651635 + ], + [ + 3.92657245, + 43.63654675 + ], + [ + 3.92653155, + 43.636599450000006 + ], + [ + 3.9265023500000003, + 43.636631050000005 + ], + [ + 3.9262982500000003, + 43.636843850000005 + ], + [ + 3.9261794500000002, + 43.636958150000005 + ], + [ + 3.9259984500000003, + 43.63712215 + ], + [ + 3.92530685, + 43.63773605 + ], + [ + 3.9252269500000003, + 43.63781035 + ], + [ + 3.92516875, + 43.63786935 + ], + [ + 3.9251409500000003, + 43.637906050000005 + ], + [ + 3.92509895, + 43.63796105 + ], + [ + 3.9250712500000002, + 43.63801385 + ], + [ + 3.92502895, + 43.63810935 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.86084495, + 43.58305025 + ], + [ + 3.86068445, + 43.58322875 + ], + [ + 3.86047655, + 43.583461150000005 + ], + [ + 3.86043355, + 43.58350585 + ], + [ + 3.86037425, + 43.58357275 + ], + [ + 3.8601013500000003, + 43.583875250000006 + ], + [ + 3.8596650500000003, + 43.58435625 + ], + [ + 3.85960895, + 43.584418050000004 + ], + [ + 3.8595768500000003, + 43.58446655 + ], + [ + 3.85955615, + 43.584523850000004 + ], + [ + 3.85954545, + 43.584582250000004 + ], + [ + 3.85955335, + 43.58464475 + ], + [ + 3.8595768500000003, + 43.58470535 + ], + [ + 3.85959765, + 43.584744650000005 + ], + [ + 3.85961845, + 43.584761650000004 + ], + [ + 3.85968685, + 43.58481795 + ], + [ + 3.85978205, + 43.584875350000004 + ], + [ + 3.86005125, + 43.585001250000005 + ], + [ + 3.86014035, + 43.58504425 + ], + [ + 3.8602641500000003, + 43.58509205 + ], + [ + 3.86033875, + 43.58511605 + ], + [ + 3.8604348500000003, + 43.58513965 + ], + [ + 3.86045705, + 43.58514515 + ], + [ + 3.8612999500000003, + 43.58535225 + ], + [ + 3.86192365, + 43.585502350000006 + ], + [ + 3.8620806500000002, + 43.585541250000006 + ], + [ + 3.86225895, + 43.58558825 + ], + [ + 3.86239655, + 43.58562845 + ], + [ + 3.86249675, + 43.58565755 + ], + [ + 3.8627988500000003, + 43.58575835 + ], + [ + 3.86351815, + 43.58600795 + ], + [ + 3.8638229500000003, + 43.58612035 + ], + [ + 3.86407925, + 43.58621685 + ], + [ + 3.86431345, + 43.586312750000005 + ], + [ + 3.86442625, + 43.58636895 + ], + [ + 3.86449765, + 43.58640805 + ], + [ + 3.86460055, + 43.586470150000004 + ], + [ + 3.86467625, + 43.586521350000005 + ], + [ + 3.86475755, + 43.58658305 + ], + [ + 3.86485145, + 43.58666275 + ], + [ + 3.8649775500000003, + 43.58679095 + ], + [ + 3.86512365, + 43.586954150000004 + ], + [ + 3.8651813500000003, + 43.58703375 + ], + [ + 3.86524275, + 43.58713765 + ], + [ + 3.8654898500000003, + 43.587617650000006 + ], + [ + 3.86557475, + 43.587782950000005 + ], + [ + 3.86558365, + 43.58780215 + ], + [ + 3.86563865, + 43.587950750000005 + ], + [ + 3.8656735500000003, + 43.58810325 + ], + [ + 3.8656760500000003, + 43.588137450000005 + ], + [ + 3.8656849500000003, + 43.58826005 + ], + [ + 3.8656860500000003, + 43.58831285 + ], + [ + 3.86568675, + 43.58842355 + ], + [ + 3.86568805, + 43.58863465 + ], + [ + 3.8656912500000002, + 43.58886355 + ], + [ + 3.86569515, + 43.58903865 + ], + [ + 3.86569655, + 43.58909955 + ], + [ + 3.86569735, + 43.58939255 + ], + [ + 3.86569925, + 43.58954105 + ], + [ + 3.86571205, + 43.58966825 + ], + [ + 3.86573125, + 43.58974105 + ], + [ + 3.8657848500000003, + 43.589932350000005 + ], + [ + 3.8658887500000003, + 43.590276550000006 + ], + [ + 3.86601635, + 43.590731950000006 + ], + [ + 3.86606635, + 43.59090955 + ], + [ + 3.8660852500000003, + 43.590962950000005 + ], + [ + 3.86613225, + 43.59109025 + ], + [ + 3.86621135, + 43.59126705 + ], + [ + 3.86634145, + 43.59154575 + ], + [ + 3.86653585, + 43.59195175 + ], + [ + 3.86656705, + 43.592021450000004 + ], + [ + 3.8665731500000002, + 43.592088450000006 + ], + [ + 3.8665622500000003, + 43.59214565 + ], + [ + 3.86655285, + 43.59217275 + ], + [ + 3.8664344500000003, + 43.59250105 + ], + [ + 3.86637375, + 43.59266625 + ], + [ + 3.8663622500000003, + 43.59271365 + ], + [ + 3.8663557500000003, + 43.592764550000005 + ], + [ + 3.86633885, + 43.593192550000005 + ], + [ + 3.8663451500000003, + 43.59327985 + ], + [ + 3.86635965, + 43.59334355 + ], + [ + 3.86637335, + 43.593413350000006 + ], + [ + 3.86640715, + 43.59349615 + ], + [ + 3.8664607500000003, + 43.59357875 + ], + [ + 3.86658545, + 43.59375645 + ], + [ + 3.8668724500000002, + 43.594129450000004 + ], + [ + 3.86698845, + 43.59428225 + ], + [ + 3.8674843500000002, + 43.59492685 + ], + [ + 3.8675339500000003, + 43.59499945 + ], + [ + 3.8675754500000004, + 43.59507465 + ], + [ + 3.86760525, + 43.59512865 + ], + [ + 3.86760985, + 43.595136950000004 + ], + [ + 3.86763995, + 43.595192850000004 + ], + [ + 3.86768435, + 43.59526215 + ], + [ + 3.8676905500000003, + 43.59527165 + ], + [ + 3.86795365, + 43.595558950000004 + ], + [ + 3.86809095, + 43.59571125 + ], + [ + 3.86812105, + 43.59574465 + ], + [ + 3.8681800500000003, + 43.59578835 + ], + [ + 3.86823235, + 43.59581265 + ], + [ + 3.86828385, + 43.59582635 + ], + [ + 3.86830385, + 43.59582995 + ], + [ + 3.86832475, + 43.595834450000005 + ], + [ + 3.8683458500000003, + 43.59583585 + ], + [ + 3.8684090500000003, + 43.59583645 + ], + [ + 3.86849085, + 43.595821550000004 + ], + [ + 3.86852285, + 43.59580805 + ], + [ + 3.86854455, + 43.59579885 + ], + [ + 3.86860945, + 43.59576775 + ], + [ + 3.86967015, + 43.59511435 + ], + [ + 3.86980155, + 43.595026950000005 + ], + [ + 3.86989425, + 43.594978950000005 + ], + [ + 3.86997765, + 43.59494745 + ], + [ + 3.8700781500000003, + 43.594930850000004 + ], + [ + 3.87016655, + 43.594923650000005 + ], + [ + 3.87096135, + 43.59488855 + ], + [ + 3.87108825, + 43.594869450000004 + ], + [ + 3.87123585, + 43.59482295 + ], + [ + 3.87128095, + 43.59480155 + ], + [ + 3.87131495, + 43.59478535 + ], + [ + 3.87150025, + 43.594677850000004 + ], + [ + 3.87212275, + 43.59430555 + ], + [ + 3.8721985500000002, + 43.59424595 + ], + [ + 3.87226385, + 43.594191450000004 + ], + [ + 3.87234415, + 43.59410075 + ], + [ + 3.87240815, + 43.59404665 + ], + [ + 3.87252055, + 43.59396975 + ], + [ + 3.8731889500000003, + 43.593576250000005 + ], + [ + 3.87338585, + 43.59345845 + ], + [ + 3.8734733500000003, + 43.59340675 + ], + [ + 3.87356115, + 43.593353050000005 + ], + [ + 3.8739476500000003, + 43.59312795 + ], + [ + 3.8740591500000003, + 43.593064850000005 + ], + [ + 3.8742062500000003, + 43.592979750000005 + ], + [ + 3.87427535, + 43.59294715 + ], + [ + 3.87434225, + 43.59292475 + ], + [ + 3.87440905, + 43.592906850000006 + ], + [ + 3.87449465, + 43.592900650000004 + ], + [ + 3.87459765, + 43.59290715 + ], + [ + 3.87469945, + 43.59292975 + ], + [ + 3.87477705, + 43.592962650000004 + ], + [ + 3.87484235, + 43.59300785 + ], + [ + 3.87489675, + 43.59306045 + ], + [ + 3.87494855, + 43.593127450000004 + ], + [ + 3.87519525, + 43.59352185 + ], + [ + 3.87531865, + 43.59374905 + ], + [ + 3.87559765, + 43.59432995 + ], + [ + 3.87573035, + 43.59453155 + ], + [ + 3.87580955, + 43.59464985 + ], + [ + 3.8760107500000003, + 43.594950250000004 + ], + [ + 3.87614165, + 43.59512695 + ], + [ + 3.87617965, + 43.59519245 + ], + [ + 3.87620645, + 43.59526815 + ], + [ + 3.87620915, + 43.595392450000006 + ], + [ + 3.8761635500000002, + 43.59571495 + ], + [ + 3.87612975, + 43.59584765 + ], + [ + 3.87601355, + 43.59614845 + ], + [ + 3.8759985500000003, + 43.59619965 + ], + [ + 3.8759838500000003, + 43.596256950000004 + ], + [ + 3.87597965, + 43.596321350000004 + ], + [ + 3.87597855, + 43.59636375 + ], + [ + 3.87598295, + 43.596410850000005 + ], + [ + 3.8759917500000003, + 43.59646055 + ], + [ + 3.87606165, + 43.596707550000005 + ], + [ + 3.8760897500000002, + 43.59679845 + ], + [ + 3.87611365, + 43.59688065 + ], + [ + 3.8761325500000003, + 43.59695225 + ], + [ + 3.87614035, + 43.59701125 + ], + [ + 3.87613165, + 43.59707915 + ], + [ + 3.87609875, + 43.597209150000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88042775, + 43.60484015 + ], + [ + 3.88045995, + 43.60488015 + ], + [ + 3.8804763500000004, + 43.60491415 + ], + [ + 3.88048005, + 43.60492635 + ], + [ + 3.88048765, + 43.60496055 + ], + [ + 3.88048745, + 43.60499935 + ], + [ + 3.88048735, + 43.605004650000005 + ], + [ + 3.88048035, + 43.60502915 + ], + [ + 3.8804712500000003, + 43.60505595 + ], + [ + 3.88044295, + 43.605139550000004 + ], + [ + 3.88042905, + 43.60517805 + ], + [ + 3.88040895, + 43.60522815 + ], + [ + 3.8803949500000003, + 43.60526325 + ], + [ + 3.88038485, + 43.60529365 + ], + [ + 3.8803816500000003, + 43.605303250000006 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8813544500000003, + 43.60917605 + ], + [ + 3.88150005, + 43.609297950000006 + ], + [ + 3.88160255, + 43.609384250000005 + ], + [ + 3.88169705, + 43.60945385 + ], + [ + 3.8818133500000003, + 43.60950995 + ], + [ + 3.88264275, + 43.609843350000006 + ], + [ + 3.8828550500000003, + 43.60992525 + ], + [ + 3.88294965, + 43.60998145 + ], + [ + 3.8830132500000003, + 43.61004535 + ], + [ + 3.88306285, + 43.61010605 + ], + [ + 3.88308915, + 43.61018345 + ], + [ + 3.8831000500000004, + 43.61025645 + ], + [ + 3.88311115, + 43.610329050000004 + ], + [ + 3.88310345, + 43.61038515 + ], + [ + 3.88302215, + 43.610767550000006 + ], + [ + 3.8829709500000003, + 43.61100805 + ], + [ + 3.88281555, + 43.61180805 + ], + [ + 3.88280005, + 43.611919150000006 + ], + [ + 3.88275935, + 43.61229865 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8799597500000003, + 43.60645195 + ], + [ + 3.87982015, + 43.60683215 + ], + [ + 3.8794200500000002, + 43.607892750000005 + ], + [ + 3.87941665, + 43.60790455 + ], + [ + 3.87941205, + 43.60792055 + ], + [ + 3.8793966500000003, + 43.60797455 + ], + [ + 3.87939335, + 43.60803635 + ], + [ + 3.87940735, + 43.608090350000005 + ], + [ + 3.8794536500000003, + 43.60814975 + ], + [ + 3.87953625, + 43.60821095 + ], + [ + 3.8795809500000003, + 43.60823765 + ], + [ + 3.8798099500000003, + 43.608374350000005 + ], + [ + 3.87996175, + 43.60847175 + ], + [ + 3.88013515, + 43.60858305 + ], + [ + 3.8802907500000003, + 43.608670950000004 + ], + [ + 3.8803754500000003, + 43.608709850000004 + ], + [ + 3.88041515, + 43.608728150000005 + ], + [ + 3.88053695, + 43.60877535 + ], + [ + 3.8805876500000003, + 43.608795050000005 + ], + [ + 3.8808465500000002, + 43.608895350000004 + ], + [ + 3.88105225, + 43.60898825 + ], + [ + 3.88120895, + 43.60907635 + ], + [ + 3.8813544500000003, + 43.60917605 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88011375, + 43.604622150000004 + ], + [ + 3.8802332500000003, + 43.60470765 + ], + [ + 3.88026845, + 43.604732850000005 + ], + [ + 3.88032925, + 43.60477555 + ], + [ + 3.88042195, + 43.60483605 + ], + [ + 3.88042775, + 43.60484015 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87609875, + 43.597209150000005 + ], + [ + 3.87606755, + 43.59729775 + ], + [ + 3.8760370500000003, + 43.59738025 + ], + [ + 3.8759825500000002, + 43.597474150000004 + ], + [ + 3.87593925, + 43.59755805 + ], + [ + 3.87590295, + 43.59763615 + ], + [ + 3.87588195, + 43.59770635 + ], + [ + 3.87580445, + 43.59809615 + ], + [ + 3.8757057500000003, + 43.59909015 + ], + [ + 3.8756737500000003, + 43.59941705 + ], + [ + 3.87565025, + 43.59964145 + ], + [ + 3.87563915, + 43.59975085 + ], + [ + 3.87562875, + 43.599849250000005 + ], + [ + 3.87562145, + 43.599904450000004 + ], + [ + 3.8755605500000003, + 43.60025385 + ], + [ + 3.87540405, + 43.60120825 + ], + [ + 3.87539635, + 43.60125785 + ], + [ + 3.8752026500000003, + 43.60239055 + ], + [ + 3.87519795, + 43.60241785 + ], + [ + 3.87519385, + 43.60244165 + ], + [ + 3.8751125500000003, + 43.60282775 + ], + [ + 3.8750992500000003, + 43.602901450000005 + ], + [ + 3.87510025, + 43.602981650000004 + ], + [ + 3.87510965, + 43.60301365 + ], + [ + 3.87513085, + 43.60304105 + ], + [ + 3.87514995, + 43.60306845 + ], + [ + 3.8751793500000002, + 43.60309265 + ], + [ + 3.8752124500000003, + 43.60311195 + ], + [ + 3.8752485500000002, + 43.60313295 + ], + [ + 3.87528265, + 43.60314375 + ], + [ + 3.8753337500000002, + 43.60315695 + ], + [ + 3.87538325, + 43.60316365 + ], + [ + 3.87543665, + 43.60316385 + ], + [ + 3.87554435, + 43.60315465 + ], + [ + 3.87569945, + 43.60313215 + ], + [ + 3.87617805, + 43.60306275 + ], + [ + 3.8764145500000002, + 43.603029150000005 + ], + [ + 3.8766028500000003, + 43.60300225 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8525089500000003, + 43.57681145 + ], + [ + 3.85316355, + 43.577217350000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8523366500000003, + 43.57670365 + ], + [ + 3.8525089500000003, + 43.57681145 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.85316355, + 43.577217350000005 + ], + [ + 3.8533156500000003, + 43.577309050000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8533156500000003, + 43.577309050000004 + ], + [ + 3.8540214500000003, + 43.577745650000004 + ], + [ + 3.8562742500000002, + 43.57913705 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8826925500000002, + 43.612989750000004 + ], + [ + 3.8826965500000004, + 43.613159950000004 + ], + [ + 3.8827115500000002, + 43.613343150000006 + ], + [ + 3.88272825, + 43.61348935 + ], + [ + 3.88274155, + 43.61356345 + ], + [ + 3.8827690500000003, + 43.61366885 + ], + [ + 3.88281335, + 43.61379985 + ], + [ + 3.88287125, + 43.61398865 + ], + [ + 3.88288585, + 43.61410325 + ], + [ + 3.88289055, + 43.614155350000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88275935, + 43.61229865 + ], + [ + 3.8827123500000003, + 43.61259065 + ], + [ + 3.88269725, + 43.61277595 + ], + [ + 3.8826925500000002, + 43.612989750000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8562742500000002, + 43.57913705 + ], + [ + 3.85678875, + 43.57944905 + ], + [ + 3.85746335, + 43.57984425 + ], + [ + 3.8581435500000003, + 43.580213050000005 + ], + [ + 3.85860365, + 43.58045115 + ], + [ + 3.85865825, + 43.58047715 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8596392500000003, + 43.580991250000004 + ], + [ + 3.8605043500000003, + 43.581341550000005 + ], + [ + 3.86083545, + 43.58147685 + ], + [ + 3.86089715, + 43.58150255 + ], + [ + 3.86095755, + 43.58152775 + ], + [ + 3.86114505, + 43.581610250000004 + ], + [ + 3.86131745, + 43.58170525 + ], + [ + 3.8614383500000002, + 43.58177965 + ], + [ + 3.8615099500000003, + 43.58184905 + ], + [ + 3.86155535, + 43.58192135 + ], + [ + 3.86158315, + 43.582010450000006 + ], + [ + 3.86158665, + 43.58209085 + ], + [ + 3.86156595, + 43.58216625 + ], + [ + 3.86151815, + 43.58226125 + ], + [ + 3.86146555, + 43.58233605 + ], + [ + 3.8614046500000003, + 43.58243035 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.83135775, + 43.574509250000006 + ], + [ + 3.83144775, + 43.57447165 + ], + [ + 3.83160075, + 43.57440475 + ], + [ + 3.8316340500000003, + 43.57439015 + ], + [ + 3.8317909500000003, + 43.574313350000004 + ], + [ + 3.83204745, + 43.574174850000006 + ], + [ + 3.8326584500000003, + 43.57384665 + ], + [ + 3.83278565, + 43.573777650000004 + ], + [ + 3.83294575, + 43.57368495 + ], + [ + 3.83347635, + 43.57338345 + ], + [ + 3.83412765, + 43.57301575 + ], + [ + 3.83433925, + 43.572891150000004 + ], + [ + 3.83450295, + 43.57278945 + ], + [ + 3.83463165, + 43.57270595 + ], + [ + 3.8347573500000003, + 43.57261665 + ], + [ + 3.83499295, + 43.57244725 + ], + [ + 3.83534035, + 43.57218685 + ], + [ + 3.83595585, + 43.571723850000005 + ], + [ + 3.83643815, + 43.571369350000005 + ], + [ + 3.83660455, + 43.57124635 + ], + [ + 3.83675325, + 43.57115325 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.85122825, + 43.576013350000004 + ], + [ + 3.8523366500000003, + 43.57670365 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8476064500000002, + 43.57377815 + ], + [ + 3.84867115, + 43.574419850000005 + ], + [ + 3.84872285, + 43.57445095 + ], + [ + 3.8488307500000003, + 43.57452035 + ], + [ + 3.84888545, + 43.574554150000004 + ], + [ + 3.84960215, + 43.574996150000004 + ], + [ + 3.84996045, + 43.57521715 + ], + [ + 3.85072055, + 43.57568585 + ], + [ + 3.85122825, + 43.576013350000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88298945, + 43.62224405 + ], + [ + 3.88293045, + 43.62239005 + ], + [ + 3.88287065, + 43.62251705 + ], + [ + 3.88278415, + 43.622735750000004 + ], + [ + 3.88274315, + 43.62285585 + ], + [ + 3.88272245, + 43.62294785 + ], + [ + 3.8827147500000003, + 43.623039250000005 + ], + [ + 3.88270705, + 43.62311485 + ], + [ + 3.88270875, + 43.62315815 + ], + [ + 3.8827071500000003, + 43.62323155 + ], + [ + 3.8827052500000003, + 43.62331975 + ], + [ + 3.8826949500000003, + 43.62385385 + ], + [ + 3.88269295, + 43.62429695 + ], + [ + 3.88268985, + 43.624520350000004 + ], + [ + 3.88267285, + 43.624735050000005 + ], + [ + 3.8826477500000003, + 43.624958050000004 + ], + [ + 3.88262175, + 43.625141850000006 + ], + [ + 3.88257735, + 43.62552435 + ], + [ + 3.88253045, + 43.62589235 + ], + [ + 3.88252845, + 43.62594755 + ], + [ + 3.88253045, + 43.62598165 + ], + [ + 3.8825345500000004, + 43.626008850000005 + ], + [ + 3.88253855, + 43.626034950000005 + ], + [ + 3.88255725, + 43.62608405 + ], + [ + 3.8825742500000002, + 43.62611115 + ], + [ + 3.8825945500000003, + 43.62612955 + ], + [ + 3.88261825, + 43.626151050000004 + ], + [ + 3.88266055, + 43.62617925 + ], + [ + 3.8827134500000002, + 43.626199150000005 + ], + [ + 3.88279065, + 43.62621955 + ], + [ + 3.88282345, + 43.626222750000004 + ], + [ + 3.8832040500000002, + 43.62625955 + ], + [ + 3.88331465, + 43.626270250000005 + ], + [ + 3.88355745, + 43.62629625 + ], + [ + 3.88377515, + 43.626319550000005 + ], + [ + 3.88410715, + 43.626350450000004 + ], + [ + 3.88426405, + 43.626357150000004 + ], + [ + 3.8844546500000003, + 43.62636535 + ], + [ + 3.88458525, + 43.62636675 + ], + [ + 3.88544235, + 43.626373050000005 + ], + [ + 3.88691145, + 43.62637805 + ], + [ + 3.88711085, + 43.62638325 + ], + [ + 3.88727965, + 43.62639835 + ], + [ + 3.88745515, + 43.62642325 + ], + [ + 3.8876354500000003, + 43.62646205 + ], + [ + 3.88783105, + 43.62651325 + ], + [ + 3.8883404500000003, + 43.626651450000004 + ], + [ + 3.88876665, + 43.626770750000006 + ], + [ + 3.88903655, + 43.62684625 + ], + [ + 3.8892315500000003, + 43.626900850000006 + ], + [ + 3.88937225, + 43.62693215 + ], + [ + 3.88954965, + 43.626974950000005 + ], + [ + 3.8896790500000002, + 43.62700035 + ], + [ + 3.88979395, + 43.62701595 + ], + [ + 3.89008295, + 43.62706105 + ], + [ + 3.8905571500000002, + 43.627130050000005 + ], + [ + 3.89092135, + 43.627192550000004 + ], + [ + 3.8911698500000003, + 43.62724815 + ], + [ + 3.89149985, + 43.627337350000005 + ], + [ + 3.8915565500000002, + 43.62735225 + ], + [ + 3.89160285, + 43.627368950000005 + ], + [ + 3.89200715, + 43.62751655 + ], + [ + 3.89225275, + 43.62762225 + ], + [ + 3.89256195, + 43.627773250000004 + ], + [ + 3.89321815, + 43.628135650000004 + ], + [ + 3.89372645, + 43.62841575 + ], + [ + 3.89408755, + 43.628617250000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9140502500000003, + 43.654562750000004 + ], + [ + 3.91360925, + 43.65455355 + ], + [ + 3.91317715, + 43.654554250000004 + ], + [ + 3.9128009500000003, + 43.65455585 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8590135500000002, + 43.580645950000005 + ], + [ + 3.85921225, + 43.58075765 + ], + [ + 3.8594514500000003, + 43.580893350000004 + ], + [ + 3.8596392500000003, + 43.580991250000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8457747500000004, + 43.57265435 + ], + [ + 3.8476064500000002, + 43.57377815 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8803816500000003, + 43.605303250000006 + ], + [ + 3.8803032500000003, + 43.60550945 + ], + [ + 3.88024885, + 43.60565975 + ], + [ + 3.8802213500000002, + 43.60573575 + ], + [ + 3.88005435, + 43.60618325 + ], + [ + 3.87999455, + 43.60635715 + ], + [ + 3.8799597500000003, + 43.60645195 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88289055, + 43.614155350000004 + ], + [ + 3.88289325, + 43.61418565 + ], + [ + 3.8828952500000002, + 43.61420735 + ], + [ + 3.88289395, + 43.614229050000006 + ], + [ + 3.8828881500000003, + 43.61425725 + ], + [ + 3.88287645, + 43.614283150000006 + ], + [ + 3.88286385, + 43.614303650000004 + ], + [ + 3.88284985, + 43.614323750000004 + ], + [ + 3.88283655, + 43.61434065 + ], + [ + 3.88282815, + 43.614351850000006 + ], + [ + 3.88280585, + 43.61437475 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8766028500000003, + 43.60300225 + ], + [ + 3.87728165, + 43.60290535 + ], + [ + 3.8773935500000003, + 43.602889350000005 + ], + [ + 3.87746835, + 43.602883850000005 + ], + [ + 3.87750005, + 43.60288405 + ], + [ + 3.87755865, + 43.60288895 + ], + [ + 3.87760635, + 43.602897750000004 + ], + [ + 3.87766585, + 43.60291865 + ], + [ + 3.8777137500000003, + 43.602941050000005 + ], + [ + 3.87774925, + 43.60296385 + ], + [ + 3.87780365, + 43.60300405 + ], + [ + 3.87800635, + 43.603145250000004 + ], + [ + 3.87872195, + 43.60364365 + ], + [ + 3.8788330500000003, + 43.60372125 + ], + [ + 3.87887005, + 43.603747250000005 + ], + [ + 3.87906635, + 43.60388475 + ], + [ + 3.87965545, + 43.604298750000005 + ], + [ + 3.8798471500000002, + 43.60443345 + ], + [ + 3.88000875, + 43.60454695 + ], + [ + 3.8800886500000002, + 43.60460415 + ], + [ + 3.88011375, + 43.604622150000004 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.85865825, + 43.58047715 + ], + [ + 3.8590135500000002, + 43.580645950000005 + ] + ] + }, + "properties": { + "line": "Montpellier2", + "name": "2", + "color": "#F18E00", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8806647, + 43.6050605 + ], + [ + 3.8806179, + 43.6050387 + ], + [ + 3.8805929, + 43.6050311 + ], + [ + 3.8805594, + 43.605021 + ], + [ + 3.8805231, + 43.6050134 + ], + [ + 3.8804911, + 43.6050084 + ], + [ + 3.8804877, + 43.605008 + ], + [ + 3.8804464, + 43.6050027 + ], + [ + 3.8804365, + 43.6050015 + ], + [ + 3.8804103, + 43.6050017 + ], + [ + 3.8803817, + 43.6050032 + ], + [ + 3.8803575, + 43.6050071 + ], + [ + 3.8803415, + 43.6050097 + ], + [ + 3.8802967, + 43.6050208 + ], + [ + 3.8802269, + 43.6050458 + ], + [ + 3.8801672, + 43.6050683 + ], + [ + 3.8801561, + 43.6050725 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8801561, + 43.6050725 + ], + [ + 3.8800013, + 43.6051319 + ], + [ + 3.8797132, + 43.6052424 + ], + [ + 3.8793823, + 43.6053693 + ], + [ + 3.8780211, + 43.6058915 + ], + [ + 3.8776598, + 43.6060301 + ], + [ + 3.8775829, + 43.6060604 + ], + [ + 3.8773347, + 43.6061777 + ], + [ + 3.877249, + 43.6062156 + ], + [ + 3.8771173, + 43.6062676 + ], + [ + 3.8770585, + 43.6062895 + ], + [ + 3.8766896, + 43.606427 + ], + [ + 3.8763748, + 43.6065415 + ], + [ + 3.8761899, + 43.6066068 + ], + [ + 3.8759942, + 43.6066714 + ], + [ + 3.8758449, + 43.6067164 + ], + [ + 3.8757823, + 43.6067384 + ], + [ + 3.875761, + 43.6067459 + ], + [ + 3.8756792, + 43.6067767 + ], + [ + 3.8755025, + 43.6068596 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8183594, + 43.6173772 + ], + [ + 3.8182487, + 43.6173513 + ], + [ + 3.8181795, + 43.6173342 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9283032, + 43.5813921 + ], + [ + 3.9281681, + 43.581468 + ], + [ + 3.9280819, + 43.5815206 + ], + [ + 3.9279547, + 43.5815956 + ], + [ + 3.9278508, + 43.5816512 + ], + [ + 3.9270177, + 43.5820553 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8178537, + 43.617252 + ], + [ + 3.8177968, + 43.6172326 + ], + [ + 3.8177504, + 43.6172078 + ], + [ + 3.8177198, + 43.6171853 + ], + [ + 3.8176902, + 43.6171614 + ], + [ + 3.8176663, + 43.6171281 + ], + [ + 3.8176493, + 43.6171002 + ], + [ + 3.8176341, + 43.6170444 + ], + [ + 3.817636, + 43.6170172 + ], + [ + 3.81764, + 43.6169894 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8735895, + 43.6060478 + ], + [ + 3.8735596, + 43.6060164 + ], + [ + 3.8735316, + 43.6059977 + ], + [ + 3.8734997, + 43.6059824 + ], + [ + 3.8734734, + 43.6059746 + ], + [ + 3.873422, + 43.6059635 + ], + [ + 3.8733681, + 43.6059622 + ], + [ + 3.8733157, + 43.605966 + ], + [ + 3.8732695, + 43.6059722 + ], + [ + 3.873227, + 43.6059825 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9131237, + 43.57135 + ], + [ + 3.9125595, + 43.5714617 + ], + [ + 3.9118748, + 43.5715874 + ], + [ + 3.9115645, + 43.5716292 + ], + [ + 3.9112612, + 43.5716657 + ], + [ + 3.9109634, + 43.5716877 + ], + [ + 3.9105708, + 43.5717076 + ], + [ + 3.9101611, + 43.5717145 + ], + [ + 3.9098216, + 43.5717104 + ], + [ + 3.9095797, + 43.5716972 + ], + [ + 3.9094114, + 43.5716857 + ], + [ + 3.9092233, + 43.571676 + ], + [ + 3.9088016, + 43.5716354 + ], + [ + 3.9083443, + 43.5715654 + ], + [ + 3.9081014, + 43.5715198 + ], + [ + 3.9076902, + 43.5714311 + ], + [ + 3.9071723, + 43.5713042 + ], + [ + 3.9068089, + 43.5712173 + ], + [ + 3.9067731, + 43.5712088 + ], + [ + 3.9066177, + 43.5711773 + ], + [ + 3.9065389, + 43.5711616 + ], + [ + 3.9060204, + 43.5710637 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9264909, + 43.580673 + ], + [ + 3.9259002, + 43.5804329 + ], + [ + 3.925707, + 43.5803397 + ], + [ + 3.9256212, + 43.5802853 + ], + [ + 3.9254858, + 43.5801848 + ], + [ + 3.9252896, + 43.580013 + ], + [ + 3.9244077, + 43.5792106 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9202134, + 43.5732772 + ], + [ + 3.9199915, + 43.5731702 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9199915, + 43.5731702 + ], + [ + 3.9191301, + 43.5727557 + ], + [ + 3.9188741, + 43.5726479 + ], + [ + 3.9185708, + 43.5725348 + ], + [ + 3.9184721, + 43.5724973 + ], + [ + 3.9180105, + 43.5723357 + ], + [ + 3.9174782, + 43.572169 + ], + [ + 3.9159097, + 43.5716991 + ], + [ + 3.9149849, + 43.5714723 + ], + [ + 3.9146868, + 43.5713998 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9283032, + 43.5813921 + ], + [ + 3.9294193, + 43.5808477 + ], + [ + 3.9307353, + 43.5802005 + ], + [ + 3.9317919, + 43.5796845 + ], + [ + 3.931978, + 43.579591 + ], + [ + 3.9321379, + 43.5795106 + ], + [ + 3.9324147, + 43.5793716 + ], + [ + 3.9331257, + 43.5790279 + ], + [ + 3.9339534, + 43.5786297 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.880876, + 43.6052107 + ], + [ + 3.8808315, + 43.6051791 + ], + [ + 3.8807621, + 43.6051298 + ], + [ + 3.8807195, + 43.6050995 + ], + [ + 3.8806647, + 43.6050605 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8819823, + 43.6057692 + ], + [ + 3.8819681, + 43.6057701 + ], + [ + 3.8818707, + 43.6057764 + ], + [ + 3.8817919, + 43.6057697 + ], + [ + 3.8817266, + 43.6057549 + ], + [ + 3.8816562, + 43.6057279 + ], + [ + 3.8815756, + 43.6056807 + ], + [ + 3.8811955, + 43.6054224 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8160898, + 43.6149679 + ], + [ + 3.8159574, + 43.6149384 + ], + [ + 3.815787, + 43.6149161 + ], + [ + 3.8156234, + 43.6149083 + ], + [ + 3.8155645, + 43.6149111 + ], + [ + 3.8154384, + 43.6149171 + ], + [ + 3.8152821, + 43.6149474 + ], + [ + 3.8151195, + 43.6149966 + ], + [ + 3.815013, + 43.6150466 + ], + [ + 3.8149184, + 43.6151079 + ], + [ + 3.8148255, + 43.6151763 + ], + [ + 3.8147463, + 43.6152414 + ], + [ + 3.8146396, + 43.6153637 + ], + [ + 3.814549, + 43.6154827 + ], + [ + 3.8144634, + 43.6156317 + ], + [ + 3.8143817, + 43.615817 + ], + [ + 3.8143423, + 43.61591 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8175559, + 43.615353 + ], + [ + 3.8169199, + 43.6151843 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8191119, + 43.6173195 + ], + [ + 3.8190766, + 43.617352 + ], + [ + 3.8190524, + 43.6173688 + ], + [ + 3.8190196, + 43.6173889 + ], + [ + 3.8189861, + 43.6174045 + ], + [ + 3.8189519, + 43.6174177 + ], + [ + 3.8189149, + 43.6174306 + ], + [ + 3.8188893, + 43.6174392 + ], + [ + 3.8188569, + 43.6174463 + ], + [ + 3.8188192, + 43.6174509 + ], + [ + 3.8187805, + 43.617454 + ], + [ + 3.8187368, + 43.6174552 + ], + [ + 3.8186993, + 43.6174552 + ], + [ + 3.8186553, + 43.6174498 + ], + [ + 3.8186186, + 43.6174432 + ], + [ + 3.8183594, + 43.6173772 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8721736, + 43.6065336 + ], + [ + 3.8721386, + 43.6065506 + ], + [ + 3.8716553, + 43.6067913 + ], + [ + 3.8710266, + 43.6071147 + ], + [ + 3.8699009, + 43.6076741 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8962329, + 43.6002723 + ], + [ + 3.8961967, + 43.6002631 + ], + [ + 3.8961463, + 43.6002573 + ], + [ + 3.8961031, + 43.6002561 + ], + [ + 3.8960605, + 43.6002595 + ], + [ + 3.8960206, + 43.6002668 + ], + [ + 3.8959803, + 43.6002792 + ], + [ + 3.8959331, + 43.6002986 + ], + [ + 3.8958979, + 43.6003187 + ], + [ + 3.8958674, + 43.6003365 + ], + [ + 3.8957905, + 43.6003884 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8957905, + 43.6003884 + ], + [ + 3.8957527, + 43.6004264 + ], + [ + 3.8955356, + 43.6006479 + ], + [ + 3.8953909, + 43.6007965 + ], + [ + 3.8952857, + 43.6009045 + ], + [ + 3.8952468, + 43.6009509 + ], + [ + 3.895217, + 43.6010063 + ], + [ + 3.8952013, + 43.6010428 + ], + [ + 3.8951844, + 43.6011178 + ], + [ + 3.8951736, + 43.6012747 + ], + [ + 3.89514, + 43.601545 + ], + [ + 3.8951351, + 43.6015848 + ], + [ + 3.895111, + 43.6016819 + ], + [ + 3.8950734, + 43.6017586 + ], + [ + 3.895036, + 43.6018085 + ], + [ + 3.8946604, + 43.6022413 + ], + [ + 3.8946161, + 43.6023365 + ], + [ + 3.8945973, + 43.602426 + ], + [ + 3.894603, + 43.6024797 + ], + [ + 3.8947282, + 43.6030202 + ], + [ + 3.8947818, + 43.6031843 + ], + [ + 3.8947966, + 43.6032215 + ], + [ + 3.8948543, + 43.6033669 + ], + [ + 3.8949539, + 43.6035983 + ], + [ + 3.8949695, + 43.6036393 + ], + [ + 3.8949789, + 43.6036708 + ], + [ + 3.8949833, + 43.6037012 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9631446, + 43.5585786 + ], + [ + 3.9633972, + 43.5582641 + ], + [ + 3.9634433, + 43.5582113 + ], + [ + 3.9635045, + 43.5581334 + ], + [ + 3.9636474, + 43.5579564 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9363731, + 43.5774483 + ], + [ + 3.9361116, + 43.5776086 + ], + [ + 3.9359704, + 43.5776869 + ], + [ + 3.9359583, + 43.577693 + ], + [ + 3.9358333, + 43.5777559 + ], + [ + 3.9357103, + 43.5778125 + ], + [ + 3.9354851, + 43.5779235 + ], + [ + 3.9350421, + 43.5781392 + ], + [ + 3.9348692, + 43.5782248 + ], + [ + 3.9343502, + 43.5784808 + ], + [ + 3.9339534, + 43.5786297 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9464891, + 43.572534 + ], + [ + 3.9456566, + 43.5729444 + ], + [ + 3.9454263, + 43.5730573 + ], + [ + 3.945254, + 43.5731458 + ], + [ + 3.9451511, + 43.5731937 + ], + [ + 3.9449292, + 43.5732984 + ], + [ + 3.9445995, + 43.5734289 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8811955, + 43.6054224 + ], + [ + 3.8808992, + 43.6052261 + ], + [ + 3.880876, + 43.6052107 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8823733, + 43.605491 + ], + [ + 3.8823241, + 43.605541 + ], + [ + 3.8822362, + 43.6056211 + ], + [ + 3.8822166, + 43.6056396 + ], + [ + 3.8821925, + 43.6056626 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8962678, + 43.6002839 + ], + [ + 3.8962329, + 43.6002723 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8970567, + 43.6006905 + ], + [ + 3.8962678, + 43.6002839 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9270815, + 43.5811058 + ], + [ + 3.927211, + 43.5812274 + ], + [ + 3.9272349, + 43.58125 + ], + [ + 3.9272509, + 43.5812735 + ], + [ + 3.9272647, + 43.5812984 + ], + [ + 3.927273, + 43.5813252 + ], + [ + 3.9272774, + 43.5813486 + ], + [ + 3.927279, + 43.5813705 + ], + [ + 3.9272765, + 43.5814022 + ], + [ + 3.9272195, + 43.5817213 + ], + [ + 3.9272052, + 43.581804 + ], + [ + 3.9271941, + 43.5818445 + ], + [ + 3.927173, + 43.5818964 + ], + [ + 3.9271545, + 43.5819325 + ], + [ + 3.9271378, + 43.5819573 + ], + [ + 3.9271154, + 43.5819833 + ], + [ + 3.9270915, + 43.5820046 + ], + [ + 3.9270651, + 43.5820249 + ], + [ + 3.9270177, + 43.5820553 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9131237, + 43.57135 + ], + [ + 3.9132752, + 43.5713201 + ], + [ + 3.9134051, + 43.5713001 + ], + [ + 3.9134953, + 43.5712921 + ], + [ + 3.9136716, + 43.571299 + ], + [ + 3.9141537, + 43.5713259 + ], + [ + 3.9144306, + 43.5713458 + ], + [ + 3.9145368, + 43.5713637 + ], + [ + 3.9146868, + 43.5713998 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8949833, + 43.6037012 + ], + [ + 3.8949824, + 43.6037631 + ], + [ + 3.8949771, + 43.603794 + ], + [ + 3.8949684, + 43.6038238 + ], + [ + 3.8949582, + 43.6038486 + ], + [ + 3.8949375, + 43.6038828 + ], + [ + 3.8949165, + 43.6039132 + ], + [ + 3.8948996, + 43.6039336 + ], + [ + 3.8948813, + 43.6039527 + ], + [ + 3.8948532, + 43.6039766 + ], + [ + 3.894829, + 43.6039962 + ], + [ + 3.8947982, + 43.6040151 + ], + [ + 3.8947649, + 43.6040305 + ], + [ + 3.894738, + 43.6040401 + ], + [ + 3.8947027, + 43.6040512 + ], + [ + 3.8946648, + 43.6040581 + ], + [ + 3.8946168, + 43.6040646 + ], + [ + 3.8945734, + 43.6040663 + ], + [ + 3.8945201, + 43.6040657 + ], + [ + 3.8943768, + 43.604054 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8936581, + 43.6040086 + ], + [ + 3.8935665, + 43.6040032 + ], + [ + 3.8934384, + 43.6039913 + ], + [ + 3.8933315, + 43.6039751 + ], + [ + 3.8930789, + 43.6039228 + ], + [ + 3.8930178, + 43.6039093 + ], + [ + 3.8928832, + 43.6038792 + ], + [ + 3.8926989, + 43.6038459 + ], + [ + 3.8925494, + 43.6038311 + ], + [ + 3.8916917, + 43.6037707 + ], + [ + 3.8905728, + 43.6036927 + ], + [ + 3.8903912, + 43.603686 + ], + [ + 3.8903146, + 43.6036877 + ], + [ + 3.8902465, + 43.603696 + ], + [ + 3.8901887, + 43.6037071 + ], + [ + 3.8899687, + 43.6037456 + ], + [ + 3.889826, + 43.6037628 + ], + [ + 3.8897518, + 43.6037661 + ], + [ + 3.8897178, + 43.603767 + ], + [ + 3.8894869, + 43.6037553 + ], + [ + 3.8889694, + 43.6037185 + ], + [ + 3.8888032, + 43.6037088 + ], + [ + 3.8885913, + 43.6036912 + ], + [ + 3.8882847, + 43.6036295 + ], + [ + 3.8881051, + 43.6035942 + ], + [ + 3.888044, + 43.6035844 + ], + [ + 3.8878877, + 43.6035638 + ], + [ + 3.8877196, + 43.6035485 + ], + [ + 3.8873314, + 43.6035211 + ], + [ + 3.8866622, + 43.6034777 + ], + [ + 3.8848698, + 43.6033627 + ], + [ + 3.8847437, + 43.603363 + ], + [ + 3.8846914, + 43.6033737 + ], + [ + 3.8846584, + 43.6033838 + ], + [ + 3.8846136, + 43.6034047 + ], + [ + 3.8845613, + 43.6034387 + ], + [ + 3.8843118, + 43.6036844 + ], + [ + 3.8842324, + 43.6037618 + ], + [ + 3.883762, + 43.6042321 + ], + [ + 3.8836896, + 43.6043001 + ], + [ + 3.8834886, + 43.6044264 + ], + [ + 3.8834712, + 43.6044374 + ], + [ + 3.8833597, + 43.604507 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.900763, + 43.6019956 + ], + [ + 3.9003795, + 43.6018745 + ], + [ + 3.9001874, + 43.6018086 + ], + [ + 3.8998353, + 43.6016942 + ], + [ + 3.8994636, + 43.601566 + ], + [ + 3.8989885, + 43.6014038 + ], + [ + 3.8988628, + 43.6013606 + ], + [ + 3.8984087, + 43.6012047 + ], + [ + 3.8977299, + 43.6009779 + ], + [ + 3.8975588, + 43.6009202 + ], + [ + 3.8973384, + 43.6008254 + ], + [ + 3.8973083, + 43.6008124 + ], + [ + 3.8972499, + 43.6007873 + ], + [ + 3.8970567, + 43.6006905 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9581083, + 43.5645958 + ], + [ + 3.9586889, + 43.5639025 + ], + [ + 3.9591589, + 43.563347 + ], + [ + 3.9595815, + 43.562823 + ], + [ + 3.9602259, + 43.5620503 + ], + [ + 3.9609789, + 43.5611902 + ], + [ + 3.9623787, + 43.5596047 + ], + [ + 3.9626751, + 43.5592721 + ], + [ + 3.9627966, + 43.5591163 + ], + [ + 3.9629353, + 43.5589105 + ], + [ + 3.9631446, + 43.5585786 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9224489, + 43.5744075 + ], + [ + 3.9224084, + 43.5743853 + ], + [ + 3.9218267, + 43.574066 + ], + [ + 3.9208752, + 43.5735994 + ], + [ + 3.9202134, + 43.5732772 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9464891, + 43.572534 + ], + [ + 3.94651, + 43.5725264 + ], + [ + 3.9473497, + 43.572113 + ], + [ + 3.9485448, + 43.5715346 + ], + [ + 3.9488019, + 43.5714053 + ], + [ + 3.9505805, + 43.5705344 + ], + [ + 3.9523081, + 43.5696909 + ], + [ + 3.9530603, + 43.5693247 + ], + [ + 3.9533814, + 43.5691674 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9581083, + 43.5645958 + ], + [ + 3.957974, + 43.5647598 + ], + [ + 3.9573953, + 43.5654383 + ], + [ + 3.956677, + 43.5662911 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.917167, + 43.5868867 + ], + [ + 3.9142741, + 43.5883029 + ], + [ + 3.9111931, + 43.5898118 + ], + [ + 3.9094264, + 43.5906891 + ], + [ + 3.9091767, + 43.5908163 + ], + [ + 3.9090097, + 43.5909006 + ], + [ + 3.9087563, + 43.5910266 + ], + [ + 3.9086482, + 43.5910876 + ], + [ + 3.9085477, + 43.591144 + ], + [ + 3.9083763, + 43.5912413 + ], + [ + 3.9080711, + 43.5914363 + ], + [ + 3.9077615, + 43.5916826 + ], + [ + 3.9075397, + 43.5918618 + ], + [ + 3.9072074, + 43.592191 + ], + [ + 3.906793, + 43.5926611 + ], + [ + 3.9065527, + 43.5929676 + ], + [ + 3.9063779, + 43.5932171 + ], + [ + 3.9062157, + 43.5934806 + ], + [ + 3.9061006, + 43.5936742 + ], + [ + 3.9059625, + 43.593949 + ], + [ + 3.905777, + 43.594305 + ], + [ + 3.9057552, + 43.5943472 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9060204, + 43.5710637 + ], + [ + 3.9058734, + 43.571015 + ], + [ + 3.9057492, + 43.5709614 + ], + [ + 3.9056006, + 43.5708797 + ], + [ + 3.9054718, + 43.5708068 + ], + [ + 3.9052229, + 43.570666 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9363731, + 43.5774483 + ], + [ + 3.9382874, + 43.5765183 + ], + [ + 3.9401918, + 43.5755875 + ], + [ + 3.9418909, + 43.57475 + ], + [ + 3.9432992, + 43.5740631 + ], + [ + 3.944089, + 43.5736813 + ], + [ + 3.9445995, + 43.5734289 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9227706, + 43.5753084 + ], + [ + 3.9227937, + 43.5754248 + ], + [ + 3.922822, + 43.5755295 + ], + [ + 3.9228272, + 43.575574 + ], + [ + 3.9228568, + 43.5760069 + ], + [ + 3.9228755, + 43.5762812 + ], + [ + 3.9228904, + 43.5763827 + ], + [ + 3.9228968, + 43.5764318 + ], + [ + 3.9229733, + 43.5766802 + ], + [ + 3.9230109, + 43.5767787 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8113046, + 43.617309 + ], + [ + 3.8112309, + 43.6173403 + ], + [ + 3.8109985, + 43.6174412 + ], + [ + 3.8108291, + 43.6175064 + ], + [ + 3.8107392, + 43.617526 + ], + [ + 3.810634, + 43.6175361 + ], + [ + 3.810518, + 43.617533 + ], + [ + 3.8104859, + 43.6175307 + ], + [ + 3.810219, + 43.6175115 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8748316, + 43.6071731 + ], + [ + 3.8747409, + 43.607228 + ], + [ + 3.8746692, + 43.6072757 + ], + [ + 3.8746173, + 43.6073076 + ], + [ + 3.8745944, + 43.6073206 + ], + [ + 3.8745609, + 43.6073349 + ], + [ + 3.8745254, + 43.6073442 + ], + [ + 3.8744605, + 43.6073528 + ], + [ + 3.8744119, + 43.6073528 + ], + [ + 3.8743677, + 43.6073459 + ], + [ + 3.874342, + 43.607341 + ], + [ + 3.8743202, + 43.6073348 + ], + [ + 3.8743, + 43.6073274 + ], + [ + 3.8742807, + 43.6073162 + ], + [ + 3.8742591, + 43.6073031 + ], + [ + 3.8742409, + 43.6072857 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8542519, + 43.6102018 + ], + [ + 3.8540494, + 43.6101849 + ], + [ + 3.8538113, + 43.6101713 + ], + [ + 3.8535402, + 43.6101654 + ], + [ + 3.8533162, + 43.6101617 + ], + [ + 3.8531449, + 43.610164 + ], + [ + 3.852469, + 43.6101694 + ], + [ + 3.8522624, + 43.610179 + ], + [ + 3.851949, + 43.610198 + ], + [ + 3.8513868, + 43.6102601 + ], + [ + 3.8506703, + 43.6103614 + ], + [ + 3.850176, + 43.6104156 + ], + [ + 3.849997, + 43.6104538 + ], + [ + 3.8498815, + 43.6104803 + ], + [ + 3.8497759, + 43.6105045 + ], + [ + 3.848852, + 43.6107243 + ], + [ + 3.8483056, + 43.6108555 + ], + [ + 3.8482261, + 43.610874 + ], + [ + 3.8476119, + 43.6110194 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.873986, + 43.6068053 + ], + [ + 3.8737521, + 43.6063584 + ], + [ + 3.8735895, + 43.6060478 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8258473, + 43.6166748 + ], + [ + 3.8258541, + 43.61582 + ], + [ + 3.8258568, + 43.6154832 + ], + [ + 3.8258562, + 43.6152601 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8254652, + 43.6149762 + ], + [ + 3.8246237, + 43.6149792 + ], + [ + 3.8243682, + 43.6149879 + ], + [ + 3.824218, + 43.6150015 + ], + [ + 3.8240216, + 43.6150227 + ], + [ + 3.8238383, + 43.6150425 + ], + [ + 3.823125, + 43.6151296 + ], + [ + 3.8222484, + 43.6152299 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8222484, + 43.6152299 + ], + [ + 3.8219783, + 43.6152617 + ], + [ + 3.8218319, + 43.6152823 + ], + [ + 3.8216784, + 43.6153149 + ], + [ + 3.8215797, + 43.615345 + ], + [ + 3.8215501, + 43.6153539 + ], + [ + 3.8215088, + 43.6153657 + ], + [ + 3.8214088, + 43.6153967 + ], + [ + 3.8212023, + 43.6154394 + ], + [ + 3.8206185, + 43.6155068 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8206185, + 43.6155068 + ], + [ + 3.8203883, + 43.6155469 + ], + [ + 3.8202834, + 43.6155748 + ], + [ + 3.8202255, + 43.6155928 + ], + [ + 3.8200954, + 43.6156355 + ], + [ + 3.8200375, + 43.6156707 + ], + [ + 3.8199798, + 43.6157252 + ], + [ + 3.8199156, + 43.6158114 + ], + [ + 3.8198305, + 43.6159917 + ], + [ + 3.8198213, + 43.6160104 + ], + [ + 3.8196588, + 43.6163397 + ], + [ + 3.8195716, + 43.6165108 + ], + [ + 3.8195415, + 43.6165698 + ], + [ + 3.8194549, + 43.6167638 + ], + [ + 3.8193236, + 43.6170251 + ], + [ + 3.819294, + 43.6170796 + ], + [ + 3.8192668, + 43.6171214 + ], + [ + 3.8192356, + 43.6171641 + ], + [ + 3.8191119, + 43.6173195 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8181795, + 43.6173342 + ], + [ + 3.8178537, + 43.617252 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.81764, + 43.6169894 + ], + [ + 3.8178026, + 43.6166434 + ], + [ + 3.8180514, + 43.6161305 + ], + [ + 3.8181749, + 43.6158758 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8181749, + 43.6158758 + ], + [ + 3.818193, + 43.6158289 + ], + [ + 3.8182035, + 43.6157643 + ], + [ + 3.8182053, + 43.6157332 + ], + [ + 3.8181894, + 43.6156769 + ], + [ + 3.8181757, + 43.6156403 + ], + [ + 3.8181626, + 43.6156235 + ], + [ + 3.8181205, + 43.6155695 + ], + [ + 3.818084, + 43.6155353 + ], + [ + 3.8180119, + 43.6154938 + ], + [ + 3.817855, + 43.6154365 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.817855, + 43.6154365 + ], + [ + 3.8175559, + 43.615353 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8169199, + 43.6151843 + ], + [ + 3.8162171, + 43.6149974 + ], + [ + 3.8160898, + 43.6149679 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8143423, + 43.61591 + ], + [ + 3.8142986, + 43.6159782 + ], + [ + 3.8142579, + 43.6160205 + ], + [ + 3.8142165, + 43.6160554 + ], + [ + 3.8141527, + 43.6160957 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8141527, + 43.6160957 + ], + [ + 3.8140305, + 43.6161552 + ], + [ + 3.8134707, + 43.6163894 + ], + [ + 3.8129105, + 43.6166274 + ], + [ + 3.8127998, + 43.6166742 + ], + [ + 3.8126692, + 43.61673 + ], + [ + 3.8119798, + 43.6170217 + ], + [ + 3.8114639, + 43.6172412 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8114639, + 43.6172412 + ], + [ + 3.8113046, + 43.617309 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9270177, + 43.5820553 + ], + [ + 3.9266273, + 43.5822434 + ], + [ + 3.9256144, + 43.5827358 + ], + [ + 3.9254733, + 43.5828072 + ], + [ + 3.9253785, + 43.5828573 + ], + [ + 3.9253568, + 43.5828695 + ], + [ + 3.9253254, + 43.5828813 + ], + [ + 3.9252765, + 43.5829062 + ], + [ + 3.9252498, + 43.5829196 + ], + [ + 3.9251578, + 43.5829635 + ], + [ + 3.9237572, + 43.5836631 + ], + [ + 3.9217208, + 43.5846604 + ], + [ + 3.9204328, + 43.5852901 + ], + [ + 3.9201909, + 43.5854084 + ], + [ + 3.9199054, + 43.585548 + ], + [ + 3.918808, + 43.5860865 + ], + [ + 3.9173841, + 43.5867814 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9173841, + 43.5867814 + ], + [ + 3.917167, + 43.5868867 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8751876, + 43.6070067 + ], + [ + 3.8748316, + 43.6071731 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.862799, + 43.6098543 + ], + [ + 3.8623422, + 43.6099178 + ], + [ + 3.8618986, + 43.6099752 + ], + [ + 3.8615025, + 43.6100217 + ], + [ + 3.8611048, + 43.6100627 + ], + [ + 3.8608563, + 43.610089 + ], + [ + 3.8604611, + 43.610128 + ], + [ + 3.8603497, + 43.6101393 + ], + [ + 3.8602152, + 43.6101529 + ], + [ + 3.8599284, + 43.6101936 + ], + [ + 3.859133, + 43.6103299 + ], + [ + 3.8584508, + 43.6104648 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8666883, + 43.6091471 + ], + [ + 3.866028, + 43.6092708 + ], + [ + 3.8645487, + 43.6095478 + ], + [ + 3.8643638, + 43.6095815 + ], + [ + 3.8634275, + 43.6097472 + ], + [ + 3.862799, + 43.6098543 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8831666, + 43.6046943 + ], + [ + 3.8830257, + 43.6048313 + ], + [ + 3.8829601, + 43.6048977 + ], + [ + 3.8823733, + 43.605491 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8833597, + 43.604507 + ], + [ + 3.8832406, + 43.6046167 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8832406, + 43.6046167 + ], + [ + 3.8831666, + 43.6046943 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8258562, + 43.6152601 + ], + [ + 3.8258561, + 43.6152102 + ], + [ + 3.8258547, + 43.6151816 + ], + [ + 3.8258468, + 43.6151476 + ], + [ + 3.8258278, + 43.615118 + ], + [ + 3.8257991, + 43.6150801 + ], + [ + 3.8257226, + 43.6150265 + ], + [ + 3.8257034, + 43.6150198 + ], + [ + 3.8256597, + 43.6150044 + ], + [ + 3.8255872, + 43.6149879 + ], + [ + 3.8254652, + 43.6149762 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8264554, + 43.6173087 + ], + [ + 3.8262947, + 43.6172555 + ], + [ + 3.8261852, + 43.6171992 + ], + [ + 3.8261612, + 43.617188 + ], + [ + 3.8260879, + 43.6171239 + ], + [ + 3.8259802, + 43.617023 + ], + [ + 3.8259322, + 43.6169463 + ], + [ + 3.8258993, + 43.6168885 + ], + [ + 3.8258813, + 43.6168499 + ], + [ + 3.8258604, + 43.616791 + ], + [ + 3.82585, + 43.6167595 + ], + [ + 3.8258473, + 43.6166748 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8317124, + 43.6193616 + ], + [ + 3.8313813, + 43.619157 + ], + [ + 3.8308462, + 43.6188793 + ], + [ + 3.8307316, + 43.6188215 + ], + [ + 3.8303528, + 43.6186306 + ], + [ + 3.8301666, + 43.6185455 + ], + [ + 3.8299396, + 43.6184473 + ], + [ + 3.8297453, + 43.6183696 + ], + [ + 3.8284269, + 43.6179435 + ], + [ + 3.827505, + 43.6176453 + ], + [ + 3.8265426, + 43.6173375 + ], + [ + 3.8264554, + 43.6173087 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.834244, + 43.6212923 + ], + [ + 3.8341017, + 43.6211599 + ], + [ + 3.8332955, + 43.6204811 + ], + [ + 3.8328136, + 43.6200784 + ], + [ + 3.8327838, + 43.6200566 + ], + [ + 3.8327018, + 43.6199965 + ], + [ + 3.8325964, + 43.6199056 + ], + [ + 3.8324177, + 43.6197923 + ], + [ + 3.8323429, + 43.6197468 + ], + [ + 3.8319619, + 43.6195151 + ], + [ + 3.8317333, + 43.6193745 + ], + [ + 3.8317124, + 43.6193616 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8359671, + 43.6220988 + ], + [ + 3.8358807, + 43.6222055 + ], + [ + 3.8358043, + 43.6222589 + ], + [ + 3.8357118, + 43.6222968 + ], + [ + 3.8356273, + 43.6223074 + ], + [ + 3.8355139, + 43.622302 + ], + [ + 3.8354635, + 43.6222893 + ], + [ + 3.8353895, + 43.6222614 + ], + [ + 3.8353176, + 43.6222148 + ], + [ + 3.8353045, + 43.6222043 + ], + [ + 3.8349511, + 43.6219189 + ], + [ + 3.8347792, + 43.6217747 + ], + [ + 3.8345895, + 43.6216156 + ], + [ + 3.8344668, + 43.6215103 + ], + [ + 3.8342957, + 43.6213404 + ], + [ + 3.834244, + 43.6212923 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.836725, + 43.6210725 + ], + [ + 3.8366775, + 43.6211273 + ], + [ + 3.8366088, + 43.6212093 + ], + [ + 3.836503, + 43.6213657 + ], + [ + 3.8363531, + 43.6215892 + ], + [ + 3.8362482, + 43.6217405 + ], + [ + 3.8361152, + 43.6219079 + ], + [ + 3.8359671, + 43.6220988 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8387872, + 43.6186727 + ], + [ + 3.8384763, + 43.6190369 + ], + [ + 3.8381081, + 43.6194807 + ], + [ + 3.8379772, + 43.6196367 + ], + [ + 3.8378766, + 43.619758 + ], + [ + 3.8377743, + 43.6198775 + ], + [ + 3.837691, + 43.6199759 + ], + [ + 3.8369963, + 43.6207564 + ], + [ + 3.836725, + 43.6210725 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8402042, + 43.616893 + ], + [ + 3.8401318, + 43.6169632 + ], + [ + 3.8399494, + 43.6172098 + ], + [ + 3.8397496, + 43.6174894 + ], + [ + 3.8395914, + 43.617703 + ], + [ + 3.8395534, + 43.6177521 + ], + [ + 3.839423, + 43.6179204 + ], + [ + 3.8393379, + 43.6180202 + ], + [ + 3.8391413, + 43.6182507 + ], + [ + 3.8389422, + 43.6184911 + ], + [ + 3.8387872, + 43.6186727 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8405758, + 43.6160928 + ], + [ + 3.8406099, + 43.6161212 + ], + [ + 3.8406441, + 43.6161495 + ], + [ + 3.8406897, + 43.6162146 + ], + [ + 3.840707, + 43.6162753 + ], + [ + 3.8407166, + 43.6163107 + ], + [ + 3.8407085, + 43.6163622 + ], + [ + 3.8406871, + 43.6164331 + ], + [ + 3.8406495, + 43.6164903 + ], + [ + 3.8402491, + 43.6168499 + ], + [ + 3.840243, + 43.6168554 + ], + [ + 3.8402042, + 43.616893 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8399253, + 43.6155845 + ], + [ + 3.8400031, + 43.6156689 + ], + [ + 3.8405516, + 43.6160728 + ], + [ + 3.8405758, + 43.6160928 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8392119, + 43.6142267 + ], + [ + 3.8392239, + 43.6142446 + ], + [ + 3.8393097, + 43.6143834 + ], + [ + 3.8394506, + 43.6146475 + ], + [ + 3.8395989, + 43.6149275 + ], + [ + 3.8397059, + 43.615171 + ], + [ + 3.8398824, + 43.6155116 + ], + [ + 3.8399253, + 43.6155845 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8444654, + 43.6126647 + ], + [ + 3.8442544, + 43.6127376 + ], + [ + 3.8430756, + 43.613058 + ], + [ + 3.8427349, + 43.6131308 + ], + [ + 3.8413835, + 43.6133388 + ], + [ + 3.8412956, + 43.6133525 + ], + [ + 3.840333, + 43.6135027 + ], + [ + 3.8402438, + 43.6135133 + ], + [ + 3.8401172, + 43.6135202 + ], + [ + 3.8400632, + 43.61352 + ], + [ + 3.8400158, + 43.6135199 + ], + [ + 3.8395235, + 43.6135181 + ], + [ + 3.8392811, + 43.6135178 + ], + [ + 3.839275, + 43.6135183 + ], + [ + 3.8392248, + 43.6135222 + ], + [ + 3.8391749, + 43.6135322 + ], + [ + 3.8391077, + 43.6135488 + ], + [ + 3.8390469, + 43.6135765 + ], + [ + 3.8390047, + 43.6136103 + ], + [ + 3.8390008, + 43.6136147 + ], + [ + 3.8389722, + 43.613647 + ], + [ + 3.8389664, + 43.613662 + ], + [ + 3.8389575, + 43.6136841 + ], + [ + 3.8389461, + 43.6137291 + ], + [ + 3.8389427, + 43.6137771 + ], + [ + 3.8389428, + 43.6137867 + ], + [ + 3.8389555, + 43.6138252 + ], + [ + 3.8389771, + 43.6138659 + ], + [ + 3.8389942, + 43.613893 + ], + [ + 3.8390858, + 43.6140377 + ], + [ + 3.8392119, + 43.6142267 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8476119, + 43.6110194 + ], + [ + 3.8474699, + 43.611053 + ], + [ + 3.8473547, + 43.6110889 + ], + [ + 3.847229, + 43.6111374 + ], + [ + 3.8471042, + 43.6111942 + ], + [ + 3.8470573, + 43.6112196 + ], + [ + 3.8466375, + 43.6114471 + ], + [ + 3.8464506, + 43.6115523 + ], + [ + 3.8464145, + 43.6115727 + ], + [ + 3.8463373, + 43.6116253 + ], + [ + 3.8462615, + 43.6116745 + ], + [ + 3.8462267, + 43.6116972 + ], + [ + 3.8461601, + 43.6117404 + ], + [ + 3.8459603, + 43.6118967 + ], + [ + 3.8457269, + 43.6120705 + ], + [ + 3.8456243, + 43.6121316 + ], + [ + 3.8455982, + 43.6121472 + ], + [ + 3.8454466, + 43.6122346 + ], + [ + 3.8452516, + 43.6123265 + ], + [ + 3.845047, + 43.612423 + ], + [ + 3.8445333, + 43.6126415 + ], + [ + 3.8445223, + 43.6126451 + ], + [ + 3.8444654, + 43.6126647 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8583667, + 43.6104807 + ], + [ + 3.8582302, + 43.6105045 + ], + [ + 3.8580704, + 43.6105237 + ], + [ + 3.8579264, + 43.6105322 + ], + [ + 3.857727, + 43.6105311 + ], + [ + 3.8575604, + 43.6105219 + ], + [ + 3.8568295, + 43.6104384 + ], + [ + 3.8566341, + 43.6104227 + ], + [ + 3.8564702, + 43.610413 + ], + [ + 3.8562425, + 43.6103995 + ], + [ + 3.8558954, + 43.6103777 + ], + [ + 3.8554157, + 43.6103328 + ], + [ + 3.8552951, + 43.6103187 + ], + [ + 3.8548, + 43.610261 + ], + [ + 3.8545684, + 43.6102325 + ], + [ + 3.8544604, + 43.6102199 + ], + [ + 3.8543929, + 43.610214 + ], + [ + 3.8542519, + 43.6102018 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8584508, + 43.6104648 + ], + [ + 3.8583962, + 43.6104756 + ], + [ + 3.8583667, + 43.6104807 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8699009, + 43.6076741 + ], + [ + 3.8697065, + 43.6077707 + ], + [ + 3.8687935, + 43.6082268 + ], + [ + 3.8687278, + 43.6082596 + ], + [ + 3.8684778, + 43.6083864 + ], + [ + 3.8681304, + 43.6085626 + ], + [ + 3.8678185, + 43.6087186 + ], + [ + 3.8677093, + 43.6087723 + ], + [ + 3.8672798, + 43.6089837 + ], + [ + 3.867139, + 43.609039 + ], + [ + 3.866934, + 43.6091006 + ], + [ + 3.8668574, + 43.6091157 + ], + [ + 3.8667308, + 43.6091391 + ], + [ + 3.8666883, + 43.6091471 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.873227, + 43.6059825 + ], + [ + 3.8729923, + 43.606106 + ], + [ + 3.8727299, + 43.6062372 + ], + [ + 3.8723726, + 43.6064309 + ], + [ + 3.8722234, + 43.6065094 + ], + [ + 3.8721736, + 43.6065336 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8755025, + 43.6068596 + ], + [ + 3.8751876, + 43.6070067 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8742409, + 43.6072857 + ], + [ + 3.8741349, + 43.6070897 + ], + [ + 3.873986, + 43.6068053 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8821925, + 43.6056626 + ], + [ + 3.8821781, + 43.6056762 + ], + [ + 3.8821352, + 43.6057137 + ], + [ + 3.8821001, + 43.6057335 + ], + [ + 3.8820493, + 43.6057553 + ], + [ + 3.8819823, + 43.6057692 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9557491, + 43.5675387 + ], + [ + 3.9558845, + 43.5673764 + ], + [ + 3.9563941, + 43.5666389 + ], + [ + 3.956677, + 43.5662911 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9533814, + 43.5691674 + ], + [ + 3.9537691, + 43.5689775 + ], + [ + 3.954003, + 43.5688618 + ], + [ + 3.9541621, + 43.5687662 + ], + [ + 3.9543772, + 43.5686211 + ], + [ + 3.9550907, + 43.5681334 + ], + [ + 3.9552625, + 43.568013 + ], + [ + 3.9554004, + 43.567903 + ], + [ + 3.9555308, + 43.5677703 + ], + [ + 3.9557491, + 43.5675387 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9057552, + 43.5943472 + ], + [ + 3.9056616, + 43.5945284 + ], + [ + 3.9055911, + 43.594699 + ], + [ + 3.9055347, + 43.5948151 + ], + [ + 3.9054972, + 43.5949014 + ], + [ + 3.9053459, + 43.5952388 + ], + [ + 3.9053307, + 43.5952727 + ], + [ + 3.9052305, + 43.595459 + ], + [ + 3.9046429, + 43.5963198 + ], + [ + 3.9042377, + 43.596926 + ], + [ + 3.9038208, + 43.5975314 + ], + [ + 3.9038153, + 43.5975391 + ], + [ + 3.9035259, + 43.5979503 + ], + [ + 3.9034553, + 43.5980537 + ], + [ + 3.9034303, + 43.5980901 + ], + [ + 3.9033228, + 43.5982471 + ], + [ + 3.9032995, + 43.598281 + ], + [ + 3.9032714, + 43.598322 + ], + [ + 3.9032529, + 43.598349 + ], + [ + 3.9031368, + 43.5985184 + ], + [ + 3.9031143, + 43.5985506 + ], + [ + 3.9030186, + 43.5986879 + ], + [ + 3.9028054, + 43.5989963 + ], + [ + 3.9023082, + 43.5997616 + ], + [ + 3.9020528, + 43.6001597 + ], + [ + 3.9019917, + 43.6002549 + ], + [ + 3.9017929, + 43.6006099 + ], + [ + 3.9013611, + 43.6014633 + ], + [ + 3.9012618, + 43.601667 + ], + [ + 3.9011386, + 43.6018968 + ], + [ + 3.9010862, + 43.6019439 + ], + [ + 3.9010437, + 43.6019683 + ], + [ + 3.9010014, + 43.6019852 + ], + [ + 3.9009482, + 43.6019964 + ], + [ + 3.9009124, + 43.6020039 + ], + [ + 3.9008697, + 43.6020062 + ], + [ + 3.9008334, + 43.6020047 + ], + [ + 3.900763, + 43.6019956 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9227398, + 43.5748299 + ], + [ + 3.9227266, + 43.5747327 + ], + [ + 3.9227151, + 43.5746926 + ], + [ + 3.9226922, + 43.574642 + ], + [ + 3.9226523, + 43.5745832 + ], + [ + 3.9225759, + 43.5745 + ], + [ + 3.9224893, + 43.5744297 + ], + [ + 3.9224489, + 43.5744075 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9227706, + 43.5753084 + ], + [ + 3.922752, + 43.5749405 + ], + [ + 3.9227398, + 43.5748299 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.924012, + 43.5786702 + ], + [ + 3.9238678, + 43.5784031 + ], + [ + 3.9233287, + 43.5773927 + ], + [ + 3.9230856, + 43.5769282 + ], + [ + 3.9230109, + 43.5767787 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9244077, + 43.5792106 + ], + [ + 3.9243094, + 43.5791212 + ], + [ + 3.9242254, + 43.5790292 + ], + [ + 3.9241561, + 43.5789372 + ], + [ + 3.924012, + 43.5786702 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.9270815, + 43.5811058 + ], + [ + 3.926805, + 43.5808622 + ], + [ + 3.9267179, + 43.580796 + ], + [ + 3.9266324, + 43.5807438 + ], + [ + 3.9265171, + 43.5806836 + ], + [ + 3.9264909, + 43.580673 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8943768, + 43.604054 + ], + [ + 3.8943279, + 43.6040508 + ], + [ + 3.8938614, + 43.6040207 + ], + [ + 3.8936581, + 43.6040086 + ] + ] + }, + "properties": { + "line": "Montpellier3", + "name": "3", + "color": "#CBD300", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8940223499999997, + 43.608433049999995 + ], + [ + 3.89396225, + 43.60794875 + ], + [ + 3.8939436499999998, + 43.60777445 + ], + [ + 3.8939439499999997, + 43.60776865 + ], + [ + 3.89395025, + 43.60763815 + ], + [ + 3.8939477499999997, + 43.60755705 + ], + [ + 3.89391345, + 43.60730185 + ], + [ + 3.89388325, + 43.60707915 + ], + [ + 3.89387735, + 43.60701835 + ], + [ + 3.8938831499999997, + 43.606977549999996 + ], + [ + 3.8938875499999996, + 43.60694595 + ], + [ + 3.89389665, + 43.60692415 + ], + [ + 3.8939005499999997, + 43.60691465 + ], + [ + 3.89391695, + 43.60687515 + ], + [ + 3.89393215, + 43.606842449999995 + ], + [ + 3.89398255, + 43.60673465 + ], + [ + 3.89399535, + 43.60670715 + ], + [ + 3.8940359499999997, + 43.60662025 + ], + [ + 3.89405265, + 43.60658515 + ], + [ + 3.89406465, + 43.60653705 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88015985, + 43.605076249999996 + ], + [ + 3.88000505, + 43.60513565 + ], + [ + 3.8797169499999997, + 43.60524615 + ], + [ + 3.87938605, + 43.60537305 + ], + [ + 3.87802485, + 43.605895249999996 + ], + [ + 3.87766355, + 43.606033849999996 + ], + [ + 3.87758665, + 43.606064149999995 + ], + [ + 3.87733845, + 43.60618145 + ], + [ + 3.87725275, + 43.606219349999996 + ], + [ + 3.87712105, + 43.60627135 + ], + [ + 3.87706225, + 43.60629325 + ], + [ + 3.87669335, + 43.606430749999994 + ], + [ + 3.8763785499999996, + 43.606545249999996 + ], + [ + 3.87619365, + 43.60661055 + ], + [ + 3.87599795, + 43.60667515 + ], + [ + 3.87584865, + 43.60672015 + ], + [ + 3.87578605, + 43.606742149999995 + ], + [ + 3.8757647499999996, + 43.60674965 + ], + [ + 3.87568295, + 43.606780449999995 + ], + [ + 3.87550625, + 43.60686335 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8957856499999997, + 43.60001465 + ], + [ + 3.8957335499999997, + 43.59998365 + ], + [ + 3.89563755, + 43.599925649999996 + ], + [ + 3.89555895, + 43.59987905 + ], + [ + 3.89553065, + 43.599859349999996 + ], + [ + 3.8955058499999997, + 43.59984215 + ], + [ + 3.89540035, + 43.59977945 + ], + [ + 3.8953118499999997, + 43.59971365 + ], + [ + 3.8949330499999997, + 43.599413049999995 + ], + [ + 3.89474775, + 43.59926365 + ], + [ + 3.89472185, + 43.599242749999995 + ], + [ + 3.89466255, + 43.59918485 + ], + [ + 3.89462645, + 43.599129049999995 + ], + [ + 3.89461565, + 43.59908125 + ], + [ + 3.89461195, + 43.59906625 + ], + [ + 3.89461405, + 43.59897785 + ], + [ + 3.89463735, + 43.59891185 + ], + [ + 3.89470515, + 43.59882975 + ], + [ + 3.89506265, + 43.598484649999996 + ], + [ + 3.8951194499999997, + 43.59842975 + ], + [ + 3.89519395, + 43.59835775 + ], + [ + 3.89521995, + 43.59832855 + ], + [ + 3.8952442499999997, + 43.59830115 + ], + [ + 3.89528585, + 43.598254149999995 + ], + [ + 3.89530485, + 43.59822645 + ], + [ + 3.8953343499999997, + 43.59818325 + ], + [ + 3.89540415, + 43.59806845 + ], + [ + 3.89544865, + 43.597995149999996 + ], + [ + 3.89562915, + 43.59767065 + ], + [ + 3.89572905, + 43.597459549999996 + ], + [ + 3.89578665, + 43.59732775 + ], + [ + 3.8959940499999997, + 43.59685905 + ], + [ + 3.89602055, + 43.59679535 + ], + [ + 3.89604925, + 43.59673015 + ], + [ + 3.89616655, + 43.596463449999995 + ], + [ + 3.89621415, + 43.59635505 + ], + [ + 3.8964094499999997, + 43.59592615 + ], + [ + 3.89654685, + 43.595605049999996 + ], + [ + 3.89656045, + 43.59555405 + ], + [ + 3.89658675, + 43.59548845 + ], + [ + 3.89661635, + 43.59539855 + ], + [ + 3.89667585, + 43.595187949999996 + ], + [ + 3.8967337499999997, + 43.59504525 + ], + [ + 3.8969296499999997, + 43.59464405 + ], + [ + 3.8970655499999998, + 43.59435035 + ], + [ + 3.89721685, + 43.594023449999995 + ], + [ + 3.89724375, + 43.59393505 + ], + [ + 3.89724185, + 43.59387475 + ], + [ + 3.8972153499999997, + 43.59380785 + ], + [ + 3.89720145, + 43.593791249999995 + ], + [ + 3.8971103499999997, + 43.59372045 + ], + [ + 3.89705995, + 43.593698249999996 + ], + [ + 3.89660965, + 43.593601449999994 + ], + [ + 3.89646435, + 43.59358225 + ], + [ + 3.89631165, + 43.59356895 + ], + [ + 3.89582155, + 43.593541249999994 + ], + [ + 3.89551445, + 43.59352285 + ], + [ + 3.89538495, + 43.593504949999996 + ], + [ + 3.89528045, + 43.59347345 + ], + [ + 3.89496005, + 43.59335265 + ], + [ + 3.8932433499999997, + 43.592634749999995 + ], + [ + 3.8930186499999997, + 43.59253725 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87725815, + 43.596154649999995 + ], + [ + 3.87698705, + 43.596288949999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89472375, + 43.60483265 + ], + [ + 3.89476785, + 43.60472245 + ], + [ + 3.89478655, + 43.604669349999995 + ], + [ + 3.8948003499999997, + 43.60462125 + ], + [ + 3.89481005, + 43.60458415 + ], + [ + 3.89482165, + 43.60453355 + ], + [ + 3.89483595, + 43.604458449999996 + ], + [ + 3.89484415, + 43.604417049999995 + ], + [ + 3.89490165, + 43.60409985 + ], + [ + 3.8949183499999998, + 43.604016449999996 + ], + [ + 3.89492505, + 43.603985949999995 + ], + [ + 3.8949300499999997, + 43.60396085 + ], + [ + 3.89494125, + 43.60388655 + ], + [ + 3.8949452499999997, + 43.60381405 + ], + [ + 3.89494455, + 43.60377765 + ], + [ + 3.89493805, + 43.60370835 + ], + [ + 3.89493255, + 43.603672949999996 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88228575, + 43.61437625 + ], + [ + 3.88242145, + 43.61442375 + ], + [ + 3.8825129499999997, + 43.614459149999995 + ], + [ + 3.8825843499999997, + 43.61448865 + ], + [ + 3.88264775, + 43.61451285 + ], + [ + 3.88281885, + 43.61458585 + ], + [ + 3.88285395, + 43.614598449999995 + ], + [ + 3.88290595, + 43.61461515 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89581525, + 43.60030885 + ], + [ + 3.89583645, + 43.60028115 + ], + [ + 3.89585555, + 43.60025055 + ], + [ + 3.89586525, + 43.60022975 + ], + [ + 3.8958719499999996, + 43.60019785 + ], + [ + 3.89587105, + 43.60014285 + ], + [ + 3.89585065, + 43.60009295 + ], + [ + 3.89581805, + 43.60004555 + ], + [ + 3.8957856499999997, + 43.60001465 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89493255, + 43.603672949999996 + ], + [ + 3.89492315, + 43.60363535 + ], + [ + 3.89490775, + 43.603591949999995 + ], + [ + 3.8948228499999997, + 43.603395549999995 + ], + [ + 3.89478115, + 43.60328455 + ], + [ + 3.89476255, + 43.603236949999996 + ], + [ + 3.8947284499999997, + 43.603149949999995 + ], + [ + 3.8946695499999997, + 43.602941949999995 + ], + [ + 3.8946288499999997, + 43.60276785 + ], + [ + 3.89457695, + 43.602561349999995 + ], + [ + 3.8945669499999997, + 43.60251485 + ], + [ + 3.89456245, + 43.602471349999995 + ], + [ + 3.89456115, + 43.60241205 + ], + [ + 3.89457065, + 43.602342449999995 + ], + [ + 3.89459905, + 43.60227455 + ], + [ + 3.89462985, + 43.60221865 + ], + [ + 3.89467775, + 43.602168049999996 + ], + [ + 3.8949989499999997, + 43.60179495 + ], + [ + 3.89502765, + 43.60176025 + ], + [ + 3.89505345, + 43.601711449999996 + ], + [ + 3.89507295, + 43.601673149999996 + ], + [ + 3.89509605, + 43.60159745 + ], + [ + 3.8951161499999998, + 43.601403749999996 + ], + [ + 3.89513535, + 43.601200649999996 + ], + [ + 3.89514505, + 43.60112005 + ], + [ + 3.89515345, + 43.60106105 + ], + [ + 3.8951742499999997, + 43.60099965 + ], + [ + 3.8952076499999997, + 43.600937349999995 + ], + [ + 3.89523705, + 43.60089915 + ], + [ + 3.89527945, + 43.600852749999994 + ], + [ + 3.89535245, + 43.60077755 + ], + [ + 3.89554865, + 43.60057515 + ], + [ + 3.89571165, + 43.60040875 + ], + [ + 3.89581525, + 43.60030885 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89221565, + 43.61484695 + ], + [ + 3.89231135, + 43.614813749999996 + ], + [ + 3.8925060499999997, + 43.614746149999995 + ], + [ + 3.89265355, + 43.614690149999994 + ], + [ + 3.89272655, + 43.61465945 + ], + [ + 3.8927950499999997, + 43.614619049999995 + ], + [ + 3.8931119499999998, + 43.61441205 + ], + [ + 3.8933456499999997, + 43.61425635 + ], + [ + 3.8935613499999997, + 43.61410565 + ], + [ + 3.8937960499999997, + 43.613915649999996 + ], + [ + 3.89407385, + 43.613685849999996 + ], + [ + 3.89421795, + 43.61357495 + ], + [ + 3.89436245, + 43.613473649999996 + ], + [ + 3.89473695, + 43.61324165 + ], + [ + 3.8948421499999997, + 43.61317545 + ], + [ + 3.89490175, + 43.61313175 + ], + [ + 3.8949566499999997, + 43.61306665 + ], + [ + 3.89498285, + 43.61301805 + ], + [ + 3.8949921499999998, + 43.612975649999996 + ], + [ + 3.89499745, + 43.61294485 + ], + [ + 3.8949995499999996, + 43.61290595 + ], + [ + 3.89499295, + 43.61285555 + ], + [ + 3.8949102499999997, + 43.61251485 + ], + [ + 3.8948624499999998, + 43.61232425 + ], + [ + 3.89484685, + 43.612261849999996 + ], + [ + 3.8948008499999998, + 43.61203115 + ], + [ + 3.89479215, + 43.611981449999995 + ], + [ + 3.89475035, + 43.61173925 + ], + [ + 3.89470775, + 43.61152315 + ], + [ + 3.89454345, + 43.61072495 + ], + [ + 3.89449525, + 43.61049775 + ], + [ + 3.89448765, + 43.61045195 + ], + [ + 3.8944277499999997, + 43.61015595 + ], + [ + 3.8943393499999996, + 43.60959025 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87698705, + 43.596288949999995 + ], + [ + 3.8767936499999998, + 43.59640465 + ], + [ + 3.87661475, + 43.59652475 + ], + [ + 3.87649135, + 43.596613049999995 + ], + [ + 3.87639625, + 43.596691449999994 + ], + [ + 3.87637625, + 43.59671505 + ], + [ + 3.87633055, + 43.596777249999995 + ], + [ + 3.8762843499999997, + 43.59686625 + ], + [ + 3.8762686499999996, + 43.59689435 + ], + [ + 3.8761988499999998, + 43.597033149999994 + ], + [ + 3.87610625, + 43.59721665 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8801212499999997, + 43.60462965 + ], + [ + 3.88016555, + 43.60468505 + ], + [ + 3.88020955, + 43.60474015 + ], + [ + 3.88026355, + 43.60481495 + ], + [ + 3.88027525, + 43.60485135 + ], + [ + 3.88027985, + 43.604891249999994 + ], + [ + 3.8802781499999996, + 43.604919249999995 + ], + [ + 3.88026985, + 43.604957049999996 + ], + [ + 3.8802631499999998, + 43.60496995 + ], + [ + 3.88025945, + 43.604977049999995 + ], + [ + 3.88024295, + 43.605006249999995 + ], + [ + 3.8802211499999997, + 43.60503145 + ], + [ + 3.88020195, + 43.60504905 + ], + [ + 3.8801709499999997, + 43.60507205 + ], + [ + 3.88015985, + 43.605076249999996 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87610625, + 43.59721665 + ], + [ + 3.87607505, + 43.59730525 + ], + [ + 3.87604455, + 43.597387749999996 + ], + [ + 3.87599005, + 43.59748165 + ], + [ + 3.8759467499999998, + 43.59756555 + ], + [ + 3.8759104499999997, + 43.597643649999995 + ], + [ + 3.87588945, + 43.59771385 + ], + [ + 3.8758119499999997, + 43.59810365 + ], + [ + 3.87571325, + 43.59909765 + ], + [ + 3.87568125, + 43.599424549999995 + ], + [ + 3.87565775, + 43.599648949999995 + ], + [ + 3.8756466499999997, + 43.599758349999995 + ], + [ + 3.87563625, + 43.59985675 + ], + [ + 3.87562895, + 43.59991195 + ], + [ + 3.87556805, + 43.60026135 + ], + [ + 3.87541155, + 43.601215749999994 + ], + [ + 3.8754038499999997, + 43.60126535 + ], + [ + 3.87521015, + 43.60239805 + ], + [ + 3.8752054499999997, + 43.60242535 + ], + [ + 3.8752013499999998, + 43.60244915 + ], + [ + 3.87512005, + 43.60283525 + ], + [ + 3.87510675, + 43.60290895 + ], + [ + 3.8751077499999997, + 43.60298915 + ], + [ + 3.87511715, + 43.60302115 + ], + [ + 3.87513835, + 43.60304855 + ], + [ + 3.8751574499999997, + 43.60307595 + ], + [ + 3.87518685, + 43.603100149999996 + ], + [ + 3.87521995, + 43.603119449999994 + ], + [ + 3.87525605, + 43.60314045 + ], + [ + 3.8752901499999997, + 43.603151249999996 + ], + [ + 3.87534125, + 43.603164449999994 + ], + [ + 3.8753907499999998, + 43.603171149999994 + ], + [ + 3.87544415, + 43.60317135 + ], + [ + 3.87555185, + 43.603162149999996 + ], + [ + 3.8757069499999997, + 43.603139649999996 + ], + [ + 3.8761855499999998, + 43.603070249999995 + ], + [ + 3.87642205, + 43.60303665 + ], + [ + 3.87661035, + 43.60300975 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87225025, + 43.611017149999995 + ], + [ + 3.87226775, + 43.61116465 + ], + [ + 3.8722762499999996, + 43.61122045 + ], + [ + 3.87227845, + 43.61124165 + ], + [ + 3.87228475, + 43.61127635 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87337915, + 43.608294449999995 + ], + [ + 3.87326645, + 43.608399049999996 + ], + [ + 3.87313035, + 43.60853745 + ], + [ + 3.87308765, + 43.608593049999996 + ], + [ + 3.8730639499999997, + 43.608623949999995 + ], + [ + 3.87297645, + 43.608767549999996 + ], + [ + 3.87267385, + 43.60933735 + ], + [ + 3.87253405, + 43.60962325 + ], + [ + 3.87245135, + 43.60979525 + ], + [ + 3.87243425, + 43.609830849999994 + ], + [ + 3.87237695, + 43.60998815 + ], + [ + 3.87235685, + 43.61006395 + ], + [ + 3.87232705, + 43.61018675 + ], + [ + 3.87231995, + 43.61021245 + ], + [ + 3.87231645, + 43.61023445 + ], + [ + 3.87228945, + 43.61040325 + ], + [ + 3.87226335, + 43.610574549999995 + ], + [ + 3.87225495, + 43.61065855 + ], + [ + 3.8722498499999998, + 43.61073535 + ], + [ + 3.87224385, + 43.61085215 + ], + [ + 3.8722458499999997, + 43.61094025 + ], + [ + 3.87225025, + 43.611017149999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87238875, + 43.61204005 + ], + [ + 3.87239105, + 43.61205425 + ], + [ + 3.87239295, + 43.61206585 + ], + [ + 3.8724094499999997, + 43.61218725 + ], + [ + 3.87242675, + 43.61228685 + ], + [ + 3.87243025, + 43.61230715 + ], + [ + 3.87244265, + 43.61235525 + ], + [ + 3.8724604499999997, + 43.61240015 + ], + [ + 3.8724946499999997, + 43.612475849999996 + ], + [ + 3.8725622499999997, + 43.61259715 + ], + [ + 3.87260795, + 43.61267905 + ], + [ + 3.87275665, + 43.612946449999995 + ], + [ + 3.87350395, + 43.614312149999996 + ], + [ + 3.87378695, + 43.61482135 + ], + [ + 3.87394535, + 43.61512695 + ], + [ + 3.87403525, + 43.61530045 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89218765, + 43.592057849999996 + ], + [ + 3.8921443499999997, + 43.592028049999996 + ], + [ + 3.89175155, + 43.591744649999995 + ], + [ + 3.8916165499999997, + 43.59162815 + ], + [ + 3.8914857499999997, + 43.59150785 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8930186499999997, + 43.59253725 + ], + [ + 3.89292645, + 43.59249715 + ], + [ + 3.8927497499999997, + 43.59240155 + ], + [ + 3.89255035, + 43.59228555 + ], + [ + 3.89227635, + 43.59211455 + ], + [ + 3.89224385, + 43.592094249999995 + ], + [ + 3.89218765, + 43.592057849999996 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8914857499999997, + 43.59150785 + ], + [ + 3.8913791499999997, + 43.591420049999996 + ], + [ + 3.89135465, + 43.59140385 + ], + [ + 3.89134185, + 43.59139485 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89096515, + 43.59113515 + ], + [ + 3.89060695, + 43.59088705 + ], + [ + 3.89049525, + 43.590813749999995 + ], + [ + 3.89044385, + 43.59077755 + ], + [ + 3.89036785, + 43.59072645 + ], + [ + 3.8902676499999997, + 43.59064245 + ], + [ + 3.8901762499999997, + 43.590532849999995 + ], + [ + 3.8901442499999996, + 43.590458749999996 + ], + [ + 3.89012975, + 43.59036405 + ], + [ + 3.8901349499999998, + 43.59008035 + ], + [ + 3.89011495, + 43.59000365 + ], + [ + 3.89006925, + 43.58993475 + ], + [ + 3.8899963499999997, + 43.58985715 + ], + [ + 3.88982695, + 43.58974395 + ], + [ + 3.8895461499999997, + 43.589584949999995 + ], + [ + 3.88946805, + 43.58955365 + ], + [ + 3.88943915, + 43.589545349999995 + ], + [ + 3.8893806499999997, + 43.58953125 + ], + [ + 3.8893396499999997, + 43.58952585 + ], + [ + 3.88929555, + 43.589521749999996 + ], + [ + 3.88922965, + 43.589518049999995 + ], + [ + 3.88911755, + 43.589518649999995 + ], + [ + 3.8880914499999997, + 43.58959545 + ], + [ + 3.88787365, + 43.58961685 + ], + [ + 3.8877207499999997, + 43.58963005 + ], + [ + 3.8876415499999997, + 43.589638949999994 + ], + [ + 3.8875196499999998, + 43.58966545 + ], + [ + 3.88736625, + 43.58970135 + ], + [ + 3.88634485, + 43.589961349999996 + ], + [ + 3.88600215, + 43.59006515 + ], + [ + 3.8857059499999997, + 43.590165049999996 + ], + [ + 3.88555845, + 43.59021715 + ], + [ + 3.88545855, + 43.59025465 + ], + [ + 3.88499655, + 43.59042365 + ], + [ + 3.88479595, + 43.590501149999994 + ], + [ + 3.88453515, + 43.59059935 + ], + [ + 3.8844156499999998, + 43.59064485 + ], + [ + 3.8833066499999997, + 43.591066649999995 + ], + [ + 3.88321425, + 43.591097649999995 + ], + [ + 3.8823026499999997, + 43.59143915 + ], + [ + 3.88220135, + 43.59147545 + ], + [ + 3.8816823499999997, + 43.59166835 + ], + [ + 3.88149855, + 43.59173465 + ], + [ + 3.88108145, + 43.59187085 + ], + [ + 3.88087845, + 43.59194065 + ], + [ + 3.88080985, + 43.59196505 + ], + [ + 3.88075645, + 43.59199065 + ], + [ + 3.88042145, + 43.59216445 + ], + [ + 3.88025645, + 43.59224955 + ], + [ + 3.88000415, + 43.59238765 + ], + [ + 3.87994965, + 43.59243015 + ], + [ + 3.87991265, + 43.592459149999996 + ], + [ + 3.8798705499999997, + 43.592503549999996 + ], + [ + 3.8798132499999998, + 43.59258095 + ], + [ + 3.87973615, + 43.592680349999995 + ], + [ + 3.87956345, + 43.592936449999996 + ], + [ + 3.87955585, + 43.59295495 + ], + [ + 3.8795259499999997, + 43.593027549999995 + ], + [ + 3.8795101499999998, + 43.59306575 + ], + [ + 3.87948895, + 43.59314575 + ], + [ + 3.8793669499999996, + 43.59368565 + ], + [ + 3.8792982499999997, + 43.59394495 + ], + [ + 3.87924975, + 43.59407735 + ], + [ + 3.8792420499999998, + 43.59409245 + ], + [ + 3.8791918499999998, + 43.594195549999995 + ], + [ + 3.8791430499999997, + 43.59429485 + ], + [ + 3.8790684499999997, + 43.59442205 + ], + [ + 3.87891925, + 43.59462465 + ], + [ + 3.8786236499999998, + 43.594911249999996 + ], + [ + 3.87834085, + 43.59517355 + ], + [ + 3.8783013499999996, + 43.59521015 + ], + [ + 3.87818125, + 43.59532635 + ], + [ + 3.8776525499999996, + 43.595863449999996 + ], + [ + 3.87749885, + 43.596009949999996 + ], + [ + 3.8774183499999997, + 43.59606625 + ], + [ + 3.87725815, + 43.596154649999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87527945, + 43.61521175 + ], + [ + 3.87561485, + 43.61514365 + ], + [ + 3.87607795, + 43.615049649999996 + ], + [ + 3.87683885, + 43.614895149999995 + ], + [ + 3.87737425, + 43.61480175 + ], + [ + 3.87749035, + 43.61477865 + ], + [ + 3.8776031499999997, + 43.614769249999995 + ], + [ + 3.87774815, + 43.614759049999996 + ], + [ + 3.87820695, + 43.61473115 + ], + [ + 3.87883115, + 43.61469315 + ], + [ + 3.87900995, + 43.614682249999994 + ], + [ + 3.8794784499999997, + 43.614654949999995 + ], + [ + 3.87966725, + 43.614633149999996 + ], + [ + 3.8798200499999997, + 43.61459645 + ], + [ + 3.8799698499999997, + 43.61453665 + ], + [ + 3.8802132499999997, + 43.61438585 + ], + [ + 3.8804319499999997, + 43.61421755 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87403525, + 43.61530045 + ], + [ + 3.87405905, + 43.615328049999995 + ], + [ + 3.87407675, + 43.615343849999995 + ], + [ + 3.87410285, + 43.61536005 + ], + [ + 3.87413205, + 43.61537255 + ], + [ + 3.87416545, + 43.61538315 + ], + [ + 3.8742003499999997, + 43.615388349999996 + ], + [ + 3.87423505, + 43.61539105 + ], + [ + 3.87428305, + 43.61539175 + ], + [ + 3.8743550499999997, + 43.615388849999995 + ], + [ + 3.87441485, + 43.615381049999996 + ], + [ + 3.87450825, + 43.61536365 + ], + [ + 3.8746570499999997, + 43.61533505 + ], + [ + 3.87493935, + 43.61528075 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89134185, + 43.59139485 + ], + [ + 3.89132205, + 43.59138115 + ], + [ + 3.89113835, + 43.591254549999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88189605, + 43.61423575 + ], + [ + 3.8819607499999997, + 43.614259849999996 + ], + [ + 3.8820969499999998, + 43.614309549999994 + ], + [ + 3.88214035, + 43.614325349999994 + ], + [ + 3.88218695, + 43.61434165 + ], + [ + 3.88228575, + 43.61437625 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88167905, + 43.61415505 + ], + [ + 3.88189605, + 43.61423575 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8751913499999997, + 43.60701045 + ], + [ + 3.8748353499999997, + 43.607176849999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87550625, + 43.60686335 + ], + [ + 3.8751913499999997, + 43.60701045 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8748353499999997, + 43.607176849999995 + ], + [ + 3.87453445, + 43.607324649999995 + ], + [ + 3.87446425, + 43.60735655 + ], + [ + 3.87437625, + 43.607400549999994 + ], + [ + 3.87430545, + 43.60744795 + ], + [ + 3.8742410499999997, + 43.60750605 + ], + [ + 3.8741444499999997, + 43.607592149999995 + ], + [ + 3.87388065, + 43.60783345 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87388065, + 43.60783345 + ], + [ + 3.87354745, + 43.608132149999996 + ], + [ + 3.87346615, + 43.60821075 + ], + [ + 3.87340145, + 43.608273749999995 + ], + [ + 3.87337915, + 43.608294449999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87228475, + 43.61127635 + ], + [ + 3.8722930499999997, + 43.61133065 + ], + [ + 3.87232675, + 43.61160615 + ], + [ + 3.8723521499999998, + 43.61180305 + ], + [ + 3.87237325, + 43.61194405 + ], + [ + 3.87238875, + 43.61204005 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87493935, + 43.61528075 + ], + [ + 3.87527945, + 43.61521175 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88290595, + 43.61461515 + ], + [ + 3.8829821499999997, + 43.61463095 + ], + [ + 3.88301975, + 43.61463815 + ], + [ + 3.88305425, + 43.614642749999994 + ], + [ + 3.88308675, + 43.61464445 + ], + [ + 3.88311715, + 43.61464445 + ], + [ + 3.8831807499999997, + 43.61463965 + ], + [ + 3.8832184499999998, + 43.61463055 + ], + [ + 3.88327065, + 43.614610649999996 + ], + [ + 3.88331335, + 43.61458855 + ], + [ + 3.88350945, + 43.614450149999996 + ], + [ + 3.8836211499999997, + 43.61437185 + ], + [ + 3.88366495, + 43.61434165 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88366495, + 43.61434165 + ], + [ + 3.88368785, + 43.61432585 + ], + [ + 3.88382665, + 43.61423015 + ], + [ + 3.8839275499999997, + 43.61417245 + ], + [ + 3.88405895, + 43.61410495 + ], + [ + 3.88425065, + 43.614026949999996 + ], + [ + 3.88443545, + 43.613966149999996 + ], + [ + 3.88464405, + 43.61391465 + ], + [ + 3.8847950499999997, + 43.613888849999995 + ], + [ + 3.8849654499999997, + 43.61386855 + ], + [ + 3.88517235, + 43.61385625 + ], + [ + 3.8854335499999997, + 43.61384645 + ], + [ + 3.8856845499999997, + 43.61383975 + ], + [ + 3.88580915, + 43.61384095 + ], + [ + 3.88596175, + 43.61385015 + ], + [ + 3.8860991499999997, + 43.61386975 + ], + [ + 3.88642565, + 43.61393735 + ], + [ + 3.88654005, + 43.613955149999995 + ], + [ + 3.88665205, + 43.61396745 + ], + [ + 3.8869894499999997, + 43.61397905 + ], + [ + 3.88715085, + 43.613981249999995 + ], + [ + 3.88725575, + 43.61398645 + ], + [ + 3.8873902499999997, + 43.61398765 + ], + [ + 3.8877240499999997, + 43.61397805 + ], + [ + 3.88785015, + 43.61397475 + ], + [ + 3.88786365, + 43.61397415 + ], + [ + 3.88833515, + 43.613954549999995 + ], + [ + 3.88858875, + 43.61394345 + ], + [ + 3.88872455, + 43.613941749999995 + ], + [ + 3.8888167499999997, + 43.61394525 + ], + [ + 3.8888623499999997, + 43.613947149999994 + ], + [ + 3.88893655, + 43.613953349999996 + ], + [ + 3.8890992499999997, + 43.613971649999996 + ], + [ + 3.8893385499999997, + 43.61399485 + ], + [ + 3.88941385, + 43.614001949999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8804319499999997, + 43.61421755 + ], + [ + 3.88047005, + 43.61418825 + ], + [ + 3.8805513499999997, + 43.61412575 + ], + [ + 3.8806352499999996, + 43.614072449999995 + ], + [ + 3.8807128499999997, + 43.614037749999994 + ], + [ + 3.88082525, + 43.61400115 + ], + [ + 3.8809388499999997, + 43.61397905 + ], + [ + 3.88105385, + 43.61397595 + ], + [ + 3.8811757499999997, + 43.61398525 + ], + [ + 3.88127105, + 43.61400635 + ], + [ + 3.88143835, + 43.614062749999995 + ], + [ + 3.88167905, + 43.61415505 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.87661035, + 43.60300975 + ], + [ + 3.8772891499999997, + 43.602912849999996 + ], + [ + 3.87740105, + 43.60289685 + ], + [ + 3.8774758499999997, + 43.60289135 + ], + [ + 3.87750755, + 43.602891549999995 + ], + [ + 3.87756615, + 43.602896449999996 + ], + [ + 3.87761385, + 43.60290525 + ], + [ + 3.87767335, + 43.602926149999995 + ], + [ + 3.87772125, + 43.60294855 + ], + [ + 3.8777567499999996, + 43.60297135 + ], + [ + 3.87781115, + 43.60301155 + ], + [ + 3.87801385, + 43.60315275 + ], + [ + 3.87872945, + 43.60365115 + ], + [ + 3.87884055, + 43.603728749999995 + ], + [ + 3.87887755, + 43.60375475 + ], + [ + 3.8790738499999997, + 43.603892249999994 + ], + [ + 3.8796629499999997, + 43.60430625 + ], + [ + 3.87985465, + 43.60444095 + ], + [ + 3.8800162499999997, + 43.604554449999995 + ], + [ + 3.88009615, + 43.604611649999995 + ], + [ + 3.8801212499999997, + 43.60462965 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8941222499999997, + 43.60871865 + ], + [ + 3.8940796499999997, + 43.60866695 + ], + [ + 3.89405775, + 43.608625249999996 + ], + [ + 3.8940397499999997, + 43.60854145 + ], + [ + 3.8940223499999997, + 43.608433049999995 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.88941385, + 43.614001949999995 + ], + [ + 3.88977755, + 43.61403625 + ], + [ + 3.89021355, + 43.61407835 + ], + [ + 3.89037715, + 43.614103549999996 + ], + [ + 3.89049225, + 43.61413425 + ], + [ + 3.8906049499999997, + 43.61417025 + ], + [ + 3.8907186499999997, + 43.614227449999994 + ], + [ + 3.89082145, + 43.614280949999994 + ], + [ + 3.89170755, + 43.61479105 + ], + [ + 3.89179495, + 43.61483525 + ], + [ + 3.8918602499999997, + 43.614861649999995 + ], + [ + 3.89191445, + 43.61487765 + ], + [ + 3.89197725, + 43.61488445 + ], + [ + 3.89201645, + 43.61488445 + ], + [ + 3.89204085, + 43.61488445 + ], + [ + 3.8920539499999998, + 43.61488345 + ], + [ + 3.8920976499999997, + 43.61488015 + ], + [ + 3.8921218499999997, + 43.61487495 + ], + [ + 3.89215525, + 43.614867849999996 + ], + [ + 3.89221565, + 43.61484695 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8943393499999996, + 43.60959025 + ], + [ + 3.89433125, + 43.60953875 + ], + [ + 3.8943238499999997, + 43.609492849999995 + ], + [ + 3.8943097499999997, + 43.60939085 + ], + [ + 3.89429775, + 43.609301949999995 + ], + [ + 3.89424145, + 43.608968049999994 + ], + [ + 3.89422785, + 43.608898249999996 + ], + [ + 3.8942098499999998, + 43.60885295 + ], + [ + 3.8941648499999997, + 43.60877025 + ], + [ + 3.8941222499999997, + 43.60871865 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.89406465, + 43.60653705 + ], + [ + 3.89407235, + 43.60648405 + ], + [ + 3.89407955, + 43.60632455 + ], + [ + 3.89408115, + 43.60628885 + ], + [ + 3.89409525, + 43.60622035 + ], + [ + 3.89411145, + 43.60614525 + ], + [ + 3.89413515, + 43.60607625 + ], + [ + 3.8942001499999996, + 43.60594285 + ], + [ + 3.89422095, + 43.60590025 + ], + [ + 3.89450145, + 43.60531055 + ], + [ + 3.89472375, + 43.60483265 + ] + ] + }, + "properties": { + "line": "Montpellier4", + "name": "4", + "color": "#4A2A15", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8748778, + 43.605290800000006 + ], + [ + 3.8749099, + 43.605300500000006 + ], + [ + 3.8749475, + 43.6053141 + ], + [ + 3.8749619, + 43.6053206 + ], + [ + 3.8749878, + 43.6053322 + ], + [ + 3.8750453, + 43.6053659 + ], + [ + 3.8750854, + 43.605400200000005 + ], + [ + 3.8751182, + 43.6054406 + ], + [ + 3.8752202000000002, + 43.605573500000006 + ], + [ + 3.8752289, + 43.6055857 + ], + [ + 3.8755917, + 43.606095200000006 + ], + [ + 3.8758183, + 43.6064134 + ], + [ + 3.8758338, + 43.606435100000006 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8758338, + 43.606435100000006 + ], + [ + 3.8758350000000004, + 43.6064364 + ], + [ + 3.8758556, + 43.6064796 + ], + [ + 3.8758636, + 43.6065283 + ], + [ + 3.8758584000000003, + 43.606565100000005 + ], + [ + 3.8758354, + 43.6066218 + ], + [ + 3.8757888, + 43.6066723 + ], + [ + 3.8757665, + 43.6066894 + ], + [ + 3.8757422000000004, + 43.6067076 + ], + [ + 3.8756885000000003, + 43.606749300000004 + ], + [ + 3.8756448000000003, + 43.6067826 + ], + [ + 3.8755895000000002, + 43.6068212 + ], + [ + 3.8755100000000002, + 43.6068671 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8722540000000003, + 43.6110209 + ], + [ + 3.8722715, + 43.611168400000004 + ], + [ + 3.87228, + 43.6112242 + ], + [ + 3.8722822000000003, + 43.6112454 + ], + [ + 3.8722885000000002, + 43.6112801 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8733829, + 43.6082982 + ], + [ + 3.8732702000000003, + 43.6084028 + ], + [ + 3.8731341, + 43.608541200000005 + ], + [ + 3.8730914000000003, + 43.6085968 + ], + [ + 3.8730677, + 43.6086277 + ], + [ + 3.8729802, + 43.6087713 + ], + [ + 3.8726776000000003, + 43.6093411 + ], + [ + 3.8725378000000004, + 43.609627 + ], + [ + 3.8724551000000003, + 43.609799 + ], + [ + 3.8724380000000003, + 43.6098346 + ], + [ + 3.8723807000000003, + 43.609991900000004 + ], + [ + 3.8723606000000004, + 43.6100677 + ], + [ + 3.8723308000000003, + 43.6101905 + ], + [ + 3.8723237000000004, + 43.6102162 + ], + [ + 3.8723202000000003, + 43.610238200000005 + ], + [ + 3.8722932, + 43.610407 + ], + [ + 3.8722671, + 43.6105783 + ], + [ + 3.8722587, + 43.6106623 + ], + [ + 3.8722536, + 43.6107391 + ], + [ + 3.8722476, + 43.610855900000004 + ], + [ + 3.8722496, + 43.610944 + ], + [ + 3.8722540000000003, + 43.6110209 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8723925, + 43.6120438 + ], + [ + 3.8723948000000004, + 43.612058000000005 + ], + [ + 3.8723967000000004, + 43.612069600000005 + ], + [ + 3.8724132, + 43.612191 + ], + [ + 3.8724305, + 43.6122906 + ], + [ + 3.872434, + 43.612310900000004 + ], + [ + 3.8724464000000003, + 43.612359000000005 + ], + [ + 3.8724642, + 43.612403900000004 + ], + [ + 3.8724984, + 43.6124796 + ], + [ + 3.872566, + 43.612600900000004 + ], + [ + 3.8726117, + 43.6126828 + ], + [ + 3.8727604, + 43.6129502 + ], + [ + 3.8735077, + 43.6143159 + ], + [ + 3.8737907000000003, + 43.614825100000004 + ], + [ + 3.8739491000000004, + 43.6151307 + ], + [ + 3.8740390000000002, + 43.615304200000004 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8740390000000002, + 43.615304200000004 + ], + [ + 3.8740613, + 43.6153433 + ], + [ + 3.8740841, + 43.6153834 + ], + [ + 3.8740956, + 43.6154018 + ], + [ + 3.8741388000000003, + 43.6154537 + ], + [ + 3.8744875000000003, + 43.615802 + ], + [ + 3.8745156, + 43.615840500000004 + ], + [ + 3.8745328000000003, + 43.6158647 + ], + [ + 3.874547, + 43.6158913 + ], + [ + 3.8745736, + 43.615963 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8745736, + 43.615963 + ], + [ + 3.874582, + 43.6159977 + ], + [ + 3.8745914000000004, + 43.616039900000004 + ], + [ + 3.8745955000000003, + 43.6160751 + ], + [ + 3.8745934, + 43.616109 + ], + [ + 3.8745876000000004, + 43.616142100000005 + ], + [ + 3.8745743000000004, + 43.616171800000004 + ], + [ + 3.8745577, + 43.6161997 + ], + [ + 3.8745503, + 43.6162085 + ], + [ + 3.8745324, + 43.6162298 + ], + [ + 3.8745022000000002, + 43.6162598 + ], + [ + 3.8744405, + 43.616304 + ], + [ + 3.8743256, + 43.616390800000005 + ], + [ + 3.8740024, + 43.616610300000005 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8237892, + 43.5929657 + ], + [ + 3.8241376000000002, + 43.5930054 + ], + [ + 3.8241723000000003, + 43.5930094 + ], + [ + 3.8244962, + 43.593046400000006 + ], + [ + 3.8245408000000003, + 43.5930522 + ], + [ + 3.8247589, + 43.5930667 + ], + [ + 3.8249346, + 43.5930732 + ], + [ + 3.8251134, + 43.593068 + ], + [ + 3.8252676, + 43.5930595 + ], + [ + 3.8253528, + 43.593050500000004 + ], + [ + 3.8258353, + 43.5929815 + ], + [ + 3.8262034000000003, + 43.592928900000004 + ], + [ + 3.8277617000000004, + 43.592733800000005 + ], + [ + 3.8280156, + 43.592714300000004 + ], + [ + 3.828167, + 43.5927146 + ], + [ + 3.8283560000000003, + 43.592723 + ], + [ + 3.8285572, + 43.5927474 + ], + [ + 3.8287075, + 43.592772000000004 + ], + [ + 3.8288765000000002, + 43.592812 + ], + [ + 3.8290300000000004, + 43.592857300000006 + ], + [ + 3.8290556000000002, + 43.5928649 + ], + [ + 3.8297977000000003, + 43.593107200000006 + ], + [ + 3.8299072, + 43.5931416 + ], + [ + 3.830069, + 43.5931943 + ], + [ + 3.8301922000000004, + 43.5932344 + ], + [ + 3.8303503, + 43.5932783 + ], + [ + 3.8305191, + 43.5933158 + ], + [ + 3.8307302, + 43.5933573 + ], + [ + 3.8316569, + 43.5935441 + ], + [ + 3.8328549, + 43.593784500000005 + ], + [ + 3.8337551000000003, + 43.5939345 + ], + [ + 3.8342254000000002, + 43.5940128 + ], + [ + 3.8346968, + 43.594109700000004 + ], + [ + 3.8349699000000004, + 43.594182100000005 + ], + [ + 3.8351742, + 43.5942681 + ], + [ + 3.8352908, + 43.594328700000005 + ], + [ + 3.8354721, + 43.594427200000005 + ], + [ + 3.83555, + 43.5944881 + ], + [ + 3.8356028, + 43.5945339 + ], + [ + 3.8357164000000004, + 43.5946348 + ], + [ + 3.8358064, + 43.5947278 + ], + [ + 3.8360067, + 43.594991300000004 + ], + [ + 3.8360214000000004, + 43.5950134 + ], + [ + 3.8362071, + 43.5952933 + ], + [ + 3.8363225, + 43.595465600000004 + ], + [ + 3.8363419000000003, + 43.5954908 + ], + [ + 3.8363595000000004, + 43.595513700000005 + ], + [ + 3.8364108000000003, + 43.595561000000004 + ], + [ + 3.8364781000000003, + 43.5955898 + ], + [ + 3.8365047000000003, + 43.5955943 + ], + [ + 3.8365752, + 43.5956063 + ], + [ + 3.8366478, + 43.5956062 + ], + [ + 3.8367012000000003, + 43.5955974 + ], + [ + 3.8367277, + 43.5955864 + ], + [ + 3.8369205, + 43.5955061 + ], + [ + 3.8370178000000004, + 43.5954649 + ], + [ + 3.8371008, + 43.5954287 + ], + [ + 3.8374443, + 43.595279000000005 + ], + [ + 3.8375732, + 43.595218800000005 + ], + [ + 3.8376466000000002, + 43.595179200000004 + ], + [ + 3.8376710000000003, + 43.5951661 + ], + [ + 3.8377386, + 43.5951237 + ], + [ + 3.837781, + 43.595083800000005 + ], + [ + 3.8378037000000003, + 43.595062500000004 + ], + [ + 3.8378508, + 43.5950067 + ], + [ + 3.8379395, + 43.594838100000004 + ], + [ + 3.8379480000000004, + 43.5948219 + ], + [ + 3.8379953, + 43.5947556 + ], + [ + 3.8381034, + 43.5946548 + ], + [ + 3.8381670000000003, + 43.5946097 + ], + [ + 3.8381890000000003, + 43.5945941 + ], + [ + 3.8383162, + 43.5945276 + ], + [ + 3.838388, + 43.5944931 + ], + [ + 3.8385147, + 43.594458700000004 + ], + [ + 3.8386516, + 43.59443 + ], + [ + 3.8387329, + 43.5944203 + ], + [ + 3.8387558, + 43.594417500000006 + ], + [ + 3.8387768, + 43.594415000000005 + ], + [ + 3.8388744000000004, + 43.594412600000005 + ], + [ + 3.839001, + 43.5944191 + ], + [ + 3.839105, + 43.5944341 + ], + [ + 3.8391978, + 43.594458800000005 + ], + [ + 3.8394194, + 43.5945259 + ], + [ + 3.8394343, + 43.594530400000004 + ], + [ + 3.8396003000000003, + 43.5945825 + ], + [ + 3.8396824, + 43.5945971 + ], + [ + 3.8397525000000003, + 43.5946042 + ], + [ + 3.8398303, + 43.5945893 + ], + [ + 3.83991, + 43.5945637 + ], + [ + 3.8400135, + 43.5945164 + ], + [ + 3.8400939000000003, + 43.594445 + ], + [ + 3.8404005000000003, + 43.594171800000005 + ], + [ + 3.8405427000000003, + 43.5940418 + ], + [ + 3.8405746, + 43.594015500000005 + ], + [ + 3.8406015, + 43.593995400000004 + ], + [ + 3.8406221, + 43.5939843 + ], + [ + 3.8406894, + 43.5939482 + ], + [ + 3.8407576000000003, + 43.593920700000005 + ], + [ + 3.8408565, + 43.5939017 + ], + [ + 3.8410153, + 43.5938713 + ], + [ + 3.8425047, + 43.5935879 + ], + [ + 3.8433051000000003, + 43.593429400000005 + ], + [ + 3.8434156, + 43.5934077 + ], + [ + 3.8435123, + 43.5933888 + ], + [ + 3.8436454, + 43.593359 + ], + [ + 3.8436632, + 43.593353300000004 + ], + [ + 3.8437298, + 43.593332000000004 + ], + [ + 3.8437595, + 43.5933204 + ], + [ + 3.8437859000000003, + 43.593310100000004 + ], + [ + 3.8438457, + 43.5932758 + ], + [ + 3.8438811, + 43.593236700000006 + ], + [ + 3.8439102000000003, + 43.5931937 + ], + [ + 3.8446561000000004, + 43.592177400000004 + ], + [ + 3.8446989, + 43.5921192 + ], + [ + 3.8447715000000002, + 43.592020500000004 + ], + [ + 3.8448364, + 43.591932400000005 + ], + [ + 3.8451914, + 43.591422 + ], + [ + 3.8453262, + 43.5912485 + ], + [ + 3.8453864, + 43.5911902 + ], + [ + 3.8454173000000003, + 43.591174 + ], + [ + 3.8454962000000004, + 43.5911367 + ], + [ + 3.8455472, + 43.5911241 + ], + [ + 3.8456319000000003, + 43.5911173 + ], + [ + 3.8457506, + 43.5911252 + ], + [ + 3.8462924000000003, + 43.5912019 + ], + [ + 3.8468524, + 43.5912811 + ], + [ + 3.8471511, + 43.5913247 + ], + [ + 3.8478753, + 43.591433800000004 + ], + [ + 3.8483344, + 43.591502000000006 + ], + [ + 3.8487916, + 43.5915703 + ], + [ + 3.849184, + 43.5916289 + ], + [ + 3.8493543000000003, + 43.5916544 + ], + [ + 3.8494990000000002, + 43.5916889 + ], + [ + 3.8496391, + 43.5917365 + ], + [ + 3.8508405000000003, + 43.5921256 + ], + [ + 3.8515078000000003, + 43.592338600000005 + ], + [ + 3.8515624, + 43.5923667 + ], + [ + 3.8515982, + 43.5923832 + ], + [ + 3.8516653, + 43.5924227 + ], + [ + 3.8517341000000003, + 43.5924777 + ], + [ + 3.8517751000000002, + 43.5925196 + ], + [ + 3.8518201000000003, + 43.5925859 + ], + [ + 3.8518531, + 43.592664500000005 + ], + [ + 3.8518632000000004, + 43.592738100000005 + ], + [ + 3.8518558, + 43.5928064 + ], + [ + 3.8518361000000003, + 43.592874 + ], + [ + 3.8518086, + 43.5929365 + ], + [ + 3.8517518, + 43.593004900000004 + ], + [ + 3.8516804000000002, + 43.5930763 + ], + [ + 3.8516626, + 43.5930922 + ], + [ + 3.8515224000000003, + 43.5932176 + ], + [ + 3.85151, + 43.5932289 + ], + [ + 3.8514942000000003, + 43.593243300000005 + ], + [ + 3.8512675, + 43.5934498 + ], + [ + 3.851159, + 43.5935409 + ], + [ + 3.8509230000000003, + 43.5937463 + ], + [ + 3.8508157, + 43.5938311 + ], + [ + 3.8507317000000003, + 43.5938892 + ], + [ + 3.8502886000000003, + 43.594187600000005 + ], + [ + 3.8502593000000003, + 43.594210100000005 + ], + [ + 3.8502210000000003, + 43.5942395 + ], + [ + 3.8501637, + 43.59429 + ], + [ + 3.8501234, + 43.5943257 + ], + [ + 3.850105, + 43.5943692 + ], + [ + 3.8500922, + 43.5944148 + ], + [ + 3.8500876, + 43.5944596 + ], + [ + 3.8500892, + 43.594509300000006 + ], + [ + 3.8500897000000003, + 43.5945401 + ], + [ + 3.8500838, + 43.5946668 + ], + [ + 3.8500622, + 43.5947466 + ], + [ + 3.8500531000000002, + 43.5947678 + ], + [ + 3.8500264, + 43.594830300000005 + ], + [ + 3.8498967, + 43.595151200000004 + ], + [ + 3.8498119, + 43.5953748 + ], + [ + 3.8497032, + 43.5956416 + ], + [ + 3.8495651, + 43.5959614 + ], + [ + 3.8494651, + 43.5961908 + ], + [ + 3.8494116000000003, + 43.596298600000004 + ], + [ + 3.8493889, + 43.5963408 + ], + [ + 3.8493562000000003, + 43.5964015 + ], + [ + 3.849251, + 43.596583 + ], + [ + 3.8491564, + 43.5967496 + ], + [ + 3.8491029, + 43.596836700000004 + ], + [ + 3.8490891, + 43.5968591 + ], + [ + 3.8490273000000004, + 43.5969567 + ], + [ + 3.8489982, + 43.5969963 + ], + [ + 3.848964, + 43.5970426 + ], + [ + 3.8489121, + 43.5970997 + ], + [ + 3.848827, + 43.5971959 + ], + [ + 3.8483949, + 43.5976522 + ], + [ + 3.8482798000000003, + 43.5977748 + ], + [ + 3.848056, + 43.598024300000006 + ], + [ + 3.8479428, + 43.5981606 + ], + [ + 3.8479103, + 43.5982202 + ], + [ + 3.8478928000000003, + 43.5982524 + ], + [ + 3.847871, + 43.5982922 + ], + [ + 3.8478433, + 43.598361600000004 + ], + [ + 3.8478369000000003, + 43.5983777 + ], + [ + 3.8475454, + 43.599227 + ], + [ + 3.8475225, + 43.599294900000004 + ], + [ + 3.8475111, + 43.5993615 + ], + [ + 3.8475095, + 43.5994267 + ], + [ + 3.8475129000000003, + 43.599471900000005 + ], + [ + 3.8475173000000003, + 43.5995061 + ], + [ + 3.8475330000000003, + 43.599567 + ], + [ + 3.8475728, + 43.5996882 + ], + [ + 3.8476212000000003, + 43.599764900000004 + ], + [ + 3.8476821, + 43.5998323 + ], + [ + 3.8477596000000003, + 43.5998961 + ], + [ + 3.8478231000000003, + 43.599944400000005 + ], + [ + 3.847888, + 43.5999934 + ], + [ + 3.8479518, + 43.6000394 + ], + [ + 3.8479832000000003, + 43.600061000000004 + ], + [ + 3.8480914, + 43.6001338 + ], + [ + 3.8482269000000002, + 43.6002226 + ], + [ + 3.8483394, + 43.6002828 + ], + [ + 3.8484688, + 43.6003423 + ], + [ + 3.8486538, + 43.6004323 + ], + [ + 3.8490238000000003, + 43.600579700000004 + ], + [ + 3.8495406, + 43.6007851 + ], + [ + 3.8496861, + 43.600839 + ], + [ + 3.8498421, + 43.6008974 + ], + [ + 3.8499344, + 43.6009195 + ], + [ + 3.8500082, + 43.6009351 + ], + [ + 3.8501776000000003, + 43.600966 + ], + [ + 3.850254, + 43.6009807 + ], + [ + 3.8504451, + 43.6010148 + ], + [ + 3.8506179, + 43.6010525 + ], + [ + 3.8517372, + 43.601391500000005 + ], + [ + 3.8519182, + 43.601460100000004 + ], + [ + 3.8520232, + 43.6015061 + ], + [ + 3.8523103, + 43.601632 + ], + [ + 3.8542402, + 43.602479200000005 + ], + [ + 3.8547948, + 43.6027227 + ], + [ + 3.8549269, + 43.602780100000004 + ], + [ + 3.8550602, + 43.6028376 + ], + [ + 3.8551230000000003, + 43.6028559 + ], + [ + 3.8551972, + 43.602863 + ], + [ + 3.8552310000000003, + 43.6028663 + ], + [ + 3.8553072000000004, + 43.6028602 + ], + [ + 3.8553677, + 43.6028437 + ], + [ + 3.8554728000000003, + 43.6027847 + ], + [ + 3.8555691000000003, + 43.6027263 + ], + [ + 3.8557962000000003, + 43.602585000000005 + ], + [ + 3.8559958, + 43.602465 + ], + [ + 3.8564302, + 43.602203700000004 + ], + [ + 3.8568922000000003, + 43.6019237 + ], + [ + 3.8569782000000004, + 43.601888100000004 + ], + [ + 3.8570909, + 43.6018519 + ], + [ + 3.8571805, + 43.601823100000004 + ], + [ + 3.8572526000000003, + 43.6017972 + ], + [ + 3.8573378000000003, + 43.601758100000005 + ], + [ + 3.8574354, + 43.601703 + ], + [ + 3.8582589, + 43.6010617 + ], + [ + 3.8586919, + 43.600729900000005 + ], + [ + 3.8590662, + 43.6004627 + ], + [ + 3.8591351, + 43.600419300000006 + ], + [ + 3.8592325, + 43.600384000000005 + ], + [ + 3.8593266, + 43.600363200000004 + ], + [ + 3.8593610000000003, + 43.600361500000005 + ], + [ + 3.8594545, + 43.600370000000005 + ], + [ + 3.8595047, + 43.6003843 + ], + [ + 3.8595719, + 43.600408 + ], + [ + 3.8596451000000003, + 43.6004536 + ], + [ + 3.859715, + 43.6005186 + ], + [ + 3.8599564, + 43.600754300000006 + ], + [ + 3.860126, + 43.6009359 + ], + [ + 3.8601869, + 43.6010063 + ], + [ + 3.860369, + 43.6012432 + ], + [ + 3.860443, + 43.601354900000004 + ], + [ + 3.8607255, + 43.6017671 + ], + [ + 3.8607635, + 43.6018216 + ], + [ + 3.8608176000000003, + 43.601870000000005 + ], + [ + 3.8608811000000003, + 43.601907600000004 + ], + [ + 3.8609548, + 43.6019364 + ], + [ + 3.8610207, + 43.601950300000006 + ], + [ + 3.8610787, + 43.601952100000005 + ], + [ + 3.8611453, + 43.601947100000004 + ], + [ + 3.8611753, + 43.601941100000005 + ], + [ + 3.861202, + 43.601934400000005 + ], + [ + 3.8612781000000003, + 43.6019141 + ], + [ + 3.8614399, + 43.60186 + ], + [ + 3.8615001, + 43.601838 + ], + [ + 3.8618771, + 43.601705800000005 + ], + [ + 3.8619162, + 43.601692 + ], + [ + 3.8622982, + 43.601562300000005 + ], + [ + 3.8624228, + 43.601518600000006 + ], + [ + 3.8625713000000004, + 43.6014688 + ], + [ + 3.8626623, + 43.6014433 + ], + [ + 3.8627325000000003, + 43.6014287 + ], + [ + 3.8627562, + 43.6014238 + ], + [ + 3.8628248000000003, + 43.6014178 + ], + [ + 3.8629086000000004, + 43.6014065 + ], + [ + 3.8632946, + 43.6013703 + ], + [ + 3.8638591, + 43.601317300000005 + ], + [ + 3.8646199, + 43.6012459 + ], + [ + 3.8660106, + 43.601104400000004 + ], + [ + 3.8668547, + 43.601013300000005 + ], + [ + 3.8672125, + 43.600977 + ], + [ + 3.8673899, + 43.600962100000004 + ], + [ + 3.8674526, + 43.6009681 + ], + [ + 3.8674711, + 43.6009717 + ], + [ + 3.867519, + 43.600981100000006 + ], + [ + 3.8675762000000002, + 43.600995700000006 + ], + [ + 3.8676373, + 43.601025 + ], + [ + 3.8677701, + 43.601104400000004 + ], + [ + 3.8678066, + 43.601126300000004 + ], + [ + 3.867839, + 43.601145700000004 + ], + [ + 3.8678614000000002, + 43.601159100000004 + ], + [ + 3.8682684000000003, + 43.6014117 + ], + [ + 3.8683387000000002, + 43.601453400000004 + ], + [ + 3.8684031, + 43.6014861 + ], + [ + 3.8684507000000004, + 43.6015004 + ], + [ + 3.8685131000000004, + 43.6015105 + ], + [ + 3.8686504000000004, + 43.6015218 + ], + [ + 3.8686931, + 43.601525300000006 + ], + [ + 3.8687154, + 43.601529500000005 + ], + [ + 3.8688011, + 43.6015455 + ], + [ + 3.8688404000000003, + 43.601557500000006 + ], + [ + 3.8688647, + 43.6015676 + ], + [ + 3.8689974, + 43.601635200000004 + ], + [ + 3.8692615000000004, + 43.6017792 + ], + [ + 3.8696875, + 43.6020114 + ], + [ + 3.870096, + 43.602234100000004 + ], + [ + 3.8702460000000003, + 43.6023159 + ], + [ + 3.8704851000000002, + 43.602446400000005 + ], + [ + 3.870547, + 43.6024801 + ], + [ + 3.8710161000000003, + 43.6027355 + ], + [ + 3.8712699, + 43.6028736 + ], + [ + 3.8713420000000003, + 43.6029129 + ], + [ + 3.871862, + 43.6032109 + ], + [ + 3.8724026, + 43.603509800000005 + ], + [ + 3.8724591000000004, + 43.6035423 + ], + [ + 3.8726756, + 43.6036659 + ], + [ + 3.8727467, + 43.6037066 + ], + [ + 3.8728954, + 43.6037899 + ], + [ + 3.8729896000000004, + 43.6038494 + ], + [ + 3.873098, + 43.603920800000004 + ], + [ + 3.8731778, + 43.6039821 + ], + [ + 3.8733816, + 43.604142700000004 + ], + [ + 3.8734102000000004, + 43.604165300000005 + ], + [ + 3.8734167000000004, + 43.604170800000006 + ], + [ + 3.8734593, + 43.6042064 + ], + [ + 3.8736383, + 43.604356200000005 + ], + [ + 3.8737681000000004, + 43.6044649 + ], + [ + 3.8741280000000002, + 43.604745400000006 + ], + [ + 3.8745394, + 43.6050801 + ], + [ + 3.8745527, + 43.6050909 + ], + [ + 3.8745873, + 43.605119 + ], + [ + 3.87466, + 43.605178200000005 + ], + [ + 3.874731, + 43.6052302 + ], + [ + 3.8747554, + 43.6052437 + ], + [ + 3.8747788, + 43.605256600000004 + ], + [ + 3.8748207000000003, + 43.605274200000004 + ], + [ + 3.8748778, + 43.605290800000006 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8751951, + 43.6070142 + ], + [ + 3.8748391, + 43.6071806 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8663867, + 43.6268206 + ], + [ + 3.8668826000000003, + 43.6271938 + ], + [ + 3.8674496, + 43.6276154 + ], + [ + 3.8676176, + 43.627738900000004 + ], + [ + 3.8682051, + 43.6281813 + ], + [ + 3.8683006, + 43.6282537 + ], + [ + 3.8683424, + 43.6282854 + ], + [ + 3.8691433, + 43.628853 + ], + [ + 3.8692961, + 43.6289664 + ], + [ + 3.8696431000000002, + 43.6292324 + ], + [ + 3.8697382, + 43.629305900000006 + ], + [ + 3.8697946, + 43.6293607 + ], + [ + 3.8698292000000003, + 43.6294036 + ], + [ + 3.8698531000000003, + 43.6294543 + ], + [ + 3.8698561000000002, + 43.6294765 + ], + [ + 3.8698628000000004, + 43.6295249 + ], + [ + 3.8698552, + 43.629578 + ], + [ + 3.8698396, + 43.629623300000006 + ], + [ + 3.8698032, + 43.6296909 + ], + [ + 3.8695398, + 43.6301617 + ], + [ + 3.8694924, + 43.630250100000005 + ], + [ + 3.8694012, + 43.630421600000005 + ], + [ + 3.8693287, + 43.630557800000005 + ], + [ + 3.8691435000000003, + 43.6308639 + ], + [ + 3.8683586, + 43.6319644 + ], + [ + 3.8683015000000003, + 43.6320421 + ], + [ + 3.8681899, + 43.6321938 + ], + [ + 3.8680326000000003, + 43.632455300000004 + ], + [ + 3.8679472, + 43.632661500000005 + ], + [ + 3.8678926000000002, + 43.632888300000005 + ], + [ + 3.8678619000000003, + 43.633081100000005 + ], + [ + 3.867861, + 43.6333262 + ], + [ + 3.8678976, + 43.6335689 + ], + [ + 3.8679181000000002, + 43.6336917 + ], + [ + 3.8679411000000004, + 43.633830100000004 + ], + [ + 3.8680029, + 43.6341953 + ], + [ + 3.8680542, + 43.6345167 + ], + [ + 3.8680744000000002, + 43.6345943 + ], + [ + 3.8681054, + 43.6347131 + ], + [ + 3.8681253, + 43.6347893 + ], + [ + 3.8681428, + 43.634872200000004 + ], + [ + 3.8682239000000003, + 43.6352313 + ], + [ + 3.8682393000000004, + 43.6353397 + ], + [ + 3.8682345000000002, + 43.6354449 + ], + [ + 3.8682218, + 43.6355121 + ], + [ + 3.8681816, + 43.635616500000005 + ], + [ + 3.8681465000000004, + 43.6356746 + ], + [ + 3.8680807, + 43.635774600000005 + ], + [ + 3.8678655, + 43.6360225 + ], + [ + 3.8677664000000003, + 43.6361367 + ], + [ + 3.8675344000000003, + 43.6363916 + ], + [ + 3.8673517, + 43.636592300000004 + ], + [ + 3.8670194, + 43.6369759 + ], + [ + 3.8668596, + 43.6371533 + ], + [ + 3.8668067, + 43.637212000000005 + ], + [ + 3.8667479, + 43.6372773 + ], + [ + 3.8657747000000002, + 43.638360600000006 + ], + [ + 3.8656840000000003, + 43.638460800000004 + ], + [ + 3.8656368000000003, + 43.638513800000005 + ], + [ + 3.8656277, + 43.6385239 + ], + [ + 3.8655392, + 43.6386273 + ], + [ + 3.8650415000000002, + 43.6391884 + ], + [ + 3.8648023, + 43.6394709 + ], + [ + 3.864512, + 43.639799000000004 + ], + [ + 3.8643928, + 43.6399252 + ], + [ + 3.8641039000000004, + 43.64025 + ], + [ + 3.8639904, + 43.6403776 + ], + [ + 3.8639766, + 43.6403928 + ], + [ + 3.8636811, + 43.640717200000005 + ], + [ + 3.8635488000000002, + 43.6408598 + ], + [ + 3.8634629, + 43.6409455 + ], + [ + 3.8633889000000003, + 43.6410064 + ], + [ + 3.8633246000000003, + 43.641056 + ], + [ + 3.8632327, + 43.641112400000004 + ], + [ + 3.8631424, + 43.641160500000005 + ], + [ + 3.8629905, + 43.6412175 + ], + [ + 3.8628850000000003, + 43.641252300000005 + ], + [ + 3.8626948000000003, + 43.6412959 + ], + [ + 3.8624264000000004, + 43.641355000000004 + ], + [ + 3.8622909, + 43.641396900000004 + ], + [ + 3.8622333, + 43.6414163 + ], + [ + 3.8621623, + 43.641444 + ], + [ + 3.8621211, + 43.6414601 + ], + [ + 3.8620153000000004, + 43.6415208 + ], + [ + 3.8618977, + 43.6416235 + ], + [ + 3.86147, + 43.642110800000005 + ], + [ + 3.8613231000000003, + 43.6422882 + ], + [ + 3.8610324, + 43.6426819 + ], + [ + 3.8607547, + 43.6430522 + ], + [ + 3.8606657, + 43.643194400000006 + ], + [ + 3.8606415000000003, + 43.643243000000005 + ], + [ + 3.8606287000000004, + 43.6432766 + ], + [ + 3.8606138000000003, + 43.6433156 + ], + [ + 3.8605947, + 43.643388300000005 + ], + [ + 3.860593, + 43.6434792 + ], + [ + 3.8606076000000003, + 43.643582300000006 + ], + [ + 3.8606447000000004, + 43.643698900000004 + ], + [ + 3.8606800000000003, + 43.643765300000005 + ], + [ + 3.8607339, + 43.6438469 + ], + [ + 3.8607923, + 43.6439096 + ], + [ + 3.8608621000000003, + 43.6439748 + ], + [ + 3.8613424000000003, + 43.644406000000004 + ], + [ + 3.8616803, + 43.6447061 + ], + [ + 3.8617433, + 43.6447651 + ], + [ + 3.8617967, + 43.6448004 + ], + [ + 3.8618671, + 43.644834200000005 + ], + [ + 3.8619484, + 43.644852300000004 + ], + [ + 3.8620177, + 43.6448587 + ], + [ + 3.8621195000000004, + 43.644862100000005 + ], + [ + 3.8621854, + 43.6448559 + ], + [ + 3.8622636000000004, + 43.6448386 + ], + [ + 3.8623570000000003, + 43.6447979 + ], + [ + 3.8624488, + 43.6447483 + ], + [ + 3.8628186, + 43.6445213 + ], + [ + 3.8628933, + 43.644479000000004 + ], + [ + 3.8632787, + 43.6442609 + ], + [ + 3.8634863000000004, + 43.6441725 + ], + [ + 3.8637084, + 43.6441272 + ], + [ + 3.8638858000000003, + 43.6441084 + ], + [ + 3.8640663, + 43.6441144 + ], + [ + 3.8642935, + 43.6441322 + ], + [ + 3.8664624, + 43.644365900000004 + ], + [ + 3.8668522000000003, + 43.644422000000006 + ], + [ + 3.8681955, + 43.644627500000006 + ], + [ + 3.8682916, + 43.6446564 + ], + [ + 3.8683646, + 43.6446945 + ], + [ + 3.8683795, + 43.6447073 + ], + [ + 3.8684257, + 43.6447487 + ], + [ + 3.8684406, + 43.6447651 + ], + [ + 3.868469, + 43.6447963 + ], + [ + 3.8684808, + 43.6448144 + ], + [ + 3.8685008, + 43.6448454 + ], + [ + 3.8685213000000003, + 43.6449312 + ], + [ + 3.8685317, + 43.6450862 + ], + [ + 3.8685365000000003, + 43.6451572 + ], + [ + 3.8685516, + 43.6453286 + ], + [ + 3.8685722, + 43.6456657 + ], + [ + 3.8686096, + 43.646205900000005 + ], + [ + 3.8686261, + 43.6464306 + ], + [ + 3.8686472000000003, + 43.6467137 + ], + [ + 3.8686498, + 43.6467285 + ], + [ + 3.8686747, + 43.646871600000004 + ], + [ + 3.8687343000000003, + 43.647154900000004 + ], + [ + 3.8687713, + 43.647491900000006 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8728813, + 43.617082 + ], + [ + 3.8726812, + 43.6171439 + ], + [ + 3.8723757, + 43.6172361 + ], + [ + 3.871937, + 43.617384300000005 + ], + [ + 3.8717292000000003, + 43.6174684 + ], + [ + 3.8715253, + 43.6175493 + ], + [ + 3.871414, + 43.6175814 + ], + [ + 3.8713135000000003, + 43.617591700000006 + ], + [ + 3.8712035, + 43.617596500000005 + ], + [ + 3.8708589, + 43.6175548 + ], + [ + 3.8704848000000003, + 43.617510100000004 + ], + [ + 3.8703694, + 43.617510100000004 + ], + [ + 3.8702467, + 43.6175295 + ], + [ + 3.8700769000000004, + 43.617577100000005 + ], + [ + 3.8698852, + 43.6176429 + ], + [ + 3.8697964000000002, + 43.617686500000005 + ], + [ + 3.8697274000000004, + 43.6177349 + ], + [ + 3.8696693, + 43.617784900000004 + ], + [ + 3.8696058, + 43.6178777 + ], + [ + 3.8695685, + 43.617964300000004 + ], + [ + 3.869561, + 43.618044100000006 + ], + [ + 3.8695338, + 43.6187662 + ], + [ + 3.8695261000000003, + 43.6190877 + ], + [ + 3.8695231000000003, + 43.6192147 + ], + [ + 3.8695192, + 43.619447 + ], + [ + 3.8695151, + 43.6194861 + ], + [ + 3.8695071000000003, + 43.619561600000004 + ], + [ + 3.8694762000000003, + 43.6196975 + ], + [ + 3.8694610000000003, + 43.6197431 + ], + [ + 3.8694381, + 43.619800600000005 + ], + [ + 3.8694036, + 43.619887500000004 + ], + [ + 3.8690538, + 43.620645100000004 + ], + [ + 3.8686074, + 43.6216102 + ], + [ + 3.8683181, + 43.622235800000006 + ], + [ + 3.8682284, + 43.622431500000005 + ], + [ + 3.8681135, + 43.6226846 + ], + [ + 3.8680384, + 43.6228544 + ], + [ + 3.8680122000000003, + 43.622914200000004 + ], + [ + 3.8677005, + 43.6235774 + ], + [ + 3.8671869, + 43.624700100000005 + ], + [ + 3.8668033, + 43.625502100000006 + ], + [ + 3.8664694, + 43.626257 + ], + [ + 3.8664412, + 43.626319200000005 + ], + [ + 3.8664277, + 43.6263489 + ], + [ + 3.8663942000000002, + 43.6264113 + ], + [ + 3.8663894, + 43.6264163 + ], + [ + 3.8663808, + 43.6264357 + ], + [ + 3.8663634, + 43.6264685 + ], + [ + 3.8663497000000002, + 43.6264942 + ], + [ + 3.86633, + 43.6265311 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8688077, + 43.6480483 + ], + [ + 3.868824, + 43.6483128 + ], + [ + 3.8688207, + 43.648391600000004 + ], + [ + 3.8688048000000004, + 43.648448900000005 + ], + [ + 3.8687819, + 43.6485062 + ], + [ + 3.8687455, + 43.6485624 + ], + [ + 3.8686985000000003, + 43.64862 + ], + [ + 3.8686227, + 43.648679900000005 + ], + [ + 3.8684817000000002, + 43.6487805 + ], + [ + 3.8684318, + 43.648821500000004 + ], + [ + 3.8684027000000003, + 43.6488454 + ], + [ + 3.8675257000000003, + 43.6495675 + ], + [ + 3.8668497, + 43.650115500000005 + ], + [ + 3.8667636, + 43.650185400000005 + ], + [ + 3.8666745000000002, + 43.6502647 + ], + [ + 3.8666279, + 43.650306300000004 + ], + [ + 3.8665664, + 43.650365400000005 + ], + [ + 3.8665146000000004, + 43.6504306 + ], + [ + 3.8664678, + 43.650512 + ], + [ + 3.8664473000000004, + 43.650561700000004 + ], + [ + 3.8664327000000003, + 43.6506053 + ], + [ + 3.8664128, + 43.650654 + ], + [ + 3.8663972, + 43.6507085 + ], + [ + 3.8663835, + 43.6507766 + ], + [ + 3.8663796, + 43.6508904 + ], + [ + 3.8663865, + 43.651012800000004 + ], + [ + 3.8664064000000002, + 43.6510942 + ], + [ + 3.8664367, + 43.6511614 + ], + [ + 3.8664817, + 43.651219000000005 + ], + [ + 3.8665188, + 43.651249 + ], + [ + 3.8665507000000003, + 43.651268800000004 + ], + [ + 3.8665903000000004, + 43.6512875 + ], + [ + 3.8666892, + 43.6513184 + ], + [ + 3.8668327000000002, + 43.6513336 + ], + [ + 3.8668784, + 43.6513384 + ], + [ + 3.8676343, + 43.651411700000004 + ], + [ + 3.8686906000000003, + 43.651528500000005 + ], + [ + 3.8690321, + 43.651571000000004 + ], + [ + 3.8691788000000003, + 43.651592 + ], + [ + 3.8693150000000003, + 43.6516207 + ], + [ + 3.8694775000000003, + 43.6516572 + ], + [ + 3.8696418, + 43.6517077 + ], + [ + 3.8699669, + 43.651819 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8687713, + 43.647491900000006 + ], + [ + 3.8688077, + 43.6480483 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.86633, + 43.6265311 + ], + [ + 3.8663019000000003, + 43.6266017 + ], + [ + 3.8663013, + 43.626645 + ], + [ + 3.866304, + 43.6266662 + ], + [ + 3.8663083, + 43.6266898 + ], + [ + 3.8663192, + 43.6267245 + ], + [ + 3.8663398, + 43.626767 + ], + [ + 3.8663867, + 43.6268206 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8699669, + 43.651819 + ], + [ + 3.8707679, + 43.652129300000006 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8707679, + 43.652129300000006 + ], + [ + 3.8710310000000003, + 43.652241000000004 + ], + [ + 3.8711843000000004, + 43.6523206 + ], + [ + 3.8714444, + 43.652490900000004 + ], + [ + 3.8715437, + 43.652565100000004 + ], + [ + 3.8716917, + 43.652692300000005 + ], + [ + 3.8719196, + 43.652889300000005 + ], + [ + 3.8721300000000003, + 43.6530823 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8755100000000002, + 43.6068671 + ], + [ + 3.8751951, + 43.6070142 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8748391, + 43.6071806 + ], + [ + 3.8745382000000004, + 43.6073284 + ], + [ + 3.8744680000000002, + 43.6073603 + ], + [ + 3.8743800000000004, + 43.6074043 + ], + [ + 3.8743092000000003, + 43.607451700000006 + ], + [ + 3.8742448, + 43.6075098 + ], + [ + 3.8741482, + 43.6075959 + ], + [ + 3.8738844, + 43.607837200000006 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8738844, + 43.607837200000006 + ], + [ + 3.8735512, + 43.6081359 + ], + [ + 3.8734699000000004, + 43.6082145 + ], + [ + 3.8734052, + 43.6082775 + ], + [ + 3.8733829, + 43.6082982 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8722885000000002, + 43.6112801 + ], + [ + 3.8722968, + 43.611334400000004 + ], + [ + 3.8723305000000003, + 43.611609900000005 + ], + [ + 3.8723559, + 43.611806800000004 + ], + [ + 3.872377, + 43.6119478 + ], + [ + 3.8723925, + 43.6120438 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8740024, + 43.616610300000005 + ], + [ + 3.8738969, + 43.6166886 + ], + [ + 3.8737664, + 43.6167821 + ], + [ + 3.8736631000000004, + 43.616836400000004 + ], + [ + 3.8734289, + 43.6169166 + ], + [ + 3.8733039000000002, + 43.6169549 + ], + [ + 3.8732904, + 43.6169591 + ], + [ + 3.8731655000000003, + 43.616994000000005 + ], + [ + 3.8728813, + 43.617082 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 3.8721300000000003, + 43.6530823 + ], + [ + 3.8723939, + 43.653300200000004 + ], + [ + 3.8729120000000004, + 43.6537499 + ] + ] + }, + "properties": { + "line": "Montpellier5", + "name": "5", + "color": "#2D7431", + "order": 5 + } + } + ] +} \ No newline at end of file diff --git a/src/app/(game)/montpellier/data/source.json b/src/app/(game)/montpellier/data/source.json new file mode 100644 index 0000000..4280c6d --- /dev/null +++ b/src/app/(game)/montpellier/data/source.json @@ -0,0 +1,23423 @@ +{ + "lines": [ + { + "lineId": "Montpellier1", + "relations": [ + { + "relationId": 4107815, + "stationsNodeIds": [ + 3124678227, + 3123039811, + 3123033194, + 2577355086, + 2577355001, + 3123093632, + 2577354970, + 2998606177, + 2577880057, + 2998606178, + 317829490, + 60025069, + 126601804, + 60025062, + 61103414, + 60025046, + 60025037, + 60939764, + 61094962, + 3118564775, + 265410397, + 267847611, + 267929741, + 60722751, + 60732076, + 281177110, + 317827455, + 317827428, + 2575611355, + 2575611364, + 11891384903 + ], + "routesWayIds": [ + 945619870, + 943565392, + 943565390, + 307216119, + 307216118, + 249886216, + 945623776, + 251526449, + 251526438, + 14863807, + 1076443335, + 1355949083, + 1355949081, + 828839267, + 137513631, + 1320961341, + 1355949077, + 428791854, + 1355955061, + 866211993, + 866211992, + 137514637, + 1355955051, + 307174470, + 23182158, + 8656948, + 137514636, + 36990727, + 36990728, + 306880153, + 1355955046, + 221515328, + 1355955048, + 36990729, + 1436534803, + 36990730, + 1436534809, + 129895555, + 131318643, + 249986121, + 306902181, + 26586647, + 1355961352, + 129895553, + 1355961351, + 251321229, + 251321232, + 307558605, + 251321234, + 945619874, + 251321235, + 945619873, + 251321233, + 1109804313, + 1177879700, + 1109804312 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "Montpellier2", + "relations": [ + { + "relationId": 4107772, + "stationsNodeIds": [ + 231578457, + 231578469, + 231578480, + 279249812, + 231578510, + 281259065, + 38460665, + 231532087, + 281259064, + 231529652, + 350510758, + 279556951, + 2305432922, + 2305432920, + 70972317, + 224660817, + 148694939, + 74943027, + 119409072, + 1547454806, + 1547447278, + 1547443496, + 1547440719, + 945144528, + 308735605, + 308734763, + 368004431, + 308531607 + ], + "routesWayIds": [ + 26571315, + 307543712, + 140595735, + 140595736, + 1328261311, + 307543714, + 307543713, + 302968557, + 302968556, + 303838626, + 303838628, + 307352593, + 1355963985, + 1328261310, + 307543710, + 140596677, + 145128870, + 291587751, + 1355955064, + 221515306, + 221515300, + 1355955049, + 221515305, + 221515304, + 307174472, + 307174471, + 1355955050, + 131318451, + 11408508, + 471443534, + 11408509, + 141374026, + 141374027, + 141373407, + 141373409, + 141373104, + 141373107, + 141372661, + 141372657, + 141371856, + 141371853, + 84175129, + 84175121, + 763216020 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "Montpellier3", + "relations": [ + { + "relationId": 4107865, + "stationsNodeIds": [ + 3124627566, + 1508371591, + 3119254608, + 3119255452, + 1508371563, + 13185641080, + 1680783342, + 3124627562, + 2565144095, + 3124636922, + 3122456986, + 3122456979, + 1680783345, + 1506452485, + 1675121448, + 3123033195, + 3123033218, + 2575419253, + 2575419127, + 3123039812, + 2575419210, + 2575419150, + 2575419232, + 2564554951, + 3124664054, + 3124664051 + ], + "routesWayIds": [ + 267625663, + 307563690, + 307563694, + 1355961342, + 1355961343, + 307563692, + 267625666, + 307563699, + 267625665, + 208440297, + 137218048, + 953002549, + 953002550, + 307563695, + 1355961346, + 307563689, + 306902186, + 306902184, + 249986124, + 251318920, + 307541333, + 1436534815, + 307541337, + 1315691431, + 1315691433, + 1315691429, + 306880152, + 1355955044, + 221515322, + 306880148, + 221515309, + 96702556, + 96702558, + 1355949069, + 1076443331, + 428791860, + 1355949070, + 730290431, + 199477545, + 1355949066, + 249886214, + 1355949064, + 1097912325, + 1097912324, + 1355949063, + 1355949062, + 565478434, + 1355949060, + 1355949058, + 1355949055, + 1355949054, + 1355949052, + 1355949050, + 1355949049, + 1355949048, + 1355949046, + 1355949044, + 1355949043, + 1355949041, + 943565382, + 1355949040, + 943565385, + 943565386, + 943565389, + 249886206, + 137070557, + 943565393, + 154099145, + 943565394, + 943565395, + 943565396, + 249856384, + 943565397, + 249856367, + 943565398, + 943565399, + 943565400, + 307563704 + ] + } + ], + "extraStationNodeIds": [ + 3127567487, + 1680725835 + ], + "extraRouteWayIds": [ + 307563698, + 208440292, + 307170833, + 208440295, + 208440294, + 307563691, + 1355961353, + 1355961354, + 307563703, + 1355961355, + 1355961356, + 208440293, + 1355961357, + 306902199 + ] + }, + { + "lineId": "Montpellier4", + "relations": [ + { + "relationId": 1852816, + "stationsNodeIds": [ + 1506442726, + 1934914135, + 2564674976, + 350510758, + 279556951, + 1680783345, + 1506452485, + 4345616053, + 3728561514, + 4345616072, + 60025046, + 60025037, + 231454841, + 250677074, + 267929741, + 60722751, + 1325372165, + 1506442723, + 8719434195 + ], + "routesWayIds": [ + 376153856, + 117690839, + 145128931, + 291587751, + 1355955064, + 154987250, + 96702558, + 1355949069, + 1076443331, + 1355949072, + 1355949073, + 369020595, + 369020594, + 1355949075, + 369348842, + 428791859, + 1355949077, + 428791854, + 1355955061, + 866211993, + 866211992, + 131318450, + 1355955053, + 1355955058, + 1436534805, + 137513630, + 1436534808, + 1436534804, + 36990730, + 1436534809, + 129895555, + 131318643, + 131318616, + 117690838, + 376153833, + 376153832, + 376153855, + 764129683 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "Montpellier5", + "relations": [ + { + "relationId": 19846275, + "stationsNodeIds": [ + 11885076555, + 11885076557, + 11885076559, + 11885076561, + 11885076563, + 11885076564, + 11885076567, + 11885078569, + 11885078571, + 11885078573, + 11885078574, + 11885078576, + 4345616053, + 3728561514, + 4345616072, + 3123093686, + 3123093631, + 11808212967, + 11885078579, + 11885078581, + 11885078582, + 11885078584, + 11885078587, + 11885078589, + 11885078591 + ], + "routesWayIds": [ + 1055692905, + 251318916, + 251318924, + 1355949069, + 1076443331, + 1355949072, + 1355949073, + 369020595, + 369020594, + 1355949075, + 369348842, + 420570484, + 828839266, + 1355949082, + 1076443333, + 1271569355, + 1076443332, + 1218503412, + 1218503411, + 1274994210, + 1274994215, + 1451139999 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + } + ], + "ways": [ + { + "wayId": 1320961341, + "nodeIds": [ + 60025048, + 3118402878 + ] + }, + { + "wayId": 291587751, + "nodeIds": [ + 2565049829, + 1547389460, + 1547389514, + 1547389446, + 1547389527, + 3124581452, + 1547389524, + 1547389530, + 1357871365, + 350510758, + 3644585293, + 1547389478, + 3644584894, + 1547389452, + 1547389455, + 3644585795, + 1547389485, + 11025889286, + 5225994445, + 1547389513, + 5225994442, + 1547389552, + 1547389512, + 5225994433, + 3124581457, + 5225994435, + 1547389481, + 5225994440, + 1547389560, + 5225994438, + 1547389459, + 5225994439, + 1547389515, + 1547389491, + 5225994429, + 279556951, + 5225994428, + 12549178110 + ] + }, + { + "wayId": 945619870, + "nodeIds": [ + 3124678227, + 9907971609, + 2564254158 + ] + }, + { + "wayId": 866211992, + "nodeIds": [ + 8073906643, + 60025037, + 13386945313, + 1546423298, + 9910364740, + 60722461 + ] + }, + { + "wayId": 307543714, + "nodeIds": [ + 279555983, + 7111947907, + 1424231617, + 20933438, + 7111947920, + 7111947725, + 279249812, + 1250211504, + 231578487 + ] + }, + { + "wayId": 1109804312, + "nodeIds": [ + 10152795583, + 13235179541, + 13180988516, + 13235179536, + 13180988515, + 10152795586, + 10152795585, + 13110738797, + 10152869368, + 13110738795, + 13290628963, + 11891384903 + ] + }, + { + "wayId": 307352593, + "nodeIds": [ + 291356213, + 3124609062, + 3124609063, + 3124609064, + 1357946532, + 12549252357 + ] + }, + { + "wayId": 307174470, + "nodeIds": [ + 976921090, + 976921295, + 60722814, + 291451614, + 291451610, + 976921270 + ] + }, + { + "wayId": 221515328, + "nodeIds": [ + 12549104235, + 12549104233, + 60722785, + 12085703504, + 3118564772, + 3811884920, + 3118564773, + 3811884923, + 3118564774, + 3118564775, + 3118564776, + 3118564777, + 3118564784, + 3118564787, + 3118564790, + 3118564792, + 3118564793, + 3811884935, + 3118564794, + 3118564797, + 3811884941, + 3118564798, + 3118564796, + 3118564795, + 3118564791, + 3118564788, + 3118564786, + 3811884928, + 3118564785, + 3118564782, + 3118564780, + 3118564778, + 3118564779, + 3118564781, + 3118564783, + 1811512146, + 942738973, + 294764980, + 1811512149, + 60722773, + 942738843, + 60722772, + 942738889, + 1811512153, + 294764983, + 60722771 + ] + }, + { + "wayId": 1355955048, + "nodeIds": [ + 60722771, + 294764973, + 3118564789, + 60722770, + 9735726651, + 60722769, + 9735726647, + 265410397, + 3118564800, + 60722768, + 60722767, + 3118564801, + 60722766, + 60722765, + 60722764, + 295092708, + 12549104237 + ] + }, + { + "wayId": 307563689, + "nodeIds": [ + 3119065617, + 2572111077, + 3670803278, + 2572111076, + 3124627562, + 2572111096, + 5160569079, + 3119255449, + 2572111075, + 2572111103, + 13272459497, + 3796070191, + 2572111105, + 2565144103 + ] + }, + { + "wayId": 428791854, + "nodeIds": [ + 9779381520, + 12194289176, + 9779381522, + 61715211, + 60025047, + 5557073539, + 12090280101, + 3779650585, + 60025046, + 12549178108, + 60025045, + 3118402868, + 60025044, + 3118402863, + 60025043, + 60025042, + 12549178106 + ] + }, + { + "wayId": 1355955061, + "nodeIds": [ + 12549178106, + 6718462178, + 60025041, + 246650644, + 246650645, + 246650646, + 976921326, + 60025039, + 976921086, + 976921278, + 11586524058, + 8073906644 + ] + }, + { + "wayId": 307563690, + "nodeIds": [ + 1503531785, + 1503531780, + 3119254613, + 1503531759, + 3119254612, + 1503531766, + 1503531772, + 3119254611, + 1503531803, + 3119254610, + 1503531715 + ] + }, + { + "wayId": 84175129, + "nodeIds": [ + 979209452, + 979209565 + ] + }, + { + "wayId": 943565392, + "nodeIds": [ + 2564254158, + 2564254143, + 2564254126, + 2564254123, + 3781187311, + 2564254141, + 2564254145, + 2564254164, + 2564254190, + 2564254206, + 2564254124, + 2564254175, + 8736481257 + ] + }, + { + "wayId": 251321234, + "nodeIds": [ + 2575611364, + 3779581649, + 2575611338 + ] + }, + { + "wayId": 306902181, + "nodeIds": [ + 60732074, + 3119255445 + ] + }, + { + "wayId": 1355961342, + "nodeIds": [ + 1503531713, + 1503531776, + 1503531790, + 1503531788 + ] + }, + { + "wayId": 1177879700, + "nodeIds": [ + 10152795583, + 10942076562 + ] + }, + { + "wayId": 140595735, + "nodeIds": [ + 1248723642, + 3789446939, + 3124581126, + 541638803, + 716072709, + 1540200972, + 1994630028, + 231578469, + 3789755959, + 1540200955, + 1540200964, + 231578472 + ] + }, + { + "wayId": 471443534, + "nodeIds": [ + 1427248853, + 978690535, + 912002237, + 5329445663, + 912002214, + 5329445665, + 912002200, + 5329445668, + 74943035, + 5329445669, + 74943034, + 5329445676, + 5329445678, + 1427248788, + 74943033, + 911914488, + 1427248780, + 74943032, + 74943031, + 3911088521, + 74943030, + 10157301054, + 911914400, + 911914450, + 74943029, + 10157275286, + 911914425, + 911914478, + 911914382, + 74943028, + 6302382141, + 6568530983, + 74943027, + 6302382159, + 74943026, + 911914439, + 4023228562, + 3911089204, + 1357928567, + 74943024, + 74943023, + 911914376, + 3118402702, + 911914467, + 911914490, + 74943022, + 1357928571, + 119409072, + 5329559713, + 74943021, + 3911089220, + 715939112, + 2387184190, + 3966921614, + 3118402714, + 3118402716, + 3118402718, + 74943020, + 3118402722, + 3911089243, + 74943019, + 101499596, + 101499598, + 101499601, + 101499602, + 101499605, + 101499606 + ] + }, + { + "wayId": 141372661, + "nodeIds": [ + 1547411695, + 1547411658, + 1547411669, + 1201917566, + 308734763, + 1547411662, + 1547411694, + 308531347 + ] + }, + { + "wayId": 1076443335, + "nodeIds": [ + 3810224711, + 12576551196, + 13351269292, + 1584025859, + 2479837308, + 2479837360, + 13351269294, + 1584025856, + 60025067, + 1184212199, + 2421896321, + 9735869055, + 6843951478, + 126601804, + 12505089949, + 2421895313, + 3123093645, + 3123093644, + 9735869044, + 60025063, + 3123093643, + 2078140306, + 9735869053, + 60025062, + 9735869030, + 60025061, + 2421880159, + 60025059, + 2421880157, + 3123093642, + 221757533, + 60025058, + 2421880161, + 3123093634, + 60025057, + 221804481 + ] + }, + { + "wayId": 1355949083, + "nodeIds": [ + 221804481, + 221758027, + 3123093636, + 60025056, + 60025055, + 2421880154, + 60025053, + 5158728474, + 247386281, + 11664796809, + 12542859572, + 5158728478, + 60025052, + 3118402902, + 3118402900, + 5158728476, + 1508406332, + 61103414 + ] + }, + { + "wayId": 251321235, + "nodeIds": [ + 4592566663, + 4592566662 + ] + }, + { + "wayId": 267625663, + "nodeIds": [ + 1503531715, + 3775381431, + 2730687924, + 3775381423, + 3124627566 + ] + }, + { + "wayId": 141372657, + "nodeIds": [ + 308531347, + 979209317, + 979209720, + 308531348, + 979210056, + 979209506, + 979209058, + 979208909, + 979209599, + 979210255, + 979209971, + 979208836, + 368004427, + 979209107, + 979209513, + 979210197, + 979209014, + 368004426, + 979209076, + 308531349, + 979210087, + 979208904, + 979209965, + 979209674, + 368004428, + 979208830, + 979209790, + 979210123, + 979209225, + 979208929, + 3936092644, + 1547408265, + 1547408248, + 1547408262, + 1547408250, + 11377320193, + 1547408253, + 979209825 + ] + }, + { + "wayId": 137514636, + "nodeIds": [ + 60722803, + 2305432997, + 60722802, + 267695343, + 11881765491, + 11881765496, + 940559073, + 11881765495, + 940558839, + 940559121, + 11881765493, + 60939764, + 11881765492, + 940558775, + 940559034, + 60722798, + 940558639, + 1836141036, + 6328672241, + 940558515, + 11293148822, + 1111379585, + 2305432980, + 2305432979, + 2305432977, + 2305432966, + 61094962, + 2305432958, + 13386945308, + 11881765494, + 60722796 + ] + }, + { + "wayId": 36990728, + "nodeIds": [ + 60722793, + 3119065624 + ] + }, + { + "wayId": 129895555, + "nodeIds": [ + 2575586466, + 9910283319, + 9910283318, + 943983652, + 5130642886, + 950758548, + 5130642870, + 5130642872, + 60722751, + 5130642868, + 1325351626, + 5130642854, + 2575586325, + 1508412207, + 943983776, + 9910291743, + 1605459462 + ] + }, + { + "wayId": 1355955051, + "nodeIds": [ + 60722459, + 976921119, + 3779650579, + 9910306902, + 976921224, + 976921276, + 60722816, + 976921324, + 976921200, + 60722815, + 976921090 + ] + }, + { + "wayId": 945619873, + "nodeIds": [ + 4592566662, + 2575611363 + ] + }, + { + "wayId": 307563699, + "nodeIds": [ + 1503531779, + 1503531792, + 1503531726, + 1503531760, + 1503531761, + 1503531746, + 1503531712 + ] + }, + { + "wayId": 26571315, + "nodeIds": [ + 231578457, + 6779486451, + 1248724032, + 1540197381, + 1540197426, + 1248723735 + ] + }, + { + "wayId": 251526438, + "nodeIds": [ + 2577355052, + 9908094944, + 2577354954, + 9908094943, + 2577355036, + 9908095440, + 9908095441, + 2577354973, + 9908095442, + 2577355008, + 9908095443, + 2577355005, + 9908095444, + 2577355098, + 2577355044 + ] + }, + { + "wayId": 303838626, + "nodeIds": [ + 3082952706, + 3082952707 + ] + }, + { + "wayId": 1355955049, + "nodeIds": [ + 2305432957, + 2305432959, + 2305432922, + 2305432967, + 2305432978, + 2305432981, + 12549104238 + ] + }, + { + "wayId": 1355955050, + "nodeIds": [ + 12549104239, + 13386945312, + 3118402832, + 3118402833, + 9910306903, + 9910306904, + 3118402834, + 3118402835, + 9910306905, + 1968235815, + 3118402841 + ] + }, + { + "wayId": 221515304, + "nodeIds": [ + 12568272902, + 3122482370, + 3122482371, + 3122482372, + 3122482373, + 3122482374, + 3122482375, + 3122482376, + 3122482377, + 3122482378, + 3122482379, + 3122482380, + 3122482381, + 3122482382, + 13381100410, + 3122482383, + 3122482384, + 3122482385, + 3122482386 + ] + }, + { + "wayId": 221515305, + "nodeIds": [ + 12549104238, + 2305432982, + 2305432983, + 11881765486, + 6328625914, + 2305432984, + 2305432985, + 2305432987, + 2305432988, + 2305432989, + 11881765487, + 2305432920, + 11881765488, + 2305432990, + 2305432991, + 11881765489, + 2305432992, + 11881765490, + 11881765485, + 2305432993, + 2305432994, + 2305432996, + 12568272902 + ] + }, + { + "wayId": 307543710, + "nodeIds": [ + 3124581442, + 716381233, + 716381260, + 5427412080, + 1540210592, + 1540210599, + 1540210705, + 1540210659, + 1540210654, + 1540210685, + 1540210562, + 1540210738, + 1540210565, + 1540210661, + 1540210612, + 1540210632 + ] + }, + { + "wayId": 221515306, + "nodeIds": [ + 2575586346, + 11881765505, + 1547389461, + 1674355771, + 11881765512, + 256089087 + ] + }, + { + "wayId": 307563692, + "nodeIds": [ + 1503531774, + 3763741867, + 1503531787, + 3772060912, + 1503531756, + 1503531793, + 1503531740, + 1712551992, + 12549212248 + ] + }, + { + "wayId": 141374027, + "nodeIds": [ + 979209478, + 979210136, + 979210262, + 979209068, + 3810599026, + 979209439, + 231476084, + 979209153, + 3810599191, + 715918222, + 979209343, + 979208989, + 3810599225, + 979209995, + 979208859, + 20932810, + 3810599254, + 979209907, + 979208935, + 20932811, + 979209022, + 3810599438, + 979210057, + 1547420305, + 979208881, + 1547420303, + 1547420302 + ] + }, + { + "wayId": 306880153, + "nodeIds": [ + 3119065624, + 231389150, + 939396355, + 60722790, + 939396313, + 60722789, + 939396387, + 12177979473, + 279197046 + ] + }, + { + "wayId": 36990729, + "nodeIds": [ + 12549104237, + 294078374, + 267579446, + 12192562845, + 318880883, + 6727634707, + 267847611, + 12192562846, + 282723247, + 3119066083, + 287599053, + 12192562847, + 282904146, + 3118564799, + 13203485364 + ] + }, + { + "wayId": 23182158, + "nodeIds": [ + 976921270, + 60722813, + 976921154, + 940559064 + ] + }, + { + "wayId": 11408509, + "nodeIds": [ + 101499606, + 911914416, + 101499609, + 1166431354, + 101499613, + 1166431349, + 101499618 + ] + }, + { + "wayId": 141373104, + "nodeIds": [ + 1547417303, + 1547417292, + 1547417304, + 1547417321, + 1547417311, + 1547417306, + 1547417318, + 979209099 + ] + }, + { + "wayId": 306902184, + "nodeIds": [ + 2565144156, + 3119255448 + ] + }, + { + "wayId": 307174472, + "nodeIds": [ + 3122482386, + 3122482387, + 3122482388, + 3122482389 + ] + }, + { + "wayId": 1328261310, + "nodeIds": [ + 231578493, + 3124609065, + 3124609066, + 3124581442 + ] + }, + { + "wayId": 763216020, + "nodeIds": [ + 979209239, + 979209943, + 979209047, + 308531607 + ] + }, + { + "wayId": 137514637, + "nodeIds": [ + 60722461, + 9910325997, + 976921112, + 9910306916, + 60722460, + 9910306910, + 9910306909, + 976921318, + 976921248, + 3780633458, + 9910306908, + 976921085, + 60722459 + ] + }, + { + "wayId": 208440297, + "nodeIds": [ + 2187320606, + 1503531732, + 1503531723, + 3170723783, + 1503531752, + 1503531724, + 3170723774, + 1503531751, + 1503531767 + ] + }, + { + "wayId": 1355949081, + "nodeIds": [ + 61103414, + 13386945310, + 12549116926 + ] + }, + { + "wayId": 131318643, + "nodeIds": [ + 1605459462, + 9910291742, + 943983746, + 60722747, + 943983823, + 5540310155, + 943983757, + 943983689, + 943983665, + 60722746, + 1622220355, + 60722745, + 943983819, + 943983756, + 943983682, + 943983839, + 60722744, + 5576120248, + 944584054, + 944584041, + 944584038, + 60722742, + 60722741, + 2157558284, + 944584048, + 944584046, + 60732077, + 944584058, + 944584050, + 944584042, + 5540310153, + 60732076, + 3669341973, + 60732075 + ] + }, + { + "wayId": 8656948, + "nodeIds": [ + 940559064, + 60722811, + 976921109, + 60722810, + 13381100411, + 940558738, + 940559068, + 940558802, + 940558685, + 940558921, + 940558995, + 940558454, + 60722809, + 60722808, + 60722805, + 60722804, + 940558692, + 940558482, + 60722803 + ] + }, + { + "wayId": 251321233, + "nodeIds": [ + 2575611363, + 12181124129 + ] + }, + { + "wayId": 251321232, + "nodeIds": [ + 2575611334, + 3779584796, + 2575611333 + ] + }, + { + "wayId": 306902186, + "nodeIds": [ + 2565144103, + 2565144156 + ] + }, + { + "wayId": 1355955064, + "nodeIds": [ + 12549178110, + 11025889260, + 7727011507, + 1547389458, + 1547389475, + 1547389555, + 1547389558, + 1547389522, + 7727011506, + 1547389495, + 1547389450, + 9850561953, + 3124581458, + 1288260813, + 1547389457, + 1547389484, + 9850561951, + 7737339682, + 231529696, + 13386945306, + 2575586346 + ] + }, + { + "wayId": 1355961351, + "nodeIds": [ + 1505206380, + 946858919, + 5837142743, + 2572111098, + 3640025164, + 12549212256 + ] + }, + { + "wayId": 36990730, + "nodeIds": [ + 60722759, + 287599047, + 282727519, + 3802871041, + 3118523799, + 950758553, + 267929741, + 60722757, + 950758590, + 12772083136, + 294077546, + 12925347386, + 12772083134, + 294077548, + 12772083135, + 265393949, + 12925347367, + 60722756, + 950758557, + 8754231936 + ] + }, + { + "wayId": 1355949077, + "nodeIds": [ + 3118402878, + 9779381520 + ] + }, + { + "wayId": 953002549, + "nodeIds": [ + 1503509427, + 5348940707, + 1508371563, + 5348940708, + 1503509450, + 12078653473, + 12078653479, + 12078653493, + 5348940704, + 5348940709, + 1503509388, + 1503509425, + 13585297939, + 13185641080, + 1503509442, + 1434763569, + 1434763558 + ] + }, + { + "wayId": 267625666, + "nodeIds": [ + 1503531774, + 3119254608, + 2730687933, + 2730687934, + 2730687935, + 2730687936, + 1503531712 + ] + }, + { + "wayId": 249986121, + "nodeIds": [ + 60732075, + 946858840, + 1585115978, + 946858797, + 946858940, + 946858949, + 2565144131, + 2565144154, + 8754231938, + 60732074 + ] + }, + { + "wayId": 251321229, + "nodeIds": [ + 12549212256, + 947038439, + 3659875229, + 317827455, + 3659875830, + 13392937962, + 13392937934, + 2572111089, + 333780562, + 60732069, + 947038587, + 947038555, + 333780558, + 947038618, + 947038589, + 947038603, + 60732068, + 13392937946, + 13392937941, + 60732067, + 947038489, + 947038580, + 60732066, + 3659255837, + 317827428, + 3659255847, + 947038554, + 333780546, + 947038509, + 60732065, + 947038572, + 947038635, + 60732064, + 947038609, + 282689862, + 13435827695, + 947038466, + 947038515, + 60732063, + 3747789333, + 282689863, + 282689864, + 282691711, + 13435859102, + 947038549, + 60732062, + 947038617, + 947038606, + 333780538, + 60732061, + 11891363761, + 13334264488, + 13334264491, + 13334264490, + 13334264496, + 2575611355, + 13334264495, + 13332597126, + 3122910522, + 11891363763, + 3659120421, + 3779584816, + 2575611350, + 2575611353, + 3747845352, + 2575611356, + 2575611345, + 2575611349, + 2575611348, + 3122910524, + 3927111978, + 2575611346, + 2575611334 + ] + }, + { + "wayId": 26586647, + "nodeIds": [ + 3119255445, + 12549212257 + ] + }, + { + "wayId": 251526449, + "nodeIds": [ + 2577354951, + 3781456422, + 9909330711, + 2577355070, + 9908094945, + 2577354957, + 2577355052 + ] + }, + { + "wayId": 137218048, + "nodeIds": [ + 2187320606, + 9907924110, + 3119254621, + 3119254622, + 9907924109, + 1503509427 + ] + }, + { + "wayId": 11408508, + "nodeIds": [ + 1445506087, + 9910364737, + 3780633464, + 70972317, + 70972316, + 976921115, + 11226496595, + 976921272, + 976921070, + 520788827, + 976921139, + 976921191, + 976921309, + 520788822, + 3780633465, + 976921136, + 1992311766, + 976921185, + 976921235, + 976921304, + 70972313, + 3780633477, + 1992311770, + 3780633091, + 3780633098, + 3780633100, + 6240776771, + 976921093, + 6154243256, + 6240776778, + 976921227, + 976921163, + 976921281, + 6245739908, + 978690526, + 6245739841, + 70972306, + 6245739843, + 224660817, + 6245739837, + 978690445, + 978690565, + 3118402906, + 185531291, + 70974174, + 3118402909, + 70974173, + 978690478, + 279798507, + 978690584, + 978690532, + 70974172, + 978690482, + 978690439, + 70974171, + 70974169, + 978690554, + 978690504, + 279798576, + 70974168, + 70974167, + 978690456, + 978690575, + 1427248809, + 6252659751, + 74943046, + 6252660045, + 978690464, + 6234947781, + 978690581, + 74943043, + 978690531, + 978690480, + 6227216984, + 978690585, + 6568557590, + 148694939, + 6232816214, + 74943040, + 978690522, + 3118402667, + 4531805118, + 978690475, + 6568530984, + 978690560, + 978690509, + 4531805116, + 3118402672, + 74943039, + 1427248758, + 5329445701, + 1427248853 + ] + }, + { + "wayId": 306880152, + "nodeIds": [ + 3119065626, + 2575586414, + 2575586439, + 12177979481, + 12549104232 + ] + }, + { + "wayId": 221515300, + "nodeIds": [ + 256089087, + 2305432925, + 2305432926, + 2305432928, + 1674355773, + 2583839257, + 1119886404, + 2009776392, + 11881765515, + 4040099684, + 2305432949, + 11881765518, + 4040099678, + 11881765497, + 2305432957 + ] + }, + { + "wayId": 307543713, + "nodeIds": [ + 231578487, + 3072514362 + ] + }, + { + "wayId": 866211993, + "nodeIds": [ + 8073906644, + 8073906643 + ] + }, + { + "wayId": 141373407, + "nodeIds": [ + 1547420302, + 1547420300, + 1547420294, + 3810599637, + 1547420304, + 308735605, + 3810599961, + 1547420306, + 1547420307, + 1547420301, + 979210260 + ] + }, + { + "wayId": 1328261311, + "nodeIds": [ + 231578482, + 279555983 + ] + }, + { + "wayId": 14863807, + "nodeIds": [ + 2577355044, + 9908095445, + 9908095446, + 3123039810, + 2577355067, + 2577355031, + 3782086444, + 2577354994, + 2617397597, + 3782086688, + 2577355001, + 3782086753, + 2577355061, + 2577354986, + 3780633142, + 2577355034, + 3780633147, + 2577355011, + 3780633154, + 2577355051, + 2577354982, + 2577354948, + 2577355083, + 2577355009, + 3780638668, + 3123093632, + 3780633836, + 2577355014, + 2577354997, + 3780638672, + 2577355062, + 2577354959, + 3780633847, + 3123093683, + 2577355030, + 2577355035, + 11325348614, + 2577355038, + 2577354946, + 2577355047, + 2577355022, + 2577355020, + 2577354958, + 2577355027, + 2577354963, + 2577354960, + 3780633567, + 2577355058, + 2577355065, + 2577355072, + 11326491555, + 2577354999, + 2577355057, + 2577355075, + 2577354984, + 2577355018, + 2577355094, + 2577355097, + 2577355074, + 2577355039, + 2577355095, + 2577354970, + 2577880039, + 2577880179, + 3780657101, + 2577880032, + 2577880009, + 2577880174, + 2577880068, + 3780657100, + 2577880031, + 2577880027, + 3780657098, + 2577880021, + 2577880139, + 2577880149, + 2577880020, + 3780657094, + 2577880008, + 3780657091, + 2577880123, + 2577880007, + 2577880069, + 2577880035, + 2577880034, + 2577880024, + 2577880071, + 2577880137, + 2577880078, + 2577880011, + 2577880147, + 2577880045, + 2577880087, + 2577880050, + 3123093656, + 2577880170, + 2577880092, + 2577880055, + 2577880054, + 2577880028, + 2577880019, + 3123093652, + 2577880053, + 2577880168, + 2577880017, + 2577880012, + 2577880066, + 2577880042, + 2577880029, + 2577880041, + 2577880047, + 2577880003, + 2577880033, + 3780666548, + 2577880121, + 2998606177, + 2577880095, + 3782085919, + 3782085922, + 2577880080, + 2577880048, + 2577880018, + 3782085940, + 2577880126, + 2577880056, + 3782086360, + 6311835566, + 2577880005, + 2577880023, + 2577880159, + 3782086373, + 3782086385, + 3123093668, + 2577880176, + 3782086415, + 2577880058, + 2577880075, + 2577880037, + 2577880040, + 2577880044, + 2577880140, + 2577880064, + 2577880145, + 2577880097, + 2577880013, + 3782086502, + 3123093675, + 2577880030, + 2577880076, + 2577880144, + 2577880006, + 2577880022, + 2577880043, + 3782086616, + 2577880151, + 3782086524, + 2577880036, + 2577880052, + 3471270551, + 2577880057, + 9750164997, + 2577880046, + 2577880038, + 2577880165, + 13434369137, + 2577880132, + 2577880004, + 2577880162, + 3782085935, + 2577880130, + 6314183419, + 2577880010, + 2577880062, + 2998606178, + 6314183430, + 2577880116, + 2577880110, + 5329272322, + 2577880154, + 2577880114, + 2577880119, + 2577880142, + 2577880117, + 2577880135, + 2577880134, + 2577880099, + 2577880100, + 2577880102, + 2577880090, + 2577880082, + 2577880081, + 10004299076, + 2577880060, + 2577880112, + 2577880085, + 2577880088, + 5329272338, + 2577880014, + 3123093650, + 13434395444, + 2572267702, + 1204403017, + 2479837290, + 10157237808, + 2479837320, + 5329272336, + 2479837344, + 60025081, + 60025080, + 60025079, + 2479837318, + 6314183469, + 317829490, + 6314183474, + 3906240582, + 2479837359, + 60025077, + 3906240593, + 3906240595, + 60025076, + 3906240597, + 3906240598, + 3906240596, + 60025075, + 2479837314, + 3906240590, + 2479837322, + 3906240587, + 2479837293, + 60025074, + 60025073, + 3760544483, + 60025072, + 1424195831, + 3123093649, + 60025071, + 2479837331, + 2479837354, + 3906240571, + 12676059790, + 3906236655, + 60025069, + 12202780278, + 3810224718, + 551219175, + 3810224712, + 60025068, + 3810224711 + ] + }, + { + "wayId": 1436534803, + "nodeIds": [ + 13203485364, + 60722760, + 267850926, + 294077539, + 3802871868, + 294077540, + 294077543, + 60722759 + ] + }, + { + "wayId": 1355949069, + "nodeIds": [ + 9855106171, + 12549116920 + ] + }, + { + "wayId": 307563695, + "nodeIds": [ + 8820959333, + 1434763563, + 1434763556, + 1434763555, + 1434763564, + 1434763568, + 1503509377, + 1434763562, + 4550675219, + 1434763559, + 3119255433, + 3119255434, + 1434756299, + 3119255436, + 3119255438, + 1434756298, + 4550675086, + 1434756304, + 4550675079, + 1434756296, + 1434756310, + 12549212251 + ] + }, + { + "wayId": 36990727, + "nodeIds": [ + 60722796, + 4040099677, + 11881765520, + 938646843, + 2305432949, + 1111381197, + 938646808, + 60722795, + 266328720, + 2009776395, + 938646818, + 2007778301, + 938646824, + 11881765510, + 11881765508, + 60722793 + ] + }, + { + "wayId": 307541333, + "nodeIds": [ + 2575586441, + 9910291750, + 9910291748, + 9910291747, + 2575586370, + 2575586325, + 2575586429, + 9910291739, + 2575586321, + 5130642866, + 9910291738, + 9910291737, + 9910291736, + 2575586496, + 9910288721, + 9910291731, + 2575586538, + 943983843, + 3122456982, + 2575586542 + ] + }, + { + "wayId": 302968556, + "nodeIds": [ + 3072514363, + 3082952706 + ] + }, + { + "wayId": 141373409, + "nodeIds": [ + 979210260, + 20932818, + 979209061, + 979209431, + 979209816, + 20932819, + 979209236, + 979209665, + 20932805, + 979209955, + 979208827, + 979209426, + 979210129, + 979209813, + 979208933, + 3810253590, + 1547417295, + 3810253594, + 1547417303 + ] + }, + { + "wayId": 208440292, + "nodeIds": [ + 1503509409, + 1503509429, + 3122450432, + 1503509426, + 3122450433, + 1503509421, + 1503509354, + 3122450435, + 3122450434, + 1503509389, + 2898883484, + 1503509373, + 1503509418, + 1503509432, + 3122450431, + 1503509356, + 1503509374, + 12546993777, + 2564072316, + 1871496575, + 3122450425, + 1503509359 + ] + }, + { + "wayId": 140596677, + "nodeIds": [ + 1540210632, + 3648748786, + 1540210650, + 1540210702 + ] + }, + { + "wayId": 141371856, + "nodeIds": [ + 979209825, + 1547404564, + 1547404567, + 368004431, + 707396897 + ] + }, + { + "wayId": 96702556, + "nodeIds": [ + 2305432939, + 1119886401, + 11881765517, + 2583839267, + 2007778290, + 1119886404, + 2583839259, + 256089085, + 2305432935, + 1119886391, + 2007778291, + 11881765514, + 2583839262, + 1119886394, + 1119886395, + 11881765507, + 2575586472 + ] + }, + { + "wayId": 251318920, + "nodeIds": [ + 2565144090, + 3796070184, + 2565144095, + 5540310154, + 2565144109, + 2575591257, + 2575591261, + 2575591259, + 2575591255, + 2575591263, + 5052362439, + 2575591268, + 2575591267, + 2575591256, + 5576120249, + 2575591265, + 2575591264, + 2575586402, + 2575586539, + 2575586365, + 2575586534, + 5540310156, + 2575586504, + 2575586440, + 9910291751, + 9910291752, + 2575586441 + ] + }, + { + "wayId": 306880148, + "nodeIds": [ + 3119065627, + 13386945305, + 2305432951 + ] + }, + { + "wayId": 307216118, + "nodeIds": [ + 3123039787, + 3123039811, + 2577355099 + ] + }, + { + "wayId": 943565395, + "nodeIds": [ + 3123039758, + 1503629524, + 1505157922, + 2564061633, + 3781186881, + 2564061632, + 3781186875, + 2564061631, + 2564061771, + 2564061636, + 2564061641 + ] + }, + { + "wayId": 96702558, + "nodeIds": [ + 2575586472, + 2007778302, + 1680783345, + 1119886396, + 1119886390, + 3123033202, + 1324678102, + 1324678099, + 1616132602, + 1323744512, + 12177979463, + 1506452485, + 1692070908, + 3123033205, + 1326256111, + 3123033207, + 13306349931, + 12190070892, + 3123033208, + 9855106171 + ] + }, + { + "wayId": 249986124, + "nodeIds": [ + 3119255448, + 3119255446, + 2565144148, + 8754231941, + 2565144115, + 8754231940, + 2565144107, + 2565144101, + 8754231939, + 2565144160, + 2565144090 + ] + }, + { + "wayId": 140595736, + "nodeIds": [ + 231578472, + 1250211571, + 231578473, + 1250211308, + 1250211382, + 1248723708, + 1250211326, + 231578476, + 1250211451, + 231578477, + 1248723845, + 1248724116, + 1250211294, + 1250211361, + 231578478, + 3475801483, + 7726926817, + 231578480, + 3124581429, + 231578482 + ] + }, + { + "wayId": 267625665, + "nodeIds": [ + 1503531779, + 3119254618, + 2730687937, + 6004546179, + 2730687938, + 1802962917, + 6004546178, + 3119255452, + 7507171692, + 2730687939, + 1503531767 + ] + }, + { + "wayId": 953002550, + "nodeIds": [ + 1434763558, + 8820959333 + ] + }, + { + "wayId": 307563694, + "nodeIds": [ + 1503531785, + 1712551991, + 1508371591, + 1503531788 + ] + }, + { + "wayId": 1355949070, + "nodeIds": [ + 3123033214, + 3123033209, + 12549116921 + ] + }, + { + "wayId": 1355949062, + "nodeIds": [ + 5116912598, + 3123039729, + 2575586369, + 2575586445, + 3123039730, + 2575586546, + 5116912552, + 2575419056, + 11889083461, + 2575419053, + 3123033227, + 2575419136, + 5116912564, + 2575419253, + 5116912583, + 2575419251, + 2575419239, + 2575419134 + ] + }, + { + "wayId": 117690839, + "nodeIds": [ + 1325374749, + 1325374712 + ] + }, + { + "wayId": 1355961346, + "nodeIds": [ + 12549212251, + 3033184154, + 2515753668, + 1505206360, + 2564072360, + 12531443063, + 1505206325, + 1505206361, + 12531443062, + 3119255441, + 4063681440, + 12531443061, + 1680783342, + 12531443050, + 12531443047, + 12531443053, + 12531443055, + 12531443058, + 12531443059, + 3970979682, + 5024016040, + 1505206356, + 2442545853, + 1505206368, + 5053439339, + 1505206353, + 1505206343, + 1534312111, + 1505206371, + 1505206358, + 1505206338, + 8754231944, + 1534312144, + 8754231942, + 946858919, + 8754231943, + 3119065618, + 3119065617 + ] + }, + { + "wayId": 1355949066, + "nodeIds": [ + 2575586423, + 3421812793, + 1675121448, + 3421812799, + 2575586443, + 12549116917 + ] + }, + { + "wayId": 131318616, + "nodeIds": [ + 60732075, + 1445507885, + 1585115891, + 1445507887, + 1445507883, + 1445507884, + 1539538098, + 1539538088, + 1445507886 + ] + }, + { + "wayId": 141371853, + "nodeIds": [ + 707396897, + 979209452 + ] + }, + { + "wayId": 1355949040, + "nodeIds": [ + 12549097487, + 2564555089, + 5158657245, + 2564555098, + 5158657257, + 2564555220, + 2564555224, + 2564555210, + 2564555122, + 2564555158, + 2564554964 + ] + }, + { + "wayId": 131318451, + "nodeIds": [ + 3118402841, + 9910339419, + 9910339418, + 1445506090, + 1445506092, + 1445506088, + 9910339423, + 3118402857, + 3118402858, + 9910339426, + 3118402859, + 9910339427, + 1445506087 + ] + }, + { + "wayId": 1355949064, + "nodeIds": [ + 5445917770, + 2575586444, + 5216855955, + 2575586435, + 5216860325, + 3123033195, + 5216857717, + 9207219223, + 2575586344, + 2575586549, + 2575586525, + 2575586530, + 9237594725, + 12549116915 + ] + }, + { + "wayId": 84175121, + "nodeIds": [ + 979209565, + 979209348, + 979209749, + 979210080, + 707396746, + 979209123, + 707396751, + 979209843, + 979210170, + 979209634, + 979209950, + 979209084, + 979208994, + 979209999, + 979210119, + 979209582, + 979208862, + 707396756, + 979209938, + 979210248, + 7304119348, + 979209024, + 979209563, + 979210195, + 979208986, + 979209737, + 979208857, + 979209340, + 308531605, + 979209119, + 979209542, + 979209232, + 979209375, + 979210053, + 979208876, + 979209132, + 3124509189, + 707396765, + 979209555, + 979208982, + 979209318, + 308531606, + 9396650663, + 11469111165, + 979209716, + 3124509191, + 979209239 + ] + }, + { + "wayId": 943565386, + "nodeIds": [ + 8736481255, + 2564554923, + 2564554918, + 3150673056, + 3150673058, + 3781186744, + 3781186745, + 2564554956, + 2564554926, + 2564554961 + ] + }, + { + "wayId": 943565393, + "nodeIds": [ + 1503629465, + 1503629530 + ] + }, + { + "wayId": 249856384, + "nodeIds": [ + 2564061676, + 2564061595 + ] + }, + { + "wayId": 145128870, + "nodeIds": [ + 1540210702, + 3648748791, + 3071860323, + 3071860322, + 3071860303, + 231578510, + 5427404872, + 1540204045, + 1540204072, + 1540204039, + 1540204079, + 1540204042, + 1540204096, + 3652686230, + 1540203995, + 1540204051, + 1540204093, + 1540204066, + 1540203996, + 1540204043, + 1540204026, + 1540204091, + 12953888092, + 1540203972, + 1560692484, + 1540204016, + 1540204086, + 5427404904, + 1540204102, + 1540203988, + 1540203983, + 1560692509, + 1540204012, + 1540204023, + 1540203998, + 1540204014, + 1540204075, + 1560692512, + 1540204070, + 1540204009, + 1540204017, + 1540204098, + 1540204085, + 1560692520, + 1540204001, + 1560692568, + 1540203992, + 1540203999, + 1540203986, + 5876482549, + 1540204104, + 1540204011, + 6287307037, + 1540204106, + 281259065, + 6287307030, + 1560692511, + 1560692573, + 1540213316, + 1540213298, + 1540213345, + 1540213356, + 1560692510, + 1560692508, + 1460330065, + 1540213392, + 1540213383, + 1540213385, + 1540213295, + 1540213331, + 1540213343, + 1540213335, + 1560692515, + 1540213333, + 38460665, + 1540213350, + 1560692487, + 1540213303, + 1540213376, + 1540213318, + 1540213325, + 1540213329, + 1540213319, + 1540213360, + 1540213346, + 1540213323, + 1540213292, + 1540213348, + 1540213381, + 6287306769, + 9155630886, + 1540213401, + 1540213406, + 6287306771, + 1540214813, + 231532087, + 6287306751, + 1540214809, + 1540214807, + 1540214810, + 1540214825, + 1560685371, + 1540214826, + 3788301372, + 1540214828, + 1540214811, + 5132444437, + 1540214808, + 1540214823, + 1547380599, + 3124581449, + 1547380636, + 1547380671, + 1547380689, + 1547380666, + 1547380699, + 1547380697, + 1547380724, + 6371143413, + 1547380692, + 523393059, + 1547380663, + 1547380628, + 1547380594, + 1547380739, + 1547380695, + 1547380715, + 281259064, + 3577225633, + 1547380660, + 3577225629, + 3124581448, + 3911517051, + 3124581447, + 3071689076, + 3577225620, + 3124581445, + 3124581444, + 1547380712, + 1547380735, + 1547380625, + 1547380718, + 3577225622, + 1547380638, + 1547380652, + 1547380656, + 1547380687, + 606139864, + 3577225639, + 231529652, + 3577225643, + 1547380727, + 1547380632, + 1547380731, + 1547380639, + 1547380673, + 1547380637, + 3577225650, + 1547380590, + 3577225655, + 1547380606, + 3577225660, + 1547380604, + 1547380635, + 3629357502, + 1547380701, + 1623916760, + 2565049797, + 1547380602, + 2565049829 + ] + }, + { + "wayId": 145128931, + "nodeIds": [ + 1325374712, + 1325374709, + 1325374703, + 1623916670, + 1623916840, + 3124411840, + 2565049815, + 2565049767, + 2565049808, + 2565049763, + 2565049829 + ] + }, + { + "wayId": 1355949052, + "nodeIds": [ + 12549116905, + 12549116906, + 2575419225, + 2575419216, + 2575419157, + 2575419148, + 2575419255, + 2575419252, + 2575419050, + 12549097494, + 2575419179, + 12549116903 + ] + }, + { + "wayId": 307543712, + "nodeIds": [ + 1248723735, + 1248724142, + 10218267421, + 1248723904, + 1248724108, + 1248723844, + 1248723698, + 3789448369, + 1248724064, + 1248723679, + 1248724008, + 1248723816, + 1248724130, + 1248723863, + 1248723673, + 1248724077, + 1248723792, + 1248724038, + 1248723743, + 3124581128, + 1248723642 + ] + }, + { + "wayId": 307216119, + "nodeIds": [ + 2564254183, + 2564254132, + 2564254200, + 2564254212, + 2564254188, + 2564254142, + 13326715792, + 13326715791, + 13326715790, + 2564254189, + 2564254166, + 2564254122, + 5359000607, + 2564254209, + 2564254202, + 2564254130, + 2564254161, + 2577354992, + 3123039787 + ] + }, + { + "wayId": 943565390, + "nodeIds": [ + 8736481257, + 2564254181, + 2564254170, + 3781183317, + 3123039782, + 2564254183 + ] + }, + { + "wayId": 129895553, + "nodeIds": [ + 291564587, + 60732073, + 3796070189, + 13272459498, + 946858896, + 946858875, + 946858852, + 3119255450, + 5160569078, + 2007668078, + 281177110, + 3670803277, + 1505206326, + 1505206380 + ] + }, + { + "wayId": 307541337, + "nodeIds": [ + 13203485374, + 2575586527, + 3122456981, + 2575586348, + 2575586328, + 2575586324, + 2575586353, + 2575586540, + 2575586364, + 2575586361, + 2575586489, + 2575586322, + 3122456980, + 2575586524, + 2575586547, + 5130642829, + 2575586475, + 2575586416, + 2575586360, + 2575586456, + 3122456986, + 2575586415, + 2575586528, + 2575586345, + 2575586376, + 2575586418, + 2575586449, + 2575586409, + 2575586395, + 2575586349, + 2575586334, + 2575586339, + 2575586511, + 3744335500, + 2575586474, + 2575586391, + 2575586459, + 3122456979, + 2575586379, + 2575586460, + 12178251180, + 2575586513, + 938646806 + ] + }, + { + "wayId": 1355961352, + "nodeIds": [ + 12549212257, + 291564587 + ] + }, + { + "wayId": 221515322, + "nodeIds": [ + 2305432975, + 12177979474, + 2305432976, + 2305432974, + 2305432969, + 2305432965, + 2305432960, + 3119065627 + ] + }, + { + "wayId": 1355961355, + "nodeIds": [ + 12549212260, + 1503509391, + 1503509395, + 1503509424, + 1503509355 + ] + }, + { + "wayId": 369020595, + "nodeIds": [ + 12549116923, + 8755641116, + 8755691717, + 8755641113, + 3728561640, + 3728561625, + 8755691718, + 3728561630, + 9779381525, + 8755641112, + 8755641110, + 9779381524, + 6328625890, + 3728561631, + 9779381523, + 8755641108, + 3728561639, + 8755641096, + 8755641106, + 8755641105, + 8755641104, + 39724069 + ] + }, + { + "wayId": 945619874, + "nodeIds": [ + 2575611338, + 4592566663 + ] + }, + { + "wayId": 307558605, + "nodeIds": [ + 2575611333, + 2575611364 + ] + }, + { + "wayId": 199477545, + "nodeIds": [ + 3123033203, + 3123033200, + 8755383274, + 8755383273, + 5216855959, + 1432319451, + 2575586491, + 4409290640, + 2575586464, + 2575586423 + ] + }, + { + "wayId": 1355961354, + "nodeIds": [ + 1503509414, + 1503509367, + 1503509449 + ] + }, + { + "wayId": 1315691433, + "nodeIds": [ + 2575586514, + 2575586427 + ] + }, + { + "wayId": 141374026, + "nodeIds": [ + 101499618, + 6024968750, + 3965104430, + 1547454946, + 1547454787, + 1547454885, + 1547454694, + 1547454871, + 1547454731, + 1547454935, + 1547454792, + 1547454770, + 1547454881, + 1547454690, + 3966921620, + 1547454976, + 1547454859, + 1547454940, + 3914371558, + 1547454820, + 3914371568, + 3914371569, + 1547454806, + 3914371617, + 3914371475, + 1547454685, + 3914371489, + 1547454897, + 3914370122, + 1547454862, + 1547454768, + 1547454891, + 1547454930, + 1547454876, + 1547447282, + 3914371903, + 20931435, + 1547447284, + 3914372166, + 1547447285, + 1547447280, + 1547447283, + 3966921628, + 1547447278, + 1547447279, + 1547447281, + 1547443532, + 3966914851, + 1547443493, + 1547443536, + 3966921757, + 1547443496, + 1547443540, + 1547443500, + 1547440722, + 3966917746, + 1547440719, + 1994630057, + 1547440721, + 1547440755, + 3966921876, + 1547440734, + 11343665737, + 1547440757, + 1547440752, + 1547440737, + 1547440746, + 1547440749, + 1547440741, + 1547440730, + 945144528, + 1547425612, + 3124509172, + 1547425601, + 12860288788, + 1547425566, + 1547425572, + 1547425574, + 1547425618, + 5841648987, + 1547425579, + 979209478 + ] + }, + { + "wayId": 943565382, + "nodeIds": [ + 2564555186, + 5158657243, + 2564554951, + 12549097487 + ] + }, + { + "wayId": 302968557, + "nodeIds": [ + 3072514362, + 3072514363 + ] + }, + { + "wayId": 1097912324, + "nodeIds": [ + 317545668, + 3123033216, + 3123033217, + 3123033218, + 5360579272, + 3123033219, + 3123033220, + 10053132850, + 3123033223, + 3123033225, + 3123033226, + 12549116913 + ] + }, + { + "wayId": 137070557, + "nodeIds": [ + 2564254179, + 3781187683, + 1503629465 + ] + }, + { + "wayId": 1218503411, + "nodeIds": [ + 11290763611, + 9871245560, + 11838390651, + 13198237507, + 9871245561, + 13198237508, + 11838390652, + 9871245562, + 13306123068, + 13306123066, + 12158164980, + 9871245563, + 9871245564, + 9871245565, + 12158164979, + 11809725745, + 12158164981, + 11800164959, + 12158164983, + 12430269162, + 13198219479, + 11809145688, + 5287714650, + 13198237512, + 13198237516, + 9871245567, + 12223986895, + 13198237514, + 12223986894, + 12514004751, + 9871245568, + 12848592212, + 12223986893, + 13306123067, + 11838390667, + 11885078589, + 9871245569, + 12512395389, + 13198237521, + 11800164960, + 13198237520, + 13198237519, + 9871245570 + ] + }, + { + "wayId": 208440293, + "nodeIds": [ + 12549212261, + 1503509362, + 1503509390, + 1503509360, + 3122450467, + 3122450466, + 12549212259 + ] + }, + { + "wayId": 828839267, + "nodeIds": [ + 12549116926, + 8985892853, + 60025051, + 11867053060, + 11867053061, + 60025050, + 918523098, + 3118402895, + 11867053062, + 11867053063, + 11867053064, + 3118402894 + ] + }, + { + "wayId": 1355949041, + "nodeIds": [ + 12549097488, + 2564555110, + 5158657231, + 2564554921, + 2564555196, + 2564555193, + 2564555152, + 5158657238, + 2564555197, + 5158657234, + 2564555087, + 2564555186 + ] + }, + { + "wayId": 1355949050, + "nodeIds": [ + 12549116903, + 2575419224, + 2575419208, + 2575419229, + 2575419246, + 6311834769, + 2575419094, + 6311834801, + 2575419210, + 5533923407, + 12549116902 + ] + }, + { + "wayId": 1436534808, + "nodeIds": [ + 13203485369, + 6238445889, + 2597102255, + 6238445887, + 2597102247, + 231454795, + 977674834, + 977674757, + 977674774, + 13203485365 + ] + }, + { + "wayId": 208440295, + "nodeIds": [ + 1503509380, + 1503509353, + 3122450437, + 2942632656, + 2564072249, + 3122450436, + 1503509435, + 1503509447, + 2564072353, + 1503509365 + ] + }, + { + "wayId": 1355963985, + "nodeIds": [ + 12549252357, + 231578493 + ] + }, + { + "wayId": 154099145, + "nodeIds": [ + 1503629530, + 3781187665, + 3123039767, + 3781187657, + 1503629527, + 3781187313, + 1503629515, + 3123039766, + 3781187308, + 1503629509 + ] + }, + { + "wayId": 307563704, + "nodeIds": [ + 3123039769, + 2564061751, + 3123039773, + 2564061752, + 3123039776, + 2564061742, + 2564061760, + 5162759099, + 3124664051 + ] + }, + { + "wayId": 943565398, + "nodeIds": [ + 3123039759, + 2564061755, + 2564061724, + 2564061693, + 3123039761 + ] + }, + { + "wayId": 1274994215, + "nodeIds": [ + 9871245571, + 13198237522, + 12202780234, + 9871245572, + 13198237524, + 12488817523, + 13198237523, + 9871245574 + ] + }, + { + "wayId": 1274994210, + "nodeIds": [ + 9871245570, + 9871245571 + ] + }, + { + "wayId": 376153856, + "nodeIds": [ + 1506442726, + 3796147301, + 1256343803, + 3796147298, + 3670568171, + 246676689, + 1506442724, + 3124410422, + 1506442725, + 1432314076, + 3124410417, + 1432314065, + 1432314079, + 1432314085, + 1432314061, + 3124410413, + 3670592906, + 3796147494, + 1504540315, + 3796147493, + 3124410412, + 1503483804, + 3640025099, + 1432314063, + 2564674874, + 5377606220, + 1432314057, + 3124410415, + 1432314058, + 3124410419, + 3124410421, + 1432314080, + 3796147697, + 1934914135, + 3796147706, + 6343805384, + 3670568166, + 10814855885, + 9028740408, + 3670600191, + 2564674912, + 1503483786, + 3124410427, + 3124410428, + 2564675013, + 3124411829, + 1942478523, + 1432314075, + 2564674976, + 1432314062, + 3670600297, + 3124411831, + 1503483808, + 3670600315, + 1432314059, + 1432314067, + 3670601359, + 3796147338, + 3124411832, + 1432314082, + 1432314086, + 3124411837, + 1432314056, + 3670601400, + 2564674897, + 1432314081, + 3124411838, + 1432314088, + 1432314071, + 3796147741, + 2564675036, + 1325374707, + 246676721, + 1325374738, + 1325374733, + 1325374749 + ] + }, + { + "wayId": 307170833, + "nodeIds": [ + 1503509409, + 3122450426, + 1503509363, + 2187320596, + 1503509398, + 1680725835, + 3122450428, + 3122450429, + 1503509365 + ] + }, + { + "wayId": 1355949054, + "nodeIds": [ + 2575419241, + 2575419119, + 2575419214, + 12549116905 + ] + }, + { + "wayId": 1076443332, + "nodeIds": [ + 9871231590, + 11808212967, + 11850833146, + 12158179125, + 9871231592, + 13306128619, + 12514004758, + 12514004766, + 12514004764, + 12514004762, + 12514004760, + 9871231596, + 13198237591, + 9871231597, + 13306128617, + 9871231598, + 13198237592, + 9871231599, + 13306128615, + 11885078579, + 9871231600, + 13306128613, + 9871231602, + 12184356827, + 9871231603, + 13306128611, + 9871231604, + 9871231605, + 9871231606, + 9871231607, + 9871231608, + 9871231609, + 12158179113, + 13306128608, + 9871231610, + 11885078581, + 11838390610, + 13306128609, + 13306128610, + 12202780266, + 13198237583, + 9871231611, + 11838390611, + 9871231612, + 9871231613, + 12160321769, + 9871231615, + 9871245517, + 13306128603, + 11838390613, + 13306123100, + 9871245518, + 11838390614, + 13306123099, + 13306123096, + 13306123094, + 11885078582, + 13306123093, + 13306123090, + 9871245520, + 12768811840, + 11838390616, + 13198237547, + 9871245521, + 12372539210, + 13306123089, + 11838390618, + 13306123087, + 11838390619, + 9871245523, + 13198237548, + 13198237543, + 9871245524, + 9871245525, + 13198237545, + 9871245526, + 13198237546, + 9871245527, + 13198237540, + 9871245528, + 9871245530, + 13306123085, + 9871245531, + 9871245532, + 9871245533, + 11838390622, + 12216406808, + 11838390624, + 9871245534, + 12725727268, + 12216406810, + 13306123082, + 12659340338, + 12659340337, + 12725727265, + 9871245536, + 9871245537, + 9871245538, + 13198237539, + 11838390627, + 9871245539, + 11885078584, + 9871245540, + 9871245541, + 9871245543, + 13198237537, + 13198237536, + 12543274722, + 11838390638, + 13198237532, + 9871245545, + 13198237531, + 9871245546, + 9871245547, + 13306123080, + 9871245548, + 9871245549, + 11838390634, + 9871245550, + 11838390632, + 9871245551, + 9871245552, + 11838390640, + 12186670923, + 12186670924, + 9871245553, + 12514004757, + 11838390642, + 13306123072, + 9871245554, + 13306123073, + 9871245555, + 9871245556, + 13306123074, + 9871245557, + 3672530575, + 9871245558, + 11885078587, + 12912873149, + 12811196159, + 13306123075, + 9871245559, + 9871245663, + 11290763610 + ] + }, + { + "wayId": 1355949060, + "nodeIds": [ + 12549116911, + 5999160404, + 2575419125, + 2575419112, + 2575419060, + 5070973696, + 2575419127, + 5999160405, + 2575419152, + 2575419088, + 5999160408, + 5999160409, + 2575419222, + 2575419242, + 2575419183, + 3380456651, + 2575419243, + 2575419249, + 12549097496, + 2575419045, + 2575419218, + 5446274166, + 12549116909 + ] + }, + { + "wayId": 249886206, + "nodeIds": [ + 2564254196, + 9908063322, + 9908063321, + 2564254147, + 2564254140, + 9908063320, + 2564254135, + 9908063319, + 9908063318, + 9908063317, + 2564254184, + 2564254207, + 3781187711, + 9908053410, + 2564254131, + 2564254179 + ] + }, + { + "wayId": 221515309, + "nodeIds": [ + 2305432951, + 11881765501, + 2007778301, + 4040099683, + 2305432939 + ] + }, + { + "wayId": 1218503412, + "nodeIds": [ + 11290763610, + 11290763611 + ] + }, + { + "wayId": 943565397, + "nodeIds": [ + 2564061595, + 2564061713, + 8736481258 + ] + }, + { + "wayId": 1436534809, + "nodeIds": [ + 8754231936, + 60722755, + 12772083137, + 950758569, + 950758599, + 60722754, + 950758550, + 12772083138, + 950758584, + 2575586463, + 2575586466 + ] + }, + { + "wayId": 208440294, + "nodeIds": [ + 2187320588, + 1503509380 + ] + }, + { + "wayId": 428791860, + "nodeIds": [ + 1616132598, + 3123033212, + 8755383285, + 3123033215, + 8755383284, + 8755383283, + 1616132593, + 5216855964, + 1616132592, + 5216855962, + 8755383277, + 5216855963, + 8755383276, + 8755383282, + 8755383278, + 3123033214 + ] + }, + { + "wayId": 1355955044, + "nodeIds": [ + 12549104232, + 2575586424, + 938646830, + 3119066031, + 2305432968, + 2305432975 + ] + }, + { + "wayId": 376153833, + "nodeIds": [ + 3796068518, + 2564628106, + 3124411830, + 1432314068, + 6578283044, + 3796147325, + 1432314066 + ] + }, + { + "wayId": 307563691, + "nodeIds": [ + 12549212258, + 3712072815, + 1503509403, + 1503509402, + 2187320588 + ] + }, + { + "wayId": 565478434, + "nodeIds": [ + 2575419134, + 5116912556, + 2575419074, + 2575419131, + 2575419155, + 5070973654, + 3123033224, + 2575419236, + 2575419057, + 2575419090, + 2575419175, + 2575419165, + 2575419078, + 6264871887, + 2575419254, + 2575419054, + 3123039731, + 2575419051, + 12549116911 + ] + }, + { + "wayId": 1436534815, + "nodeIds": [ + 2575586542, + 2575586396, + 3124636922, + 13203485374 + ] + }, + { + "wayId": 428791859, + "nodeIds": [ + 4205213587, + 11867054282, + 8754231923, + 11867054283, + 11867054284, + 8754231922, + 11867054285, + 4205213579, + 11867054286, + 8754231921, + 3728561522, + 9779324014, + 12090201665, + 3118402878 + ] + }, + { + "wayId": 154987250, + "nodeIds": [ + 2575586346, + 11881765524, + 1547396447, + 1585653155, + 1585653161, + 2009776381, + 2009776382, + 2009776383, + 11881765523, + 2009776385, + 252285662, + 2583839270, + 2583839272, + 11881765507, + 2575586472 + ] + }, + { + "wayId": 306902199, + "nodeIds": [ + 1503509431, + 9907924081, + 2187320587, + 9907924082, + 3119254620, + 9907924083, + 9907924085, + 2187320600, + 9907924086, + 3355619607, + 9907924103, + 2187320603, + 9907924102, + 9907924101, + 2187320590, + 3119254625, + 9907924107, + 9907924108, + 1503509427 + ] + }, + { + "wayId": 249886214, + "nodeIds": [ + 12549116917, + 3421813094, + 3421812296, + 3421812299, + 5445917770 + ] + }, + { + "wayId": 943565399, + "nodeIds": [ + 3123039761, + 2564061597, + 5162759104, + 5162759102, + 2977400536, + 5162759101, + 3781187307, + 8736481259 + ] + }, + { + "wayId": 131318450, + "nodeIds": [ + 60722461, + 9910339417, + 3118402849, + 3118402852, + 1445506088, + 290826566, + 9910339424, + 70969011 + ] + }, + { + "wayId": 764129683, + "nodeIds": [ + 3796068514, + 3796147307, + 8719434195 + ] + }, + { + "wayId": 1355949072, + "nodeIds": [ + 1616132598, + 4896854166, + 5216855964, + 8755383281, + 3728561633, + 5534472849, + 3728561635, + 3728561634 + ] + }, + { + "wayId": 307563703, + "nodeIds": [ + 1503509414, + 3122450454, + 3122450456, + 2187320586, + 12078541755, + 2187320599, + 3122450458, + 3122450460, + 3122450463, + 1503509355 + ] + }, + { + "wayId": 1355949044, + "nodeIds": [ + 12549097497, + 2575419082, + 2575419106, + 2575419189, + 6311834751, + 2575419197, + 2575419169, + 2575419098, + 6311834747, + 2575419232, + 6311834712, + 2575419238 + ] + }, + { + "wayId": 730290431, + "nodeIds": [ + 12549116921, + 12089458888, + 3123033203 + ] + }, + { + "wayId": 1436534805, + "nodeIds": [ + 12549104275, + 3966283957, + 231454829, + 977674892, + 977674803, + 5414611514, + 977674970, + 977674763, + 231454825, + 977674931, + 977674853, + 977674764, + 977674799, + 5414611511, + 977674969, + 12549104276, + 977674826, + 5414611504, + 977674822, + 13203485366 + ] + }, + { + "wayId": 1355949058, + "nodeIds": [ + 12549116909, + 2575419129, + 2575419117, + 2575419063, + 2575419144, + 12549097495, + 2575419206, + 2575419108, + 2575419240, + 6264871456, + 6264871478, + 3123039812, + 2575419075, + 6264871481, + 3123039742, + 2575419154, + 2575419185, + 2575419163, + 3380456662, + 6264871483, + 2575419102, + 2575419104, + 3380456670, + 3380456682, + 2575419187, + 2575419235, + 2575419065, + 2575419248, + 6264871466, + 2575419177, + 12549116908 + ] + }, + { + "wayId": 1355949046, + "nodeIds": [ + 2575419079, + 2575419048, + 2575419069, + 2575419059, + 2575419181, + 2575419173, + 2575419062, + 3123039791, + 2575419046, + 6311835526, + 2575419150, + 6311835533, + 2575419099, + 2575419072, + 3123039788, + 12549097497 + ] + }, + { + "wayId": 1076443331, + "nodeIds": [ + 12549116920, + 1616132598 + ] + }, + { + "wayId": 1355961356, + "nodeIds": [ + 12549212259, + 1503509372, + 3122450465, + 1503509423, + 12549212260 + ] + }, + { + "wayId": 1355949043, + "nodeIds": [ + 2575419238, + 2575419096, + 2575419233, + 13379078587, + 2575419066, + 2575419167, + 2575419193, + 2575419191, + 2575419140, + 2564555065, + 2564555106, + 12549097488 + ] + }, + { + "wayId": 943565396, + "nodeIds": [ + 2564061641, + 2564061676 + ] + }, + { + "wayId": 1451139999, + "nodeIds": [ + 9871245574, + 13306123065, + 11885078591 + ] + }, + { + "wayId": 1355949073, + "nodeIds": [ + 3728561634, + 4345616053, + 3728561518, + 8755641115, + 12549116923 + ] + }, + { + "wayId": 1315691431, + "nodeIds": [ + 938646806, + 2575586514 + ] + }, + { + "wayId": 249856367, + "nodeIds": [ + 8736481258, + 2564061630, + 2564061626, + 2564061661, + 10119598687, + 2564061662, + 2564061659, + 2564061685, + 2564061766, + 3123039745, + 2564061621, + 2564061680, + 2564061643, + 2564061707, + 2564061607, + 2564061600, + 3123039759 + ] + }, + { + "wayId": 1097912325, + "nodeIds": [ + 12549116915, + 12862174409, + 2575586468, + 11889083449, + 2575586314, + 317545668 + ] + }, + { + "wayId": 369020594, + "nodeIds": [ + 39724069, + 8712217477, + 11889125681, + 11889125682, + 39724067 + ] + }, + { + "wayId": 1355955046, + "nodeIds": [ + 279197046, + 12177979471, + 938646830, + 2305432962, + 3811884912, + 939396419, + 11069403114, + 938646839, + 60722787, + 12085703502, + 939396405, + 938646817, + 12549104235 + ] + }, + { + "wayId": 307563698, + "nodeIds": [ + 1503509359, + 3122450423, + 3122450421, + 2564704209, + 5349138402, + 3127567487 + ] + }, + { + "wayId": 1355955058, + "nodeIds": [ + 12549104240, + 5414543487, + 976921165, + 976921260, + 231454855, + 976921204, + 231454851, + 976921142, + 976921300, + 976921178, + 976921231, + 231454848, + 977674887, + 977674964, + 977674783, + 977674917, + 977674830, + 977674738, + 977674933, + 977674856, + 5414543479, + 231454842, + 1357894428, + 4948406380, + 3118524630, + 6356023584, + 231454841, + 231454839, + 977674889, + 3966267844, + 977674800, + 977653992, + 3966267846, + 3966267851, + 12549104275 + ] + }, + { + "wayId": 251318916, + "nodeIds": [ + 2575586357, + 13165462985, + 12190070870, + 13190891935, + 12190070869, + 12190070868, + 1745316631, + 1755114711, + 3123033196, + 5218290081, + 12190070888, + 13306349937, + 3123033204 + ] + }, + { + "wayId": 1109804313, + "nodeIds": [ + 12181124129, + 12181124133, + 12181124132, + 12181124131, + 11812035751, + 11812035750, + 13333468825, + 13333468826, + 13180988537, + 11812035747, + 13333468828, + 13174184329, + 13180988536, + 13174184328, + 10152795574, + 10152795575, + 13174184313, + 295735124, + 10152795576, + 13180988532, + 13174184315, + 10152795577, + 13180988530, + 10152869364, + 13180988528, + 10157329758, + 13180988526, + 13234118236, + 12168393773, + 10152869365, + 10942076562 + ] + }, + { + "wayId": 1355949075, + "nodeIds": [ + 39724067, + 8755641103, + 8755641101, + 3728561514, + 8755641093, + 12549116924 + ] + }, + { + "wayId": 376153855, + "nodeIds": [ + 3670600194, + 3796147310, + 1432314064, + 3796068514 + ] + }, + { + "wayId": 945623776, + "nodeIds": [ + 3123039805, + 2577354998, + 2577354951 + ] + }, + { + "wayId": 1355961353, + "nodeIds": [ + 1503509449, + 2564072375, + 1503509368, + 246503834, + 1503509393, + 3122450441, + 1503509461, + 12549212258 + ] + }, + { + "wayId": 943565389, + "nodeIds": [ + 2564554961, + 2564555120, + 2564555119, + 2564554959, + 2564554966, + 3123039751, + 2564554973, + 2564555133, + 2564254125, + 13084827306, + 3124664054, + 9907971607, + 2564254176, + 2564254148, + 3781187303, + 2564254144, + 9908063359, + 2564254136, + 2564254196 + ] + }, + { + "wayId": 828839266, + "nodeIds": [ + 3118402893, + 11867053056, + 8754231928, + 2569379696, + 2569379700, + 11867053057, + 2569379697, + 11867053058, + 12090201663, + 11867053059, + 2569379692, + 12542859593, + 2569379699, + 3118400918 + ] + }, + { + "wayId": 376153832, + "nodeIds": [ + 1432314066, + 3796147323, + 1432314072, + 3124410426, + 3670600194 + ] + }, + { + "wayId": 137513630, + "nodeIds": [ + 13203485366, + 6238445837, + 977674781, + 977674958, + 977674915, + 977674935, + 231454818, + 231454816, + 977674804, + 231454815, + 977674801, + 977674760, + 3118523815, + 977674937, + 6271710370, + 977674967, + 977674772, + 231454812, + 977674921, + 6238445890, + 977674832, + 6238445839, + 250677074, + 6238445849, + 977674798, + 6238445885, + 977674954, + 977674929, + 6271710363, + 231454808, + 2597102241, + 6271710351, + 977674776, + 13203485369 + ] + }, + { + "wayId": 943565385, + "nodeIds": [ + 2564554964, + 2564554928, + 2564555147, + 2564555218, + 5533923358, + 2564555025, + 2564555054, + 8736481255 + ] + }, + { + "wayId": 117690838, + "nodeIds": [ + 1445507886, + 3670034485, + 3670034478, + 1539538032, + 3796070165, + 3796070164, + 1325372163, + 3670034463, + 1325372165, + 3670034451, + 1325372188, + 1539537996, + 1325372190, + 3670034443, + 1325372192, + 1325372172, + 1539537992, + 1325372178, + 1325372182, + 12422543365, + 3670031720, + 12422543366, + 2564591636, + 1539537990, + 3670601696, + 1539537979, + 12422543367, + 1623916621, + 1325372161, + 1623916556, + 1623916699, + 3796068536, + 2564628115, + 3796068533, + 12422543368, + 1325372162, + 1325372186, + 1325372196, + 3796068530, + 1498625081, + 3670601728, + 3124411839, + 1325372167, + 1325372184, + 12422543369, + 1503483802, + 1681472360, + 1325372169, + 1432314083, + 3124411836, + 1432314074, + 2564591653, + 1432314077, + 3124411834, + 1432314087, + 1506442723, + 1432314090, + 1503483805, + 1432314091, + 3124411833, + 3796148246, + 3796068518 + ] + }, + { + "wayId": 1055692905, + "nodeIds": [ + 11885076555, + 13306159018, + 13456052525, + 11838256843, + 12978810102, + 11838256842, + 12978810103, + 11838256841, + 11838256840, + 12978810101, + 13306159014, + 11838328175, + 12978714499, + 12978714500, + 11838256839, + 11838256838, + 11838256837, + 11838256836, + 11838256835, + 13306159012, + 13198256105, + 11885076557, + 11838256834, + 13306159011, + 12978714498, + 11838256833, + 13198256104, + 11838256832, + 13336046677, + 9700486773, + 13306159008, + 9700486772, + 13198256110, + 9700486763, + 9700486762, + 9700486761, + 9700486760, + 9700486758, + 9700486757, + 9700486756, + 9700486755, + 13234300334, + 13306159006, + 9700486754, + 11838328181, + 13306159004, + 9700486753, + 9700486752, + 9700486751, + 13306159002, + 9700486750, + 13234305185, + 9700486749, + 13306159000, + 9700486748, + 9700486747, + 9700486746, + 11885076559, + 9700486745, + 13306158998, + 9700486744, + 9700486743, + 13306158996, + 9700486742, + 9700486741, + 13306158994, + 9700486739, + 9700486738, + 9700486737, + 13306158992, + 9700486736, + 9700486735, + 9700486734, + 9700486733, + 9700486732, + 13306158990, + 13306158989, + 9700486731, + 9700486730, + 9700486729, + 9700486728, + 9700486727, + 13306158986, + 9700486726, + 9700486725, + 9700486724, + 9700486723, + 9700486722, + 9700486721, + 9700486720, + 9700486719, + 13198256113, + 9700486718, + 9700486717, + 9700486716, + 4534094937, + 9700486715, + 9700486714, + 369660984, + 13306158983, + 11885076561, + 13306158981, + 13342288277, + 12978810109, + 12978810110, + 13306158980, + 9700486713, + 13306158979, + 9700486712, + 9700486710, + 9700486709, + 9700486708, + 11838328182, + 13306158976, + 13306158974, + 13198256116, + 9700486707, + 9700486706, + 9700486705, + 9700486704, + 9700486703, + 9700486702, + 9700486701, + 9700486700, + 13306158972, + 9700486699, + 12175054246, + 11885076563, + 13306158964, + 13306158962, + 13306158960, + 9700486698, + 9700486697, + 9700486695, + 13351186995, + 9700486694, + 9700486693, + 9700486692, + 9700486691, + 9700486690, + 9700486689, + 9700486688, + 9700486687, + 9700486686, + 9700486685, + 9700486684, + 12978810113, + 9700486682, + 12978810117, + 13351186996, + 11838328188, + 13306158958, + 13306158957, + 12978810115, + 9700486681, + 9700486678, + 9700486677, + 12978810119, + 12514008609, + 13246223344, + 9700486675, + 9700486674, + 9700486673, + 9700486672, + 12514008606, + 12514008603, + 9700486670, + 12514008607, + 9700486669, + 9700486667, + 13336008993, + 9700486666, + 11885076564, + 9700486665, + 9700486664, + 9700486663, + 9700486662, + 9700486661, + 13306158955, + 9700486660, + 9700486659, + 9700486658, + 13306158952, + 9700486657, + 13198256117, + 13306158950, + 9700486656, + 13198256118, + 12978810120, + 9700486655, + 9700486654, + 12978810122, + 9700486653, + 9700486651, + 13306158948, + 9700486649, + 13306158947, + 9700486648, + 9700486647, + 9700486646, + 9700486645, + 9700486644, + 13477841418, + 9700486642, + 13477841422, + 9700486641, + 9700486640, + 9700486639, + 9700486638, + 13477841412, + 13306158945, + 13306158942, + 9700486637, + 9700486636, + 9700486635, + 9700486634, + 9700486633, + 9700486632, + 9700486631, + 11885076567, + 13306158939, + 13477713348, + 13306158940, + 13477713347, + 13477713361, + 9700486627, + 9700486626, + 9700486625, + 9700486622, + 13477800002, + 9700486621, + 9700486620, + 13477800016, + 11885078569, + 13477800028, + 9700486619, + 9700486618, + 13306158934, + 9700486617, + 9700486616, + 9700486615, + 9700486613, + 9700486612, + 12978810130, + 13391742618, + 11838328191, + 9700486611, + 9700486609, + 13306158928, + 9700486608, + 9700486607, + 9700486606, + 9700486605, + 11838328192, + 9700486602, + 9700486601, + 9700486600, + 9700486599, + 9700486597, + 13306158926, + 13306158925, + 9700486596, + 9700486595, + 9700486594, + 9700486592, + 9700486591, + 9700486590, + 9700486589, + 9700486588, + 12514004772, + 9700486587, + 9700486586, + 9700486585, + 9700486584, + 9700486583, + 9700486582, + 9700486581, + 9700486580, + 13208683943, + 9700486579, + 9700486578, + 9700486577, + 13208683958, + 13208683955, + 13306159022, + 11885078571, + 13306158920, + 9700486576, + 9700486575, + 13306158919, + 9700486574, + 9700486573, + 13198256126, + 13306158916, + 13306158914, + 13198256129, + 13198256124, + 12175054249, + 9700486537, + 9700486519, + 9700486520, + 13377851357, + 13198256123, + 9700486521, + 9700486522, + 13377851360, + 13306120288, + 13306158906, + 13377851368, + 11885078573, + 12978810137, + 9700486527, + 12181124075, + 9700486528, + 13306158905, + 9700486529, + 13306158902, + 9700486530, + 13198256131, + 12186566286, + 9700486531, + 13306158901, + 13306120298, + 13306120296, + 11838328194, + 13165462978, + 13306120294, + 13306120292, + 13306120291, + 9700486532, + 11885078574, + 3828279522, + 10064330852, + 9700486533, + 283307666, + 13017317280, + 9700486534, + 13017317281, + 9700486535, + 251310025, + 9700486536, + 2597367172, + 291270428, + 283309684, + 13017317283, + 12175054251, + 13391461298, + 13306158909, + 11885078576, + 9700483712, + 12116674324, + 13306120287, + 9700483711, + 13190891947, + 2575586357 + ] + }, + { + "wayId": 1271569355, + "nodeIds": [ + 2479837374, + 9871231584, + 9871231586, + 12202780282, + 12202780284, + 9871231588, + 9871231589, + 9871231590 + ] + }, + { + "wayId": 943565394, + "nodeIds": [ + 1503629509, + 2564061593, + 2564061779, + 3123039758 + ] + }, + { + "wayId": 251318924, + "nodeIds": [ + 3123033204, + 252284572, + 2575586434, + 2575586438, + 2575586436, + 4278861075, + 12190070890, + 4278861076, + 12176450050, + 12190070893, + 12176450045, + 9855106172, + 9855106171 + ] + }, + { + "wayId": 1355949048, + "nodeIds": [ + 5533923387, + 2575419159, + 2575419202, + 5533923394, + 2575419234, + 5533923380, + 2575419110, + 2575419079 + ] + }, + { + "wayId": 1355949055, + "nodeIds": [ + 12549116908, + 2575419138, + 2575419204, + 2575419142, + 2575419220, + 2575419195, + 2575419247, + 2575419241 + ] + }, + { + "wayId": 943565400, + "nodeIds": [ + 8736481259, + 3123039769 + ] + }, + { + "wayId": 1355949063, + "nodeIds": [ + 12549116913, + 3123033228, + 5116912598 + ] + }, + { + "wayId": 1315691429, + "nodeIds": [ + 2575586427, + 2575586506, + 2575586437, + 3119065626 + ] + }, + { + "wayId": 1355949049, + "nodeIds": [ + 12549116902, + 5533923406, + 2575419245, + 5533923402, + 2575419100, + 5533923399, + 2575419132, + 2575419161, + 5533923387 + ] + }, + { + "wayId": 1436534804, + "nodeIds": [ + 13203485365, + 2007666286, + 977674890, + 977674802, + 60722759 + ] + }, + { + "wayId": 420570484, + "nodeIds": [ + 4205213587, + 8755641078, + 8755641077, + 4205213581, + 4345616071, + 5158756364, + 8754231927, + 11867053046, + 11867053047, + 3118402893 + ] + }, + { + "wayId": 249886216, + "nodeIds": [ + 2577355099, + 3781339245, + 2577355092, + 2577355017, + 13033549219, + 5359000620, + 2577354943, + 3781457485, + 2577354953, + 3781457487, + 3781457491, + 2577354978, + 3781457493, + 3781457497, + 2577355085, + 3781457500, + 2577354950, + 2577355007, + 2577355080, + 2577354996, + 3781457509, + 3123033194, + 3781457316, + 2577355045, + 3781457321, + 2577354952, + 2577355063, + 2577355088, + 2577355076, + 2577355056, + 2577355012, + 3781457349, + 2577354975, + 2577354969, + 2577355087, + 2577355090, + 2577355082, + 2577355079, + 2577355089, + 2577355068, + 3781456425, + 2577355040, + 2577354965, + 2577355069, + 5358967549, + 2577355086, + 5358967542, + 3123039805 + ] + }, + { + "wayId": 137513631, + "nodeIds": [ + 3118402894, + 5158756364, + 8754231932, + 1508406327, + 8754231934, + 3118402886, + 11867053048, + 3118402884, + 11867053049, + 11867053050, + 60025049, + 9779381517, + 13261866622, + 13261866621, + 60025048 + ] + }, + { + "wayId": 141373107, + "nodeIds": [ + 979209099, + 20932824, + 979209860, + 979208939, + 979209266, + 368006866, + 979209383, + 979210064, + 1547415286, + 20932825, + 979209718, + 979208833, + 308531339, + 979210138, + 979209818, + 979209436, + 3124509173, + 308531340, + 2588842181, + 979209223, + 2588842180, + 308531342, + 308531343, + 3124509174, + 308531345, + 3124509175, + 979209155, + 1547411695 + ] + }, + { + "wayId": 303838628, + "nodeIds": [ + 3082952707, + 3124581437, + 291356213 + ] + }, + { + "wayId": 1355961343, + "nodeIds": [ + 12549212248, + 1503531757, + 3119254616, + 1508371597, + 1503531728, + 1503531734, + 1503531717, + 1503531741, + 1712551986, + 1503531713 + ] + }, + { + "wayId": 1076443333, + "nodeIds": [ + 12549116927, + 3124679914, + 2061950850, + 2421895310, + 2421895334, + 2421895309, + 2421895308, + 2421895307, + 2421895318, + 2421895321, + 2421895319, + 2421895325, + 2421895312, + 2421895315, + 2421895327, + 2421895328, + 2421895316, + 2421895320, + 2421895314, + 2421895330, + 2421895333, + 2421895331, + 3123093686, + 2421895322, + 2421895324, + 14995491, + 2421895332, + 2421895323, + 5832108486, + 14995497, + 2421895317, + 2421895329, + 2421895326, + 2421896316, + 2421896327, + 3123093631, + 6843951479, + 2421896323, + 2421896325, + 2479837347, + 2479837353, + 2479837365, + 13351269295, + 2479837364, + 1584018044, + 3810224709, + 2479837351, + 13351269293, + 12576551197, + 2479837374 + ] + }, + { + "wayId": 1355949082, + "nodeIds": [ + 3118400918, + 1583996896, + 2569379694, + 2569379698, + 2569379695, + 12542859573, + 2569379693, + 5158728472, + 12549116927 + ] + }, + { + "wayId": 369348842, + "nodeIds": [ + 12549116924, + 11889125693, + 3728561521, + 8755641091, + 8755641079, + 3728561632, + 8755641089, + 8755641090, + 8755641084, + 8755641083, + 3728561627, + 8755641082, + 8755641080, + 4345616072, + 13386945311, + 4205213587 + ] + }, + { + "wayId": 1355955053, + "nodeIds": [ + 70969011, + 1968242060, + 9910325969, + 976921320, + 976921195, + 976921088, + 976921283, + 976921230, + 70969013, + 70968974, + 70968976, + 2588826119, + 12549104240 + ] + }, + { + "wayId": 307174471, + "nodeIds": [ + 3122482389, + 3122482390, + 3122482391, + 3122482392, + 3118400919, + 3118400920, + 3118400921, + 3118400922, + 3118402830, + 12549104239 + ] + }, + { + "wayId": 1355961357, + "nodeIds": [ + 1503509431, + 1503509440, + 1503509396, + 1503509392, + 1503509439, + 12549212261 + ] + } + ], + "nodes": [ + { + "nodeId": 3123039811, + "name": "Stade de la Mosson", + "lat": 43.6213447, + "lon": 3.8174028 + }, + { + "nodeId": 3124678227, + "name": "Mosson", + "lat": 43.6162888, + "lon": 3.8198414 + }, + { + "nodeId": 3123033194, + "name": "Halles de la Paillade", + "lat": 43.627657, + "lon": 3.817535 + }, + { + "nodeId": 2577355001, + "name": "Hauts de Massane", + "lat": 43.6364094, + "lon": 3.822705 + }, + { + "nodeId": 3118564775, + "name": "Du Guesclin", + "lat": 43.6071804, + "lon": 3.8833017 + }, + { + "nodeId": 2575419253, + "name": "Astruc", + "lat": 43.610261, + "lon": 3.8548 + }, + { + "nodeId": 2577355086, + "name": "Saint-Paul", + "lat": 43.6306548, + "lon": 3.8212159 + }, + { + "nodeId": 60722751, + "name": "Rives du Lez", + "lat": 43.6040961, + "lon": 3.8948979 + }, + { + "nodeId": 3123033218, + "name": "Arceaux", + "lat": 43.6100217, + "lon": 3.8615025 + }, + { + "nodeId": 2305432920, + "name": "Comédie", + "lat": 43.6083781, + "lon": 3.8798137 + }, + { + "nodeId": 74943027, + "name": "Aiguelongue", + "lat": 43.626274, + "lon": 3.8833184 + }, + { + "nodeId": 60025046, + "name": "Louis Blanc - Agora de la Danse", + "lat": 43.6147274, + "lon": 3.8782032 + }, + { + "nodeId": 224660817, + "name": "Beaux-Arts", + "lat": 43.6170502, + "lon": 3.8835972 + }, + { + "nodeId": 231578457, + "name": "Saint-Jean-de-Védas Centre", + "lat": 43.5748738, + "lon": 3.8306564 + }, + { + "nodeId": 279556951, + "name": "Rondelet", + "lat": 43.6030665, + "lon": 3.8761818 + }, + { + "nodeId": 2998606178, + "name": "Hôpital Lapeyronie", + "lat": 43.6316751, + "lon": 3.8525608 + }, + { + "nodeId": 11885078582, + "name": "CNRS - Zoo de Lunaret", + "lat": 43.6383531, + "lon": 3.8657672 + }, + { + "nodeId": 317829490, + "name": "Université Montpellier - Triolet", + "lat": 43.6291563, + "lon": 3.8616709 + }, + { + "nodeId": 60025069, + "name": "Saint-Éloi", + "lat": 43.6269229, + "lon": 3.8657829 + }, + { + "nodeId": 2575611355, + "name": "Place de France", + "lat": 43.6037388, + "lon": 3.9157934 + }, + { + "nodeId": 279249812, + "name": "Victoire 2", + "lat": 43.5752209, + "lon": 3.8499642 + }, + { + "nodeId": 368004431, + "name": "Georges Pompidou", + "lat": 43.6493853, + "lon": 3.9209977 + }, + { + "nodeId": 250677074, + "name": "Pompignane", + "lat": 43.6125111, + "lon": 3.8949065 + }, + { + "nodeId": 2564674976, + "name": "Saint-Martin - Le Jam", + "lat": 43.5922458, + "lon": 3.8802527 + }, + { + "nodeId": 2575611364, + "name": "Odysseum", + "lat": 43.6038356, + "lon": 3.9203673 + }, + { + "nodeId": 2575419210, + "name": "Pergola", + "lat": 43.6182507, + "lon": 3.8391413 + }, + { + "nodeId": 231578469, + "name": "Saint-Jean-le-Sec", + "lat": 43.5708282, + "lon": 3.8379052 + }, + { + "nodeId": 2565144095, + "name": "Moularès (Hôtel de Ville)", + "lat": 43.6006479, + "lon": 3.8955356 + }, + { + "nodeId": 231578510, + "name": "Sabines", + "lat": 43.583879, + "lon": 3.8601051 + }, + { + "nodeId": 317827455, + "name": "Mondial 98", + "lat": 43.6027649, + "lon": 3.9041182 + }, + { + "nodeId": 1680783345, + "name": "Gare Saint-Roch - République", + "lat": 43.6052424, + "lon": 3.8797132 + }, + { + "nodeId": 3123093632, + "name": "Euromédecine", + "lat": 43.6390018, + "lon": 3.8277875 + }, + { + "nodeId": 11885076564, + "name": "Yves du Manoir", + "lat": 43.5951437, + "lon": 3.8498892 + }, + { + "nodeId": 2575419150, + "name": "Hôtel du Département", + "lat": 43.6219189, + "lon": 3.8349511 + }, + { + "nodeId": 11885076567, + "name": "Estanove", + "lat": 43.6007776, + "lon": 3.8495331 + }, + { + "nodeId": 231532087, + "name": "Mas Drevon", + "lat": 43.5955627, + "lon": 3.8679574 + }, + { + "nodeId": 1547443496, + "name": "La Galine", + "lat": 43.6314509, + "lon": 3.90911 + }, + { + "nodeId": 4345616072, + "name": "Albert 1er - Jardin des Plantes", + "lat": 43.6148176, + "lon": 3.8737832 + }, + { + "nodeId": 3124627566, + "name": "Pérols Étang de l'Or", + "lat": 43.5579564, + "lon": 3.9636474 + }, + { + "nodeId": 11885076561, + "name": "Parc Bagatelle", + "lat": 43.5935804, + "lon": 3.8424972 + }, + { + "nodeId": 148694939, + "name": "Jeu de Mail des Abbés", + "lat": 43.6204816, + "lon": 3.8840706 + }, + { + "nodeId": 1547440719, + "name": "Centurions", + "lat": 43.6327881, + "lon": 3.9158063 + }, + { + "nodeId": 1680783342, + "name": "Pablo Picasso", + "lat": 43.5979503, + "lon": 3.9035259 + }, + { + "nodeId": 281177110, + "name": "Port Marianne", + "lat": 43.6016281, + "lon": 3.8997688 + }, + { + "nodeId": 3123093686, + "name": "Stade Philippidès", + "lat": 43.6190802, + "lon": 3.8695186 + }, + { + "nodeId": 119409072, + "name": "Saint-Lazare", + "lat": 43.6267745, + "lon": 3.8887704 + }, + { + "nodeId": 3124664051, + "name": "Juvignac", + "lat": 43.6175115, + "lon": 3.810219 + }, + { + "nodeId": 3124664054, + "name": "Mosson", + "lat": 43.6163397, + "lon": 3.8196588 + }, + { + "nodeId": 11885078576, + "name": "Gambetta - Saint-Denis", + "lat": 43.6051115, + "lon": 3.8745798 + }, + { + "nodeId": 11885078574, + "name": "Parc Clemenceau", + "lat": 43.6032034, + "lon": 3.8718545 + }, + { + "nodeId": 11885078573, + "name": "Place du 8 Mai 1945", + "lat": 43.6014042, + "lon": 3.8682609 + }, + { + "nodeId": 60732076, + "name": "Moularès (Hôtel de Ville)", + "lat": 43.6005714, + "lon": 3.8955449 + }, + { + "nodeId": 1325372165, + "name": "Georges Frêche - Hôtel de ville", + "lat": 43.5994093, + "lon": 3.8949293 + }, + { + "nodeId": 11885078581, + "name": "Pôle Chimie Balard", + "lat": 43.6341878, + "lon": 3.8679954 + }, + { + "nodeId": 11885078584, + "name": "Plan des 4 Seigneurs", + "lat": 43.6443985, + "lon": 3.8613349 + }, + { + "nodeId": 3122456979, + "name": "Place Carnot", + "lat": 43.6037618, + "lon": 3.8842324 + }, + { + "nodeId": 265410397, + "name": "Antigone", + "lat": 43.6086092, + "lon": 3.8866898 + }, + { + "nodeId": 3119254608, + "name": "Parc Expo", + "lat": 43.5729444, + "lon": 3.9456566 + }, + { + "nodeId": 231578480, + "name": "La Condamine", + "lat": 43.5719919, + "lon": 3.8444363 + }, + { + "nodeId": 1508371591, + "name": "Pérols - Centre", + "lat": 43.5654383, + "lon": 3.9573953 + }, + { + "nodeId": 11885076563, + "name": "Ovalie", + "lat": 43.5914263, + "lon": 3.8478678 + }, + { + "nodeId": 1680725835, + "name": "Cougourlude", + "lat": 43.5713259, + "lon": 3.9141537 + }, + { + "nodeId": 2998606177, + "name": "Château d'Ô", + "lat": 43.6316307, + "lon": 3.8430936 + }, + { + "nodeId": 60939764, + "name": "Comédie", + "lat": 43.6084079, + "lon": 3.8797702 + }, + { + "nodeId": 231529652, + "name": "Saint-Cléophas", + "lat": 43.594954, + "lon": 3.8760145 + }, + { + "nodeId": 3123039812, + "name": "Tonnelles", + "lat": 43.6135181, + "lon": 3.8395235 + }, + { + "nodeId": 281259065, + "name": "Villeneuve d'Angoulême", + "lat": 43.5888673, + "lon": 3.865695 + }, + { + "nodeId": 11885078587, + "name": "Agropolis", + "lat": 43.6461984, + "lon": 3.8686021 + }, + { + "nodeId": 8719434195, + "name": "Garcia Lorca", + "lat": 43.5912508, + "lon": 3.8911346 + }, + { + "nodeId": 61103414, + "name": "Albert 1er - Saint-Charles", + "lat": 43.6164538, + "lon": 3.8741502 + }, + { + "nodeId": 267847611, + "name": "Léon Blum", + "lat": 43.6088993, + "lon": 3.8902941 + }, + { + "nodeId": 11891384903, + "name": "Gare Sud de France", + "lat": 43.5968999, + "lon": 3.9222244 + }, + { + "nodeId": 281259064, + "name": "Lemasson", + "lat": 43.59358, + "lon": 3.8731927 + }, + { + "nodeId": 70972317, + "name": "Corum", + "lat": 43.6144182, + "lon": 3.8818054 + }, + { + "nodeId": 350510758, + "name": "Nouveau Saint-Roch", + "lat": 43.5994208, + "lon": 3.8756775 + }, + { + "nodeId": 2577354970, + "name": "Malbosc - Domaine d'Ô", + "lat": 43.6345296, + "lon": 3.833307 + }, + { + "nodeId": 317827428, + "name": "Millénaire", + "lat": 43.6033557, + "lon": 3.9100221 + }, + { + "nodeId": 1675121448, + "name": "Gambetta - Chaptal", + "lat": 43.6062372, + "lon": 3.8727299 + }, + { + "nodeId": 1934914135, + "name": "Restanque", + "lat": 43.5904199, + "lon": 3.8849928 + }, + { + "nodeId": 308735605, + "name": "Aube Rouge", + "lat": 43.638641, + "lon": 3.9248354 + }, + { + "nodeId": 3728561514, + "name": "Peyrou - Arc de Triomphe", + "lat": 43.6117993, + "lon": 3.8723484 + }, + { + "nodeId": 3122456986, + "name": "Voltaire", + "lat": 43.6037185, + "lon": 3.8889694 + }, + { + "nodeId": 11885078571, + "name": "Cité Créative - Parc Montcalm", + "lat": 43.6015548, + "lon": 3.8622907 + }, + { + "nodeId": 11885076559, + "name": "Parc Font-Colombe", + "lat": 43.5952715, + "lon": 3.8374368 + }, + { + "nodeId": 2575419127, + "name": "Jules Guesde", + "lat": 43.6114471, + "lon": 3.8466375 + }, + { + "nodeId": 60025037, + "name": "Corum", + "lat": 43.6142561, + "lon": 3.881957 + }, + { + "nodeId": 2575419232, + "name": "Pilory", + "lat": 43.6195151, + "lon": 3.8319619 + }, + { + "nodeId": 2564554951, + "name": "Celleneuve", + "lat": 43.6154832, + "lon": 3.8258568 + }, + { + "nodeId": 231454841, + "name": "Les Aubes", + "lat": 43.6139508, + "lon": 3.8883314 + }, + { + "nodeId": 945144528, + "name": "Notre-Dame de Sablassou", + "lat": 43.6342577, + "lon": 3.9223924 + }, + { + "nodeId": 1547447278, + "name": "Clairval", + "lat": 43.6301681, + "lon": 3.9026917 + }, + { + "nodeId": 3124627562, + "name": "Port Marianne", + "lat": 43.601566, + "lon": 3.8994636 + }, + { + "nodeId": 1506442726, + "name": "Garcia Lorca", + "lat": 43.5911314, + "lon": 3.8909614 + }, + { + "nodeId": 308531607, + "name": "Jacou", + "lat": 43.6545596, + "lon": 3.9128047 + }, + { + "nodeId": 4345616053, + "name": "Saint-Guilhem - Courreau", + "lat": 43.6081284, + "lon": 3.8735437 + }, + { + "nodeId": 11885078589, + "name": "Montferrier-sur-Lez", + "lat": 43.6514042, + "lon": 3.8676268 + }, + { + "nodeId": 308734763, + "name": "Via Domitia", + "lat": 43.6468218, + "lon": 3.9294517 + }, + { + "nodeId": 3119255452, + "name": "Écopôle", + "lat": 43.5781392, + "lon": 3.9350421 + }, + { + "nodeId": 11808212967, + "name": "Saint-Éloi - Docteur Pezet", + "lat": 43.6271863, + "lon": 3.8668751 + }, + { + "nodeId": 11885078569, + "name": "Chamberte - Les Roses", + "lat": 43.6027152, + "lon": 3.8547873 + }, + { + "nodeId": 11885078579, + "name": "Université Paul Valéry", + "lat": 43.6301542, + "lon": 3.8695323 + }, + { + "nodeId": 2577880057, + "name": "Occitanie - Hôpitaux-Facultés", + "lat": 43.634628, + "lon": 3.8484797 + }, + { + "nodeId": 267929741, + "name": "Place de l'Europe", + "lat": 43.6072981, + "lon": 3.8939097 + }, + { + "nodeId": 126601804, + "name": "Boutonnet - Cité des Arts", + "lat": 43.6224984, + "lon": 3.8681444 + }, + { + "nodeId": 61094962, + "name": "Gare Saint-Roch", + "lat": 43.6056584, + "lon": 3.8801992 + }, + { + "nodeId": 38460665, + "name": "Croix d'Argent", + "lat": 43.5925048, + "lon": 3.8664382 + }, + { + "nodeId": 3124636922, + "name": "Rives du Lez - Consuls de Mer", + "lat": 43.6040207, + "lon": 3.8938614 + }, + { + "nodeId": 60025062, + "name": "Stade Philippidès", + "lat": 43.6189067, + "lon": 3.8694871 + }, + { + "nodeId": 1506442723, + "name": "La Rauze", + "lat": 43.5935375, + "lon": 3.8958178 + }, + { + "nodeId": 1506452485, + "name": "Observatoire", + "lat": 43.606427, + "lon": 3.8766896 + }, + { + "nodeId": 2305432922, + "name": "Gare Saint-Roch", + "lat": 43.6056635, + "lon": 3.8802526 + }, + { + "nodeId": 3123093631, + "name": "Boutonnet - Cité des Arts", + "lat": 43.6226771, + "lon": 3.868106 + }, + { + "nodeId": 3127567487, + "name": "Lattes Centre", + "lat": 43.570666, + "lon": 3.9052229 + }, + { + "nodeId": 3123033195, + "name": "Plan Cabanes", + "lat": 43.6085626, + "lon": 3.8681304 + }, + { + "nodeId": 1547454806, + "name": "Charles de Gaulle", + "lat": 43.628648, + "lon": 3.8978384 + }, + { + "nodeId": 11885078591, + "name": "Clapiers", + "lat": 43.6537424, + "lon": 3.8729045 + }, + { + "nodeId": 11885076555, + "name": "Grés de Montpellier", + "lat": 43.5929582, + "lon": 3.8237817 + }, + { + "nodeId": 1508371563, + "name": "Soriech", + "lat": 43.5827358, + "lon": 3.9256144 + }, + { + "nodeId": 13185641080, + "name": "Boirargues", + "lat": 43.5854084, + "lon": 3.9201909 + }, + { + "nodeId": 11885076557, + "name": "Parc des Bouisses", + "lat": 43.5930997, + "lon": 3.8297902 + }, + { + "nodeId": 60025048, + "lat": 43.6153181, + "lon": 3.8747854 + }, + { + "nodeId": 3118402878, + "lat": 43.615277, + "lon": 3.8749356 + }, + { + "nodeId": 2565049829, + "lat": 43.5972129, + "lon": 3.8761025 + }, + { + "nodeId": 1547389460, + "lat": 43.5973015, + "lon": 3.8760713 + }, + { + "nodeId": 1547389514, + "lat": 43.597384, + "lon": 3.8760408 + }, + { + "nodeId": 1547389446, + "lat": 43.5974779, + "lon": 3.8759863 + }, + { + "nodeId": 1547389527, + "lat": 43.5975618, + "lon": 3.875943 + }, + { + "nodeId": 3124581452, + "lat": 43.5976399, + "lon": 3.8759067 + }, + { + "nodeId": 1547389524, + "lat": 43.5977101, + "lon": 3.8758857 + }, + { + "nodeId": 1547389530, + "lat": 43.5980999, + "lon": 3.8758082 + }, + { + "nodeId": 1357871365, + "lat": 43.5990939, + "lon": 3.8757095 + }, + { + "nodeId": 3644585293, + "lat": 43.5996452, + "lon": 3.875654 + }, + { + "nodeId": 1547389478, + "lat": 43.5997546, + "lon": 3.8756429 + }, + { + "nodeId": 3644584894, + "lat": 43.599853, + "lon": 3.8756325 + }, + { + "nodeId": 1547389452, + "lat": 43.5999082, + "lon": 3.8756252 + }, + { + "nodeId": 1547389455, + "lat": 43.6002576, + "lon": 3.8755643 + }, + { + "nodeId": 3644585795, + "lat": 43.601212, + "lon": 3.8754078 + }, + { + "nodeId": 1547389485, + "lat": 43.6012616, + "lon": 3.8754001 + }, + { + "nodeId": 11025889286, + "lat": 43.6023943, + "lon": 3.8752064 + }, + { + "nodeId": 5225994445, + "lat": 43.6024216, + "lon": 3.8752017 + }, + { + "nodeId": 1547389513, + "lat": 43.6024454, + "lon": 3.8751976 + }, + { + "nodeId": 5225994442, + "lat": 43.6028315, + "lon": 3.8751163 + }, + { + "nodeId": 1547389552, + "lat": 43.6029052, + "lon": 3.875103 + }, + { + "nodeId": 1547389512, + "lat": 43.6029854, + "lon": 3.875104 + }, + { + "nodeId": 5225994433, + "lat": 43.6030174, + "lon": 3.8751134 + }, + { + "nodeId": 3124581457, + "lat": 43.6030448, + "lon": 3.8751346 + }, + { + "nodeId": 5225994435, + "lat": 43.6030722, + "lon": 3.8751537 + }, + { + "nodeId": 1547389481, + "lat": 43.6030964, + "lon": 3.8751831 + }, + { + "nodeId": 5225994440, + "lat": 43.6031157, + "lon": 3.8752162 + }, + { + "nodeId": 1547389560, + "lat": 43.6031367, + "lon": 3.8752523 + }, + { + "nodeId": 5225994438, + "lat": 43.6031475, + "lon": 3.8752864 + }, + { + "nodeId": 1547389459, + "lat": 43.6031607, + "lon": 3.8753375 + }, + { + "nodeId": 5225994439, + "lat": 43.6031674, + "lon": 3.875387 + }, + { + "nodeId": 1547389515, + "lat": 43.6031676, + "lon": 3.8754404 + }, + { + "nodeId": 1547389491, + "lat": 43.6031584, + "lon": 3.8755481 + }, + { + "nodeId": 5225994429, + "lat": 43.6031359, + "lon": 3.8757032 + }, + { + "nodeId": 5225994428, + "lat": 43.6030329, + "lon": 3.8764183 + }, + { + "nodeId": 12549178110, + "lat": 43.603006, + "lon": 3.8766066 + }, + { + "nodeId": 9907971609, + "lat": 43.6165466, + "lon": 3.819717 + }, + { + "nodeId": 2564254158, + "lat": 43.6165965, + "lon": 3.819693 + }, + { + "nodeId": 8073906643, + "lat": 43.614232, + "lon": 3.8818923 + }, + { + "nodeId": 13386945313, + "lat": 43.6143058, + "lon": 3.8820932 + }, + { + "nodeId": 1546423298, + "lat": 43.6143216, + "lon": 3.8821366 + }, + { + "nodeId": 9910364740, + "lat": 43.6143379, + "lon": 3.8821832 + }, + { + "nodeId": 60722461, + "lat": 43.6143725, + "lon": 3.882282 + }, + { + "nodeId": 279555983, + "lat": 43.5737819, + "lon": 3.8476102 + }, + { + "nodeId": 7111947907, + "lat": 43.5744236, + "lon": 3.8486749 + }, + { + "nodeId": 20933438, + "lat": 43.5745241, + "lon": 3.8488345 + }, + { + "nodeId": 1424231617, + "lat": 43.5744547, + "lon": 3.8487266 + }, + { + "nodeId": 7111947920, + "lat": 43.5745579, + "lon": 3.8488892 + }, + { + "nodeId": 7111947725, + "lat": 43.5749999, + "lon": 3.8496059 + }, + { + "nodeId": 1250211504, + "lat": 43.5756896, + "lon": 3.8507243 + }, + { + "nodeId": 231578487, + "lat": 43.5760171, + "lon": 3.851232 + }, + { + "nodeId": 10152795583, + "lat": 43.600221, + "lon": 3.9192398 + }, + { + "nodeId": 13235179541, + "lat": 43.5995614, + "lon": 3.9198459 + }, + { + "nodeId": 13180988516, + "lat": 43.5995188, + "lon": 3.919885 + }, + { + "nodeId": 13235179536, + "lat": 43.599466, + "lon": 3.9199314 + }, + { + "nodeId": 13180988515, + "lat": 43.5994496, + "lon": 3.9199459 + }, + { + "nodeId": 10152795586, + "lat": 43.598531, + "lon": 3.9207766 + }, + { + "nodeId": 10152795585, + "lat": 43.5979572, + "lon": 3.9212981 + }, + { + "nodeId": 13110738797, + "lat": 43.5974683, + "lon": 3.9217241 + }, + { + "nodeId": 13110738795, + "lat": 43.5973276, + "lon": 3.9218458 + }, + { + "nodeId": 10152869368, + "lat": 43.597384, + "lon": 3.9217961 + }, + { + "nodeId": 13290628963, + "lat": 43.5970767, + "lon": 3.9220679 + }, + { + "nodeId": 291356213, + "lat": 43.5791408, + "lon": 3.856278 + }, + { + "nodeId": 3124609062, + "lat": 43.5794528, + "lon": 3.8567925 + }, + { + "nodeId": 3124609064, + "lat": 43.5802168, + "lon": 3.8581473 + }, + { + "nodeId": 3124609063, + "lat": 43.579848, + "lon": 3.8574671 + }, + { + "nodeId": 1357946532, + "lat": 43.5804549, + "lon": 3.8586074 + }, + { + "nodeId": 12549252357, + "lat": 43.5804809, + "lon": 3.858662 + }, + { + "nodeId": 976921090, + "lat": 43.6137304, + "lon": 3.8827417 + }, + { + "nodeId": 976921295, + "lat": 43.6136246, + "lon": 3.8827109 + }, + { + "nodeId": 60722814, + "lat": 43.6135244, + "lon": 3.8826898 + }, + { + "nodeId": 291451614, + "lat": 43.6134111, + "lon": 3.8826788 + }, + { + "nodeId": 291451610, + "lat": 43.6131635, + "lon": 3.8826612 + }, + { + "nodeId": 976921270, + "lat": 43.6129919, + "lon": 3.8826591 + }, + { + "nodeId": 12549104235, + "lat": 43.6059961, + "lon": 3.8825684 + }, + { + "nodeId": 12549104233, + "lat": 43.6061417, + "lon": 3.8826794 + }, + { + "nodeId": 60722785, + "lat": 43.6062322, + "lon": 3.8827484 + }, + { + "nodeId": 12085703504, + "lat": 43.6062974, + "lon": 3.8827953 + }, + { + "nodeId": 3118564772, + "lat": 43.6064903, + "lon": 3.8829342 + }, + { + "nodeId": 3811884920, + "lat": 43.6066851, + "lon": 3.8830627 + }, + { + "nodeId": 3118564773, + "lat": 43.6067383, + "lon": 3.8830978 + }, + { + "nodeId": 3811884923, + "lat": 43.6067746, + "lon": 3.883116 + }, + { + "nodeId": 3118564774, + "lat": 43.6069258, + "lon": 3.8831919 + }, + { + "nodeId": 3118564776, + "lat": 43.6073406, + "lon": 3.8833763 + }, + { + "nodeId": 3118564777, + "lat": 43.6074394, + "lon": 3.8834127 + }, + { + "nodeId": 3118564784, + "lat": 43.6075438, + "lon": 3.8834501 + }, + { + "nodeId": 3118564787, + "lat": 43.6076506, + "lon": 3.8834763 + }, + { + "nodeId": 3118564790, + "lat": 43.6078182, + "lon": 3.8834992 + }, + { + "nodeId": 3118564792, + "lat": 43.6078888, + "lon": 3.8835213 + }, + { + "nodeId": 3118564793, + "lat": 43.6079607, + "lon": 3.8835654 + }, + { + "nodeId": 3811884935, + "lat": 43.6080036, + "lon": 3.8836234 + }, + { + "nodeId": 3118564794, + "lat": 43.6080178, + "lon": 3.8836425 + }, + { + "nodeId": 3118564797, + "lat": 43.6080423, + "lon": 3.8837197 + }, + { + "nodeId": 3811884941, + "lat": 43.6080442, + "lon": 3.8837363 + }, + { + "nodeId": 3118564798, + "lat": 43.608054, + "lon": 3.8838206 + }, + { + "nodeId": 3118564796, + "lat": 43.6080399, + "lon": 3.8839232 + }, + { + "nodeId": 3118564795, + "lat": 43.6080202, + "lon": 3.8839953 + }, + { + "nodeId": 3118564791, + "lat": 43.6078594, + "lon": 3.8842827 + }, + { + "nodeId": 3118564788, + "lat": 43.6077145, + "lon": 3.8845464 + }, + { + "nodeId": 3118564786, + "lat": 43.6076371, + "lon": 3.8847194 + }, + { + "nodeId": 3811884928, + "lat": 43.6075882, + "lon": 3.8848473 + }, + { + "nodeId": 3118564785, + "lat": 43.6075634, + "lon": 3.8849119 + }, + { + "nodeId": 3118564782, + "lat": 43.607502, + "lon": 3.8850959 + }, + { + "nodeId": 3118564780, + "lat": 43.6074806, + "lon": 3.8851977 + }, + { + "nodeId": 3118564778, + "lat": 43.6074726, + "lon": 3.8852867 + }, + { + "nodeId": 3118564779, + "lat": 43.6074726, + "lon": 3.8853842 + }, + { + "nodeId": 3118564781, + "lat": 43.6074824, + "lon": 3.8854682 + }, + { + "nodeId": 3118564783, + "lat": 43.6075072, + "lon": 3.8856042 + }, + { + "nodeId": 1811512146, + "lat": 43.6075206, + "lon": 3.8857061 + }, + { + "nodeId": 942738973, + "lat": 43.6075239, + "lon": 3.8857629 + }, + { + "nodeId": 294764980, + "lat": 43.6075257, + "lon": 3.8858379 + }, + { + "nodeId": 1811512149, + "lat": 43.6075252, + "lon": 3.885926 + }, + { + "nodeId": 60722773, + "lat": 43.6075157, + "lon": 3.8861143 + }, + { + "nodeId": 942738843, + "lat": 43.6075132, + "lon": 3.8862084 + }, + { + "nodeId": 60722772, + "lat": 43.6075187, + "lon": 3.8862669 + }, + { + "nodeId": 942738889, + "lat": 43.6075304, + "lon": 3.886339 + }, + { + "nodeId": 294764983, + "lat": 43.6075924, + "lon": 3.8864793 + }, + { + "nodeId": 1811512153, + "lat": 43.607555, + "lon": 3.8864145 + }, + { + "nodeId": 60722771, + "lat": 43.6076289, + "lon": 3.8865136 + }, + { + "nodeId": 294764973, + "lat": 43.6076853, + "lon": 3.886555 + }, + { + "nodeId": 3118564789, + "lat": 43.6077235, + "lon": 3.8865682 + }, + { + "nodeId": 60722770, + "lat": 43.6077788, + "lon": 3.8865802 + }, + { + "nodeId": 9735726651, + "lat": 43.6079323, + "lon": 3.8865994 + }, + { + "nodeId": 60722769, + "lat": 43.6082501, + "lon": 3.8866386 + }, + { + "nodeId": 9735726647, + "lat": 43.6082824, + "lon": 3.8866432 + }, + { + "nodeId": 60722768, + "lat": 43.6089329, + "lon": 3.886733 + }, + { + "nodeId": 60722767, + "lat": 43.6089846, + "lon": 3.8867534 + }, + { + "nodeId": 3118564800, + "lat": 43.6088583, + "lon": 3.8867204 + }, + { + "nodeId": 3118564801, + "lat": 43.6090306, + "lon": 3.8867911 + }, + { + "nodeId": 60722766, + "lat": 43.6090719, + "lon": 3.8868451 + }, + { + "nodeId": 60722765, + "lat": 43.609107, + "lon": 3.8869206 + }, + { + "nodeId": 60722764, + "lat": 43.6091257, + "lon": 3.887031 + }, + { + "nodeId": 295092708, + "lat": 43.6091248, + "lon": 3.8871446 + }, + { + "nodeId": 12549104237, + "lat": 43.6091139, + "lon": 3.887303 + }, + { + "nodeId": 3119065617, + "lat": 43.6019956, + "lon": 3.900763 + }, + { + "nodeId": 2572111077, + "lat": 43.6018745, + "lon": 3.9003795 + }, + { + "nodeId": 3670803278, + "lat": 43.6018086, + "lon": 3.9001874 + }, + { + "nodeId": 2572111076, + "lat": 43.6016942, + "lon": 3.8998353 + }, + { + "nodeId": 2572111096, + "lat": 43.6014038, + "lon": 3.8989885 + }, + { + "nodeId": 5160569079, + "lat": 43.6013606, + "lon": 3.8988628 + }, + { + "nodeId": 3119255449, + "lat": 43.6012047, + "lon": 3.8984087 + }, + { + "nodeId": 2572111075, + "lat": 43.6009779, + "lon": 3.8977299 + }, + { + "nodeId": 2572111103, + "lat": 43.6009202, + "lon": 3.8975588 + }, + { + "nodeId": 13272459497, + "lat": 43.6008254, + "lon": 3.8973384 + }, + { + "nodeId": 3796070191, + "lat": 43.6008124, + "lon": 3.8973083 + }, + { + "nodeId": 2572111105, + "lat": 43.6007873, + "lon": 3.8972499 + }, + { + "nodeId": 2565144103, + "lat": 43.6006905, + "lon": 3.8970567 + }, + { + "nodeId": 9779381520, + "lat": 43.615208, + "lon": 3.8752757 + }, + { + "nodeId": 9779381522, + "lat": 43.6150459, + "lon": 3.8760742 + }, + { + "nodeId": 12194289176, + "lat": 43.6151399, + "lon": 3.8756111 + }, + { + "nodeId": 60025047, + "lat": 43.614798, + "lon": 3.8773705 + }, + { + "nodeId": 5557073539, + "lat": 43.6147749, + "lon": 3.8774866 + }, + { + "nodeId": 61715211, + "lat": 43.6148914, + "lon": 3.8768351 + }, + { + "nodeId": 12090280101, + "lat": 43.6147655, + "lon": 3.8775994 + }, + { + "nodeId": 3779650585, + "lat": 43.6147553, + "lon": 3.8777444 + }, + { + "nodeId": 12549178108, + "lat": 43.6146894, + "lon": 3.8788274 + }, + { + "nodeId": 60025045, + "lat": 43.6146785, + "lon": 3.8790062 + }, + { + "nodeId": 3118402868, + "lat": 43.6146512, + "lon": 3.8794747 + }, + { + "nodeId": 60025044, + "lat": 43.6146294, + "lon": 3.8796635 + }, + { + "nodeId": 3118402863, + "lat": 43.6145927, + "lon": 3.8798163 + }, + { + "nodeId": 60025043, + "lat": 43.6145329, + "lon": 3.8799661 + }, + { + "nodeId": 60025042, + "lat": 43.6143821, + "lon": 3.8802095 + }, + { + "nodeId": 12549178106, + "lat": 43.6142138, + "lon": 3.8804282 + }, + { + "nodeId": 6718462178, + "lat": 43.6141845, + "lon": 3.8804663 + }, + { + "nodeId": 60025041, + "lat": 43.614122, + "lon": 3.8805476 + }, + { + "nodeId": 246650644, + "lat": 43.6140687, + "lon": 3.8806315 + }, + { + "nodeId": 246650646, + "lat": 43.6139974, + "lon": 3.8808215 + }, + { + "nodeId": 246650645, + "lat": 43.614034, + "lon": 3.8807091 + }, + { + "nodeId": 976921326, + "lat": 43.6139753, + "lon": 3.8809351 + }, + { + "nodeId": 60025039, + "lat": 43.6139722, + "lon": 3.8810501 + }, + { + "nodeId": 976921086, + "lat": 43.6139815, + "lon": 3.881172 + }, + { + "nodeId": 976921278, + "lat": 43.6140026, + "lon": 3.8812673 + }, + { + "nodeId": 11586524058, + "lat": 43.614059, + "lon": 3.8814346 + }, + { + "nodeId": 8073906644, + "lat": 43.6141513, + "lon": 3.8816753 + }, + { + "nodeId": 1503531785, + "lat": 43.5645958, + "lon": 3.9581083 + }, + { + "nodeId": 1503531780, + "lat": 43.5639025, + "lon": 3.9586889 + }, + { + "nodeId": 3119254613, + "lat": 43.563347, + "lon": 3.9591589 + }, + { + "nodeId": 1503531759, + "lat": 43.562823, + "lon": 3.9595815 + }, + { + "nodeId": 3119254612, + "lat": 43.5620503, + "lon": 3.9602259 + }, + { + "nodeId": 1503531766, + "lat": 43.5611902, + "lon": 3.9609789 + }, + { + "nodeId": 1503531772, + "lat": 43.5596047, + "lon": 3.9623787 + }, + { + "nodeId": 3119254611, + "lat": 43.5592721, + "lon": 3.9626751 + }, + { + "nodeId": 1503531803, + "lat": 43.5591163, + "lon": 3.9627966 + }, + { + "nodeId": 3119254610, + "lat": 43.5589105, + "lon": 3.9629353 + }, + { + "nodeId": 1503531715, + "lat": 43.5585786, + "lon": 3.9631446 + }, + { + "nodeId": 979209452, + "lat": 43.6503841, + "lon": 3.9204071 + }, + { + "nodeId": 2564254143, + "lat": 43.6167016, + "lon": 3.8196453 + }, + { + "nodeId": 979209565, + "lat": 43.6508995, + "lon": 3.9200876 + }, + { + "nodeId": 2564254126, + "lat": 43.6168628, + "lon": 3.8195622 + }, + { + "nodeId": 2564254123, + "lat": 43.6169619, + "lon": 3.8195085 + }, + { + "nodeId": 3781187311, + "lat": 43.6170998, + "lon": 3.8194038 + }, + { + "nodeId": 2564254141, + "lat": 43.6171812, + "lon": 3.8193369 + }, + { + "nodeId": 2564254145, + "lat": 43.6173146, + "lon": 3.8192249 + }, + { + "nodeId": 2564254164, + "lat": 43.6175231, + "lon": 3.8190539 + }, + { + "nodeId": 2564254190, + "lat": 43.6176411, + "lon": 3.8189339 + }, + { + "nodeId": 2564254206, + "lat": 43.6178202, + "lon": 3.8187418 + }, + { + "nodeId": 2564254124, + "lat": 43.6179697, + "lon": 3.8185725 + }, + { + "nodeId": 2564254175, + "lat": 43.6181239, + "lon": 3.8183971 + }, + { + "nodeId": 8736481257, + "lat": 43.6181471, + "lon": 3.8183712 + }, + { + "nodeId": 3779581649, + "lat": 43.6036844, + "lon": 3.9204327 + }, + { + "nodeId": 2575611338, + "lat": 43.6036378, + "lon": 3.9204571 + }, + { + "nodeId": 60732074, + "lat": 43.6002269, + "lon": 3.8962419 + }, + { + "nodeId": 1503531713, + "lat": 43.5675387, + "lon": 3.9557491 + }, + { + "nodeId": 3119255445, + "lat": 43.6002423, + "lon": 3.8962717 + }, + { + "nodeId": 1503531776, + "lat": 43.5673764, + "lon": 3.9558845 + }, + { + "nodeId": 1503531788, + "lat": 43.5662911, + "lon": 3.956677 + }, + { + "nodeId": 1503531790, + "lat": 43.5666389, + "lon": 3.9563941 + }, + { + "nodeId": 10942076562, + "lat": 43.6006349, + "lon": 3.91887 + }, + { + "nodeId": 1248723642, + "lat": 43.571157, + "lon": 3.836757 + }, + { + "nodeId": 3789446939, + "lat": 43.5710636, + "lon": 3.8369042 + }, + { + "nodeId": 3124581126, + "lat": 43.5709853, + "lon": 3.8370276 + }, + { + "nodeId": 541638803, + "lat": 43.5709441, + "lon": 3.8370995 + }, + { + "nodeId": 716072709, + "lat": 43.5709039, + "lon": 3.8371892 + }, + { + "nodeId": 1540200972, + "lat": 43.5708727, + "lon": 3.8373045 + }, + { + "nodeId": 1994630028, + "lat": 43.5708571, + "lon": 3.837451 + }, + { + "nodeId": 1540200955, + "lat": 43.5707849, + "lon": 3.8384716 + }, + { + "nodeId": 3789755959, + "lat": 43.5707976, + "lon": 3.8382915 + }, + { + "nodeId": 1540200964, + "lat": 43.5707725, + "lon": 3.8387105 + }, + { + "nodeId": 231578472, + "lat": 43.5707744, + "lon": 3.8393331 + }, + { + "nodeId": 1427248853, + "lat": 43.6222478, + "lon": 3.8829932 + }, + { + "nodeId": 978690535, + "lat": 43.6223938, + "lon": 3.8829342 + }, + { + "nodeId": 912002237, + "lat": 43.6225208, + "lon": 3.8828744 + }, + { + "nodeId": 5329445663, + "lat": 43.6227395, + "lon": 3.8827879 + }, + { + "nodeId": 912002214, + "lat": 43.6228596, + "lon": 3.8827469 + }, + { + "nodeId": 5329445665, + "lat": 43.6229516, + "lon": 3.8827262 + }, + { + "nodeId": 912002200, + "lat": 43.623043, + "lon": 3.8827185 + }, + { + "nodeId": 5329445668, + "lat": 43.6231186, + "lon": 3.8827108 + }, + { + "nodeId": 74943035, + "lat": 43.6231619, + "lon": 3.8827125 + }, + { + "nodeId": 5329445669, + "lat": 43.6232353, + "lon": 3.8827109 + }, + { + "nodeId": 74943034, + "lat": 43.6233235, + "lon": 3.882709 + }, + { + "nodeId": 1427248788, + "lat": 43.6245241, + "lon": 3.8826936 + }, + { + "nodeId": 74943033, + "lat": 43.6247388, + "lon": 3.8826766 + }, + { + "nodeId": 5329445676, + "lat": 43.6238576, + "lon": 3.8826987 + }, + { + "nodeId": 911914488, + "lat": 43.6249618, + "lon": 3.8826515 + }, + { + "nodeId": 1427248780, + "lat": 43.6251456, + "lon": 3.8826255 + }, + { + "nodeId": 5329445678, + "lat": 43.6243007, + "lon": 3.8826967 + }, + { + "nodeId": 74943031, + "lat": 43.6258961, + "lon": 3.8825342 + }, + { + "nodeId": 74943032, + "lat": 43.6255281, + "lon": 3.8825811 + }, + { + "nodeId": 3911088521, + "lat": 43.6259513, + "lon": 3.8825322 + }, + { + "nodeId": 74943030, + "lat": 43.6259854, + "lon": 3.8825342 + }, + { + "nodeId": 10157301054, + "lat": 43.6260126, + "lon": 3.8825383 + }, + { + "nodeId": 911914400, + "lat": 43.6260387, + "lon": 3.8825423 + }, + { + "nodeId": 911914450, + "lat": 43.6260878, + "lon": 3.882561 + }, + { + "nodeId": 74943029, + "lat": 43.6261149, + "lon": 3.882578 + }, + { + "nodeId": 10157275286, + "lat": 43.6261333, + "lon": 3.8825983 + }, + { + "nodeId": 911914425, + "lat": 43.6261548, + "lon": 3.882622 + }, + { + "nodeId": 911914478, + "lat": 43.626183, + "lon": 3.8826643 + }, + { + "nodeId": 911914382, + "lat": 43.6262029, + "lon": 3.8827172 + }, + { + "nodeId": 74943028, + "lat": 43.6262233, + "lon": 3.8827944 + }, + { + "nodeId": 6302382141, + "lat": 43.6262265, + "lon": 3.8828272 + }, + { + "nodeId": 6568530983, + "lat": 43.6262633, + "lon": 3.8832078 + }, + { + "nodeId": 6302382159, + "lat": 43.6263, + "lon": 3.8835612 + }, + { + "nodeId": 74943026, + "lat": 43.6263233, + "lon": 3.8837789 + }, + { + "nodeId": 911914439, + "lat": 43.6263542, + "lon": 3.8841109 + }, + { + "nodeId": 4023228562, + "lat": 43.6263609, + "lon": 3.8842678 + }, + { + "nodeId": 3911089204, + "lat": 43.6263691, + "lon": 3.8844584 + }, + { + "nodeId": 1357928567, + "lat": 43.6263705, + "lon": 3.884589 + }, + { + "nodeId": 74943024, + "lat": 43.6263768, + "lon": 3.8854461 + }, + { + "nodeId": 74943023, + "lat": 43.6263818, + "lon": 3.8869152 + }, + { + "nodeId": 3118402702, + "lat": 43.6264021, + "lon": 3.8872834 + }, + { + "nodeId": 911914467, + "lat": 43.626427, + "lon": 3.8874589 + }, + { + "nodeId": 911914490, + "lat": 43.6264658, + "lon": 3.8876392 + }, + { + "nodeId": 74943022, + "lat": 43.626517, + "lon": 3.8878348 + }, + { + "nodeId": 911914376, + "lat": 43.626387, + "lon": 3.8871146 + }, + { + "nodeId": 1357928571, + "lat": 43.6266552, + "lon": 3.8883442 + }, + { + "nodeId": 5329559713, + "lat": 43.62685, + "lon": 3.8890403 + }, + { + "nodeId": 74943021, + "lat": 43.6269046, + "lon": 3.8892353 + }, + { + "nodeId": 3911089220, + "lat": 43.6269359, + "lon": 3.889376 + }, + { + "nodeId": 715939112, + "lat": 43.6269787, + "lon": 3.8895534 + }, + { + "nodeId": 2387184190, + "lat": 43.6270041, + "lon": 3.8896828 + }, + { + "nodeId": 3966921614, + "lat": 43.6270197, + "lon": 3.8897977 + }, + { + "nodeId": 3118402714, + "lat": 43.6270648, + "lon": 3.8900867 + }, + { + "nodeId": 3118402716, + "lat": 43.6271338, + "lon": 3.8905609 + }, + { + "nodeId": 3118402718, + "lat": 43.6271963, + "lon": 3.8909251 + }, + { + "nodeId": 74943020, + "lat": 43.6272519, + "lon": 3.8911736 + }, + { + "nodeId": 3118402722, + "lat": 43.6273411, + "lon": 3.8915036 + }, + { + "nodeId": 3911089243, + "lat": 43.627356, + "lon": 3.8915603 + }, + { + "nodeId": 74943019, + "lat": 43.6273727, + "lon": 3.8916066 + }, + { + "nodeId": 101499596, + "lat": 43.6275203, + "lon": 3.8920109 + }, + { + "nodeId": 101499598, + "lat": 43.627626, + "lon": 3.8922565 + }, + { + "nodeId": 101499601, + "lat": 43.627777, + "lon": 3.8925657 + }, + { + "nodeId": 101499602, + "lat": 43.6281394, + "lon": 3.8932219 + }, + { + "nodeId": 101499605, + "lat": 43.6284195, + "lon": 3.8937302 + }, + { + "nodeId": 101499606, + "lat": 43.628621, + "lon": 3.8940913 + }, + { + "nodeId": 1547411695, + "lat": 43.645859, + "lon": 3.93009 + }, + { + "nodeId": 1547411658, + "lat": 43.6460894, + "lon": 3.9299674 + }, + { + "nodeId": 1547411669, + "lat": 43.6462694, + "lon": 3.9298509 + }, + { + "nodeId": 1201917566, + "lat": 43.6465052, + "lon": 3.9296862 + }, + { + "nodeId": 1547411662, + "lat": 43.6470587, + "lon": 3.9292826 + }, + { + "nodeId": 1547411694, + "lat": 43.6472216, + "lon": 3.9291519 + }, + { + "nodeId": 308531347, + "lat": 43.6473506, + "lon": 3.9290385 + }, + { + "nodeId": 3810224711, + "lat": 43.6265143, + "lon": 3.8662719 + }, + { + "nodeId": 13351269292, + "lat": 43.626452, + "lon": 3.8663072 + }, + { + "nodeId": 12576551196, + "lat": 43.626475, + "lon": 3.8662926 + }, + { + "nodeId": 1584025859, + "lat": 43.6264167, + "lon": 3.8663296 + }, + { + "nodeId": 2479837308, + "lat": 43.6263859, + "lon": 3.8663465 + }, + { + "nodeId": 2479837360, + "lat": 43.6263319, + "lon": 3.8663761 + }, + { + "nodeId": 13351269294, + "lat": 43.6263036, + "lon": 3.8663887 + }, + { + "nodeId": 1584025856, + "lat": 43.626239, + "lon": 3.8664175 + }, + { + "nodeId": 60025067, + "lat": 43.6254962, + "lon": 3.8667611 + }, + { + "nodeId": 1184212199, + "lat": 43.6246819, + "lon": 3.8671367 + }, + { + "nodeId": 2421896321, + "lat": 43.6235613, + "lon": 3.8676553 + }, + { + "nodeId": 9735869055, + "lat": 43.6228968, + "lon": 3.8679611 + }, + { + "nodeId": 6843951478, + "lat": 43.6228357, + "lon": 3.8679892 + }, + { + "nodeId": 12505089949, + "lat": 43.6224151, + "lon": 3.8681821 + }, + { + "nodeId": 2421895313, + "lat": 43.6215945, + "lon": 3.8685616 + }, + { + "nodeId": 3123093645, + "lat": 43.6206362, + "lon": 3.8690059 + }, + { + "nodeId": 9735869044, + "lat": 43.6197813, + "lon": 3.8693902 + }, + { + "nodeId": 3123093644, + "lat": 43.6198832, + "lon": 3.8693511 + }, + { + "nodeId": 60025063, + "lat": 43.6196627, + "lon": 3.8694377 + }, + { + "nodeId": 3123093643, + "lat": 43.6195635, + "lon": 3.8694563 + }, + { + "nodeId": 2078140306, + "lat": 43.6194793, + "lon": 3.8694679 + }, + { + "nodeId": 9735869053, + "lat": 43.6192066, + "lon": 3.8694772 + }, + { + "nodeId": 9735869030, + "lat": 43.6187581, + "lon": 3.8694911 + }, + { + "nodeId": 60025061, + "lat": 43.6179999, + "lon": 3.8695115 + }, + { + "nodeId": 2421880159, + "lat": 43.6178952, + "lon": 3.8695334 + }, + { + "nodeId": 2421880157, + "lat": 43.617708, + "lon": 3.8696824 + }, + { + "nodeId": 60025059, + "lat": 43.6178056, + "lon": 3.869586 + }, + { + "nodeId": 3123093642, + "lat": 43.6176597, + "lon": 3.8697481 + }, + { + "nodeId": 221757533, + "lat": 43.6176178, + "lon": 3.869834 + }, + { + "nodeId": 60025058, + "lat": 43.6175431, + "lon": 3.8700441 + }, + { + "nodeId": 2421880161, + "lat": 43.6174819, + "lon": 3.870271 + }, + { + "nodeId": 3123093634, + "lat": 43.6174748, + "lon": 3.8703754 + }, + { + "nodeId": 60025057, + "lat": 43.6174748, + "lon": 3.8705036 + }, + { + "nodeId": 221804481, + "lat": 43.6175311, + "lon": 3.8709529 + }, + { + "nodeId": 221758027, + "lat": 43.6175566, + "lon": 3.8711613 + }, + { + "nodeId": 3123093636, + "lat": 43.6175569, + "lon": 3.8712962 + }, + { + "nodeId": 60025056, + "lat": 43.6175398, + "lon": 3.8714208 + }, + { + "nodeId": 60025055, + "lat": 43.6175015, + "lon": 3.8715535 + }, + { + "nodeId": 2421880154, + "lat": 43.6173399, + "lon": 3.8719315 + }, + { + "nodeId": 60025053, + "lat": 43.6170125, + "lon": 3.872967 + }, + { + "nodeId": 5158728474, + "lat": 43.6169735, + "lon": 3.8730788 + }, + { + "nodeId": 247386281, + "lat": 43.6169398, + "lon": 3.8731945 + }, + { + "nodeId": 11664796809, + "lat": 43.616929, + "lon": 3.8732291 + }, + { + "nodeId": 12542859572, + "lat": 43.6169159, + "lon": 3.8732712 + }, + { + "nodeId": 60025052, + "lat": 43.6168396, + "lon": 3.8735159 + }, + { + "nodeId": 5158728478, + "lat": 43.6168754, + "lon": 3.8734011 + }, + { + "nodeId": 3118402902, + "lat": 43.61678, + "lon": 3.873665 + }, + { + "nodeId": 3118402900, + "lat": 43.616715, + "lon": 3.8737757 + }, + { + "nodeId": 5158728476, + "lat": 43.616658, + "lon": 3.8738572 + }, + { + "nodeId": 1508406332, + "lat": 43.6166171, + "lon": 3.8739132 + }, + { + "nodeId": 4592566663, + "lat": 43.603569, + "lon": 3.9204883 + }, + { + "nodeId": 4592566662, + "lat": 43.6034611, + "lon": 3.9205372 + }, + { + "nodeId": 3775381431, + "lat": 43.5582641, + "lon": 3.9633972 + }, + { + "nodeId": 2730687924, + "lat": 43.5582113, + "lon": 3.9634433 + }, + { + "nodeId": 3775381423, + "lat": 43.5581334, + "lon": 3.9635045 + }, + { + "nodeId": 979209317, + "lat": 43.6474486, + "lon": 3.9289492 + }, + { + "nodeId": 979209720, + "lat": 43.6475002, + "lon": 3.9288969 + }, + { + "nodeId": 308531348, + "lat": 43.6475581, + "lon": 3.9288153 + }, + { + "nodeId": 979210056, + "lat": 43.6475976, + "lon": 3.9287512 + }, + { + "nodeId": 979209506, + "lat": 43.647636, + "lon": 3.9286672 + }, + { + "nodeId": 979209058, + "lat": 43.6476653, + "lon": 3.9285919 + }, + { + "nodeId": 979208909, + "lat": 43.6476894, + "lon": 3.9285 + }, + { + "nodeId": 979209599, + "lat": 43.6477134, + "lon": 3.9283819 + }, + { + "nodeId": 979210255, + "lat": 43.6477491, + "lon": 3.9281845 + }, + { + "nodeId": 979208836, + "lat": 43.6478138, + "lon": 3.9278035 + }, + { + "nodeId": 979209971, + "lat": 43.6477895, + "lon": 3.927954 + }, + { + "nodeId": 368004427, + "lat": 43.647835, + "lon": 3.9276221 + }, + { + "nodeId": 979209107, + "lat": 43.6478487, + "lon": 3.9274795 + }, + { + "nodeId": 979209513, + "lat": 43.6478579, + "lon": 3.927252 + }, + { + "nodeId": 979210197, + "lat": 43.6478603, + "lon": 3.9269651 + }, + { + "nodeId": 979209014, + "lat": 43.6478536, + "lon": 3.9267292 + }, + { + "nodeId": 368004426, + "lat": 43.647825, + "lon": 3.9264478 + }, + { + "nodeId": 979209076, + "lat": 43.6477875, + "lon": 3.926195 + }, + { + "nodeId": 308531349, + "lat": 43.6473554, + "lon": 3.9239596 + }, + { + "nodeId": 979210087, + "lat": 43.6473189, + "lon": 3.923722 + }, + { + "nodeId": 979208904, + "lat": 43.64731, + "lon": 3.9235427 + }, + { + "nodeId": 979209965, + "lat": 43.6473124, + "lon": 3.9233735 + }, + { + "nodeId": 979209674, + "lat": 43.6473246, + "lon": 3.9231976 + }, + { + "nodeId": 979208830, + "lat": 43.6473894, + "lon": 3.9228354 + }, + { + "nodeId": 368004428, + "lat": 43.6473578, + "lon": 3.9229813 + }, + { + "nodeId": 979209790, + "lat": 43.647443, + "lon": 3.9226631 + }, + { + "nodeId": 979210123, + "lat": 43.647495, + "lon": 3.9225293 + }, + { + "nodeId": 979209225, + "lat": 43.6475461, + "lon": 3.9224201 + }, + { + "nodeId": 979208929, + "lat": 43.6476108, + "lon": 3.9222947 + }, + { + "nodeId": 3936092644, + "lat": 43.6476191, + "lon": 3.9222815 + }, + { + "nodeId": 1547408265, + "lat": 43.6476447, + "lon": 3.922241 + }, + { + "nodeId": 1547408262, + "lat": 43.6478436, + "lon": 3.9219885 + }, + { + "nodeId": 1547408248, + "lat": 43.6477341, + "lon": 3.9221134 + }, + { + "nodeId": 1547408250, + "lat": 43.6479693, + "lon": 3.9218702 + }, + { + "nodeId": 11377320193, + "lat": 43.6480488, + "lon": 3.921811 + }, + { + "nodeId": 1547408253, + "lat": 43.6481235, + "lon": 3.9217604 + }, + { + "nodeId": 60722803, + "lat": 43.6091723, + "lon": 3.8812719 + }, + { + "nodeId": 979209825, + "lat": 43.6484359, + "lon": 3.9215702 + }, + { + "nodeId": 2305432997, + "lat": 43.6090889, + "lon": 3.8811458 + }, + { + "nodeId": 60722802, + "lat": 43.6090224, + "lon": 3.8810353 + }, + { + "nodeId": 267695343, + "lat": 43.6089265, + "lon": 3.8808293 + }, + { + "nodeId": 11881765496, + "lat": 43.6087826, + "lon": 3.8804514 + }, + { + "nodeId": 940559073, + "lat": 43.6087606, + "lon": 3.8803937 + }, + { + "nodeId": 11881765491, + "lat": 43.6088255, + "lon": 3.880564 + }, + { + "nodeId": 11881765495, + "lat": 43.6087546, + "lon": 3.880381 + }, + { + "nodeId": 940558839, + "lat": 43.6086978, + "lon": 3.880261 + }, + { + "nodeId": 940559121, + "lat": 43.6086042, + "lon": 3.8800934 + }, + { + "nodeId": 11881765492, + "lat": 43.6082711, + "lon": 3.8795522 + }, + { + "nodeId": 11881765493, + "lat": 43.6085075, + "lon": 3.8799342 + }, + { + "nodeId": 940558775, + "lat": 43.6082293, + "lon": 3.8794855 + }, + { + "nodeId": 940559034, + "lat": 43.6081708, + "lon": 3.8794097 + }, + { + "nodeId": 60722798, + "lat": 43.6081046, + "lon": 3.8793638 + }, + { + "nodeId": 940558639, + "lat": 43.6080435, + "lon": 3.8793418 + }, + { + "nodeId": 1836141036, + "lat": 43.6079851, + "lon": 3.8793437 + }, + { + "nodeId": 6328672241, + "lat": 43.6079384, + "lon": 3.8793579 + }, + { + "nodeId": 940558515, + "lat": 43.6078925, + "lon": 3.8793718 + }, + { + "nodeId": 11293148822, + "lat": 43.6078768, + "lon": 3.8793779 + }, + { + "nodeId": 1111379585, + "lat": 43.6068502, + "lon": 3.8797774 + }, + { + "nodeId": 2305432980, + "lat": 43.6063523, + "lon": 3.8799492 + }, + { + "nodeId": 2305432979, + "lat": 43.6063198, + "lon": 3.8799616 + }, + { + "nodeId": 2305432977, + "lat": 43.6061822, + "lon": 3.8800093 + }, + { + "nodeId": 2305432966, + "lat": 43.6057309, + "lon": 3.8801714 + }, + { + "nodeId": 2305432958, + "lat": 43.6055046, + "lon": 3.8802583 + }, + { + "nodeId": 13386945308, + "lat": 43.6052994, + "lon": 3.8803351 + }, + { + "nodeId": 11881765494, + "lat": 43.6052856, + "lon": 3.8803403 + }, + { + "nodeId": 60722796, + "lat": 43.6052697, + "lon": 3.8803462 + }, + { + "nodeId": 60722793, + "lat": 43.6051882, + "lon": 3.8809142 + }, + { + "nodeId": 2575586466, + "lat": 43.6048289, + "lon": 3.89472 + }, + { + "nodeId": 3119065624, + "lat": 43.6053991, + "lon": 3.881231 + }, + { + "nodeId": 9910283319, + "lat": 43.6047187, + "lon": 3.8947641 + }, + { + "nodeId": 9910283318, + "lat": 43.6046656, + "lon": 3.8947828 + }, + { + "nodeId": 943983652, + "lat": 43.6046175, + "lon": 3.8947966 + }, + { + "nodeId": 5130642886, + "lat": 43.6045804, + "lon": 3.8948063 + }, + { + "nodeId": 950758548, + "lat": 43.6045298, + "lon": 3.8948179 + }, + { + "nodeId": 5130642870, + "lat": 43.6044547, + "lon": 3.8948322 + }, + { + "nodeId": 5130642872, + "lat": 43.6044133, + "lon": 3.8948404 + }, + { + "nodeId": 5130642868, + "lat": 43.6040127, + "lon": 3.8949146 + }, + { + "nodeId": 1325351626, + "lat": 43.6039822, + "lon": 3.8949213 + }, + { + "nodeId": 2575586325, + "lat": 43.6038828, + "lon": 3.8949375 + }, + { + "nodeId": 5130642854, + "lat": 43.6039571, + "lon": 3.8949263 + }, + { + "nodeId": 1508412207, + "lat": 43.6038103, + "lon": 3.8949415 + }, + { + "nodeId": 9910291743, + "lat": 43.6037046, + "lon": 3.8949343 + }, + { + "nodeId": 943983776, + "lat": 43.6037739, + "lon": 3.8949408 + }, + { + "nodeId": 1605459462, + "lat": 43.6036692, + "lon": 3.8949288 + }, + { + "nodeId": 60722459, + "lat": 43.6143678, + "lon": 3.882747 + }, + { + "nodeId": 976921119, + "lat": 43.6143507, + "lon": 3.88277 + }, + { + "nodeId": 9910306902, + "lat": 43.6142816, + "lon": 3.8828287 + }, + { + "nodeId": 3779650579, + "lat": 43.6143074, + "lon": 3.882813 + }, + { + "nodeId": 976921224, + "lat": 43.6142546, + "lon": 3.8828404 + }, + { + "nodeId": 976921276, + "lat": 43.6142328, + "lon": 3.882847 + }, + { + "nodeId": 60722816, + "lat": 43.6142101, + "lon": 3.8828499 + }, + { + "nodeId": 976921324, + "lat": 43.6141119, + "lon": 3.8828498 + }, + { + "nodeId": 976921200, + "lat": 43.6139645, + "lon": 3.8828222 + }, + { + "nodeId": 60722815, + "lat": 43.6138829, + "lon": 3.882794 + }, + { + "nodeId": 2575611363, + "lat": 43.603235, + "lon": 3.9206398 + }, + { + "nodeId": 1503531779, + "lat": 43.5774483, + "lon": 3.9363731 + }, + { + "nodeId": 1503531792, + "lat": 43.5765183, + "lon": 3.9382874 + }, + { + "nodeId": 1503531726, + "lat": 43.5755875, + "lon": 3.9401918 + }, + { + "nodeId": 1503531761, + "lat": 43.5740631, + "lon": 3.9432992 + }, + { + "nodeId": 1503531760, + "lat": 43.57475, + "lon": 3.9418909 + }, + { + "nodeId": 1503531746, + "lat": 43.5736813, + "lon": 3.944089 + }, + { + "nodeId": 1503531712, + "lat": 43.5734289, + "lon": 3.9445995 + }, + { + "nodeId": 6779486451, + "lat": 43.574727, + "lon": 3.8309194 + }, + { + "nodeId": 1248724032, + "lat": 43.5746838, + "lon": 3.8309968 + }, + { + "nodeId": 1540197381, + "lat": 43.5746498, + "lon": 3.8310585 + }, + { + "nodeId": 1540197426, + "lat": 43.5746042, + "lon": 3.8311496 + }, + { + "nodeId": 1248723735, + "lat": 43.574513, + "lon": 3.8313615 + }, + { + "nodeId": 2577355052, + "lat": 43.6306858, + "lon": 3.8223079 + }, + { + "nodeId": 9908094944, + "lat": 43.6307076, + "lon": 3.8223646 + }, + { + "nodeId": 2577354954, + "lat": 43.6307293, + "lon": 3.8224153 + }, + { + "nodeId": 9908094943, + "lat": 43.6307485, + "lon": 3.8224536 + }, + { + "nodeId": 2577355036, + "lat": 43.6307711, + "lon": 3.8224935 + }, + { + "nodeId": 9908095440, + "lat": 43.6307972, + "lon": 3.8225335 + }, + { + "nodeId": 9908095441, + "lat": 43.6308238, + "lon": 3.8225703 + }, + { + "nodeId": 2577354973, + "lat": 43.6308461, + "lon": 3.8225999 + }, + { + "nodeId": 9908095442, + "lat": 43.6308755, + "lon": 3.8226316 + }, + { + "nodeId": 2577355008, + "lat": 43.6309083, + "lon": 3.8226659 + }, + { + "nodeId": 2577355005, + "lat": 43.630977, + "lon": 3.8227223 + }, + { + "nodeId": 9908095443, + "lat": 43.6309428, + "lon": 3.8226957 + }, + { + "nodeId": 9908095444, + "lat": 43.6310199, + "lon": 3.8227487 + }, + { + "nodeId": 2577355098, + "lat": 43.6310521, + "lon": 3.8227675 + }, + { + "nodeId": 2577355044, + "lat": 43.63108, + "lon": 3.8227794 + }, + { + "nodeId": 3082952706, + "lat": 43.5772211, + "lon": 3.8531673 + }, + { + "nodeId": 3082952707, + "lat": 43.5773128, + "lon": 3.8533194 + }, + { + "nodeId": 2305432957, + "lat": 43.605307, + "lon": 3.8803854 + }, + { + "nodeId": 2305432959, + "lat": 43.6055132, + "lon": 3.880307 + }, + { + "nodeId": 2305432967, + "lat": 43.6057395, + "lon": 3.8802251 + }, + { + "nodeId": 2305432978, + "lat": 43.606187, + "lon": 3.8800581 + }, + { + "nodeId": 2305432981, + "lat": 43.6063609, + "lon": 3.8799983 + }, + { + "nodeId": 12549104239, + "lat": 43.6141591, + "lon": 3.8828943 + }, + { + "nodeId": 12549104238, + "lat": 43.6064557, + "lon": 3.8799635 + }, + { + "nodeId": 13386945312, + "lat": 43.6141894, + "lon": 3.882897 + }, + { + "nodeId": 3118402832, + "lat": 43.6142111, + "lon": 3.882899 + }, + { + "nodeId": 3118402833, + "lat": 43.6142328, + "lon": 3.8828977 + }, + { + "nodeId": 9910306903, + "lat": 43.614261, + "lon": 3.8828919 + }, + { + "nodeId": 9910306904, + "lat": 43.6142869, + "lon": 3.8828802 + }, + { + "nodeId": 3118402834, + "lat": 43.6143074, + "lon": 3.8828676 + }, + { + "nodeId": 3118402835, + "lat": 43.6143275, + "lon": 3.8828536 + }, + { + "nodeId": 9910306905, + "lat": 43.6143444, + "lon": 3.8828403 + }, + { + "nodeId": 1968235815, + "lat": 43.6143556, + "lon": 3.8828319 + }, + { + "nodeId": 3118402841, + "lat": 43.6143785, + "lon": 3.8828096 + }, + { + "nodeId": 12568272902, + "lat": 43.6091798, + "lon": 3.8813582 + }, + { + "nodeId": 3122482370, + "lat": 43.6093017, + "lon": 3.8815038 + }, + { + "nodeId": 3122482371, + "lat": 43.609388, + "lon": 3.8816063 + }, + { + "nodeId": 3122482372, + "lat": 43.6094576, + "lon": 3.8817008 + }, + { + "nodeId": 3122482373, + "lat": 43.6095137, + "lon": 3.8818171 + }, + { + "nodeId": 3122482374, + "lat": 43.6098471, + "lon": 3.8826465 + }, + { + "nodeId": 3122482376, + "lat": 43.6099852, + "lon": 3.8829534 + }, + { + "nodeId": 3122482377, + "lat": 43.6100491, + "lon": 3.883017 + }, + { + "nodeId": 3122482375, + "lat": 43.609929, + "lon": 3.8828588 + }, + { + "nodeId": 3122482378, + "lat": 43.6101098, + "lon": 3.8830666 + }, + { + "nodeId": 3122482380, + "lat": 43.6102602, + "lon": 3.8831038 + }, + { + "nodeId": 3122482381, + "lat": 43.6103328, + "lon": 3.8831149 + }, + { + "nodeId": 3122482379, + "lat": 43.6101872, + "lon": 3.8830929 + }, + { + "nodeId": 3122482382, + "lat": 43.6103889, + "lon": 3.8831072 + }, + { + "nodeId": 3122482383, + "lat": 43.6110118, + "lon": 3.8829747 + }, + { + "nodeId": 3122482384, + "lat": 43.6118118, + "lon": 3.8828193 + }, + { + "nodeId": 13381100410, + "lat": 43.6107713, + "lon": 3.8830259 + }, + { + "nodeId": 3122482385, + "lat": 43.6119229, + "lon": 3.8828038 + }, + { + "nodeId": 3122482386, + "lat": 43.6123024, + "lon": 3.8827631 + }, + { + "nodeId": 2305432982, + "lat": 43.6068359, + "lon": 3.8798239 + }, + { + "nodeId": 2305432983, + "lat": 43.6078965, + "lon": 3.8794238 + }, + { + "nodeId": 11881765486, + "lat": 43.6079083, + "lon": 3.8794204 + }, + { + "nodeId": 6328625914, + "lat": 43.6079243, + "lon": 3.8794158 + }, + { + "nodeId": 2305432984, + "lat": 43.6079783, + "lon": 3.8794004 + }, + { + "nodeId": 2305432985, + "lat": 43.6080401, + "lon": 3.8793971 + }, + { + "nodeId": 2305432987, + "lat": 43.6080941, + "lon": 3.8794111 + }, + { + "nodeId": 2305432988, + "lat": 43.6081535, + "lon": 3.8794574 + }, + { + "nodeId": 2305432989, + "lat": 43.6082147, + "lon": 3.87954 + }, + { + "nodeId": 11881765487, + "lat": 43.6082414, + "lon": 3.8795847 + }, + { + "nodeId": 11881765488, + "lat": 43.6084755, + "lon": 3.8799655 + }, + { + "nodeId": 2305432990, + "lat": 43.6085868, + "lon": 3.8801389 + }, + { + "nodeId": 2305432991, + "lat": 43.6086747, + "lon": 3.8802945 + }, + { + "nodeId": 11881765489, + "lat": 43.6087136, + "lon": 3.8803792 + }, + { + "nodeId": 2305432992, + "lat": 43.6087319, + "lon": 3.8804189 + }, + { + "nodeId": 11881765490, + "lat": 43.6087791, + "lon": 3.8805407 + }, + { + "nodeId": 11881765485, + "lat": 43.6087988, + "lon": 3.8805914 + }, + { + "nodeId": 2305432993, + "lat": 43.6088991, + "lon": 3.8808503 + }, + { + "nodeId": 2305432994, + "lat": 43.608992, + "lon": 3.881056 + }, + { + "nodeId": 2305432996, + "lat": 43.6090801, + "lon": 3.8812127 + }, + { + "nodeId": 3124581442, + "lat": 43.580995, + "lon": 3.859643 + }, + { + "nodeId": 716381233, + "lat": 43.5813453, + "lon": 3.8605081 + }, + { + "nodeId": 716381260, + "lat": 43.5814806, + "lon": 3.8608392 + }, + { + "nodeId": 5427412080, + "lat": 43.5815063, + "lon": 3.8609009 + }, + { + "nodeId": 1540210592, + "lat": 43.5815315, + "lon": 3.8609613 + }, + { + "nodeId": 1540210599, + "lat": 43.581614, + "lon": 3.8611488 + }, + { + "nodeId": 1540210705, + "lat": 43.581709, + "lon": 3.8613212 + }, + { + "nodeId": 1540210659, + "lat": 43.5817834, + "lon": 3.8614421 + }, + { + "nodeId": 1540210654, + "lat": 43.5818528, + "lon": 3.8615137 + }, + { + "nodeId": 1540210685, + "lat": 43.5819251, + "lon": 3.8615591 + }, + { + "nodeId": 1540210562, + "lat": 43.5820142, + "lon": 3.8615869 + }, + { + "nodeId": 1540210738, + "lat": 43.5820946, + "lon": 3.8615904 + }, + { + "nodeId": 1540210565, + "lat": 43.58217, + "lon": 3.8615697 + }, + { + "nodeId": 1540210661, + "lat": 43.582265, + "lon": 3.8615219 + }, + { + "nodeId": 1540210612, + "lat": 43.5823398, + "lon": 3.8614693 + }, + { + "nodeId": 1540210632, + "lat": 43.5824341, + "lon": 3.8614084 + }, + { + "nodeId": 2575586346, + "lat": 43.6046259, + "lon": 3.8801175 + }, + { + "nodeId": 11881765505, + "lat": 43.6047114, + "lon": 3.880237 + }, + { + "nodeId": 1547389461, + "lat": 43.6047366, + "lon": 3.8802722 + }, + { + "nodeId": 11881765512, + "lat": 43.6048398, + "lon": 3.8804257 + }, + { + "nodeId": 256089087, + "lat": 43.6048439, + "lon": 3.8804315 + }, + { + "nodeId": 1503531774, + "lat": 43.572534, + "lon": 3.9464891 + }, + { + "nodeId": 1674355771, + "lat": 43.6047793, + "lon": 3.880333 + }, + { + "nodeId": 3763741867, + "lat": 43.5725264, + "lon": 3.94651 + }, + { + "nodeId": 1503531787, + "lat": 43.572113, + "lon": 3.9473497 + }, + { + "nodeId": 3772060912, + "lat": 43.5715346, + "lon": 3.9485448 + }, + { + "nodeId": 1503531756, + "lat": 43.5714053, + "lon": 3.9488019 + }, + { + "nodeId": 1503531793, + "lat": 43.5705344, + "lon": 3.9505805 + }, + { + "nodeId": 1503531740, + "lat": 43.5696909, + "lon": 3.9523081 + }, + { + "nodeId": 1712551992, + "lat": 43.5693247, + "lon": 3.9530603 + }, + { + "nodeId": 12549212248, + "lat": 43.5691674, + "lon": 3.9533814 + }, + { + "nodeId": 979209478, + "lat": 43.6353945, + "lon": 3.9246401 + }, + { + "nodeId": 979210136, + "lat": 43.6361279, + "lon": 3.9262914 + }, + { + "nodeId": 979210262, + "lat": 43.6361685, + "lon": 3.9263779 + }, + { + "nodeId": 979209068, + "lat": 43.6362151, + "lon": 3.9264649 + }, + { + "nodeId": 3810599026, + "lat": 43.6362434, + "lon": 3.9265038 + }, + { + "nodeId": 979209439, + "lat": 43.6362546, + "lon": 3.9265196 + }, + { + "nodeId": 979209153, + "lat": 43.6363353, + "lon": 3.9265968 + }, + { + "nodeId": 231476084, + "lat": 43.6362896, + "lon": 3.9265592 + }, + { + "nodeId": 3810599191, + "lat": 43.6363567, + "lon": 3.926606 + }, + { + "nodeId": 979209343, + "lat": 43.6364261, + "lon": 3.9266186 + }, + { + "nodeId": 715918222, + "lat": 43.6363796, + "lon": 3.9266139 + }, + { + "nodeId": 979208989, + "lat": 43.6364668, + "lon": 3.9266147 + }, + { + "nodeId": 3810599225, + "lat": 43.6364991, + "lon": 3.9266013 + }, + { + "nodeId": 979209995, + "lat": 43.6365201, + "lon": 3.9265924 + }, + { + "nodeId": 20932810, + "lat": 43.6366032, + "lon": 3.9265353 + }, + { + "nodeId": 979208859, + "lat": 43.6365505, + "lon": 3.9265762 + }, + { + "nodeId": 3810599254, + "lat": 43.6366348, + "lon": 3.9265061 + }, + { + "nodeId": 979209907, + "lat": 43.6368476, + "lon": 3.926302 + }, + { + "nodeId": 979208935, + "lat": 43.6369619, + "lon": 3.9261832 + }, + { + "nodeId": 20932811, + "lat": 43.6371259, + "lon": 3.9260022 + }, + { + "nodeId": 979209022, + "lat": 43.6377398, + "lon": 3.9253106 + }, + { + "nodeId": 3810599438, + "lat": 43.6378141, + "lon": 3.9252307 + }, + { + "nodeId": 1547420305, + "lat": 43.6379098, + "lon": 3.9251447 + }, + { + "nodeId": 979210057, + "lat": 43.6378731, + "lon": 3.9251725 + }, + { + "nodeId": 979208881, + "lat": 43.6379648, + "lon": 3.9251027 + }, + { + "nodeId": 1547420303, + "lat": 43.6380176, + "lon": 3.925075 + }, + { + "nodeId": 1547420302, + "lat": 43.6381131, + "lon": 3.9250327 + }, + { + "nodeId": 231389150, + "lat": 43.6056352, + "lon": 3.8815859 + }, + { + "nodeId": 60722790, + "lat": 43.6057144, + "lon": 3.8817427 + }, + { + "nodeId": 939396355, + "lat": 43.6056868, + "lon": 3.8816698 + }, + { + "nodeId": 939396313, + "lat": 43.6057304, + "lon": 3.8817936 + }, + { + "nodeId": 939396387, + "lat": 43.6057347, + "lon": 3.8819106 + }, + { + "nodeId": 60722789, + "lat": 43.6057365, + "lon": 3.881841 + }, + { + "nodeId": 12177979473, + "lat": 43.6057274, + "lon": 3.8819688 + }, + { + "nodeId": 279197046, + "lat": 43.6057233, + "lon": 3.882001 + }, + { + "nodeId": 267579446, + "lat": 43.6090509, + "lon": 3.8882304 + }, + { + "nodeId": 294078374, + "lat": 43.6090607, + "lon": 3.8880745 + }, + { + "nodeId": 12192562845, + "lat": 43.6089767, + "lon": 3.8892477 + }, + { + "nodeId": 318880883, + "lat": 43.6089596, + "lon": 3.8894821 + }, + { + "nodeId": 6727634707, + "lat": 43.6089417, + "lon": 3.8897362 + }, + { + "nodeId": 12192562846, + "lat": 43.6088845, + "lon": 3.8905415 + }, + { + "nodeId": 282723247, + "lat": 43.6088774, + "lon": 3.8906584 + }, + { + "nodeId": 3119066083, + "lat": 43.6088648, + "lon": 3.8908524 + }, + { + "nodeId": 287599053, + "lat": 43.6088357, + "lon": 3.891241 + }, + { + "nodeId": 12192562847, + "lat": 43.6088064, + "lon": 3.8916607 + }, + { + "nodeId": 282904146, + "lat": 43.6087405, + "lon": 3.8926051 + }, + { + "nodeId": 3118564799, + "lat": 43.6086789, + "lon": 3.8935569 + }, + { + "nodeId": 60722813, + "lat": 43.612858, + "lon": 3.88266 + }, + { + "nodeId": 13203485364, + "lat": 43.6086733, + "lon": 3.8936464 + }, + { + "nodeId": 976921154, + "lat": 43.6125855, + "lon": 3.8826829 + }, + { + "nodeId": 940559064, + "lat": 43.6123013, + "lon": 3.8827305 + }, + { + "nodeId": 101499609, + "lat": 43.6287812, + "lon": 3.8943926 + }, + { + "nodeId": 911914416, + "lat": 43.6287122, + "lon": 3.8942538 + }, + { + "nodeId": 1166431354, + "lat": 43.6288273, + "lon": 3.8945233 + }, + { + "nodeId": 101499613, + "lat": 43.6288661, + "lon": 3.8946568 + }, + { + "nodeId": 1166431349, + "lat": 43.6288918, + "lon": 3.8947915 + }, + { + "nodeId": 101499618, + "lat": 43.6289089, + "lon": 3.894906 + }, + { + "nodeId": 1547417303, + "lat": 43.6396839, + "lon": 3.9274929 + }, + { + "nodeId": 1547417292, + "lat": 43.6397178, + "lon": 3.9277665 + }, + { + "nodeId": 1547417304, + "lat": 43.6397373, + "lon": 3.9278735 + }, + { + "nodeId": 1547417321, + "lat": 43.639848, + "lon": 3.9283394 + }, + { + "nodeId": 1547417311, + "lat": 43.6398902, + "lon": 3.9285421 + }, + { + "nodeId": 1547417306, + "lat": 43.6399392, + "lon": 3.9288362 + }, + { + "nodeId": 1547417318, + "lat": 43.6399816, + "lon": 3.9291143 + }, + { + "nodeId": 979209099, + "lat": 43.6400166, + "lon": 3.9293232 + }, + { + "nodeId": 2565144156, + "lat": 43.6002839, + "lon": 3.8962678 + }, + { + "nodeId": 3119255448, + "lat": 43.6002723, + "lon": 3.8962329 + }, + { + "nodeId": 3122482387, + "lat": 43.6125944, + "lon": 3.8827161 + }, + { + "nodeId": 3122482388, + "lat": 43.6127797, + "lon": 3.882701 + }, + { + "nodeId": 3122482389, + "lat": 43.6129935, + "lon": 3.8826963 + }, + { + "nodeId": 3124609065, + "lat": 43.5807614, + "lon": 3.859216 + }, + { + "nodeId": 231578493, + "lat": 43.5806497, + "lon": 3.8590173 + }, + { + "nodeId": 3124609066, + "lat": 43.5808971, + "lon": 3.8594552 + }, + { + "nodeId": 979209239, + "lat": 43.6545665, + "lon": 3.914054 + }, + { + "nodeId": 979209943, + "lat": 43.6545573, + "lon": 3.913613 + }, + { + "nodeId": 979209047, + "lat": 43.654558, + "lon": 3.9131809 + }, + { + "nodeId": 9910325997, + "lat": 43.6143916, + "lon": 3.8823582 + }, + { + "nodeId": 9910306916, + "lat": 43.6144105, + "lon": 3.8824426 + }, + { + "nodeId": 976921112, + "lat": 43.6144019, + "lon": 3.8823981 + }, + { + "nodeId": 60722460, + "lat": 43.614419, + "lon": 3.8824938 + }, + { + "nodeId": 9910306910, + "lat": 43.6144209, + "lon": 3.8825272 + }, + { + "nodeId": 976921318, + "lat": 43.6144167, + "lon": 3.8826051 + }, + { + "nodeId": 976921248, + "lat": 43.6144104, + "lon": 3.8826378 + }, + { + "nodeId": 9910306909, + "lat": 43.6144201, + "lon": 3.8825683 + }, + { + "nodeId": 3780633458, + "lat": 43.6144024, + "lon": 3.8826626 + }, + { + "nodeId": 9910306908, + "lat": 43.6143935, + "lon": 3.8826896 + }, + { + "nodeId": 976921085, + "lat": 43.6143801, + "lon": 3.8827205 + }, + { + "nodeId": 2187320606, + "lat": 43.5813921, + "lon": 3.9283032 + }, + { + "nodeId": 1503531732, + "lat": 43.5808477, + "lon": 3.9294193 + }, + { + "nodeId": 1503531752, + "lat": 43.579591, + "lon": 3.931978 + }, + { + "nodeId": 1503531723, + "lat": 43.5802005, + "lon": 3.9307353 + }, + { + "nodeId": 3170723783, + "lat": 43.5796845, + "lon": 3.9317919 + }, + { + "nodeId": 1503531724, + "lat": 43.5795106, + "lon": 3.9321379 + }, + { + "nodeId": 3170723774, + "lat": 43.5793716, + "lon": 3.9324147 + }, + { + "nodeId": 1503531751, + "lat": 43.5790279, + "lon": 3.9331257 + }, + { + "nodeId": 1503531767, + "lat": 43.5786297, + "lon": 3.9339534 + }, + { + "nodeId": 13386945310, + "lat": 43.6163526, + "lon": 3.8742922 + }, + { + "nodeId": 12549116926, + "lat": 43.6162827, + "lon": 3.8743903 + }, + { + "nodeId": 9910291742, + "lat": 43.6036316, + "lon": 3.8949194 + }, + { + "nodeId": 943983746, + "lat": 43.6035882, + "lon": 3.894904 + }, + { + "nodeId": 60722747, + "lat": 43.6033918, + "lon": 3.8948191 + }, + { + "nodeId": 943983823, + "lat": 43.6032808, + "lon": 3.8947774 + }, + { + "nodeId": 5540310155, + "lat": 43.6032332, + "lon": 3.8947588 + }, + { + "nodeId": 943983757, + "lat": 43.6031462, + "lon": 3.8947247 + }, + { + "nodeId": 943983689, + "lat": 43.6029382, + "lon": 3.8946658 + }, + { + "nodeId": 943983665, + "lat": 43.6027641, + "lon": 3.8946251 + }, + { + "nodeId": 60722746, + "lat": 43.6025576, + "lon": 3.8945732 + }, + { + "nodeId": 1622220355, + "lat": 43.6025111, + "lon": 3.8945632 + }, + { + "nodeId": 60722745, + "lat": 43.6024676, + "lon": 3.8945587 + }, + { + "nodeId": 943983819, + "lat": 43.6024083, + "lon": 3.8945574 + }, + { + "nodeId": 943983756, + "lat": 43.6023387, + "lon": 3.8945669 + }, + { + "nodeId": 943983682, + "lat": 43.6022708, + "lon": 3.8945953 + }, + { + "nodeId": 943983839, + "lat": 43.6022149, + "lon": 3.8946261 + }, + { + "nodeId": 60722744, + "lat": 43.6021643, + "lon": 3.894674 + }, + { + "nodeId": 5576120248, + "lat": 43.6017912, + "lon": 3.8949952 + }, + { + "nodeId": 944584054, + "lat": 43.6017565, + "lon": 3.8950239 + }, + { + "nodeId": 944584038, + "lat": 43.6016694, + "lon": 3.8950692 + }, + { + "nodeId": 944584041, + "lat": 43.6017077, + "lon": 3.8950497 + }, + { + "nodeId": 60722742, + "lat": 43.6015937, + "lon": 3.8950923 + }, + { + "nodeId": 60722741, + "lat": 43.6014, + "lon": 3.8951124 + }, + { + "nodeId": 2157558284, + "lat": 43.6011969, + "lon": 3.8951316 + }, + { + "nodeId": 944584048, + "lat": 43.6011163, + "lon": 3.8951413 + }, + { + "nodeId": 944584046, + "lat": 43.6010573, + "lon": 3.8951497 + }, + { + "nodeId": 60732077, + "lat": 43.6009959, + "lon": 3.8951705 + }, + { + "nodeId": 944584058, + "lat": 43.6009336, + "lon": 3.8952039 + }, + { + "nodeId": 944584050, + "lat": 43.6008954, + "lon": 3.8952333 + }, + { + "nodeId": 944584042, + "lat": 43.600849, + "lon": 3.8952757 + }, + { + "nodeId": 5540310153, + "lat": 43.6007738, + "lon": 3.8953487 + }, + { + "nodeId": 3669341973, + "lat": 43.600405, + "lon": 3.8957079 + }, + { + "nodeId": 60732075, + "lat": 43.6003051, + "lon": 3.8958115 + }, + { + "nodeId": 60722811, + "lat": 43.6119249, + "lon": 3.8827708 + }, + { + "nodeId": 976921109, + "lat": 43.611806, + "lon": 3.8827842 + }, + { + "nodeId": 60722810, + "lat": 43.6110061, + "lon": 3.8829321 + }, + { + "nodeId": 13381100411, + "lat": 43.6106328, + "lon": 3.8830164 + }, + { + "nodeId": 940558738, + "lat": 43.6103823, + "lon": 3.883073 + }, + { + "nodeId": 940559068, + "lat": 43.6103297, + "lon": 3.8830807 + }, + { + "nodeId": 940558802, + "lat": 43.6102635, + "lon": 3.8830712 + }, + { + "nodeId": 940558685, + "lat": 43.6101917, + "lon": 3.8830604 + }, + { + "nodeId": 940558921, + "lat": 43.6101131, + "lon": 3.8830263 + }, + { + "nodeId": 940558995, + "lat": 43.6100592, + "lon": 3.8829844 + }, + { + "nodeId": 940558454, + "lat": 43.6100076, + "lon": 3.882924 + }, + { + "nodeId": 60722808, + "lat": 43.6098692, + "lon": 3.8826279 + }, + { + "nodeId": 60722809, + "lat": 43.6099517, + "lon": 3.8828404 + }, + { + "nodeId": 60722805, + "lat": 43.6095836, + "lon": 3.8819062 + }, + { + "nodeId": 60722804, + "lat": 43.609517, + "lon": 3.8817424 + }, + { + "nodeId": 940558692, + "lat": 43.6094567, + "lon": 3.8816284 + }, + { + "nodeId": 940558482, + "lat": 43.6093789, + "lon": 3.8815341 + }, + { + "nodeId": 12181124129, + "lat": 43.6027634, + "lon": 3.9208521 + }, + { + "nodeId": 2575611334, + "lat": 43.6044453, + "lon": 3.9200822 + }, + { + "nodeId": 3779584796, + "lat": 43.6041277, + "lon": 3.9202351 + }, + { + "nodeId": 2575611333, + "lat": 43.6039887, + "lon": 3.9202979 + }, + { + "nodeId": 11025889260, + "lat": 43.6029091, + "lon": 3.8772854 + }, + { + "nodeId": 7727011507, + "lat": 43.6028931, + "lon": 3.8773973 + }, + { + "nodeId": 1547389458, + "lat": 43.6028876, + "lon": 3.8774721 + }, + { + "nodeId": 1547389555, + "lat": 43.6028927, + "lon": 3.8775624 + }, + { + "nodeId": 1547389475, + "lat": 43.6028878, + "lon": 3.8775038 + }, + { + "nodeId": 1547389558, + "lat": 43.6029015, + "lon": 3.8776101 + }, + { + "nodeId": 7727011506, + "lat": 43.6029448, + "lon": 3.8777175 + }, + { + "nodeId": 1547389495, + "lat": 43.6029676, + "lon": 3.877753 + }, + { + "nodeId": 1547389522, + "lat": 43.6029224, + "lon": 3.8776696 + }, + { + "nodeId": 1547389450, + "lat": 43.6030078, + "lon": 3.8778074 + }, + { + "nodeId": 9850561953, + "lat": 43.603149, + "lon": 3.8780101 + }, + { + "nodeId": 1288260813, + "lat": 43.603725, + "lon": 3.8788368 + }, + { + "nodeId": 1547389457, + "lat": 43.603751, + "lon": 3.8788738 + }, + { + "nodeId": 1547389484, + "lat": 43.6038885, + "lon": 3.8790701 + }, + { + "nodeId": 3124581458, + "lat": 43.6036474, + "lon": 3.8787257 + }, + { + "nodeId": 9850561951, + "lat": 43.6043025, + "lon": 3.8796592 + }, + { + "nodeId": 7737339682, + "lat": 43.6044372, + "lon": 3.8798509 + }, + { + "nodeId": 231529696, + "lat": 43.6045507, + "lon": 3.8800125 + }, + { + "nodeId": 13386945306, + "lat": 43.6046079, + "lon": 3.8800924 + }, + { + "nodeId": 1505206380, + "lat": 43.6018738, + "lon": 3.9004904 + }, + { + "nodeId": 5837142743, + "lat": 43.6020108, + "lon": 3.9009401 + }, + { + "nodeId": 946858919, + "lat": 43.6020039, + "lon": 3.9009124 + }, + { + "nodeId": 2572111098, + "lat": 43.6021457, + "lon": 3.9014772 + }, + { + "nodeId": 3640025164, + "lat": 43.6022051, + "lon": 3.9017295 + }, + { + "nodeId": 12549212256, + "lat": 43.6022128, + "lon": 3.9017625 + }, + { + "nodeId": 60722759, + "lat": 43.6084293, + "lon": 3.8940186 + }, + { + "nodeId": 287599047, + "lat": 43.607945, + "lon": 3.8939585 + }, + { + "nodeId": 282727519, + "lat": 43.6077707, + "lon": 3.8939399 + }, + { + "nodeId": 3802871041, + "lat": 43.6077649, + "lon": 3.8939402 + }, + { + "nodeId": 3118523799, + "lat": 43.6076344, + "lon": 3.8939465 + }, + { + "nodeId": 950758553, + "lat": 43.6075533, + "lon": 3.893944 + }, + { + "nodeId": 60722757, + "lat": 43.6070754, + "lon": 3.8938795 + }, + { + "nodeId": 950758590, + "lat": 43.6070146, + "lon": 3.8938736 + }, + { + "nodeId": 12772083136, + "lat": 43.6069738, + "lon": 3.8938794 + }, + { + "nodeId": 294077546, + "lat": 43.6069422, + "lon": 3.8938838 + }, + { + "nodeId": 12925347386, + "lat": 43.6069204, + "lon": 3.8938929 + }, + { + "nodeId": 12772083134, + "lat": 43.6069109, + "lon": 3.8938968 + }, + { + "nodeId": 294077548, + "lat": 43.6068714, + "lon": 3.8939132 + }, + { + "nodeId": 265393949, + "lat": 43.6067309, + "lon": 3.8939788 + }, + { + "nodeId": 12772083135, + "lat": 43.6068387, + "lon": 3.8939284 + }, + { + "nodeId": 12925347367, + "lat": 43.6067034, + "lon": 3.8939916 + }, + { + "nodeId": 60722756, + "lat": 43.6066165, + "lon": 3.8940322 + }, + { + "nodeId": 8754231936, + "lat": 43.6065333, + "lon": 3.8940609 + }, + { + "nodeId": 950758557, + "lat": 43.6065814, + "lon": 3.8940489 + }, + { + "nodeId": 1503509427, + "lat": 43.5820553, + "lon": 3.9270177 + }, + { + "nodeId": 5348940707, + "lat": 43.5822434, + "lon": 3.9266273 + }, + { + "nodeId": 5348940708, + "lat": 43.5828072, + "lon": 3.9254733 + }, + { + "nodeId": 1503509450, + "lat": 43.5828573, + "lon": 3.9253785 + }, + { + "nodeId": 12078653473, + "lat": 43.5828695, + "lon": 3.9253568 + }, + { + "nodeId": 12078653493, + "lat": 43.5829062, + "lon": 3.9252765 + }, + { + "nodeId": 12078653479, + "lat": 43.5828813, + "lon": 3.9253254 + }, + { + "nodeId": 5348940709, + "lat": 43.5829635, + "lon": 3.9251578 + }, + { + "nodeId": 5348940704, + "lat": 43.5829196, + "lon": 3.9252498 + }, + { + "nodeId": 1503509388, + "lat": 43.5836631, + "lon": 3.9237572 + }, + { + "nodeId": 1503509425, + "lat": 43.5846604, + "lon": 3.9217208 + }, + { + "nodeId": 13585297939, + "lat": 43.5852901, + "lon": 3.9204328 + }, + { + "nodeId": 1503509442, + "lat": 43.585548, + "lon": 3.9199054 + }, + { + "nodeId": 1434763569, + "lat": 43.5860865, + "lon": 3.918808 + }, + { + "nodeId": 1434763558, + "lat": 43.5867814, + "lon": 3.9173841 + }, + { + "nodeId": 2730687933, + "lat": 43.5730573, + "lon": 3.9454263 + }, + { + "nodeId": 2730687934, + "lat": 43.5731458, + "lon": 3.945254 + }, + { + "nodeId": 2730687935, + "lat": 43.5731937, + "lon": 3.9451511 + }, + { + "nodeId": 2730687936, + "lat": 43.5732984, + "lon": 3.9449292 + }, + { + "nodeId": 946858840, + "lat": 43.6002702, + "lon": 3.8958569 + }, + { + "nodeId": 1585115978, + "lat": 43.6002539, + "lon": 3.8958793 + }, + { + "nodeId": 946858797, + "lat": 43.6002271, + "lon": 3.8959281 + }, + { + "nodeId": 946858940, + "lat": 43.6002102, + "lon": 3.8959742 + }, + { + "nodeId": 946858949, + "lat": 43.6001983, + "lon": 3.896034 + }, + { + "nodeId": 2565144131, + "lat": 43.6001962, + "lon": 3.8960947 + }, + { + "nodeId": 2565144154, + "lat": 43.6002013, + "lon": 3.8961582 + }, + { + "nodeId": 8754231938, + "lat": 43.6002117, + "lon": 3.8961966 + }, + { + "nodeId": 947038439, + "lat": 43.6026439, + "lon": 3.9036235 + }, + { + "nodeId": 3659875229, + "lat": 43.6026477, + "lon": 3.9036397 + }, + { + "nodeId": 3659875830, + "lat": 43.6028428, + "lon": 3.9044353 + }, + { + "nodeId": 13392937962, + "lat": 43.6033091, + "lon": 3.9062904 + }, + { + "nodeId": 13392937934, + "lat": 43.6033188, + "lon": 3.9063297 + }, + { + "nodeId": 2572111089, + "lat": 43.6033509, + "lon": 3.90646 + }, + { + "nodeId": 333780562, + "lat": 43.6034247, + "lon": 3.90677 + }, + { + "nodeId": 60732069, + "lat": 43.6034446, + "lon": 3.9068528 + }, + { + "nodeId": 947038587, + "lat": 43.6034618, + "lon": 3.906953 + }, + { + "nodeId": 947038555, + "lat": 43.6034707, + "lon": 3.9070315 + }, + { + "nodeId": 333780558, + "lat": 43.6034771, + "lon": 3.9071228 + }, + { + "nodeId": 947038618, + "lat": 43.6034799, + "lon": 3.9072286 + }, + { + "nodeId": 947038589, + "lat": 43.6034789, + "lon": 3.9073303 + }, + { + "nodeId": 947038603, + "lat": 43.6034754, + "lon": 3.9074002 + }, + { + "nodeId": 60732068, + "lat": 43.6034681, + "lon": 3.9074942 + }, + { + "nodeId": 13392937946, + "lat": 43.6034591, + "lon": 3.907577 + }, + { + "nodeId": 60732067, + "lat": 43.6033513, + "lon": 3.9085628 + }, + { + "nodeId": 13392937941, + "lat": 43.6034556, + "lon": 3.9076038 + }, + { + "nodeId": 947038489, + "lat": 43.6033156, + "lon": 3.9089353 + }, + { + "nodeId": 947038580, + "lat": 43.6033039, + "lon": 3.9091854 + }, + { + "nodeId": 60732066, + "lat": 43.6033032, + "lon": 3.9093398 + }, + { + "nodeId": 3659255837, + "lat": 43.6033171, + "lon": 3.9095846 + }, + { + "nodeId": 3659255847, + "lat": 43.6033812, + "lon": 3.9103242 + }, + { + "nodeId": 947038554, + "lat": 43.60339, + "lon": 3.9104285 + }, + { + "nodeId": 333780546, + "lat": 43.6034105, + "lon": 3.9105925 + }, + { + "nodeId": 947038509, + "lat": 43.6034389, + "lon": 3.9107485 + }, + { + "nodeId": 60732065, + "lat": 43.6034936, + "lon": 3.9110066 + }, + { + "nodeId": 947038572, + "lat": 43.6036394, + "lon": 3.9116328 + }, + { + "nodeId": 947038635, + "lat": 43.6036538, + "lon": 3.9117103 + }, + { + "nodeId": 60732064, + "lat": 43.6036613, + "lon": 3.9117926 + }, + { + "nodeId": 282689862, + "lat": 43.603668, + "lon": 3.9119457 + }, + { + "nodeId": 13435827695, + "lat": 43.603662, + "lon": 3.9120324 + }, + { + "nodeId": 947038609, + "lat": 43.6036656, + "lon": 3.9118716 + }, + { + "nodeId": 947038466, + "lat": 43.6036525, + "lon": 3.912171 + }, + { + "nodeId": 947038515, + "lat": 43.603612, + "lon": 3.9125429 + }, + { + "nodeId": 60732063, + "lat": 43.6035699, + "lon": 3.9128355 + }, + { + "nodeId": 3747789333, + "lat": 43.6035002, + "lon": 3.9131998 + }, + { + "nodeId": 282689863, + "lat": 43.6034829, + "lon": 3.9132657 + }, + { + "nodeId": 282689864, + "lat": 43.6034596, + "lon": 3.9133783 + }, + { + "nodeId": 282691711, + "lat": 43.6034414, + "lon": 3.9134502 + }, + { + "nodeId": 13435859102, + "lat": 43.6034391, + "lon": 3.9134621 + }, + { + "nodeId": 947038549, + "lat": 43.6033609, + "lon": 3.9138678 + }, + { + "nodeId": 60732062, + "lat": 43.6033507, + "lon": 3.9139459 + }, + { + "nodeId": 947038617, + "lat": 43.6033492, + "lon": 3.9140166 + }, + { + "nodeId": 947038606, + "lat": 43.6033492, + "lon": 3.9140902 + }, + { + "nodeId": 333780538, + "lat": 43.6033568, + "lon": 3.9141686 + }, + { + "nodeId": 60732061, + "lat": 43.6034005, + "lon": 3.9143642 + }, + { + "nodeId": 11891363761, + "lat": 43.6035017, + "lon": 3.9147918 + }, + { + "nodeId": 13334264488, + "lat": 43.603692, + "lon": 3.9155957 + }, + { + "nodeId": 13334264491, + "lat": 43.6037113, + "lon": 3.9156773 + }, + { + "nodeId": 13334264490, + "lat": 43.6037274, + "lon": 3.9157454 + }, + { + "nodeId": 13334264496, + "lat": 43.6037299, + "lon": 3.9157559 + }, + { + "nodeId": 13334264495, + "lat": 43.6037462, + "lon": 3.9158252 + }, + { + "nodeId": 13332597126, + "lat": 43.6037659, + "lon": 3.9159096 + }, + { + "nodeId": 3122910522, + "lat": 43.6038577, + "lon": 3.9163036 + }, + { + "nodeId": 11891363763, + "lat": 43.6039671, + "lon": 3.9167665 + }, + { + "nodeId": 3659120421, + "lat": 43.6044295, + "lon": 3.918723 + }, + { + "nodeId": 3779584816, + "lat": 43.6045359, + "lon": 3.9191747 + }, + { + "nodeId": 2575611350, + "lat": 43.6046187, + "lon": 3.9195262 + }, + { + "nodeId": 2575611353, + "lat": 43.6046286, + "lon": 3.9196024 + }, + { + "nodeId": 3747845352, + "lat": 43.6046319, + "lon": 3.9196669 + }, + { + "nodeId": 2575611345, + "lat": 43.6046143, + "lon": 3.9198151 + }, + { + "nodeId": 2575611349, + "lat": 43.6045891, + "lon": 3.9199005 + }, + { + "nodeId": 2575611356, + "lat": 43.6046289, + "lon": 3.9197005 + }, + { + "nodeId": 2575611348, + "lat": 43.604561, + "lon": 3.9199516 + }, + { + "nodeId": 3122910524, + "lat": 43.6045224, + "lon": 3.9200055 + }, + { + "nodeId": 3927111978, + "lat": 43.6044915, + "lon": 3.9200396 + }, + { + "nodeId": 12549212257, + "lat": 43.600466, + "lon": 3.8967057 + }, + { + "nodeId": 2577354951, + "lat": 43.6306371, + "lon": 3.8220069 + }, + { + "nodeId": 2575611346, + "lat": 43.6044668, + "lon": 3.9200645 + }, + { + "nodeId": 9909330711, + "lat": 43.6306453, + "lon": 3.8221306 + }, + { + "nodeId": 3781456422, + "lat": 43.630641, + "lon": 3.8220922 + }, + { + "nodeId": 9908094945, + "lat": 43.6306605, + "lon": 3.8222142 + }, + { + "nodeId": 2577354957, + "lat": 43.6306729, + "lon": 3.8222635 + }, + { + "nodeId": 2577355070, + "lat": 43.6306503, + "lon": 3.8221664 + }, + { + "nodeId": 9907924110, + "lat": 43.581468, + "lon": 3.9281681 + }, + { + "nodeId": 3119254621, + "lat": 43.5815206, + "lon": 3.9280819 + }, + { + "nodeId": 9907924109, + "lat": 43.5816512, + "lon": 3.9278508 + }, + { + "nodeId": 1445506087, + "lat": 43.6145323, + "lon": 3.8823539 + }, + { + "nodeId": 3119254622, + "lat": 43.5815956, + "lon": 3.9279547 + }, + { + "nodeId": 9910364737, + "lat": 43.6145204, + "lon": 3.8822992 + }, + { + "nodeId": 3780633464, + "lat": 43.6145085, + "lon": 3.8822445 + }, + { + "nodeId": 976921115, + "lat": 43.6143778, + "lon": 3.8815646 + }, + { + "nodeId": 70972316, + "lat": 43.6143924, + "lon": 3.8816753 + }, + { + "nodeId": 11226496595, + "lat": 43.6143778, + "lon": 3.8815427 + }, + { + "nodeId": 976921272, + "lat": 43.6143779, + "lon": 3.881518 + }, + { + "nodeId": 976921070, + "lat": 43.6143962, + "lon": 3.8814478 + }, + { + "nodeId": 520788827, + "lat": 43.614421, + "lon": 3.8813854 + }, + { + "nodeId": 976921139, + "lat": 43.6144457, + "lon": 3.8813425 + }, + { + "nodeId": 976921309, + "lat": 43.6145122, + "lon": 3.8812815 + }, + { + "nodeId": 976921191, + "lat": 43.6144749, + "lon": 3.881311 + }, + { + "nodeId": 520788822, + "lat": 43.6145637, + "lon": 3.8812553 + }, + { + "nodeId": 3780633465, + "lat": 43.6145838, + "lon": 3.8812502 + }, + { + "nodeId": 976921136, + "lat": 43.6146205, + "lon": 3.8812486 + }, + { + "nodeId": 1992311766, + "lat": 43.6146604, + "lon": 3.881254 + }, + { + "nodeId": 976921185, + "lat": 43.6146754, + "lon": 3.8812587 + }, + { + "nodeId": 976921235, + "lat": 43.6147091, + "lon": 3.881277 + }, + { + "nodeId": 976921304, + "lat": 43.6147474, + "lon": 3.8813009 + }, + { + "nodeId": 70972313, + "lat": 43.6147894, + "lon": 3.8813405 + }, + { + "nodeId": 1992311770, + "lat": 43.6148763, + "lon": 3.8814372 + }, + { + "nodeId": 3780633091, + "lat": 43.6149955, + "lon": 3.8815722 + }, + { + "nodeId": 3780633477, + "lat": 43.6148673, + "lon": 3.8814295 + }, + { + "nodeId": 3780633098, + "lat": 43.615047, + "lon": 3.8816173 + }, + { + "nodeId": 3780633100, + "lat": 43.6153866, + "lon": 3.881975 + }, + { + "nodeId": 6240776771, + "lat": 43.6156067, + "lon": 3.8821939 + }, + { + "nodeId": 976921093, + "lat": 43.6156292, + "lon": 3.8822163 + }, + { + "nodeId": 6154243256, + "lat": 43.615634, + "lon": 3.8822208 + }, + { + "nodeId": 6240776778, + "lat": 43.6157249, + "lon": 3.882305 + }, + { + "nodeId": 976921227, + "lat": 43.6158596, + "lon": 3.8824297 + }, + { + "nodeId": 976921163, + "lat": 43.61611, + "lon": 3.8826816 + }, + { + "nodeId": 976921281, + "lat": 43.6162799, + "lon": 3.8828525 + }, + { + "nodeId": 6245739908, + "lat": 43.6163245, + "lon": 3.8828983 + }, + { + "nodeId": 978690526, + "lat": 43.616448, + "lon": 3.8830252 + }, + { + "nodeId": 6245739841, + "lat": 43.6166841, + "lon": 3.8832356 + }, + { + "nodeId": 70972306, + "lat": 43.6167453, + "lon": 3.8832901 + }, + { + "nodeId": 6245739843, + "lat": 43.6167844, + "lon": 3.8833295 + }, + { + "nodeId": 6245739837, + "lat": 43.6172321, + "lon": 3.8837761 + }, + { + "nodeId": 978690445, + "lat": 43.6172362, + "lon": 3.8837801 + }, + { + "nodeId": 978690565, + "lat": 43.6172912, + "lon": 3.8838238 + }, + { + "nodeId": 3118402906, + "lat": 43.6173674, + "lon": 3.8838494 + }, + { + "nodeId": 70974174, + "lat": 43.6175438, + "lon": 3.8839138 + }, + { + "nodeId": 3118402909, + "lat": 43.6176207, + "lon": 3.8839736 + }, + { + "nodeId": 185531291, + "lat": 43.6174574, + "lon": 3.8838762 + }, + { + "nodeId": 70974173, + "lat": 43.6178521, + "lon": 3.8841727 + }, + { + "nodeId": 978690478, + "lat": 43.6179207, + "lon": 3.8842116 + }, + { + "nodeId": 279798507, + "lat": 43.6179942, + "lon": 3.8842287 + }, + { + "nodeId": 978690584, + "lat": 43.6180587, + "lon": 3.884223 + }, + { + "nodeId": 978690532, + "lat": 43.6181143, + "lon": 3.8842088 + }, + { + "nodeId": 70974172, + "lat": 43.6181727, + "lon": 3.8841746 + }, + { + "nodeId": 978690482, + "lat": 43.6182386, + "lon": 3.8841177 + }, + { + "nodeId": 978690439, + "lat": 43.6183017, + "lon": 3.8840267 + }, + { + "nodeId": 70974171, + "lat": 43.618393, + "lon": 3.8838598 + }, + { + "nodeId": 70974169, + "lat": 43.6186693, + "lon": 3.8833946 + }, + { + "nodeId": 279798576, + "lat": 43.6188059, + "lon": 3.8832514 + }, + { + "nodeId": 978690554, + "lat": 43.6187283, + "lon": 3.8833102 + }, + { + "nodeId": 70974168, + "lat": 43.6188485, + "lon": 3.8832428 + }, + { + "nodeId": 978690504, + "lat": 43.6187668, + "lon": 3.883276 + }, + { + "nodeId": 978690575, + "lat": 43.6190043, + "lon": 3.8832931 + }, + { + "nodeId": 70974167, + "lat": 43.6188979, + "lon": 3.8832409 + }, + { + "nodeId": 1427248809, + "lat": 43.6193178, + "lon": 3.8836006 + }, + { + "nodeId": 6252659751, + "lat": 43.6193201, + "lon": 3.8836028 + }, + { + "nodeId": 978690456, + "lat": 43.6189439, + "lon": 3.8832552 + }, + { + "nodeId": 74943046, + "lat": 43.6198527, + "lon": 3.8841138 + }, + { + "nodeId": 6252660045, + "lat": 43.6198975, + "lon": 3.8841561 + }, + { + "nodeId": 6234947781, + "lat": 43.6199505, + "lon": 3.884197 + }, + { + "nodeId": 978690464, + "lat": 43.6199173, + "lon": 3.8841748 + }, + { + "nodeId": 74943043, + "lat": 43.6199993, + "lon": 3.8842204 + }, + { + "nodeId": 978690581, + "lat": 43.6199654, + "lon": 3.884207 + }, + { + "nodeId": 978690531, + "lat": 43.6200411, + "lon": 3.8842258 + }, + { + "nodeId": 978690480, + "lat": 43.6200979, + "lon": 3.8842224 + }, + { + "nodeId": 6227216984, + "lat": 43.6201257, + "lon": 3.8842139 + }, + { + "nodeId": 978690585, + "lat": 43.6201571, + "lon": 3.8842043 + }, + { + "nodeId": 6568557590, + "lat": 43.6204139, + "lon": 3.8840985 + }, + { + "nodeId": 6232816214, + "lat": 43.6206573, + "lon": 3.8839998 + }, + { + "nodeId": 74943040, + "lat": 43.6206764, + "lon": 3.8839923 + }, + { + "nodeId": 978690522, + "lat": 43.6207579, + "lon": 3.8839514 + }, + { + "nodeId": 3118402667, + "lat": 43.6208166, + "lon": 3.8839065 + }, + { + "nodeId": 978690475, + "lat": 43.6208783, + "lon": 3.8838435 + }, + { + "nodeId": 6568530984, + "lat": 43.6209168, + "lon": 3.8838007 + }, + { + "nodeId": 4531805118, + "lat": 43.6208521, + "lon": 3.8838703 + }, + { + "nodeId": 978690560, + "lat": 43.6209425, + "lon": 3.883772 + }, + { + "nodeId": 978690509, + "lat": 43.6211754, + "lon": 3.8835296 + }, + { + "nodeId": 3118402672, + "lat": 43.6212438, + "lon": 3.883482 + }, + { + "nodeId": 4531805116, + "lat": 43.6212112, + "lon": 3.8835047 + }, + { + "nodeId": 74943039, + "lat": 43.6213147, + "lon": 3.8834411 + }, + { + "nodeId": 1427248758, + "lat": 43.6216121, + "lon": 3.8832928 + }, + { + "nodeId": 5329445701, + "lat": 43.6221636, + "lon": 3.883033 + }, + { + "nodeId": 3119065626, + "lat": 43.605491, + "lon": 3.8823733 + }, + { + "nodeId": 2575586414, + "lat": 43.605541, + "lon": 3.8823241 + }, + { + "nodeId": 12177979481, + "lat": 43.6056396, + "lon": 3.8822166 + }, + { + "nodeId": 2575586439, + "lat": 43.6056211, + "lon": 3.8822362 + }, + { + "nodeId": 12549104232, + "lat": 43.6056626, + "lon": 3.8821925 + }, + { + "nodeId": 2305432925, + "lat": 43.6048839, + "lon": 3.8804637 + }, + { + "nodeId": 2305432926, + "lat": 43.6049179, + "lon": 3.8804801 + }, + { + "nodeId": 2305432928, + "lat": 43.6049301, + "lon": 3.8804838 + }, + { + "nodeId": 1674355773, + "lat": 43.6049643, + "lon": 3.8804914 + }, + { + "nodeId": 2583839257, + "lat": 43.6050031, + "lon": 3.8804912 + }, + { + "nodeId": 1119886404, + "lat": 43.6050084, + "lon": 3.8804911 + }, + { + "nodeId": 2009776392, + "lat": 43.6050329, + "lon": 3.8804841 + }, + { + "nodeId": 11881765515, + "lat": 43.6050597, + "lon": 3.880475 + }, + { + "nodeId": 4040099684, + "lat": 43.6051433, + "lon": 3.8804467 + }, + { + "nodeId": 2305432949, + "lat": 43.6051818, + "lon": 3.8804328 + }, + { + "nodeId": 11881765518, + "lat": 43.6052319, + "lon": 3.8804127 + }, + { + "nodeId": 11881765497, + "lat": 43.6052974, + "lon": 3.8803886 + }, + { + "nodeId": 3072514362, + "lat": 43.5767074, + "lon": 3.8523404 + }, + { + "nodeId": 4040099678, + "lat": 43.605267, + "lon": 3.8803987 + }, + { + "nodeId": 1547420300, + "lat": 43.6381998, + "lon": 3.9250128 + }, + { + "nodeId": 1547420294, + "lat": 43.6382652, + "lon": 3.9249991 + }, + { + "nodeId": 1547420304, + "lat": 43.6383312, + "lon": 3.924977 + }, + { + "nodeId": 3810599637, + "lat": 43.6383014, + "lon": 3.9249867 + }, + { + "nodeId": 3810599961, + "lat": 43.6388087, + "lon": 3.924752 + }, + { + "nodeId": 1547420307, + "lat": 43.6389036, + "lon": 3.9246977 + }, + { + "nodeId": 1547420306, + "lat": 43.6388456, + "lon": 3.9247341 + }, + { + "nodeId": 1547420301, + "lat": 43.6389494, + "lon": 3.924659 + }, + { + "nodeId": 979210260, + "lat": 43.6389908, + "lon": 3.9246243 + }, + { + "nodeId": 231578482, + "lat": 43.5726581, + "lon": 3.8457785 + }, + { + "nodeId": 9908095445, + "lat": 43.6311142, + "lon": 3.8227901 + }, + { + "nodeId": 9908095446, + "lat": 43.6311522, + "lon": 3.8227996 + }, + { + "nodeId": 3123039810, + "lat": 43.6312199, + "lon": 3.8228069 + }, + { + "nodeId": 2577355067, + "lat": 43.6327063, + "lon": 3.8227833 + }, + { + "nodeId": 2577355031, + "lat": 43.633284, + "lon": 3.8227711 + }, + { + "nodeId": 3782086444, + "lat": 43.6342578, + "lon": 3.8227558 + }, + { + "nodeId": 2617397597, + "lat": 43.6344509, + "lon": 3.822752 + }, + { + "nodeId": 2577354994, + "lat": 43.6343468, + "lon": 3.8227544 + }, + { + "nodeId": 3782086688, + "lat": 43.6359223, + "lon": 3.8227167 + }, + { + "nodeId": 3782086753, + "lat": 43.6365972, + "lon": 3.8227008 + }, + { + "nodeId": 2577355061, + "lat": 43.6367562, + "lon": 3.8226973 + }, + { + "nodeId": 2577354986, + "lat": 43.6368614, + "lon": 3.8227101 + }, + { + "nodeId": 3780633142, + "lat": 43.6369095, + "lon": 3.8227235 + }, + { + "nodeId": 2577355034, + "lat": 43.636955, + "lon": 3.8227454 + }, + { + "nodeId": 2577355011, + "lat": 43.6370826, + "lon": 3.8228331 + }, + { + "nodeId": 3780633147, + "lat": 43.6370289, + "lon": 3.8227893 + }, + { + "nodeId": 2577355051, + "lat": 43.637158, + "lon": 3.8229266 + }, + { + "nodeId": 3780633154, + "lat": 43.63715, + "lon": 3.8229124 + }, + { + "nodeId": 2577354982, + "lat": 43.6372361, + "lon": 3.8230609 + }, + { + "nodeId": 2577354948, + "lat": 43.6373069, + "lon": 3.8232299 + }, + { + "nodeId": 2577355083, + "lat": 43.6379635, + "lon": 3.8249465 + }, + { + "nodeId": 2577355009, + "lat": 43.6383643, + "lon": 3.8260486 + }, + { + "nodeId": 3780638668, + "lat": 43.6388665, + "lon": 3.8274185 + }, + { + "nodeId": 3780633836, + "lat": 43.639086, + "lon": 3.828014 + }, + { + "nodeId": 2577354997, + "lat": 43.6391755, + "lon": 3.8282828 + }, + { + "nodeId": 2577355014, + "lat": 43.6391507, + "lon": 3.8281886 + }, + { + "nodeId": 3780638672, + "lat": 43.6391861, + "lon": 3.8283389 + }, + { + "nodeId": 2577355062, + "lat": 43.63919, + "lon": 3.828394 + }, + { + "nodeId": 2577354959, + "lat": 43.63919, + "lon": 3.8284816 + }, + { + "nodeId": 3780633847, + "lat": 43.6391833, + "lon": 3.8285571 + }, + { + "nodeId": 3123093683, + "lat": 43.6391744, + "lon": 3.8285966 + }, + { + "nodeId": 2577355030, + "lat": 43.6391539, + "lon": 3.8286734 + }, + { + "nodeId": 2577355035, + "lat": 43.6391026, + "lon": 3.8288198 + }, + { + "nodeId": 11325348614, + "lat": 43.6390422, + "lon": 3.8289507 + }, + { + "nodeId": 2577355047, + "lat": 43.6388714, + "lon": 3.829265 + }, + { + "nodeId": 2577355038, + "lat": 43.6390247, + "lon": 3.8289886 + }, + { + "nodeId": 2577354946, + "lat": 43.6389864, + "lon": 3.8290737 + }, + { + "nodeId": 2577355022, + "lat": 43.6386773, + "lon": 3.8295534 + }, + { + "nodeId": 2577355020, + "lat": 43.6384385, + "lon": 3.8298618 + }, + { + "nodeId": 2577354958, + "lat": 43.6380504, + "lon": 3.8303042 + }, + { + "nodeId": 2577355027, + "lat": 43.6377436, + "lon": 3.8306048 + }, + { + "nodeId": 2577354963, + "lat": 43.6374903, + "lon": 3.8308261 + }, + { + "nodeId": 2577354960, + "lat": 43.6373825, + "lon": 3.8309092 + }, + { + "nodeId": 3780633567, + "lat": 43.6372996, + "lon": 3.8309606 + }, + { + "nodeId": 2577355058, + "lat": 43.6372874, + "lon": 3.830968 + }, + { + "nodeId": 2577355065, + "lat": 43.6370525, + "lon": 3.8310863 + }, + { + "nodeId": 2577355072, + "lat": 43.636643, + "lon": 3.831255 + }, + { + "nodeId": 11326491555, + "lat": 43.6365717, + "lon": 3.8312874 + }, + { + "nodeId": 2577354999, + "lat": 43.6365003, + "lon": 3.8313198 + }, + { + "nodeId": 2577355057, + "lat": 43.6364508, + "lon": 3.8313509 + }, + { + "nodeId": 2577355075, + "lat": 43.6362295, + "lon": 3.8314805 + }, + { + "nodeId": 2577354984, + "lat": 43.6360817, + "lon": 3.8315903 + }, + { + "nodeId": 2577355018, + "lat": 43.6358927, + "lon": 3.831737 + }, + { + "nodeId": 2577355094, + "lat": 43.6356431, + "lon": 3.8319676 + }, + { + "nodeId": 2577355074, + "lat": 43.6350065, + "lon": 3.8326473 + }, + { + "nodeId": 2577355039, + "lat": 43.6348425, + "lon": 3.8328534 + }, + { + "nodeId": 2577355097, + "lat": 43.635435, + "lon": 3.8321914 + }, + { + "nodeId": 2577355095, + "lat": 43.6347624, + "lon": 3.832966 + }, + { + "nodeId": 2577880179, + "lat": 43.634269, + "lon": 3.8337048 + }, + { + "nodeId": 3780657101, + "lat": 43.6342164, + "lon": 3.8337877 + }, + { + "nodeId": 2577880032, + "lat": 43.6341553, + "lon": 3.8339036 + }, + { + "nodeId": 2577880039, + "lat": 43.6343973, + "lon": 3.8335044 + }, + { + "nodeId": 2577880009, + "lat": 43.634065, + "lon": 3.834103 + }, + { + "nodeId": 2577880174, + "lat": 43.6339233, + "lon": 3.8344833 + }, + { + "nodeId": 3780657100, + "lat": 43.6334759, + "lon": 3.8356256 + }, + { + "nodeId": 2577880068, + "lat": 43.633598, + "lon": 3.8353222 + }, + { + "nodeId": 2577880027, + "lat": 43.6332764, + "lon": 3.8360557 + }, + { + "nodeId": 2577880031, + "lat": 43.6333495, + "lon": 3.8359065 + }, + { + "nodeId": 3780657098, + "lat": 43.6332001, + "lon": 3.8362011 + }, + { + "nodeId": 2577880021, + "lat": 43.633106, + "lon": 3.8363635 + }, + { + "nodeId": 2577880139, + "lat": 43.6329995, + "lon": 3.83654 + }, + { + "nodeId": 2577880149, + "lat": 43.6329287, + "lon": 3.8366552 + }, + { + "nodeId": 3780657094, + "lat": 43.6326811, + "lon": 3.836997 + }, + { + "nodeId": 2577880020, + "lat": 43.6328777, + "lon": 3.8367282 + }, + { + "nodeId": 2577880008, + "lat": 43.6325469, + "lon": 3.8371641 + }, + { + "nodeId": 3780657091, + "lat": 43.632266, + "lon": 3.8374946 + }, + { + "nodeId": 2577880123, + "lat": 43.6321328, + "lon": 3.8376437 + }, + { + "nodeId": 2577880007, + "lat": 43.6320227, + "lon": 3.8377707 + }, + { + "nodeId": 2577880069, + "lat": 43.6319001, + "lon": 3.8379282 + }, + { + "nodeId": 2577880035, + "lat": 43.6317453, + "lon": 3.8381685 + }, + { + "nodeId": 2577880034, + "lat": 43.6316248, + "lon": 3.8383872 + }, + { + "nodeId": 2577880024, + "lat": 43.6315335, + "lon": 3.8385924 + }, + { + "nodeId": 2577880071, + "lat": 43.6314447, + "lon": 3.8388271 + }, + { + "nodeId": 2577880137, + "lat": 43.6312915, + "lon": 3.8393699 + }, + { + "nodeId": 2577880078, + "lat": 43.6311521, + "lon": 3.8399148 + }, + { + "nodeId": 2577880011, + "lat": 43.6310331, + "lon": 3.8404714 + }, + { + "nodeId": 2577880147, + "lat": 43.6309799, + "lon": 3.8406587 + }, + { + "nodeId": 2577880045, + "lat": 43.6309026, + "lon": 3.8408723 + }, + { + "nodeId": 2577880050, + "lat": 43.6307852, + "lon": 3.8411074 + }, + { + "nodeId": 3123093656, + "lat": 43.6305842, + "lon": 3.8414421 + }, + { + "nodeId": 2577880087, + "lat": 43.630834, + "lon": 3.8410225 + }, + { + "nodeId": 2577880170, + "lat": 43.630525, + "lon": 3.8415603 + }, + { + "nodeId": 2577880092, + "lat": 43.630491, + "lon": 3.8416428 + }, + { + "nodeId": 2577880055, + "lat": 43.6304456, + "lon": 3.8417802 + }, + { + "nodeId": 2577880054, + "lat": 43.6304199, + "lon": 3.8419031 + }, + { + "nodeId": 2577880028, + "lat": 43.6304033, + "lon": 3.8420328 + }, + { + "nodeId": 3123093652, + "lat": 43.6304066, + "lon": 3.8423702 + }, + { + "nodeId": 2577880019, + "lat": 43.6303939, + "lon": 3.8421918 + }, + { + "nodeId": 2577880053, + "lat": 43.6304328, + "lon": 3.8425017 + }, + { + "nodeId": 2577880168, + "lat": 43.6304755, + "lon": 3.8426593 + }, + { + "nodeId": 2577880017, + "lat": 43.6305337, + "lon": 3.8428081 + }, + { + "nodeId": 2577880012, + "lat": 43.6305481, + "lon": 3.8428444 + }, + { + "nodeId": 2577880066, + "lat": 43.630606, + "lon": 3.8429486 + }, + { + "nodeId": 2577880042, + "lat": 43.6306464, + "lon": 3.8430006 + }, + { + "nodeId": 2577880029, + "lat": 43.6307108, + "lon": 3.8430747 + }, + { + "nodeId": 2577880041, + "lat": 43.6307952, + "lon": 3.8431343 + }, + { + "nodeId": 2577880047, + "lat": 43.6308832, + "lon": 3.8431689 + }, + { + "nodeId": 2577880003, + "lat": 43.6309666, + "lon": 3.8431742 + }, + { + "nodeId": 2577880033, + "lat": 43.6310994, + "lon": 3.8431595 + }, + { + "nodeId": 3780666548, + "lat": 43.6312383, + "lon": 3.8431424 + }, + { + "nodeId": 2577880121, + "lat": 43.6313573, + "lon": 3.8431287 + }, + { + "nodeId": 2577880095, + "lat": 43.6317345, + "lon": 3.8430798 + }, + { + "nodeId": 3782085919, + "lat": 43.6318646, + "lon": 3.8430625 + }, + { + "nodeId": 2577880080, + "lat": 43.632016, + "lon": 3.8430368 + }, + { + "nodeId": 3782085922, + "lat": 43.6319217, + "lon": 3.8430549 + }, + { + "nodeId": 2577880018, + "lat": 43.6321875, + "lon": 3.8430322 + }, + { + "nodeId": 2577880048, + "lat": 43.6321276, + "lon": 3.8430328 + }, + { + "nodeId": 3782085940, + "lat": 43.6323402, + "lon": 3.84306 + }, + { + "nodeId": 2577880126, + "lat": 43.6323883, + "lon": 3.8430687 + }, + { + "nodeId": 2577880056, + "lat": 43.632478, + "lon": 3.8430991 + }, + { + "nodeId": 3782086360, + "lat": 43.6330587, + "lon": 3.8432942 + }, + { + "nodeId": 6311835566, + "lat": 43.6333028, + "lon": 3.8433692 + }, + { + "nodeId": 2577880005, + "lat": 43.6333824, + "lon": 3.8433903 + }, + { + "nodeId": 2577880023, + "lat": 43.6334643, + "lon": 3.8434096 + }, + { + "nodeId": 2577880159, + "lat": 43.6335871, + "lon": 3.8434297 + }, + { + "nodeId": 3782086373, + "lat": 43.6336604, + "lon": 3.8434466 + }, + { + "nodeId": 3123093668, + "lat": 43.6339213, + "lon": 3.8434921 + }, + { + "nodeId": 3782086385, + "lat": 43.6338724, + "lon": 3.8434836 + }, + { + "nodeId": 3782086415, + "lat": 43.6341801, + "lon": 3.8435735 + }, + { + "nodeId": 2577880176, + "lat": 43.6341067, + "lon": 3.8435478 + }, + { + "nodeId": 2577880058, + "lat": 43.6342067, + "lon": 3.8435854 + }, + { + "nodeId": 2577880075, + "lat": 43.6347144, + "lon": 3.8438394 + }, + { + "nodeId": 2577880037, + "lat": 43.6348143, + "lon": 3.8439306 + }, + { + "nodeId": 2577880044, + "lat": 43.6349036, + "lon": 3.8440527 + }, + { + "nodeId": 2577880040, + "lat": 43.6348609, + "lon": 3.8439829 + }, + { + "nodeId": 2577880064, + "lat": 43.6350094, + "lon": 3.8444134 + }, + { + "nodeId": 2577880140, + "lat": 43.6349244, + "lon": 3.8441063 + }, + { + "nodeId": 2577880145, + "lat": 43.635081, + "lon": 3.844661 + }, + { + "nodeId": 2577880097, + "lat": 43.6351122, + "lon": 3.8447609 + }, + { + "nodeId": 2577880013, + "lat": 43.6352911, + "lon": 3.8453047 + }, + { + "nodeId": 3782086502, + "lat": 43.635342, + "lon": 3.8454596 + }, + { + "nodeId": 3123093675, + "lat": 43.6357224, + "lon": 3.8466549 + }, + { + "nodeId": 2577880030, + "lat": 43.6357835, + "lon": 3.8468752 + }, + { + "nodeId": 2577880076, + "lat": 43.6358102, + "lon": 3.8470085 + }, + { + "nodeId": 2577880144, + "lat": 43.6358135, + "lon": 3.8471356 + }, + { + "nodeId": 2577880006, + "lat": 43.6357981, + "lon": 3.8472849 + }, + { + "nodeId": 2577880022, + "lat": 43.6357908, + "lon": 3.8473196 + }, + { + "nodeId": 2577880043, + "lat": 43.635768, + "lon": 3.8473893 + }, + { + "nodeId": 2577880151, + "lat": 43.6357015, + "lon": 3.8475318 + }, + { + "nodeId": 3782086524, + "lat": 43.6356664, + "lon": 3.8475863 + }, + { + "nodeId": 3782086616, + "lat": 43.635737, + "lon": 3.8474694 + }, + { + "nodeId": 2577880036, + "lat": 43.6356306, + "lon": 3.8476235 + }, + { + "nodeId": 2577880052, + "lat": 43.6350929, + "lon": 3.8480934 + }, + { + "nodeId": 3471270551, + "lat": 43.6349157, + "lon": 3.8482415 + }, + { + "nodeId": 9750164997, + "lat": 43.6341934, + "lon": 3.8488584 + }, + { + "nodeId": 2577880046, + "lat": 43.634164, + "lon": 3.848884 + }, + { + "nodeId": 2577880165, + "lat": 43.6340446, + "lon": 3.8490072 + }, + { + "nodeId": 2577880038, + "lat": 43.6341051, + "lon": 3.8489435 + }, + { + "nodeId": 13434369137, + "lat": 43.6340281, + "lon": 3.8490271 + }, + { + "nodeId": 2577880132, + "lat": 43.6339219, + "lon": 3.8491555 + }, + { + "nodeId": 2577880004, + "lat": 43.6335076, + "lon": 3.8497827 + }, + { + "nodeId": 2577880162, + "lat": 43.6327692, + "lon": 3.8509003 + }, + { + "nodeId": 3782085935, + "lat": 43.6322445, + "lon": 3.8516965 + }, + { + "nodeId": 2577880130, + "lat": 43.6322064, + "lon": 3.8517519 + }, + { + "nodeId": 6314183419, + "lat": 43.6318192, + "lon": 3.8523414 + }, + { + "nodeId": 2577880010, + "lat": 43.6318082, + "lon": 3.8523581 + }, + { + "nodeId": 2577880062, + "lat": 43.6317568, + "lon": 3.8524359 + }, + { + "nodeId": 6314183430, + "lat": 43.6314785, + "lon": 3.8528565 + }, + { + "nodeId": 2577880116, + "lat": 43.6314031, + "lon": 3.8529699 + }, + { + "nodeId": 5329272322, + "lat": 43.6313056, + "lon": 3.8531472 + }, + { + "nodeId": 2577880110, + "lat": 43.6313512, + "lon": 3.853063 + }, + { + "nodeId": 2577880154, + "lat": 43.6312957, + "lon": 3.8531655 + }, + { + "nodeId": 2577880114, + "lat": 43.6312678, + "lon": 3.8532327 + }, + { + "nodeId": 2577880119, + "lat": 43.6312596, + "lon": 3.8532559 + }, + { + "nodeId": 2577880142, + "lat": 43.6311948, + "lon": 3.8534511 + }, + { + "nodeId": 2577880117, + "lat": 43.6311103, + "lon": 3.8537341 + }, + { + "nodeId": 2577880135, + "lat": 43.6310385, + "lon": 3.8539339 + }, + { + "nodeId": 2577880134, + "lat": 43.6309501, + "lon": 3.8541351 + }, + { + "nodeId": 2577880099, + "lat": 43.6308453, + "lon": 3.8543161 + }, + { + "nodeId": 2577880100, + "lat": 43.6303134, + "lon": 3.8552777 + }, + { + "nodeId": 2577880102, + "lat": 43.630194, + "lon": 3.8554883 + }, + { + "nodeId": 2577880090, + "lat": 43.630028, + "lon": 3.8557471 + }, + { + "nodeId": 2577880082, + "lat": 43.629862, + "lon": 3.8559638 + }, + { + "nodeId": 2577880081, + "lat": 43.6294863, + "lon": 3.8563881 + }, + { + "nodeId": 10004299076, + "lat": 43.6290601, + "lon": 3.8567977 + }, + { + "nodeId": 2577880060, + "lat": 43.6289458, + "lon": 3.8569075 + }, + { + "nodeId": 2577880112, + "lat": 43.6288548, + "lon": 3.8570024 + }, + { + "nodeId": 2577880085, + "lat": 43.6285282, + "lon": 3.8573202 + }, + { + "nodeId": 2577880088, + "lat": 43.6283814, + "lon": 3.8574765 + }, + { + "nodeId": 5329272338, + "lat": 43.628336, + "lon": 3.8575386 + }, + { + "nodeId": 2577880014, + "lat": 43.628272, + "lon": 3.857626 + }, + { + "nodeId": 3123093650, + "lat": 43.6282122, + "lon": 3.8577444 + }, + { + "nodeId": 13434395444, + "lat": 43.6282012, + "lon": 3.8577681 + }, + { + "nodeId": 2572267702, + "lat": 43.6281656, + "lon": 3.8578451 + }, + { + "nodeId": 2479837290, + "lat": 43.6281103, + "lon": 3.8580588 + }, + { + "nodeId": 1204403017, + "lat": 43.6281448, + "lon": 3.8579142 + }, + { + "nodeId": 10157237808, + "lat": 43.6281061, + "lon": 3.8580955 + }, + { + "nodeId": 2479837320, + "lat": 43.6280893, + "lon": 3.8582417 + }, + { + "nodeId": 5329272336, + "lat": 43.6280869, + "lon": 3.8582857 + }, + { + "nodeId": 2479837344, + "lat": 43.6280877, + "lon": 3.8584411 + }, + { + "nodeId": 60025080, + "lat": 43.6281337, + "lon": 3.8587687 + }, + { + "nodeId": 60025081, + "lat": 43.6281068, + "lon": 3.8586087 + }, + { + "nodeId": 60025079, + "lat": 43.628447, + "lon": 3.8596419 + }, + { + "nodeId": 2479837318, + "lat": 43.6289449, + "lon": 3.8610772 + }, + { + "nodeId": 6314183469, + "lat": 43.6290233, + "lon": 3.8612974 + }, + { + "nodeId": 3906240582, + "lat": 43.6292944, + "lon": 3.8620516 + }, + { + "nodeId": 6314183474, + "lat": 43.6292443, + "lon": 3.8619135 + }, + { + "nodeId": 2479837359, + "lat": 43.6294941, + "lon": 3.8626023 + }, + { + "nodeId": 3906240593, + "lat": 43.6295666, + "lon": 3.8628739 + }, + { + "nodeId": 3906240595, + "lat": 43.6295735, + "lon": 3.8629388 + }, + { + "nodeId": 60025077, + "lat": 43.6295497, + "lon": 3.862788 + }, + { + "nodeId": 60025076, + "lat": 43.6295783, + "lon": 3.8629974 + }, + { + "nodeId": 3906240597, + "lat": 43.6295784, + "lon": 3.8630348 + }, + { + "nodeId": 3906240598, + "lat": 43.6295784, + "lon": 3.8630754 + }, + { + "nodeId": 3906240596, + "lat": 43.6295764, + "lon": 3.8631227 + }, + { + "nodeId": 60025075, + "lat": 43.629571, + "lon": 3.863173 + }, + { + "nodeId": 2479837314, + "lat": 43.6295528, + "lon": 3.8632673 + }, + { + "nodeId": 3906240590, + "lat": 43.6295292, + "lon": 3.8633351 + }, + { + "nodeId": 2479837322, + "lat": 43.6294988, + "lon": 3.8634054 + }, + { + "nodeId": 3906240587, + "lat": 43.6294659, + "lon": 3.8634594 + }, + { + "nodeId": 2479837293, + "lat": 43.6294235, + "lon": 3.8635182 + }, + { + "nodeId": 60025074, + "lat": 43.6292974, + "lon": 3.8636278 + }, + { + "nodeId": 60025073, + "lat": 43.629115, + "lon": 3.8637264 + }, + { + "nodeId": 60025072, + "lat": 43.6283805, + "lon": 3.8641121 + }, + { + "nodeId": 1424195831, + "lat": 43.6282477, + "lon": 3.8641911 + }, + { + "nodeId": 3760544483, + "lat": 43.6290126, + "lon": 3.8637802 + }, + { + "nodeId": 3123093649, + "lat": 43.6281426, + "lon": 3.8642764 + }, + { + "nodeId": 60025071, + "lat": 43.6280395, + "lon": 3.864375 + }, + { + "nodeId": 2479837331, + "lat": 43.6278932, + "lon": 3.8645273 + }, + { + "nodeId": 2479837354, + "lat": 43.6277889, + "lon": 3.8646471 + }, + { + "nodeId": 3906240571, + "lat": 43.6275171, + "lon": 3.8650009 + }, + { + "nodeId": 12676059790, + "lat": 43.6275062, + "lon": 3.8650155 + }, + { + "nodeId": 3906236655, + "lat": 43.6271514, + "lon": 3.8654881 + }, + { + "nodeId": 12202780278, + "lat": 43.6268659, + "lon": 3.8658643 + }, + { + "nodeId": 3810224718, + "lat": 43.6268031, + "lon": 3.8659458 + }, + { + "nodeId": 551219175, + "lat": 43.6267157, + "lon": 3.8660541 + }, + { + "nodeId": 3810224712, + "lat": 43.6266003, + "lon": 3.8662002 + }, + { + "nodeId": 60025068, + "lat": 43.6265674, + "lon": 3.8662323 + }, + { + "nodeId": 60722760, + "lat": 43.608662, + "lon": 3.8937271 + }, + { + "nodeId": 267850926, + "lat": 43.608638, + "lon": 3.8938373 + }, + { + "nodeId": 294077539, + "lat": 43.6085993, + "lon": 3.8939162 + }, + { + "nodeId": 3802871868, + "lat": 43.6085907, + "lon": 3.8939254 + }, + { + "nodeId": 294077540, + "lat": 43.6085416, + "lon": 3.8939781 + }, + { + "nodeId": 9855106171, + "lat": 43.6068596, + "lon": 3.8755025 + }, + { + "nodeId": 294077543, + "lat": 43.6084824, + "lon": 3.8940081 + }, + { + "nodeId": 12549116920, + "lat": 43.6070067, + "lon": 3.8751876 + }, + { + "nodeId": 8820959333, + "lat": 43.5868867, + "lon": 3.917167 + }, + { + "nodeId": 1434763556, + "lat": 43.5898118, + "lon": 3.9111931 + }, + { + "nodeId": 1434763563, + "lat": 43.5883029, + "lon": 3.9142741 + }, + { + "nodeId": 1434763555, + "lat": 43.5906891, + "lon": 3.9094264 + }, + { + "nodeId": 1434763564, + "lat": 43.5908163, + "lon": 3.9091767 + }, + { + "nodeId": 1503509377, + "lat": 43.5910266, + "lon": 3.9087563 + }, + { + "nodeId": 1434763568, + "lat": 43.5909006, + "lon": 3.9090097 + }, + { + "nodeId": 1434763562, + "lat": 43.5910876, + "lon": 3.9086482 + }, + { + "nodeId": 4550675219, + "lat": 43.591144, + "lon": 3.9085477 + }, + { + "nodeId": 3119255433, + "lat": 43.5914363, + "lon": 3.9080711 + }, + { + "nodeId": 3119255434, + "lat": 43.5916826, + "lon": 3.9077615 + }, + { + "nodeId": 1434763559, + "lat": 43.5912413, + "lon": 3.9083763 + }, + { + "nodeId": 3119255436, + "lat": 43.592191, + "lon": 3.9072074 + }, + { + "nodeId": 3119255438, + "lat": 43.5926611, + "lon": 3.906793 + }, + { + "nodeId": 1434756298, + "lat": 43.5929676, + "lon": 3.9065527 + }, + { + "nodeId": 1434756299, + "lat": 43.5918618, + "lon": 3.9075397 + }, + { + "nodeId": 4550675086, + "lat": 43.5932171, + "lon": 3.9063779 + }, + { + "nodeId": 1434756304, + "lat": 43.5934806, + "lon": 3.9062157 + }, + { + "nodeId": 4550675079, + "lat": 43.5936742, + "lon": 3.9061006 + }, + { + "nodeId": 1434756296, + "lat": 43.593949, + "lon": 3.9059625 + }, + { + "nodeId": 1434756310, + "lat": 43.594305, + "lon": 3.905777 + }, + { + "nodeId": 12549212251, + "lat": 43.5943472, + "lon": 3.9057552 + }, + { + "nodeId": 4040099677, + "lat": 43.6052444, + "lon": 3.8803637 + }, + { + "nodeId": 11881765520, + "lat": 43.6052217, + "lon": 3.8803855 + }, + { + "nodeId": 1111381197, + "lat": 43.605161, + "lon": 3.8804765 + }, + { + "nodeId": 938646843, + "lat": 43.6052005, + "lon": 3.8804059 + }, + { + "nodeId": 938646808, + "lat": 43.6051488, + "lon": 3.880505 + }, + { + "nodeId": 60722795, + "lat": 43.6051293, + "lon": 3.8805727 + }, + { + "nodeId": 266328720, + "lat": 43.6051229, + "lon": 3.8806193 + }, + { + "nodeId": 2009776395, + "lat": 43.6051215, + "lon": 3.8806734 + }, + { + "nodeId": 2007778301, + "lat": 43.6051298, + "lon": 3.8807621 + }, + { + "nodeId": 938646824, + "lat": 43.6051483, + "lon": 3.880829 + }, + { + "nodeId": 938646818, + "lat": 43.6051254, + "lon": 3.8807296 + }, + { + "nodeId": 11881765510, + "lat": 43.6051586, + "lon": 3.880851 + }, + { + "nodeId": 11881765508, + "lat": 43.6051648, + "lon": 3.8808642 + }, + { + "nodeId": 2575586441, + "lat": 43.6037012, + "lon": 3.8949833 + }, + { + "nodeId": 9910291750, + "lat": 43.6037631, + "lon": 3.8949824 + }, + { + "nodeId": 9910291747, + "lat": 43.6038238, + "lon": 3.8949684 + }, + { + "nodeId": 9910291748, + "lat": 43.603794, + "lon": 3.8949771 + }, + { + "nodeId": 2575586370, + "lat": 43.6038486, + "lon": 3.8949582 + }, + { + "nodeId": 9910291739, + "lat": 43.6039336, + "lon": 3.8948996 + }, + { + "nodeId": 2575586429, + "lat": 43.6039132, + "lon": 3.8949165 + }, + { + "nodeId": 2575586321, + "lat": 43.6039527, + "lon": 3.8948813 + }, + { + "nodeId": 5130642866, + "lat": 43.6039766, + "lon": 3.8948532 + }, + { + "nodeId": 9910291738, + "lat": 43.6039962, + "lon": 3.894829 + }, + { + "nodeId": 9910291737, + "lat": 43.6040151, + "lon": 3.8947982 + }, + { + "nodeId": 9910291736, + "lat": 43.6040305, + "lon": 3.8947649 + }, + { + "nodeId": 2575586496, + "lat": 43.6040401, + "lon": 3.894738 + }, + { + "nodeId": 9910288721, + "lat": 43.6040512, + "lon": 3.8947027 + }, + { + "nodeId": 2575586538, + "lat": 43.6040646, + "lon": 3.8946168 + }, + { + "nodeId": 9910291731, + "lat": 43.6040581, + "lon": 3.8946648 + }, + { + "nodeId": 943983843, + "lat": 43.6040663, + "lon": 3.8945734 + }, + { + "nodeId": 3122456982, + "lat": 43.6040657, + "lon": 3.8945201 + }, + { + "nodeId": 2575586542, + "lat": 43.604054, + "lon": 3.8943768 + }, + { + "nodeId": 3072514363, + "lat": 43.5768152, + "lon": 3.8525127 + }, + { + "nodeId": 20932818, + "lat": 43.6390663, + "lon": 3.9245898 + }, + { + "nodeId": 979209061, + "lat": 43.6391028, + "lon": 3.9245791 + }, + { + "nodeId": 979209431, + "lat": 43.6391531, + "lon": 3.9245724 + }, + { + "nodeId": 979209816, + "lat": 43.6391937, + "lon": 3.9245775 + }, + { + "nodeId": 20932819, + "lat": 43.6392383, + "lon": 3.9245976 + }, + { + "nodeId": 979209236, + "lat": 43.6392737, + "lon": 3.9246231 + }, + { + "nodeId": 979209665, + "lat": 43.6393048, + "lon": 3.9246553 + }, + { + "nodeId": 20932805, + "lat": 43.6393268, + "lon": 3.9246923 + }, + { + "nodeId": 979209955, + "lat": 43.639346, + "lon": 3.9247323 + }, + { + "nodeId": 979208827, + "lat": 43.6393581, + "lon": 3.9247679 + }, + { + "nodeId": 979209426, + "lat": 43.6393704, + "lon": 3.9248268 + }, + { + "nodeId": 979210129, + "lat": 43.6394205, + "lon": 3.9253976 + }, + { + "nodeId": 979209813, + "lat": 43.6394423, + "lon": 3.9255916 + }, + { + "nodeId": 3810253590, + "lat": 43.6395934, + "lon": 3.9267838 + }, + { + "nodeId": 979208933, + "lat": 43.6394887, + "lon": 3.9259455 + }, + { + "nodeId": 1547417295, + "lat": 43.6396241, + "lon": 3.9270069 + }, + { + "nodeId": 3810253594, + "lat": 43.6396346, + "lon": 3.9271015 + }, + { + "nodeId": 1503509409, + "lat": 43.57135, + "lon": 3.9131237 + }, + { + "nodeId": 1503509429, + "lat": 43.5714617, + "lon": 3.9125595 + }, + { + "nodeId": 3122450432, + "lat": 43.5715874, + "lon": 3.9118748 + }, + { + "nodeId": 1503509426, + "lat": 43.5716292, + "lon": 3.9115645 + }, + { + "nodeId": 3122450433, + "lat": 43.5716657, + "lon": 3.9112612 + }, + { + "nodeId": 1503509421, + "lat": 43.5716877, + "lon": 3.9109634 + }, + { + "nodeId": 1503509354, + "lat": 43.5717076, + "lon": 3.9105708 + }, + { + "nodeId": 3122450435, + "lat": 43.5717145, + "lon": 3.9101611 + }, + { + "nodeId": 3122450434, + "lat": 43.5717104, + "lon": 3.9098216 + }, + { + "nodeId": 1503509389, + "lat": 43.5716972, + "lon": 3.9095797 + }, + { + "nodeId": 1503509373, + "lat": 43.571676, + "lon": 3.9092233 + }, + { + "nodeId": 2898883484, + "lat": 43.5716857, + "lon": 3.9094114 + }, + { + "nodeId": 1503509418, + "lat": 43.5716354, + "lon": 3.9088016 + }, + { + "nodeId": 3122450431, + "lat": 43.5715198, + "lon": 3.9081014 + }, + { + "nodeId": 1503509432, + "lat": 43.5715654, + "lon": 3.9083443 + }, + { + "nodeId": 1503509356, + "lat": 43.5714311, + "lon": 3.9076902 + }, + { + "nodeId": 1503509374, + "lat": 43.5713042, + "lon": 3.9071723 + }, + { + "nodeId": 12546993777, + "lat": 43.5712173, + "lon": 3.9068089 + }, + { + "nodeId": 2564072316, + "lat": 43.5712088, + "lon": 3.9067731 + }, + { + "nodeId": 3122450425, + "lat": 43.5711616, + "lon": 3.9065389 + }, + { + "nodeId": 1503509359, + "lat": 43.5710637, + "lon": 3.9060204 + }, + { + "nodeId": 1871496575, + "lat": 43.5711773, + "lon": 3.9066177 + }, + { + "nodeId": 3648748786, + "lat": 43.5825132, + "lon": 3.8613369 + }, + { + "nodeId": 1540210650, + "lat": 43.5826075, + "lon": 3.8612516 + }, + { + "nodeId": 1540210702, + "lat": 43.583054, + "lon": 3.8608487 + }, + { + "nodeId": 1547404564, + "lat": 43.6487383, + "lon": 3.9213907 + }, + { + "nodeId": 1547404567, + "lat": 43.6488723, + "lon": 3.9213086 + }, + { + "nodeId": 707396897, + "lat": 43.6501238, + "lon": 3.9205483 + }, + { + "nodeId": 2305432939, + "lat": 43.6050605, + "lon": 3.8806647 + }, + { + "nodeId": 1119886401, + "lat": 43.6050387, + "lon": 3.8806179 + }, + { + "nodeId": 11881765517, + "lat": 43.6050311, + "lon": 3.8805929 + }, + { + "nodeId": 2583839267, + "lat": 43.605021, + "lon": 3.8805594 + }, + { + "nodeId": 2007778290, + "lat": 43.6050134, + "lon": 3.8805231 + }, + { + "nodeId": 2583839259, + "lat": 43.605008, + "lon": 3.8804877 + }, + { + "nodeId": 256089085, + "lat": 43.6050027, + "lon": 3.8804464 + }, + { + "nodeId": 2305432935, + "lat": 43.6050015, + "lon": 3.8804365 + }, + { + "nodeId": 1119886391, + "lat": 43.6050017, + "lon": 3.8804103 + }, + { + "nodeId": 2007778291, + "lat": 43.6050032, + "lon": 3.8803817 + }, + { + "nodeId": 11881765514, + "lat": 43.6050071, + "lon": 3.8803575 + }, + { + "nodeId": 2583839262, + "lat": 43.6050097, + "lon": 3.8803415 + }, + { + "nodeId": 1119886394, + "lat": 43.6050208, + "lon": 3.8802967 + }, + { + "nodeId": 1119886395, + "lat": 43.6050458, + "lon": 3.8802269 + }, + { + "nodeId": 11881765507, + "lat": 43.6050683, + "lon": 3.8801672 + }, + { + "nodeId": 2575586472, + "lat": 43.6050725, + "lon": 3.8801561 + }, + { + "nodeId": 2565144090, + "lat": 43.6003884, + "lon": 3.8957905 + }, + { + "nodeId": 3796070184, + "lat": 43.6004264, + "lon": 3.8957527 + }, + { + "nodeId": 5540310154, + "lat": 43.6007965, + "lon": 3.8953909 + }, + { + "nodeId": 2575591257, + "lat": 43.6009509, + "lon": 3.8952468 + }, + { + "nodeId": 2565144109, + "lat": 43.6009045, + "lon": 3.8952857 + }, + { + "nodeId": 2575591261, + "lat": 43.6010063, + "lon": 3.895217 + }, + { + "nodeId": 2575591259, + "lat": 43.6010428, + "lon": 3.8952013 + }, + { + "nodeId": 2575591255, + "lat": 43.6011178, + "lon": 3.8951844 + }, + { + "nodeId": 2575591263, + "lat": 43.6012747, + "lon": 3.8951736 + }, + { + "nodeId": 2575591268, + "lat": 43.6015848, + "lon": 3.8951351 + }, + { + "nodeId": 2575591267, + "lat": 43.6016819, + "lon": 3.895111 + }, + { + "nodeId": 5052362439, + "lat": 43.601545, + "lon": 3.89514 + }, + { + "nodeId": 5576120249, + "lat": 43.6018085, + "lon": 3.895036 + }, + { + "nodeId": 2575591256, + "lat": 43.6017586, + "lon": 3.8950734 + }, + { + "nodeId": 2575591265, + "lat": 43.6022413, + "lon": 3.8946604 + }, + { + "nodeId": 2575591264, + "lat": 43.6023365, + "lon": 3.8946161 + }, + { + "nodeId": 2575586539, + "lat": 43.6024797, + "lon": 3.894603 + }, + { + "nodeId": 2575586402, + "lat": 43.602426, + "lon": 3.8945973 + }, + { + "nodeId": 2575586365, + "lat": 43.6030202, + "lon": 3.8947282 + }, + { + "nodeId": 2575586534, + "lat": 43.6031843, + "lon": 3.8947818 + }, + { + "nodeId": 5540310156, + "lat": 43.6032215, + "lon": 3.8947966 + }, + { + "nodeId": 2575586504, + "lat": 43.6033669, + "lon": 3.8948543 + }, + { + "nodeId": 2575586440, + "lat": 43.6035983, + "lon": 3.8949539 + }, + { + "nodeId": 9910291751, + "lat": 43.6036393, + "lon": 3.8949695 + }, + { + "nodeId": 9910291752, + "lat": 43.6036708, + "lon": 3.8949789 + }, + { + "nodeId": 13386945305, + "lat": 43.6052261, + "lon": 3.8808992 + }, + { + "nodeId": 2305432951, + "lat": 43.6052107, + "lon": 3.880876 + }, + { + "nodeId": 3119065627, + "lat": 43.6054224, + "lon": 3.8811955 + }, + { + "nodeId": 3123039787, + "lat": 43.6210543, + "lon": 3.8173934 + }, + { + "nodeId": 2577355099, + "lat": 43.6214382, + "lon": 3.8174054 + }, + { + "nodeId": 3123039758, + "lat": 43.6158758, + "lon": 3.8181749 + }, + { + "nodeId": 1503629524, + "lat": 43.6158289, + "lon": 3.818193 + }, + { + "nodeId": 1505157922, + "lat": 43.6157643, + "lon": 3.8182035 + }, + { + "nodeId": 2564061633, + "lat": 43.6157332, + "lon": 3.8182053 + }, + { + "nodeId": 3781186881, + "lat": 43.6156769, + "lon": 3.8181894 + }, + { + "nodeId": 2564061632, + "lat": 43.6156403, + "lon": 3.8181757 + }, + { + "nodeId": 3781186875, + "lat": 43.6156235, + "lon": 3.8181626 + }, + { + "nodeId": 2564061771, + "lat": 43.6155353, + "lon": 3.818084 + }, + { + "nodeId": 2564061631, + "lat": 43.6155695, + "lon": 3.8181205 + }, + { + "nodeId": 2564061636, + "lat": 43.6154938, + "lon": 3.8180119 + }, + { + "nodeId": 2564061641, + "lat": 43.6154365, + "lon": 3.817855 + }, + { + "nodeId": 2007778302, + "lat": 43.6051319, + "lon": 3.8800013 + }, + { + "nodeId": 1119886396, + "lat": 43.6053693, + "lon": 3.8793823 + }, + { + "nodeId": 1119886390, + "lat": 43.6058915, + "lon": 3.8780211 + }, + { + "nodeId": 3123033202, + "lat": 43.6060301, + "lon": 3.8776598 + }, + { + "nodeId": 1324678102, + "lat": 43.6060604, + "lon": 3.8775829 + }, + { + "nodeId": 1324678099, + "lat": 43.6061777, + "lon": 3.8773347 + }, + { + "nodeId": 1616132602, + "lat": 43.6062156, + "lon": 3.877249 + }, + { + "nodeId": 1323744512, + "lat": 43.6062676, + "lon": 3.8771173 + }, + { + "nodeId": 12177979463, + "lat": 43.6062895, + "lon": 3.8770585 + }, + { + "nodeId": 1692070908, + "lat": 43.6065415, + "lon": 3.8763748 + }, + { + "nodeId": 3123033205, + "lat": 43.6066068, + "lon": 3.8761899 + }, + { + "nodeId": 1326256111, + "lat": 43.6066714, + "lon": 3.8759942 + }, + { + "nodeId": 3123033207, + "lat": 43.6067164, + "lon": 3.8758449 + }, + { + "nodeId": 13306349931, + "lat": 43.6067384, + "lon": 3.8757823 + }, + { + "nodeId": 12190070892, + "lat": 43.6067459, + "lon": 3.875761 + }, + { + "nodeId": 3123033208, + "lat": 43.6067767, + "lon": 3.8756792 + }, + { + "nodeId": 3119255446, + "lat": 43.6002631, + "lon": 3.8961967 + }, + { + "nodeId": 2565144148, + "lat": 43.6002573, + "lon": 3.8961463 + }, + { + "nodeId": 8754231941, + "lat": 43.6002561, + "lon": 3.8961031 + }, + { + "nodeId": 2565144115, + "lat": 43.6002595, + "lon": 3.8960605 + }, + { + "nodeId": 8754231940, + "lat": 43.6002668, + "lon": 3.8960206 + }, + { + "nodeId": 2565144107, + "lat": 43.6002792, + "lon": 3.8959803 + }, + { + "nodeId": 2565144101, + "lat": 43.6002986, + "lon": 3.8959331 + }, + { + "nodeId": 8754231939, + "lat": 43.6003187, + "lon": 3.8958979 + }, + { + "nodeId": 1250211571, + "lat": 43.5707782, + "lon": 3.8396955 + }, + { + "nodeId": 2565144160, + "lat": 43.6003365, + "lon": 3.8958674 + }, + { + "nodeId": 231578473, + "lat": 43.5707861, + "lon": 3.8399258 + }, + { + "nodeId": 1250211382, + "lat": 43.5708281, + "lon": 3.8404477 + }, + { + "nodeId": 1248723708, + "lat": 43.5708551, + "lon": 3.840657 + }, + { + "nodeId": 1250211308, + "lat": 43.5708065, + "lon": 3.84023 + }, + { + "nodeId": 1250211326, + "lat": 43.5709881, + "lon": 3.8414784 + }, + { + "nodeId": 231578476, + "lat": 43.571021, + "lon": 3.8416542 + }, + { + "nodeId": 1250211451, + "lat": 43.5710759, + "lon": 3.8419274 + }, + { + "nodeId": 1248723845, + "lat": 43.5712112, + "lon": 3.84247 + }, + { + "nodeId": 231578477, + "lat": 43.5711142, + "lon": 3.8420911 + }, + { + "nodeId": 1248724116, + "lat": 43.5713576, + "lon": 3.8429497 + }, + { + "nodeId": 1250211294, + "lat": 43.5714883, + "lon": 3.8433125 + }, + { + "nodeId": 1250211361, + "lat": 43.5715812, + "lon": 3.8435466 + }, + { + "nodeId": 231578478, + "lat": 43.5716733, + "lon": 3.8437593 + }, + { + "nodeId": 3475801483, + "lat": 43.5718578, + "lon": 3.8441514 + }, + { + "nodeId": 7726926817, + "lat": 43.5719914, + "lon": 3.8444352 + }, + { + "nodeId": 3124581429, + "lat": 43.5724402, + "lon": 3.8453333 + }, + { + "nodeId": 3119254618, + "lat": 43.5776086, + "lon": 3.9361116 + }, + { + "nodeId": 2730687937, + "lat": 43.5776869, + "lon": 3.9359704 + }, + { + "nodeId": 6004546179, + "lat": 43.577693, + "lon": 3.9359583 + }, + { + "nodeId": 2730687938, + "lat": 43.5777559, + "lon": 3.9358333 + }, + { + "nodeId": 1802962917, + "lat": 43.5778125, + "lon": 3.9357103 + }, + { + "nodeId": 6004546178, + "lat": 43.5779235, + "lon": 3.9354851 + }, + { + "nodeId": 7507171692, + "lat": 43.5782248, + "lon": 3.9348692 + }, + { + "nodeId": 2730687939, + "lat": 43.5784808, + "lon": 3.9343502 + }, + { + "nodeId": 1712551991, + "lat": 43.5647598, + "lon": 3.957974 + }, + { + "nodeId": 3123033214, + "lat": 43.6072857, + "lon": 3.8742409 + }, + { + "nodeId": 3123033209, + "lat": 43.6070897, + "lon": 3.8741349 + }, + { + "nodeId": 12549116921, + "lat": 43.6068053, + "lon": 3.873986 + }, + { + "nodeId": 3123039729, + "lat": 43.6105045, + "lon": 3.8582302 + }, + { + "nodeId": 5116912598, + "lat": 43.6104807, + "lon": 3.8583667 + }, + { + "nodeId": 2575586369, + "lat": 43.6105237, + "lon": 3.8580704 + }, + { + "nodeId": 2575586445, + "lat": 43.6105322, + "lon": 3.8579264 + }, + { + "nodeId": 3123039730, + "lat": 43.6105311, + "lon": 3.857727 + }, + { + "nodeId": 2575586546, + "lat": 43.6105219, + "lon": 3.8575604 + }, + { + "nodeId": 5116912552, + "lat": 43.6104384, + "lon": 3.8568295 + }, + { + "nodeId": 2575419056, + "lat": 43.6104227, + "lon": 3.8566341 + }, + { + "nodeId": 11889083461, + "lat": 43.610413, + "lon": 3.8564702 + }, + { + "nodeId": 2575419053, + "lat": 43.6103995, + "lon": 3.8562425 + }, + { + "nodeId": 3123033227, + "lat": 43.6103777, + "lon": 3.8558954 + }, + { + "nodeId": 2575419136, + "lat": 43.6103328, + "lon": 3.8554157 + }, + { + "nodeId": 5116912564, + "lat": 43.6103187, + "lon": 3.8552951 + }, + { + "nodeId": 5116912583, + "lat": 43.6102325, + "lon": 3.8545684 + }, + { + "nodeId": 2575419251, + "lat": 43.6102199, + "lon": 3.8544604 + }, + { + "nodeId": 2575419239, + "lat": 43.610214, + "lon": 3.8543929 + }, + { + "nodeId": 2575419134, + "lat": 43.6102018, + "lon": 3.8542519 + }, + { + "nodeId": 1325374712, + "lat": 43.5962852, + "lon": 3.8769833 + }, + { + "nodeId": 1325374749, + "lat": 43.5961509, + "lon": 3.8772544 + }, + { + "nodeId": 3033184154, + "lat": 43.5945284, + "lon": 3.9056616 + }, + { + "nodeId": 2515753668, + "lat": 43.594699, + "lon": 3.9055911 + }, + { + "nodeId": 1505206360, + "lat": 43.5948151, + "lon": 3.9055347 + }, + { + "nodeId": 2564072360, + "lat": 43.5949014, + "lon": 3.9054972 + }, + { + "nodeId": 12531443063, + "lat": 43.5952388, + "lon": 3.9053459 + }, + { + "nodeId": 1505206325, + "lat": 43.5952727, + "lon": 3.9053307 + }, + { + "nodeId": 12531443062, + "lat": 43.5963198, + "lon": 3.9046429 + }, + { + "nodeId": 1505206361, + "lat": 43.595459, + "lon": 3.9052305 + }, + { + "nodeId": 3119255441, + "lat": 43.596926, + "lon": 3.9042377 + }, + { + "nodeId": 4063681440, + "lat": 43.5975314, + "lon": 3.9038208 + }, + { + "nodeId": 12531443061, + "lat": 43.5975391, + "lon": 3.9038153 + }, + { + "nodeId": 12531443050, + "lat": 43.5980537, + "lon": 3.9034553 + }, + { + "nodeId": 12531443047, + "lat": 43.5980901, + "lon": 3.9034303 + }, + { + "nodeId": 12531443053, + "lat": 43.5982471, + "lon": 3.9033228 + }, + { + "nodeId": 12531443055, + "lat": 43.598281, + "lon": 3.9032995 + }, + { + "nodeId": 12531443058, + "lat": 43.598322, + "lon": 3.9032714 + }, + { + "nodeId": 12531443059, + "lat": 43.598349, + "lon": 3.9032529 + }, + { + "nodeId": 3970979682, + "lat": 43.5985184, + "lon": 3.9031368 + }, + { + "nodeId": 5024016040, + "lat": 43.5985506, + "lon": 3.9031143 + }, + { + "nodeId": 1505206356, + "lat": 43.5986879, + "lon": 3.9030186 + }, + { + "nodeId": 2442545853, + "lat": 43.5989963, + "lon": 3.9028054 + }, + { + "nodeId": 1505206368, + "lat": 43.5997616, + "lon": 3.9023082 + }, + { + "nodeId": 1505206353, + "lat": 43.6002549, + "lon": 3.9019917 + }, + { + "nodeId": 5053439339, + "lat": 43.6001597, + "lon": 3.9020528 + }, + { + "nodeId": 1534312111, + "lat": 43.6014633, + "lon": 3.9013611 + }, + { + "nodeId": 1505206371, + "lat": 43.601667, + "lon": 3.9012618 + }, + { + "nodeId": 1505206343, + "lat": 43.6006099, + "lon": 3.9017929 + }, + { + "nodeId": 1505206358, + "lat": 43.6018968, + "lon": 3.9011386 + }, + { + "nodeId": 1505206338, + "lat": 43.6019439, + "lon": 3.9010862 + }, + { + "nodeId": 8754231944, + "lat": 43.6019683, + "lon": 3.9010437 + }, + { + "nodeId": 1534312144, + "lat": 43.6019852, + "lon": 3.9010014 + }, + { + "nodeId": 8754231942, + "lat": 43.6019964, + "lon": 3.9009482 + }, + { + "nodeId": 8754231943, + "lat": 43.6020062, + "lon": 3.9008697 + }, + { + "nodeId": 3119065618, + "lat": 43.6020047, + "lon": 3.9008334 + }, + { + "nodeId": 2575586423, + "lat": 43.6059825, + "lon": 3.873227 + }, + { + "nodeId": 3421812793, + "lat": 43.606106, + "lon": 3.8729923 + }, + { + "nodeId": 3421812799, + "lat": 43.6064309, + "lon": 3.8723726 + }, + { + "nodeId": 2575586443, + "lat": 43.6065094, + "lon": 3.8722234 + }, + { + "nodeId": 12549116917, + "lat": 43.6065336, + "lon": 3.8721736 + }, + { + "nodeId": 1445507885, + "lat": 43.6002774, + "lon": 3.8958327 + }, + { + "nodeId": 1585115891, + "lat": 43.6002468, + "lon": 3.8958518 + }, + { + "nodeId": 1445507887, + "lat": 43.600226, + "lon": 3.8958615 + }, + { + "nodeId": 1445507883, + "lat": 43.6001941, + "lon": 3.8958682 + }, + { + "nodeId": 1445507884, + "lat": 43.6001391, + "lon": 3.8958673 + }, + { + "nodeId": 1539538098, + "lat": 43.6000892, + "lon": 3.8958469 + }, + { + "nodeId": 1539538088, + "lat": 43.6000418, + "lon": 3.8958143 + }, + { + "nodeId": 1445507886, + "lat": 43.6000109, + "lon": 3.8957819 + }, + { + "nodeId": 12549097487, + "lat": 43.6152601, + "lon": 3.8258562 + }, + { + "nodeId": 2564555089, + "lat": 43.6152102, + "lon": 3.8258561 + }, + { + "nodeId": 5158657245, + "lat": 43.6151816, + "lon": 3.8258547 + }, + { + "nodeId": 2564555098, + "lat": 43.6151476, + "lon": 3.8258468 + }, + { + "nodeId": 2564555220, + "lat": 43.6150801, + "lon": 3.8257991 + }, + { + "nodeId": 5158657257, + "lat": 43.615118, + "lon": 3.8258278 + }, + { + "nodeId": 2564555224, + "lat": 43.6150265, + "lon": 3.8257226 + }, + { + "nodeId": 2564555210, + "lat": 43.6150198, + "lon": 3.8257034 + }, + { + "nodeId": 2564555122, + "lat": 43.6150044, + "lon": 3.8256597 + }, + { + "nodeId": 2564554964, + "lat": 43.6149762, + "lon": 3.8254652 + }, + { + "nodeId": 2564555158, + "lat": 43.6149879, + "lon": 3.8255872 + }, + { + "nodeId": 9910339419, + "lat": 43.6144485, + "lon": 3.8827455 + }, + { + "nodeId": 1445506090, + "lat": 43.6144843, + "lon": 3.8826969 + }, + { + "nodeId": 1445506092, + "lat": 43.614498, + "lon": 3.8826714 + }, + { + "nodeId": 9910339418, + "lat": 43.6144659, + "lon": 3.8827237 + }, + { + "nodeId": 1445506088, + "lat": 43.6145091, + "lon": 3.882644 + }, + { + "nodeId": 9910339423, + "lat": 43.6145195, + "lon": 3.8826167 + }, + { + "nodeId": 3118402857, + "lat": 43.6145276, + "lon": 3.8825887 + }, + { + "nodeId": 3118402858, + "lat": 43.6145342, + "lon": 3.8825432 + }, + { + "nodeId": 9910339426, + "lat": 43.6145395, + "lon": 3.8825 + }, + { + "nodeId": 3118402859, + "lat": 43.6145425, + "lon": 3.8824585 + }, + { + "nodeId": 5445917770, + "lat": 43.6076741, + "lon": 3.8699009 + }, + { + "nodeId": 9910339427, + "lat": 43.6145406, + "lon": 3.8824162 + }, + { + "nodeId": 2575586444, + "lat": 43.6077707, + "lon": 3.8697065 + }, + { + "nodeId": 2575586435, + "lat": 43.6082596, + "lon": 3.8687278 + }, + { + "nodeId": 5216860325, + "lat": 43.6083864, + "lon": 3.8684778 + }, + { + "nodeId": 5216855955, + "lat": 43.6082268, + "lon": 3.8687935 + }, + { + "nodeId": 5216857717, + "lat": 43.6087186, + "lon": 3.8678185 + }, + { + "nodeId": 9207219223, + "lat": 43.6087723, + "lon": 3.8677093 + }, + { + "nodeId": 2575586549, + "lat": 43.609039, + "lon": 3.867139 + }, + { + "nodeId": 2575586525, + "lat": 43.6091006, + "lon": 3.866934 + }, + { + "nodeId": 2575586344, + "lat": 43.6089837, + "lon": 3.8672798 + }, + { + "nodeId": 2575586530, + "lat": 43.6091157, + "lon": 3.8668574 + }, + { + "nodeId": 9237594725, + "lat": 43.6091391, + "lon": 3.8667308 + }, + { + "nodeId": 12549116915, + "lat": 43.6091471, + "lon": 3.8666883 + }, + { + "nodeId": 979209348, + "lat": 43.6510276, + "lon": 3.9200176 + }, + { + "nodeId": 979209749, + "lat": 43.651152, + "lon": 3.9199669 + }, + { + "nodeId": 979210080, + "lat": 43.651242, + "lon": 3.9199368 + }, + { + "nodeId": 707396746, + "lat": 43.6513626, + "lon": 3.9199056 + }, + { + "nodeId": 979209123, + "lat": 43.6514864, + "lon": 3.9198938 + }, + { + "nodeId": 707396751, + "lat": 43.6520787, + "lon": 3.9198644 + }, + { + "nodeId": 979209843, + "lat": 43.6521732, + "lon": 3.9198557 + }, + { + "nodeId": 979209634, + "lat": 43.652332, + "lon": 3.9198225 + }, + { + "nodeId": 979210170, + "lat": 43.6522432, + "lon": 3.9198415 + }, + { + "nodeId": 979209950, + "lat": 43.6524284, + "lon": 3.9197931 + }, + { + "nodeId": 979209084, + "lat": 43.6525178, + "lon": 3.9197614 + }, + { + "nodeId": 979208994, + "lat": 43.6526187, + "lon": 3.9197163 + }, + { + "nodeId": 979210119, + "lat": 43.6527987, + "lon": 3.9196093 + }, + { + "nodeId": 979209582, + "lat": 43.6528927, + "lon": 3.9195436 + }, + { + "nodeId": 979209999, + "lat": 43.6527242, + "lon": 3.9196569 + }, + { + "nodeId": 979208862, + "lat": 43.6531134, + "lon": 3.9193748 + }, + { + "nodeId": 979209938, + "lat": 43.6533668, + "lon": 3.9191727 + }, + { + "nodeId": 707396756, + "lat": 43.6532906, + "lon": 3.9192393 + }, + { + "nodeId": 979210248, + "lat": 43.6534736, + "lon": 3.9190605 + }, + { + "nodeId": 7304119348, + "lat": 43.6535243, + "lon": 3.9190082 + }, + { + "nodeId": 979209563, + "lat": 43.6536412, + "lon": 3.9188994 + }, + { + "nodeId": 979208986, + "lat": 43.6537891, + "lon": 3.9187085 + }, + { + "nodeId": 979210195, + "lat": 43.6537071, + "lon": 3.9188178 + }, + { + "nodeId": 979209024, + "lat": 43.6535581, + "lon": 3.9189818 + }, + { + "nodeId": 979208857, + "lat": 43.6539124, + "lon": 3.9185333 + }, + { + "nodeId": 979209340, + "lat": 43.6539806, + "lon": 3.918428 + }, + { + "nodeId": 308531605, + "lat": 43.6540608, + "lon": 3.9182846 + }, + { + "nodeId": 979209119, + "lat": 43.65414, + "lon": 3.918134 + }, + { + "nodeId": 979209542, + "lat": 43.6541921, + "lon": 3.9180239 + }, + { + "nodeId": 979209232, + "lat": 43.6542437, + "lon": 3.9179114 + }, + { + "nodeId": 979209375, + "lat": 43.6542965, + "lon": 3.9177751 + }, + { + "nodeId": 979208876, + "lat": 43.6544071, + "lon": 3.9174534 + }, + { + "nodeId": 979209132, + "lat": 43.6544833, + "lon": 3.9171705 + }, + { + "nodeId": 979210053, + "lat": 43.6543458, + "lon": 3.9176396 + }, + { + "nodeId": 3124509189, + "lat": 43.6545384, + "lon": 3.9169091 + }, + { + "nodeId": 707396765, + "lat": 43.6545739, + "lon": 3.9166729 + }, + { + "nodeId": 979209555, + "lat": 43.654594, + "lon": 3.9164844 + }, + { + "nodeId": 979208982, + "lat": 43.6546034, + "lon": 3.9163401 + }, + { + "nodeId": 979209737, + "lat": 43.6538545, + "lon": 3.9186173 + }, + { + "nodeId": 979209318, + "lat": 43.6546086, + "lon": 3.9162401 + }, + { + "nodeId": 308531606, + "lat": 43.6546112, + "lon": 3.9160617 + }, + { + "nodeId": 9396650663, + "lat": 43.6546117, + "lon": 3.9159483 + }, + { + "nodeId": 11469111165, + "lat": 43.6546119, + "lon": 3.9158958 + }, + { + "nodeId": 979209716, + "lat": 43.6546121, + "lon": 3.9158391 + }, + { + "nodeId": 3124509191, + "lat": 43.6546116, + "lon": 3.9156669 + }, + { + "nodeId": 8736481255, + "lat": 43.6152299, + "lon": 3.8222484 + }, + { + "nodeId": 2564554923, + "lat": 43.6152617, + "lon": 3.8219783 + }, + { + "nodeId": 2564554918, + "lat": 43.6152823, + "lon": 3.8218319 + }, + { + "nodeId": 3150673056, + "lat": 43.6153149, + "lon": 3.8216784 + }, + { + "nodeId": 3150673058, + "lat": 43.615345, + "lon": 3.8215797 + }, + { + "nodeId": 3781186744, + "lat": 43.6153539, + "lon": 3.8215501 + }, + { + "nodeId": 3781186745, + "lat": 43.6153657, + "lon": 3.8215088 + }, + { + "nodeId": 2564554956, + "lat": 43.6153967, + "lon": 3.8214088 + }, + { + "nodeId": 2564554926, + "lat": 43.6154394, + "lon": 3.8212023 + }, + { + "nodeId": 2564554961, + "lat": 43.6155068, + "lon": 3.8206185 + }, + { + "nodeId": 1503629465, + "lat": 43.6173342, + "lon": 3.8181795 + }, + { + "nodeId": 1503629530, + "lat": 43.617252, + "lon": 3.8178537 + }, + { + "nodeId": 2564061676, + "lat": 43.615353, + "lon": 3.8175559 + }, + { + "nodeId": 2564061595, + "lat": 43.6151843, + "lon": 3.8169199 + }, + { + "nodeId": 3648748791, + "lat": 43.5832325, + "lon": 3.8606882 + }, + { + "nodeId": 3071860323, + "lat": 43.5834649, + "lon": 3.8604803 + }, + { + "nodeId": 3071860322, + "lat": 43.5835096, + "lon": 3.8604373 + }, + { + "nodeId": 3071860303, + "lat": 43.5835765, + "lon": 3.860378 + }, + { + "nodeId": 5427404872, + "lat": 43.58436, + "lon": 3.8596688 + }, + { + "nodeId": 1540204072, + "lat": 43.5844703, + "lon": 3.8595806 + }, + { + "nodeId": 1540204045, + "lat": 43.5844218, + "lon": 3.8596127 + }, + { + "nodeId": 1540204039, + "lat": 43.5845276, + "lon": 3.8595599 + }, + { + "nodeId": 1540204079, + "lat": 43.584586, + "lon": 3.8595492 + }, + { + "nodeId": 1540204042, + "lat": 43.5846485, + "lon": 3.8595571 + }, + { + "nodeId": 1540204096, + "lat": 43.5847091, + "lon": 3.8595806 + }, + { + "nodeId": 3652686230, + "lat": 43.5847484, + "lon": 3.8596014 + }, + { + "nodeId": 1540203995, + "lat": 43.5847654, + "lon": 3.8596222 + }, + { + "nodeId": 1540204051, + "lat": 43.5848217, + "lon": 3.8596906 + }, + { + "nodeId": 1540204093, + "lat": 43.5848791, + "lon": 3.8597858 + }, + { + "nodeId": 1540204066, + "lat": 43.585005, + "lon": 3.860055 + }, + { + "nodeId": 1540204043, + "lat": 43.5850958, + "lon": 3.8602679 + }, + { + "nodeId": 1540203996, + "lat": 43.585048, + "lon": 3.8601441 + }, + { + "nodeId": 1540204091, + "lat": 43.5851434, + "lon": 3.8604386 + }, + { + "nodeId": 1540204026, + "lat": 43.5851198, + "lon": 3.8603425 + }, + { + "nodeId": 12953888092, + "lat": 43.5851489, + "lon": 3.8604608 + }, + { + "nodeId": 1540203972, + "lat": 43.585356, + "lon": 3.8613037 + }, + { + "nodeId": 1560692484, + "lat": 43.5855061, + "lon": 3.8619274 + }, + { + "nodeId": 1540204016, + "lat": 43.585545, + "lon": 3.8620844 + }, + { + "nodeId": 1540204086, + "lat": 43.585592, + "lon": 3.8622627 + }, + { + "nodeId": 5427404904, + "lat": 43.5856322, + "lon": 3.8624003 + }, + { + "nodeId": 1540204102, + "lat": 43.5856613, + "lon": 3.8625005 + }, + { + "nodeId": 1540203988, + "lat": 43.5857621, + "lon": 3.8628026 + }, + { + "nodeId": 1540203983, + "lat": 43.5860117, + "lon": 3.8635219 + }, + { + "nodeId": 1560692509, + "lat": 43.5861241, + "lon": 3.8638267 + }, + { + "nodeId": 1540204012, + "lat": 43.5862206, + "lon": 3.864083 + }, + { + "nodeId": 1540204023, + "lat": 43.5863165, + "lon": 3.8643172 + }, + { + "nodeId": 1540203998, + "lat": 43.5863727, + "lon": 3.86443 + }, + { + "nodeId": 1540204014, + "lat": 43.5864118, + "lon": 3.8645014 + }, + { + "nodeId": 1540204075, + "lat": 43.5864739, + "lon": 3.8646043 + }, + { + "nodeId": 1560692512, + "lat": 43.5865251, + "lon": 3.86468 + }, + { + "nodeId": 1540204070, + "lat": 43.5865868, + "lon": 3.8647613 + }, + { + "nodeId": 1540204009, + "lat": 43.5866665, + "lon": 3.8648552 + }, + { + "nodeId": 1540204017, + "lat": 43.5867947, + "lon": 3.8649813 + }, + { + "nodeId": 1540204098, + "lat": 43.5869579, + "lon": 3.8651274 + }, + { + "nodeId": 1540204085, + "lat": 43.5870375, + "lon": 3.8651851 + }, + { + "nodeId": 1560692520, + "lat": 43.5871414, + "lon": 3.8652465 + }, + { + "nodeId": 1540204001, + "lat": 43.5876214, + "lon": 3.8654936 + }, + { + "nodeId": 1560692568, + "lat": 43.5877867, + "lon": 3.8655785 + }, + { + "nodeId": 1540203992, + "lat": 43.5878059, + "lon": 3.8655874 + }, + { + "nodeId": 1540203999, + "lat": 43.5879545, + "lon": 3.8656424 + }, + { + "nodeId": 1540203986, + "lat": 43.588107, + "lon": 3.8656773 + }, + { + "nodeId": 5876482549, + "lat": 43.5881412, + "lon": 3.8656798 + }, + { + "nodeId": 1540204104, + "lat": 43.5882638, + "lon": 3.8656887 + }, + { + "nodeId": 1540204011, + "lat": 43.5883166, + "lon": 3.8656898 + }, + { + "nodeId": 6287307037, + "lat": 43.5884273, + "lon": 3.8656905 + }, + { + "nodeId": 1540204106, + "lat": 43.5886384, + "lon": 3.8656918 + }, + { + "nodeId": 6287307030, + "lat": 43.5890424, + "lon": 3.8656989 + }, + { + "nodeId": 1560692511, + "lat": 43.5891033, + "lon": 3.8657003 + }, + { + "nodeId": 1560692573, + "lat": 43.5893963, + "lon": 3.8657011 + }, + { + "nodeId": 1540213298, + "lat": 43.589672, + "lon": 3.8657158 + }, + { + "nodeId": 1540213316, + "lat": 43.5895448, + "lon": 3.865703 + }, + { + "nodeId": 1540213356, + "lat": 43.5899361, + "lon": 3.8657886 + }, + { + "nodeId": 1540213345, + "lat": 43.5897448, + "lon": 3.865735 + }, + { + "nodeId": 1560692510, + "lat": 43.5902803, + "lon": 3.8658925 + }, + { + "nodeId": 1560692508, + "lat": 43.5907357, + "lon": 3.8660201 + }, + { + "nodeId": 1460330065, + "lat": 43.5909133, + "lon": 3.8660701 + }, + { + "nodeId": 1540213383, + "lat": 43.591094, + "lon": 3.866136 + }, + { + "nodeId": 1540213392, + "lat": 43.5909667, + "lon": 3.866089 + }, + { + "nodeId": 1540213385, + "lat": 43.5912708, + "lon": 3.8662151 + }, + { + "nodeId": 1540213295, + "lat": 43.5915495, + "lon": 3.8663452 + }, + { + "nodeId": 1540213331, + "lat": 43.5919555, + "lon": 3.8665396 + }, + { + "nodeId": 1540213335, + "lat": 43.5920922, + "lon": 3.8665769 + }, + { + "nodeId": 1560692515, + "lat": 43.5921494, + "lon": 3.866566 + }, + { + "nodeId": 1540213343, + "lat": 43.5920252, + "lon": 3.8665708 + }, + { + "nodeId": 1540213333, + "lat": 43.5921765, + "lon": 3.8665566 + }, + { + "nodeId": 1540213303, + "lat": 43.5927683, + "lon": 3.8663595 + }, + { + "nodeId": 1540213350, + "lat": 43.59267, + "lon": 3.8663775 + }, + { + "nodeId": 1560692487, + "lat": 43.5927174, + "lon": 3.866366 + }, + { + "nodeId": 1540213376, + "lat": 43.5931963, + "lon": 3.8663426 + }, + { + "nodeId": 1540213318, + "lat": 43.5932836, + "lon": 3.8663489 + }, + { + "nodeId": 1540213325, + "lat": 43.5933473, + "lon": 3.8663634 + }, + { + "nodeId": 1540213329, + "lat": 43.5934171, + "lon": 3.8663771 + }, + { + "nodeId": 1540213319, + "lat": 43.5934999, + "lon": 3.8664109 + }, + { + "nodeId": 1540213360, + "lat": 43.5935825, + "lon": 3.8664645 + }, + { + "nodeId": 1540213346, + "lat": 43.5937602, + "lon": 3.8665892 + }, + { + "nodeId": 1540213323, + "lat": 43.5941332, + "lon": 3.8668762 + }, + { + "nodeId": 1540213292, + "lat": 43.594286, + "lon": 3.8669922 + }, + { + "nodeId": 1540213348, + "lat": 43.5949306, + "lon": 3.8674881 + }, + { + "nodeId": 1540213381, + "lat": 43.5950032, + "lon": 3.8675377 + }, + { + "nodeId": 6287306769, + "lat": 43.5950784, + "lon": 3.8675792 + }, + { + "nodeId": 9155630886, + "lat": 43.5951324, + "lon": 3.867609 + }, + { + "nodeId": 1540213406, + "lat": 43.5951966, + "lon": 3.8676437 + }, + { + "nodeId": 6287306771, + "lat": 43.5952659, + "lon": 3.8676881 + }, + { + "nodeId": 1540213401, + "lat": 43.5951407, + "lon": 3.8676136 + }, + { + "nodeId": 1540214813, + "lat": 43.5952754, + "lon": 3.8676943 + }, + { + "nodeId": 6287306751, + "lat": 43.595715, + "lon": 3.8680947 + }, + { + "nodeId": 1540214809, + "lat": 43.5957484, + "lon": 3.8681248 + }, + { + "nodeId": 1540214807, + "lat": 43.5957921, + "lon": 3.8681838 + }, + { + "nodeId": 1540214810, + "lat": 43.5958164, + "lon": 3.8682361 + }, + { + "nodeId": 1540214825, + "lat": 43.5958301, + "lon": 3.8682876 + }, + { + "nodeId": 1560685371, + "lat": 43.5958337, + "lon": 3.8683076 + }, + { + "nodeId": 1540214826, + "lat": 43.5958382, + "lon": 3.8683285 + }, + { + "nodeId": 3788301372, + "lat": 43.5958396, + "lon": 3.8683496 + }, + { + "nodeId": 1540214828, + "lat": 43.5958402, + "lon": 3.8684128 + }, + { + "nodeId": 5132444437, + "lat": 43.5958118, + "lon": 3.8685266 + }, + { + "nodeId": 1540214811, + "lat": 43.5958253, + "lon": 3.8684946 + }, + { + "nodeId": 1540214808, + "lat": 43.5958026, + "lon": 3.8685483 + }, + { + "nodeId": 1540214823, + "lat": 43.5957715, + "lon": 3.8686132 + }, + { + "nodeId": 3124581449, + "lat": 43.5950307, + "lon": 3.8698053 + }, + { + "nodeId": 1547380636, + "lat": 43.5949827, + "lon": 3.869898 + }, + { + "nodeId": 1547380599, + "lat": 43.5951181, + "lon": 3.8696739 + }, + { + "nodeId": 1547380671, + "lat": 43.5949512, + "lon": 3.8699814 + }, + { + "nodeId": 1547380689, + "lat": 43.5949346, + "lon": 3.8700819 + }, + { + "nodeId": 1547380699, + "lat": 43.5948923, + "lon": 3.8709651 + }, + { + "nodeId": 1547380697, + "lat": 43.5948732, + "lon": 3.871092 + }, + { + "nodeId": 1547380666, + "lat": 43.5949274, + "lon": 3.8701703 + }, + { + "nodeId": 6371143413, + "lat": 43.5948053, + "lon": 3.8712847 + }, + { + "nodeId": 1547380724, + "lat": 43.5948267, + "lon": 3.8712396 + }, + { + "nodeId": 1547380692, + "lat": 43.5947891, + "lon": 3.8713187 + }, + { + "nodeId": 523393059, + "lat": 43.5946816, + "lon": 3.871504 + }, + { + "nodeId": 1547380663, + "lat": 43.5943093, + "lon": 3.8721265 + }, + { + "nodeId": 1547380628, + "lat": 43.5942497, + "lon": 3.8722023 + }, + { + "nodeId": 1547380594, + "lat": 43.5941952, + "lon": 3.8722676 + }, + { + "nodeId": 1547380715, + "lat": 43.5939735, + "lon": 3.8725243 + }, + { + "nodeId": 1547380739, + "lat": 43.5941045, + "lon": 3.8723479 + }, + { + "nodeId": 1547380695, + "lat": 43.5940504, + "lon": 3.8724119 + }, + { + "nodeId": 3577225633, + "lat": 43.5934622, + "lon": 3.8733896 + }, + { + "nodeId": 1547380660, + "lat": 43.5934105, + "lon": 3.8734771 + }, + { + "nodeId": 3577225629, + "lat": 43.5933568, + "lon": 3.8735649 + }, + { + "nodeId": 3124581448, + "lat": 43.5931317, + "lon": 3.8739514 + }, + { + "nodeId": 3911517051, + "lat": 43.5930686, + "lon": 3.8740629 + }, + { + "nodeId": 3124581447, + "lat": 43.5929835, + "lon": 3.87421 + }, + { + "nodeId": 3071689076, + "lat": 43.5929509, + "lon": 3.8742791 + }, + { + "nodeId": 3577225620, + "lat": 43.5929285, + "lon": 3.874346 + }, + { + "nodeId": 3124581445, + "lat": 43.5929106, + "lon": 3.8744128 + }, + { + "nodeId": 3124581444, + "lat": 43.5929044, + "lon": 3.8744984 + }, + { + "nodeId": 1547380712, + "lat": 43.5929109, + "lon": 3.8746014 + }, + { + "nodeId": 1547380735, + "lat": 43.5929335, + "lon": 3.8747032 + }, + { + "nodeId": 1547380625, + "lat": 43.5929664, + "lon": 3.8747808 + }, + { + "nodeId": 3577225622, + "lat": 43.5930642, + "lon": 3.8749005 + }, + { + "nodeId": 1547380638, + "lat": 43.5931312, + "lon": 3.8749523 + }, + { + "nodeId": 1547380718, + "lat": 43.5930116, + "lon": 3.8748461 + }, + { + "nodeId": 1547380652, + "lat": 43.5935256, + "lon": 3.875199 + }, + { + "nodeId": 1547380656, + "lat": 43.5937528, + "lon": 3.8753224 + }, + { + "nodeId": 606139864, + "lat": 43.5945353, + "lon": 3.8757341 + }, + { + "nodeId": 1547380687, + "lat": 43.5943337, + "lon": 3.8756014 + }, + { + "nodeId": 3577225639, + "lat": 43.5946536, + "lon": 3.8758133 + }, + { + "nodeId": 3577225643, + "lat": 43.5951307, + "lon": 3.8761454 + }, + { + "nodeId": 1547380727, + "lat": 43.5951962, + "lon": 3.8761834 + }, + { + "nodeId": 1547380632, + "lat": 43.5952719, + "lon": 3.8762102 + }, + { + "nodeId": 1547380731, + "lat": 43.5953962, + "lon": 3.8762129 + }, + { + "nodeId": 1547380639, + "lat": 43.5957187, + "lon": 3.8761673 + }, + { + "nodeId": 1547380673, + "lat": 43.5958514, + "lon": 3.8761335 + }, + { + "nodeId": 1547380637, + "lat": 43.5961522, + "lon": 3.8760173 + }, + { + "nodeId": 3577225650, + "lat": 43.5962034, + "lon": 3.8760023 + }, + { + "nodeId": 1547380590, + "lat": 43.5962607, + "lon": 3.8759876 + }, + { + "nodeId": 3577225655, + "lat": 43.5963251, + "lon": 3.8759834 + }, + { + "nodeId": 1547380606, + "lat": 43.5963675, + "lon": 3.8759823 + }, + { + "nodeId": 1547380604, + "lat": 43.5964643, + "lon": 3.8759955 + }, + { + "nodeId": 3577225660, + "lat": 43.5964146, + "lon": 3.8759867 + }, + { + "nodeId": 1547380635, + "lat": 43.5967113, + "lon": 3.8760654 + }, + { + "nodeId": 1547380701, + "lat": 43.5968844, + "lon": 3.8761174 + }, + { + "nodeId": 3629357502, + "lat": 43.5968022, + "lon": 3.8760935 + }, + { + "nodeId": 1623916760, + "lat": 43.596956, + "lon": 3.8761363 + }, + { + "nodeId": 2565049797, + "lat": 43.597015, + "lon": 3.8761441 + }, + { + "nodeId": 1547380602, + "lat": 43.5970829, + "lon": 3.8761354 + }, + { + "nodeId": 1325374709, + "lat": 43.5964009, + "lon": 3.8767899 + }, + { + "nodeId": 1623916670, + "lat": 43.5966093, + "lon": 3.8764876 + }, + { + "nodeId": 1325374703, + "lat": 43.596521, + "lon": 3.876611 + }, + { + "nodeId": 2565049815, + "lat": 43.5967735, + "lon": 3.8763268 + }, + { + "nodeId": 1623916840, + "lat": 43.5966877, + "lon": 3.8763925 + }, + { + "nodeId": 3124411840, + "lat": 43.5967113, + "lon": 3.8763725 + }, + { + "nodeId": 2565049767, + "lat": 43.5968625, + "lon": 3.8762806 + }, + { + "nodeId": 2565049808, + "lat": 43.5968906, + "lon": 3.8762649 + }, + { + "nodeId": 12549116905, + "lat": 43.6160928, + "lon": 3.8405758 + }, + { + "nodeId": 2565049763, + "lat": 43.5970294, + "lon": 3.8761951 + }, + { + "nodeId": 12549116906, + "lat": 43.6161212, + "lon": 3.8406099 + }, + { + "nodeId": 2575419216, + "lat": 43.6162146, + "lon": 3.8406897 + }, + { + "nodeId": 2575419157, + "lat": 43.6162753, + "lon": 3.840707 + }, + { + "nodeId": 2575419225, + "lat": 43.6161495, + "lon": 3.8406441 + }, + { + "nodeId": 2575419148, + "lat": 43.6163107, + "lon": 3.8407166 + }, + { + "nodeId": 2575419255, + "lat": 43.6163622, + "lon": 3.8407085 + }, + { + "nodeId": 2575419252, + "lat": 43.6164331, + "lon": 3.8406871 + }, + { + "nodeId": 2575419050, + "lat": 43.6164903, + "lon": 3.8406495 + }, + { + "nodeId": 12549097494, + "lat": 43.6168499, + "lon": 3.8402491 + }, + { + "nodeId": 12549116903, + "lat": 43.616893, + "lon": 3.8402042 + }, + { + "nodeId": 1248724142, + "lat": 43.5744754, + "lon": 3.8314515 + }, + { + "nodeId": 2575419179, + "lat": 43.6168554, + "lon": 3.840243 + }, + { + "nodeId": 10218267421, + "lat": 43.5744085, + "lon": 3.8316045 + }, + { + "nodeId": 1248724108, + "lat": 43.5743171, + "lon": 3.8317947 + }, + { + "nodeId": 1248723904, + "lat": 43.5743939, + "lon": 3.8316378 + }, + { + "nodeId": 1248723844, + "lat": 43.5741786, + "lon": 3.8320512 + }, + { + "nodeId": 1248723698, + "lat": 43.5738504, + "lon": 3.8326622 + }, + { + "nodeId": 1248724064, + "lat": 43.5736887, + "lon": 3.8329495 + }, + { + "nodeId": 3789448369, + "lat": 43.5737814, + "lon": 3.8327894 + }, + { + "nodeId": 1248723679, + "lat": 43.5733872, + "lon": 3.8334801 + }, + { + "nodeId": 1248724008, + "lat": 43.5730195, + "lon": 3.8341314 + }, + { + "nodeId": 1248723816, + "lat": 43.5728949, + "lon": 3.834343 + }, + { + "nodeId": 1248724130, + "lat": 43.5727932, + "lon": 3.8345067 + }, + { + "nodeId": 1248723863, + "lat": 43.5727097, + "lon": 3.8346354 + }, + { + "nodeId": 1248724077, + "lat": 43.572451, + "lon": 3.8349967 + }, + { + "nodeId": 1248723792, + "lat": 43.5721906, + "lon": 3.8353441 + }, + { + "nodeId": 1248723673, + "lat": 43.5726204, + "lon": 3.8347611 + }, + { + "nodeId": 1248724038, + "lat": 43.5717276, + "lon": 3.8359596 + }, + { + "nodeId": 1248723743, + "lat": 43.5713731, + "lon": 3.8364419 + }, + { + "nodeId": 3124581128, + "lat": 43.5712501, + "lon": 3.8366083 + }, + { + "nodeId": 2564254183, + "lat": 43.619397, + "lon": 3.8172657 + }, + { + "nodeId": 2564254132, + "lat": 43.6194922, + "lon": 3.8172032 + }, + { + "nodeId": 2564254212, + "lat": 43.619592, + "lon": 3.8171616 + }, + { + "nodeId": 2564254200, + "lat": 43.6195597, + "lon": 3.817172 + }, + { + "nodeId": 2564254188, + "lat": 43.619678, + "lon": 3.8171341 + }, + { + "nodeId": 2564254142, + "lat": 43.6197326, + "lon": 3.8171282 + }, + { + "nodeId": 13326715792, + "lat": 43.6198093, + "lon": 3.8171282 + }, + { + "nodeId": 13326715791, + "lat": 43.6198988, + "lon": 3.8171459 + }, + { + "nodeId": 13326715790, + "lat": 43.6199621, + "lon": 3.8171677 + }, + { + "nodeId": 2564254189, + "lat": 43.6200379, + "lon": 3.8172005 + }, + { + "nodeId": 2564254166, + "lat": 43.6200938, + "lon": 3.8172263 + }, + { + "nodeId": 2564254122, + "lat": 43.6201758, + "lon": 3.817261 + }, + { + "nodeId": 5359000607, + "lat": 43.6202304, + "lon": 3.8172866 + }, + { + "nodeId": 2564254209, + "lat": 43.6202958, + "lon": 3.8173172 + }, + { + "nodeId": 2564254202, + "lat": 43.6204578, + "lon": 3.817365 + }, + { + "nodeId": 2564254130, + "lat": 43.6205065, + "lon": 3.8173762 + }, + { + "nodeId": 2564254161, + "lat": 43.6209221, + "lon": 3.81739 + }, + { + "nodeId": 2577354992, + "lat": 43.620972, + "lon": 3.8173902 + }, + { + "nodeId": 2564254181, + "lat": 43.6185195, + "lon": 3.8179665 + }, + { + "nodeId": 2564254170, + "lat": 43.6188347, + "lon": 3.8176887 + }, + { + "nodeId": 3781183317, + "lat": 43.6189109, + "lon": 3.8176354 + }, + { + "nodeId": 3123039782, + "lat": 43.6190797, + "lon": 3.8175095 + }, + { + "nodeId": 291564587, + "lat": 43.6006644, + "lon": 3.8970907 + }, + { + "nodeId": 3796070189, + "lat": 43.6007793, + "lon": 3.897333 + }, + { + "nodeId": 60732073, + "lat": 43.6007396, + "lon": 3.8972415 + }, + { + "nodeId": 946858896, + "lat": 43.6008127, + "lon": 3.8974098 + }, + { + "nodeId": 946858875, + "lat": 43.6008666, + "lon": 3.8975443 + }, + { + "nodeId": 13272459498, + "lat": 43.6007939, + "lon": 3.8973666 + }, + { + "nodeId": 946858852, + "lat": 43.6009481, + "lon": 3.8977514 + }, + { + "nodeId": 3119255450, + "lat": 43.6012633, + "lon": 3.8986706 + }, + { + "nodeId": 5160569078, + "lat": 43.601327, + "lon": 3.8988654 + }, + { + "nodeId": 3670803277, + "lat": 43.6017798, + "lon": 3.900207 + }, + { + "nodeId": 2007668078, + "lat": 43.6013687, + "lon": 3.8989932 + }, + { + "nodeId": 1505206326, + "lat": 43.6018425, + "lon": 3.9004001 + }, + { + "nodeId": 13203485374, + "lat": 43.6040086, + "lon": 3.8936581 + }, + { + "nodeId": 2575586527, + "lat": 43.6040032, + "lon": 3.8935665 + }, + { + "nodeId": 3122456981, + "lat": 43.6039913, + "lon": 3.8934384 + }, + { + "nodeId": 2575586348, + "lat": 43.6039751, + "lon": 3.8933315 + }, + { + "nodeId": 2575586328, + "lat": 43.6039228, + "lon": 3.8930789 + }, + { + "nodeId": 2575586324, + "lat": 43.6039093, + "lon": 3.8930178 + }, + { + "nodeId": 2575586353, + "lat": 43.6038792, + "lon": 3.8928832 + }, + { + "nodeId": 2575586540, + "lat": 43.6038459, + "lon": 3.8926989 + }, + { + "nodeId": 2575586364, + "lat": 43.6038311, + "lon": 3.8925494 + }, + { + "nodeId": 2575586361, + "lat": 43.6037707, + "lon": 3.8916917 + }, + { + "nodeId": 2575586489, + "lat": 43.6036927, + "lon": 3.8905728 + }, + { + "nodeId": 2575586322, + "lat": 43.603686, + "lon": 3.8903912 + }, + { + "nodeId": 3122456980, + "lat": 43.6036877, + "lon": 3.8903146 + }, + { + "nodeId": 2575586524, + "lat": 43.603696, + "lon": 3.8902465 + }, + { + "nodeId": 2575586547, + "lat": 43.6037071, + "lon": 3.8901887 + }, + { + "nodeId": 2575586475, + "lat": 43.6037628, + "lon": 3.889826 + }, + { + "nodeId": 5130642829, + "lat": 43.6037456, + "lon": 3.8899687 + }, + { + "nodeId": 2575586416, + "lat": 43.6037661, + "lon": 3.8897518 + }, + { + "nodeId": 2575586360, + "lat": 43.603767, + "lon": 3.8897178 + }, + { + "nodeId": 2575586456, + "lat": 43.6037553, + "lon": 3.8894869 + }, + { + "nodeId": 2575586528, + "lat": 43.6036912, + "lon": 3.8885913 + }, + { + "nodeId": 2575586415, + "lat": 43.6037088, + "lon": 3.8888032 + }, + { + "nodeId": 2575586345, + "lat": 43.6036295, + "lon": 3.8882847 + }, + { + "nodeId": 2575586376, + "lat": 43.6035942, + "lon": 3.8881051 + }, + { + "nodeId": 2575586418, + "lat": 43.6035844, + "lon": 3.888044 + }, + { + "nodeId": 2575586449, + "lat": 43.6035638, + "lon": 3.8878877 + }, + { + "nodeId": 2575586409, + "lat": 43.6035485, + "lon": 3.8877196 + }, + { + "nodeId": 2575586395, + "lat": 43.6035211, + "lon": 3.8873314 + }, + { + "nodeId": 2575586349, + "lat": 43.6034777, + "lon": 3.8866622 + }, + { + "nodeId": 2575586334, + "lat": 43.6033627, + "lon": 3.8848698 + }, + { + "nodeId": 2575586511, + "lat": 43.6033737, + "lon": 3.8846914 + }, + { + "nodeId": 3744335500, + "lat": 43.6033838, + "lon": 3.8846584 + }, + { + "nodeId": 2575586339, + "lat": 43.603363, + "lon": 3.8847437 + }, + { + "nodeId": 2575586474, + "lat": 43.6034047, + "lon": 3.8846136 + }, + { + "nodeId": 2575586391, + "lat": 43.6034387, + "lon": 3.8845613 + }, + { + "nodeId": 2575586459, + "lat": 43.6036844, + "lon": 3.8843118 + }, + { + "nodeId": 2575586379, + "lat": 43.6042321, + "lon": 3.883762 + }, + { + "nodeId": 2575586460, + "lat": 43.6043001, + "lon": 3.8836896 + }, + { + "nodeId": 12178251180, + "lat": 43.6044264, + "lon": 3.8834886 + }, + { + "nodeId": 2575586513, + "lat": 43.6044374, + "lon": 3.8834712 + }, + { + "nodeId": 938646806, + "lat": 43.604507, + "lon": 3.8833597 + }, + { + "nodeId": 2305432975, + "lat": 43.6057692, + "lon": 3.8819823 + }, + { + "nodeId": 12177979474, + "lat": 43.6057701, + "lon": 3.8819681 + }, + { + "nodeId": 2305432976, + "lat": 43.6057764, + "lon": 3.8818707 + }, + { + "nodeId": 2305432974, + "lat": 43.6057697, + "lon": 3.8817919 + }, + { + "nodeId": 2305432969, + "lat": 43.6057549, + "lon": 3.8817266 + }, + { + "nodeId": 2305432965, + "lat": 43.6057279, + "lon": 3.8816562 + }, + { + "nodeId": 2305432960, + "lat": 43.6056807, + "lon": 3.8815756 + }, + { + "nodeId": 12549212260, + "lat": 43.5786702, + "lon": 3.924012 + }, + { + "nodeId": 1503509391, + "lat": 43.5784031, + "lon": 3.9238678 + }, + { + "nodeId": 1503509395, + "lat": 43.5773927, + "lon": 3.9233287 + }, + { + "nodeId": 1503509355, + "lat": 43.5767787, + "lon": 3.9230109 + }, + { + "nodeId": 1503509424, + "lat": 43.5769282, + "lon": 3.9230856 + }, + { + "nodeId": 12549116923, + "lat": 43.6082907, + "lon": 3.8733754 + }, + { + "nodeId": 8755641116, + "lat": 43.6083953, + "lon": 3.8732627 + }, + { + "nodeId": 8755691717, + "lat": 43.6085337, + "lon": 3.8731266 + }, + { + "nodeId": 8755641113, + "lat": 43.6085893, + "lon": 3.8730839 + }, + { + "nodeId": 3728561640, + "lat": 43.6086202, + "lon": 3.8730602 + }, + { + "nodeId": 3728561625, + "lat": 43.6087638, + "lon": 3.8729727 + }, + { + "nodeId": 8755691718, + "lat": 43.6093336, + "lon": 3.8726701 + }, + { + "nodeId": 3728561630, + "lat": 43.6096195, + "lon": 3.8725303 + }, + { + "nodeId": 9779381525, + "lat": 43.6097915, + "lon": 3.8724476 + }, + { + "nodeId": 8755641112, + "lat": 43.6098271, + "lon": 3.8724305 + }, + { + "nodeId": 8755641110, + "lat": 43.6099844, + "lon": 3.8723732 + }, + { + "nodeId": 9779381524, + "lat": 43.6100602, + "lon": 3.8723531 + }, + { + "nodeId": 6328625890, + "lat": 43.610183, + "lon": 3.8723233 + }, + { + "nodeId": 3728561631, + "lat": 43.6102087, + "lon": 3.8723162 + }, + { + "nodeId": 9779381523, + "lat": 43.6102307, + "lon": 3.8723127 + }, + { + "nodeId": 3728561639, + "lat": 43.6105708, + "lon": 3.8722596 + }, + { + "nodeId": 8755641108, + "lat": 43.6103995, + "lon": 3.8722857 + }, + { + "nodeId": 8755641106, + "lat": 43.6107316, + "lon": 3.8722461 + }, + { + "nodeId": 8755641096, + "lat": 43.6106548, + "lon": 3.8722512 + }, + { + "nodeId": 8755641104, + "lat": 43.6109365, + "lon": 3.8722421 + }, + { + "nodeId": 8755641105, + "lat": 43.6108484, + "lon": 3.8722401 + }, + { + "nodeId": 39724069, + "lat": 43.6110134, + "lon": 3.8722465 + }, + { + "nodeId": 3123033203, + "lat": 43.6060478, + "lon": 3.8735895 + }, + { + "nodeId": 3123033200, + "lat": 43.6060164, + "lon": 3.8735596 + }, + { + "nodeId": 8755383274, + "lat": 43.6059977, + "lon": 3.8735316 + }, + { + "nodeId": 8755383273, + "lat": 43.6059824, + "lon": 3.8734997 + }, + { + "nodeId": 5216855959, + "lat": 43.6059746, + "lon": 3.8734734 + }, + { + "nodeId": 1432319451, + "lat": 43.6059635, + "lon": 3.873422 + }, + { + "nodeId": 2575586491, + "lat": 43.6059622, + "lon": 3.8733681 + }, + { + "nodeId": 4409290640, + "lat": 43.605966, + "lon": 3.8733157 + }, + { + "nodeId": 2575586464, + "lat": 43.6059722, + "lon": 3.8732695 + }, + { + "nodeId": 1503509414, + "lat": 43.5753084, + "lon": 3.9227706 + }, + { + "nodeId": 1503509367, + "lat": 43.5749405, + "lon": 3.922752 + }, + { + "nodeId": 1503509449, + "lat": 43.5748299, + "lon": 3.9227398 + }, + { + "nodeId": 2575586514, + "lat": 43.6046167, + "lon": 3.8832406 + }, + { + "nodeId": 2575586427, + "lat": 43.6046943, + "lon": 3.8831666 + }, + { + "nodeId": 6024968750, + "lat": 43.6289137, + "lon": 3.895057 + }, + { + "nodeId": 3965104430, + "lat": 43.6289114, + "lon": 3.8951155 + }, + { + "nodeId": 1547454946, + "lat": 43.6289086, + "lon": 3.8952151 + }, + { + "nodeId": 1547454787, + "lat": 43.6288856, + "lon": 3.8953868 + }, + { + "nodeId": 1547454885, + "lat": 43.6288414, + "lon": 3.8955752 + }, + { + "nodeId": 1547454694, + "lat": 43.6287754, + "lon": 3.8957475 + }, + { + "nodeId": 1547454871, + "lat": 43.6286877, + "lon": 3.8959126 + }, + { + "nodeId": 1547454731, + "lat": 43.6284625, + "lon": 3.8963061 + }, + { + "nodeId": 1547454935, + "lat": 43.6283618, + "lon": 3.8964716 + }, + { + "nodeId": 1547454792, + "lat": 43.6283008, + "lon": 3.8966089 + }, + { + "nodeId": 1547454770, + "lat": 43.6282523, + "lon": 3.8967718 + }, + { + "nodeId": 1547454881, + "lat": 43.6282314, + "lon": 3.8969126 + }, + { + "nodeId": 1547454690, + "lat": 43.6282237, + "lon": 3.8970427 + }, + { + "nodeId": 3966921620, + "lat": 43.628225, + "lon": 3.8970749 + }, + { + "nodeId": 1547454859, + "lat": 43.6282557, + "lon": 3.8973069 + }, + { + "nodeId": 1547454976, + "lat": 43.6282329, + "lon": 3.8971795 + }, + { + "nodeId": 1547454940, + "lat": 43.6282821, + "lon": 3.8973983 + }, + { + "nodeId": 3914371558, + "lat": 43.6283062, + "lon": 3.8974503 + }, + { + "nodeId": 1547454820, + "lat": 43.6283373, + "lon": 3.8974987 + }, + { + "nodeId": 3914371568, + "lat": 43.628363, + "lon": 3.8975261 + }, + { + "nodeId": 3914371569, + "lat": 43.6283929, + "lon": 3.8975593 + }, + { + "nodeId": 3914371617, + "lat": 43.6288066, + "lon": 3.8980115 + }, + { + "nodeId": 3914371475, + "lat": 43.6289004, + "lon": 3.8981038 + }, + { + "nodeId": 1547454685, + "lat": 43.6289836, + "lon": 3.8981865 + }, + { + "nodeId": 3914371489, + "lat": 43.6290423, + "lon": 3.8982549 + }, + { + "nodeId": 1547454897, + "lat": 43.6290733, + "lon": 3.898291 + }, + { + "nodeId": 3914370122, + "lat": 43.6291407, + "lon": 3.8983638 + }, + { + "nodeId": 1547454862, + "lat": 43.6293174, + "lon": 3.8985546 + }, + { + "nodeId": 1547454891, + "lat": 43.6294512, + "lon": 3.8987529 + }, + { + "nodeId": 1547454768, + "lat": 43.6293847, + "lon": 3.8986375 + }, + { + "nodeId": 1547454930, + "lat": 43.6295104, + "lon": 3.8988986 + }, + { + "nodeId": 1547454876, + "lat": 43.6295558, + "lon": 3.8990376 + }, + { + "nodeId": 1547447282, + "lat": 43.6295948, + "lon": 3.8992628 + }, + { + "nodeId": 3914371903, + "lat": 43.6296048, + "lon": 3.899339 + }, + { + "nodeId": 20931435, + "lat": 43.6296259, + "lon": 3.8994789 + }, + { + "nodeId": 1547447284, + "lat": 43.6296687, + "lon": 3.8998041 + }, + { + "nodeId": 3914372166, + "lat": 43.6296847, + "lon": 3.899922 + }, + { + "nodeId": 1547447285, + "lat": 43.6297756, + "lon": 3.9005721 + }, + { + "nodeId": 1547447280, + "lat": 43.6298508, + "lon": 3.9010833 + }, + { + "nodeId": 1547447283, + "lat": 43.6299214, + "lon": 3.9014715 + }, + { + "nodeId": 3966921628, + "lat": 43.6300829, + "lon": 3.9022559 + }, + { + "nodeId": 1547447279, + "lat": 43.6302244, + "lon": 3.9029651 + }, + { + "nodeId": 1547447281, + "lat": 43.6304743, + "lon": 3.9042309 + }, + { + "nodeId": 1547443532, + "lat": 43.6309905, + "lon": 3.9068054 + }, + { + "nodeId": 3966914851, + "lat": 43.631232, + "lon": 3.9080189 + }, + { + "nodeId": 1547443493, + "lat": 43.631256, + "lon": 3.9081417 + }, + { + "nodeId": 1547443536, + "lat": 43.6313367, + "lon": 3.9085385 + }, + { + "nodeId": 3966921757, + "lat": 43.6313575, + "lon": 3.9086361 + }, + { + "nodeId": 1547443540, + "lat": 43.6315025, + "lon": 3.9093692 + }, + { + "nodeId": 1547443500, + "lat": 43.6318419, + "lon": 3.9110621 + }, + { + "nodeId": 1547440722, + "lat": 43.6324038, + "lon": 3.9138805 + }, + { + "nodeId": 3966917746, + "lat": 43.6326978, + "lon": 3.9153555 + }, + { + "nodeId": 1994630057, + "lat": 43.6328461, + "lon": 3.9160885 + }, + { + "nodeId": 1547440721, + "lat": 43.6328696, + "lon": 3.916212 + }, + { + "nodeId": 1547440755, + "lat": 43.6329484, + "lon": 3.9166026 + }, + { + "nodeId": 3966921876, + "lat": 43.6329763, + "lon": 3.9167462 + }, + { + "nodeId": 1547440734, + "lat": 43.6331787, + "lon": 3.9177543 + }, + { + "nodeId": 11343665737, + "lat": 43.6333434, + "lon": 3.9185445 + }, + { + "nodeId": 1547440757, + "lat": 43.6335173, + "lon": 3.919379 + }, + { + "nodeId": 1547440737, + "lat": 43.6338939, + "lon": 3.921104 + }, + { + "nodeId": 1547440752, + "lat": 43.6336302, + "lon": 3.9198961 + }, + { + "nodeId": 1547440746, + "lat": 43.6339158, + "lon": 3.9212335 + }, + { + "nodeId": 1547440749, + "lat": 43.6339628, + "lon": 3.9214236 + }, + { + "nodeId": 1547440741, + "lat": 43.6340164, + "lon": 3.921623 + }, + { + "nodeId": 1547425612, + "lat": 43.6343372, + "lon": 3.922657 + }, + { + "nodeId": 1547440730, + "lat": 43.6340568, + "lon": 3.9217558 + }, + { + "nodeId": 3124509172, + "lat": 43.6343669, + "lon": 3.9227352 + }, + { + "nodeId": 1547425601, + "lat": 43.6344002, + "lon": 3.9227866 + }, + { + "nodeId": 12860288788, + "lat": 43.6344741, + "lon": 3.9228741 + }, + { + "nodeId": 1547425572, + "lat": 43.6346581, + "lon": 3.9230931 + }, + { + "nodeId": 1547425566, + "lat": 43.6345728, + "lon": 3.9229831 + }, + { + "nodeId": 1547425618, + "lat": 43.6349651, + "lon": 3.9237504 + }, + { + "nodeId": 1547425574, + "lat": 43.6347002, + "lon": 3.9231642 + }, + { + "nodeId": 5841648987, + "lat": 43.6352426, + "lon": 3.9243772 + }, + { + "nodeId": 1547425579, + "lat": 43.6352797, + "lon": 3.9244611 + }, + { + "nodeId": 2564555186, + "lat": 43.6166748, + "lon": 3.8258473 + }, + { + "nodeId": 5158657243, + "lat": 43.61582, + "lon": 3.8258541 + }, + { + "nodeId": 317545668, + "lat": 43.6098543, + "lon": 3.862799 + }, + { + "nodeId": 3123033217, + "lat": 43.6099752, + "lon": 3.8618986 + }, + { + "nodeId": 5360579272, + "lat": 43.6100627, + "lon": 3.8611048 + }, + { + "nodeId": 3123033216, + "lat": 43.6099178, + "lon": 3.8623422 + }, + { + "nodeId": 3123033219, + "lat": 43.610089, + "lon": 3.8608563 + }, + { + "nodeId": 3123033220, + "lat": 43.610128, + "lon": 3.8604611 + }, + { + "nodeId": 10053132850, + "lat": 43.6101393, + "lon": 3.8603497 + }, + { + "nodeId": 3123033223, + "lat": 43.6101529, + "lon": 3.8602152 + }, + { + "nodeId": 3123033225, + "lat": 43.6101936, + "lon": 3.8599284 + }, + { + "nodeId": 3123033226, + "lat": 43.6103299, + "lon": 3.859133 + }, + { + "nodeId": 12549116913, + "lat": 43.6104648, + "lon": 3.8584508 + }, + { + "nodeId": 2564254179, + "lat": 43.6173772, + "lon": 3.8183594 + }, + { + "nodeId": 11290763611, + "lat": 43.6480408, + "lon": 3.8688002 + }, + { + "nodeId": 3781187683, + "lat": 43.6173513, + "lon": 3.8182487 + }, + { + "nodeId": 9871245560, + "lat": 43.6483053, + "lon": 3.8688165 + }, + { + "nodeId": 11838390651, + "lat": 43.6483841, + "lon": 3.8688132 + }, + { + "nodeId": 13198237507, + "lat": 43.6484414, + "lon": 3.8687973 + }, + { + "nodeId": 9871245561, + "lat": 43.6484987, + "lon": 3.8687744 + }, + { + "nodeId": 13198237508, + "lat": 43.6485549, + "lon": 3.868738 + }, + { + "nodeId": 9871245562, + "lat": 43.6486724, + "lon": 3.8686152 + }, + { + "nodeId": 11838390652, + "lat": 43.6486125, + "lon": 3.868691 + }, + { + "nodeId": 13306123068, + "lat": 43.648773, + "lon": 3.8684742 + }, + { + "nodeId": 13306123066, + "lat": 43.648814, + "lon": 3.8684243 + }, + { + "nodeId": 12158164980, + "lat": 43.6488379, + "lon": 3.8683952 + }, + { + "nodeId": 9871245563, + "lat": 43.64956, + "lon": 3.8675182 + }, + { + "nodeId": 9871245564, + "lat": 43.650108, + "lon": 3.8668422 + }, + { + "nodeId": 9871245565, + "lat": 43.6501779, + "lon": 3.8667561 + }, + { + "nodeId": 12158164979, + "lat": 43.6502572, + "lon": 3.866667 + }, + { + "nodeId": 11809725745, + "lat": 43.6502988, + "lon": 3.8666204 + }, + { + "nodeId": 12158164981, + "lat": 43.6503579, + "lon": 3.8665589 + }, + { + "nodeId": 11800164959, + "lat": 43.6504231, + "lon": 3.8665071 + }, + { + "nodeId": 12158164983, + "lat": 43.6505045, + "lon": 3.8664603 + }, + { + "nodeId": 12430269162, + "lat": 43.6505542, + "lon": 3.8664398 + }, + { + "nodeId": 13198219479, + "lat": 43.6505978, + "lon": 3.8664252 + }, + { + "nodeId": 11809145688, + "lat": 43.6506465, + "lon": 3.8664053 + }, + { + "nodeId": 5287714650, + "lat": 43.650701, + "lon": 3.8663897 + }, + { + "nodeId": 13198237512, + "lat": 43.6507691, + "lon": 3.866376 + }, + { + "nodeId": 13198237516, + "lat": 43.6508829, + "lon": 3.8663721 + }, + { + "nodeId": 9871245567, + "lat": 43.6510053, + "lon": 3.866379 + }, + { + "nodeId": 12223986895, + "lat": 43.6510867, + "lon": 3.8663989 + }, + { + "nodeId": 13198237514, + "lat": 43.6511539, + "lon": 3.8664292 + }, + { + "nodeId": 12223986894, + "lat": 43.6512115, + "lon": 3.8664742 + }, + { + "nodeId": 12514004751, + "lat": 43.6512415, + "lon": 3.8665113 + }, + { + "nodeId": 9871245568, + "lat": 43.6512613, + "lon": 3.8665432 + }, + { + "nodeId": 12848592212, + "lat": 43.65128, + "lon": 3.8665828 + }, + { + "nodeId": 12223986893, + "lat": 43.6513109, + "lon": 3.8666817 + }, + { + "nodeId": 13306123067, + "lat": 43.6513261, + "lon": 3.8668252 + }, + { + "nodeId": 11838390667, + "lat": 43.6513309, + "lon": 3.8668709 + }, + { + "nodeId": 9871245569, + "lat": 43.651521, + "lon": 3.8686831 + }, + { + "nodeId": 12512395389, + "lat": 43.6515635, + "lon": 3.8690246 + }, + { + "nodeId": 13198237521, + "lat": 43.6515845, + "lon": 3.8691713 + }, + { + "nodeId": 11800164960, + "lat": 43.6516132, + "lon": 3.8693075 + }, + { + "nodeId": 13198237520, + "lat": 43.6516497, + "lon": 3.86947 + }, + { + "nodeId": 13198237519, + "lat": 43.6517002, + "lon": 3.8696343 + }, + { + "nodeId": 9871245570, + "lat": 43.6518115, + "lon": 3.8699594 + }, + { + "nodeId": 12549212261, + "lat": 43.580673, + "lon": 3.9264909 + }, + { + "nodeId": 1503509362, + "lat": 43.5804329, + "lon": 3.9259002 + }, + { + "nodeId": 1503509390, + "lat": 43.5803397, + "lon": 3.925707 + }, + { + "nodeId": 1503509360, + "lat": 43.5802853, + "lon": 3.9256212 + }, + { + "nodeId": 3122450467, + "lat": 43.5801848, + "lon": 3.9254858 + }, + { + "nodeId": 3122450466, + "lat": 43.580013, + "lon": 3.9252896 + }, + { + "nodeId": 12549212259, + "lat": 43.5792106, + "lon": 3.9244077 + }, + { + "nodeId": 8985892853, + "lat": 43.6162726, + "lon": 3.8744044 + }, + { + "nodeId": 60025051, + "lat": 43.6162381, + "lon": 3.8744487 + }, + { + "nodeId": 11867053060, + "lat": 43.6162133, + "lon": 3.8744756 + }, + { + "nodeId": 11867053061, + "lat": 43.6161868, + "lon": 3.8744986 + }, + { + "nodeId": 60025050, + "lat": 43.6161645, + "lon": 3.8745135 + }, + { + "nodeId": 918523098, + "lat": 43.6161299, + "lon": 3.8745271 + }, + { + "nodeId": 3118402895, + "lat": 43.6160981, + "lon": 3.8745365 + }, + { + "nodeId": 11867053062, + "lat": 43.6160667, + "lon": 3.8745375 + }, + { + "nodeId": 11867053064, + "lat": 43.6160053, + "lon": 3.8745318 + }, + { + "nodeId": 3118402894, + "lat": 43.6159749, + "lon": 3.8745249 + }, + { + "nodeId": 11867053063, + "lat": 43.6160353, + "lon": 3.874537 + }, + { + "nodeId": 12549097488, + "lat": 43.6173087, + "lon": 3.8264554 + }, + { + "nodeId": 2564555110, + "lat": 43.6172555, + "lon": 3.8262947 + }, + { + "nodeId": 5158657231, + "lat": 43.6171992, + "lon": 3.8261852 + }, + { + "nodeId": 2564554921, + "lat": 43.617188, + "lon": 3.8261612 + }, + { + "nodeId": 2564555193, + "lat": 43.617023, + "lon": 3.8259802 + }, + { + "nodeId": 2564555152, + "lat": 43.6169463, + "lon": 3.8259322 + }, + { + "nodeId": 2564555196, + "lat": 43.6171239, + "lon": 3.8260879 + }, + { + "nodeId": 5158657238, + "lat": 43.6168885, + "lon": 3.8258993 + }, + { + "nodeId": 2564555197, + "lat": 43.6168499, + "lon": 3.8258813 + }, + { + "nodeId": 5158657234, + "lat": 43.616791, + "lon": 3.8258604 + }, + { + "nodeId": 2564555087, + "lat": 43.6167595, + "lon": 3.82585 + }, + { + "nodeId": 2575419224, + "lat": 43.6169632, + "lon": 3.8401318 + }, + { + "nodeId": 2575419208, + "lat": 43.6172098, + "lon": 3.8399494 + }, + { + "nodeId": 2575419229, + "lat": 43.6174894, + "lon": 3.8397496 + }, + { + "nodeId": 2575419246, + "lat": 43.617703, + "lon": 3.8395914 + }, + { + "nodeId": 6311834769, + "lat": 43.6177521, + "lon": 3.8395534 + }, + { + "nodeId": 2575419094, + "lat": 43.6179204, + "lon": 3.839423 + }, + { + "nodeId": 6311834801, + "lat": 43.6180202, + "lon": 3.8393379 + }, + { + "nodeId": 5533923407, + "lat": 43.6184911, + "lon": 3.8389422 + }, + { + "nodeId": 12549116902, + "lat": 43.6186727, + "lon": 3.8387872 + }, + { + "nodeId": 6238445889, + "lat": 43.609535, + "lon": 3.8943275 + }, + { + "nodeId": 2597102255, + "lat": 43.6094891, + "lon": 3.8943201 + }, + { + "nodeId": 13203485369, + "lat": 43.6095865, + "lon": 3.8943356 + }, + { + "nodeId": 2597102247, + "lat": 43.6092982, + "lon": 3.894294 + }, + { + "nodeId": 6238445887, + "lat": 43.6093871, + "lon": 3.894306 + }, + { + "nodeId": 231454795, + "lat": 43.6089643, + "lon": 3.8942377 + }, + { + "nodeId": 977674834, + "lat": 43.6088945, + "lon": 3.8942241 + }, + { + "nodeId": 977674757, + "lat": 43.6088492, + "lon": 3.8942061 + }, + { + "nodeId": 13203485365, + "lat": 43.6087149, + "lon": 3.8941185 + }, + { + "nodeId": 1503509380, + "lat": 43.5731702, + "lon": 3.9199915 + }, + { + "nodeId": 1503509353, + "lat": 43.5727557, + "lon": 3.9191301 + }, + { + "nodeId": 3122450437, + "lat": 43.5726479, + "lon": 3.9188741 + }, + { + "nodeId": 2942632656, + "lat": 43.5725348, + "lon": 3.9185708 + }, + { + "nodeId": 977674774, + "lat": 43.6087665, + "lon": 3.8941611 + }, + { + "nodeId": 2564072249, + "lat": 43.5724973, + "lon": 3.9184721 + }, + { + "nodeId": 3122450436, + "lat": 43.5723357, + "lon": 3.9180105 + }, + { + "nodeId": 1503509435, + "lat": 43.572169, + "lon": 3.9174782 + }, + { + "nodeId": 1503509447, + "lat": 43.5716991, + "lon": 3.9159097 + }, + { + "nodeId": 2564072353, + "lat": 43.5714723, + "lon": 3.9149849 + }, + { + "nodeId": 1503509365, + "lat": 43.5713998, + "lon": 3.9146868 + }, + { + "nodeId": 3781187665, + "lat": 43.6172326, + "lon": 3.8177968 + }, + { + "nodeId": 3123039767, + "lat": 43.6172078, + "lon": 3.8177504 + }, + { + "nodeId": 3781187657, + "lat": 43.6171853, + "lon": 3.8177198 + }, + { + "nodeId": 3781187313, + "lat": 43.6171281, + "lon": 3.8176663 + }, + { + "nodeId": 1503629527, + "lat": 43.6171614, + "lon": 3.8176902 + }, + { + "nodeId": 1503629515, + "lat": 43.6171002, + "lon": 3.8176493 + }, + { + "nodeId": 3123039766, + "lat": 43.6170444, + "lon": 3.8176341 + }, + { + "nodeId": 3781187308, + "lat": 43.6170172, + "lon": 3.817636 + }, + { + "nodeId": 1503629509, + "lat": 43.6169894, + "lon": 3.81764 + }, + { + "nodeId": 3123039769, + "lat": 43.617309, + "lon": 3.8113046 + }, + { + "nodeId": 2564061751, + "lat": 43.6173403, + "lon": 3.8112309 + }, + { + "nodeId": 3123039773, + "lat": 43.6174412, + "lon": 3.8109985 + }, + { + "nodeId": 2564061752, + "lat": 43.6175064, + "lon": 3.8108291 + }, + { + "nodeId": 3123039776, + "lat": 43.617526, + "lon": 3.8107392 + }, + { + "nodeId": 2564061760, + "lat": 43.617533, + "lon": 3.810518 + }, + { + "nodeId": 2564061742, + "lat": 43.6175361, + "lon": 3.810634 + }, + { + "nodeId": 5162759099, + "lat": 43.6175307, + "lon": 3.8104859 + }, + { + "nodeId": 3123039759, + "lat": 43.61591, + "lon": 3.8143423 + }, + { + "nodeId": 2564061755, + "lat": 43.6159782, + "lon": 3.8142986 + }, + { + "nodeId": 2564061724, + "lat": 43.6160205, + "lon": 3.8142579 + }, + { + "nodeId": 3123039761, + "lat": 43.6160957, + "lon": 3.8141527 + }, + { + "nodeId": 2564061693, + "lat": 43.6160554, + "lon": 3.8142165 + }, + { + "nodeId": 9871245571, + "lat": 43.6521218, + "lon": 3.8707604 + }, + { + "nodeId": 12202780234, + "lat": 43.6523131, + "lon": 3.8711768 + }, + { + "nodeId": 9871245572, + "lat": 43.6524834, + "lon": 3.8714369 + }, + { + "nodeId": 13198237522, + "lat": 43.6522335, + "lon": 3.8710235 + }, + { + "nodeId": 13198237524, + "lat": 43.6525576, + "lon": 3.8715362 + }, + { + "nodeId": 12488817523, + "lat": 43.6526848, + "lon": 3.8716842 + }, + { + "nodeId": 13198237523, + "lat": 43.6528818, + "lon": 3.8719121 + }, + { + "nodeId": 9871245574, + "lat": 43.6530748, + "lon": 3.8721225 + }, + { + "nodeId": 3796147301, + "lat": 43.5908833, + "lon": 3.8906032 + }, + { + "nodeId": 1256343803, + "lat": 43.59081, + "lon": 3.8904915 + }, + { + "nodeId": 3796147298, + "lat": 43.5907738, + "lon": 3.8904401 + }, + { + "nodeId": 3670568171, + "lat": 43.5907227, + "lon": 3.8903641 + }, + { + "nodeId": 1506442724, + "lat": 43.5905291, + "lon": 3.8901725 + }, + { + "nodeId": 246676689, + "lat": 43.5906387, + "lon": 3.8902639 + }, + { + "nodeId": 1506442725, + "lat": 43.5903603, + "lon": 3.890126 + }, + { + "nodeId": 1432314076, + "lat": 43.5900766, + "lon": 3.8901312 + }, + { + "nodeId": 3124410422, + "lat": 43.590455, + "lon": 3.8901405 + }, + { + "nodeId": 3124410417, + "lat": 43.5899999, + "lon": 3.8901112 + }, + { + "nodeId": 1432314065, + "lat": 43.589931, + "lon": 3.8900655 + }, + { + "nodeId": 1432314079, + "lat": 43.5898534, + "lon": 3.8899926 + }, + { + "nodeId": 1432314085, + "lat": 43.5897402, + "lon": 3.8898232 + }, + { + "nodeId": 1432314061, + "lat": 43.5895812, + "lon": 3.8895424 + }, + { + "nodeId": 3124410413, + "lat": 43.5895499, + "lon": 3.8894643 + }, + { + "nodeId": 3670592906, + "lat": 43.5895416, + "lon": 3.8894354 + }, + { + "nodeId": 3796147494, + "lat": 43.5895275, + "lon": 3.8893769 + }, + { + "nodeId": 1504540315, + "lat": 43.5895221, + "lon": 3.8893359 + }, + { + "nodeId": 3796147493, + "lat": 43.589518, + "lon": 3.8892918 + }, + { + "nodeId": 3124410412, + "lat": 43.5895143, + "lon": 3.8892259 + }, + { + "nodeId": 1503483804, + "lat": 43.5895149, + "lon": 3.8891138 + }, + { + "nodeId": 3640025099, + "lat": 43.5895917, + "lon": 3.8880877 + }, + { + "nodeId": 1432314063, + "lat": 43.5896131, + "lon": 3.8878699 + }, + { + "nodeId": 2564674874, + "lat": 43.5896263, + "lon": 3.887717 + }, + { + "nodeId": 5377606220, + "lat": 43.5896352, + "lon": 3.8876378 + }, + { + "nodeId": 3124410415, + "lat": 43.5896976, + "lon": 3.8873625 + }, + { + "nodeId": 1432314057, + "lat": 43.5896617, + "lon": 3.8875159 + }, + { + "nodeId": 1432314058, + "lat": 43.5899576, + "lon": 3.8863411 + }, + { + "nodeId": 3124410419, + "lat": 43.5900614, + "lon": 3.8859984 + }, + { + "nodeId": 3124410421, + "lat": 43.5901613, + "lon": 3.8857022 + }, + { + "nodeId": 1432314080, + "lat": 43.5902134, + "lon": 3.8855547 + }, + { + "nodeId": 3796147697, + "lat": 43.5902509, + "lon": 3.8854548 + }, + { + "nodeId": 3796147706, + "lat": 43.5904974, + "lon": 3.8847922 + }, + { + "nodeId": 6343805384, + "lat": 43.5905956, + "lon": 3.8845314 + }, + { + "nodeId": 3670568166, + "lat": 43.5906411, + "lon": 3.8844119 + }, + { + "nodeId": 10814855885, + "lat": 43.5910629, + "lon": 3.8833029 + }, + { + "nodeId": 3670600191, + "lat": 43.5914354, + "lon": 3.8822989 + }, + { + "nodeId": 9028740408, + "lat": 43.5910939, + "lon": 3.8832105 + }, + { + "nodeId": 2564674912, + "lat": 43.5914717, + "lon": 3.8821976 + }, + { + "nodeId": 3124410427, + "lat": 43.5917309, + "lon": 3.8814948 + }, + { + "nodeId": 1503483786, + "lat": 43.5916646, + "lon": 3.8816786 + }, + { + "nodeId": 3124410428, + "lat": 43.5918671, + "lon": 3.8810777 + }, + { + "nodeId": 2564675013, + "lat": 43.5919369, + "lon": 3.8808747 + }, + { + "nodeId": 3124411829, + "lat": 43.5919613, + "lon": 3.8808061 + }, + { + "nodeId": 1942478523, + "lat": 43.5919869, + "lon": 3.8807527 + }, + { + "nodeId": 1432314075, + "lat": 43.5921607, + "lon": 3.8804177 + }, + { + "nodeId": 1432314062, + "lat": 43.5923839, + "lon": 3.8800004 + }, + { + "nodeId": 3670600297, + "lat": 43.5924264, + "lon": 3.8799459 + }, + { + "nodeId": 3124411831, + "lat": 43.5924554, + "lon": 3.8799089 + }, + { + "nodeId": 1503483808, + "lat": 43.5924998, + "lon": 3.8798668 + }, + { + "nodeId": 3670600315, + "lat": 43.5925772, + "lon": 3.8798095 + }, + { + "nodeId": 1432314059, + "lat": 43.5926766, + "lon": 3.8797324 + }, + { + "nodeId": 1432314067, + "lat": 43.5929327, + "lon": 3.8795597 + }, + { + "nodeId": 3670601359, + "lat": 43.5929512, + "lon": 3.8795521 + }, + { + "nodeId": 3796147338, + "lat": 43.5930238, + "lon": 3.8795222 + }, + { + "nodeId": 1432314082, + "lat": 43.593142, + "lon": 3.8794852 + }, + { + "nodeId": 1432314086, + "lat": 43.5936819, + "lon": 3.8793632 + }, + { + "nodeId": 3124411832, + "lat": 43.593062, + "lon": 3.8795064 + }, + { + "nodeId": 3124411837, + "lat": 43.5939412, + "lon": 3.8792945 + }, + { + "nodeId": 1432314056, + "lat": 43.5940736, + "lon": 3.879246 + }, + { + "nodeId": 3670601400, + "lat": 43.5940887, + "lon": 3.8792383 + }, + { + "nodeId": 2564674897, + "lat": 43.5941918, + "lon": 3.8791881 + }, + { + "nodeId": 1432314081, + "lat": 43.5942911, + "lon": 3.8791393 + }, + { + "nodeId": 3124411838, + "lat": 43.5944183, + "lon": 3.8790647 + }, + { + "nodeId": 1432314088, + "lat": 43.5946209, + "lon": 3.8789155 + }, + { + "nodeId": 1432314071, + "lat": 43.5949075, + "lon": 3.8786199 + }, + { + "nodeId": 3796147741, + "lat": 43.5951698, + "lon": 3.8783371 + }, + { + "nodeId": 2564675036, + "lat": 43.5952064, + "lon": 3.8782976 + }, + { + "nodeId": 1325374707, + "lat": 43.5953226, + "lon": 3.8781775 + }, + { + "nodeId": 246676721, + "lat": 43.5958597, + "lon": 3.8776488 + }, + { + "nodeId": 1325374738, + "lat": 43.5960062, + "lon": 3.8774951 + }, + { + "nodeId": 1325374733, + "lat": 43.5960625, + "lon": 3.8774146 + }, + { + "nodeId": 3122450426, + "lat": 43.5713201, + "lon": 3.9132752 + }, + { + "nodeId": 1503509363, + "lat": 43.5713001, + "lon": 3.9134051 + }, + { + "nodeId": 1503509398, + "lat": 43.571299, + "lon": 3.9136716 + }, + { + "nodeId": 2187320596, + "lat": 43.5712921, + "lon": 3.9134953 + }, + { + "nodeId": 3122450428, + "lat": 43.5713458, + "lon": 3.9144306 + }, + { + "nodeId": 3122450429, + "lat": 43.5713637, + "lon": 3.9145368 + }, + { + "nodeId": 2575419241, + "lat": 43.6155845, + "lon": 3.8399253 + }, + { + "nodeId": 2575419214, + "lat": 43.6160728, + "lon": 3.8405516 + }, + { + "nodeId": 2575419119, + "lat": 43.6156689, + "lon": 3.8400031 + }, + { + "nodeId": 9871231590, + "lat": 43.6268131, + "lon": 3.8663792 + }, + { + "nodeId": 11850833146, + "lat": 43.6276079, + "lon": 3.8674421 + }, + { + "nodeId": 9871231592, + "lat": 43.6281738, + "lon": 3.8681976 + }, + { + "nodeId": 12158179125, + "lat": 43.6277314, + "lon": 3.8676101 + }, + { + "nodeId": 13306128619, + "lat": 43.6282462, + "lon": 3.8682931 + }, + { + "nodeId": 12514004758, + "lat": 43.6282779, + "lon": 3.8683349 + }, + { + "nodeId": 12514004766, + "lat": 43.6288455, + "lon": 3.8691358 + }, + { + "nodeId": 12514004764, + "lat": 43.6289589, + "lon": 3.8692886 + }, + { + "nodeId": 12514004762, + "lat": 43.6292249, + "lon": 3.8696356 + }, + { + "nodeId": 12514004760, + "lat": 43.6292984, + "lon": 3.8697307 + }, + { + "nodeId": 9871231596, + "lat": 43.6293532, + "lon": 3.8697871 + }, + { + "nodeId": 9871231597, + "lat": 43.6294468, + "lon": 3.8698456 + }, + { + "nodeId": 13198237591, + "lat": 43.6293961, + "lon": 3.8698217 + }, + { + "nodeId": 13306128617, + "lat": 43.629469, + "lon": 3.8698486 + }, + { + "nodeId": 9871231598, + "lat": 43.6295174, + "lon": 3.8698553 + }, + { + "nodeId": 13198237592, + "lat": 43.6295705, + "lon": 3.8698477 + }, + { + "nodeId": 9871231599, + "lat": 43.6296158, + "lon": 3.8698321 + }, + { + "nodeId": 13306128615, + "lat": 43.6296834, + "lon": 3.8697957 + }, + { + "nodeId": 9871231600, + "lat": 43.6302426, + "lon": 3.8694849 + }, + { + "nodeId": 13306128613, + "lat": 43.6304141, + "lon": 3.8693937 + }, + { + "nodeId": 9871231602, + "lat": 43.6305503, + "lon": 3.8693212 + }, + { + "nodeId": 12184356827, + "lat": 43.6308564, + "lon": 3.869136 + }, + { + "nodeId": 9871231603, + "lat": 43.6319569, + "lon": 3.8683511 + }, + { + "nodeId": 9871231604, + "lat": 43.6321863, + "lon": 3.8681824 + }, + { + "nodeId": 13306128611, + "lat": 43.6320346, + "lon": 3.868294 + }, + { + "nodeId": 9871231605, + "lat": 43.6324478, + "lon": 3.8680251 + }, + { + "nodeId": 9871231607, + "lat": 43.6328808, + "lon": 3.8678851 + }, + { + "nodeId": 9871231606, + "lat": 43.632654, + "lon": 3.8679397 + }, + { + "nodeId": 9871231608, + "lat": 43.6330736, + "lon": 3.8678544 + }, + { + "nodeId": 9871231609, + "lat": 43.6333187, + "lon": 3.8678535 + }, + { + "nodeId": 12158179113, + "lat": 43.6335614, + "lon": 3.8678901 + }, + { + "nodeId": 9871231610, + "lat": 43.6338226, + "lon": 3.8679336 + }, + { + "nodeId": 13306128608, + "lat": 43.6336842, + "lon": 3.8679106 + }, + { + "nodeId": 11838390610, + "lat": 43.6345092, + "lon": 3.8680467 + }, + { + "nodeId": 13306128609, + "lat": 43.6345868, + "lon": 3.8680669 + }, + { + "nodeId": 13306128610, + "lat": 43.6347056, + "lon": 3.8680979 + }, + { + "nodeId": 12202780266, + "lat": 43.6347818, + "lon": 3.8681178 + }, + { + "nodeId": 13198237583, + "lat": 43.6348647, + "lon": 3.8681353 + }, + { + "nodeId": 9871231611, + "lat": 43.6352238, + "lon": 3.8682164 + }, + { + "nodeId": 11838390611, + "lat": 43.6353322, + "lon": 3.8682318 + }, + { + "nodeId": 9871231612, + "lat": 43.6354374, + "lon": 3.868227 + }, + { + "nodeId": 9871231613, + "lat": 43.6355046, + "lon": 3.8682143 + }, + { + "nodeId": 9871231615, + "lat": 43.6356671, + "lon": 3.868139 + }, + { + "nodeId": 12160321769, + "lat": 43.635609, + "lon": 3.8681741 + }, + { + "nodeId": 9871245517, + "lat": 43.6357671, + "lon": 3.8680732 + }, + { + "nodeId": 13306128603, + "lat": 43.636015, + "lon": 3.867858 + }, + { + "nodeId": 11838390613, + "lat": 43.6361292, + "lon": 3.8677589 + }, + { + "nodeId": 13306123100, + "lat": 43.6363841, + "lon": 3.8675269 + }, + { + "nodeId": 9871245518, + "lat": 43.6365848, + "lon": 3.8673442 + }, + { + "nodeId": 13306123099, + "lat": 43.6371458, + "lon": 3.8668521 + }, + { + "nodeId": 11838390614, + "lat": 43.6369684, + "lon": 3.8670119 + }, + { + "nodeId": 13306123096, + "lat": 43.6372045, + "lon": 3.8667992 + }, + { + "nodeId": 13306123094, + "lat": 43.6372698, + "lon": 3.8667404 + }, + { + "nodeId": 13306123093, + "lat": 43.6384533, + "lon": 3.8656765 + }, + { + "nodeId": 13306123090, + "lat": 43.6385063, + "lon": 3.8656293 + }, + { + "nodeId": 9871245520, + "lat": 43.6385164, + "lon": 3.8656202 + }, + { + "nodeId": 12768811840, + "lat": 43.6386198, + "lon": 3.8655317 + }, + { + "nodeId": 11838390616, + "lat": 43.6391809, + "lon": 3.865034 + }, + { + "nodeId": 13198237547, + "lat": 43.6394634, + "lon": 3.8647948 + }, + { + "nodeId": 9871245521, + "lat": 43.6397915, + "lon": 3.8645045 + }, + { + "nodeId": 12372539210, + "lat": 43.6399177, + "lon": 3.8643853 + }, + { + "nodeId": 13306123089, + "lat": 43.6402425, + "lon": 3.8640964 + }, + { + "nodeId": 11838390618, + "lat": 43.6403701, + "lon": 3.8639829 + }, + { + "nodeId": 13306123087, + "lat": 43.6403853, + "lon": 3.8639691 + }, + { + "nodeId": 11838390619, + "lat": 43.6407097, + "lon": 3.8636736 + }, + { + "nodeId": 9871245523, + "lat": 43.6408523, + "lon": 3.8635413 + }, + { + "nodeId": 13198237548, + "lat": 43.640938, + "lon": 3.8634554 + }, + { + "nodeId": 13198237543, + "lat": 43.6409989, + "lon": 3.8633814 + }, + { + "nodeId": 9871245524, + "lat": 43.6410485, + "lon": 3.8633171 + }, + { + "nodeId": 9871245525, + "lat": 43.6411049, + "lon": 3.8632252 + }, + { + "nodeId": 9871245526, + "lat": 43.64121, + "lon": 3.862983 + }, + { + "nodeId": 13198237545, + "lat": 43.641153, + "lon": 3.8631349 + }, + { + "nodeId": 13198237546, + "lat": 43.6412448, + "lon": 3.8628775 + }, + { + "nodeId": 9871245527, + "lat": 43.6412884, + "lon": 3.8626873 + }, + { + "nodeId": 13198237540, + "lat": 43.6413475, + "lon": 3.8624189 + }, + { + "nodeId": 9871245528, + "lat": 43.6413894, + "lon": 3.8622834 + }, + { + "nodeId": 9871245530, + "lat": 43.6414088, + "lon": 3.8622258 + }, + { + "nodeId": 13306123085, + "lat": 43.6414365, + "lon": 3.8621548 + }, + { + "nodeId": 9871245532, + "lat": 43.6415133, + "lon": 3.8620078 + }, + { + "nodeId": 9871245531, + "lat": 43.6414526, + "lon": 3.8621136 + }, + { + "nodeId": 9871245533, + "lat": 43.641616, + "lon": 3.8618902 + }, + { + "nodeId": 11838390622, + "lat": 43.6421033, + "lon": 3.8614625 + }, + { + "nodeId": 12216406808, + "lat": 43.6422807, + "lon": 3.8613156 + }, + { + "nodeId": 11838390624, + "lat": 43.6426744, + "lon": 3.8610249 + }, + { + "nodeId": 9871245534, + "lat": 43.6430447, + "lon": 3.8607472 + }, + { + "nodeId": 12725727268, + "lat": 43.6431869, + "lon": 3.8606582 + }, + { + "nodeId": 12216406810, + "lat": 43.6432355, + "lon": 3.860634 + }, + { + "nodeId": 12659340338, + "lat": 43.6433081, + "lon": 3.8606063 + }, + { + "nodeId": 13306123082, + "lat": 43.6432691, + "lon": 3.8606212 + }, + { + "nodeId": 12659340337, + "lat": 43.6433808, + "lon": 3.8605872 + }, + { + "nodeId": 12725727265, + "lat": 43.6434717, + "lon": 3.8605855 + }, + { + "nodeId": 9871245536, + "lat": 43.6435748, + "lon": 3.8606001 + }, + { + "nodeId": 9871245537, + "lat": 43.6436914, + "lon": 3.8606372 + }, + { + "nodeId": 13198237539, + "lat": 43.6438394, + "lon": 3.8607264 + }, + { + "nodeId": 9871245538, + "lat": 43.6437578, + "lon": 3.8606725 + }, + { + "nodeId": 11838390627, + "lat": 43.6439021, + "lon": 3.8607848 + }, + { + "nodeId": 9871245539, + "lat": 43.6439673, + "lon": 3.8608546 + }, + { + "nodeId": 9871245540, + "lat": 43.6446986, + "lon": 3.8616728 + }, + { + "nodeId": 9871245543, + "lat": 43.6447929, + "lon": 3.8617892 + }, + { + "nodeId": 9871245541, + "lat": 43.6447576, + "lon": 3.8617358 + }, + { + "nodeId": 13198237536, + "lat": 43.6448448, + "lon": 3.8619409 + }, + { + "nodeId": 13198237537, + "lat": 43.6448267, + "lon": 3.8618596 + }, + { + "nodeId": 12543274722, + "lat": 43.6448512, + "lon": 3.8620102 + }, + { + "nodeId": 11838390638, + "lat": 43.6448546, + "lon": 3.862112 + }, + { + "nodeId": 13198237532, + "lat": 43.6448484, + "lon": 3.8621779 + }, + { + "nodeId": 9871245545, + "lat": 43.6448311, + "lon": 3.8622561 + }, + { + "nodeId": 13198237531, + "lat": 43.6447904, + "lon": 3.8623495 + }, + { + "nodeId": 9871245546, + "lat": 43.6447408, + "lon": 3.8624413 + }, + { + "nodeId": 9871245547, + "lat": 43.6445138, + "lon": 3.8628111 + }, + { + "nodeId": 13306123080, + "lat": 43.6444715, + "lon": 3.8628858 + }, + { + "nodeId": 9871245548, + "lat": 43.6442534, + "lon": 3.8632712 + }, + { + "nodeId": 11838390634, + "lat": 43.6441197, + "lon": 3.8637009 + }, + { + "nodeId": 9871245549, + "lat": 43.644165, + "lon": 3.8634788 + }, + { + "nodeId": 9871245550, + "lat": 43.6441009, + "lon": 3.8638783 + }, + { + "nodeId": 11838390632, + "lat": 43.6441069, + "lon": 3.8640588 + }, + { + "nodeId": 9871245552, + "lat": 43.6443584, + "lon": 3.8664549 + }, + { + "nodeId": 9871245551, + "lat": 43.6441247, + "lon": 3.864286 + }, + { + "nodeId": 11838390640, + "lat": 43.6444145, + "lon": 3.8668447 + }, + { + "nodeId": 12186670923, + "lat": 43.64462, + "lon": 3.868188 + }, + { + "nodeId": 12186670924, + "lat": 43.6446489, + "lon": 3.8682841 + }, + { + "nodeId": 9871245553, + "lat": 43.644687, + "lon": 3.8683571 + }, + { + "nodeId": 11838390642, + "lat": 43.6447412, + "lon": 3.8684182 + }, + { + "nodeId": 12514004757, + "lat": 43.6446998, + "lon": 3.868372 + }, + { + "nodeId": 13306123072, + "lat": 43.6447576, + "lon": 3.8684331 + }, + { + "nodeId": 9871245554, + "lat": 43.6447888, + "lon": 3.8684615 + }, + { + "nodeId": 13306123073, + "lat": 43.6448069, + "lon": 3.8684733 + }, + { + "nodeId": 9871245556, + "lat": 43.6449237, + "lon": 3.8685138 + }, + { + "nodeId": 9871245555, + "lat": 43.6448379, + "lon": 3.8684933 + }, + { + "nodeId": 13306123074, + "lat": 43.6450787, + "lon": 3.8685242 + }, + { + "nodeId": 9871245557, + "lat": 43.6451497, + "lon": 3.868529 + }, + { + "nodeId": 9871245558, + "lat": 43.6456582, + "lon": 3.8685647 + }, + { + "nodeId": 3672530575, + "lat": 43.6453211, + "lon": 3.8685441 + }, + { + "nodeId": 12912873149, + "lat": 43.6464231, + "lon": 3.8686186 + }, + { + "nodeId": 12811196159, + "lat": 43.6467062, + "lon": 3.8686397 + }, + { + "nodeId": 9871245559, + "lat": 43.6468641, + "lon": 3.8686672 + }, + { + "nodeId": 13306123075, + "lat": 43.646721, + "lon": 3.8686423 + }, + { + "nodeId": 9871245663, + "lat": 43.6471474, + "lon": 3.8687268 + }, + { + "nodeId": 11290763610, + "lat": 43.6474844, + "lon": 3.8687638 + }, + { + "nodeId": 12549116911, + "lat": 43.6110194, + "lon": 3.8476119 + }, + { + "nodeId": 5999160404, + "lat": 43.611053, + "lon": 3.8474699 + }, + { + "nodeId": 2575419112, + "lat": 43.6111374, + "lon": 3.847229 + }, + { + "nodeId": 2575419060, + "lat": 43.6111942, + "lon": 3.8471042 + }, + { + "nodeId": 2575419125, + "lat": 43.6110889, + "lon": 3.8473547 + }, + { + "nodeId": 5070973696, + "lat": 43.6112196, + "lon": 3.8470573 + }, + { + "nodeId": 5999160405, + "lat": 43.6115523, + "lon": 3.8464506 + }, + { + "nodeId": 2575419152, + "lat": 43.6115727, + "lon": 3.8464145 + }, + { + "nodeId": 2575419088, + "lat": 43.6116253, + "lon": 3.8463373 + }, + { + "nodeId": 5999160408, + "lat": 43.6116745, + "lon": 3.8462615 + }, + { + "nodeId": 5999160409, + "lat": 43.6116972, + "lon": 3.8462267 + }, + { + "nodeId": 2575419242, + "lat": 43.6118967, + "lon": 3.8459603 + }, + { + "nodeId": 2575419222, + "lat": 43.6117404, + "lon": 3.8461601 + }, + { + "nodeId": 2575419183, + "lat": 43.6120705, + "lon": 3.8457269 + }, + { + "nodeId": 3380456651, + "lat": 43.6121316, + "lon": 3.8456243 + }, + { + "nodeId": 2575419243, + "lat": 43.6121472, + "lon": 3.8455982 + }, + { + "nodeId": 2575419249, + "lat": 43.6122346, + "lon": 3.8454466 + }, + { + "nodeId": 12549097496, + "lat": 43.6123265, + "lon": 3.8452516 + }, + { + "nodeId": 2575419045, + "lat": 43.612423, + "lon": 3.845047 + }, + { + "nodeId": 5446274166, + "lat": 43.6126451, + "lon": 3.8445223 + }, + { + "nodeId": 2575419218, + "lat": 43.6126415, + "lon": 3.8445333 + }, + { + "nodeId": 12549116909, + "lat": 43.6126647, + "lon": 3.8444654 + }, + { + "nodeId": 2564254196, + "lat": 43.6173195, + "lon": 3.8191119 + }, + { + "nodeId": 9908063322, + "lat": 43.617352, + "lon": 3.8190766 + }, + { + "nodeId": 9908063321, + "lat": 43.6173688, + "lon": 3.8190524 + }, + { + "nodeId": 2564254147, + "lat": 43.6173889, + "lon": 3.8190196 + }, + { + "nodeId": 2564254140, + "lat": 43.6174045, + "lon": 3.8189861 + }, + { + "nodeId": 9908063320, + "lat": 43.6174177, + "lon": 3.8189519 + }, + { + "nodeId": 9908063319, + "lat": 43.6174392, + "lon": 3.8188893 + }, + { + "nodeId": 2564254135, + "lat": 43.6174306, + "lon": 3.8189149 + }, + { + "nodeId": 9908063318, + "lat": 43.6174463, + "lon": 3.8188569 + }, + { + "nodeId": 9908063317, + "lat": 43.6174509, + "lon": 3.8188192 + }, + { + "nodeId": 2564254184, + "lat": 43.617454, + "lon": 3.8187805 + }, + { + "nodeId": 2564254207, + "lat": 43.6174552, + "lon": 3.8187368 + }, + { + "nodeId": 3781187711, + "lat": 43.6174552, + "lon": 3.8186993 + }, + { + "nodeId": 9908053410, + "lat": 43.6174498, + "lon": 3.8186553 + }, + { + "nodeId": 2564254131, + "lat": 43.6174432, + "lon": 3.8186186 + }, + { + "nodeId": 11881765501, + "lat": 43.6051791, + "lon": 3.8808315 + }, + { + "nodeId": 4040099683, + "lat": 43.6050995, + "lon": 3.8807195 + }, + { + "nodeId": 2564061713, + "lat": 43.6149974, + "lon": 3.8162171 + }, + { + "nodeId": 8736481258, + "lat": 43.6149679, + "lon": 3.8160898 + }, + { + "nodeId": 60722755, + "lat": 43.6064803, + "lon": 3.8940686 + }, + { + "nodeId": 12772083137, + "lat": 43.6063208, + "lon": 3.8940758 + }, + { + "nodeId": 950758569, + "lat": 43.6062851, + "lon": 3.8940774 + }, + { + "nodeId": 950758599, + "lat": 43.6062166, + "lon": 3.8940915 + }, + { + "nodeId": 60722754, + "lat": 43.6061415, + "lon": 3.8941077 + }, + { + "nodeId": 950758550, + "lat": 43.6060725, + "lon": 3.8941314 + }, + { + "nodeId": 12772083138, + "lat": 43.6059391, + "lon": 3.8941964 + }, + { + "nodeId": 950758584, + "lat": 43.6058965, + "lon": 3.8942172 + }, + { + "nodeId": 2575586463, + "lat": 43.6053068, + "lon": 3.8944977 + }, + { + "nodeId": 2187320588, + "lat": 43.5732772, + "lon": 3.9202134 + }, + { + "nodeId": 1616132598, + "lat": 43.6071731, + "lon": 3.8748316 + }, + { + "nodeId": 3123033212, + "lat": 43.607228, + "lon": 3.8747409 + }, + { + "nodeId": 8755383285, + "lat": 43.6072757, + "lon": 3.8746692 + }, + { + "nodeId": 3123033215, + "lat": 43.6073076, + "lon": 3.8746173 + }, + { + "nodeId": 8755383284, + "lat": 43.6073206, + "lon": 3.8745944 + }, + { + "nodeId": 8755383283, + "lat": 43.6073349, + "lon": 3.8745609 + }, + { + "nodeId": 1616132593, + "lat": 43.6073442, + "lon": 3.8745254 + }, + { + "nodeId": 5216855964, + "lat": 43.6073528, + "lon": 3.8744605 + }, + { + "nodeId": 1616132592, + "lat": 43.6073528, + "lon": 3.8744119 + }, + { + "nodeId": 5216855962, + "lat": 43.6073459, + "lon": 3.8743677 + }, + { + "nodeId": 8755383277, + "lat": 43.607341, + "lon": 3.874342 + }, + { + "nodeId": 5216855963, + "lat": 43.6073348, + "lon": 3.8743202 + }, + { + "nodeId": 8755383276, + "lat": 43.6073274, + "lon": 3.8743 + }, + { + "nodeId": 8755383282, + "lat": 43.6073162, + "lon": 3.8742807 + }, + { + "nodeId": 8755383278, + "lat": 43.6073031, + "lon": 3.8742591 + }, + { + "nodeId": 2575586424, + "lat": 43.6056762, + "lon": 3.8821781 + }, + { + "nodeId": 938646830, + "lat": 43.6057137, + "lon": 3.8821352 + }, + { + "nodeId": 3119066031, + "lat": 43.6057335, + "lon": 3.8821001 + }, + { + "nodeId": 2305432968, + "lat": 43.6057553, + "lon": 3.8820493 + }, + { + "nodeId": 3796068518, + "lat": 43.5925335, + "lon": 3.8930149 + }, + { + "nodeId": 2564628106, + "lat": 43.5924934, + "lon": 3.8929227 + }, + { + "nodeId": 3124411830, + "lat": 43.5923978, + "lon": 3.892746 + }, + { + "nodeId": 1432314068, + "lat": 43.5922818, + "lon": 3.8925466 + }, + { + "nodeId": 3796147325, + "lat": 43.5920905, + "lon": 3.8922401 + }, + { + "nodeId": 1432314066, + "lat": 43.5920541, + "lon": 3.8921839 + }, + { + "nodeId": 6578283044, + "lat": 43.5921108, + "lon": 3.8922726 + }, + { + "nodeId": 12549212258, + "lat": 43.5744075, + "lon": 3.9224489 + }, + { + "nodeId": 3712072815, + "lat": 43.5743853, + "lon": 3.9224084 + }, + { + "nodeId": 1503509403, + "lat": 43.574066, + "lon": 3.9218267 + }, + { + "nodeId": 5116912556, + "lat": 43.6101849, + "lon": 3.8540494 + }, + { + "nodeId": 1503509402, + "lat": 43.5735994, + "lon": 3.9208752 + }, + { + "nodeId": 2575419074, + "lat": 43.6101713, + "lon": 3.8538113 + }, + { + "nodeId": 2575419131, + "lat": 43.6101654, + "lon": 3.8535402 + }, + { + "nodeId": 2575419155, + "lat": 43.6101617, + "lon": 3.8533162 + }, + { + "nodeId": 5070973654, + "lat": 43.610164, + "lon": 3.8531449 + }, + { + "nodeId": 2575419236, + "lat": 43.610179, + "lon": 3.8522624 + }, + { + "nodeId": 2575419057, + "lat": 43.610198, + "lon": 3.851949 + }, + { + "nodeId": 3123033224, + "lat": 43.6101694, + "lon": 3.852469 + }, + { + "nodeId": 2575419090, + "lat": 43.6102601, + "lon": 3.8513868 + }, + { + "nodeId": 2575419175, + "lat": 43.6103614, + "lon": 3.8506703 + }, + { + "nodeId": 2575419078, + "lat": 43.6104538, + "lon": 3.849997 + }, + { + "nodeId": 2575419165, + "lat": 43.6104156, + "lon": 3.850176 + }, + { + "nodeId": 6264871887, + "lat": 43.6104803, + "lon": 3.8498815 + }, + { + "nodeId": 2575419254, + "lat": 43.6105045, + "lon": 3.8497759 + }, + { + "nodeId": 2575419054, + "lat": 43.6107243, + "lon": 3.848852 + }, + { + "nodeId": 3123039731, + "lat": 43.6108555, + "lon": 3.8483056 + }, + { + "nodeId": 2575419051, + "lat": 43.610874, + "lon": 3.8482261 + }, + { + "nodeId": 2575586396, + "lat": 43.6040508, + "lon": 3.8943279 + }, + { + "nodeId": 4205213587, + "lat": 43.6152967, + "lon": 3.8740315 + }, + { + "nodeId": 11867054282, + "lat": 43.6153243, + "lon": 3.8740553 + }, + { + "nodeId": 8754231923, + "lat": 43.6153401, + "lon": 3.874073 + }, + { + "nodeId": 11867054283, + "lat": 43.6153563, + "lon": 3.8740991 + }, + { + "nodeId": 11867054284, + "lat": 43.6153688, + "lon": 3.8741283 + }, + { + "nodeId": 8754231922, + "lat": 43.6153794, + "lon": 3.8741617 + }, + { + "nodeId": 11867054285, + "lat": 43.6153846, + "lon": 3.8741966 + }, + { + "nodeId": 4205213579, + "lat": 43.6153873, + "lon": 3.8742313 + }, + { + "nodeId": 11867054286, + "lat": 43.615388, + "lon": 3.8742793 + }, + { + "nodeId": 8754231921, + "lat": 43.6153851, + "lon": 3.8743513 + }, + { + "nodeId": 3728561522, + "lat": 43.6153773, + "lon": 3.8744111 + }, + { + "nodeId": 9779324014, + "lat": 43.6153599, + "lon": 3.8745045 + }, + { + "nodeId": 12090201665, + "lat": 43.6153313, + "lon": 3.8746533 + }, + { + "nodeId": 1547396447, + "lat": 43.6047364, + "lon": 3.8802058 + }, + { + "nodeId": 11881765524, + "lat": 43.6046813, + "lon": 3.8801618 + }, + { + "nodeId": 1585653155, + "lat": 43.6048112, + "lon": 3.8802598 + }, + { + "nodeId": 1585653161, + "lat": 43.6048476, + "lon": 3.8802715 + }, + { + "nodeId": 2009776381, + "lat": 43.6048875, + "lon": 3.8802761 + }, + { + "nodeId": 2009776382, + "lat": 43.6049155, + "lon": 3.8802744 + }, + { + "nodeId": 2009776383, + "lat": 43.6049533, + "lon": 3.8802661 + }, + { + "nodeId": 11881765523, + "lat": 43.6049662, + "lon": 3.8802594 + }, + { + "nodeId": 2009776385, + "lat": 43.6049733, + "lon": 3.8802557 + }, + { + "nodeId": 252285662, + "lat": 43.6050025, + "lon": 3.8802392 + }, + { + "nodeId": 2583839272, + "lat": 43.6050453, + "lon": 3.8801982 + }, + { + "nodeId": 1503509431, + "lat": 43.5811058, + "lon": 3.9270815 + }, + { + "nodeId": 2583839270, + "lat": 43.6050277, + "lon": 3.8802174 + }, + { + "nodeId": 9907924081, + "lat": 43.5812274, + "lon": 3.927211 + }, + { + "nodeId": 2187320587, + "lat": 43.58125, + "lon": 3.9272349 + }, + { + "nodeId": 9907924082, + "lat": 43.5812735, + "lon": 3.9272509 + }, + { + "nodeId": 3119254620, + "lat": 43.5812984, + "lon": 3.9272647 + }, + { + "nodeId": 9907924083, + "lat": 43.5813252, + "lon": 3.927273 + }, + { + "nodeId": 9907924085, + "lat": 43.5813486, + "lon": 3.9272774 + }, + { + "nodeId": 2187320600, + "lat": 43.5813705, + "lon": 3.927279 + }, + { + "nodeId": 9907924086, + "lat": 43.5814022, + "lon": 3.9272765 + }, + { + "nodeId": 3355619607, + "lat": 43.5817213, + "lon": 3.9272195 + }, + { + "nodeId": 9907924103, + "lat": 43.581804, + "lon": 3.9272052 + }, + { + "nodeId": 2187320603, + "lat": 43.5818445, + "lon": 3.9271941 + }, + { + "nodeId": 9907924101, + "lat": 43.5819325, + "lon": 3.9271545 + }, + { + "nodeId": 9907924102, + "lat": 43.5818964, + "lon": 3.927173 + }, + { + "nodeId": 2187320590, + "lat": 43.5819573, + "lon": 3.9271378 + }, + { + "nodeId": 3119254625, + "lat": 43.5819833, + "lon": 3.9271154 + }, + { + "nodeId": 9907924107, + "lat": 43.5820046, + "lon": 3.9270915 + }, + { + "nodeId": 9907924108, + "lat": 43.5820249, + "lon": 3.9270651 + }, + { + "nodeId": 3421813094, + "lat": 43.6065506, + "lon": 3.8721386 + }, + { + "nodeId": 3421812296, + "lat": 43.6067913, + "lon": 3.8716553 + }, + { + "nodeId": 3421812299, + "lat": 43.6071147, + "lon": 3.8710266 + }, + { + "nodeId": 2564061597, + "lat": 43.6161552, + "lon": 3.8140305 + }, + { + "nodeId": 5162759104, + "lat": 43.6163894, + "lon": 3.8134707 + }, + { + "nodeId": 5162759102, + "lat": 43.6166274, + "lon": 3.8129105 + }, + { + "nodeId": 2977400536, + "lat": 43.6166742, + "lon": 3.8127998 + }, + { + "nodeId": 5162759101, + "lat": 43.61673, + "lon": 3.8126692 + }, + { + "nodeId": 3781187307, + "lat": 43.6170217, + "lon": 3.8119798 + }, + { + "nodeId": 8736481259, + "lat": 43.6172412, + "lon": 3.8114639 + }, + { + "nodeId": 9910339417, + "lat": 43.61442, + "lon": 3.8824177 + }, + { + "nodeId": 3118402849, + "lat": 43.6144554, + "lon": 3.8825092 + }, + { + "nodeId": 3118402852, + "lat": 43.6144849, + "lon": 3.8825806 + }, + { + "nodeId": 290826566, + "lat": 43.6145821, + "lon": 3.8828151 + }, + { + "nodeId": 9910339424, + "lat": 43.6145947, + "lon": 3.8828502 + }, + { + "nodeId": 70969011, + "lat": 43.6146114, + "lon": 3.8829022 + }, + { + "nodeId": 3796068514, + "lat": 43.5913911, + "lon": 3.8913381 + }, + { + "nodeId": 3796147307, + "lat": 43.5913774, + "lon": 3.8913183 + }, + { + "nodeId": 4896854166, + "lat": 43.6073209, + "lon": 3.8745307 + }, + { + "nodeId": 8755383281, + "lat": 43.6073968, + "lon": 3.8743725 + }, + { + "nodeId": 3728561633, + "lat": 43.6074442, + "lon": 3.8743017 + }, + { + "nodeId": 5534472849, + "lat": 43.6075023, + "lon": 3.8742373 + }, + { + "nodeId": 3728561635, + "lat": 43.6075884, + "lon": 3.8741407 + }, + { + "nodeId": 3728561634, + "lat": 43.6078297, + "lon": 3.8738769 + }, + { + "nodeId": 3122450454, + "lat": 43.5754248, + "lon": 3.9227937 + }, + { + "nodeId": 3122450456, + "lat": 43.5755295, + "lon": 3.922822 + }, + { + "nodeId": 2187320586, + "lat": 43.575574, + "lon": 3.9228272 + }, + { + "nodeId": 2187320599, + "lat": 43.5762812, + "lon": 3.9228755 + }, + { + "nodeId": 12078541755, + "lat": 43.5760069, + "lon": 3.9228568 + }, + { + "nodeId": 3122450458, + "lat": 43.5763827, + "lon": 3.9228904 + }, + { + "nodeId": 3122450460, + "lat": 43.5764318, + "lon": 3.9228968 + }, + { + "nodeId": 3122450463, + "lat": 43.5766802, + "lon": 3.9229733 + }, + { + "nodeId": 12549097497, + "lat": 43.6212923, + "lon": 3.834244 + }, + { + "nodeId": 2575419082, + "lat": 43.6211599, + "lon": 3.8341017 + }, + { + "nodeId": 2575419189, + "lat": 43.6200784, + "lon": 3.8328136 + }, + { + "nodeId": 2575419106, + "lat": 43.6204811, + "lon": 3.8332955 + }, + { + "nodeId": 2575419197, + "lat": 43.6199965, + "lon": 3.8327018 + }, + { + "nodeId": 6311834751, + "lat": 43.6200566, + "lon": 3.8327838 + }, + { + "nodeId": 2575419169, + "lat": 43.6199056, + "lon": 3.8325964 + }, + { + "nodeId": 6311834747, + "lat": 43.6197468, + "lon": 3.8323429 + }, + { + "nodeId": 2575419098, + "lat": 43.6197923, + "lon": 3.8324177 + }, + { + "nodeId": 6311834712, + "lat": 43.6193745, + "lon": 3.8317333 + }, + { + "nodeId": 12089458888, + "lat": 43.6063584, + "lon": 3.8737521 + }, + { + "nodeId": 12549104275, + "lat": 43.6139982, + "lon": 3.8894101 + }, + { + "nodeId": 2575419238, + "lat": 43.6193616, + "lon": 3.8317124 + }, + { + "nodeId": 3966283957, + "lat": 43.6140325, + "lon": 3.8897738 + }, + { + "nodeId": 231454829, + "lat": 43.6140746, + "lon": 3.8902098 + }, + { + "nodeId": 977674803, + "lat": 43.6141305, + "lon": 3.8904885 + }, + { + "nodeId": 977674892, + "lat": 43.6140998, + "lon": 3.8903734 + }, + { + "nodeId": 5414611514, + "lat": 43.6141665, + "lon": 3.8906012 + }, + { + "nodeId": 977674970, + "lat": 43.6142237, + "lon": 3.8907149 + }, + { + "nodeId": 977674763, + "lat": 43.6142772, + "lon": 3.8908177 + }, + { + "nodeId": 231454825, + "lat": 43.6147873, + "lon": 3.8917038 + }, + { + "nodeId": 977674931, + "lat": 43.6148315, + "lon": 3.8917912 + }, + { + "nodeId": 977674853, + "lat": 43.6148579, + "lon": 3.8918565 + }, + { + "nodeId": 977674764, + "lat": 43.6148739, + "lon": 3.8919107 + }, + { + "nodeId": 977674799, + "lat": 43.6148807, + "lon": 3.8919735 + }, + { + "nodeId": 5414611511, + "lat": 43.6148807, + "lon": 3.8920127 + }, + { + "nodeId": 977674969, + "lat": 43.6148807, + "lon": 3.8920371 + }, + { + "nodeId": 12549104276, + "lat": 43.6148797, + "lon": 3.8920502 + }, + { + "nodeId": 977674826, + "lat": 43.6148764, + "lon": 3.8920939 + }, + { + "nodeId": 5414611504, + "lat": 43.6148712, + "lon": 3.8921181 + }, + { + "nodeId": 977674822, + "lat": 43.6148641, + "lon": 3.8921515 + }, + { + "nodeId": 13203485366, + "lat": 43.6148432, + "lon": 3.8922119 + }, + { + "nodeId": 2575419129, + "lat": 43.6127376, + "lon": 3.8442544 + }, + { + "nodeId": 2575419063, + "lat": 43.6131308, + "lon": 3.8427349 + }, + { + "nodeId": 2575419144, + "lat": 43.6133388, + "lon": 3.8413835 + }, + { + "nodeId": 2575419117, + "lat": 43.613058, + "lon": 3.8430756 + }, + { + "nodeId": 2575419206, + "lat": 43.6135027, + "lon": 3.840333 + }, + { + "nodeId": 2575419108, + "lat": 43.6135133, + "lon": 3.8402438 + }, + { + "nodeId": 12549097495, + "lat": 43.6133525, + "lon": 3.8412956 + }, + { + "nodeId": 2575419240, + "lat": 43.6135202, + "lon": 3.8401172 + }, + { + "nodeId": 6264871456, + "lat": 43.61352, + "lon": 3.8400632 + }, + { + "nodeId": 6264871478, + "lat": 43.6135199, + "lon": 3.8400158 + }, + { + "nodeId": 2575419075, + "lat": 43.6135178, + "lon": 3.8392811 + }, + { + "nodeId": 6264871481, + "lat": 43.6135183, + "lon": 3.839275 + }, + { + "nodeId": 3123039742, + "lat": 43.6135222, + "lon": 3.8392248 + }, + { + "nodeId": 2575419154, + "lat": 43.6135322, + "lon": 3.8391749 + }, + { + "nodeId": 2575419185, + "lat": 43.6135488, + "lon": 3.8391077 + }, + { + "nodeId": 2575419163, + "lat": 43.6135765, + "lon": 3.8390469 + }, + { + "nodeId": 3380456662, + "lat": 43.6136103, + "lon": 3.8390047 + }, + { + "nodeId": 6264871483, + "lat": 43.6136147, + "lon": 3.8390008 + }, + { + "nodeId": 2575419104, + "lat": 43.613662, + "lon": 3.8389664 + }, + { + "nodeId": 3380456670, + "lat": 43.6136841, + "lon": 3.8389575 + }, + { + "nodeId": 2575419102, + "lat": 43.613647, + "lon": 3.8389722 + }, + { + "nodeId": 3380456682, + "lat": 43.6137291, + "lon": 3.8389461 + }, + { + "nodeId": 2575419187, + "lat": 43.6137771, + "lon": 3.8389427 + }, + { + "nodeId": 2575419235, + "lat": 43.6137867, + "lon": 3.8389428 + }, + { + "nodeId": 2575419065, + "lat": 43.6138252, + "lon": 3.8389555 + }, + { + "nodeId": 2575419248, + "lat": 43.6138659, + "lon": 3.8389771 + }, + { + "nodeId": 6264871466, + "lat": 43.613893, + "lon": 3.8389942 + }, + { + "nodeId": 2575419177, + "lat": 43.6140377, + "lon": 3.8390858 + }, + { + "nodeId": 12549116908, + "lat": 43.6142267, + "lon": 3.8392119 + }, + { + "nodeId": 2575419079, + "lat": 43.6220988, + "lon": 3.8359671 + }, + { + "nodeId": 2575419048, + "lat": 43.6222055, + "lon": 3.8358807 + }, + { + "nodeId": 2575419069, + "lat": 43.6222589, + "lon": 3.8358043 + }, + { + "nodeId": 2575419059, + "lat": 43.6222968, + "lon": 3.8357118 + }, + { + "nodeId": 2575419181, + "lat": 43.6223074, + "lon": 3.8356273 + }, + { + "nodeId": 2575419062, + "lat": 43.6222893, + "lon": 3.8354635 + }, + { + "nodeId": 2575419173, + "lat": 43.622302, + "lon": 3.8355139 + }, + { + "nodeId": 3123039791, + "lat": 43.6222614, + "lon": 3.8353895 + }, + { + "nodeId": 2575419046, + "lat": 43.6222148, + "lon": 3.8353176 + }, + { + "nodeId": 6311835526, + "lat": 43.6222043, + "lon": 3.8353045 + }, + { + "nodeId": 6311835533, + "lat": 43.6217747, + "lon": 3.8347792 + }, + { + "nodeId": 2575419099, + "lat": 43.6216156, + "lon": 3.8345895 + }, + { + "nodeId": 2575419072, + "lat": 43.6215103, + "lon": 3.8344668 + }, + { + "nodeId": 3123039788, + "lat": 43.6213404, + "lon": 3.8342957 + }, + { + "nodeId": 1503509372, + "lat": 43.5791212, + "lon": 3.9243094 + }, + { + "nodeId": 3122450465, + "lat": 43.5790292, + "lon": 3.9242254 + }, + { + "nodeId": 1503509423, + "lat": 43.5789372, + "lon": 3.9241561 + }, + { + "nodeId": 2575419096, + "lat": 43.619157, + "lon": 3.8313813 + }, + { + "nodeId": 2575419233, + "lat": 43.6188793, + "lon": 3.8308462 + }, + { + "nodeId": 13379078587, + "lat": 43.6188215, + "lon": 3.8307316 + }, + { + "nodeId": 2575419066, + "lat": 43.6186306, + "lon": 3.8303528 + }, + { + "nodeId": 2575419167, + "lat": 43.6185455, + "lon": 3.8301666 + }, + { + "nodeId": 2575419193, + "lat": 43.6184473, + "lon": 3.8299396 + }, + { + "nodeId": 2575419191, + "lat": 43.6183696, + "lon": 3.8297453 + }, + { + "nodeId": 2575419140, + "lat": 43.6179435, + "lon": 3.8284269 + }, + { + "nodeId": 2564555065, + "lat": 43.6176453, + "lon": 3.827505 + }, + { + "nodeId": 2564555106, + "lat": 43.6173375, + "lon": 3.8265426 + }, + { + "nodeId": 13306123065, + "lat": 43.6532927, + "lon": 3.8723864 + }, + { + "nodeId": 3728561518, + "lat": 43.608207, + "lon": 3.8734624 + }, + { + "nodeId": 8755641115, + "lat": 43.60827, + "lon": 3.8733977 + }, + { + "nodeId": 2564061626, + "lat": 43.6149161, + "lon": 3.815787 + }, + { + "nodeId": 2564061630, + "lat": 43.6149384, + "lon": 3.8159574 + }, + { + "nodeId": 2564061661, + "lat": 43.6149083, + "lon": 3.8156234 + }, + { + "nodeId": 10119598687, + "lat": 43.6149111, + "lon": 3.8155645 + }, + { + "nodeId": 2564061662, + "lat": 43.6149171, + "lon": 3.8154384 + }, + { + "nodeId": 2564061685, + "lat": 43.6149966, + "lon": 3.8151195 + }, + { + "nodeId": 2564061659, + "lat": 43.6149474, + "lon": 3.8152821 + }, + { + "nodeId": 3123039745, + "lat": 43.6151079, + "lon": 3.8149184 + }, + { + "nodeId": 2564061621, + "lat": 43.6151763, + "lon": 3.8148255 + }, + { + "nodeId": 2564061680, + "lat": 43.6152414, + "lon": 3.8147463 + }, + { + "nodeId": 2564061643, + "lat": 43.6153637, + "lon": 3.8146396 + }, + { + "nodeId": 2564061766, + "lat": 43.6150466, + "lon": 3.815013 + }, + { + "nodeId": 2564061607, + "lat": 43.6156317, + "lon": 3.8144634 + }, + { + "nodeId": 12862174409, + "lat": 43.6092708, + "lon": 3.866028 + }, + { + "nodeId": 2564061600, + "lat": 43.615817, + "lon": 3.8143817 + }, + { + "nodeId": 2564061707, + "lat": 43.6154827, + "lon": 3.814549 + }, + { + "nodeId": 2575586468, + "lat": 43.6095478, + "lon": 3.8645487 + }, + { + "nodeId": 11889083449, + "lat": 43.6095815, + "lon": 3.8643638 + }, + { + "nodeId": 8712217477, + "lat": 43.6111609, + "lon": 3.872264 + }, + { + "nodeId": 2575586314, + "lat": 43.6097472, + "lon": 3.8634275 + }, + { + "nodeId": 11889125681, + "lat": 43.6112167, + "lon": 3.8722725 + }, + { + "nodeId": 11889125682, + "lat": 43.6112379, + "lon": 3.8722747 + }, + { + "nodeId": 39724067, + "lat": 43.6112726, + "lon": 3.872281 + }, + { + "nodeId": 12177979471, + "lat": 43.6057154, + "lon": 3.8821116 + }, + { + "nodeId": 2305432962, + "lat": 43.6057171, + "lon": 3.8821611 + }, + { + "nodeId": 3811884912, + "lat": 43.6057225, + "lon": 3.8821942 + }, + { + "nodeId": 11069403114, + "lat": 43.6057346, + "lon": 3.8822492 + }, + { + "nodeId": 939396419, + "lat": 43.6057286, + "lon": 3.8822315 + }, + { + "nodeId": 12085703502, + "lat": 43.6058373, + "lon": 3.8824355 + }, + { + "nodeId": 938646839, + "lat": 43.6057506, + "lon": 3.8822962 + }, + { + "nodeId": 60722787, + "lat": 43.6057927, + "lon": 3.8823781 + }, + { + "nodeId": 939396405, + "lat": 43.605844, + "lon": 3.8824441 + }, + { + "nodeId": 938646817, + "lat": 43.6059083, + "lon": 3.8825015 + }, + { + "nodeId": 3122450423, + "lat": 43.571015, + "lon": 3.9058734 + }, + { + "nodeId": 5349138402, + "lat": 43.5708068, + "lon": 3.9054718 + }, + { + "nodeId": 3122450421, + "lat": 43.5709614, + "lon": 3.9057492 + }, + { + "nodeId": 2564704209, + "lat": 43.5708797, + "lon": 3.9056006 + }, + { + "nodeId": 12549104240, + "lat": 43.6143379, + "lon": 3.8836612 + }, + { + "nodeId": 5414543487, + "lat": 43.6143221, + "lon": 3.8836841 + }, + { + "nodeId": 976921165, + "lat": 43.6142264, + "lon": 3.8838229 + }, + { + "nodeId": 976921260, + "lat": 43.6141687, + "lon": 3.8839238 + }, + { + "nodeId": 231454855, + "lat": 43.6141012, + "lon": 3.8840552 + }, + { + "nodeId": 976921204, + "lat": 43.6140232, + "lon": 3.8842469 + }, + { + "nodeId": 231454851, + "lat": 43.6139624, + "lon": 3.8844317 + }, + { + "nodeId": 976921142, + "lat": 43.6139109, + "lon": 3.8846403 + }, + { + "nodeId": 976921300, + "lat": 43.6138851, + "lon": 3.8847913 + }, + { + "nodeId": 976921178, + "lat": 43.6138648, + "lon": 3.8849617 + }, + { + "nodeId": 976921231, + "lat": 43.6138525, + "lon": 3.8851686 + }, + { + "nodeId": 231454848, + "lat": 43.6138427, + "lon": 3.8854298 + }, + { + "nodeId": 977674887, + "lat": 43.613836, + "lon": 3.8856808 + }, + { + "nodeId": 977674964, + "lat": 43.6138372, + "lon": 3.8858054 + }, + { + "nodeId": 977674783, + "lat": 43.6138464, + "lon": 3.885958 + }, + { + "nodeId": 977674917, + "lat": 43.613866, + "lon": 3.8860954 + }, + { + "nodeId": 977674830, + "lat": 43.6139336, + "lon": 3.8864219 + }, + { + "nodeId": 977674738, + "lat": 43.6139514, + "lon": 3.8865363 + }, + { + "nodeId": 977674933, + "lat": 43.6139637, + "lon": 3.8866483 + }, + { + "nodeId": 977674856, + "lat": 43.6139753, + "lon": 3.8869857 + }, + { + "nodeId": 5414543479, + "lat": 43.6139775, + "lon": 3.8871471 + }, + { + "nodeId": 231454842, + "lat": 43.6139827, + "lon": 3.887252 + }, + { + "nodeId": 1357894428, + "lat": 43.6139839, + "lon": 3.8873865 + }, + { + "nodeId": 4948406380, + "lat": 43.6139743, + "lon": 3.8877203 + }, + { + "nodeId": 3118524630, + "lat": 43.613971, + "lon": 3.8878464 + }, + { + "nodeId": 6356023584, + "lat": 43.6139704, + "lon": 3.8878599 + }, + { + "nodeId": 977674889, + "lat": 43.613938, + "lon": 3.8887208 + }, + { + "nodeId": 977674800, + "lat": 43.6139434, + "lon": 3.8888586 + }, + { + "nodeId": 3966267844, + "lat": 43.6139415, + "lon": 3.888813 + }, + { + "nodeId": 231454839, + "lat": 43.6139397, + "lon": 3.888585 + }, + { + "nodeId": 977653992, + "lat": 43.6139496, + "lon": 3.8889328 + }, + { + "nodeId": 2575586357, + "lat": 43.6052833, + "lon": 3.8748703 + }, + { + "nodeId": 3966267846, + "lat": 43.6139679, + "lon": 3.8890955 + }, + { + "nodeId": 3966267851, + "lat": 43.6139911, + "lon": 3.8893348 + }, + { + "nodeId": 13165462985, + "lat": 43.605293, + "lon": 3.8749024 + }, + { + "nodeId": 12190070870, + "lat": 43.6053066, + "lon": 3.87494 + }, + { + "nodeId": 13190891935, + "lat": 43.6053131, + "lon": 3.8749544 + }, + { + "nodeId": 12190070869, + "lat": 43.6053247, + "lon": 3.8749803 + }, + { + "nodeId": 12190070868, + "lat": 43.6053584, + "lon": 3.8750378 + }, + { + "nodeId": 1745316631, + "lat": 43.6053927, + "lon": 3.8750779 + }, + { + "nodeId": 1755114711, + "lat": 43.6054331, + "lon": 3.8751107 + }, + { + "nodeId": 3123033196, + "lat": 43.605566, + "lon": 3.8752127 + }, + { + "nodeId": 5218290081, + "lat": 43.6055782, + "lon": 3.8752214 + }, + { + "nodeId": 12190070888, + "lat": 43.6060877, + "lon": 3.8755842 + }, + { + "nodeId": 13306349937, + "lat": 43.6064059, + "lon": 3.8758108 + }, + { + "nodeId": 3123033204, + "lat": 43.6064276, + "lon": 3.8758263 + }, + { + "nodeId": 12181124133, + "lat": 43.6025786, + "lon": 3.9209343 + }, + { + "nodeId": 12181124131, + "lat": 43.6024698, + "lon": 3.920946 + }, + { + "nodeId": 12181124132, + "lat": 43.6025127, + "lon": 3.9209452 + }, + { + "nodeId": 11812035751, + "lat": 43.6024187, + "lon": 3.920935 + }, + { + "nodeId": 11812035750, + "lat": 43.6023591, + "lon": 3.9209111 + }, + { + "nodeId": 13333468825, + "lat": 43.6022991, + "lon": 3.9208695 + }, + { + "nodeId": 13333468826, + "lat": 43.6022528, + "lon": 3.9208171 + }, + { + "nodeId": 13180988537, + "lat": 43.602213, + "lon": 3.9207617 + }, + { + "nodeId": 11812035747, + "lat": 43.6022008, + "lon": 3.9207326 + }, + { + "nodeId": 13333468828, + "lat": 43.6021848, + "lon": 3.9206878 + }, + { + "nodeId": 13174184329, + "lat": 43.6021775, + "lon": 3.9206656 + }, + { + "nodeId": 13180988536, + "lat": 43.602166, + "lon": 3.9206262 + }, + { + "nodeId": 13174184328, + "lat": 43.6021502, + "lon": 3.9205621 + }, + { + "nodeId": 10152795574, + "lat": 43.6020085, + "lon": 3.9194546 + }, + { + "nodeId": 10152795575, + "lat": 43.601951, + "lon": 3.9186545 + }, + { + "nodeId": 13174184313, + "lat": 43.6019369, + "lon": 3.918532 + }, + { + "nodeId": 295735124, + "lat": 43.6019028, + "lon": 3.918413 + }, + { + "nodeId": 10152795576, + "lat": 43.6018824, + "lon": 3.9183595 + }, + { + "nodeId": 13180988532, + "lat": 43.6018495, + "lon": 3.9183013 + }, + { + "nodeId": 13174184315, + "lat": 43.601841, + "lon": 3.9182864 + }, + { + "nodeId": 10152795577, + "lat": 43.601793, + "lon": 3.9182306 + }, + { + "nodeId": 13180988530, + "lat": 43.6017664, + "lon": 3.9182019 + }, + { + "nodeId": 10152869364, + "lat": 43.6017402, + "lon": 3.9181818 + }, + { + "nodeId": 13180988528, + "lat": 43.6016881, + "lon": 3.9181464 + }, + { + "nodeId": 10157329758, + "lat": 43.6016699, + "lon": 3.9181406 + }, + { + "nodeId": 13180988526, + "lat": 43.6016126, + "lon": 3.9181211 + }, + { + "nodeId": 13234118236, + "lat": 43.6015256, + "lon": 3.9181307 + }, + { + "nodeId": 12168393773, + "lat": 43.601456, + "lon": 3.9181643 + }, + { + "nodeId": 10152869365, + "lat": 43.6013403, + "lon": 3.9182354 + }, + { + "nodeId": 8755641103, + "lat": 43.6113269, + "lon": 3.8722893 + }, + { + "nodeId": 8755641101, + "lat": 43.6116024, + "lon": 3.872323 + }, + { + "nodeId": 8755641093, + "lat": 43.6119403, + "lon": 3.8723695 + }, + { + "nodeId": 12549116924, + "lat": 43.6120363, + "lon": 3.872385 + }, + { + "nodeId": 3796147310, + "lat": 43.5914163, + "lon": 3.8913754 + }, + { + "nodeId": 3670600194, + "lat": 43.5915041, + "lon": 3.891482 + }, + { + "nodeId": 3123039805, + "lat": 43.6306413, + "lon": 3.8218347 + }, + { + "nodeId": 1432314064, + "lat": 43.5914001, + "lon": 3.8913509 + }, + { + "nodeId": 2577354998, + "lat": 43.6306378, + "lon": 3.8219946 + }, + { + "nodeId": 2564072375, + "lat": 43.5747327, + "lon": 3.9227266 + }, + { + "nodeId": 1503509368, + "lat": 43.5746926, + "lon": 3.9227151 + }, + { + "nodeId": 246503834, + "lat": 43.574642, + "lon": 3.9226922 + }, + { + "nodeId": 1503509393, + "lat": 43.5745832, + "lon": 3.9226523 + }, + { + "nodeId": 3122450441, + "lat": 43.5745, + "lon": 3.9225759 + }, + { + "nodeId": 1503509461, + "lat": 43.5744297, + "lon": 3.9224893 + }, + { + "nodeId": 2564555120, + "lat": 43.6155469, + "lon": 3.8203883 + }, + { + "nodeId": 2564555119, + "lat": 43.6155748, + "lon": 3.8202834 + }, + { + "nodeId": 2564554959, + "lat": 43.6155928, + "lon": 3.8202255 + }, + { + "nodeId": 2564554966, + "lat": 43.6156355, + "lon": 3.8200954 + }, + { + "nodeId": 3123039751, + "lat": 43.6156707, + "lon": 3.8200375 + }, + { + "nodeId": 2564555133, + "lat": 43.6158114, + "lon": 3.8199156 + }, + { + "nodeId": 2564554973, + "lat": 43.6157252, + "lon": 3.8199798 + }, + { + "nodeId": 2564254125, + "lat": 43.6159917, + "lon": 3.8198305 + }, + { + "nodeId": 13084827306, + "lat": 43.6160104, + "lon": 3.8198213 + }, + { + "nodeId": 9907971607, + "lat": 43.6165108, + "lon": 3.8195716 + }, + { + "nodeId": 2564254176, + "lat": 43.6165698, + "lon": 3.8195415 + }, + { + "nodeId": 2564254148, + "lat": 43.6167638, + "lon": 3.8194549 + }, + { + "nodeId": 3781187303, + "lat": 43.6170251, + "lon": 3.8193236 + }, + { + "nodeId": 2564254144, + "lat": 43.6170796, + "lon": 3.819294 + }, + { + "nodeId": 9908063359, + "lat": 43.6171214, + "lon": 3.8192668 + }, + { + "nodeId": 3118402893, + "lat": 43.6159555, + "lon": 3.8745661 + }, + { + "nodeId": 11867053056, + "lat": 43.6159902, + "lon": 3.8745745 + }, + { + "nodeId": 2564254136, + "lat": 43.6171641, + "lon": 3.8192356 + }, + { + "nodeId": 8754231928, + "lat": 43.6160324, + "lon": 3.8745839 + }, + { + "nodeId": 2569379696, + "lat": 43.6160676, + "lon": 3.874588 + }, + { + "nodeId": 2569379700, + "lat": 43.6161015, + "lon": 3.8745859 + }, + { + "nodeId": 11867053057, + "lat": 43.6161346, + "lon": 3.8745801 + }, + { + "nodeId": 2569379697, + "lat": 43.6161643, + "lon": 3.8745668 + }, + { + "nodeId": 11867053058, + "lat": 43.6161922, + "lon": 3.8745502 + }, + { + "nodeId": 12090201663, + "lat": 43.616201, + "lon": 3.8745428 + }, + { + "nodeId": 11867053059, + "lat": 43.6162223, + "lon": 3.8745249 + }, + { + "nodeId": 2569379692, + "lat": 43.6162523, + "lon": 3.8744947 + }, + { + "nodeId": 12542859593, + "lat": 43.6162965, + "lon": 3.874433 + }, + { + "nodeId": 2569379699, + "lat": 43.6163833, + "lon": 3.8743181 + }, + { + "nodeId": 3118400918, + "lat": 43.6166028, + "lon": 3.8739949 + }, + { + "nodeId": 3796147323, + "lat": 43.5920243, + "lon": 3.8921406 + }, + { + "nodeId": 1432314072, + "lat": 43.5917409, + "lon": 3.8917478 + }, + { + "nodeId": 3124410426, + "lat": 43.5916244, + "lon": 3.8916128 + }, + { + "nodeId": 6238445837, + "lat": 43.61481, + "lon": 3.8923076 + }, + { + "nodeId": 977674781, + "lat": 43.6147424, + "lon": 3.8925023 + }, + { + "nodeId": 977674958, + "lat": 43.6146864, + "lon": 3.8926498 + }, + { + "nodeId": 977674915, + "lat": 43.6146557, + "lon": 3.8927228 + }, + { + "nodeId": 977674935, + "lat": 43.6146153, + "lon": 3.8927913 + }, + { + "nodeId": 231454818, + "lat": 43.6144083, + "lon": 3.8931082 + }, + { + "nodeId": 231454816, + "lat": 43.6142526, + "lon": 3.8933419 + }, + { + "nodeId": 977674804, + "lat": 43.6141019, + "lon": 3.8935576 + }, + { + "nodeId": 231454815, + "lat": 43.6139119, + "lon": 3.8937923 + }, + { + "nodeId": 977674801, + "lat": 43.6136821, + "lon": 3.8940701 + }, + { + "nodeId": 977674760, + "lat": 43.6135712, + "lon": 3.8942142 + }, + { + "nodeId": 3118523815, + "lat": 43.6134699, + "lon": 3.8943587 + }, + { + "nodeId": 977674937, + "lat": 43.6132379, + "lon": 3.8947332 + }, + { + "nodeId": 6271710370, + "lat": 43.6131717, + "lon": 3.8948384 + }, + { + "nodeId": 977674967, + "lat": 43.613128, + "lon": 3.894898 + }, + { + "nodeId": 977674772, + "lat": 43.6130629, + "lon": 3.8949529 + }, + { + "nodeId": 231454812, + "lat": 43.6130143, + "lon": 3.8949791 + }, + { + "nodeId": 6238445890, + "lat": 43.6129411, + "lon": 3.8949937 + }, + { + "nodeId": 977674832, + "lat": 43.6129022, + "lon": 3.8949958 + }, + { + "nodeId": 977674921, + "lat": 43.6129719, + "lon": 3.8949884 + }, + { + "nodeId": 6238445839, + "lat": 43.6128518, + "lon": 3.8949892 + }, + { + "nodeId": 6238445849, + "lat": 43.6123205, + "lon": 3.8948587 + }, + { + "nodeId": 977674798, + "lat": 43.6122581, + "lon": 3.8948431 + }, + { + "nodeId": 6238445885, + "lat": 43.6120274, + "lon": 3.8947971 + }, + { + "nodeId": 977674954, + "lat": 43.6119777, + "lon": 3.8947884 + }, + { + "nodeId": 977674929, + "lat": 43.6117355, + "lon": 3.8947466 + }, + { + "nodeId": 6271710363, + "lat": 43.6115194, + "lon": 3.894704 + }, + { + "nodeId": 231454808, + "lat": 43.6107212, + "lon": 3.8945397 + }, + { + "nodeId": 2597102241, + "lat": 43.610494, + "lon": 3.8944915 + }, + { + "nodeId": 6271710351, + "lat": 43.6104482, + "lon": 3.8944839 + }, + { + "nodeId": 977674776, + "lat": 43.6101522, + "lon": 3.894424 + }, + { + "nodeId": 2564555147, + "lat": 43.6149879, + "lon": 3.8243682 + }, + { + "nodeId": 2564554928, + "lat": 43.6149792, + "lon": 3.8246237 + }, + { + "nodeId": 2564555218, + "lat": 43.6150015, + "lon": 3.824218 + }, + { + "nodeId": 5533923358, + "lat": 43.6150227, + "lon": 3.8240216 + }, + { + "nodeId": 2564555025, + "lat": 43.6150425, + "lon": 3.8238383 + }, + { + "nodeId": 2564555054, + "lat": 43.6151296, + "lon": 3.823125 + }, + { + "nodeId": 3670034485, + "lat": 43.5999799, + "lon": 3.8957298 + }, + { + "nodeId": 3670034478, + "lat": 43.5999219, + "lon": 3.8956338 + }, + { + "nodeId": 1539538032, + "lat": 43.5998753, + "lon": 3.8955552 + }, + { + "nodeId": 3796070165, + "lat": 43.5998556, + "lon": 3.8955269 + }, + { + "nodeId": 3796070164, + "lat": 43.5998384, + "lon": 3.8955021 + }, + { + "nodeId": 1325372163, + "lat": 43.5997757, + "lon": 3.8953966 + }, + { + "nodeId": 3670034463, + "lat": 43.5997099, + "lon": 3.8953081 + }, + { + "nodeId": 3670034451, + "lat": 43.5992599, + "lon": 3.894744 + }, + { + "nodeId": 1325372188, + "lat": 43.599239, + "lon": 3.8947181 + }, + { + "nodeId": 1539537996, + "lat": 43.5991811, + "lon": 3.8946588 + }, + { + "nodeId": 1325372190, + "lat": 43.5991253, + "lon": 3.8946227 + }, + { + "nodeId": 3670034443, + "lat": 43.5990775, + "lon": 3.8946119 + }, + { + "nodeId": 1325372192, + "lat": 43.5990625, + "lon": 3.8946082 + }, + { + "nodeId": 1325372172, + "lat": 43.5989741, + "lon": 3.8946103 + }, + { + "nodeId": 1539537992, + "lat": 43.5989081, + "lon": 3.8946336 + }, + { + "nodeId": 1325372178, + "lat": 43.598826, + "lon": 3.8947014 + }, + { + "nodeId": 1325372182, + "lat": 43.5984809, + "lon": 3.8950589 + }, + { + "nodeId": 12422543365, + "lat": 43.598426, + "lon": 3.8951157 + }, + { + "nodeId": 3670031720, + "lat": 43.598354, + "lon": 3.8951902 + }, + { + "nodeId": 12422543366, + "lat": 43.5983248, + "lon": 3.8952162 + }, + { + "nodeId": 2564591636, + "lat": 43.5982974, + "lon": 3.8952405 + }, + { + "nodeId": 1539537990, + "lat": 43.5982504, + "lon": 3.8952821 + }, + { + "nodeId": 3670601696, + "lat": 43.5982227, + "lon": 3.8953011 + }, + { + "nodeId": 1539537979, + "lat": 43.5981795, + "lon": 3.8953306 + }, + { + "nodeId": 12422543367, + "lat": 43.5980647, + "lon": 3.8954004 + }, + { + "nodeId": 1623916621, + "lat": 43.5979914, + "lon": 3.8954449 + }, + { + "nodeId": 1325372161, + "lat": 43.5976669, + "lon": 3.8956254 + }, + { + "nodeId": 1623916556, + "lat": 43.5974558, + "lon": 3.8957253 + }, + { + "nodeId": 1623916699, + "lat": 43.597324, + "lon": 3.8957829 + }, + { + "nodeId": 3796068536, + "lat": 43.5968553, + "lon": 3.8959903 + }, + { + "nodeId": 2564628115, + "lat": 43.5967916, + "lon": 3.8960168 + }, + { + "nodeId": 3796068533, + "lat": 43.5967264, + "lon": 3.8960455 + }, + { + "nodeId": 12422543368, + "lat": 43.5964597, + "lon": 3.8961628 + }, + { + "nodeId": 1325372162, + "lat": 43.5963513, + "lon": 3.8962104 + }, + { + "nodeId": 1325372196, + "lat": 43.5956013, + "lon": 3.8965431 + }, + { + "nodeId": 3796068530, + "lat": 43.5955503, + "lon": 3.8965567 + }, + { + "nodeId": 1325372186, + "lat": 43.5959224, + "lon": 3.8964057 + }, + { + "nodeId": 1498625081, + "lat": 43.5954847, + "lon": 3.896583 + }, + { + "nodeId": 3670601728, + "lat": 43.5953948, + "lon": 3.8966126 + }, + { + "nodeId": 3124411839, + "lat": 43.5951842, + "lon": 3.8966721 + }, + { + "nodeId": 1325372184, + "lat": 43.5946403, + "lon": 3.8969259 + }, + { + "nodeId": 1325372167, + "lat": 43.5950415, + "lon": 3.89673 + }, + { + "nodeId": 12422543369, + "lat": 43.5943466, + "lon": 3.8970618 + }, + { + "nodeId": 1503483802, + "lat": 43.5940197, + "lon": 3.8972131 + }, + { + "nodeId": 1681472360, + "lat": 43.5939313, + "lon": 3.89724 + }, + { + "nodeId": 1325372169, + "lat": 43.593871, + "lon": 3.8972381 + }, + { + "nodeId": 1432314083, + "lat": 43.5938041, + "lon": 3.8972116 + }, + { + "nodeId": 3124411836, + "lat": 43.5937875, + "lon": 3.8971977 + }, + { + "nodeId": 2564591653, + "lat": 43.5936945, + "lon": 3.8970562 + }, + { + "nodeId": 1432314077, + "lat": 43.5935977, + "lon": 3.8966059 + }, + { + "nodeId": 1432314074, + "lat": 43.5937167, + "lon": 3.8971066 + }, + { + "nodeId": 3124411834, + "lat": 43.5935785, + "lon": 3.8964606 + }, + { + "nodeId": 1432314087, + "lat": 43.5935652, + "lon": 3.8963079 + }, + { + "nodeId": 1432314090, + "lat": 43.5935191, + "lon": 3.8955107 + }, + { + "nodeId": 1503483805, + "lat": 43.5935012, + "lon": 3.8953812 + }, + { + "nodeId": 1432314091, + "lat": 43.5934697, + "lon": 3.8952767 + }, + { + "nodeId": 3124411833, + "lat": 43.5933489, + "lon": 3.8949563 + }, + { + "nodeId": 3796148246, + "lat": 43.592631, + "lon": 3.8932396 + }, + { + "nodeId": 13306159018, + "lat": 43.5929979, + "lon": 3.8241301 + }, + { + "nodeId": 13456052525, + "lat": 43.5930019, + "lon": 3.8241648 + }, + { + "nodeId": 11838256843, + "lat": 43.5930389, + "lon": 3.8244887 + }, + { + "nodeId": 12978810102, + "lat": 43.5930447, + "lon": 3.8245333 + }, + { + "nodeId": 11838256842, + "lat": 43.5930592, + "lon": 3.8247514 + }, + { + "nodeId": 11838256841, + "lat": 43.5930605, + "lon": 3.8251059 + }, + { + "nodeId": 11838256840, + "lat": 43.593052, + "lon": 3.8252601 + }, + { + "nodeId": 12978810103, + "lat": 43.5930657, + "lon": 3.8249271 + }, + { + "nodeId": 13306159014, + "lat": 43.592974, + "lon": 3.8258278 + }, + { + "nodeId": 12978810101, + "lat": 43.593043, + "lon": 3.8253453 + }, + { + "nodeId": 11838328175, + "lat": 43.5929214, + "lon": 3.8261959 + }, + { + "nodeId": 12978714499, + "lat": 43.5927263, + "lon": 3.8277542 + }, + { + "nodeId": 12978714500, + "lat": 43.5927068, + "lon": 3.8280081 + }, + { + "nodeId": 11838256839, + "lat": 43.5927071, + "lon": 3.8281595 + }, + { + "nodeId": 11838256838, + "lat": 43.5927155, + "lon": 3.8283485 + }, + { + "nodeId": 11838256837, + "lat": 43.5927399, + "lon": 3.8285497 + }, + { + "nodeId": 11838256835, + "lat": 43.5928045, + "lon": 3.828869 + }, + { + "nodeId": 13306159012, + "lat": 43.5928498, + "lon": 3.8290225 + }, + { + "nodeId": 11838256836, + "lat": 43.5927645, + "lon": 3.8287 + }, + { + "nodeId": 13198256105, + "lat": 43.5928574, + "lon": 3.8290481 + }, + { + "nodeId": 11838256834, + "lat": 43.5931341, + "lon": 3.8298997 + }, + { + "nodeId": 13306159011, + "lat": 43.5931868, + "lon": 3.8300615 + }, + { + "nodeId": 11838256833, + "lat": 43.5932708, + "lon": 3.8303428 + }, + { + "nodeId": 12978714498, + "lat": 43.5932269, + "lon": 3.8301847 + }, + { + "nodeId": 13198256104, + "lat": 43.5933083, + "lon": 3.8305116 + }, + { + "nodeId": 11838256832, + "lat": 43.5933498, + "lon": 3.8307227 + }, + { + "nodeId": 13336046677, + "lat": 43.5935366, + "lon": 3.8316494 + }, + { + "nodeId": 9700486773, + "lat": 43.593777, + "lon": 3.8328474 + }, + { + "nodeId": 13306159008, + "lat": 43.593927, + "lon": 3.8337476 + }, + { + "nodeId": 9700486772, + "lat": 43.5940053, + "lon": 3.8342179 + }, + { + "nodeId": 13198256110, + "lat": 43.5941022, + "lon": 3.8346893 + }, + { + "nodeId": 9700486763, + "lat": 43.5941746, + "lon": 3.8349624 + }, + { + "nodeId": 9700486762, + "lat": 43.5942606, + "lon": 3.8351667 + }, + { + "nodeId": 9700486761, + "lat": 43.5943212, + "lon": 3.8352833 + }, + { + "nodeId": 9700486760, + "lat": 43.5944197, + "lon": 3.8354646 + }, + { + "nodeId": 9700486758, + "lat": 43.5944806, + "lon": 3.8355425 + }, + { + "nodeId": 9700486757, + "lat": 43.5945264, + "lon": 3.8355953 + }, + { + "nodeId": 9700486756, + "lat": 43.5946273, + "lon": 3.8357089 + }, + { + "nodeId": 9700486755, + "lat": 43.5947203, + "lon": 3.8357989 + }, + { + "nodeId": 13234300334, + "lat": 43.5949838, + "lon": 3.8359992 + }, + { + "nodeId": 13306159006, + "lat": 43.5950059, + "lon": 3.8360139 + }, + { + "nodeId": 9700486754, + "lat": 43.5952858, + "lon": 3.8361996 + }, + { + "nodeId": 11838328181, + "lat": 43.5954581, + "lon": 3.836315 + }, + { + "nodeId": 13306159004, + "lat": 43.5954833, + "lon": 3.8363344 + }, + { + "nodeId": 9700486753, + "lat": 43.5955062, + "lon": 3.836352 + }, + { + "nodeId": 9700486752, + "lat": 43.5955535, + "lon": 3.8364033 + }, + { + "nodeId": 13306159002, + "lat": 43.5955868, + "lon": 3.8364972 + }, + { + "nodeId": 9700486750, + "lat": 43.5955988, + "lon": 3.8365677 + }, + { + "nodeId": 9700486751, + "lat": 43.5955823, + "lon": 3.8364706 + }, + { + "nodeId": 13234305185, + "lat": 43.5955987, + "lon": 3.8366403 + }, + { + "nodeId": 9700486749, + "lat": 43.5955899, + "lon": 3.8366937 + }, + { + "nodeId": 13306159000, + "lat": 43.5955789, + "lon": 3.8367202 + }, + { + "nodeId": 9700486748, + "lat": 43.5954986, + "lon": 3.836913 + }, + { + "nodeId": 9700486747, + "lat": 43.5954574, + "lon": 3.8370103 + }, + { + "nodeId": 9700486746, + "lat": 43.5954212, + "lon": 3.8370933 + }, + { + "nodeId": 9700486745, + "lat": 43.5952113, + "lon": 3.8375657 + }, + { + "nodeId": 13306158998, + "lat": 43.5951717, + "lon": 3.8376391 + }, + { + "nodeId": 9700486744, + "lat": 43.5951586, + "lon": 3.8376635 + }, + { + "nodeId": 9700486743, + "lat": 43.5951162, + "lon": 3.8377311 + }, + { + "nodeId": 13306158996, + "lat": 43.5950763, + "lon": 3.8377735 + }, + { + "nodeId": 9700486742, + "lat": 43.595055, + "lon": 3.8377962 + }, + { + "nodeId": 9700486741, + "lat": 43.5949992, + "lon": 3.8378433 + }, + { + "nodeId": 13306158994, + "lat": 43.5948306, + "lon": 3.837932 + }, + { + "nodeId": 9700486739, + "lat": 43.5948144, + "lon": 3.8379405 + }, + { + "nodeId": 9700486738, + "lat": 43.5947481, + "lon": 3.8379878 + }, + { + "nodeId": 9700486737, + "lat": 43.5946473, + "lon": 3.8380959 + }, + { + "nodeId": 13306158992, + "lat": 43.5946022, + "lon": 3.8381595 + }, + { + "nodeId": 9700486736, + "lat": 43.5945866, + "lon": 3.8381815 + }, + { + "nodeId": 9700486735, + "lat": 43.5945201, + "lon": 3.8383087 + }, + { + "nodeId": 9700486734, + "lat": 43.5944856, + "lon": 3.8383805 + }, + { + "nodeId": 9700486733, + "lat": 43.5944512, + "lon": 3.8385072 + }, + { + "nodeId": 9700486732, + "lat": 43.5944225, + "lon": 3.8386441 + }, + { + "nodeId": 13306158989, + "lat": 43.59441, + "lon": 3.8387483 + }, + { + "nodeId": 13306158990, + "lat": 43.5944128, + "lon": 3.8387254 + }, + { + "nodeId": 9700486731, + "lat": 43.5944075, + "lon": 3.8387693 + }, + { + "nodeId": 9700486730, + "lat": 43.5944051, + "lon": 3.8388669 + }, + { + "nodeId": 9700486729, + "lat": 43.5944116, + "lon": 3.8389935 + }, + { + "nodeId": 9700486728, + "lat": 43.5944266, + "lon": 3.8390975 + }, + { + "nodeId": 9700486727, + "lat": 43.5944513, + "lon": 3.8391903 + }, + { + "nodeId": 13306158986, + "lat": 43.5945184, + "lon": 3.8394119 + }, + { + "nodeId": 9700486726, + "lat": 43.5945229, + "lon": 3.8394268 + }, + { + "nodeId": 9700486725, + "lat": 43.594575, + "lon": 3.8395928 + }, + { + "nodeId": 9700486724, + "lat": 43.5945896, + "lon": 3.8396749 + }, + { + "nodeId": 9700486723, + "lat": 43.5945967, + "lon": 3.839745 + }, + { + "nodeId": 9700486722, + "lat": 43.5945818, + "lon": 3.8398228 + }, + { + "nodeId": 9700486721, + "lat": 43.5945562, + "lon": 3.8399025 + }, + { + "nodeId": 9700486720, + "lat": 43.5945089, + "lon": 3.840006 + }, + { + "nodeId": 9700486719, + "lat": 43.5944375, + "lon": 3.8400864 + }, + { + "nodeId": 13198256113, + "lat": 43.5941643, + "lon": 3.840393 + }, + { + "nodeId": 9700486717, + "lat": 43.594008, + "lon": 3.8405671 + }, + { + "nodeId": 9700486718, + "lat": 43.5940343, + "lon": 3.8405352 + }, + { + "nodeId": 9700486716, + "lat": 43.5939879, + "lon": 3.840594 + }, + { + "nodeId": 4534094937, + "lat": 43.5939768, + "lon": 3.8406146 + }, + { + "nodeId": 9700486715, + "lat": 43.5939407, + "lon": 3.8406819 + }, + { + "nodeId": 9700486714, + "lat": 43.5939132, + "lon": 3.8407501 + }, + { + "nodeId": 369660984, + "lat": 43.5938942, + "lon": 3.840849 + }, + { + "nodeId": 13306158983, + "lat": 43.5938638, + "lon": 3.8410078 + }, + { + "nodeId": 13306158981, + "lat": 43.5934219, + "lon": 3.8432976 + }, + { + "nodeId": 13342288277, + "lat": 43.5934002, + "lon": 3.8434081 + }, + { + "nodeId": 12978810109, + "lat": 43.5933813, + "lon": 3.8435048 + }, + { + "nodeId": 12978810110, + "lat": 43.5933515, + "lon": 3.8436379 + }, + { + "nodeId": 13306158980, + "lat": 43.5933458, + "lon": 3.8436557 + }, + { + "nodeId": 9700486713, + "lat": 43.5933245, + "lon": 3.8437223 + }, + { + "nodeId": 13306158979, + "lat": 43.5933129, + "lon": 3.843752 + }, + { + "nodeId": 9700486712, + "lat": 43.5933026, + "lon": 3.8437784 + }, + { + "nodeId": 9700486710, + "lat": 43.5932683, + "lon": 3.8438382 + }, + { + "nodeId": 9700486709, + "lat": 43.5932292, + "lon": 3.8438736 + }, + { + "nodeId": 9700486708, + "lat": 43.5931862, + "lon": 3.8439027 + }, + { + "nodeId": 11838328182, + "lat": 43.5921699, + "lon": 3.8446486 + }, + { + "nodeId": 13306158976, + "lat": 43.5921117, + "lon": 3.8446914 + }, + { + "nodeId": 13306158974, + "lat": 43.592013, + "lon": 3.844764 + }, + { + "nodeId": 13198256116, + "lat": 43.5919249, + "lon": 3.8448289 + }, + { + "nodeId": 9700486707, + "lat": 43.5914145, + "lon": 3.8451839 + }, + { + "nodeId": 9700486705, + "lat": 43.5911827, + "lon": 3.8453789 + }, + { + "nodeId": 9700486706, + "lat": 43.591241, + "lon": 3.8453187 + }, + { + "nodeId": 9700486704, + "lat": 43.5911665, + "lon": 3.8454098 + }, + { + "nodeId": 9700486703, + "lat": 43.5911292, + "lon": 3.8454887 + }, + { + "nodeId": 9700486702, + "lat": 43.5911166, + "lon": 3.8455397 + }, + { + "nodeId": 9700486701, + "lat": 43.5911098, + "lon": 3.8456244 + }, + { + "nodeId": 9700486700, + "lat": 43.5911177, + "lon": 3.8457431 + }, + { + "nodeId": 13306158972, + "lat": 43.5911944, + "lon": 3.8462849 + }, + { + "nodeId": 9700486699, + "lat": 43.5912736, + "lon": 3.8468449 + }, + { + "nodeId": 12175054246, + "lat": 43.5913172, + "lon": 3.8471436 + }, + { + "nodeId": 13306158964, + "lat": 43.5914945, + "lon": 3.8483269 + }, + { + "nodeId": 13306158962, + "lat": 43.5915628, + "lon": 3.8487841 + }, + { + "nodeId": 9700486698, + "lat": 43.5916469, + "lon": 3.8493468 + }, + { + "nodeId": 13306158960, + "lat": 43.5916214, + "lon": 3.8491765 + }, + { + "nodeId": 9700486697, + "lat": 43.5916814, + "lon": 3.8494915 + }, + { + "nodeId": 9700486695, + "lat": 43.591729, + "lon": 3.8496316 + }, + { + "nodeId": 13351186995, + "lat": 43.5921181, + "lon": 3.850833 + }, + { + "nodeId": 9700486694, + "lat": 43.5923311, + "lon": 3.8515003 + }, + { + "nodeId": 9700486692, + "lat": 43.5923757, + "lon": 3.8515907 + }, + { + "nodeId": 9700486693, + "lat": 43.5923592, + "lon": 3.8515549 + }, + { + "nodeId": 9700486691, + "lat": 43.5924152, + "lon": 3.8516578 + }, + { + "nodeId": 9700486690, + "lat": 43.5924702, + "lon": 3.8517266 + }, + { + "nodeId": 9700486689, + "lat": 43.5925121, + "lon": 3.8517676 + }, + { + "nodeId": 9700486687, + "lat": 43.592657, + "lon": 3.8518456 + }, + { + "nodeId": 9700486688, + "lat": 43.5925784, + "lon": 3.8518126 + }, + { + "nodeId": 9700486686, + "lat": 43.5927306, + "lon": 3.8518557 + }, + { + "nodeId": 9700486685, + "lat": 43.5927989, + "lon": 3.8518483 + }, + { + "nodeId": 9700486684, + "lat": 43.5928665, + "lon": 3.8518286 + }, + { + "nodeId": 9700486682, + "lat": 43.5929974, + "lon": 3.8517443 + }, + { + "nodeId": 12978810117, + "lat": 43.5930688, + "lon": 3.8516729 + }, + { + "nodeId": 12978810113, + "lat": 43.592929, + "lon": 3.8518011 + }, + { + "nodeId": 13351186996, + "lat": 43.5930847, + "lon": 3.8516551 + }, + { + "nodeId": 11838328188, + "lat": 43.5932101, + "lon": 3.8515149 + }, + { + "nodeId": 13306158958, + "lat": 43.5932214, + "lon": 3.8515025 + }, + { + "nodeId": 13306158957, + "lat": 43.5932358, + "lon": 3.8514867 + }, + { + "nodeId": 12978810115, + "lat": 43.5934423, + "lon": 3.85126 + }, + { + "nodeId": 9700486678, + "lat": 43.5937388, + "lon": 3.8509155 + }, + { + "nodeId": 9700486677, + "lat": 43.5938236, + "lon": 3.8508082 + }, + { + "nodeId": 9700486681, + "lat": 43.5935334, + "lon": 3.8511515 + }, + { + "nodeId": 12514008609, + "lat": 43.5941801, + "lon": 3.8502811 + }, + { + "nodeId": 12978810119, + "lat": 43.5938817, + "lon": 3.8507242 + }, + { + "nodeId": 13246223344, + "lat": 43.5942026, + "lon": 3.8502518 + }, + { + "nodeId": 9700486675, + "lat": 43.594232, + "lon": 3.8502135 + }, + { + "nodeId": 9700486674, + "lat": 43.5942825, + "lon": 3.8501562 + }, + { + "nodeId": 9700486673, + "lat": 43.5943182, + "lon": 3.8501159 + }, + { + "nodeId": 9700486672, + "lat": 43.5943617, + "lon": 3.8500975 + }, + { + "nodeId": 12514008606, + "lat": 43.5944073, + "lon": 3.8500847 + }, + { + "nodeId": 12514008603, + "lat": 43.5944521, + "lon": 3.8500801 + }, + { + "nodeId": 9700486670, + "lat": 43.5945018, + "lon": 3.8500817 + }, + { + "nodeId": 12514008607, + "lat": 43.5945326, + "lon": 3.8500822 + }, + { + "nodeId": 9700486669, + "lat": 43.5946593, + "lon": 3.8500763 + }, + { + "nodeId": 9700486667, + "lat": 43.5947391, + "lon": 3.8500547 + }, + { + "nodeId": 13336008993, + "lat": 43.5947603, + "lon": 3.8500456 + }, + { + "nodeId": 9700486666, + "lat": 43.5948228, + "lon": 3.8500189 + }, + { + "nodeId": 9700486665, + "lat": 43.5953673, + "lon": 3.8498044 + }, + { + "nodeId": 9700486664, + "lat": 43.5956341, + "lon": 3.8496957 + }, + { + "nodeId": 9700486663, + "lat": 43.5959539, + "lon": 3.8495576 + }, + { + "nodeId": 9700486662, + "lat": 43.5961833, + "lon": 3.8494576 + }, + { + "nodeId": 9700486661, + "lat": 43.5962911, + "lon": 3.8494041 + }, + { + "nodeId": 13306158955, + "lat": 43.5963333, + "lon": 3.8493814 + }, + { + "nodeId": 9700486660, + "lat": 43.596394, + "lon": 3.8493487 + }, + { + "nodeId": 9700486659, + "lat": 43.5965755, + "lon": 3.8492435 + }, + { + "nodeId": 9700486658, + "lat": 43.5967421, + "lon": 3.8491489 + }, + { + "nodeId": 13306158952, + "lat": 43.5968292, + "lon": 3.8490954 + }, + { + "nodeId": 9700486657, + "lat": 43.5968516, + "lon": 3.8490816 + }, + { + "nodeId": 13306158950, + "lat": 43.5969888, + "lon": 3.8489907 + }, + { + "nodeId": 13198256117, + "lat": 43.5969492, + "lon": 3.8490198 + }, + { + "nodeId": 9700486656, + "lat": 43.5970351, + "lon": 3.8489565 + }, + { + "nodeId": 13198256118, + "lat": 43.5970922, + "lon": 3.8489046 + }, + { + "nodeId": 12978810120, + "lat": 43.5971884, + "lon": 3.8488195 + }, + { + "nodeId": 9700486655, + "lat": 43.5976447, + "lon": 3.8483874 + }, + { + "nodeId": 9700486654, + "lat": 43.5977673, + "lon": 3.8482723 + }, + { + "nodeId": 12978810122, + "lat": 43.5980168, + "lon": 3.8480485 + }, + { + "nodeId": 9700486653, + "lat": 43.5981531, + "lon": 3.8479353 + }, + { + "nodeId": 9700486651, + "lat": 43.5982127, + "lon": 3.8479028 + }, + { + "nodeId": 13306158948, + "lat": 43.5982449, + "lon": 3.8478853 + }, + { + "nodeId": 9700486649, + "lat": 43.5982847, + "lon": 3.8478635 + }, + { + "nodeId": 13306158947, + "lat": 43.5983541, + "lon": 3.8478358 + }, + { + "nodeId": 9700486648, + "lat": 43.5983702, + "lon": 3.8478294 + }, + { + "nodeId": 9700486647, + "lat": 43.5992195, + "lon": 3.8475379 + }, + { + "nodeId": 9700486646, + "lat": 43.5992874, + "lon": 3.847515 + }, + { + "nodeId": 9700486645, + "lat": 43.599354, + "lon": 3.8475036 + }, + { + "nodeId": 9700486644, + "lat": 43.5994192, + "lon": 3.847502 + }, + { + "nodeId": 13477841418, + "lat": 43.5994644, + "lon": 3.8475054 + }, + { + "nodeId": 9700486642, + "lat": 43.5994986, + "lon": 3.8475098 + }, + { + "nodeId": 13477841422, + "lat": 43.5995595, + "lon": 3.8475255 + }, + { + "nodeId": 9700486641, + "lat": 43.5996807, + "lon": 3.8475653 + }, + { + "nodeId": 9700486640, + "lat": 43.5997574, + "lon": 3.8476137 + }, + { + "nodeId": 9700486639, + "lat": 43.5998248, + "lon": 3.8476746 + }, + { + "nodeId": 13477841412, + "lat": 43.5999369, + "lon": 3.8478156 + }, + { + "nodeId": 9700486638, + "lat": 43.5998886, + "lon": 3.8477521 + }, + { + "nodeId": 13306158945, + "lat": 43.5999859, + "lon": 3.8478805 + }, + { + "nodeId": 13306158942, + "lat": 43.6000319, + "lon": 3.8479443 + }, + { + "nodeId": 9700486637, + "lat": 43.6000535, + "lon": 3.8479757 + }, + { + "nodeId": 9700486636, + "lat": 43.6001263, + "lon": 3.8480839 + }, + { + "nodeId": 9700486635, + "lat": 43.6002151, + "lon": 3.8482194 + }, + { + "nodeId": 9700486634, + "lat": 43.6002753, + "lon": 3.8483319 + }, + { + "nodeId": 9700486632, + "lat": 43.6004248, + "lon": 3.8486463 + }, + { + "nodeId": 9700486633, + "lat": 43.6003348, + "lon": 3.8484613 + }, + { + "nodeId": 9700486631, + "lat": 43.6005722, + "lon": 3.8490163 + }, + { + "nodeId": 13306158939, + "lat": 43.6008315, + "lon": 3.8496786 + }, + { + "nodeId": 13306158940, + "lat": 43.600912, + "lon": 3.8499269 + }, + { + "nodeId": 13477713348, + "lat": 43.6008899, + "lon": 3.8498346 + }, + { + "nodeId": 13477713347, + "lat": 43.6009276, + "lon": 3.8500007 + }, + { + "nodeId": 13477713361, + "lat": 43.6009585, + "lon": 3.8501701 + }, + { + "nodeId": 9700486627, + "lat": 43.6009732, + "lon": 3.8502465 + }, + { + "nodeId": 9700486626, + "lat": 43.6010073, + "lon": 3.8504376 + }, + { + "nodeId": 9700486625, + "lat": 43.601045, + "lon": 3.8506104 + }, + { + "nodeId": 9700486622, + "lat": 43.601384, + "lon": 3.8517297 + }, + { + "nodeId": 13477800002, + "lat": 43.6014526, + "lon": 3.8519107 + }, + { + "nodeId": 9700486621, + "lat": 43.6014986, + "lon": 3.8520157 + }, + { + "nodeId": 9700486620, + "lat": 43.6016245, + "lon": 3.8523028 + }, + { + "nodeId": 13477800016, + "lat": 43.6024717, + "lon": 3.8542327 + }, + { + "nodeId": 13477800028, + "lat": 43.6027726, + "lon": 3.8549194 + }, + { + "nodeId": 9700486619, + "lat": 43.6028301, + "lon": 3.8550527 + }, + { + "nodeId": 9700486618, + "lat": 43.6028484, + "lon": 3.8551155 + }, + { + "nodeId": 13306158934, + "lat": 43.6028555, + "lon": 3.8551897 + }, + { + "nodeId": 9700486617, + "lat": 43.6028588, + "lon": 3.8552235 + }, + { + "nodeId": 9700486616, + "lat": 43.6028527, + "lon": 3.8552997 + }, + { + "nodeId": 9700486615, + "lat": 43.6028362, + "lon": 3.8553602 + }, + { + "nodeId": 9700486613, + "lat": 43.6027772, + "lon": 3.8554653 + }, + { + "nodeId": 9700486612, + "lat": 43.6027188, + "lon": 3.8555616 + }, + { + "nodeId": 12978810130, + "lat": 43.6025775, + "lon": 3.8557887 + }, + { + "nodeId": 11838328191, + "lat": 43.6021962, + "lon": 3.8564227 + }, + { + "nodeId": 13391742618, + "lat": 43.6024575, + "lon": 3.8559883 + }, + { + "nodeId": 9700486611, + "lat": 43.6019162, + "lon": 3.8568847 + }, + { + "nodeId": 9700486609, + "lat": 43.6018806, + "lon": 3.8569707 + }, + { + "nodeId": 13306158928, + "lat": 43.6018444, + "lon": 3.8570834 + }, + { + "nodeId": 9700486607, + "lat": 43.6017897, + "lon": 3.8572451 + }, + { + "nodeId": 9700486608, + "lat": 43.6018156, + "lon": 3.857173 + }, + { + "nodeId": 9700486606, + "lat": 43.6017506, + "lon": 3.8573303 + }, + { + "nodeId": 9700486605, + "lat": 43.6016955, + "lon": 3.8574279 + }, + { + "nodeId": 11838328192, + "lat": 43.6010542, + "lon": 3.8582514 + }, + { + "nodeId": 9700486602, + "lat": 43.6007224, + "lon": 3.8586844 + }, + { + "nodeId": 9700486601, + "lat": 43.6004552, + "lon": 3.8590587 + }, + { + "nodeId": 9700486600, + "lat": 43.6004118, + "lon": 3.8591276 + }, + { + "nodeId": 9700486599, + "lat": 43.6003765, + "lon": 3.859225 + }, + { + "nodeId": 9700486597, + "lat": 43.6003557, + "lon": 3.8593191 + }, + { + "nodeId": 13306158926, + "lat": 43.600354, + "lon": 3.8593535 + }, + { + "nodeId": 13306158925, + "lat": 43.6003625, + "lon": 3.859447 + }, + { + "nodeId": 9700486596, + "lat": 43.6003768, + "lon": 3.8594972 + }, + { + "nodeId": 9700486595, + "lat": 43.6004005, + "lon": 3.8595644 + }, + { + "nodeId": 9700486592, + "lat": 43.6005111, + "lon": 3.8597075 + }, + { + "nodeId": 9700486594, + "lat": 43.6004461, + "lon": 3.8596376 + }, + { + "nodeId": 9700486591, + "lat": 43.6007468, + "lon": 3.8599489 + }, + { + "nodeId": 9700486589, + "lat": 43.6009988, + "lon": 3.8601794 + }, + { + "nodeId": 9700486588, + "lat": 43.6012357, + "lon": 3.8603615 + }, + { + "nodeId": 9700486590, + "lat": 43.6009284, + "lon": 3.8601185 + }, + { + "nodeId": 12514004772, + "lat": 43.6013474, + "lon": 3.8604355 + }, + { + "nodeId": 9700486587, + "lat": 43.6017596, + "lon": 3.860718 + }, + { + "nodeId": 9700486586, + "lat": 43.6018141, + "lon": 3.860756 + }, + { + "nodeId": 9700486585, + "lat": 43.6018625, + "lon": 3.8608101 + }, + { + "nodeId": 9700486584, + "lat": 43.6019001, + "lon": 3.8608736 + }, + { + "nodeId": 9700486583, + "lat": 43.6019289, + "lon": 3.8609473 + }, + { + "nodeId": 9700486582, + "lat": 43.6019428, + "lon": 3.8610132 + }, + { + "nodeId": 9700486581, + "lat": 43.6019446, + "lon": 3.8610712 + }, + { + "nodeId": 9700486580, + "lat": 43.6019396, + "lon": 3.8611378 + }, + { + "nodeId": 13208683943, + "lat": 43.6019336, + "lon": 3.8611678 + }, + { + "nodeId": 9700486579, + "lat": 43.6019269, + "lon": 3.8611945 + }, + { + "nodeId": 9700486578, + "lat": 43.6019066, + "lon": 3.8612706 + }, + { + "nodeId": 13208683958, + "lat": 43.6018305, + "lon": 3.8614926 + }, + { + "nodeId": 9700486577, + "lat": 43.6018525, + "lon": 3.8614324 + }, + { + "nodeId": 13208683955, + "lat": 43.6016983, + "lon": 3.8618696 + }, + { + "nodeId": 13306159022, + "lat": 43.6016845, + "lon": 3.8619087 + }, + { + "nodeId": 13306158920, + "lat": 43.6015111, + "lon": 3.8624153 + }, + { + "nodeId": 9700486576, + "lat": 43.6014613, + "lon": 3.8625638 + }, + { + "nodeId": 9700486575, + "lat": 43.6014358, + "lon": 3.8626548 + }, + { + "nodeId": 9700486574, + "lat": 43.6014163, + "lon": 3.8627487 + }, + { + "nodeId": 13198256126, + "lat": 43.601399, + "lon": 3.8629011 + }, + { + "nodeId": 13306158919, + "lat": 43.6014212, + "lon": 3.862725 + }, + { + "nodeId": 9700486573, + "lat": 43.6014103, + "lon": 3.8628173 + }, + { + "nodeId": 13306158916, + "lat": 43.6013628, + "lon": 3.8632871 + }, + { + "nodeId": 13306158914, + "lat": 43.6013098, + "lon": 3.8638516 + }, + { + "nodeId": 13198256129, + "lat": 43.6012384, + "lon": 3.8646124 + }, + { + "nodeId": 12175054249, + "lat": 43.6010058, + "lon": 3.8668472 + }, + { + "nodeId": 13198256124, + "lat": 43.6010969, + "lon": 3.8660031 + }, + { + "nodeId": 9700486537, + "lat": 43.6009695, + "lon": 3.867205 + }, + { + "nodeId": 9700486519, + "lat": 43.6009546, + "lon": 3.8673824 + }, + { + "nodeId": 9700486520, + "lat": 43.6009606, + "lon": 3.8674451 + }, + { + "nodeId": 13377851357, + "lat": 43.6009642, + "lon": 3.8674636 + }, + { + "nodeId": 13198256123, + "lat": 43.6009736, + "lon": 3.8675115 + }, + { + "nodeId": 9700486521, + "lat": 43.6009882, + "lon": 3.8675687 + }, + { + "nodeId": 9700486522, + "lat": 43.6010175, + "lon": 3.8676298 + }, + { + "nodeId": 13377851360, + "lat": 43.6010969, + "lon": 3.8677626 + }, + { + "nodeId": 13306120288, + "lat": 43.6011188, + "lon": 3.8677991 + }, + { + "nodeId": 13306158906, + "lat": 43.6011382, + "lon": 3.8678315 + }, + { + "nodeId": 12978810137, + "lat": 43.6014459, + "lon": 3.8683312 + }, + { + "nodeId": 13377851368, + "lat": 43.6011516, + "lon": 3.8678539 + }, + { + "nodeId": 9700486527, + "lat": 43.6014786, + "lon": 3.8683956 + }, + { + "nodeId": 12181124075, + "lat": 43.6014929, + "lon": 3.8684432 + }, + { + "nodeId": 9700486528, + "lat": 43.601503, + "lon": 3.8685056 + }, + { + "nodeId": 13306158905, + "lat": 43.6015143, + "lon": 3.8686429 + }, + { + "nodeId": 9700486529, + "lat": 43.6015178, + "lon": 3.8686856 + }, + { + "nodeId": 13306158902, + "lat": 43.601522, + "lon": 3.8687079 + }, + { + "nodeId": 9700486530, + "lat": 43.601538, + "lon": 3.8687936 + }, + { + "nodeId": 12186566286, + "lat": 43.6015601, + "lon": 3.8688572 + }, + { + "nodeId": 13198256131, + "lat": 43.60155, + "lon": 3.8688329 + }, + { + "nodeId": 9700486531, + "lat": 43.6016277, + "lon": 3.8689899 + }, + { + "nodeId": 13306158901, + "lat": 43.6017717, + "lon": 3.869254 + }, + { + "nodeId": 13306120298, + "lat": 43.6020039, + "lon": 3.86968 + }, + { + "nodeId": 13306120296, + "lat": 43.6022266, + "lon": 3.8700885 + }, + { + "nodeId": 11838328194, + "lat": 43.6023084, + "lon": 3.8702385 + }, + { + "nodeId": 13306120294, + "lat": 43.6024726, + "lon": 3.8705395 + }, + { + "nodeId": 13165462978, + "lat": 43.6024389, + "lon": 3.8704776 + }, + { + "nodeId": 13306120292, + "lat": 43.602728, + "lon": 3.8710086 + }, + { + "nodeId": 13306120291, + "lat": 43.6028661, + "lon": 3.8712624 + }, + { + "nodeId": 9700486532, + "lat": 43.6029054, + "lon": 3.8713345 + }, + { + "nodeId": 10064330852, + "lat": 43.6035348, + "lon": 3.8724516 + }, + { + "nodeId": 3828279522, + "lat": 43.6035023, + "lon": 3.8723951 + }, + { + "nodeId": 9700486533, + "lat": 43.6036584, + "lon": 3.8726681 + }, + { + "nodeId": 283307666, + "lat": 43.6036991, + "lon": 3.8727392 + }, + { + "nodeId": 13017317280, + "lat": 43.6037824, + "lon": 3.8728879 + }, + { + "nodeId": 9700486534, + "lat": 43.6038419, + "lon": 3.8729821 + }, + { + "nodeId": 13017317281, + "lat": 43.6039133, + "lon": 3.8730905 + }, + { + "nodeId": 9700486535, + "lat": 43.6039746, + "lon": 3.8731703 + }, + { + "nodeId": 251310025, + "lat": 43.6041352, + "lon": 3.8733741 + }, + { + "nodeId": 2597367172, + "lat": 43.6041633, + "lon": 3.8734092 + }, + { + "nodeId": 9700486536, + "lat": 43.6041578, + "lon": 3.8734027 + }, + { + "nodeId": 291270428, + "lat": 43.6041989, + "lon": 3.8734518 + }, + { + "nodeId": 13017317283, + "lat": 43.6044574, + "lon": 3.8737606 + }, + { + "nodeId": 283309684, + "lat": 43.6043487, + "lon": 3.8736308 + }, + { + "nodeId": 12175054251, + "lat": 43.6047379, + "lon": 3.8741205 + }, + { + "nodeId": 13391461298, + "lat": 43.6050726, + "lon": 3.8745319 + }, + { + "nodeId": 13306158909, + "lat": 43.6050834, + "lon": 3.8745452 + }, + { + "nodeId": 9700483712, + "lat": 43.6051707, + "lon": 3.8746525 + }, + { + "nodeId": 12116674324, + "lat": 43.6052227, + "lon": 3.8747235 + }, + { + "nodeId": 9700483711, + "lat": 43.6052491, + "lon": 3.8747713 + }, + { + "nodeId": 13306120287, + "lat": 43.6052362, + "lon": 3.8747479 + }, + { + "nodeId": 13190891947, + "lat": 43.6052667, + "lon": 3.8748132 + }, + { + "nodeId": 2479837374, + "lat": 43.6265236, + "lon": 3.8663225 + }, + { + "nodeId": 9871231584, + "lat": 43.6265942, + "lon": 3.8662944 + }, + { + "nodeId": 9871231586, + "lat": 43.6266375, + "lon": 3.8662938 + }, + { + "nodeId": 12202780282, + "lat": 43.6266587, + "lon": 3.8662965 + }, + { + "nodeId": 12202780284, + "lat": 43.6266823, + "lon": 3.8663008 + }, + { + "nodeId": 9871231588, + "lat": 43.626717, + "lon": 3.8663117 + }, + { + "nodeId": 9871231589, + "lat": 43.6267595, + "lon": 3.8663323 + }, + { + "nodeId": 2564061593, + "lat": 43.6166434, + "lon": 3.8178026 + }, + { + "nodeId": 2564061779, + "lat": 43.6161305, + "lon": 3.8180514 + }, + { + "nodeId": 252284572, + "lat": 43.6064289, + "lon": 3.8758275 + }, + { + "nodeId": 2575586434, + "lat": 43.6064721, + "lon": 3.8758481 + }, + { + "nodeId": 2575586438, + "lat": 43.6065208, + "lon": 3.8758561 + }, + { + "nodeId": 2575586436, + "lat": 43.6065576, + "lon": 3.8758509 + }, + { + "nodeId": 4278861075, + "lat": 43.6066143, + "lon": 3.8758279 + }, + { + "nodeId": 12190070890, + "lat": 43.6066648, + "lon": 3.8757813 + }, + { + "nodeId": 4278861076, + "lat": 43.6066819, + "lon": 3.875759 + }, + { + "nodeId": 12176450050, + "lat": 43.6067001, + "lon": 3.8757347 + }, + { + "nodeId": 12190070893, + "lat": 43.6067418, + "lon": 3.875681 + }, + { + "nodeId": 12176450045, + "lat": 43.6067751, + "lon": 3.8756373 + }, + { + "nodeId": 9855106172, + "lat": 43.6068137, + "lon": 3.875582 + }, + { + "nodeId": 5533923387, + "lat": 43.6210725, + "lon": 3.836725 + }, + { + "nodeId": 2575419159, + "lat": 43.6211273, + "lon": 3.8366775 + }, + { + "nodeId": 2575419202, + "lat": 43.6212093, + "lon": 3.8366088 + }, + { + "nodeId": 2575419234, + "lat": 43.6215892, + "lon": 3.8363531 + }, + { + "nodeId": 5533923380, + "lat": 43.6217405, + "lon": 3.8362482 + }, + { + "nodeId": 2575419110, + "lat": 43.6219079, + "lon": 3.8361152 + }, + { + "nodeId": 5533923394, + "lat": 43.6213657, + "lon": 3.836503 + }, + { + "nodeId": 2575419138, + "lat": 43.6142446, + "lon": 3.8392239 + }, + { + "nodeId": 2575419204, + "lat": 43.6143834, + "lon": 3.8393097 + }, + { + "nodeId": 2575419142, + "lat": 43.6146475, + "lon": 3.8394506 + }, + { + "nodeId": 2575419220, + "lat": 43.6149275, + "lon": 3.8395989 + }, + { + "nodeId": 2575419195, + "lat": 43.615171, + "lon": 3.8397059 + }, + { + "nodeId": 2575419247, + "lat": 43.6155116, + "lon": 3.8398824 + }, + { + "nodeId": 3123033228, + "lat": 43.6104756, + "lon": 3.8583962 + }, + { + "nodeId": 2575586506, + "lat": 43.6048313, + "lon": 3.8830257 + }, + { + "nodeId": 2575586437, + "lat": 43.6048977, + "lon": 3.8829601 + }, + { + "nodeId": 5533923406, + "lat": 43.6190369, + "lon": 3.8384763 + }, + { + "nodeId": 2575419245, + "lat": 43.6194807, + "lon": 3.8381081 + }, + { + "nodeId": 5533923402, + "lat": 43.6196367, + "lon": 3.8379772 + }, + { + "nodeId": 2575419100, + "lat": 43.619758, + "lon": 3.8378766 + }, + { + "nodeId": 5533923399, + "lat": 43.6198775, + "lon": 3.8377743 + }, + { + "nodeId": 2575419132, + "lat": 43.6199759, + "lon": 3.837691 + }, + { + "nodeId": 2575419161, + "lat": 43.6207564, + "lon": 3.8369963 + }, + { + "nodeId": 2007666286, + "lat": 43.6086632, + "lon": 3.8940759 + }, + { + "nodeId": 977674890, + "lat": 43.6086215, + "lon": 3.894054 + }, + { + "nodeId": 977674802, + "lat": 43.6085377, + "lon": 3.894036 + }, + { + "nodeId": 8755641078, + "lat": 43.6153358, + "lon": 3.8740538 + }, + { + "nodeId": 8755641077, + "lat": 43.6153759, + "lon": 3.8740766 + }, + { + "nodeId": 4205213581, + "lat": 43.6153943, + "lon": 3.8740881 + }, + { + "nodeId": 4345616071, + "lat": 43.6154462, + "lon": 3.8741313 + }, + { + "nodeId": 5158756364, + "lat": 43.6157945, + "lon": 3.87448 + }, + { + "nodeId": 8754231927, + "lat": 43.615833, + "lon": 3.8745081 + }, + { + "nodeId": 11867053046, + "lat": 43.6158572, + "lon": 3.8745253 + }, + { + "nodeId": 11867053047, + "lat": 43.6158838, + "lon": 3.8745395 + }, + { + "nodeId": 3781339245, + "lat": 43.6214639, + "lon": 3.8174062 + }, + { + "nodeId": 2577355092, + "lat": 43.621518, + "lon": 3.817408 + }, + { + "nodeId": 2577355017, + "lat": 43.6215678, + "lon": 3.8174097 + }, + { + "nodeId": 13033549219, + "lat": 43.6226985, + "lon": 3.817447 + }, + { + "nodeId": 5359000620, + "lat": 43.6227959, + "lon": 3.8174505 + }, + { + "nodeId": 2577354943, + "lat": 43.6228714, + "lon": 3.8174532 + }, + { + "nodeId": 3781457485, + "lat": 43.6236171, + "lon": 3.8174728 + }, + { + "nodeId": 2577354953, + "lat": 43.6237199, + "lon": 3.817478 + }, + { + "nodeId": 3781457487, + "lat": 43.6238125, + "lon": 3.8174801 + }, + { + "nodeId": 3781457491, + "lat": 43.6245461, + "lon": 3.8174971 + }, + { + "nodeId": 3781457493, + "lat": 43.624746, + "lon": 3.8175032 + }, + { + "nodeId": 2577354978, + "lat": 43.624641, + "lon": 3.8174993 + }, + { + "nodeId": 2577355085, + "lat": 43.6258729, + "lon": 3.8175439 + }, + { + "nodeId": 3781457500, + "lat": 43.625982, + "lon": 3.8175489 + }, + { + "nodeId": 3781457497, + "lat": 43.6257858, + "lon": 3.8175408 + }, + { + "nodeId": 2577354950, + "lat": 43.6267537, + "lon": 3.8175719 + }, + { + "nodeId": 2577355007, + "lat": 43.6268766, + "lon": 3.8175556 + }, + { + "nodeId": 2577355080, + "lat": 43.6270436, + "lon": 3.817535 + }, + { + "nodeId": 2577354996, + "lat": 43.6271945, + "lon": 3.8175208 + }, + { + "nodeId": 3781457509, + "lat": 43.6272356, + "lon": 3.8175215 + }, + { + "nodeId": 3781457316, + "lat": 43.6281924, + "lon": 3.8175516 + }, + { + "nodeId": 2577355045, + "lat": 43.6283363, + "lon": 3.8175557 + }, + { + "nodeId": 3781457321, + "lat": 43.6284721, + "lon": 3.8175599 + }, + { + "nodeId": 2577355063, + "lat": 43.6290566, + "lon": 3.8175853 + }, + { + "nodeId": 2577354952, + "lat": 43.6289432, + "lon": 3.8175738 + }, + { + "nodeId": 2577355076, + "lat": 43.6291601, + "lon": 3.8176122 + }, + { + "nodeId": 2577355088, + "lat": 43.6290951, + "lon": 3.8175907 + }, + { + "nodeId": 2577355056, + "lat": 43.629264, + "lon": 3.8176699 + }, + { + "nodeId": 2577355012, + "lat": 43.6294057, + "lon": 3.8177973 + }, + { + "nodeId": 3781457349, + "lat": 43.629851, + "lon": 3.8182101 + }, + { + "nodeId": 2577354975, + "lat": 43.6303153, + "lon": 3.8186422 + }, + { + "nodeId": 2577354969, + "lat": 43.6304094, + "lon": 3.8187468 + }, + { + "nodeId": 2577355087, + "lat": 43.6304707, + "lon": 3.8188364 + }, + { + "nodeId": 2577355082, + "lat": 43.6305793, + "lon": 3.8190633 + }, + { + "nodeId": 2577355079, + "lat": 43.6306356, + "lon": 3.819247 + }, + { + "nodeId": 2577355090, + "lat": 43.6305376, + "lon": 3.8189654 + }, + { + "nodeId": 2577355089, + "lat": 43.630657, + "lon": 3.8193704 + }, + { + "nodeId": 2577355068, + "lat": 43.6306735, + "lon": 3.8195152 + }, + { + "nodeId": 3781456425, + "lat": 43.6306753, + "lon": 3.8195898 + }, + { + "nodeId": 2577355040, + "lat": 43.6306823, + "lon": 3.8197397 + }, + { + "nodeId": 2577354965, + "lat": 43.6306823, + "lon": 3.819992 + }, + { + "nodeId": 2577355069, + "lat": 43.6306651, + "lon": 3.820665 + }, + { + "nodeId": 5358967549, + "lat": 43.6306637, + "lon": 3.8207581 + }, + { + "nodeId": 5358967542, + "lat": 43.6306423, + "lon": 3.8217691 + }, + { + "nodeId": 8754231932, + "lat": 43.6157171, + "lon": 3.8744654 + }, + { + "nodeId": 1508406327, + "lat": 43.6156851, + "lon": 3.8744624 + }, + { + "nodeId": 8754231934, + "lat": 43.6156418, + "lon": 3.8744626 + }, + { + "nodeId": 3118402886, + "lat": 43.6156062, + "lon": 3.8744698 + }, + { + "nodeId": 11867053048, + "lat": 43.6155654, + "lon": 3.8744789 + }, + { + "nodeId": 11867053049, + "lat": 43.6154808, + "lon": 3.8745269 + }, + { + "nodeId": 11867053050, + "lat": 43.6154491, + "lon": 3.8745556 + }, + { + "nodeId": 3118402884, + "lat": 43.6155204, + "lon": 3.8745025 + }, + { + "nodeId": 9779381517, + "lat": 43.6153769, + "lon": 3.8746455 + }, + { + "nodeId": 60025049, + "lat": 43.6154145, + "lon": 3.8745938 + }, + { + "nodeId": 13261866622, + "lat": 43.6153655, + "lon": 3.8746678 + }, + { + "nodeId": 13261866621, + "lat": 43.6153588, + "lon": 3.8746834 + }, + { + "nodeId": 20932824, + "lat": 43.6400492, + "lon": 3.9295287 + }, + { + "nodeId": 979209860, + "lat": 43.6400776, + "lon": 3.9297072 + }, + { + "nodeId": 979208939, + "lat": 43.6400968, + "lon": 3.9297742 + }, + { + "nodeId": 979209266, + "lat": 43.6401295, + "lon": 3.9298492 + }, + { + "nodeId": 368006866, + "lat": 43.6401636, + "lon": 3.9299008 + }, + { + "nodeId": 979210064, + "lat": 43.6402363, + "lon": 3.9299697 + }, + { + "nodeId": 979209383, + "lat": 43.6401905, + "lon": 3.9299362 + }, + { + "nodeId": 1547415286, + "lat": 43.6403052, + "lon": 3.9300051 + }, + { + "nodeId": 20932825, + "lat": 43.6406184, + "lon": 3.9301424 + }, + { + "nodeId": 979209718, + "lat": 43.6411162, + "lon": 3.9303754 + }, + { + "nodeId": 979208833, + "lat": 43.6413869, + "lon": 3.930493 + }, + { + "nodeId": 308531339, + "lat": 43.6417655, + "lon": 3.9306414 + }, + { + "nodeId": 979210138, + "lat": 43.6423347, + "lon": 3.9308582 + }, + { + "nodeId": 979209818, + "lat": 43.6425374, + "lon": 3.9309266 + }, + { + "nodeId": 979209436, + "lat": 43.6427295, + "lon": 3.9309782 + }, + { + "nodeId": 3124509173, + "lat": 43.6429501, + "lon": 3.9310185 + }, + { + "nodeId": 308531340, + "lat": 43.6431479, + "lon": 3.9310375 + }, + { + "nodeId": 2588842181, + "lat": 43.6433595, + "lon": 3.931042 + }, + { + "nodeId": 2588842180, + "lat": 43.6437447, + "lon": 3.9309972 + }, + { + "nodeId": 979209223, + "lat": 43.6435574, + "lon": 3.9310252 + }, + { + "nodeId": 308531342, + "lat": 43.6439118, + "lon": 3.9309591 + }, + { + "nodeId": 308531343, + "lat": 43.6441153, + "lon": 3.9308997 + }, + { + "nodeId": 3124509174, + "lat": 43.644365, + "lon": 3.9308022 + }, + { + "nodeId": 308531345, + "lat": 43.6447654, + "lon": 3.9306322 + }, + { + "nodeId": 3124509175, + "lat": 43.6450345, + "lon": 3.9305171 + }, + { + "nodeId": 979209155, + "lat": 43.6452186, + "lon": 3.9304297 + }, + { + "nodeId": 3124581437, + "lat": 43.5777494, + "lon": 3.8540252 + }, + { + "nodeId": 1503531757, + "lat": 43.5689775, + "lon": 3.9537691 + }, + { + "nodeId": 3119254616, + "lat": 43.5688618, + "lon": 3.954003 + }, + { + "nodeId": 1508371597, + "lat": 43.5687662, + "lon": 3.9541621 + }, + { + "nodeId": 1503531728, + "lat": 43.5686211, + "lon": 3.9543772 + }, + { + "nodeId": 1503531734, + "lat": 43.5681334, + "lon": 3.9550907 + }, + { + "nodeId": 1503531717, + "lat": 43.568013, + "lon": 3.9552625 + }, + { + "nodeId": 1503531741, + "lat": 43.567903, + "lon": 3.9554004 + }, + { + "nodeId": 1712551986, + "lat": 43.5677703, + "lon": 3.9555308 + }, + { + "nodeId": 12549116927, + "lat": 43.6170745, + "lon": 3.8728738 + }, + { + "nodeId": 3124679914, + "lat": 43.6171364, + "lon": 3.8726737 + }, + { + "nodeId": 2061950850, + "lat": 43.6172286, + "lon": 3.8723682 + }, + { + "nodeId": 2421895310, + "lat": 43.6173768, + "lon": 3.8719295 + }, + { + "nodeId": 2421895334, + "lat": 43.6174609, + "lon": 3.8717217 + }, + { + "nodeId": 2421895309, + "lat": 43.6175418, + "lon": 3.8715178 + }, + { + "nodeId": 2421895308, + "lat": 43.6175739, + "lon": 3.8714065 + }, + { + "nodeId": 2421895307, + "lat": 43.6175842, + "lon": 3.871306 + }, + { + "nodeId": 2421895318, + "lat": 43.617589, + "lon": 3.871196 + }, + { + "nodeId": 2421895321, + "lat": 43.6175473, + "lon": 3.8708514 + }, + { + "nodeId": 2421895319, + "lat": 43.6175026, + "lon": 3.8704773 + }, + { + "nodeId": 2421895312, + "lat": 43.617522, + "lon": 3.8702392 + }, + { + "nodeId": 2421895325, + "lat": 43.6175026, + "lon": 3.8703619 + }, + { + "nodeId": 2421895315, + "lat": 43.6175696, + "lon": 3.8700694 + }, + { + "nodeId": 2421895328, + "lat": 43.617679, + "lon": 3.8697889 + }, + { + "nodeId": 2421895314, + "lat": 43.6178702, + "lon": 3.8695983 + }, + { + "nodeId": 2421895327, + "lat": 43.6176354, + "lon": 3.8698777 + }, + { + "nodeId": 2421895320, + "lat": 43.6177774, + "lon": 3.8696618 + }, + { + "nodeId": 2421895333, + "lat": 43.6180366, + "lon": 3.8695535 + }, + { + "nodeId": 2421895330, + "lat": 43.6179568, + "lon": 3.869561 + }, + { + "nodeId": 2421895316, + "lat": 43.6177274, + "lon": 3.8697199 + }, + { + "nodeId": 2421895322, + "lat": 43.6192072, + "lon": 3.8695156 + }, + { + "nodeId": 2421895324, + "lat": 43.6194395, + "lon": 3.8695117 + }, + { + "nodeId": 14995491, + "lat": 43.6194786, + "lon": 3.8695076 + }, + { + "nodeId": 2421895331, + "lat": 43.6187587, + "lon": 3.8695263 + }, + { + "nodeId": 2421895323, + "lat": 43.61969, + "lon": 3.8694687 + }, + { + "nodeId": 5832108486, + "lat": 43.6197356, + "lon": 3.8694535 + }, + { + "nodeId": 2421895332, + "lat": 43.6195541, + "lon": 3.8694996 + }, + { + "nodeId": 14995497, + "lat": 43.6197931, + "lon": 3.8694306 + }, + { + "nodeId": 2421895317, + "lat": 43.61988, + "lon": 3.8693961 + }, + { + "nodeId": 2421895326, + "lat": 43.6216027, + "lon": 3.8685999 + }, + { + "nodeId": 2421895329, + "lat": 43.6206376, + "lon": 3.8690463 + }, + { + "nodeId": 2421896316, + "lat": 43.6222283, + "lon": 3.8683106 + }, + { + "nodeId": 2421896327, + "lat": 43.622424, + "lon": 3.8682209 + }, + { + "nodeId": 6843951479, + "lat": 43.6228469, + "lon": 3.8680309 + }, + { + "nodeId": 2421896323, + "lat": 43.6229067, + "lon": 3.8680047 + }, + { + "nodeId": 2421896325, + "lat": 43.6235699, + "lon": 3.867693 + }, + { + "nodeId": 2479837353, + "lat": 43.6254946, + "lon": 3.8667958 + }, + { + "nodeId": 2479837347, + "lat": 43.6246926, + "lon": 3.8671794 + }, + { + "nodeId": 2479837365, + "lat": 43.6262495, + "lon": 3.8664619 + }, + { + "nodeId": 2479837364, + "lat": 43.6263414, + "lon": 3.8664202 + }, + { + "nodeId": 13351269295, + "lat": 43.6263117, + "lon": 3.8664337 + }, + { + "nodeId": 1584018044, + "lat": 43.6264038, + "lon": 3.8663867 + }, + { + "nodeId": 3810224709, + "lat": 43.6264088, + "lon": 3.8663819 + }, + { + "nodeId": 13351269293, + "lat": 43.626461, + "lon": 3.8663559 + }, + { + "nodeId": 12576551197, + "lat": 43.6264867, + "lon": 3.8663422 + }, + { + "nodeId": 2479837351, + "lat": 43.6264282, + "lon": 3.8663733 + }, + { + "nodeId": 2569379694, + "lat": 43.6167746, + "lon": 3.8737589 + }, + { + "nodeId": 1583996896, + "lat": 43.6166811, + "lon": 3.8738894 + }, + { + "nodeId": 2569379695, + "lat": 43.6169091, + "lon": 3.8734214 + }, + { + "nodeId": 2569379698, + "lat": 43.6168289, + "lon": 3.8736556 + }, + { + "nodeId": 12542859573, + "lat": 43.6169474, + "lon": 3.8732964 + }, + { + "nodeId": 2569379693, + "lat": 43.6169516, + "lon": 3.8732829 + }, + { + "nodeId": 5158728472, + "lat": 43.6169865, + "lon": 3.873158 + }, + { + "nodeId": 11889125693, + "lat": 43.6120505, + "lon": 3.8723873 + }, + { + "nodeId": 3728561521, + "lat": 43.6120621, + "lon": 3.8723892 + }, + { + "nodeId": 8755641091, + "lat": 43.6121835, + "lon": 3.8724057 + }, + { + "nodeId": 8755641079, + "lat": 43.6122831, + "lon": 3.872423 + }, + { + "nodeId": 3728561632, + "lat": 43.6123034, + "lon": 3.8724265 + }, + { + "nodeId": 8755641090, + "lat": 43.6123964, + "lon": 3.8724567 + }, + { + "nodeId": 8755641089, + "lat": 43.6123515, + "lon": 3.8724389 + }, + { + "nodeId": 8755641084, + "lat": 43.6124721, + "lon": 3.8724909 + }, + { + "nodeId": 8755641083, + "lat": 43.6125934, + "lon": 3.8725585 + }, + { + "nodeId": 3728561627, + "lat": 43.6126753, + "lon": 3.8726042 + }, + { + "nodeId": 8755641080, + "lat": 43.6143084, + "lon": 3.8735002 + }, + { + "nodeId": 8755641082, + "lat": 43.6129427, + "lon": 3.8727529 + }, + { + "nodeId": 13386945311, + "lat": 43.6151232, + "lon": 3.8739416 + }, + { + "nodeId": 1968242060, + "lat": 43.6146272, + "lon": 3.8829784 + }, + { + "nodeId": 9910325969, + "lat": 43.6146344, + "lon": 3.883016 + }, + { + "nodeId": 976921320, + "lat": 43.614639, + "lon": 3.8830505 + }, + { + "nodeId": 976921195, + "lat": 43.6146407, + "lon": 3.883083 + }, + { + "nodeId": 976921283, + "lat": 43.6146359, + "lon": 3.883177 + }, + { + "nodeId": 976921088, + "lat": 43.6146407, + "lon": 3.8831134 + }, + { + "nodeId": 976921230, + "lat": 43.6146268, + "lon": 3.8832147 + }, + { + "nodeId": 70969013, + "lat": 43.6146069, + "lon": 3.8832669 + }, + { + "nodeId": 70968974, + "lat": 43.6145848, + "lon": 3.8833096 + }, + { + "nodeId": 70968976, + "lat": 43.6144464, + "lon": 3.8835057 + }, + { + "nodeId": 2588826119, + "lat": 43.6143681, + "lon": 3.8836174 + }, + { + "nodeId": 3122482390, + "lat": 43.6131637, + "lon": 3.8827003 + }, + { + "nodeId": 3122482391, + "lat": 43.6133469, + "lon": 3.8827153 + }, + { + "nodeId": 3122482392, + "lat": 43.6134931, + "lon": 3.882732 + }, + { + "nodeId": 3118400919, + "lat": 43.6135672, + "lon": 3.8827453 + }, + { + "nodeId": 3118400920, + "lat": 43.6136726, + "lon": 3.8827728 + }, + { + "nodeId": 3118400921, + "lat": 43.6138036, + "lon": 3.8828171 + }, + { + "nodeId": 3118400922, + "lat": 43.6139924, + "lon": 3.882875 + }, + { + "nodeId": 1503509440, + "lat": 43.5808622, + "lon": 3.926805 + }, + { + "nodeId": 3118402830, + "lat": 43.614107, + "lon": 3.8828896 + }, + { + "nodeId": 1503509396, + "lat": 43.580796, + "lon": 3.9267179 + }, + { + "nodeId": 1503509392, + "lat": 43.5807438, + "lon": 3.9266324 + }, + { + "nodeId": 1503509439, + "lat": 43.5806836, + "lon": 3.9265171 + } + ] +} \ No newline at end of file diff --git a/src/app/(game)/montpellier/icon.ico b/src/app/(game)/montpellier/icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..0d66081dd639f6da9638b757ddf412e49783abf8 GIT binary patch literal 7924 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 F{{v1{@WTKA literal 0 HcmV?d00001 diff --git a/src/app/(game)/montpellier/opengraph-image.jpg b/src/app/(game)/montpellier/opengraph-image.jpg new file mode 100644 index 0000000000000000000000000000000000000000..675b34e6586983aefb04406a783c471c229cf6cd GIT binary patch literal 323892 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

4-646t?&>*PT>DuT*pX*2E3t2pyG-v+jZr<`SH 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

#F6a&OYW=;B2 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%0Db^&*6hO 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 literal 0 HcmV?d00001 diff --git a/src/app/(game)/montpellier/page.tsx b/src/app/(game)/montpellier/page.tsx new file mode 100644 index 0000000..1285643 --- /dev/null +++ b/src/app/(game)/montpellier/page.tsx @@ -0,0 +1,34 @@ +import GamePage from '@/components/GamePage' +import Main from '@/components/Main' +import { Provider } from '@/lib/configContext' +import { DataFeatureCollection, RoutesFeatureCollection } from '@/lib/types' +import 'mapbox-gl/dist/mapbox-gl.css' +import { Inter } from 'next/font/google' +import 'react-circular-progressbar/dist/styles.css' +import config from './config' +import data from './data/features.json' +import routes from './data/routes.json' + +const font = Inter({ + subsets: ['latin'], + display: 'swap', +}) + +const fc = { + ...data, + features: data.features.filter((f) => !!config.LINES[f.properties.line]), +} as DataFeatureCollection + +const routesFc = routes as RoutesFeatureCollection + +export const metadata = config.METADATA + +export default function Montpellier() { + return ( + +

+ +
+ + ) +} diff --git a/src/app/(game)/rennes/config.ts b/src/app/(game)/rennes/config.ts index 3fffb69..d7ecd21 100644 --- a/src/app/(game)/rennes/config.ts +++ b/src/app/(game)/rennes/config.ts @@ -46,7 +46,7 @@ export const MAP_CONFIG: MapboxOptions = { export const STRIPE_LINK = 'https://buy.stripe.com/cN2aFb0nI1rI9bi5km' -export const CITY_NAME = 'toulouse' +export const CITY_NAME = 'rennes' export const LOCALE = 'fr' diff --git a/src/app/(game)/rennes/data/download-osm-raw-data.ts b/src/app/(game)/rennes/data/download-osm-raw-data.ts index 48a2b94..fe0942b 100644 --- a/src/app/(game)/rennes/data/download-osm-raw-data.ts +++ b/src/app/(game)/rennes/data/download-osm-raw-data.ts @@ -255,7 +255,7 @@ const main = async () => { ], } await fs.writeFile( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './source.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './source.json'), JSON.stringify(sourceData, null, 2), 'utf8', ) diff --git a/src/app/(game)/rennes/data/preprocess.ts b/src/app/(game)/rennes/data/preprocess.ts index 924bad5..77214e2 100644 --- a/src/app/(game)/rennes/data/preprocess.ts +++ b/src/app/(game)/rennes/data/preprocess.ts @@ -131,7 +131,7 @@ async function parseOldStationsAndCreateStationIdGetter(): Promise< let maxStationId = 0 try { const oldFeatureCollection = Bun.file( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './features.json'), ) const { features, properties } = (await oldFeatureCollection.json()) as StationsFeatureCollection @@ -178,7 +178,7 @@ function isDefined(arg: T): arg is Exclude { } const main = async () => { - const data = Bun.file(path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './source.json')) + const data = Bun.file(path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './source.json')) const { lines, nodes, ways } = (await data.json()) as SourceJson const getStationId = await parseOldStationsAndCreateStationIdGetter() @@ -211,7 +211,7 @@ const main = async () => { console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './lines.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './lines.json'), JSON.stringify( sortedLineIds.reduce( (acc, lineId) => { @@ -448,7 +448,7 @@ const main = async () => { console.debug(` ${station.properties.line} ${station.properties.name}`), ) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './features.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './features.json'), JSON.stringify(stations, null, 2), ) @@ -493,7 +493,7 @@ const main = async () => { console.debug(`Writing ${routes.features.length} paths to routes.json ...`) Bun.write( - path.join('C:/Users/nbeli/Documents/metro-memory/src/app/(game)/rennes/data', './routes.json'), + path.join('/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/rennes/data', './routes.json'), JSON.stringify(routes, null, 2), ) } diff --git a/src/app/(game)/toulouse/config.ts b/src/app/(game)/toulouse/config.ts index c8653b3..c4d49ad 100644 --- a/src/app/(game)/toulouse/config.ts +++ b/src/app/(game)/toulouse/config.ts @@ -9,34 +9,34 @@ export const LINES: { } = { ToulouseA: { name: 'A', - color: '#E41B23', - backgroundColor: '#E41B23', - textColor: '#ffffff', + color: '#DB001B', + backgroundColor: '#6E000D', + textColor: '#FFFFFF', order: 0, }, ToulouseB: { name: 'B', - color: '#FEDD04', - backgroundColor: '#FEDD04', - textColor: '#000000', + color: '#FFD900', + backgroundColor: '#806D00', + textColor: '#FFFFFF', order: 1, }, ToulouseC: { name: 'C', color: '#52B149', - backgroundColor: '#52B149', - textColor: '#ffffff', + backgroundColor: '#295925', + textColor: '#FFFFFF', order: 2, }, ToulouseT1: { name: 'T1', - color: '#234B90', - backgroundColor: '#234B90', - textColor: '#ffffff', + color: '#004687', + backgroundColor: '#002344', + textColor: '#FFFFFF', order: 3, }, - ToulouseT2: { - name: 'T2', + ToulouseAE: { + name: 'Aéroport Express', color: '#409AD9', backgroundColor: '#409AD9', textColor: '#ffffff', @@ -44,11 +44,18 @@ export const LINES: { }, ToulouseTeleo: { name: 'Teleo', - color: '#EC0677', - backgroundColor: '#EC0677', - textColor: '#ffffff', + color: '#DC006B', + backgroundColor: '#6E0036', + textColor: '#FFFFFF', order: 5, }, + ToulouseAC: { + name: 'Arènes - Colomiers', + color: '#6265ac', + backgroundColor: '#2F3058', + textColor: '#FFFFFF', + order: 6, + }, } export const METADATA: Metadata = { @@ -66,7 +73,8 @@ export const METADATA: Metadata = { export const MAP_CONFIG: MapboxOptions = { container: 'map', - style: 'mapbox://styles/benjamintd/cls4h02hy019201qygvumc0nb', + style: 'mapbox://styles/elisadorable/cmm4geupg001u01s2e8uja2nh', + center: [1.4473, 43.6048], minZoom: 6, fadeDuration: 50, dragRotate: false, diff --git a/src/app/(game)/toulouse/data/download-osm-raw-data.ts b/src/app/(game)/toulouse/data/download-osm-raw-data.ts new file mode 100644 index 0000000..c2115bd --- /dev/null +++ b/src/app/(game)/toulouse/data/download-osm-raw-data.ts @@ -0,0 +1,311 @@ +import axios from 'axios' +import { promises as fs } from 'fs' +import * as path from 'path' + +const osmApi = axios.create({ + baseURL: 'https://www.openstreetmap.org/api/0.6/', +}) + +export type SourceJson = { + lines: { + lineId: string + relations: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + }[] + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; name?: string; lat: number; lon: number }[] +} + +// ---------------------------------------- +// line configuration +// ---------------------------------------- +export const linesMetadata: { + [id: string]: { + name: string + osm: { + relationIds: number[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + } + color: string + } +} = { + ToulouseA: { + name: 'A', + osm: { + relationIds: [179515], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#DB001B', + }, + ToulouseB: { + name: 'B', + osm: { + relationIds: [179514, 17083110], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#FFD900', + }, + ToulouseC: { + name: 'C', + osm: { + relationIds: [20318652], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#52B149', + }, + ToulouseT1: { + name: 'T1', + osm: { + relationIds: [11562192], + extraStationNodeIds: [2379081185, 2379081163], + extraRouteWayIds: [], + }, + color: '#004687', + }, + // ToulouseAE: { + // name: 'Aéroport Express', + // osm: { + // relationIds: [5720058], + // extraStationNodeIds: [], + // extraRouteWayIds: [], + // }, + // color: '#0098D4', + // }, + ToulouseTeleo: { + name: 'Teleo', + osm: { + relationIds: [18180718], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#DC006B', + }, + ToulouseAC: { + name: 'Arènes - Colomiers', + osm: { + relationIds: [1557095], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#6265ac', + }, +} + +/** + * Retrieve IDs of stations (node in OSM) and routes (path of the line; way in OSM) for a given relation ID. + * If the relation includes child relations (e.g., relation is a route_master and includes multiple routes), + * those are retrieved as well (recursively). + */ +async function getOsmRelationsDetails(relationIds: number[]): Promise< + { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] +> { + const relationsDetails: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] = [] + await Promise.all( + relationIds.map(async (relationId) => { + const stationsNodeIds: number[] = [] + const routesWayIds: number[] = [] + const response = await osmApi.get(`relation/${relationId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'relation' || element.id !== relationId) continue + for (const member of element.members as { + type: string + ref: number + role: string + }[]) { + if (member.type === 'relation') { + const relationDetails = await getOsmRelationsDetails([member.ref]) + relationsDetails.push(...relationDetails) + } else if (member.type === 'node' && member.role.startsWith('stop')) { + stationsNodeIds.push(member.ref) + } else if (member.type === 'way' && member.role === '') { + // we ignore ways with role platform* + routesWayIds.push(member.ref) + } + } + } + relationsDetails.push({ relationId, stationsNodeIds, routesWayIds }) + }), + ) + return relationsDetails +} + +/** + * Retrieve details (name, lat, lon) for each station in a list of stations (OSM node IDs) + */ +async function getOsmStationsDetails( + stationsNodeIds: number[], +): Promise<{ nodeId: number; name: string; lat: number; lon: number }[]> { + const stationsDetails: { + nodeId: number + name: string + lat: number + lon: number + }[] = [] + await Promise.all( + stationsNodeIds.map(async (nodeId) => { + const response = await osmApi.get(`node/${nodeId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'node' || element.id !== nodeId) continue + stationsDetails.push({ + nodeId, + name: element.tags.name, + lat: element.lat, + lon: element.lon, + }) + } + }), + ) + return stationsDetails +} + +/** + * Retrieve list of coordinates (lat, lon) for each way in a list of OSM way IDs + */ +async function getOsmWaysDetails(wayIds: number[]): Promise<{ + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; lat: number; lon: number }[] +}> { + const ways: { + wayId: number + nodeIds: number[] + }[] = [] + await Promise.all( + wayIds.map(async (wayId) => { + const response = await osmApi.get(`way/${wayId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'way' || element.id !== wayId) continue + ways.push({ wayId, nodeIds: element.nodes }) + } + }), + ) + + const uniqueNodeIds = [...new Set(ways.map((way) => way.nodeIds).flat())] + console.debug( + `Fetched node IDs for ${ways.length} ways, now fetching details for ${uniqueNodeIds.length} nodes ...`, + ) + const nodes: { nodeId: number; lat: number; lon: number }[] = [] + await Promise.all( + uniqueNodeIds.map(async (nodeId, ix) => { + // very naive DoS protection: wait a bit for each request, to have max ~30 req/second + await wait(30 * ix) + const response = await osmApi.get(`node/${nodeId}.json`) + for (const element of response.data.elements) { + if (element.type !== 'node' || element.id !== nodeId) continue + const { lat, lon } = element + nodes.push({ nodeId, lat, lon }) + } + if ((ix + 1) % 10 === 0) + console.debug(` Finished request #${ix + 1}/${uniqueNodeIds.length}`) + }), + ) + return { ways, nodes } +} + +async function wait(ms: number): Promise { + return new Promise((resolve) => setTimeout(resolve, ms)) +} + +const main = async () => { + // get OSM IDs of stops and routes + console.debug( + `Fetching stations and routes for ${ + Object.keys(linesMetadata).length + } lines...`, + ) + const relationsDetailsPerLine: SourceJson['lines'] = await Promise.all( + Object.entries(linesMetadata).map(async ([lineId, lineMetadata]) => { + const relations = await getOsmRelationsDetails( + lineMetadata.osm.relationIds, + ) + return { + lineId, + relations, + extraStationNodeIds: lineMetadata.osm.extraStationNodeIds ?? [], + extraRouteWayIds: lineMetadata.osm.extraRouteWayIds ?? [], + } + }), + ) + + const uniqueStationsNodeIds = [ + ...new Set( + relationsDetailsPerLine + .map((lineDetails) => [ + ...lineDetails.relations + .map((relation) => relation.stationsNodeIds) + .flat(), + ...lineDetails.extraStationNodeIds, + ]) + .flat(), + ), + ] + const uniqueRoutesWayIds = [ + ...new Set( + relationsDetailsPerLine + .map((lineDetails) => [ + ...lineDetails.relations + .map((relation) => relation.routesWayIds) + .flat(), + ...lineDetails.extraRouteWayIds, + ]) + .flat(), + ), + ] + console.debug( + `Fetched ${uniqueStationsNodeIds.length} unique station node IDs and ${uniqueRoutesWayIds.length} route way IDs`, + ) + + // get details of stations and routes + console.debug(`Fetching details for ${uniqueStationsNodeIds.length} nodes...`) + const stationsDetails = await getOsmStationsDetails(uniqueStationsNodeIds) + console.debug(`Fetched details for ${uniqueStationsNodeIds.length} nodes`) + + console.debug(`Fetching details for ${uniqueRoutesWayIds.length} ways...`) + const waysDetails = await getOsmWaysDetails(uniqueRoutesWayIds) + console.debug(`Fetched details for ${uniqueRoutesWayIds.length} ways`) + + console.debug(`Saving data...`) + + // store station node IDs for easier lookup + const setStationNodeIds = new Set( + stationsDetails.map((station) => station.nodeId), + ) + + // save data to source.json + const sourceData: SourceJson = { + lines: relationsDetailsPerLine, + ways: waysDetails.ways, + nodes: [ + ...stationsDetails, + ...waysDetails.nodes.filter( + (node) => setStationNodeIds.has(node.nodeId) === false, + ), + ], + } + await fs.writeFile( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './source.json', + ), + JSON.stringify(sourceData, null, 2), + 'utf8', + ) +} + +main() diff --git a/src/app/(game)/toulouse/data/features.json b/src/app/(game)/toulouse/data/features.json index 7899f12..1d516aa 100644 --- a/src/app/(game)/toulouse/data/features.json +++ b/src/app/(game)/toulouse/data/features.json @@ -3,1437 +3,1997 @@ "features": [ { "type": "Feature", - "id": 1, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4827682, + 43.6290537 + ] + }, "properties": { - "id": "1", - "name": "Jean Jaurès", + "id": 1, + "name": "Balma-Gramont", + "alternate_names": [ + "Balmar-Gramont" + ], "line": "ToulouseA", - "order": 1, - "alternate_names": ["Joan Jaurès"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.449402284130175, 43.606088084144474] - } + "id": 1 }, { "type": "Feature", - "id": 2, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4766921, + 43.6243168 + ] + }, "properties": { - "id": "2", - "name": "Marengo – SNCF", + "id": 2, + "name": "Argoulets", + "alternate_names": [ + "Argolets" + ], "line": "ToulouseA", - "order": 2, - "alternate_names": [] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.455190067486286, 43.610855606647171] - } + "id": 2 }, { "type": "Feature", - "id": 3, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4696348, + 43.6200101 + ] + }, "properties": { - "id": "3", - "name": "Jolimont", + "id": 3, + "name": "Roseraie", + "alternate_names": [ + "Roseda" + ], "line": "ToulouseA", - "order": 3, - "alternate_names": ["Bèlmont"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.463393245774744, 43.615304402808057] - } + "id": 3 }, { "type": "Feature", - "id": 4, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4633672, + 43.6153075 + ] + }, "properties": { - "id": "4", - "name": "Roseraie", + "id": 4, + "name": "Jolimont", + "alternate_names": [ + "Bèlmont" + ], "line": "ToulouseA", - "order": 4, - "alternate_names": ["Roseda"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.469680652290976, 43.619994654261518] - } + "id": 4 }, { "type": "Feature", - "id": 5, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4552018, + 43.6108684 + ] + }, "properties": { - "id": "5", - "name": "Argoulets", + "id": 5, + "name": "Marengo–SNCF", + "alternate_names": [], "line": "ToulouseA", - "order": 5, - "alternate_names": ["Argolets"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.476742810321058, 43.624323239336505] - } + "id": 5 }, { "type": "Feature", - "id": 6, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4494956, + 43.606198 + ] + }, "properties": { - "id": "6", - "name": "Balma – Gramont", + "id": 6, + "name": "Jean Jaurès", + "alternate_names": [ + "Joan Jaurès" + ], "line": "ToulouseA", - "order": 6, - "alternate_names": ["Balmar Gramont"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.482783140633354, 43.629041545342936] - } + "id": 6 }, { "type": "Feature", - "id": 7, + "geometry": { + "type": "Point", + "coordinates": [ + 1.445252, + 43.6043987 + ] + }, "properties": { - "id": "7", + "id": 7, "name": "Capitole", + "alternate_names": [ + "Capitòli" + ], "line": "ToulouseA", - "order": 7, - "alternate_names": ["Capitòli"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.445244939880636, 43.604349919572627] - } + "id": 7 }, { "type": "Feature", - "id": 8, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4437554, + 43.6000704 + ] + }, "properties": { - "id": "8", + "id": 8, "name": "Esquirol", + "alternate_names": [ + "Esquiròl" + ], "line": "ToulouseA", - "order": 8, - "alternate_names": ["Esquiròl"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.443896263867947, 43.600070022760171] - } + "id": 8 }, { "type": "Feature", - "id": 9, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4314683, + 43.5979593 + ] + }, "properties": { - "id": "9", + "id": 9, "name": "Saint-Cyprien – République", + "alternate_names": [ + "Sant-Çubran – Republica" + ], "line": "ToulouseA", - "order": 9, - "alternate_names": ["Sant-Çubran – Republica"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.431446851320897, 43.5979354675002] - } + "id": 9 }, { "type": "Feature", - "id": 10, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4230168, + 43.5964074 + ] + }, "properties": { - "id": "10", - "name": "Patte d'Oie", + "id": 10, + "name": "Patte-d'Oie", + "alternate_names": [ + "Pè d'Auca" + ], "line": "ToulouseA", - "order": 10, - "alternate_names": ["Pè d'Auca"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.423010254307113, 43.59638890163879] - } + "id": 10 }, { "type": "Feature", - "id": 11, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4185362, + 43.5934608 + ] + }, "properties": { - "id": "11", + "id": 11, "name": "Arènes", + "alternate_names": [ + "Arenas" + ], "line": "ToulouseA", - "order": 11, - "alternate_names": ["Arenas"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.418554812308002, 43.593447169714715] - } + "id": 11 }, { "type": "Feature", - "id": 12, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4183762, + 43.5875104 + ] + }, "properties": { - "id": "12", - "name": "Fontaine Lestang", + "id": 12, + "name": "Fontaine-Lestang", + "alternate_names": [ + "Font l'Estanh" + ], "line": "ToulouseA", - "order": 12, - "alternate_names": ["Font l'Estanh"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.418401476070887, 43.587502121367528] - } + "id": 12 }, { "type": "Feature", - "id": 13, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4151246, + 43.5835138 + ] + }, "properties": { - "id": "13", + "id": 13, "name": "Mermoz", + "alternate_names": [], "line": "ToulouseA", - "order": 13 + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.415150996161824, 43.583520292269931] - } + "id": 13 }, { "type": "Feature", - "id": 14, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4122549, + 43.5800184 + ] + }, "properties": { - "id": "14", + "id": 14, "name": "Bagatelle", + "alternate_names": [ + "Bagatèla" + ], "line": "ToulouseA", - "order": 14, - "alternate_names": ["Bagatèla"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.412253748313161, 43.579994658536513] - } + "id": 14 }, { "type": "Feature", - "id": 15, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4019964, + 43.5747163 + ] + }, "properties": { - "id": "15", - "name": "Mirail – Université", + "id": 15, + "name": "Mirail - Université", + "alternate_names": [ + "Mirail - Universite", + "Miralh - Universitat" + ], "line": "ToulouseA", - "order": 15, - "alternate_names": ["Miralh – Universitat"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.402018088889817, 43.574696825801723] - } + "id": 15 }, { "type": "Feature", - "id": 16, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4017738, + 43.5708547 + ] + }, "properties": { - "id": "16", + "id": 16, "name": "Reynerie", + "alternate_names": [ + "Reinariá" + ], "line": "ToulouseA", - "order": 16, - "alternate_names": ["Reinariá"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.401797086054136, 43.57088461637673] - } + "id": 16 }, { "type": "Feature", - "id": 17, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3981476, + 43.5660849 + ] + }, "properties": { - "id": "17", + "id": 17, "name": "Bellefontaine", + "alternate_names": [ + "Belafont" + ], "line": "ToulouseA", - "order": 17, - "alternate_names": ["Belafont"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.398186545345369, 43.566077182439294] - } + "id": 17 }, { "type": "Feature", - "id": 18, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3922918, + 43.5699548 + ] + }, "properties": { - "id": "18", + "id": 18, "name": "Basso Cambo", + "alternate_names": [ + "Bassa Comba" + ], "line": "ToulouseA", - "order": 18, - "alternate_names": ["Baissa Comba"] + "order": 1 }, - "geometry": { - "type": "Point", - "coordinates": [1.392276581874345, 43.569981452596267] - } + "id": 18 }, { "type": "Feature", - "id": 19, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4524982, + 43.6403887 + ] + }, "properties": { - "id": "19", + "id": 19, "name": "Borderouge", + "alternate_names": [ + "Bòrdaroja" + ], "line": "ToulouseB", - "order": 19, - "alternate_names": ["Bòrdaroja"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.45252561756847, 43.640399909487918] - } + "id": 19 }, { "type": "Feature", - "id": 20, + "geometry": { + "type": "Point", + "coordinates": [ + 1.444896, + 43.6380034 + ] + }, "properties": { - "id": "20", + "id": 20, "name": "Trois Cocus", + "alternate_names": [ + "Tres Cocuts" + ], "line": "ToulouseB", - "order": 20, - "alternate_names": ["Tres Cocuts"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.44492554111952, 43.637998791882033] - } + "id": 20 }, { "type": "Feature", - "id": 21, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4360015, + 43.634103 + ] + }, "properties": { - "id": "21", + "id": 21, "name": "La Vache", + "alternate_names": [ + "La Vaca" + ], "line": "ToulouseB", - "order": 21, - "alternate_names": ["La Vaca"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.436030797777836, 43.634098933409383] - } + "id": 21 }, { "type": "Feature", - "id": 22, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4340486, + 43.6263847 + ] + }, "properties": { - "id": "22", + "id": 22, "name": "Barrière de Paris", + "alternate_names": [ + "Barrièra de París" + ], "line": "ToulouseB", - "order": 22, - "alternate_names": ["Barrièra de París"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.434064120858067, 43.626341596229622] - } + "id": 22 }, { "type": "Feature", - "id": 23, + "geometry": { + "type": "Point", + "coordinates": [ + 1.435805, + 43.6204971 + ] + }, "properties": { - "id": "23", - "name": "Minimes – Claude Nougaro", + "id": 23, + "name": "Minimes - Claude Nougaro", + "alternate_names": [ + "Minimes - Claudi Nogaròu" + ], "line": "ToulouseB", - "order": 23, - "alternate_names": ["Minimes – Claudi Nogaròu"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.435807311764226, 43.62051035285819] - } + "id": 23 }, { "type": "Feature", - "id": 24, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4345301, + 43.6154818 + ] + }, "properties": { - "id": "24", + "id": 24, "name": "Canal du Midi", + "alternate_names": [ + "Canal del Miègjorn" + ], "line": "ToulouseB", - "order": 24, - "alternate_names": ["Canal del Miègjorn"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.434555790088009, 43.615487552395976] - } + "id": 24 }, { "type": "Feature", - "id": 25, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4351647, + 43.6105033 + ] + }, "properties": { - "id": "25", - "name": "Compans Caffarelli", + "id": 25, + "name": "Compans-Caffarelli", + "alternate_names": [], "line": "ToulouseB", - "order": 25 + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.435136853723395, 43.610507482779482] - } + "id": 25 }, { "type": "Feature", - "id": 26, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4451331, + 43.6091034 + ] + }, "properties": { - "id": "26", + "id": 26, "name": "Jeanne d'Arc", + "alternate_names": [ + "Joana d'Arc" + ], "line": "ToulouseB", - "order": 26, - "alternate_names": ["Joana d'Arc"] + "order": 3 }, + "id": 26 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.445139094421414, 43.609119462096189] - } + "coordinates": [ + 1.4483803, + 43.6059902 + ] + }, + "properties": { + "id": 27, + "name": "Jean Jaurès", + "alternate_names": [ + "Joan Jaurès" + ], + "line": "ToulouseB", + "order": 3 + }, + "id": 27 }, { "type": "Feature", - "id": 27, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4521612, + 43.6004617 + ] + }, "properties": { - "id": "27", + "id": 28, "name": "François Verdier", + "alternate_names": [ + "Francés Verdièr" + ], "line": "ToulouseB", - "order": 27, - "alternate_names": ["Francés Verdièr"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.452166487960489, 43.600463387675347] - } + "id": 28 }, { "type": "Feature", - "id": 28, + "geometry": { + "type": "Point", + "coordinates": [ + 1.445393, + 43.5975016 + ] + }, "properties": { - "id": "28", + "id": 29, "name": "Carmes", + "alternate_names": [], "line": "ToulouseB", - "order": 28 + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.445417210349463, 43.59751061543146] - } + "id": 29 }, { "type": "Feature", - "id": 29, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4446112, + 43.5924567 + ] + }, "properties": { - "id": "29", + "id": 30, "name": "Palais de Justice", + "alternate_names": [ + "Palais de Justícia" + ], "line": "ToulouseB", - "order": 29, - "alternate_names": ["Palais de Justícia"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.444612660700466, 43.592471506249879] - } + "id": 30 }, { "type": "Feature", - "id": 30, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4470737, + 43.5863338 + ] + }, "properties": { - "id": "30", - "name": "Saint-Michel – Marcel Langer", + "id": 31, + "name": "Saint-Michel - Marcel Langer", + "alternate_names": [ + "Sant-Miquèl - Marcel Langer" + ], "line": "ToulouseB", - "order": 30, - "alternate_names": ["Sant-Miquèl – Marcel Langer"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.447083422739824, 43.586331207659171] - } + "id": 31 }, { "type": "Feature", - "id": 31, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4420411, + 43.5797326 + ] + }, "properties": { - "id": "31", + "id": 32, "name": "Empalot", + "alternate_names": [ + "En Palòt" + ], "line": "ToulouseB", - "order": 31, - "alternate_names": ["En Palòt"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.442052504255666, 43.579758559616167] - } + "id": 32 }, { "type": "Feature", - "id": 32, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4501089, + 43.5804421 + ] + }, "properties": { - "id": "32", + "id": 33, "name": "Saint-Agne – SNCF", + "alternate_names": [ + "Sant-Anha – SNCF" + ], "line": "ToulouseB", - "order": 32, - "alternate_names": ["Sant-Anha – SNCF"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.450137731592496, 43.580467303307685] - } + "id": 33 }, { "type": "Feature", - "id": 33, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4590595, + 43.5797077 + ] + }, "properties": { - "id": "33", + "id": 34, "name": "Saouzelong", + "alternate_names": [ + "Sauselong" + ], "line": "ToulouseB", - "order": 33, - "alternate_names": ["Sauselong"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.459072205781044, 43.5797189848494] - } + "id": 34 }, { "type": "Feature", - "id": 34, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4618857, + 43.5747162 + ] + }, "properties": { - "id": "34", + "id": 35, "name": "Rangueil", + "alternate_names": [ + "Ranguelh" + ], "line": "ToulouseB", - "order": 34, - "alternate_names": ["Ranguelh"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.461883163196674, 43.574721562097075] - } + "id": 35 }, { "type": "Feature", - "id": 35, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4645037, + 43.568086 + ] + }, "properties": { - "id": "35", + "id": 36, "name": "Faculté de Pharmacie", + "alternate_names": [ + "Facultat de Farmacia" + ], "line": "ToulouseB", - "order": 35, - "alternate_names": ["Facultat de Farmacia"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.464545129936563, 43.56798931687505] - } + "id": 36 }, { "type": "Feature", - "id": 36, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4632875, + 43.5608451 + ] + }, "properties": { - "id": "36", + "id": 37, "name": "Université Paul Sabatier", + "alternate_names": [ + "Universite Paul Sabatier", + "Universitat Pau Sabatièr" + ], "line": "ToulouseB", - "order": 36, - "alternate_names": ["Universitat Pau Sabatièr"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.463293608260346, 43.56085684985127] - } + "id": 37 }, { "type": "Feature", - "id": 37, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4764144, + 43.5557687 + ] + }, "properties": { - "id": "37", + "id": 38, "name": "Ramonville", + "alternate_names": [ + "Ramonvila" + ], "line": "ToulouseB", - "order": 37, - "alternate_names": ["Ramonvila"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.476404787725475, 43.555778680892693] - } + "id": 38 }, { "type": "Feature", - "id": 38, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4886521, + 43.5513126 + ] + }, "properties": { - "id": "38", + "id": 94, "name": "Parc du Canal", + "alternate_names": [ + "Pargue del Canal" + ], "line": "ToulouseB", - "order": 38, - "alternate_names": ["Pargue del Canal"] + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.488656787627169, 43.551319184585701] - } + "id": 94 }, { "type": "Feature", - "id": 39, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5052217, + 43.5510956 + ] + }, "properties": { - "id": "39", + "id": 95, "name": "Labège Madron", + "alternate_names": [ + "Labeja Madron" + ], "line": "ToulouseB", - "order": 39 + "order": 3 }, - "geometry": { - "type": "Point", - "coordinates": [1.505210466485817, 43.551117702009179] - } + "id": 95 }, { "type": "Feature", - "id": 40, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5207295, + 43.5390078 + ] + }, "properties": { - "id": "40", - "name": "Colomiers Gare", + "id": 73, + "name": "Labège Gare", + "alternate_names": [ + "Labeja Gara" + ], "line": "ToulouseC", - "order": 40, - "alternate_names": ["Colomièrs Gara"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.33514176170043, 43.604361832100423] - } + "id": 73 }, { "type": "Feature", - "id": 41, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5097353, + 43.5443343 + ] + }, "properties": { - "id": "41", - "name": "Fontaine Lumineuse", + "id": 74, + "name": "Diagora", + "alternate_names": [], "line": "ToulouseC", - "order": 41, - "alternate_names": ["Font Luminosa"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.353909620487825, 43.608831785408384] - } + "id": 74 }, { "type": "Feature", - "id": 42, + "geometry": { + "type": "Point", + "coordinates": [ + 1.505476, + 43.5511265 + ] + }, "properties": { - "id": "42", - "name": "Saint-Martin-du-Touch", + "id": 75, + "name": "Labège Madron", + "alternate_names": [ + "Labeja Madron" + ], "line": "ToulouseC", - "order": 42, - "alternate_names": ["La Cranc - Sant-Martin"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.371505419292731, 43.610410394291769] - } + "id": 75 }, { "type": "Feature", - "id": 43, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4923986, + 43.5634847 + ] + }, "properties": { - "id": "43", - "name": "Blagnac", + "id": 76, + "name": "Aérospace Campus", + "alternate_names": [ + "Aerospace Campus" + ], "line": "ToulouseC", - "order": 43, - "alternate_names": ["Blanhac"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.396302628100119, 43.621552381964321] - } + "id": 76 }, { "type": "Feature", - "id": 44, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4813898, + 43.5723039 + ] + }, "properties": { - "id": "44", - "name": "Sept Deniers – Stade Toulousain", + "id": 77, + "name": "Montaudran Gare – Piste des Géants", + "alternate_names": [ + "Montaudran Gara – Pista dels Gigants" + ], "line": "ToulouseC", - "order": 44, - "alternate_names": ["Sèt Denièrs – Estadi Tolosenc"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.410968082940425, 43.620528329200113] - } + "id": 77 }, { "type": "Feature", - "id": 45, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4802289, + 43.5912268 + ] + }, "properties": { - "id": "45", - "name": "Ponts-Jumeaux", + "id": 78, + "name": "Limayrac – Cité de l'espace", + "alternate_names": [ + "Limairac – Ciutat de l'espaci" + ], "line": "ToulouseC", - "order": 45, - "alternate_names": ["Ponts-Bessons"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.423259813688983, 43.619945892988937] - } + "id": 78 }, { "type": "Feature", - "id": 46, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4657873, + 43.5938429 + ] + }, "properties": { - "id": "46", - "name": "Fondeyre", + "id": 79, + "name": "Côte Pavée", + "alternate_names": [ + "Còsta Pavada" + ], "line": "ToulouseC", - "order": 46, - "alternate_names": ["Fondeire"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.427992750821659, 43.632301678414308] - } + "id": 79 }, { "type": "Feature", - "id": 47, - "properties": { - "id": "47", - "name": "La Vache Gare – Grand Marché", - "line": "ToulouseC", - "order": 47, - "alternate_names": ["La Vache", "La Vaca"] - }, "geometry": { "type": "Point", - "coordinates": [1.437140778312102, 43.635583425501316] - } - }, - { - "type": "Feature", - "id": 48, + "coordinates": [ + 1.4519241, + 43.6002559 + ] + }, "properties": { - "id": "48", - "name": "Lycée Toulouse-Lautrec", + "id": 80, + "name": "François Verdier", + "alternate_names": [ + "Francés Verdièr" + ], "line": "ToulouseC", - "order": 48, - "alternate_names": ["Licèu Tolosa-Lautrèc"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.443815560585258, 43.626798149361058] - } + "id": 80 }, { "type": "Feature", - "id": 49, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4553912, + 43.6112822 + ] + }, "properties": { - "id": "49", - "name": "Raisin", + "id": 81, + "name": "Matabiau Gare", + "alternate_names": [ + "Matabiau Gara" + ], "line": "ToulouseC", - "order": 49, - "alternate_names": ["Rasim"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.446194445041242, 43.61831000802065] - } + "id": 81 }, { "type": "Feature", - "id": 50, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4563846, + 43.6186042 + ] + }, "properties": { - "id": "50", + "id": 82, "name": "Bonnefoy", + "alternate_names": [ + "Bonafé" + ], "line": "ToulouseC", - "order": 50, - "alternate_names": ["Bonafé"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.456400306329438, 43.61860483013794] - } + "id": 82 }, { "type": "Feature", - "id": 51, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4463249, + 43.6182501 + ] + }, "properties": { - "id": "51", - "name": "Matabiau Gare", + "id": 83, + "name": "Raisin", + "alternate_names": [ + "Rasim" + ], "line": "ToulouseC", - "order": 51, - "alternate_names": ["Marengo SNCF", "Matabiau Gara"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.455166166898724, 43.611136756214876] - } + "id": 83 }, { "type": "Feature", - "id": 52, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4437899, + 43.6268422 + ] + }, "properties": { - "id": "52", - "name": "Côte Pavée", + "id": 84, + "name": "Lycée Toulouse-Lautrec", + "alternate_names": [ + "Licèu Tolosa-Lautrèc" + ], "line": "ToulouseC", - "order": 52, - "alternate_names": ["Còsta Pavada"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.465809067502426, 43.593849120477117] - } + "id": 84 }, { "type": "Feature", - "id": 53, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4372019, + 43.6355205 + ] + }, "properties": { - "id": "53", - "name": "Limayrac – Cité de l'Espace", + "id": 85, + "name": "La Vache Gare – Grand Marché", + "alternate_names": [ + "La Vaca Gara – Grand Mercat" + ], "line": "ToulouseC", - "order": 53, - "alternate_names": ["Limairac – Ciutat de l'espaci"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.480196600423061, 43.59125212948905] - } + "id": 85 }, { "type": "Feature", - "id": 54, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4279967, + 43.6322682 + ] + }, "properties": { - "id": "54", - "name": "Ormeau", + "id": 86, + "name": "Fondeyre", + "alternate_names": [ + "Fondeire" + ], "line": "ToulouseC", - "order": 54, - "alternate_names": ["Ormal"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.483360169104609, 43.579229694674886] - } + "id": 86 }, { "type": "Feature", - "id": 55, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4232104, + 43.6199177 + ] + }, "properties": { - "id": "55", - "name": "Montaudran Gare – Piste des Géants", + "id": 87, + "name": "Ponts Jumeaux", + "alternate_names": [ + "Ponts Bessons" + ], "line": "ToulouseC", - "order": 55, - "alternate_names": ["Montaudran Gara – Pista dels Gigants"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.481547449216437, 43.571555233708935] - } + "id": 87 }, { "type": "Feature", - "id": 56, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4111737, + 43.6205085 + ] + }, "properties": { - "id": "56", - "name": "Aérospace Campus", + "id": 88, + "name": "Sept Deniers – Stade Toulousain", + "alternate_names": [ + "Sèt Denièrs - Estadi Tolosenc" + ], "line": "ToulouseC", - "order": 56 + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.492324441428305, 43.563530724277996] - } + "id": 88 }, { "type": "Feature", - "id": 57, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3955879, + 43.6215712 + ] + }, "properties": { - "id": "57", - "name": "Diagora", + "id": 89, + "name": "Blagnac", + "alternate_names": [ + "Blanhac" + ], "line": "ToulouseC", - "order": 57 + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.509801047692619, 43.544512327660406] - } + "id": 89 }, { "type": "Feature", - "id": 58, + "geometry": { + "type": "Point", + "coordinates": [ + 1.371477, + 43.6103854 + ] + }, "properties": { - "id": "58", - "name": "Labège Gare", + "id": 90, + "name": "Saint-Martin-du-Touch", + "alternate_names": [ + "Sent Martin del Toish" + ], "line": "ToulouseC", - "order": 58, - "alternate_names": ["Labeja Gara"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.520662467954072, 43.538975565187883] - } + "id": 90 }, { "type": "Feature", - "id": 59, - "properties": { - "id": "59", - "name": "Jean Jaurès", - "line": "ToulouseB", - "order": 59, - "alternate_names": ["Joan Jaurès"] - }, "geometry": { "type": "Point", - "coordinates": [1.44865360598471, 43.605793200661175] - } - }, - { - "type": "Feature", - "id": 60, + "coordinates": [ + 1.3538265, + 43.6088074 + ] + }, "properties": { - "id": "60", - "name": "Labège Madron", + "id": 91, + "name": "Fontaine Lumineuse", + "alternate_names": [ + "Font Luminosa" + ], "line": "ToulouseC", - "order": 60 + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.505400429597353, 43.551213086453217] - } + "id": 91 }, { "type": "Feature", - "id": 61, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3352844, + 43.6044092 + ] + }, "properties": { - "id": "61", - "name": "François Verdier", + "id": 92, + "name": "Colomiers Gare", + "alternate_names": [ + "Colomèrs Gara" + ], "line": "ToulouseC", - "order": 61, - "alternate_names": ["Francés Verdièr"] + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.452166487960489, 43.600463387675347] - } + "id": 92 }, { "type": "Feature", - "id": 62, - "properties": { - "id": "62", - "name": "Université Paul Sabatier", - "line": "ToulouseTeleo", - "order": 62, - "alternate_names": ["Universitat Pau Sabatièr"] - }, "geometry": { "type": "Point", - "coordinates": [1.464602747422677, 43.560212739455963] - } - }, - { - "type": "Feature", - "id": 63, + "coordinates": [ + 1.4833564, + 43.5791828 + ] + }, "properties": { - "id": "63", - "name": "Hôpital Rangueil – Louis Lareng", - "line": "ToulouseTeleo", - "order": 63, - "alternate_names": ["Espital de Ranguèlh – Louis Lareng"] + "id": 93, + "name": "Ormeau", + "alternate_names": [ + "Ormal" + ], + "line": "ToulouseC", + "order": 4 }, - "geometry": { - "type": "Point", - "coordinates": [1.452982716305934, 43.558348494603358] - } + "id": 93 }, { "type": "Feature", - "id": 64, - "properties": { - "id": "64", - "name": "Oncopole – Lise Enjalbert", - "line": "ToulouseTeleo", - "order": 64, - "alternate_names": ["Oncopòl – Lise Enjalbert"] - }, "geometry": { "type": "Point", - "coordinates": [1.428322276297307, 43.554328745313093] - } - }, - { - "type": "Feature", - "id": 65, + "coordinates": [ + 1.4440516, + 43.5927702 + ] + }, "properties": { - "id": "65", + "id": 39, "name": "Palais de Justice", + "alternate_names": [ + "Palais de Justícia" + ], "line": "ToulouseT1", - "order": 65, - "alternate_names": ["Palais de Justícia"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.444054139666521, 43.592727872354423] - } + "id": 39 }, { "type": "Feature", - "id": 66, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4404187, + 43.5922184 + ] + }, "properties": { - "id": "66", - "name": "île du Ramier", + "id": 40, + "name": "Île du Ramier", + "alternate_names": [ + "Isla del Ramier" + ], "line": "ToulouseT1", - "order": 66, - "alternate_names": ["Isla del Ramier"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.440415042412201, 43.592205416028364] - } + "id": 40 }, { "type": "Feature", - "id": 67, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4354601, + 43.5926438 + ] + }, "properties": { - "id": "67", + "id": 41, "name": "Fer à Cheval", + "alternate_names": [ + "Fèrre de Caval" + ], "line": "ToulouseT1", - "order": 67, - "alternate_names": ["Fèrre de Caval"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.43545986085574, 43.592646941378767] - } + "id": 41 }, { "type": "Feature", - "id": 68, + "geometry": { + "type": "Point", + "coordinates": [ + 1.431786, + 43.5893727 + ] + }, "properties": { - "id": "68", + "id": 42, "name": "Avenue de Muret – Marcel Cavaillé", + "alternate_names": [ + "Avenguda de Murèth – Marcel Cavaillé" + ], "line": "ToulouseT1", - "order": 68, - "alternate_names": ["Avenguda de Murèth – Marcel Cavaillé"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.431834421080028, 43.589363749707175] - } + "id": 42 }, { "type": "Feature", - "id": 69, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4278901, + 43.5856208 + ] + }, "properties": { - "id": "69", + "id": 43, "name": "Croix de Pierre", + "alternate_names": [ + "Crotz de Pèira" + ], "line": "ToulouseT1", - "order": 69, - "alternate_names": ["Crotz de Pèira"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.427891134529459, 43.585620818640628] - } + "id": 43 }, { "type": "Feature", - "id": 70, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4216813, + 43.5896483 + ] + }, "properties": { - "id": "70", - "name": "Déodat de Severac", + "id": 44, + "name": "Déodat de Séverac", + "alternate_names": [], "line": "ToulouseT1", - "order": 70 + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.421665807462534, 43.589642526705788] - } + "id": 44 }, { "type": "Feature", - "id": 71, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4179282, + 43.5928437 + ] + }, "properties": { - "id": "71", + "id": 45, "name": "Arènes", + "alternate_names": [ + "Arenas" + ], "line": "ToulouseT1", - "order": 71, - "alternate_names": ["Arenas"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.417928624680037, 43.592843873229747] - } + "id": 45 }, { "type": "Feature", - "id": 72, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4094423, + 43.5948728 + ] + }, "properties": { - "id": "72", + "id": 46, "name": "Hippodrome", + "alternate_names": [ + "Ipodròm" + ], "line": "ToulouseT1", - "order": 72, - "alternate_names": ["Ipodròm"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.409428706630542, 43.594881495556628] - } + "id": 46 }, { "type": "Feature", - "id": 73, + "geometry": { + "type": "Point", + "coordinates": [ + 1.411406, + 43.6008658 + ] + }, "properties": { - "id": "73", + "id": 47, "name": "Zénith", + "alternate_names": [ + "Zenit" + ], "line": "ToulouseT1", - "order": 73, - "alternate_names": ["Zenit"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.411387934016184, 43.600871669643084] - } + "id": 47 }, { "type": "Feature", - "id": 74, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4076812, + 43.6031468 + ] + }, "properties": { - "id": "74", + "id": 48, "name": "Cartoucherie", + "alternate_names": [ + "Cartocharia" + ], "line": "ToulouseT1", - "order": 74, - "alternate_names": ["Cartocharia"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.407668133479186, 43.603133789799983] - } + "id": 48 }, { "type": "Feature", - "id": 75, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4020256, + 43.6091124 + ] + }, "properties": { - "id": "75", + "id": 49, "name": "Purpan", + "alternate_names": [], "line": "ToulouseT1", - "order": 75 + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.402007729391011, 43.609111455490158] - } + "id": 49 }, { "type": "Feature", - "id": 76, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3983014, + 43.6141015 + ] + }, "properties": { - "id": "76", + "id": 50, "name": "Arènes Romaines", + "alternate_names": [ + "Arenas Romanas" + ], "line": "ToulouseT1", - "order": 76, - "alternate_names": ["Arenas Romanas"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.398304069510548, 43.614092539616429] - } + "id": 50 }, { "type": "Feature", - "id": 77, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3969311, + 43.6182283 + ] + }, "properties": { - "id": "77", + "id": 51, "name": "Ancely", + "alternate_names": [], "line": "ToulouseT1", - "order": 77 + "order": 5 }, + "id": 51 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.396918456226406, 43.618227398020181] - } + "coordinates": [ + 1.396107698632727, + 43.62220041446183 + ] + }, + "properties": { + "id": 100, + "name": "Blagnac", + "alternate_names": [ + "Blanhac" + ], + "line": "ToulouseT1", + "order": 5 + }, + "id": 100 }, { "type": "Feature", - "id": 78, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3934923, + 43.6254903 + ] + }, "properties": { - "id": "78", + "id": 52, "name": "Servanty Airbus", + "alternate_names": [], "line": "ToulouseT1", - "order": 78 + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.393486704329123, 43.625486083389568] - } + "id": 52 }, { "type": "Feature", - "id": 79, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3917438, + 43.6308743 + ] + }, "properties": { - "id": "79", - "name": "Guyenne-Berry", + "id": 53, + "name": "Guyenne - Berry", + "alternate_names": [ + "Guiana - Berric" + ], "line": "ToulouseT1", - "order": 79, - "alternate_names": ["Guiana Berric"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.391728614355695, 43.630871109265904] - } + "id": 53 }, { "type": "Feature", - "id": 80, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3913438, + 43.6340381 + ] + }, "properties": { - "id": "80", - "name": "Pasteur – Mairie de Blagnac", + "id": 54, + "name": "Pasteur - Mairie de Blagnac", + "alternate_names": [ + "Pasteur - Ostal de Blanhac" + ], "line": "ToulouseT1", - "order": 80, - "alternate_names": ["Pasteur – Ostal de Blanhac"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.391345584160213, 43.634038810479879] - } + "id": 54 }, { "type": "Feature", - "id": 81, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3900718, + 43.636771 + ] + }, "properties": { - "id": "81", + "id": 55, "name": "Place du Relais", + "alternate_names": [ + "Plaça del Relai" + ], "line": "ToulouseT1", - "order": 81, - "alternate_names": ["Plaça del Relai"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.390074817855267, 43.636755262103399] - } + "id": 55 }, { "type": "Feature", - "id": 82, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3853347, + 43.6362564 + ] + }, "properties": { - "id": "82", - "name": "Odyssud – Ritouret", + "id": 56, + "name": "Odyssud - Ritouret", + "alternate_names": [ + "Odyssud - Ritoret" + ], "line": "ToulouseT1", - "order": 82, - "alternate_names": ["Odyssud – Ritoret"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.385336914367556, 43.636246666875486] - } + "id": 56 }, { "type": "Feature", - "id": 83, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38276, + 43.6400747 + ] + }, "properties": { - "id": "83", - "name": "Patinoire – Barradels", + "id": 57, + "name": "Patinoire - Barradels", + "alternate_names": [ + "Patinadoira - Barradels" + ], "line": "ToulouseT1", - "order": 83, - "alternate_names": ["Patinadoira – Barradels"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.382766825211486, 43.640074504029357] - } + "id": 57 }, { "type": "Feature", - "id": 84, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3774771, + 43.6447688 + ] + }, "properties": { - "id": "84", - "name": "Grand Nobles", + "id": 58, + "name": "Grand Noble", + "alternate_names": [ + "Grand Nòble" + ], "line": "ToulouseT1", - "order": 84, - "alternate_names": ["Grand Nòble"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.377467723511918, 43.644759229167498] - } + "id": 58 }, { "type": "Feature", - "id": 85, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3756491, + 43.6485505 + ] + }, "properties": { - "id": "85", + "id": 59, "name": "Place Georges Brassens", + "alternate_names": [ + "Plaça Jòrdi Brassens" + ], "line": "ToulouseT1", - "order": 85, - "alternate_names": ["Plaça Jòrdi Brassens"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.375637621378562, 43.648545197703747] - } + "id": 59 }, { "type": "Feature", - "id": 86, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3735958, + 43.6548396 + ] + }, "properties": { - "id": "86", - "name": "Andromede – Lycée", + "id": 60, + "name": "Andromède - Lycée", + "alternate_names": [ + "Andromèda - Licèu" + ], "line": "ToulouseT1", - "order": 86, - "alternate_names": ["Andromèda – Licèu"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.373584033231635, 43.654831857964759] - } + "id": 60 }, { "type": "Feature", - "id": 87, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3695259, + 43.6602643 + ] + }, "properties": { - "id": "87", - "name": "Beauzelle – Aéroscopia", + "id": 61, + "name": "Beauzelle - Aéroscopia", + "alternate_names": [ + "Bausèla - Aeroscopia" + ], "line": "ToulouseT1", - "order": 87, - "alternate_names": ["Bausèla – Aeroscopia"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.36951162142878, 43.660255572422237] - } + "id": 61 }, { "type": "Feature", - "id": 88, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3626286, + 43.6634677 + ] + }, "properties": { - "id": "88", + "id": 62, "name": "Aéroconstellation", + "alternate_names": [ + "Aeroconstellacion" + ], "line": "ToulouseT1", - "order": 88, - "alternate_names": ["Aeroconstellacion"] + "order": 5 }, - "geometry": { - "type": "Point", - "coordinates": [1.362613353143213, 43.66346034597737] - } + "id": 62 }, { "type": "Feature", - "id": 89, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3599808, + 43.667624 + ] + }, "properties": { - "id": "89", + "id": 63, "name": "MEETT", + "alternate_names": [ + "Pargue de las Exposicions" + ], "line": "ToulouseT1", - "order": 89, - "alternate_names": ["Pargue de las Exposicions", "Parc des Expositions"] + "order": 5 }, + "id": 63 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.359961319115501, 43.667620547925004] - } + "coordinates": [ + 1.4283203, + 43.5543274 + ] + }, + "properties": { + "id": 64, + "name": "Oncopole - Lise Enjalbert", + "alternate_names": [ + "Oncopòl - Lise Enjalbert" + ], + "line": "ToulouseTeleo", + "order": 6 + }, + "id": 64 }, { "type": "Feature", - "id": 90, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4530223, + 43.5583306 + ] + }, "properties": { - "id": "90", - "name": "Pasteur - Mairie de Blagnac", - "line": "ToulouseT1", - "order": 90, - "alternate_names": ["Pasteur – Ostal de Blanhac"] + "id": 65, + "name": "Hôpital Rangueil - Louis Lareng", + "alternate_names": [ + "Espital de Ranguèlh - Louis Lareng" + ], + "line": "ToulouseTeleo", + "order": 6 }, + "id": 65 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.391236324331356, 43.634613022695461] - } + "coordinates": [ + 1.4646455, + 43.5602252 + ] + }, + "properties": { + "id": 66, + "name": "Université Paul Sabatier", + "alternate_names": [ + "Universite Paul Sabatier", + "Universitat Pau Sabatièr" + ], + "line": "ToulouseTeleo", + "order": 6 + }, + "id": 66 }, { "type": "Feature", - "id": 91, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3337924, + 43.6034675 + ] + }, "properties": { - "id": "91", - "name": "Patinoire - Barradels", - "line": "ToulouseT1", - "order": 91, - "alternate_names": ["Patinadoira – Barradels"] + "id": 67, + "name": "Colomiers Gare", + "alternate_names": [ + "Colomèrs Gara" + ], + "line": "ToulouseAC", + "order": 2 }, + "id": 67 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.381987728136397, 43.640751089319622] - } + "coordinates": [ + 1.3529733, + 43.6025245 + ] + }, + "properties": { + "id": 68, + "name": "Les Ramassiers", + "alternate_names": [ + "Los Ramassièrs" + ], + "line": "ToulouseAC", + "order": 2 + }, + "id": 68 }, { "type": "Feature", - "id": 92, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3718606, + 43.5997633 + ] + }, "properties": { - "id": "92", - "name": "Blagnac", - "line": "ToulouseT1", - "order": 92, - "alternate_names": ["Blanhac"] + "id": 69, + "name": "Saint-Martin-du-Touch", + "alternate_names": [ + "Sent Martin del Toish" + ], + "line": "ToulouseAC", + "order": 2 }, + "id": 69 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.396107698632727, 43.62220041446183] - } + "coordinates": [ + 1.3840513, + 43.5966063 + ] + }, + "properties": { + "id": 70, + "name": "Lardenne", + "alternate_names": [ + "Lardena" + ], + "line": "ToulouseAC", + "order": 2 + }, + "id": 70 }, { "type": "Feature", - "id": 93, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4017026, + 43.5954976 + ] + }, "properties": { - "name": "Nadot", - "line": "ToulouseT2", - "order": 93 + "id": 71, + "name": "Le TOEC", + "alternate_names": [ + "Lo TOEC" + ], + "line": "ToulouseAC", + "order": 2 }, + "id": 71 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.386765672868206, 43.624383540499444] - } + "coordinates": [ + 1.4178683, + 43.5938729 + ] + }, + "properties": { + "id": 72, + "name": "Saint-Cyprien – Arènes", + "alternate_names": [ + "Sant Çubran – Arenas" + ], + "line": "ToulouseAC", + "order": 2 + }, + "id": 72 }, { "type": "Feature", - "id": 94, + "geometry": { + "type": "Point", + "coordinates": [ + 1.386765672868206, + 43.624383540499444 + ] + }, "properties": { - "name": "Daurat", - "line": "ToulouseT2", - "order": 94 + "id": 96, + "name": "Nadot", + "alternate_names": [], + "line": "ToulouseAE", + "order": 6 }, + "id": 96 + }, + { + "type": "Feature", "geometry": { "type": "Point", - "coordinates": [1.379378528927953, 43.628848411001833] - } + "coordinates": [ + 1.379378528927953, + 43.628848411001833 + ] + }, + "properties": { + "id": 97, + "name": "Daurat", + "alternate_names": [], + "line": "ToulouseAE", + "order": 6 + }, + "id": 97 }, { "type": "Feature", - "id": 95, + "geometry": { + "type": "Point", + "coordinates": [ + 1.374377098182572, + 43.631344927109126 + ] + }, "properties": { + "id": 98, "name": "Aéroport", - "line": "ToulouseT2", - "order": 95, - "alternate_names": ["Aeropòrt"] + "alternate_names": [ + "Aeropòrt" + ], + "line": "ToulouseAE", + "order": 6 }, - "geometry": { - "type": "Point", - "coordinates": [1.374377098182572, 43.631344927109126] - } + "id": 98 }, { "type": "Feature", - "id": 96, + "geometry": { + "type": "Point", + "coordinates": [ + 1.396165742916808, + 43.621851232770297 + ] + }, "properties": { + "id": 99, "name": "Blagnac", - "line": "ToulouseT2", - "order": 96, - "alternate_names": ["Blanhac"] + "alternate_names": [ + "Blanhac" + ], + "line": "ToulouseAE", + "order": 6 }, - "geometry": { - "type": "Point", - "coordinates": [1.396165742916808, 43.621851232770297] - } + "id": 99 } ], "properties": { - "totalStations": 96, + "totalStations": 92, "stationsPerLine": { "ToulouseA": 18, "ToulouseB": 22, "ToulouseC": 21, - "ToulouseT1": 28, - "ToulouseT2": 4, - "ToulouseTeleo": 3 - } + "ToulouseT1": 26, + "ToulouseAE": 4, + "ToulouseTeleo": 3, + "ToulouseAC": 6 + }, + "nextStationId": 101 } -} +} \ No newline at end of file diff --git a/src/app/(game)/toulouse/data/lines.json b/src/app/(game)/toulouse/data/lines.json new file mode 100644 index 0000000..2013263 --- /dev/null +++ b/src/app/(game)/toulouse/data/lines.json @@ -0,0 +1,51 @@ +{ + "ToulouseA": { + "name": "A", + "color": "#DB001B", + "backgroundColor": "#6E000D", + "textColor": "#FFFFFF", + "order": 1 + }, + "ToulouseAC": { + "name": "Arènes - Colomiers", + "color": "#6265ac", + "backgroundColor": "#2F3058", + "textColor": "#FFFFFF", + "order": 2 + }, + "ToulouseB": { + "name": "B", + "color": "#FFD900", + "backgroundColor": "#806D00", + "textColor": "#FFFFFF", + "order": 3 + }, + "ToulouseC": { + "name": "C", + "color": "#52B149", + "backgroundColor": "#295925", + "textColor": "#FFFFFF", + "order": 4 + }, + "ToulouseT1": { + "name": "T1", + "color": "#004687", + "backgroundColor": "#002344", + "textColor": "#FFFFFF", + "order": 5 + }, + "ToulouseAE": { + "name": "Aéroport Express", + "color": "#409AD9", + "backgroundColor": "#409AD9", + "textColor": "#ffffff", + "order": 6 + }, + "ToulouseTeleo": { + "name": "Teleo", + "color": "#DC006B", + "backgroundColor": "#6E0036", + "textColor": "#FFFFFF", + "order": 7 + } +} \ No newline at end of file diff --git a/src/app/(game)/toulouse/data/preprocess.ts b/src/app/(game)/toulouse/data/preprocess.ts new file mode 100644 index 0000000..7112784 --- /dev/null +++ b/src/app/(game)/toulouse/data/preprocess.ts @@ -0,0 +1,561 @@ +import Color from 'color' +import { promises as fs } from 'fs' +import * as path from 'path' + +export type SourceJson = { + lines: { + lineId: string + relations: { + relationId: number + stationsNodeIds: number[] + routesWayIds: number[] + }[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + }[] + ways: { wayId: number; nodeIds: number[] }[] + nodes: { nodeId: number; name?: string; lat: number; lon: number }[] +} + +// ---------------------------------------- +// line configuration +// ---------------------------------------- +export const linesMetadata: { + [id: string]: { + name: string + osm: { + relationIds: number[] + extraStationNodeIds: number[] + extraRouteWayIds: number[] + } + color: string + } +} = { + ToulouseA: { + name: 'A', + osm: { + relationIds: [179515], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#DB001B', + }, + ToulouseB: { + name: 'B', + osm: { + relationIds: [179514, 17083110], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#FFD900', + }, + ToulouseC: { + name: 'C', + osm: { + relationIds: [20318652], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#52B149', + }, + ToulouseT1: { + name: 'T1', + osm: { + relationIds: [11562192], + extraStationNodeIds: [2379081174, 2379081163], + extraRouteWayIds: [], + }, + color: '#004687', + }, + // ToulouseAE: { + // name: 'Aéroport Express', + // osm: { + // relationIds: [5720058], + // extraStationNodeIds: [], + // extraRouteWayIds: [], + // }, + // color: '#0098D4', + // }, + ToulouseTeleo: { + name: 'Teleo', + osm: { + relationIds: [18180718], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#DC006B', + }, + ToulouseAC: { + name: 'Arènes - Colomiers', + osm: { + relationIds: [1557095], + extraStationNodeIds: [], + extraRouteWayIds: [], + }, + color: '#6265ac', + }, +} + +const Bun = { + file(path: string) { + return { + async json() { + return JSON.parse(await fs.readFile(path, 'utf8')) + }, + } + }, + + async write(path: string, content: string) { + await fs.writeFile(path, content, 'utf8') + }, +} + +type StationsFeatureCollection = { + type: 'FeatureCollection' + features: { + type: 'Feature' + geometry: { + type: 'Point' + coordinates: [number, number] + } + properties: { + id: number + name: string + alternate_names?: string[] + line: string + order: number + } + id: number + }[] + properties: { + totalStations: number + stationsPerLine: { + [lineId: string]: number + } + nextStationId?: number + } +} + +type RoutesFeatureCollection = { + type: 'FeatureCollection' + features: { + type: 'Feature' + geometry: { + type: 'LineString' + coordinates: [number, number][] + } + properties: { + line: string + name: string + color: string + order: number + } + }[] +} + +function getStationMapKeyByLineIdAndName(args: { + lineId: string + name: string +}): string { + return `${args.lineId}::${args.name}` +} + +function getStationMapKeyByLineIdAndNodeId(args: { + lineId: string + nodeId: number +}): string { + return `${args.lineId}::${args.nodeId}` +} + +async function parseOldStationsAndCreateStationIdGetter(): Promise< + (args: { lineId: string; name: string }) => number +> { + const oldStationsIdMap = new Map() + let maxStationId = 0 + try { + const oldFeatureCollection = Bun.file( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './features.json', + ), + ) + const { features, properties } = + (await oldFeatureCollection.json()) as StationsFeatureCollection + maxStationId = (properties.nextStationId ?? 1) - 1 + for (const feature of features) { + const { name, line, id } = feature.properties + oldStationsIdMap.set( + getStationMapKeyByLineIdAndName({ + lineId: line, + name, + }), + id, + ) + maxStationId = Math.max(maxStationId, id) + } + } catch (err) { + console.warn( + 'Could not find or parse old features.json', + (err as Error).message, + ) + } + let nextStationId = maxStationId + 1 + + function getStationId(args: { lineId: string; name: string }): number { + const mapKey = getStationMapKeyByLineIdAndName(args) + return oldStationsIdMap.get(mapKey) ?? nextStationId++ + } + return getStationId +} + +function toMap( + array: T[], + keyPropertyName: K, +): Map { + const map = new Map() + for (const item of array) { + map.set(item[keyPropertyName], item) + } + return map +} + +function isDefined(arg: T): arg is Exclude { + return arg !== null && typeof arg !== 'undefined' +} + +const main = async () => { + const data = Bun.file( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './source.json', + ), + ) + const { lines, nodes, ways } = (await data.json()) as SourceJson + + const getStationId = await parseOldStationsAndCreateStationIdGetter() + const waysMap = toMap(ways, 'wayId') + const nodesMap = toMap(nodes, 'nodeId') + + // lines + const augmentedLinesMetadataMap = new Map< + string, + (typeof linesMetadata)[string] & { + id: string + order: number + latLonOffset: number + } + >() + const sortedLineIds = Object.entries(linesMetadata) + .sort(([, lineMetadata1], [, lineMetadata2]) => + lineMetadata1.name.localeCompare(lineMetadata2.name), + ) + .map(([lineId, lineMetadata], ix, arr): string => { + const numLines = arr.length + augmentedLinesMetadataMap.set(lineId, { + ...lineMetadata, + id: lineId, + order: ix + 1, + latLonOffset: (ix / (numLines - 1) - 0.5) * 0.000_015, + }) + return lineId + }) + + console.debug(`Writing ${sortedLineIds.length} lines to lines.json ...`) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './lines.json', + ), + JSON.stringify( + sortedLineIds.reduce( + (acc, lineId) => { + const lineMetadata = augmentedLinesMetadataMap.get(lineId)! + acc[lineId] = { + name: lineMetadata.name, + color: lineMetadata.color, + backgroundColor: Color(lineMetadata.color).darken(0.5).hex(), + textColor: '#FFFFFF', + order: lineMetadata.order, + } + return acc + }, + {} as { + [lineId: string]: { + name: string + color: string + backgroundColor: string + textColor: string + order: number + } + }, + ), + null, + 2, + ), + ) + + // stations + type StationDetails = { + name: string + coords: { + lat: number + lon: number + lineIds: Map + nodeIds: { lineId: string; nodeId: number }[] + }[] + stationIdByLineId: Map + alternateNames: string[] + } + /** + * Get station details but ensure we have each station only once (per line), i.e. usually a station has at least two + * nodes (one for each direction of the line) but we only want to have one. + * As we want to access it by lineId/nodeId later, we eventually build another map for that purpose. + */ + function getUniqueStationsByLineIdAndNodeId(): Map { + const mapUniqueStationsByName = new Map() + for (const line of lines) { + for (const stationNodeId of line.relations + .map((relation) => relation.stationsNodeIds) + .flat() + .concat(...line.extraStationNodeIds)) { + const stationNode = nodesMap.get(stationNodeId)! + if (!stationNode.name) + throw new Error( + `Unknown name for station with node id ${stationNodeId}`, + ) + const existingStation = mapUniqueStationsByName.get(stationNode.name) + if (existingStation === undefined) { + mapUniqueStationsByName.set(stationNode.name, { + name: stationNode.name, + coords: [ + { + lat: stationNode.lat, + lon: stationNode.lon, + lineIds: new Map([[line.lineId, true]]), + nodeIds: [{ lineId: line.lineId, nodeId: stationNodeId }], + }, + ], + stationIdByLineId: new Map([ + [ + line.lineId, + getStationId({ lineId: line.lineId, name: stationNode.name }), + ], + ]), + alternateNames: [], + }) + } else { + if (existingStation.stationIdByLineId.has(line.lineId) === false) { + existingStation.stationIdByLineId.set( + line.lineId, + getStationId({ lineId: line.lineId, name: stationNode.name }), + ) + } + const existingCoords = existingStation.coords.find( + (c) => c.lat === stationNode.lat && c.lon === stationNode.lon, + ) + if (existingCoords) { + existingCoords.lineIds.set(line.lineId, true) + existingCoords.nodeIds.push({ + lineId: line.lineId, + nodeId: stationNodeId, + }) + } else { + existingStation.coords.push({ + lat: stationNode.lat, + lon: stationNode.lon, + lineIds: new Map([[line.lineId, true]]), + nodeIds: [{ lineId: line.lineId, nodeId: stationNodeId }], + }) + } + } + } + } + const mapUniqueStationsByLineIdAndNodeId = new Map() + for (const stationDetails of mapUniqueStationsByName.values()) { + // sort nodes by which node covers more lines -> ideally first node covers all lines and only in rare cases we need to use 2nd+ node for some lines (if there's no node matching all lines) + stationDetails.coords.sort( + (c1, c2) => + c2.lineIds.size - c1.lineIds.size || + c1.lat - c2.lat || + c1.lon - c2.lon, + ) + for (const coords of stationDetails.coords) { + for (const { lineId, nodeId } of coords.nodeIds) { + mapUniqueStationsByLineIdAndNodeId.set( + getStationMapKeyByLineIdAndNodeId({ lineId, nodeId }), + stationDetails, + ) + } + } + } + + // print unique station names a-z (for easier review where alternate names are missing / might be helpful) + const stationSortedAtoZ = [...mapUniqueStationsByName.values()].sort( + (s1, s2) => s1.name.localeCompare(s2.name), + ) + console.debug(`Stations (a-z, ${stationSortedAtoZ.length}):`) + for (const station of stationSortedAtoZ) { + console.debug( + ` ${station.name}${ + station.alternateNames.length > 0 + ? ` (${station.alternateNames.join('; ')})` + : '' + }`, + ) + } + + return mapUniqueStationsByLineIdAndNodeId + } + const mapUniqueStationsByLineIdAndNodeId = + getUniqueStationsByLineIdAndNodeId() + const mapStationsUsed = new Map() + const stationFeatures: StationsFeatureCollection['features'] = lines + .map((line) => { + const nodeIds = [ + // we sort relations by length to get most-complete list of stations so that order of station names in output is closest to actual order and stations are not too scattered + ...line.relations + .sort((r1, r2) => + r1.stationsNodeIds.length !== r2.stationsNodeIds.length + ? r2.stationsNodeIds.length - r1.stationsNodeIds.length + : r1.relationId - r2.relationId, + ) + .map((relation) => relation.stationsNodeIds) + .flat(), + ...line.extraStationNodeIds, + ] + return nodeIds + .map((nodeId) => { + const stationDetails = mapUniqueStationsByLineIdAndNodeId.get( + getStationMapKeyByLineIdAndNodeId({ + lineId: line.lineId, + nodeId, + }), + )! + const coords = stationDetails.coords.find((c) => + c.lineIds.has(line.lineId), + )! + // we check if we already have station with that name at those coordinates for that line + const mapKey = `${line.lineId}::${stationDetails.name}::${coords.lat}::${coords.lon}` + if (mapStationsUsed.has(mapKey)) { + // we already have this station in the output => skip + return undefined + } else { + mapStationsUsed.set(mapKey, true) + return { + type: 'Feature' as const, + geometry: { + type: 'Point' as const, + coordinates: [coords.lon, coords.lat] as [number, number], + }, + properties: { + id: stationDetails.stationIdByLineId.get(line.lineId)!, + name: stationDetails.name, + alternateNames: [], + line: line.lineId, + order: augmentedLinesMetadataMap.get(line.lineId)!.order, + }, + id: stationDetails.stationIdByLineId.get(line.lineId)!, + } + } + }) + .filter(isDefined) + }) + .flat() + const mapStationsNamesUsed = new Map() + const mapStationsNamesUsedByLine = new Map() + const stations: StationsFeatureCollection = { + type: 'FeatureCollection', + features: stationFeatures, + properties: { + ...stationFeatures.reduce( + (properties, station) => { + if (mapStationsNamesUsed.has(station.properties.name) === false) { + mapStationsNamesUsed.set(station.properties.name, true) + properties.totalStations += 1 + } + const mapKey = getStationMapKeyByLineIdAndName({ + lineId: station.properties.line, + name: station.properties.name, + }) + if (mapStationsNamesUsedByLine.has(mapKey) === false) { + mapStationsNamesUsedByLine.set(mapKey, true) + properties.stationsPerLine[station.properties.line] += 1 + } + return properties + }, + { + totalStations: 0, + stationsPerLine: Object.fromEntries( + lines.map((line) => [line.lineId, 0]), + ), + }, + ), + // using a non-existant line/station to get next station id + nextStationId: getStationId({ lineId: '', name: '' }), + }, + } + + console.debug( + `Writing ${stations.features.length} stations to features.json ...`, + ) + stationFeatures.forEach((station) => + console.debug(` ${station.properties.line} ${station.properties.name}`), + ) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './features.json', + ), + JSON.stringify(stations, null, 2), + ) + + // routes + const routes: RoutesFeatureCollection = { + type: 'FeatureCollection', + features: lines + .map((line) => { + const wayIds = [ + ...line.relations.map((relation) => relation.routesWayIds).flat(), + ...line.extraRouteWayIds, + ] + const uniqueWayIds = [...new Set(wayIds)].sort((w1, w2) => w1 - w2) + return uniqueWayIds.map((wayId) => { + const nodeIds = waysMap.get(wayId)!.nodeIds + const nodes = nodeIds.map((nodeId) => nodesMap.get(nodeId)!) + const { latLonOffset, name, color, order } = + augmentedLinesMetadataMap.get(line.lineId)! + return { + type: 'Feature' as const, + geometry: { + type: 'LineString' as const, + coordinates: nodes.map( + (node) => + [node.lon + latLonOffset, node.lat + latLonOffset] as [ + number, + number, + ], + ), + }, + properties: { + line: line.lineId, + name, + color, + order, + }, + } + }) + }) + .flat(), + } + + console.debug(`Writing ${routes.features.length} paths to routes.json ...`) + Bun.write( + path.join( + '/home/ellabb/Documents/PROJ/metro-memory.com/src/app/(game)/toulouse2/data', + './routes.json', + ), + JSON.stringify(routes, null, 2), + ) +} + +main() diff --git a/src/app/(game)/toulouse/data/routes.json b/src/app/(game)/toulouse/data/routes.json index 1e46cbb..ab49019 100644 --- a/src/app/(game)/toulouse/data/routes.json +++ b/src/app/(game)/toulouse/data/routes.json @@ -1,4114 +1,11121 @@ { - "type": "FeatureCollection", - "name": "routes", - "features": [ - { - "type": "Feature", - "properties": { - "line": "ToulouseA", - "name": "A", - "color": "#E41B23", - "order": 1 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.482782675037499, - 43.629043342722433 - ], - [ - 1.48294035683599, - 43.628533783528418 - ], - [ - 1.483049616664867, - 43.628094318955249 - ], - [ - 1.48306699891037, - 43.627992765335094 - ], - [ - 1.483039683953151, - 43.627779771786827 - ], - [ - 1.483008644229038, - 43.627624295007124 - ], - [ - 1.482939115247026, - 43.627427477003998 - ], - [ - 1.482767775969925, - 43.627162355844106 - ], - [ - 1.482536840422527, - 43.626916106668467 - ], - [ - 1.482308388053059, - 43.626763323826104 - ], - [ - 1.481930945007851, - 43.626581781355611 - ], - [ - 1.481444242133767, - 43.626382263750692 - ], - [ - 1.480527949477966, - 43.626011087345333 - ], - [ - 1.479923295652254, - 43.625767529669339 - ], - [ - 1.478895259989647, - 43.625346918517799 - ], - [ - 1.478283156630148, - 43.625103358150767 - ], - [ - 1.477954135554555, - 43.624968545715227 - ], - [ - 1.47754441119627, - 43.624773516523419 - ], - [ - 1.477210423764819, - 43.624587474262299 - ], - [ - 1.476737378369344, - 43.624326834377428 - ], - [ - 1.476369868035852, - 43.624121916708951 - ], - [ - 1.475919171241739, - 43.623858578504112 - ], - [ - 1.475359214618749, - 43.623520641097329 - ], - [ - 1.474855129499161, - 43.623207418160909 - ], - [ - 1.474532937162873, - 43.623009237526084 - ], - [ - 1.473971738950919, - 43.622662756887493 - ], - [ - 1.473165947712958, - 43.622170670058402 - ], - [ - 1.472180126075144, - 43.621552297701982 - ], - [ - 1.47139544184958, - 43.621072335704035 - ], - [ - 1.470042109878274, - 43.620234640041176 - ], - [ - 1.469639835053775, - 43.619977576585399 - ], - [ - 1.469192863026555, - 43.619713321397818 - ], - [ - 1.469021523749454, - 43.6196054618038 - ], - [ - 1.468852667650282, - 43.619458053379063 - ], - [ - 1.468557169476731, - 43.619175819167225 - ], - [ - 1.468279053548683, - 43.61895470481457 - ], - [ - 1.467943824528268, - 43.618713815082153 - ], - [ - 1.467573831016846, - 43.618483710555921 - ], - [ - 1.46711692627791, - 43.618206864880712 - ], - [ - 1.466766798189921, - 43.617976758414407 - ], - [ - 1.466518480397021, - 43.617761032802484 - ], - [ - 1.466232914935186, - 43.617491374699178 - ], - [ - 1.465939899939563, - 43.617182165252387 - ], - [ - 1.46559970456329, - 43.616858572268129 - ], - [ - 1.465368769015893, - 43.616664415641694 - ], - [ - 1.465058371774768, - 43.616448685321508 - ], - [ - 1.464546837121393, - 43.616085537534538 - ], - [ - 1.463968256663936, - 43.615697218662731 - ], - [ - 1.463312697690679, - 43.615253165768429 - ], - [ - 1.462771364902157, - 43.614881021748474 - ], - [ - 1.46256526113405, - 43.614789333737789 - ], - [ - 1.462133188174404, - 43.614708432435798 - ], - [ - 1.461882387203575, - 43.614658093792954 - ], - [ - 1.461678766613396, - 43.614550225130699 - ], - [ - 1.460908981455406, - 43.614028857202094 - ], - [ - 1.460186376678066, - 43.613518271815352 - ], - [ - 1.459093778389306, - 43.61276137493838 - ], - [ - 1.458135271708711, - 43.612115937534817 - ], - [ - 1.457693266037349, - 43.611824679390942 - ], - [ - 1.457333205237644, - 43.611707816158912 - ], - [ - 1.456389597624623, - 43.611407566506223 - ], - [ - 1.455739005007225, - 43.61119721106617 - ], - [ - 1.455162907727697, - 43.610841223260778 - ], - [ - 1.45483016188521, - 43.610603896886573 - ], - [ - 1.454497416042724, - 43.610154412550855 - ], - [ - 1.454052927193433, - 43.60961143099339 - ], - [ - 1.453596022454497, - 43.609154747345272 - ], - [ - 1.453284383624407, - 43.608895838540043 - ], - [ - 1.452872176088192, - 43.608573099961902 - ], - [ - 1.452194268513575, - 43.608032801140162 - ], - [ - 1.451506428227241, - 43.607480810310328 - ], - [ - 1.450904257579458, - 43.607088839805051 - ], - [ - 1.450047561193953, - 43.606523354919631 - ], - [ - 1.449308815760075, - 43.606021696151728 - ], - [ - 1.448653256786818, - 43.605575773734735 - ], - [ - 1.447518444473265, - 43.605004880331521 - ], - [ - 1.446518965356842, - 43.604746852716417 - ], - [ - 1.445895687696662, - 43.604617388966446 - ], - [ - 1.445242611901335, - 43.60434767192578 - ], - [ - 1.4448030894079, - 43.604133695546636 - ], - [ - 1.444554771615001, - 43.603874765128907 - ], - [ - 1.444385915515828, - 43.603500752557999 - ], - [ - 1.4443064538221, - 43.602943325661059 - ], - [ - 1.444217059416657, - 43.602001082646197 - ], - [ - 1.444162429502219, - 43.601454431079411 - ], - [ - 1.44393397713275, - 43.600771109636121 - ], - [ - 1.443889279930028, - 43.600433042473533 - ], - [ - 1.443899212641745, - 43.600066201488559 - ], - [ - 1.443929010776893, - 43.599569883654638 - ], - [ - 1.443780020101152, - 43.599120316865516 - ], - [ - 1.443422442479376, - 43.59878943356275 - ], - [ - 1.442334810546474, - 43.598311088180125 - ], - [ - 1.441356438442447, - 43.598055729313685 - ], - [ - 1.440412830829426, - 43.597973007194987 - ], - [ - 1.438068710864449, - 43.598005376733241 - ], - [ - 1.436732761138646, - 43.598044939478569 - ], - [ - 1.434711454304438, - 43.598073712367921 - ], - [ - 1.433241412970469, - 43.598098888634823 - ], - [ - 1.432285389467804, - 43.598074161944211 - ], - [ - 1.431876906698483, - 43.598014817845282 - ], - [ - 1.431601894742846, - 43.597966713116087 - ], - [ - 1.430598070065047, - 43.597788680325785 - ], - [ - 1.428497301537112, - 43.597411033269296 - ], - [ - 1.425259237517693, - 43.596815784763336 - ], - [ - 1.422969747467154, - 43.596382382599856 - ], - [ - 1.420774618177917, - 43.59595617078898 - ], - [ - 1.420002349841997, - 43.595736769439334 - ], - [ - 1.419426252562469, - 43.595427448144825 - ], - [ - 1.419011561848326, - 43.594961664823742 - ], - [ - 1.418830289859509, - 43.594472498535744 - ], - [ - 1.41860432066797, - 43.593654215157578 - ], - [ - 1.418537274863886, - 43.593325100243817 - ], - [ - 1.418365935586785, - 43.592281991903647 - ], - [ - 1.418266608469626, - 43.591596767792787 - ], - [ - 1.418298889782703, - 43.59115073845787 - ], - [ - 1.418482644949449, - 43.590310827471271 - ], - [ - 1.41877565994507, - 43.588893563513942 - ], - [ - 1.418805458080219, - 43.588553631029122 - ], - [ - 1.418725996386491, - 43.588080600091203 - ], - [ - 1.418502510372881, - 43.587627350229745 - ], - [ - 1.418095269192525, - 43.587116540739707 - ], - [ - 1.416702206374354, - 43.585391627365624 - ], - [ - 1.415502831434647, - 43.583956260311496 - ], - [ - 1.41492425097719, - 43.583227771458418 - ], - [ - 1.413493940490084, - 43.581394818536431 - ], - [ - 1.412252351525584, - 43.579982741184743 - ], - [ - 1.411437869164871, - 43.579354940746249 - ], - [ - 1.410285674605814, - 43.578791893524219 - ], - [ - 1.409287437078355, - 43.578477088469434 - ], - [ - 1.408028465868352, - 43.57824143332266 - ], - [ - 1.406816675038999, - 43.578133499359701 - ], - [ - 1.405637165522723, - 43.578129901557595 - ], - [ - 1.404976640193609, - 43.578090325720339 - ], - [ - 1.404288799907275, - 43.5779266253899 - ], - [ - 1.403690354026386, - 43.577667582199403 - ], - [ - 1.403144054882006, - 43.577379755125158 - ], - [ - 1.402518294043897, - 43.576895842755519 - ], - [ - 1.402309707097861, - 43.576609810938827 - ], - [ - 1.402071322016677, - 43.576116897576057 - ], - [ - 1.402016692102239, - 43.575418896568934 - ], - [ - 1.402021658458097, - 43.574690304413181 - ], - [ - 1.40201420892431, - 43.573927521945571 - ], - [ - 1.401860251892712, - 43.573479562644302 - ], - [ - 1.401649181768747, - 43.573056786753384 - ], - [ - 1.401547371473658, - 43.572585433112103 - ], - [ - 1.401532472406083, - 43.572225618689274 - ], - [ - 1.401646698590817, - 43.571810030355522 - ], - [ - 1.401736092996262, - 43.571468202303855 - ], - [ - 1.401798172444487, - 43.57086729986797 - ], - [ - 1.401832936935493, - 43.569805810855868 - ], - [ - 1.401830453757564, - 43.56855358959691 - ], - [ - 1.401785756554842, - 43.568337686748599 - ], - [ - 1.401522539694368, - 43.568017429431571 - ], - [ - 1.400636045173714, - 43.567162801851843 - ], - [ - 1.39992585628602, - 43.566601439875058 - ], - [ - 1.399374590785781, - 43.566263180773419 - ], - [ - 1.399091508501875, - 43.566139032009588 - ], - [ - 1.398674334609803, - 43.566076057901135 - ], - [ - 1.39818266537986, - 43.566076057901135 - ], - [ - 1.396439474473701, - 43.566076057901135 - ], - [ - 1.395443720124172, - 43.566086853467269 - ], - [ - 1.394753396659909, - 43.566257783006392 - ], - [ - 1.394040724594286, - 43.566668011921379 - ], - [ - 1.393519257229195, - 43.567279751605199 - ], - [ - 1.392789202918068, - 43.568461830980944 - ], - [ - 1.392391894449429, - 43.569122130061892 - ], - [ - 1.39228760097641, - 43.569460373108868 - ], - [ - 1.392275185086766, - 43.56998572556445 - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "line": "ToulouseB", - "name": "B", - "color": "#FEDD04", - "order": 2 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.452525772767096, - 43.640400583377868 - ], - [ - 1.452440103128546, - 43.640199314600046 - ], - [ - 1.452301045164522, - 43.63992256892962 - ], - [ - 1.452191785335646, - 43.639714110310173 - ], - [ - 1.451978232033752, - 43.639449941882745 - ], - [ - 1.45166038525884, - 43.639104903820147 - ], - [ - 1.451243211366768, - 43.63880658806476 - ], - [ - 1.450803688873334, - 43.638634067433877 - ], - [ - 1.450222625237948, - 43.638475923087078 - ], - [ - 1.448961170850015, - 43.638170415783868 - ], - [ - 1.448203801581669, - 43.637990704879897 - ], - [ - 1.447647569725573, - 43.637918820367815 - ], - [ - 1.447143484605986, - 43.637909834797767 - ], - [ - 1.445963975089711, - 43.637988907768133 - ], - [ - 1.445320832006099, - 43.637992501991597 - ], - [ - 1.444732318836926, - 43.637990704879897 - ], - [ - 1.443654619615739, - 43.637996096214835 - ], - [ - 1.442688663401357, - 43.638010473105638 - ], - [ - 1.441933777310941, - 43.637979922208551 - ], - [ - 1.441449557614785, - 43.637915226139938 - ], - [ - 1.440985203342062, - 43.637748094306929 - ], - [ - 1.440610243474783, - 43.637519859762584 - ], - [ - 1.439837975138863, - 43.636944776751612 - ], - [ - 1.439038391845725, - 43.636335542183041 - ], - [ - 1.438074918809273, - 43.635634645215681 - ], - [ - 1.437004669121872, - 43.634836691024404 - ], - [ - 1.435874823164177, - 43.633990201009809 - ], - [ - 1.434834371611925, - 43.63319941400303 - ], - [ - 1.434521491192871, - 43.632965770395977 - ], - [ - 1.434116733190444, - 43.632636870548282 - ], - [ - 1.433761638746597, - 43.632013213982034 - ], - [ - 1.433684660230798, - 43.631687903521801 - ], - [ - 1.433697076120442, - 43.631096588839 - ], - [ - 1.433769088280383, - 43.62990495525294 - ], - [ - 1.433855999507899, - 43.628607251985621 - ], - [ - 1.433990091116065, - 43.627011146387744 - ], - [ - 1.434059620098077, - 43.626331710198365 - ], - [ - 1.434218543485533, - 43.624780481862629 - ], - [ - 1.434414714541924, - 43.623468287592452 - ], - [ - 1.434625784665889, - 43.62288408229886 - ], - [ - 1.43502309313453, - 43.622080566052063 - ], - [ - 1.435571875456839, - 43.621041551493846 - ], - [ - 1.435812743715952, - 43.620496870598359 - ], - [ - 1.436033746551633, - 43.619871290412362 - ], - [ - 1.4363391774369, - 43.618999422112083 - ], - [ - 1.43671165412625, - 43.617859682423173 - ], - [ - 1.436788632642049, - 43.617537890808357 - ], - [ - 1.436808498065481, - 43.617225086135484 - ], - [ - 1.436674406457315, - 43.616888909184411 - ], - [ - 1.436386357817552, - 43.616522168548748 - ], - [ - 1.436083410110213, - 43.616245313842214 - ], - [ - 1.435611606303703, - 43.615914524729298 - ], - [ - 1.435122420251689, - 43.615718567276993 - ], - [ - 1.43454880615009, - 43.615474069009842 - ], - [ - 1.433711975188017, - 43.615100128560798 - ], - [ - 1.433029101257541, - 43.614749557277925 - ], - [ - 1.432204686185113, - 43.614452918442296 - ], - [ - 1.431606240304224, - 43.614213808497567 - ], - [ - 1.430747060740789, - 43.613825477538917 - ], - [ - 1.430382033585226, - 43.613663672232732 - ], - [ - 1.429853116686348, - 43.613275337721632 - ], - [ - 1.429666878341673, - 43.613011053078679 - ], - [ - 1.429617214783093, - 43.612468097311101 - ], - [ - 1.42977365499262, - 43.611846029379961 - ], - [ - 1.430262841044634, - 43.611094505204761 - ], - [ - 1.430756993452505, - 43.610618055588603 - ], - [ - 1.431333090732033, - 43.610326790190705 - ], - [ - 1.432142606736888, - 43.610186550792363 - ], - [ - 1.433235205025648, - 43.610129016585638 - ], - [ - 1.434178812638669, - 43.61020093433546 - ], - [ - 1.435129869785476, - 43.610508381746314 - ], - [ - 1.436619776542878, - 43.610956065516632 - ], - [ - 1.437888680464598, - 43.611414533393905 - ], - [ - 1.438591419818505, - 43.611576344751477 - ], - [ - 1.439254428325549, - 43.611576344751477 - ], - [ - 1.440128506956557, - 43.611407341767901 - ], - [ - 1.441576199689165, - 43.611105292699548 - ], - [ - 1.442720944714435, - 43.610842796443862 - ], - [ - 1.44340381864491, - 43.610591086629526 - ], - [ - 1.443992331814084, - 43.610186550792363 - ], - [ - 1.444444270197162, - 43.609789204054621 - ], - [ - 1.445000502053259, - 43.609255209055519 - ], - [ - 1.445708207763024, - 43.608575572199939 - ], - [ - 1.446820671475217, - 43.607493171723938 - ], - [ - 1.448067226795576, - 43.606306464433466 - ], - [ - 1.448949996549336, - 43.605533294057835 - ], - [ - 1.449945750898865, - 43.604688189489238 - ], - [ - 1.451030899653839, - 43.603625498595783 - ], - [ - 1.45152505206171, - 43.603161576887949 - ], - [ - 1.451919877352421, - 43.602544807217313 - ], - [ - 1.452016721291653, - 43.601780579466308 - ], - [ - 1.452116048408813, - 43.601099059942094 - ], - [ - 1.452168195145322, - 43.600529023170893 - ], - [ - 1.452209167581151, - 43.599944595006626 - ], - [ - 1.451926085297245, - 43.59939612648887 - ], - [ - 1.451521327294817, - 43.59914976359299 - ], - [ - 1.450865768321561, - 43.599049060221006 - ], - [ - 1.448059777261789, - 43.599090420554894 - ], - [ - 1.447699716462084, - 43.599090420554894 - ], - [ - 1.447210530410071, - 43.599005901581428 - ], - [ - 1.446815705119359, - 43.598838661560627 - ], - [ - 1.446393564871429, - 43.598194873055732 - ], - [ - 1.44576780403332, - 43.597725514524868 - ], - [ - 1.445117211415922, - 43.597324488818344 - ], - [ - 1.444739768370714, - 43.597112285793685 - ], - [ - 1.444464135620595, - 43.596860518522611 - ], - [ - 1.444275414097991, - 43.596004501921399 - ], - [ - 1.444041995372664, - 43.595054956656043 - ], - [ - 1.443893004696924, - 43.594211503315087 - ], - [ - 1.443912870120356, - 43.593853616555549 - ], - [ - 1.444230716895268, - 43.593177402597007 - ], - [ - 1.444632991719766, - 43.592429242129541 - ], - [ - 1.444858960911306, - 43.591760206141913 - ], - [ - 1.445325798361958, - 43.590709876577648 - ], - [ - 1.445936660132492, - 43.589317801957677 - ], - [ - 1.446343901312849, - 43.588280019956017 - ], - [ - 1.44706153973433, - 43.586443623558189 - ], - [ - 1.447494854282941, - 43.585126995380222 - ], - [ - 1.447435258012645, - 43.584270811878326 - ], - [ - 1.447102512170159, - 43.583479370919953 - ], - [ - 1.446715136413234, - 43.583134011604628 - ], - [ - 1.446555902628537, - 43.583021926791631 - ], - [ - 1.446394496063152, - 43.58293108959851 - ], - [ - 1.445660794584442, - 43.582547559517756 - ], - [ - 1.444403064963403, - 43.581891904604845 - ], - [ - 1.443699084020531, - 43.581516855991573 - ], - [ - 1.443183824600263, - 43.581197568160725 - ], - [ - 1.442826246978487, - 43.580874680998498 - ], - [ - 1.442219109974846, - 43.580023833553234 - ], - [ - 1.442011764617774, - 43.579673957277777 - ], - [ - 1.441645495873247, - 43.57913070062547 - ], - [ - 1.441305300496973, - 43.578609925160215 - ], - [ - 1.441094230373009, - 43.578192581985256 - ], - [ - 1.440783833131883, - 43.577590847186173 - ], - [ - 1.440726720039516, - 43.577213972851865 - ], - [ - 1.440768934064309, - 43.576874873881145 - ], - [ - 1.441027184568925, - 43.576615826165941 - ], - [ - 1.441407110792062, - 43.576493497690819 - ], - [ - 1.441883880954431, - 43.576461116582287 - ], - [ - 1.442425213742953, - 43.57651148718805 - ], - [ - 1.443173891888547, - 43.576682387143592 - ], - [ - 1.44396105929204, - 43.576927942546369 - ], - [ - 1.444881076714736, - 43.577254448728766 - ], - [ - 1.445248587048228, - 43.577386669736995 - ], - [ - 1.446344910103882, - 43.577999200007518 - ], - [ - 1.446836579333824, - 43.578271733499342 - ], - [ - 1.447345630809269, - 43.578699869431098 - ], - [ - 1.447997465015633, - 43.579394234679889 - ], - [ - 1.448400981429095, - 43.579692845252026 - ], - [ - 1.449432741858595, - 43.580148853117464 - ], - [ - 1.450206251783479, - 43.580496028387721 - ], - [ - 1.450890367302919, - 43.580809024065623 - ], - [ - 1.451460256637625, - 43.581022183983826 - ], - [ - 1.452478359588515, - 43.581037473906761 - ], - [ - 1.453084255003192, - 43.580967320110751 - ], - [ - 1.453670284994437, - 43.580952929578395 - ], - [ - 1.454662314577073, - 43.580856692804829 - ], - [ - 1.455512803017756, - 43.580726278240036 - ], - [ - 1.457337938795572, - 43.580469045925511 - ], - [ - 1.45776504539936, - 43.580379104297478 - ], - [ - 1.458097791241846, - 43.580277470096114 - ], - [ - 1.458606842717292, - 43.579996850879404 - ], - [ - 1.459084854468625, - 43.579704537804524 - ], - [ - 1.459457331157975, - 43.579477881766593 - ], - [ - 1.459752829331526, - 43.579202655430556 - ], - [ - 1.46006570975058, - 43.578703467199141 - ], - [ - 1.460249464917326, - 43.577892165064426 - ], - [ - 1.460489091587475, - 43.576851487674837 - ], - [ - 1.46066415563147, - 43.575919629909279 - ], - [ - 1.460746100503127, - 43.575515760433149 - ], - [ - 1.460900057534725, - 43.575277395217348 - ], - [ - 1.461114852425584, - 43.575125380681314 - ], - [ - 1.461906986184935, - 43.574702616344588 - ], - [ - 1.46235519980112, - 43.57442556916947 - ], - [ - 1.462737609202186, - 43.574028885767916 - ], - [ - 1.463087737290176, - 43.573224716840897 - ], - [ - 1.463295082647247, - 43.572581553874308 - ], - [ - 1.463580648109082, - 43.571705401942445 - ], - [ - 1.463902219650888, - 43.570726687382582 - ], - [ - 1.464211375303048, - 43.569778542485942 - ], - [ - 1.464290836996776, - 43.569488878544824 - ], - [ - 1.464427411782872, - 43.568596488950924 - ], - [ - 1.464534188433818, - 43.567894802364094 - ], - [ - 1.464551570679322, - 43.567257879769556 - ], - [ - 1.464362849156717, - 43.566547181353862 - ], - [ - 1.464022653780444, - 43.565908445243501 - ], - [ - 1.46326280133417, - 43.564501402651864 - ], - [ - 1.462942471381328, - 43.563941815198021 - ], - [ - 1.462661872275351, - 43.562925188035301 - ], - [ - 1.462651939563635, - 43.562482545007036 - ], - [ - 1.462833211552452, - 43.561723206708876 - ], - [ - 1.463295082647247, - 43.560841498572529 - ], - [ - 1.46361044624423, - 43.560190105906557 - ], - [ - 1.464067350983166, - 43.559567497494115 - ], - [ - 1.46468069593163, - 43.559024059459382 - ], - [ - 1.466255030738617, - 43.557852591925617 - ], - [ - 1.466667238274831, - 43.55755747208898 - ], - [ - 1.467906344061403, - 43.557017614988865 - ], - [ - 1.470307577118747, - 43.55650654581072 - ], - [ - 1.474419719769175, - 43.555682347652301 - ], - [ - 1.475224269418171, - 43.555631959626311 - ], - [ - 1.47642116117995, - 43.555779524440609 - ], - [ - 1.478422602590725, - 43.556033263093454 - ], - [ - 1.479281782154159, - 43.556162831355152 - ], - [ - 1.479681573800729, - 43.556152034010658 - ], - [ - 1.480173243030671, - 43.556085450343474 - ], - [ - 1.48064753001511, - 43.55589109759687 - ], - [ - 1.481116850643691, - 43.555583371132748 - ], - [ - 1.481568789026769, - 43.555101083220571 - ], - [ - 1.481874219912037, - 43.554793352722136 - ], - [ - 1.482311259227541, - 43.554503616722975 - ], - [ - 1.482927087353934, - 43.554253470857866 - ], - [ - 1.483816065052516, - 43.553992526222956 - ], - [ - 1.484506388516778, - 43.553709984895946 - ], - [ - 1.48517436337968, - 43.553326662379206 - ], - [ - 1.486334007472524, - 43.552536614383577 - ], - [ - 1.487339694533769, - 43.551867135082432 - ], - [ - 1.48771217122312, - 43.55167636811364 - ], - [ - 1.488678127437501, - 43.551311029685984 - ], - [ - 1.490038908942594, - 43.550772916343099 - ], - [ - 1.491146406298929, - 43.550326584574051 - ], - [ - 1.491856595186623, - 43.55007642137096 - ], - [ - 1.492330882171063, - 43.549968436933675 - ], - [ - 1.49281013551136, - 43.549936041564777 - ], - [ - 1.493351468299882, - 43.549972036418048 - ], - [ - 1.493917632867695, - 43.550110616402435 - ], - [ - 1.494667552602253, - 43.550393174604224 - ], - [ - 1.496413226686341, - 43.551102263875876 - ], - [ - 1.4981564175925, - 43.551798746993242 - ], - [ - 1.49882935881126, - 43.551966117705653 - ], - [ - 1.499758067356706, - 43.552036305285448 - ], - [ - 1.500833283399964, - 43.552075898243103 - ], - [ - 1.50313270616222, - 43.552164082464408 - ], - [ - 1.503711286619677, - 43.552110092140154 - ], - [ - 1.504185573604116, - 43.551955319609213 - ], - [ - 1.504605230674118, - 43.551703363476086 - ], - [ - 1.505062135413054, - 43.551257038597527 - ], - [ - 1.505412263501044, - 43.550918693341906 - ], - [ - 1.505625816802937, - 43.550630738436709 - ], - [ - 1.505824471037258, - 43.550308587255977 - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "line": "ToulouseC", - "name": "C", - "color": "#52B149", - "order": 3 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.333412461070814, - 43.603896960813863 - ], - [ - 1.335158135154903, - 43.6043734636701 - ], - [ - 1.336424555898693, - 43.604706114370288 - ], - [ - 1.337618964482543, - 43.605022580356028 - ], - [ - 1.340904208882613, - 43.605892853232476 - ], - [ - 1.34255303902747, - 43.606363946107408 - ], - [ - 1.344994002931678, - 43.607140701874904 - ], - [ - 1.346086601220439, - 43.60734747544663 - ], - [ - 1.35041229717276, - 43.608165572608655 - ], - [ - 1.353906128518865, - 43.608825436278536 - ], - [ - 1.356068976495026, - 43.609249758955876 - ], - [ - 1.356714602756566, - 43.609341455412292 - ], - [ - 1.357819616934972, - 43.609375616801486 - ], - [ - 1.359411333987462, - 43.609368424931702 - ], - [ - 1.36488922449884, - 43.609262344752288 - ], - [ - 1.367667900601392, - 43.609116708946999 - ], - [ - 1.368859826007313, - 43.609109517046249 - ], - [ - 1.369768669129327, - 43.609321677757045 - ], - [ - 1.370501206618383, - 43.609670482722791 - ], - [ - 1.371092202965486, - 43.610062436404661 - ], - [ - 1.371581389017499, - 43.610470568945935 - ], - [ - 1.372082990959158, - 43.610840942335251 - ], - [ - 1.37252499663052, - 43.611259857060766 - ], - [ - 1.373404041617387, - 43.612189369872773 - ], - [ - 1.373838597754962, - 43.612480626250495 - ], - [ - 1.374725092275616, - 43.612744913224418 - ], - [ - 1.375556956881831, - 43.612850987261467 - ], - [ - 1.377486386132665, - 43.612922901756463 - ], - [ - 1.381099410019363, - 43.613048751915755 - ], - [ - 1.382904680373747, - 43.613118868318821 - ], - [ - 1.383925266502566, - 43.613253707325754 - ], - [ - 1.384871357293516, - 43.613526980119197 - ], - [ - 1.385752885458312, - 43.613893739021904 - ], - [ - 1.386994474422812, - 43.614632643547914 - ], - [ - 1.387714596022223, - 43.615376932358956 - ], - [ - 1.388074656821928, - 43.616671325740761 - ], - [ - 1.388514179315361, - 43.618301862190947 - ], - [ - 1.388745114862759, - 43.619112619644874 - ], - [ - 1.389067927993529, - 43.619648324780236 - ], - [ - 1.389410606547731, - 43.620115714623651 - ], - [ - 1.390083547766491, - 43.620777244806774 - ], - [ - 1.390902996483061, - 43.621190697474987 - ], - [ - 1.391657882573478, - 43.621496291098005 - ], - [ - 1.392551826627918, - 43.621634706522002 - ], - [ - 1.393324094963837, - 43.621674253727484 - ], - [ - 1.394195690416917, - 43.621600552096353 - ], - [ - 1.395181512054731, - 43.621578980870147 - ], - [ - 1.396681351523848, - 43.62153943360201 - ], - [ - 1.397267381515092, - 43.621525052770771 - ], - [ - 1.399065202335689, - 43.621233840198286 - ], - [ - 1.401679988694928, - 43.620807804449122 - ], - [ - 1.402484538343925, - 43.620680172898624 - ], - [ - 1.40356720392097, - 43.620577707936654 - ], - [ - 1.404515777889848, - 43.620586696098194 - ], - [ - 1.406107494942338, - 43.620753875658025 - ], - [ - 1.407088350224293, - 43.620838364075937 - ], - [ - 1.40821571300406, - 43.620766459046926 - ], - [ - 1.410597080637973, - 43.620550743443943 - ], - [ - 1.412437115483363, - 43.620392551509852 - ], - [ - 1.413249114666147, - 43.620300871902991 - ], - [ - 1.416973881559649, - 43.619926961470419 - ], - [ - 1.420413082991317, - 43.619585406639239 - ], - [ - 1.421083541032147, - 43.619524286096357 - ], - [ - 1.422171172965049, - 43.619585406639239 - ], - [ - 1.422846597361738, - 43.619768767895089 - ], - [ - 1.423906914337421, - 43.62016245340817 - ], - [ - 1.425004478982041, - 43.620604672417251 - ], - [ - 1.425573126727782, - 43.620964197669785 - ], - [ - 1.426839547471572, - 43.622368123191166 - ], - [ - 1.427115180221692, - 43.623390936890722 - ], - [ - 1.427450409242106, - 43.624852325918795 - ], - [ - 1.427244305474, - 43.626198641811236 - ], - [ - 1.427577051316486, - 43.627476625395666 - ], - [ - 1.42796442707341, - 43.628975660119757 - ], - [ - 1.428009124276132, - 43.631024639913441 - ], - [ - 1.428001674742345, - 43.632500221567959 - ], - [ - 1.428024023343706, - 43.633078941631595 - ], - [ - 1.428215228044239, - 43.633549821546538 - ], - [ - 1.428634885114241, - 43.634063831287527 - ], - [ - 1.429603324506551, - 43.634725207982811 - ], - [ - 1.431118063043242, - 43.63553035239611 - ], - [ - 1.432141132349991, - 43.636107246111891 - ], - [ - 1.432891052084549, - 43.636563725064754 - ], - [ - 1.433732849402481, - 43.636849471935847 - ], - [ - 1.434738536463726, - 43.636903386287443 - ], - [ - 1.435647379585741, - 43.636693120042651 - ], - [ - 1.436379917074796, - 43.636240236401008 - ], - [ - 1.437157151766574, - 43.635550121431294 - ], - [ - 1.437666203242019, - 43.63510621516582 - ], - [ - 1.437984050016932, - 43.634748571700335 - ], - [ - 1.438438471577939, - 43.633973969761804 - ], - [ - 1.439225638981432, - 43.632712299753727 - ], - [ - 1.439622947450072, - 43.63215873817073 - ], - [ - 1.440017772740783, - 43.631723793349977 - ], - [ - 1.440688230781614, - 43.63121335822342 - ], - [ - 1.44152009538783, - 43.630537564203621 - ], - [ - 1.442088743133571, - 43.62998218523839 - ], - [ - 1.442617660032448, - 43.629290201029974 - ], - [ - 1.442945439519076, - 43.628819287740384 - ], - [ - 1.443409793791799, - 43.627893626818064 - ], - [ - 1.443886563954168, - 43.626594082672796 - ], - [ - 1.444368300472394, - 43.625422132186365 - ], - [ - 1.444663798645945, - 43.624537761785326 - ], - [ - 1.444733327627957, - 43.623834929688279 - ], - [ - 1.444663798645945, - 43.623214776896461 - ], - [ - 1.444420447208903, - 43.622404074758656 - ], - [ - 1.444033071451978, - 43.621656277728235 - ], - [ - 1.443903946199671, - 43.621397422742902 - ], - [ - 1.443784753659079, - 43.620827578327088 - ], - [ - 1.443772337769434, - 43.62054894581069 - ], - [ - 1.443874148064523, - 43.620020439296582 - ], - [ - 1.444077768654701, - 43.619723826462547 - ], - [ - 1.444549572461211, - 43.619216884776876 - ], - [ - 1.445085938893875, - 43.618823193072402 - ], - [ - 1.446235650275003, - 43.618289278286227 - ], - [ - 1.44731334949619, - 43.617850637675417 - ], - [ - 1.447881997241931, - 43.617681652323967 - ], - [ - 1.448828088032881, - 43.617651091092675 - ], - [ - 1.449895854542351, - 43.617825469674443 - ], - [ - 1.450648257454839, - 43.618145462045092 - ], - [ - 1.451544684687209, - 43.6188070139061 - ], - [ - 1.452120781966737, - 43.619127001053151 - ], - [ - 1.452940230683308, - 43.619405640159286 - ], - [ - 1.453573441055203, - 43.61948833280681 - ], - [ - 1.454373024348342, - 43.619446986497259 - ], - [ - 1.454838891807539, - 43.619321964297278 - ], - [ - 1.455223784386467, - 43.619160173780628 - ], - [ - 1.456106554140074, - 43.618732325649873 - ], - [ - 1.456404535491502, - 43.618598397773205 - ], - [ - 1.457353109460216, - 43.61808245806418 - ], - [ - 1.457538106215894, - 43.617968303558293 - ], - [ - 1.457752901106715, - 43.617806509399195 - ], - [ - 1.45807571423743, - 43.61747752659975 - ], - [ - 1.458285542772394, - 43.617172811417561 - ], - [ - 1.458418392791572, - 43.616883375507776 - ], - [ - 1.458513995141822, - 43.616462702198419 - ], - [ - 1.45848419700668, - 43.616101352262476 - ], - [ - 1.458402252135037, - 43.61572831460294 - ], - [ - 1.458112961906358, - 43.614913915912688 - ], - [ - 1.457946588985144, - 43.614482441938314 - ], - [ - 1.457690821658502, - 43.613497231425512 - ], - [ - 1.457487201068359, - 43.613051364428536 - ], - [ - 1.456928486034431, - 43.612405930137342 - ], - [ - 1.456240645748217, - 43.611852181547775 - ], - [ - 1.455120732502432, - 43.611098859533797 - ], - [ - 1.454514837087861, - 43.610575663752201 - ], - [ - 1.454164708999933, - 43.610039877788196 - ], - [ - 1.453958605231861, - 43.609674893341364 - ], - [ - 1.453846862225075, - 43.609232593949834 - ], - [ - 1.453846862225075, - 43.608660836258096 - ], - [ - 1.453948672520147, - 43.607409423099178 - ], - [ - 1.454072831416576, - 43.606188550976754 - ], - [ - 1.454219338914361, - 43.604865162338875 - ], - [ - 1.454286384718432, - 43.60403083714769 - ], - [ - 1.454102629551718, - 43.603638844161615 - ], - [ - 1.453789749132718, - 43.603318774599856 - ], - [ - 1.453166471472647, - 43.602914189851958 - ], - [ - 1.452674802242791, - 43.602617492640874 - ], - [ - 1.45234453957829, - 43.602344170278847 - ], - [ - 1.452029175981362, - 43.601806512798163 - ], - [ - 1.451952197465577, - 43.601326393194121 - ], - [ - 1.451892601195291, - 43.60080491063173 - ], - [ - 1.451957163821434, - 43.599903993900277 - ], - [ - 1.452006827380005, - 43.599483201822999 - ], - [ - 1.45212105356472, - 43.598465376339867 - ], - [ - 1.452260111528719, - 43.597147212803456 - ], - [ - 1.452307291909362, - 43.596703022951445 - ], - [ - 1.452493530254005, - 43.596192290486087 - ], - [ - 1.452870973299147, - 43.595731908210865 - ], - [ - 1.453350226639361, - 43.595329070830722 - ], - [ - 1.453913908029147, - 43.595053916962982 - ], - [ - 1.455450995166931, - 43.594462241966355 - ], - [ - 1.455942664396788, - 43.594327360833738 - ], - [ - 1.457251299165144, - 43.594201471503865 - ], - [ - 1.459317303201715, - 43.594124139356381 - ], - [ - 1.461346059569357, - 43.594032419703787 - ], - [ - 1.465840611620068, - 43.593845383116282 - ], - [ - 1.467685612820995, - 43.593757259907242 - ], - [ - 1.468293991413495, - 43.593751864604535 - ], - [ - 1.469644840206637, - 43.593809414475118 - ], - [ - 1.470367444983851, - 43.593820205069726 - ], - [ - 1.471268838571921, - 43.593773445812445 - ], - [ - 1.472614721009206, - 43.593591803737603 - ], - [ - 1.473200751000349, - 43.593460517540194 - ], - [ - 1.474010267005063, - 43.59312061084907 - ], - [ - 1.475087966226062, - 43.592750128353622 - ], - [ - 1.475534938253205, - 43.592609847978515 - ], - [ - 1.476344454257918, - 43.59243000086542 - ], - [ - 1.477422153478918, - 43.592090088353871 - ], - [ - 1.478989038751845, - 43.591606294219815 - ], - [ - 1.480240560427845, - 43.591230406873429 - ], - [ - 1.482602062637914, - 43.59050020751944 - ], - [ - 1.483145878604271, - 43.590244815506495 - ], - [ - 1.483786538509842, - 43.589784387731093 - ], - [ - 1.484340287187913, - 43.589171078075296 - ], - [ - 1.484643234895198, - 43.588579345240497 - ], - [ - 1.484784776037127, - 43.588052356389937 - ], - [ - 1.484799675104699, - 43.587412049734851 - ], - [ - 1.484747528368198, - 43.586998364847069 - ], - [ - 1.484551357311842, - 43.586381429493834 - ], - [ - 1.484394917102342, - 43.58595334818596 - ], - [ - 1.484303039518984, - 43.58565476866486 - ], - [ - 1.484139149775699, - 43.584530585496225 - ], - [ - 1.483960360964842, - 43.583309249108808 - ], - [ - 1.483712043171985, - 43.581578830244489 - ], - [ - 1.483446343133628, - 43.579790798423197 - ], - [ - 1.4832700375007, - 43.578641321354695 - ], - [ - 1.483202991696628, - 43.578249162968234 - ], - [ - 1.482919909412771, - 43.57733351715882 - ], - [ - 1.4823661607347, - 43.576153410864016 - ], - [ - 1.481772681209772, - 43.574856346626483 - ], - [ - 1.48129094469163, - 43.573784133737114 - ], - [ - 1.481246247488915, - 43.573507082336505 - ], - [ - 1.481241281133058, - 43.573221034423248 - ], - [ - 1.481365440029486, - 43.572469027767681 - ], - [ - 1.481546712018272, - 43.571537102185019 - ], - [ - 1.481638589601629, - 43.57105134375098 - ], - [ - 1.481782613921486, - 43.570606961307647 - ], - [ - 1.481976301799915, - 43.570270523835703 - ], - [ - 1.482371127090558, - 43.569835131376372 - ], - [ - 1.483049034665057, - 43.569259400977749 - ], - [ - 1.484645718073127, - 43.567945995408934 - ], - [ - 1.486572664145698, - 43.566360874659487 - ], - [ - 1.486930241767412, - 43.566107179498189 - ], - [ - 1.48729775210084, - 43.565927253204286 - ], - [ - 1.487978142853268, - 43.565723935845419 - ], - [ - 1.488931683177839, - 43.565488230791694 - ], - [ - 1.48939852062841, - 43.565333492621377 - ], - [ - 1.489917504815481, - 43.565042008011652 - ], - [ - 1.490754335777409, - 43.564345677957057 - ], - [ - 1.491449625597408, - 43.56395342647528 - ], - [ - 1.492373367786837, - 43.563499994974272 - ], - [ - 1.493848375476407, - 43.562735271417637 - ], - [ - 1.494317696104907, - 43.562486959092695 - ], - [ - 1.494613194278407, - 43.562229648864616 - ], - [ - 1.494834197114049, - 43.561925553541869 - ], - [ - 1.494908692451906, - 43.561718623894322 - ], - [ - 1.494936007409121, - 43.561320957098076 - ], - [ - 1.494938490587049, - 43.560545409324412 - ], - [ - 1.494960839188406, - 43.559573711249271 - ], - [ - 1.495032851348335, - 43.559105851031347 - ], - [ - 1.49524888782812, - 43.558648784079509 - ], - [ - 1.496232226287834, - 43.557372937115368 - ], - [ - 1.496527724461334, - 43.556887064455012 - ], - [ - 1.496952347887119, - 43.555877516511536 - ], - [ - 1.497195699324119, - 43.554900344372385 - ], - [ - 1.497299992797119, - 43.554527827064781 - ], - [ - 1.497456433006619, - 43.554198498251871 - ], - [ - 1.497764347069762, - 43.553768388512864 - ], - [ - 1.498211319096904, - 43.553293284647175 - ], - [ - 1.498593728497904, - 43.553012539693228 - ], - [ - 1.499281568784118, - 43.552661606661658 - ], - [ - 1.500088601610903, - 43.55239525612491 - ], - [ - 1.501062007358902, - 43.552229686279034 - ], - [ - 1.502566813183616, - 43.552258481067504 - ], - [ - 1.503326665629758, - 43.552283676496153 - ], - [ - 1.503815851681686, - 43.552247683023445 - ], - [ - 1.504396915316971, - 43.55206951501701 - ], - [ - 1.504893550902686, - 43.551729374633005 - ], - [ - 1.505787494956971, - 43.550816925073399 - ], - [ - 1.505899237963756, - 43.550707142242707 - ], - [ - 1.506142589400756, - 43.550377792550819 - ], - [ - 1.506765867060827, - 43.549009982223055 - ], - [ - 1.506962038117184, - 43.548666225009917 - ], - [ - 1.50729975031547, - 43.548277471034886 - ], - [ - 1.508052153227826, - 43.547539551500542 - ], - [ - 1.509338439394826, - 43.546225672407111 - ], - [ - 1.509698500194468, - 43.545867500399027 - ], - [ - 1.509907087140468, - 43.545554323130425 - ], - [ - 1.509981582478326, - 43.545327538575393 - ], - [ - 1.510001447901754, - 43.545057555849816 - ], - [ - 1.509936885275611, - 43.544783972121117 - ], - [ - 1.509792860955754, - 43.54448338856669 - ], - [ - 1.509132335626755, - 43.543137043836509 - ], - [ - 1.50908763842404, - 43.542962448801426 - ], - [ - 1.50907025617854, - 43.542748254201747 - ], - [ - 1.509092604779897, - 43.542562858261554 - ], - [ - 1.509194415074969, - 43.542253263770085 - ], - [ - 1.50959172354354, - 43.5417960689973 - ], - [ - 1.510222450737396, - 43.541180470558537 - ], - [ - 1.510704187255539, - 43.540707067483702 - ], - [ - 1.511270351823254, - 43.540267861306944 - ], - [ - 1.512122081852753, - 43.539720649134978 - ], - [ - 1.512588919303324, - 43.539506443017743 - ], - [ - 1.513820575555894, - 43.539144630956969 - ], - [ - 1.515027400029179, - 43.538795417257191 - ], - [ - 1.515663093578893, - 43.538496603928934 - ], - [ - 1.516341001153393, - 43.538125785329953 - ], - [ - 1.516661331106179, - 43.537988977892311 - ], - [ - 1.517120719022964, - 43.537873771388284 - ], - [ - 1.517478296644678, - 43.537828768787861 - ], - [ - 1.51804694439032, - 43.537805367422379 - ], - [ - 1.518613108958034, - 43.537893572521824 - ], - [ - 1.519283566998748, - 43.538145586380743 - ], - [ - 1.520095566181391, - 43.538613609324237 - ], - [ - 1.520689045706319, - 43.538982624852913 - ], - [ - 1.522640823558175, - 43.540143658979929 - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "line": "ToulouseT1", - "name": "T1", - "color": "#234B90", - "order": 4 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.445502453193355, - 43.593261789258058 - ], - [ - 1.44405227728307, - 43.592731244475971 - ], - [ - 1.442880217300786, - 43.592324790055038 - ], - [ - 1.442247006929001, - 43.592108972432612 - ], - [ - 1.442053319050572, - 43.592067607299924 - ], - [ - 1.441879496595572, - 43.592074801238091 - ], - [ - 1.441308365672001, - 43.592126957264043 - ], - [ - 1.44040697208393, - 43.592200695016707 - ], - [ - 1.438800355964145, - 43.592342774821979 - ], - [ - 1.436016713506218, - 43.59257657630306 - ], - [ - 1.435400885379933, - 43.592646716570265 - ], - [ - 1.43495391335279, - 43.592680887440054 - ], - [ - 1.43476270865229, - 43.592673693574348 - ], - [ - 1.434660898357219, - 43.59265211197205 - ], - [ - 1.434564054418005, - 43.592612545681071 - ], - [ - 1.434482109546362, - 43.592556793135984 - ], - [ - 1.434395198318862, - 43.592475861930261 - ], - [ - 1.434211443152148, - 43.592249253975233 - ], - [ - 1.43358319913622, - 43.591483096950981 - ], - [ - 1.432351542883649, - 43.589984926042753 - ], - [ - 1.431832558696578, - 43.589362625603677 - ], - [ - 1.431216730570293, - 43.588627007827057 - ], - [ - 1.42962253034015, - 43.586691696606088 - ], - [ - 1.428671473193509, - 43.585547747331319 - ], - [ - 1.428569662898437, - 43.585439826466235 - ], - [ - 1.428467852603366, - 43.585403852801548 - ], - [ - 1.428363559130366, - 43.585385865961136 - ], - [ - 1.42821705163258, - 43.585403852801548 - ], - [ - 1.428068060956866, - 43.585481196154056 - ], - [ - 1.427884305790152, - 43.585607103724641 - ], - [ - 1.426679964494796, - 43.586387724784423 - ], - [ - 1.42457174643344, - 43.587763679654039 - ], - [ - 1.422890634975798, - 43.588859025162442 - ], - [ - 1.421661461901156, - 43.589644999721692 - ], - [ - 1.420012631756586, - 43.590725922797709 - ], - [ - 1.419406736342015, - 43.591112604374949 - ], - [ - 1.419242846598729, - 43.591258283766749 - ], - [ - 1.419088889567158, - 43.591457917916117 - ], - [ - 1.419006944695515, - 43.591680931858477 - ], - [ - 1.418987079272086, - 43.591853587246298 - ], - [ - 1.419054125076158, - 43.592394930615697 - ], - [ - 1.419049158720301, - 43.592544203844469 - ], - [ - 1.418964730670729, - 43.592664701241006 - ], - [ - 1.418798357749515, - 43.592745632192781 - ], - [ - 1.41854755677873, - 43.592781601469746 - ], - [ - 1.417924279118659, - 43.592831958421385 - ], - [ - 1.417603949165873, - 43.592860733803427 - ], - [ - 1.41741771082123, - 43.592907493769857 - ], - [ - 1.417099864046373, - 43.593029788894917 - ], - [ - 1.416322629354731, - 43.593348114746291 - ], - [ - 1.415987400334374, - 43.593457819875553 - ], - [ - 1.41562982271266, - 43.593518966909983 - ], - [ - 1.415324391827446, - 43.593529757556681 - ], - [ - 1.414658900142589, - 43.593504579378049 - ], - [ - 1.41377240562209, - 43.593463215204622 - ], - [ - 1.411316542650734, - 43.593299556674388 - ], - [ - 1.409861400384592, - 43.593198843511509 - ], - [ - 1.409595700346235, - 43.593188052805495 - ], - [ - 1.409367247976807, - 43.593204238863791 - ], - [ - 1.409183492810093, - 43.593265386155878 - ], - [ - 1.409029535778521, - 43.593387680553668 - ], - [ - 1.409019603066807, - 43.593558532605037 - ], - [ - 1.40908416569295, - 43.593889444672371 - ], - [ - 1.409133829251521, - 43.594135829105952 - ], - [ - 1.409235639546593, - 43.594418180829585 - ], - [ - 1.409434293780878, - 43.594882169956783 - ], - [ - 1.409846501317021, - 43.595878475606405 - ], - [ - 1.410271124742806, - 43.596880159783431 - ], - [ - 1.410737962193378, - 43.597987927534902 - ], - [ - 1.410991246342092, - 43.598568778124289 - ], - [ - 1.411152652907449, - 43.598984181763115 - ], - [ - 1.411212249177734, - 43.59915861447076 - ], - [ - 1.411247013668735, - 43.599356424145888 - ], - [ - 1.411321509006591, - 43.600214191303621 - ], - [ - 1.411386071632734, - 43.600875940419009 - ], - [ - 1.411413386589949, - 43.601190628341499 - ], - [ - 1.411381105276877, - 43.601359660031761 - ], - [ - 1.411227148245306, - 43.601530489449004 - ], - [ - 1.410670916389307, - 43.601789429956611 - ], - [ - 1.409079199337093, - 43.602499712433136 - ], - [ - 1.40766130473988, - 43.603134464107647 - ], - [ - 1.406434614843166, - 43.603686494821474 - ], - [ - 1.406064621331809, - 43.603868106424521 - ], - [ - 1.405592817525381, - 43.604137825615283 - ], - [ - 1.40488262863781, - 43.604501045548041 - ], - [ - 1.403663388274883, - 43.605067448492512 - ], - [ - 1.402759511508883, - 43.605479211094888 - ], - [ - 1.402136233848812, - 43.605756115364713 - ], - [ - 1.401997175884812, - 43.605878384376879 - ], - [ - 1.401942545970383, - 43.606056393229721 - ], - [ - 1.402041873087526, - 43.606317112315935 - ], - [ - 1.402111402069526, - 43.606585022475606 - ], - [ - 1.402111402069526, - 43.606996774690103 - ], - [ - 1.402061738510955, - 43.607868817017483 - ], - [ - 1.402009591774455, - 43.609113028718426 - ], - [ - 1.401930130080741, - 43.610630500636951 - ], - [ - 1.40189784876767, - 43.611218420817472 - ], - [ - 1.401845702031169, - 43.611333487091656 - ], - [ - 1.40168926182167, - 43.611477319624782 - ], - [ - 1.401580001992812, - 43.611588789601363 - ], - [ - 1.401490607587384, - 43.611709248859924 - ], - [ - 1.401448393562598, - 43.61195376243387 - ], - [ - 1.401421078605384, - 43.612609988802689 - ], - [ - 1.401391280470241, - 43.613122379756206 - ], - [ - 1.401326717844098, - 43.613356100495707 - ], - [ - 1.401135513143598, - 43.613566448384631 - ], - [ - 1.400720822429527, - 43.613809156573019 - ], - [ - 1.400132309260456, - 43.614001524589426 - ], - [ - 1.399561178336885, - 43.614091415974919 - ], - [ - 1.399012396014671, - 43.614104000758168 - ], - [ - 1.3983022071271, - 43.614093213801269 - ], - [ - 1.397773290228315, - 43.614100405106079 - ], - [ - 1.397497657478244, - 43.614143552916936 - ], - [ - 1.397281620998458, - 43.614251422308655 - ], - [ - 1.397085449942101, - 43.614450980173224 - ], - [ - 1.397033303205601, - 43.614763799276929 - ], - [ - 1.397030820027672, - 43.61552965986882 - ], - [ - 1.396976190113244, - 43.616854611614514 - ], - [ - 1.396926526554672, - 43.617938641328351 - ], - [ - 1.396921560198815, - 43.618233465266485 - ], - [ - 1.396869413462316, - 43.619348030506423 - ], - [ - 1.396824716259601, - 43.620511111235139 - ], - [ - 1.396782502234816, - 43.621399136087582 - ], - [ - 1.396752704099673, - 43.621575301402032 - ], - [ - 1.396648410626673, - 43.621749668602916 - ], - [ - 1.396387676944173, - 43.62198155822059 - ], - [ - 1.395769365639959, - 43.622456120231369 - ], - [ - 1.39536709081553, - 43.622794063622074 - ], - [ - 1.395039311328959, - 43.623153575782077 - ], - [ - 1.394512877608102, - 43.623908544320116 - ], - [ - 1.393643765333103, - 43.625217133992962 - ], - [ - 1.39347490923396, - 43.62549394738889 - ], - [ - 1.392566066112104, - 43.626960677618065 - ], - [ - 1.392238286625533, - 43.627561020110122 - ], - [ - 1.392074396882246, - 43.628362665705637 - ], - [ - 1.39186084358039, - 43.629912004246641 - ], - [ - 1.391731718328104, - 43.630875377911771 - ], - [ - 1.391508232314533, - 43.632805673450505 - ], - [ - 1.39133937621539, - 43.634052963663848 - ], - [ - 1.391081125710819, - 43.635983157142626 - ], - [ - 1.390981798593676, - 43.636694832948727 - ], - [ - 1.390911648817194, - 43.636807154749015 - ], - [ - 1.390758933374587, - 43.636886229170479 - ], - [ - 1.390537930538944, - 43.636889374173734 - ], - [ - 1.390264160172319, - 43.636813894050363 - ], - [ - 1.39007605944423, - 43.636755486746964 - ], - [ - 1.388859302259231, - 43.636430201957218 - ], - [ - 1.388173945150946, - 43.636259471666776 - ], - [ - 1.387756771258946, - 43.636210948232559 - ], - [ - 1.387175707623661, - 43.636219934056676 - ], - [ - 1.385340639134448, - 43.636245094357037 - ], - [ - 1.384421863300877, - 43.636259471666783 - ], - [ - 1.384265423091377, - 43.636309792223855 - ], - [ - 1.384136297839091, - 43.636439187748543 - ], - [ - 1.383974891273734, - 43.636874098442121 - ], - [ - 1.383676909922306, - 43.63769359102988 - ], - [ - 1.383155442557306, - 43.639082749205464 - ], - [ - 1.382924507009949, - 43.639688361798228 - ], - [ - 1.382683638750878, - 43.640340691382328 - ], - [ - 1.38259424434545, - 43.640482657488413 - ], - [ - 1.382480018160735, - 43.640561727072914 - ], - [ - 1.381973449863307, - 43.640754009491964 - ], - [ - 1.380533206664736, - 43.641242799412893 - ], - [ - 1.380394148700737, - 43.641302100860734 - ], - [ - 1.380307237473236, - 43.641429688625855 - ], - [ - 1.380207910356094, - 43.641616577257487 - ], - [ - 1.380106100061022, - 43.641686660344448 - ], - [ - 1.379895029937094, - 43.641744164354748 - ], - [ - 1.379738589727594, - 43.641868157189691 - ], - [ - 1.379584632696023, - 43.64216825473099 - ], - [ - 1.379083030754451, - 43.643208701065433 - ], - [ - 1.378916657833238, - 43.643550121669918 - ], - [ - 1.378896792409809, - 43.643659735241975 - ], - [ - 1.378958871858023, - 43.643789114938528 - ], - [ - 1.379060682153095, - 43.643975996230544 - ], - [ - 1.379055715797237, - 43.644101781388201 - ], - [ - 1.378951422324238, - 43.644213190879327 - ], - [ - 1.378280964283524, - 43.644466556856052 - ], - [ - 1.377461515567096, - 43.644763047599554 - ], - [ - 1.376686764053382, - 43.645043364774885 - ], - [ - 1.376527840665953, - 43.645174538388432 - ], - [ - 1.376475693929453, - 43.645348837130406 - ], - [ - 1.376545222911453, - 43.645488994514835 - ], - [ - 1.37667186498581, - 43.645670479872898 - ], - [ - 1.376756293035382, - 43.645823214650335 - ], - [ - 1.376771192102953, - 43.645941808444981 - ], - [ - 1.376751326679525, - 43.646101730009448 - ], - [ - 1.376634617316882, - 43.646371259772607 - ], - [ - 1.376212477069025, - 43.647257105741502 - ], - [ - 1.375636379789597, - 43.648550812691049 - ], - [ - 1.374933640435811, - 43.650106817748636 - ], - [ - 1.37439727400324, - 43.651294457300224 - ], - [ - 1.374320295487455, - 43.651599897866305 - ], - [ - 1.374290497352312, - 43.651907133574468 - ], - [ - 1.374330228199169, - 43.652331152204333 - ], - [ - 1.374444454383883, - 43.652755167840496 - ], - [ - 1.374479218874883, - 43.653179180482987 - ], - [ - 1.374404723537026, - 43.653534917593923 - ], - [ - 1.374263182395098, - 43.653869092960406 - ], - [ - 1.373893188883741, - 43.654402691706458 - ], - [ - 1.37358279164267, - 43.654833879148669 - ], - [ - 1.372894951356456, - 43.655751938763991 - ], - [ - 1.371837117558885, - 43.65716223783695 - ], - [ - 1.370851295921243, - 43.658482678918233 - ], - [ - 1.369992116357958, - 43.659619851842081 - ], - [ - 1.369507896661886, - 43.660257593423587 - ], - [ - 1.368787775062601, - 43.66121329488611 - ], - [ - 1.36800805719303, - 43.662260596875633 - ], - [ - 1.367896314186245, - 43.662355805241468 - ], - [ - 1.367717525375387, - 43.662413289464745 - ], - [ - 1.367456791692888, - 43.662420474988778 - ], - [ - 1.366513184080031, - 43.662305506500971 - ], - [ - 1.364010140728033, - 43.661994731205468 - ], - [ - 1.363801553782033, - 43.661974970872159 - ], - [ - 1.363660012640104, - 43.662003713172993 - ], - [ - 1.363478740651319, - 43.662097125555668 - ], - [ - 1.363312367730104, - 43.662348619709697 - ], - [ - 1.363133578919248, - 43.662636040309984 - ], - [ - 1.362614594732177, - 43.663458774171282 - ], - [ - 1.361718167499962, - 43.664838354991481 - ], - [ - 1.361075024416463, - 43.665849668187654 - ], - [ - 1.360603220610034, - 43.666602304072896 - ], - [ - 1.359957594348607, - 43.667624364903659 - ], - [ - 1.359403845670536, - 43.66850989738694 - ], - [ - 1.35922257368175, - 43.668793696108033 - ], - [ - 1.359185326012821, - 43.66891224454357 - ], - [ - 1.359215124147964, - 43.669055939303036 - ], - [ - 1.359311968087178, - 43.669176283399388 - ], - [ - 1.359704310199892, - 43.669399009150126 - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "line": "ToulouseT2", - "name": "T2", - "color": "#409AD9", - "order": 5 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.374212277247561, - 43.63125506151794 - ], - [ - 1.374996961472989, - 43.631682820529775 - ], - [ - 1.375253970388596, - 43.631823908443721 - ], - [ - 1.375348331149882, - 43.63186075300365 - ], - [ - 1.375462557334596, - 43.631880523246004 - ], - [ - 1.375563126040703, - 43.631871536773012 - ], - [ - 1.375671144280596, - 43.631830198979941 - ], - [ - 1.375780404109453, - 43.631743928711522 - ], - [ - 1.376177712578024, - 43.63136110290133 - ], - [ - 1.376642066850667, - 43.630915368369124 - ], - [ - 1.376912733244881, - 43.630683513212716 - ], - [ - 1.377399436118881, - 43.630302477989645 - ], - [ - 1.377716041304773, - 43.630042761559324 - ], - [ - 1.377881172637023, - 43.629873810476205 - ], - [ - 1.378062444625809, - 43.629664418315208 - ], - [ - 1.378387740934452, - 43.629271693711352 - ], - [ - 1.378566529745308, - 43.629079374548319 - ], - [ - 1.378705587709309, - 43.6289931003313 - ], - [ - 1.378905483532558, - 43.628933786735274 - ], - [ - 1.379383495283808, - 43.628849309694424 - ], - [ - 1.379880130869522, - 43.628754946902042 - ], - [ - 1.380061402858307, - 43.62869473437614 - ], - [ - 1.380211635122986, - 43.628595877859517 - ], - [ - 1.380269989804307, - 43.628523982108945 - ], - [ - 1.380433879547593, - 43.628247182666342 - ], - [ - 1.38085601979545, - 43.627503053169953 - ], - [ - 1.381137860490342, - 43.626990784757112 - ], - [ - 1.381722648892521, - 43.625946462646546 - ], - [ - 1.381908887237163, - 43.625616625645371 - ], - [ - 1.382060361090806, - 43.625445864634003 - ], - [ - 1.382263981680949, - 43.625302065511356 - ], - [ - 1.38250484994002, - 43.625192418449188 - ], - [ - 1.382733302309449, - 43.625128607361937 - ], - [ - 1.382999002347805, - 43.62510434115606 - ], - [ - 1.383292017343377, - 43.625105239904592 - ], - [ - 1.383778720217377, - 43.62510434115606 - ], - [ - 1.38431881141684, - 43.625027048731255 - ], - [ - 1.384855177849412, - 43.624915603664761 - ], - [ - 1.385649794786554, - 43.624760119476768 - ], - [ - 1.385968883150375, - 43.624689117893013 - ], - [ - 1.386232100010804, - 43.624612723690255 - ], - [ - 1.386542497251875, - 43.624482403943837 - ], - [ - 1.386792056633696, - 43.624371856627135 - ], - [ - 1.387553150668803, - 43.624020440635952 - ], - [ - 1.38890275787298, - 43.623402087305962 - ], - [ - 1.389193289690624, - 43.623227724897639 - ], - [ - 1.389475130385516, - 43.623056058321161 - ], - [ - 1.389647711251552, - 43.622950002285492 - ], - [ - 1.38979794351623, - 43.622905962012297 - ], - [ - 1.390018946351873, - 43.622895176634366 - ], - [ - 1.390967520320587, - 43.622902366886549 - ], - [ - 1.391118994174229, - 43.62289607541593 - ], - [ - 1.391233220358943, - 43.622866415617061 - ], - [ - 1.391493954041443, - 43.622742383572323 - ], - [ - 1.3919508587803, - 43.622502407802735 - ], - [ - 1.392587793918978, - 43.622179742243119 - ], - [ - 1.392893224804193, - 43.622025149773648 - ], - [ - 1.393121677173621, - 43.62195774014215 - ], - [ - 1.393439523948478, - 43.621880443671685 - ], - [ - 1.393813242226728, - 43.621848086980123 - ], - [ - 1.394421620819227, - 43.621804944697608 - ], - [ - 1.395141742418512, - 43.621762701182661 - ], - [ - 1.395582506500834, - 43.621751016800943 - ], - [ - 1.395886695797084, - 43.621798653112158 - ], - [ - 1.396249239774655, - 43.62186786051592 - ], - [ - 1.396369673904191, - 43.62186336653108 - ], - [ - 1.396536046825405, - 43.621820224259544 - ], - [ - 1.396650273010119, - 43.621749219203551 - ], - [ - 1.396755808072083, - 43.621573953200048 - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "line": "ToulouseTeleo", - "name": "Teleo", - "color": "#EC0677", - "order": 6 - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [ - 1.464646513433668, - 43.560225785367734 - ], - [ - 1.452981164319728, - 43.558348044730351 - ], - [ - 1.428321345105584, - 43.554328745313136 - ] - ] - } - } - ] + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.482783, + 43.6272117 + ], + [ + 1.4827596, + 43.6271786 + ], + [ + 1.4827118000000001, + 43.6271218 + ], + [ + 1.4826722, + 43.6270765 + ], + [ + 1.4826147, + 43.6270166 + ], + [ + 1.4825594, + 43.6269645 + ], + [ + 1.4824773, + 43.6268987 + ], + [ + 1.4824189, + 43.6268568 + ], + [ + 1.4823597000000002, + 43.6268143 + ], + [ + 1.4822287, + 43.6267376 + ], + [ + 1.4821727, + 43.626707499999995 + ], + [ + 1.4821098000000001, + 43.6266773 + ], + [ + 1.4819856, + 43.6266216 + ], + [ + 1.4816556, + 43.6264812 + ], + [ + 1.4814265, + 43.6263881 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3940191, + 43.566693199999996 + ], + [ + 1.3939392000000002, + 43.5667614 + ], + [ + 1.3938772000000001, + 43.5668194 + ], + [ + 1.3938442, + 43.5668534 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4085244000000001, + 43.578331 + ], + [ + 1.4084579000000002, + 43.5783201 + ], + [ + 1.4083708000000001, + 43.5783048 + ], + [ + 1.4082791000000001, + 43.5782901 + ], + [ + 1.4081911, + 43.578276499999994 + ], + [ + 1.4081129000000001, + 43.578265699999996 + ], + [ + 1.4080459, + 43.578255999999996 + ], + [ + 1.4079342000000001, + 43.57824 + ], + [ + 1.4078081, + 43.578224899999995 + ], + [ + 1.4076920000000002, + 43.578211499999995 + ], + [ + 1.4075561, + 43.578197499999995 + ], + [ + 1.4074122, + 43.5781849 + ], + [ + 1.4072506, + 43.578172599999995 + ], + [ + 1.4071148, + 43.5781649 + ], + [ + 1.4070032000000001, + 43.578158599999995 + ], + [ + 1.4068924, + 43.5781533 + ], + [ + 1.4067754000000001, + 43.578148899999995 + ], + [ + 1.4066696, + 43.5781469 + ], + [ + 1.4065491, + 43.578145199999994 + ], + [ + 1.4060030000000001, + 43.57814 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4100974000000002, + 43.5787329 + ], + [ + 1.4099337, + 43.5786734 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4827607, + 43.6290462 + ], + [ + 1.4828132, + 43.628864 + ], + [ + 1.4829208, + 43.628513899999994 + ], + [ + 1.4829934, + 43.6282662 + ], + [ + 1.4830457000000001, + 43.6279866 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4060030000000001, + 43.57814 + ], + [ + 1.4056491, + 43.5781406 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4042169, + 43.5778964 + ], + [ + 1.4038425, + 43.5777448 + ], + [ + 1.4035137, + 43.5775972 + ], + [ + 1.4031243, + 43.577385299999996 + ], + [ + 1.4029061, + 43.577222799999994 + ], + [ + 1.402636, + 43.5770184 + ], + [ + 1.4024472000000001, + 43.5768359 + ], + [ + 1.4023029, + 43.576650699999995 + ], + [ + 1.4021269, + 43.576328 + ], + [ + 1.4020485, + 43.5760924 + ], + [ + 1.402007, + 43.5758283 + ], + [ + 1.4019952, + 43.5751863 + ], + [ + 1.4019937, + 43.5750764 + ], + [ + 1.4019968, + 43.575002399999995 + ], + [ + 1.4019889, + 43.574708799999996 + ], + [ + 1.4019884, + 43.573988799999995 + ], + [ + 1.4019834, + 43.573881 + ], + [ + 1.4019158, + 43.573679899999995 + ], + [ + 1.4018248, + 43.5734624 + ], + [ + 1.4016295, + 43.5730759 + ], + [ + 1.4015512, + 43.5727896 + ], + [ + 1.4015140000000001, + 43.5724221 + ], + [ + 1.4015147000000001, + 43.5722331 + ], + [ + 1.4015845, + 43.5718873 + ], + [ + 1.4017014, + 43.571591999999995 + ], + [ + 1.4017259, + 43.571443599999995 + ], + [ + 1.4017523, + 43.5710534 + ], + [ + 1.4017663, + 43.570847199999996 + ], + [ + 1.4017963, + 43.570404499999995 + ], + [ + 1.4018006, + 43.568508599999994 + ], + [ + 1.4017728, + 43.5683891 + ], + [ + 1.4017118, + 43.5682724 + ], + [ + 1.4016354, + 43.5681498 + ], + [ + 1.4013003000000002, + 43.567804599999995 + ], + [ + 1.4011664000000001, + 43.567670899999996 + ], + [ + 1.4009067000000002, + 43.5674249 + ], + [ + 1.4006007, + 43.567152199999995 + ], + [ + 1.4002571000000001, + 43.5668736 + ], + [ + 1.3999411000000002, + 43.566628099999996 + ], + [ + 1.3993520000000002, + 43.5662575 + ], + [ + 1.3992332, + 43.5662014 + ], + [ + 1.3991109000000002, + 43.5661572 + ], + [ + 1.3989844, + 43.5661232 + ], + [ + 1.398852, + 43.566102 + ], + [ + 1.3987026, + 43.5660886 + ], + [ + 1.3984495000000001, + 43.566083299999995 + ], + [ + 1.3981401, + 43.5660774 + ], + [ + 1.3977997, + 43.5660726 + ], + [ + 1.3958626, + 43.566079599999995 + ], + [ + 1.3955214, + 43.566092499999996 + ], + [ + 1.3952841, + 43.566116199999996 + ], + [ + 1.3950189000000002, + 43.5661871 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3938442, + 43.5668534 + ], + [ + 1.3938085, + 43.5668929 + ], + [ + 1.3937625, + 43.5669471 + ], + [ + 1.3937123, + 43.5670095 + ], + [ + 1.3936646000000001, + 43.5670753 + ], + [ + 1.3936132, + 43.5671505 + ], + [ + 1.3935444000000001, + 43.5672569 + ], + [ + 1.3931681, + 43.567862 + ], + [ + 1.39253, + 43.568893599999996 + ], + [ + 1.3924667000000002, + 43.5690004 + ], + [ + 1.3924347000000001, + 43.5690591 + ], + [ + 1.3924104000000002, + 43.5691096 + ], + [ + 1.3923838000000002, + 43.5691688 + ], + [ + 1.3923546, + 43.569236 + ], + [ + 1.3923315, + 43.5693043 + ], + [ + 1.3923171, + 43.5693657 + ], + [ + 1.3923064, + 43.569421399999996 + ], + [ + 1.3922996, + 43.5694747 + ], + [ + 1.3922952, + 43.569531399999995 + ], + [ + 1.3922925000000002, + 43.5695872 + ], + [ + 1.3922876, + 43.5697629 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4056491, + 43.5781406 + ], + [ + 1.4054802, + 43.5781372 + ], + [ + 1.4052945000000001, + 43.578128799999995 + ], + [ + 1.4051550000000002, + 43.5781188 + ], + [ + 1.4050388, + 43.5781072 + ], + [ + 1.4049076, + 43.5780886 + ], + [ + 1.4047931, + 43.5780677 + ], + [ + 1.4046723, + 43.578041999999996 + ], + [ + 1.4045863, + 43.578021199999995 + ], + [ + 1.404443, + 43.577980399999994 + ], + [ + 1.4043202000000001, + 43.577939199999996 + ], + [ + 1.4042169, + 43.5778964 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3950189000000002, + 43.5661871 + ], + [ + 1.394886, + 43.5662283 + ], + [ + 1.3947877, + 43.566264 + ], + [ + 1.3946906000000001, + 43.5663013 + ], + [ + 1.3946177, + 43.5663318 + ], + [ + 1.3945226000000002, + 43.566376299999995 + ], + [ + 1.3944607, + 43.566406699999995 + ], + [ + 1.3943896, + 43.566443199999995 + ], + [ + 1.394315, + 43.5664872 + ], + [ + 1.3942421, + 43.5665323 + ], + [ + 1.3941662000000001, + 43.5665841 + ], + [ + 1.3941224, + 43.5666143 + ], + [ + 1.3940878, + 43.566641 + ], + [ + 1.3940191, + 43.566693199999996 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4088323, + 43.5783886 + ], + [ + 1.4087545000000001, + 43.5783735 + ], + [ + 1.4086255, + 43.578348899999995 + ], + [ + 1.4085244000000001, + 43.578331 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4099337, + 43.5786734 + ], + [ + 1.409851, + 43.578648 + ], + [ + 1.4097594, + 43.5786198 + ], + [ + 1.409623, + 43.5785802 + ], + [ + 1.4094435, + 43.5785322 + ], + [ + 1.4092816000000001, + 43.578490099999996 + ], + [ + 1.4090545, + 43.5784361 + ], + [ + 1.4089274, + 43.578409 + ], + [ + 1.4088323, + 43.5783886 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4680274, + 43.6187936 + ], + [ + 1.4679696, + 43.6187526 + ], + [ + 1.4679057, + 43.6187107 + ], + [ + 1.4678191, + 43.618655399999994 + ], + [ + 1.4677447000000001, + 43.618608099999996 + ], + [ + 1.4676344000000001, + 43.6185397 + ], + [ + 1.4672322, + 43.6182909 + ], + [ + 1.4671395, + 43.6182344 + ], + [ + 1.4670401, + 43.618171 + ], + [ + 1.4669491000000001, + 43.618111999999996 + ], + [ + 1.4668913000000001, + 43.6180758 + ], + [ + 1.4668491000000001, + 43.6180454 + ], + [ + 1.4668048, + 43.618016 + ], + [ + 1.4667583, + 43.6179826 + ], + [ + 1.4667143, + 43.617949599999996 + ], + [ + 1.4666554, + 43.617901499999995 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4666554, + 43.617901499999995 + ], + [ + 1.4666221000000002, + 43.6178746 + ], + [ + 1.4665860000000002, + 43.617844899999994 + ], + [ + 1.4665451, + 43.6178111 + ], + [ + 1.466501, + 43.617772599999995 + ], + [ + 1.4664488, + 43.617723 + ], + [ + 1.4663874000000001, + 43.6176622 + ], + [ + 1.4663275, + 43.6176015 + ], + [ + 1.4660756000000001, + 43.617346299999994 + ], + [ + 1.4659767000000001, + 43.6172476 + ], + [ + 1.4658634000000001, + 43.6171313 + ], + [ + 1.4657372, + 43.6170085 + ], + [ + 1.4656469, + 43.616923 + ], + [ + 1.4655734, + 43.616856899999995 + ], + [ + 1.4654739, + 43.6167691 + ], + [ + 1.4653821, + 43.616691599999996 + ], + [ + 1.4652832, + 43.6166136 + ], + [ + 1.4651696, + 43.616532299999996 + ], + [ + 1.465065, + 43.616457 + ], + [ + 1.4648646, + 43.6163129 + ], + [ + 1.4647353, + 43.6162248 + ], + [ + 1.4646524, + 43.616169299999996 + ], + [ + 1.463873, + 43.615646999999996 + ], + [ + 1.4637793000000001, + 43.6155842 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4637793000000001, + 43.6155842 + ], + [ + 1.4636947, + 43.6155245 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4636947, + 43.6155245 + ], + [ + 1.4633597, + 43.6153 + ], + [ + 1.4631651, + 43.6151657 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4531359000000001, + 43.6088385 + ], + [ + 1.4507781, + 43.607006399999996 + ], + [ + 1.4503586000000002, + 43.6066988 + ], + [ + 1.4496279, + 43.6062878 + ], + [ + 1.4494881000000002, + 43.6061905 + ], + [ + 1.4483933, + 43.6054824 + ], + [ + 1.4478753, + 43.605166 + ], + [ + 1.4474269, + 43.604978499999994 + ], + [ + 1.4472831000000002, + 43.6049277 + ], + [ + 1.4471243, + 43.604893499999996 + ], + [ + 1.4466197, + 43.604811399999996 + ], + [ + 1.4461668, + 43.6047241 + ], + [ + 1.4459404, + 43.6046738 + ], + [ + 1.4457641, + 43.6046166 + ], + [ + 1.4455814, + 43.6045413 + ], + [ + 1.4452445, + 43.604391199999995 + ], + [ + 1.4448164000000001, + 43.6042023 + ], + [ + 1.4445637, + 43.604010599999995 + ], + [ + 1.444395, + 43.6037523 + ], + [ + 1.4442979, + 43.603473 + ], + [ + 1.4442584, + 43.6032107 + ], + [ + 1.4440832000000001, + 43.601411399999996 + ], + [ + 1.4439765, + 43.6012006 + ], + [ + 1.4437855000000002, + 43.600757699999996 + ], + [ + 1.4437428, + 43.600650099999996 + ], + [ + 1.4437309, + 43.6005306 + ], + [ + 1.4437479, + 43.6000629 + ], + [ + 1.4437771000000001, + 43.599740499999996 + ], + [ + 1.4437609, + 43.5995019 + ], + [ + 1.4437296000000002, + 43.5993728 + ], + [ + 1.4436109000000001, + 43.5990961 + ], + [ + 1.4433182, + 43.5987808 + ], + [ + 1.4428603, + 43.5985905 + ], + [ + 1.4423171000000001, + 43.5983455 + ], + [ + 1.4418648, + 43.5982146 + ], + [ + 1.4413117, + 43.5980955 + ], + [ + 1.4404253, + 43.598029499999996 + ], + [ + 1.4328465000000001, + 43.598112799999996 + ], + [ + 1.4324549, + 43.5980989 + ], + [ + 1.4321116, + 43.598061699999995 + ], + [ + 1.4314608, + 43.5979518 + ], + [ + 1.4311124, + 43.597895699999995 + ], + [ + 1.4296112, + 43.597617799999995 + ], + [ + 1.4260982, + 43.5969675 + ], + [ + 1.4232531000000002, + 43.5964501 + ], + [ + 1.4230093000000001, + 43.596399899999994 + ], + [ + 1.4226616, + 43.596322199999996 + ], + [ + 1.4221576, + 43.596217499999995 + ], + [ + 1.4214665, + 43.596103799999995 + ], + [ + 1.4210027, + 43.596021799999995 + ], + [ + 1.4203536, + 43.5958633 + ], + [ + 1.4199705, + 43.5957398 + ], + [ + 1.4195892, + 43.595560299999995 + ], + [ + 1.4193876, + 43.5954123 + ], + [ + 1.4191371000000002, + 43.5951528 + ], + [ + 1.4189687, + 43.5949318 + ], + [ + 1.4188611, + 43.594648299999996 + ], + [ + 1.4187666, + 43.594331399999994 + ], + [ + 1.4186129, + 43.5937932 + ], + [ + 1.4185287, + 43.5934533 + ], + [ + 1.4184895, + 43.5932606 + ], + [ + 1.418453, + 43.5930219 + ], + [ + 1.4184272, + 43.592853399999996 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4787160000000001, + 43.625287099999994 + ], + [ + 1.4785601000000002, + 43.625226999999995 + ], + [ + 1.4783628, + 43.625146699999995 + ], + [ + 1.4781387000000001, + 43.625051799999994 + ], + [ + 1.4779823, + 43.6249867 + ], + [ + 1.477857, + 43.6249316 + ], + [ + 1.4776736000000001, + 43.6248473 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4828464000000001, + 43.6273062 + ], + [ + 1.4828057000000001, + 43.627244999999995 + ], + [ + 1.482783, + 43.6272117 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4814265, + 43.6263881 + ], + [ + 1.4787160000000001, + 43.625287099999994 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4629507000000002, + 43.6150151 + ], + [ + 1.4627567000000001, + 43.6148885 + ], + [ + 1.4626215, + 43.6148142 + ], + [ + 1.4625329, + 43.6147876 + ], + [ + 1.4624321, + 43.614766599999996 + ], + [ + 1.4621833, + 43.6147273 + ], + [ + 1.4619769, + 43.614693499999994 + ], + [ + 1.4618294, + 43.614649799999995 + ], + [ + 1.4616895, + 43.6145746 + ], + [ + 1.457978, + 43.612021899999995 + ], + [ + 1.4577200000000001, + 43.6118567 + ], + [ + 1.4575664000000002, + 43.6117916 + ], + [ + 1.4559338000000002, + 43.611264899999995 + ], + [ + 1.4557696, + 43.6112122 + ], + [ + 1.4556372, + 43.611151899999996 + ], + [ + 1.4554693, + 43.61105 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4554517, + 43.611038099999995 + ], + [ + 1.4554235, + 43.6110191 + ], + [ + 1.4551943, + 43.6108609 + ], + [ + 1.4549078, + 43.6106738 + ], + [ + 1.454825, + 43.610597 + ], + [ + 1.454715, + 43.610475099999995 + ], + [ + 1.4544958000000001, + 43.610163 + ], + [ + 1.4541591, + 43.6097466 + ], + [ + 1.4537660000000001, + 43.609322399999996 + ], + [ + 1.4531359000000001, + 43.6088385 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4554693, + 43.61105 + ], + [ + 1.4554517, + 43.611038099999995 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4830457000000001, + 43.6279866 + ], + [ + 1.4830159, + 43.6277051 + ], + [ + 1.4829605000000001, + 43.6275203 + ], + [ + 1.4829084000000001, + 43.627404899999995 + ], + [ + 1.4828464000000001, + 43.6273062 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3922876, + 43.5697629 + ], + [ + 1.3922861, + 43.5698143 + ], + [ + 1.3922843, + 43.569947299999995 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4776736000000001, + 43.6248473 + ], + [ + 1.4774162, + 43.6247106 + ], + [ + 1.4766846, + 43.6243093 + ], + [ + 1.4765597000000001, + 43.6242429 + ], + [ + 1.4761140000000001, + 43.6239961 + ], + [ + 1.4756114, + 43.6236992 + ], + [ + 1.4696273, + 43.6200026 + ], + [ + 1.4690199000000002, + 43.6196348 + ], + [ + 1.4684877, + 43.619125499999996 + ], + [ + 1.4682317, + 43.618944199999994 + ], + [ + 1.4680274, + 43.6187936 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4631651, + 43.6151657 + ], + [ + 1.4629507000000002, + 43.6150151 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4184272, + 43.592853399999996 + ], + [ + 1.4182309, + 43.591592299999995 + ], + [ + 1.4182259000000002, + 43.5914779 + ], + [ + 1.4182406, + 43.591318 + ], + [ + 1.4182670000000002, + 43.591147899999996 + ], + [ + 1.4187654, + 43.5888402 + ], + [ + 1.4187782, + 43.588581 + ], + [ + 1.4187417, + 43.5883117 + ], + [ + 1.4186869, + 43.5880759 + ], + [ + 1.4185830000000001, + 43.5877926 + ], + [ + 1.4183687, + 43.5875029 + ], + [ + 1.4151171, + 43.583506299999996 + ], + [ + 1.4133406000000002, + 43.5812904 + ], + [ + 1.4122474, + 43.5800109 + ], + [ + 1.4120977000000001, + 43.5798529 + ], + [ + 1.4119343, + 43.579710399999996 + ], + [ + 1.4117124, + 43.5795487 + ], + [ + 1.4113075000000002, + 43.5792669 + ], + [ + 1.4108232, + 43.5790417 + ], + [ + 1.4103532, + 43.578827499999996 + ], + [ + 1.4100974000000002, + 43.5787329 + ] + ] + }, + "properties": { + "line": "ToulouseA", + "name": "A", + "color": "#DB001B", + "order": 1 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.5058215, + 43.550305699999996 + ], + [ + 1.5055513, + 43.550741499999994 + ], + [ + 1.5054685, + 43.5508488 + ], + [ + 1.5053683, + 43.550953 + ], + [ + 1.5052202000000001, + 43.55109409999999 + ], + [ + 1.5048920000000001, + 43.551429899999995 + ], + [ + 1.504648, + 43.551651899999996 + ], + [ + 1.5044926, + 43.5517772 + ], + [ + 1.5043561, + 43.5518625 + ], + [ + 1.5041952, + 43.5519428 + ], + [ + 1.5039865000000001, + 43.552032499999996 + ], + [ + 1.5038486, + 43.552076799999995 + ], + [ + 1.5036789, + 43.5521137 + ], + [ + 1.5034879, + 43.5521434 + ], + [ + 1.503338, + 43.5521557 + ], + [ + 1.5031514, + 43.552157699999995 + ], + [ + 1.5028572, + 43.5521506 + ], + [ + 1.501532, + 43.5521003 + ], + [ + 1.499685, + 43.5520286 + ], + [ + 1.4992834, + 43.552011199999995 + ], + [ + 1.4990797, + 43.551998899999994 + ], + [ + 1.49891, + 43.5519774 + ], + [ + 1.4987261, + 43.5519507 + ], + [ + 1.4985593, + 43.5519118 + ], + [ + 1.4983895, + 43.551874899999994 + ], + [ + 1.4981972000000001, + 43.551812299999995 + ], + [ + 1.4979907000000001, + 43.5517385 + ], + [ + 1.4976895000000001, + 43.5516217 + ], + [ + 1.4960758, + 43.5509667 + ], + [ + 1.4941482, + 43.5501764 + ], + [ + 1.4937267, + 43.550047299999996 + ], + [ + 1.4934354, + 43.549982699999994 + ], + [ + 1.49326, + 43.5499612 + ], + [ + 1.4930026, + 43.549939699999996 + ], + [ + 1.4926858, + 43.5499356 + ], + [ + 1.492386, + 43.54996319999999 + ], + [ + 1.4920282, + 43.550024699999994 + ], + [ + 1.4917256, + 43.5501078 + ], + [ + 1.4913833, + 43.550232799999996 + ], + [ + 1.4905279, + 43.550591399999995 + ], + [ + 1.4892534, + 43.551058999999995 + ], + [ + 1.4886506, + 43.5513111 + ], + [ + 1.4878467, + 43.551581299999995 + ], + [ + 1.4873560000000001, + 43.5517915 + ], + [ + 1.4872136, + 43.5518836 + ], + [ + 1.4870501, + 43.5519963 + ], + [ + 1.4866284, + 43.552262299999995 + ], + [ + 1.4858991, + 43.5527467 + ], + [ + 1.4852653, + 43.55319059999999 + ], + [ + 1.4850675, + 43.5533363 + ], + [ + 1.4847658, + 43.553537999999996 + ], + [ + 1.4844509, + 43.553736799999996 + ], + [ + 1.4840632, + 43.5539074 + ], + [ + 1.4836134, + 43.5540521 + ], + [ + 1.4831543, + 43.5541814 + ], + [ + 1.4828839, + 43.554263299999995 + ] + ] + }, + "properties": { + "line": "ToulouseB", + "name": "B", + "color": "#FFD900", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.481887, + 43.55477509999999 + ], + [ + 1.4816307, + 43.5550152 + ], + [ + 1.4814008, + 43.55529009999999 + ], + [ + 1.48116, + 43.5555373 + ], + [ + 1.4809015, + 43.5557313 + ], + [ + 1.4807147, + 43.555851399999995 + ], + [ + 1.48052, + 43.55594249999999 + ], + [ + 1.4803041000000001, + 43.5560334 + ], + [ + 1.4801028, + 43.556098299999995 + ], + [ + 1.4798492, + 43.556139599999995 + ], + [ + 1.4795934, + 43.5561635 + ], + [ + 1.4792064, + 43.5561508 + ], + [ + 1.4781997, + 43.5560128 + ] + ] + }, + "properties": { + "line": "ToulouseB", + "name": "B", + "color": "#FFD900", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4524967, + 43.6403872 + ], + [ + 1.4523599, + 43.640057999999996 + ], + [ + 1.4522836000000001, + 43.639930699999994 + ], + [ + 1.4521678, + 43.63971299999999 + ], + [ + 1.4519523, + 43.639443699999994 + ], + [ + 1.4516738, + 43.63913779999999 + ], + [ + 1.4512164, + 43.6388068 + ], + [ + 1.4509323, + 43.638685599999995 + ], + [ + 1.450464, + 43.6385417 + ], + [ + 1.4499387, + 43.638416899999996 + ], + [ + 1.4483186000000001, + 43.6380248 + ], + [ + 1.4478287, + 43.6379557 + ], + [ + 1.447536, + 43.637929 + ], + [ + 1.4472156, + 43.637929 + ], + [ + 1.4459462, + 43.6380025 + ], + [ + 1.4448945, + 43.6380019 + ], + [ + 1.443862, + 43.638009399999994 + ], + [ + 1.4424954, + 43.6380184 + ], + [ + 1.4419623, + 43.6379927 + ], + [ + 1.4414443000000001, + 43.637926199999995 + ], + [ + 1.4409883, + 43.637763099999994 + ], + [ + 1.4407498, + 43.6376316 + ], + [ + 1.4407067, + 43.6376078 + ], + [ + 1.4400307, + 43.637108999999995 + ], + [ + 1.4388586, + 43.63621989999999 + ], + [ + 1.4380976, + 43.635674599999994 + ], + [ + 1.436, + 43.6341015 + ], + [ + 1.4345431, + 43.633011499999995 + ], + [ + 1.4340958, + 43.632636299999994 + ], + [ + 1.4339151, + 43.632313999999994 + ], + [ + 1.4337434, + 43.632017 + ], + [ + 1.4336588000000001, + 43.631684299999996 + ], + [ + 1.4336411, + 43.631382099999996 + ], + [ + 1.4337472, + 43.6298489 + ], + [ + 1.4338322000000001, + 43.6286205 + ], + [ + 1.4339679, + 43.627184099999994 + ], + [ + 1.4340471, + 43.6263832 + ], + [ + 1.4340963, + 43.6257983 + ], + [ + 1.4341577, + 43.6248812 + ], + [ + 1.4342886, + 43.623999899999994 + ], + [ + 1.4343647, + 43.6235259 + ], + [ + 1.4344532, + 43.6232172 + ], + [ + 1.434639, + 43.6227855 + ], + [ + 1.4349009, + 43.6222551 + ], + [ + 1.4352725, + 43.621545399999995 + ], + [ + 1.4356813, + 43.6207807 + ], + [ + 1.4357698, + 43.6205936 + ], + [ + 1.4358035, + 43.6204956 + ], + [ + 1.43591, + 43.6201763 + ], + [ + 1.4360016, + 43.6198613 + ], + [ + 1.4362564, + 43.6191883 + ], + [ + 1.4364529, + 43.6185349 + ], + [ + 1.4366103000000001, + 43.6180199 + ], + [ + 1.4367519, + 43.6175972 + ], + [ + 1.4367785, + 43.617435699999994 + ], + [ + 1.4367714, + 43.6173012 + ], + [ + 1.4367342, + 43.617125699999995 + ], + [ + 1.4366263, + 43.616883599999994 + ], + [ + 1.4365254, + 43.616741399999995 + ], + [ + 1.4363697, + 43.616537699999995 + ], + [ + 1.4362334, + 43.6163878 + ], + [ + 1.4359379, + 43.6161841 + ], + [ + 1.4355798, + 43.6159129 + ], + [ + 1.4345286, + 43.615480299999994 + ], + [ + 1.4340431, + 43.6152781 + ], + [ + 1.4337015, + 43.615102699999994 + ], + [ + 1.4329824, + 43.614742199999995 + ], + [ + 1.4326085, + 43.614605999999995 + ], + [ + 1.43168, + 43.614273499999996 + ], + [ + 1.4304398, + 43.6137102 + ], + [ + 1.4300701, + 43.6134414 + ], + [ + 1.4298421000000001, + 43.613285299999994 + ], + [ + 1.4297358, + 43.6131659 + ], + [ + 1.4296357, + 43.6129719 + ], + [ + 1.4295987000000001, + 43.612819099999996 + ], + [ + 1.4295925, + 43.6125045 + ], + [ + 1.4296095, + 43.61228139999999 + ], + [ + 1.4296603, + 43.612066199999994 + ], + [ + 1.4298113000000001, + 43.611727099999996 + ], + [ + 1.4299576, + 43.611492899999995 + ], + [ + 1.4302288, + 43.6111003 + ], + [ + 1.4304783, + 43.610819199999995 + ], + [ + 1.4308465, + 43.610526899999996 + ], + [ + 1.4310714, + 43.6103987 + ], + [ + 1.4313873, + 43.6102827 + ], + [ + 1.4317154, + 43.6102224 + ], + [ + 1.4321024, + 43.6101773 + ], + [ + 1.4325367, + 43.6101361 + ], + [ + 1.4330453, + 43.610105399999995 + ], + [ + 1.4335484, + 43.6101137 + ], + [ + 1.4341108, + 43.6101773 + ], + [ + 1.4345469, + 43.6103136 + ], + [ + 1.4351632, + 43.610501799999994 + ], + [ + 1.4361175, + 43.61078869999999 + ], + [ + 1.4371633, + 43.611126199999994 + ], + [ + 1.4376788, + 43.6113338 + ], + [ + 1.4382109, + 43.611487 + ], + [ + 1.4386093, + 43.611552999999994 + ], + [ + 1.4390716000000001, + 43.611554999999996 + ], + [ + 1.4395316, + 43.611483899999996 + ], + [ + 1.4402727, + 43.6113498 + ], + [ + 1.4426178, + 43.610839899999995 + ], + [ + 1.443381, + 43.6105946 + ], + [ + 1.4437905, + 43.6103235 + ], + [ + 1.4441221, + 43.6100564 + ], + [ + 1.4446827, + 43.609542499999996 + ], + [ + 1.4451316, + 43.6091019 + ], + [ + 1.4456068, + 43.6086385 + ], + [ + 1.4458603, + 43.6083364 + ], + [ + 1.4463113, + 43.607903099999994 + ], + [ + 1.4466299, + 43.60771329999999 + ], + [ + 1.4472935, + 43.6070557 + ], + [ + 1.4483788, + 43.6059887 + ], + [ + 1.4490698, + 43.605357999999995 + ], + [ + 1.449861, + 43.6046626 + ], + [ + 1.451505, + 43.603150199999995 + ], + [ + 1.4518461, + 43.602686799999994 + ], + [ + 1.4519112, + 43.6024574 + ], + [ + 1.4520173, + 43.601462 + ], + [ + 1.4520953, + 43.60111989999999 + ], + [ + 1.4521597, + 43.60046019999999 + ], + [ + 1.4521711, + 43.6003433 + ], + [ + 1.4521985, + 43.5999577 + ], + [ + 1.4520843, + 43.5997402 + ], + [ + 1.4519208000000001, + 43.599407 + ], + [ + 1.4516552, + 43.5992282 + ], + [ + 1.4514504, + 43.5991382 + ], + [ + 1.451122, + 43.5990823 + ], + [ + 1.4508012, + 43.599055799999995 + ], + [ + 1.4495788, + 43.5990693 + ], + [ + 1.4477625, + 43.5990957 + ], + [ + 1.4472314, + 43.599015599999994 + ], + [ + 1.4468142, + 43.5988482 + ], + [ + 1.4463718, + 43.5982043 + ], + [ + 1.4457963, + 43.5977415 + ], + [ + 1.4453915, + 43.5975001 + ], + [ + 1.4452918, + 43.5974407 + ], + [ + 1.444969, + 43.597242599999994 + ], + [ + 1.4447255, + 43.5971122 + ], + [ + 1.4444578, + 43.5968624 + ], + [ + 1.4442406, + 43.595888699999996 + ], + [ + 1.4439915, + 43.594970999999994 + ], + [ + 1.4439384, + 43.5944699 + ], + [ + 1.4438756, + 43.5942775 + ], + [ + 1.4438998, + 43.5938843 + ], + [ + 1.4441978, + 43.5932398 + ], + [ + 1.4444799, + 43.5926833 + ], + [ + 1.4445793, + 43.5925229 + ], + [ + 1.4446097, + 43.592455199999996 + ], + [ + 1.4447821, + 43.591969799999994 + ], + [ + 1.4452327, + 43.590660899999996 + ], + [ + 1.4462264, + 43.5882709 + ], + [ + 1.446694, + 43.5872095 + ], + [ + 1.4467753, + 43.587021199999995 + ], + [ + 1.4470555, + 43.5863721 + ], + [ + 1.4470722, + 43.586332299999995 + ], + [ + 1.4471937, + 43.5860421 + ], + [ + 1.4473265, + 43.585649999999994 + ], + [ + 1.4474816, + 43.585151399999994 + ], + [ + 1.447488, + 43.5845108 + ], + [ + 1.4473239, + 43.583964599999995 + ], + [ + 1.4470937, + 43.5834895 + ], + [ + 1.4466978, + 43.583124 + ], + [ + 1.4463244, + 43.582891999999994 + ], + [ + 1.4445235, + 43.581964 + ], + [ + 1.443792, + 43.581574599999996 + ], + [ + 1.4431837, + 43.5812074 + ], + [ + 1.4428159, + 43.5808745 + ], + [ + 1.4423653, + 43.5802899 + ], + [ + 1.4420396, + 43.5797311 + ], + [ + 1.4419798, + 43.5796375 + ], + [ + 1.4413424, + 43.578690099999996 + ], + [ + 1.4407772, + 43.577593099999994 + ], + [ + 1.4407133, + 43.5772225 + ], + [ + 1.4407612, + 43.5768736 + ], + [ + 1.4410109, + 43.576611099999994 + ], + [ + 1.4414071, + 43.5764778 + ], + [ + 1.4418764, + 43.576451299999995 + ], + [ + 1.4424209000000001, + 43.576503699999996 + ], + [ + 1.443078, + 43.57665119999999 + ], + [ + 1.4439359, + 43.576904899999995 + ], + [ + 1.444548, + 43.57713 + ], + [ + 1.4452408, + 43.577376199999996 + ], + [ + 1.4465183, + 43.57808549999999 + ], + [ + 1.4468225000000001, + 43.578248699999996 + ], + [ + 1.4473519, + 43.5786921 + ], + [ + 1.448009, + 43.579384299999994 + ], + [ + 1.4484052, + 43.5796801 + ], + [ + 1.4496799, + 43.5802486 + ], + [ + 1.4501074, + 43.580440599999996 + ], + [ + 1.4503962, + 43.5805642 + ], + [ + 1.4508792, + 43.5807862 + ], + [ + 1.4514563, + 43.581011499999995 + ], + [ + 1.452467, + 43.581026599999994 + ], + [ + 1.4530484, + 43.580959099999994 + ], + [ + 1.4536617, + 43.580943299999994 + ], + [ + 1.4545848000000001, + 43.5808568 + ], + [ + 1.4561343, + 43.5806244 + ], + [ + 1.4574395, + 43.5804427 + ], + [ + 1.4580188, + 43.580297599999994 + ], + [ + 1.4584733, + 43.580057999999994 + ], + [ + 1.4587626, + 43.579893899999995 + ], + [ + 1.459058, + 43.5797062 + ], + [ + 1.4594306, + 43.579485399999996 + ], + [ + 1.4597341, + 43.579205599999995 + ], + [ + 1.4600432, + 43.57871419999999 + ], + [ + 1.4605222, + 43.576638499999994 + ], + [ + 1.4607215, + 43.575530799999996 + ], + [ + 1.4608671, + 43.575284599999996 + ], + [ + 1.4610383, + 43.5751542 + ], + [ + 1.4616085, + 43.5748664 + ], + [ + 1.4618842, + 43.574714699999994 + ], + [ + 1.4619465, + 43.574680799999996 + ], + [ + 1.4623385, + 43.574429099999996 + ], + [ + 1.4627158, + 43.5740383 + ], + [ + 1.4630694, + 43.5732205 + ], + [ + 1.4636282, + 43.5715273 + ], + [ + 1.4639497, + 43.570541799999994 + ], + [ + 1.4642563, + 43.569573899999995 + ], + [ + 1.4644814, + 43.568223499999995 + ], + [ + 1.4645022, + 43.5680845 + ], + [ + 1.4645378, + 43.5677284 + ], + [ + 1.4645362, + 43.5672436 + ], + [ + 1.4644629, + 43.56696719999999 + ], + [ + 1.4643479, + 43.566539799999994 + ], + [ + 1.4633131, + 43.5646413 + ], + [ + 1.4629391, + 43.563972899999996 + ], + [ + 1.4626455, + 43.5629212 + ], + [ + 1.4626321, + 43.5625012 + ], + [ + 1.4628169, + 43.561732299999996 + ], + [ + 1.4630262, + 43.5613471 + ], + [ + 1.463286, + 43.5608436 + ], + [ + 1.4633366, + 43.5607383 + ], + [ + 1.4633495, + 43.56066319999999 + ], + [ + 1.4636635, + 43.560100199999994 + ], + [ + 1.4640416, + 43.5595782 + ], + [ + 1.4646292, + 43.5590542 + ], + [ + 1.4665631000000001, + 43.557598999999996 + ], + [ + 1.4669323, + 43.5574046 + ], + [ + 1.4672075, + 43.5572667 + ], + [ + 1.4678674, + 43.5570075 + ], + [ + 1.4685431, + 43.5568622 + ], + [ + 1.4700134, + 43.5565474 + ], + [ + 1.471582, + 43.55624469999999 + ], + [ + 1.4736624, + 43.555817999999995 + ], + [ + 1.4744763, + 43.5556485 + ], + [ + 1.4750411, + 43.55563119999999 + ], + [ + 1.4754568, + 43.5556409 + ], + [ + 1.4764129, + 43.5557672 + ], + [ + 1.4780988, + 43.555986299999994 + ], + [ + 1.4781997, + 43.5560128 + ] + ] + }, + "properties": { + "line": "ToulouseB", + "name": "B", + "color": "#FFD900", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4828839, + 43.554263299999995 + ], + [ + 1.4827095, + 43.554325999999996 + ], + [ + 1.4825242, + 43.5543999 + ], + [ + 1.4823973, + 43.554454699999994 + ], + [ + 1.4822846, + 43.554515099999996 + ], + [ + 1.482153, + 43.554587899999994 + ], + [ + 1.4820259, + 43.5546703 + ], + [ + 1.481887, + 43.55477509999999 + ] + ] + }, + "properties": { + "line": "ToulouseB", + "name": "B", + "color": "#FFD900", + "order": 3 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3568168, + 43.6093453 + ], + [ + 1.3571027, + 43.6093642 + ], + [ + 1.3575546, + 43.609373000000005 + ], + [ + 1.3611658, + 43.609354100000004 + ], + [ + 1.3633935, + 43.6093101 + ], + [ + 1.3647457, + 43.6092658 + ], + [ + 1.3651515, + 43.6092364 + ], + [ + 1.3659232, + 43.609198500000005 + ], + [ + 1.3675968, + 43.6091186 + ], + [ + 1.3684393, + 43.6090937 + ], + [ + 1.368847, + 43.609109100000005 + ], + [ + 1.3692184, + 43.60917370000001 + ], + [ + 1.3696531, + 43.6092912 + ], + [ + 1.3702848, + 43.609554 + ], + [ + 1.3709668, + 43.609971300000005 + ], + [ + 1.3714785, + 43.6103869 + ], + [ + 1.3719919999999999, + 43.610764200000006 + ], + [ + 1.3723428, + 43.611062000000004 + ], + [ + 1.3733888, + 43.6121689 + ], + [ + 1.3737689, + 43.612458100000005 + ], + [ + 1.3743869, + 43.61268200000001 + ], + [ + 1.3751741, + 43.6128311 + ], + [ + 1.3758547, + 43.612863100000006 + ], + [ + 1.3817002, + 43.613071600000005 + ], + [ + 1.382879, + 43.613119700000006 + ], + [ + 1.3839123, + 43.613261400000006 + ], + [ + 1.3848335999999999, + 43.6135159 + ], + [ + 1.3857475, + 43.613900300000005 + ], + [ + 1.3869761999999999, + 43.6146207 + ], + [ + 1.3877149, + 43.6153733 + ], + [ + 1.3887369, + 43.619087900000004 + ], + [ + 1.3890332, + 43.6195972 + ], + [ + 1.3895445, + 43.6202964 + ], + [ + 1.3897934, + 43.620547800000004 + ], + [ + 1.3901064, + 43.620771100000006 + ], + [ + 1.3905688, + 43.621044000000005 + ], + [ + 1.3912854, + 43.6213716 + ], + [ + 1.3918474, + 43.6215514 + ], + [ + 1.3924003, + 43.621621700000006 + ], + [ + 1.3932416, + 43.6216749 + ], + [ + 1.3942165, + 43.621601500000004 + ], + [ + 1.3955894, + 43.6215727 + ], + [ + 1.3972229, + 43.6215283 + ], + [ + 1.4001946, + 43.6210517 + ], + [ + 1.4024337, + 43.6206867 + ], + [ + 1.403554, + 43.620581300000005 + ], + [ + 1.4044839, + 43.620585000000005 + ], + [ + 1.4056266, + 43.620691300000004 + ], + [ + 1.4063029, + 43.620771600000005 + ], + [ + 1.4069791, + 43.6208364 + ], + [ + 1.4075301, + 43.620822600000004 + ], + [ + 1.4085479, + 43.6207312 + ], + [ + 1.4102848, + 43.6205749 + ], + [ + 1.4111752, + 43.62051 + ], + [ + 1.4210628, + 43.6195223 + ], + [ + 1.4218834, + 43.619559200000005 + ], + [ + 1.4222567, + 43.619598800000006 + ], + [ + 1.4226299, + 43.619696600000005 + ], + [ + 1.4232119, + 43.619919200000005 + ], + [ + 1.4241721999999999, + 43.6202551 + ], + [ + 1.4248877, + 43.620552 + ], + [ + 1.4254666, + 43.620876100000004 + ], + [ + 1.4259461, + 43.621314100000006 + ], + [ + 1.4268463, + 43.622384800000006 + ], + [ + 1.4271620999999999, + 43.6235766 + ], + [ + 1.4274459, + 43.624846000000005 + ], + [ + 1.4272418, + 43.6261906 + ], + [ + 1.4276162, + 43.62763330000001 + ], + [ + 1.4278395, + 43.628462400000004 + ], + [ + 1.4279589, + 43.628948400000006 + ], + [ + 1.4280004, + 43.629467600000005 + ], + [ + 1.4280126, + 43.6314051 + ], + [ + 1.4280044, + 43.631771900000004 + ], + [ + 1.4279982, + 43.6322697 + ], + [ + 1.4280093, + 43.6330053 + ], + [ + 1.4281501, + 43.6334424 + ], + [ + 1.4284059, + 43.633815600000005 + ], + [ + 1.4286889, + 43.6341126 + ], + [ + 1.4290365, + 43.6343643 + ], + [ + 1.4296138999999999, + 43.63473200000001 + ], + [ + 1.4316732, + 43.635825600000004 + ], + [ + 1.4327227, + 43.636488500000006 + ], + [ + 1.4334948, + 43.636798600000006 + ], + [ + 1.4339927, + 43.6368985 + ], + [ + 1.4344521, + 43.6369209 + ], + [ + 1.4349262, + 43.6368688 + ], + [ + 1.4355601, + 43.636715200000005 + ], + [ + 1.4360344999999999, + 43.636490900000005 + ], + [ + 1.4366117, + 43.636077400000005 + ], + [ + 1.4372034, + 43.635522 + ], + [ + 1.4375669, + 43.6352065 + ], + [ + 1.4378307, + 43.6349371 + ], + [ + 1.4380362, + 43.634664300000004 + ], + [ + 1.4387815, + 43.633416700000005 + ], + [ + 1.4393164999999999, + 43.6325675 + ], + [ + 1.4396796, + 43.632084500000005 + ], + [ + 1.4400128, + 43.631739100000004 + ], + [ + 1.4401995, + 43.6315893 + ], + [ + 1.4411232999999999, + 43.630881200000005 + ], + [ + 1.4416152, + 43.630453300000006 + ], + [ + 1.4420534999999999, + 43.630023 + ], + [ + 1.4424459, + 43.629536300000005 + ], + [ + 1.4429278, + 43.62883660000001 + ], + [ + 1.4434031999999999, + 43.627895200000005 + ], + [ + 1.4437914, + 43.6268437 + ], + [ + 1.4443691, + 43.625425400000005 + ], + [ + 1.4446622, + 43.6245436 + ], + [ + 1.4447286, + 43.623845900000006 + ], + [ + 1.4446722, + 43.6232577 + ], + [ + 1.4444275, + 43.62242620000001 + ], + [ + 1.443946, + 43.621493300000004 + ], + [ + 1.4438723, + 43.6212559 + ], + [ + 1.4437871, + 43.6208527 + ], + [ + 1.4437726, + 43.6205677 + ], + [ + 1.4438176, + 43.6202793 + ], + [ + 1.4438779, + 43.620038400000006 + ], + [ + 1.4440069, + 43.619820700000005 + ], + [ + 1.4443661, + 43.619381800000006 + ], + [ + 1.4446866, + 43.6191077 + ], + [ + 1.4450414, + 43.6188501 + ], + [ + 1.4456299, + 43.618565800000006 + ], + [ + 1.4463264, + 43.6182516 + ], + [ + 1.4470681, + 43.6179447 + ], + [ + 1.4475316, + 43.6177812 + ], + [ + 1.4479066999999999, + 43.617679900000006 + ], + [ + 1.4483036, + 43.617645 + ], + [ + 1.4487821, + 43.617650700000006 + ], + [ + 1.4492527, + 43.617701600000004 + ], + [ + 1.44962, + 43.617755200000005 + ], + [ + 1.4499834, + 43.6178485 + ], + [ + 1.450308, + 43.617959500000005 + ], + [ + 1.4506013, + 43.618107300000005 + ], + [ + 1.4512466, + 43.618585800000005 + ], + [ + 1.4516062, + 43.6188487 + ], + [ + 1.4520855, + 43.619108600000004 + ], + [ + 1.4529044, + 43.619396900000005 + ], + [ + 1.4533645, + 43.6194792 + ], + [ + 1.4538824, + 43.6194812 + ], + [ + 1.4543165, + 43.6194538 + ], + [ + 1.4545481, + 43.6193995 + ], + [ + 1.4548410999999999, + 43.61931980000001 + ], + [ + 1.4551074, + 43.619220600000006 + ], + [ + 1.4561475, + 43.6187144 + ], + [ + 1.4563861, + 43.6186057 + ], + [ + 1.4574918, + 43.618005100000005 + ], + [ + 1.4577294, + 43.6178326 + ], + [ + 1.4579043999999999, + 43.6176657 + ], + [ + 1.4580723, + 43.61748480000001 + ], + [ + 1.4582754, + 43.6171991 + ], + [ + 1.4583872, + 43.6169723 + ], + [ + 1.4584677, + 43.6166946 + ], + [ + 1.458509, + 43.616472 + ], + [ + 1.4584975, + 43.616194300000004 + ], + [ + 1.4584587, + 43.6159547 + ], + [ + 1.4583964, + 43.615718 + ], + [ + 1.4579535, + 43.61450120000001 + ], + [ + 1.457695, + 43.613507500000004 + ], + [ + 1.4575033, + 43.6130799 + ], + [ + 1.4571509, + 43.612636300000005 + ], + [ + 1.456914, + 43.6123933 + ], + [ + 1.4566136, + 43.6121357 + ], + [ + 1.4561197, + 43.611771700000006 + ], + [ + 1.4553927, + 43.6112837 + ], + [ + 1.4550986, + 43.611084500000004 + ], + [ + 1.4548998, + 43.6109354 + ], + [ + 1.4547144, + 43.6107766 + ], + [ + 1.4544876, + 43.610538600000005 + ], + [ + 1.4542876, + 43.610261900000005 + ], + [ + 1.4539718, + 43.6097119 + ], + [ + 1.4539095, + 43.6095296 + ], + [ + 1.4538436, + 43.6092464 + ], + [ + 1.4538294, + 43.608794100000004 + ], + [ + 1.4542439, + 43.6046473 + ], + [ + 1.4542822, + 43.604034500000004 + ], + [ + 1.4541034, + 43.6036511 + ], + [ + 1.4538043999999999, + 43.603341400000005 + ], + [ + 1.4532863, + 43.602989300000004 + ], + [ + 1.4527682, + 43.6026966 + ], + [ + 1.4523665, + 43.6023573 + ], + [ + 1.4520233, + 43.6018084 + ], + [ + 1.4519336999999999, + 43.6012387 + ], + [ + 1.4518876, + 43.6008136 + ], + [ + 1.4519256, + 43.600257400000004 + ], + [ + 1.4522961, + 43.5967825 + ], + [ + 1.452348, + 43.5965469 + ], + [ + 1.4524366, + 43.5963161 + ], + [ + 1.4525789, + 43.5960617 + ], + [ + 1.452763, + 43.5958375 + ], + [ + 1.452996, + 43.5956011 + ], + [ + 1.4532969, + 43.5953698 + ], + [ + 1.4536461999999999, + 43.5951651 + ], + [ + 1.4554543, + 43.594462 + ], + [ + 1.4557544, + 43.594376100000005 + ], + [ + 1.4560716, + 43.5943114 + ], + [ + 1.4564424, + 43.594262 + ], + [ + 1.4569301, + 43.594224600000004 + ], + [ + 1.4574448, + 43.5942055 + ], + [ + 1.4657888, + 43.5938444 + ], + [ + 1.4678739, + 43.5937513 + ], + [ + 1.4681397, + 43.5937483 + ], + [ + 1.469502, + 43.5938074 + ], + [ + 1.4700494, + 43.59382110000001 + ], + [ + 1.4706938999999999, + 43.5938129 + ], + [ + 1.4712898, + 43.5937707 + ], + [ + 1.4726691, + 43.593582700000006 + ], + [ + 1.4730622, + 43.593513300000005 + ], + [ + 1.4735094, + 43.5933135 + ], + [ + 1.4744488, + 43.592960000000005 + ], + [ + 1.4749259, + 43.5928035 + ], + [ + 1.4754876, + 43.5926218 + ], + [ + 1.4762571, + 43.5924538 + ], + [ + 1.4766415, + 43.592339800000005 + ], + [ + 1.4788845, + 43.5916428 + ], + [ + 1.4802304, + 43.591228300000004 + ], + [ + 1.4821107, + 43.590680400000004 + ], + [ + 1.482582, + 43.5905087 + ], + [ + 1.4830748, + 43.590290200000005 + ], + [ + 1.483404, + 43.5900808 + ], + [ + 1.4837824, + 43.58978200000001 + ], + [ + 1.4840845, + 43.589486 + ], + [ + 1.4843744, + 43.589104600000006 + ], + [ + 1.4845402, + 43.5888209 + ], + [ + 1.4846494, + 43.588567000000005 + ], + [ + 1.4847517, + 43.588235700000006 + ], + [ + 1.4847938999999999, + 43.5878924 + ], + [ + 1.4848051, + 43.5874529 + ], + [ + 1.4847561, + 43.5870254 + ], + [ + 1.4842998, + 43.585689300000006 + ], + [ + 1.4833579, + 43.5791843 + ], + [ + 1.4833415, + 43.5790919 + ], + [ + 1.4832025, + 43.57825570000001 + ], + [ + 1.4829159, + 43.5773542 + ], + [ + 1.4812891, + 43.573796400000006 + ], + [ + 1.4812436, + 43.5735168 + ], + [ + 1.481244, + 43.5732233 + ], + [ + 1.4813913, + 43.572305400000005 + ], + [ + 1.4815729, + 43.571398300000006 + ], + [ + 1.4816484, + 43.571004900000005 + ], + [ + 1.4817087, + 43.5707941 + ], + [ + 1.4817704, + 43.570632800000006 + ], + [ + 1.4818896, + 43.570396800000005 + ], + [ + 1.4820332999999999, + 43.570192600000006 + ], + [ + 1.482217, + 43.5699818 + ], + [ + 1.4826887, + 43.5695618 + ] + ] + }, + "properties": { + "line": "ToulouseC", + "name": "C", + "color": "#52B149", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4855419, + 43.567211400000005 + ], + [ + 1.4865575, + 43.566374800000006 + ], + [ + 1.4867231, + 43.566247000000004 + ], + [ + 1.4868968, + 43.5661324 + ], + [ + 1.4870851999999999, + 43.5660225 + ], + [ + 1.4872636, + 43.565944300000005 + ], + [ + 1.4874835, + 43.5658656 + ], + [ + 1.4877839, + 43.565780100000005 + ], + [ + 1.4882553, + 43.5656611 + ], + [ + 1.4887247, + 43.5655493 + ], + [ + 1.4891847, + 43.5654186 + ], + [ + 1.4896085, + 43.565235900000005 + ], + [ + 1.4898707, + 43.56507800000001 + ], + [ + 1.4907652, + 43.564360400000005 + ], + [ + 1.4908658, + 43.564290400000004 + ], + [ + 1.4911501, + 43.564131 + ], + [ + 1.4915189, + 43.563923100000004 + ], + [ + 1.4924001, + 43.5634862 + ], + [ + 1.4929955, + 43.563179700000006 + ], + [ + 1.4940885, + 43.562614100000005 + ], + [ + 1.4942427, + 43.5625354 + ], + [ + 1.4943674, + 43.5624528 + ], + [ + 1.4944828, + 43.562355600000004 + ], + [ + 1.4946129, + 43.562232200000004 + ], + [ + 1.4947054, + 43.562122300000006 + ], + [ + 1.4947818, + 43.562006700000005 + ], + [ + 1.4948408, + 43.5618891 + ], + [ + 1.4948957999999999, + 43.56173750000001 + ], + [ + 1.4949294, + 43.56138180000001 + ], + [ + 1.4949334, + 43.561024200000006 + ], + [ + 1.4949347, + 43.5606646 + ], + [ + 1.4949440999999999, + 43.5603051 + ], + [ + 1.4949468, + 43.55994260000001 + ], + [ + 1.4949481, + 43.5597122 + ], + [ + 1.4949615, + 43.5594819 + ], + [ + 1.4950219, + 43.559120400000005 + ], + [ + 1.495164, + 43.558781200000006 + ], + [ + 1.4953786, + 43.558454700000006 + ], + [ + 1.495624, + 43.5581417 + ], + [ + 1.4958695, + 43.557830700000004 + ], + [ + 1.4961149, + 43.55751780000001 + ], + [ + 1.4963066999999999, + 43.557269000000005 + ], + [ + 1.4964703, + 43.5570017 + ], + [ + 1.4966326, + 43.5566625 + ], + [ + 1.4967801, + 43.5563233 + ], + [ + 1.4969169, + 43.555976400000006 + ], + [ + 1.4970255, + 43.55562260000001 + ], + [ + 1.4971046, + 43.555271700000006 + ], + [ + 1.4971837, + 43.554918 + ], + [ + 1.497287, + 43.5545671 + ], + [ + 1.4974453, + 43.554214300000005 + ], + [ + 1.4976491, + 43.5539198 + ], + [ + 1.4979214, + 43.553587400000005 + ], + [ + 1.4980528, + 43.553454200000004 + ], + [ + 1.4981948999999999, + 43.5533128 + ], + [ + 1.4983331, + 43.5532059 + ], + [ + 1.4984987, + 43.553086300000004 + ], + [ + 1.4986596, + 43.552982300000004 + ], + [ + 1.4988635, + 43.55286280000001 + ], + [ + 1.4990372, + 43.5527753 + ], + [ + 1.4992457, + 43.5526801 + ], + [ + 1.4995193, + 43.5525712 + ], + [ + 1.4997667, + 43.5524837 + ], + [ + 1.4999719, + 43.552424 + ], + [ + 1.5002354, + 43.552360300000004 + ], + [ + 1.5004869, + 43.552311200000005 + ], + [ + 1.5007538, + 43.5522709 + ], + [ + 1.5010025, + 43.5522451 + ], + [ + 1.50125, + 43.552231500000005 + ], + [ + 1.5015242, + 43.552224700000004 + ], + [ + 1.5018253, + 43.552231000000006 + ], + [ + 1.5033072, + 43.552287400000004 + ], + [ + 1.5034762, + 43.5522855 + ], + [ + 1.5036270999999999, + 43.552272800000004 + ], + [ + 1.5038242, + 43.5522441 + ], + [ + 1.5039919, + 43.5522082 + ], + [ + 1.5041776, + 43.5521528 + ], + [ + 1.5043231, + 43.552100300000006 + ], + [ + 1.5044579, + 43.5520361 + ], + [ + 1.5046027, + 43.5519526 + ], + [ + 1.5047154, + 43.551875300000006 + ], + [ + 1.5048342, + 43.551778000000006 + ], + [ + 1.5054775, + 43.551128000000006 + ], + [ + 1.505895, + 43.5507118 + ], + [ + 1.5061359, + 43.550385600000006 + ], + [ + 1.5063075, + 43.5500428 + ], + [ + 1.5064591, + 43.5496987 + ], + [ + 1.5067567, + 43.549021 + ], + [ + 1.5069505, + 43.5486792 + ], + [ + 1.5072003999999999, + 43.5483722 + ], + [ + 1.5088218, + 43.546750900000006 + ], + [ + 1.5096865, + 43.5458743 + ], + [ + 1.5099007, + 43.5455575 + ], + [ + 1.5099688, + 43.5453509 + ], + [ + 1.509994, + 43.5450778 + ], + [ + 1.5099586, + 43.544849000000006 + ], + [ + 1.5098198999999999, + 43.544509000000005 + ], + [ + 1.5097368, + 43.544335800000006 + ], + [ + 1.5094764, + 43.543843300000006 + ], + [ + 1.5093104, + 43.543507700000006 + ], + [ + 1.5091367, + 43.5431467 + ], + [ + 1.509088, + 43.5429833 + ], + [ + 1.5090636, + 43.5427801 + ], + [ + 1.5090804, + 43.5426013 + ], + [ + 1.5091322, + 43.542397 + ], + [ + 1.5092007, + 43.542250200000005 + ], + [ + 1.5092951, + 43.542112200000005 + ], + [ + 1.5094185, + 43.5419731 + ], + [ + 1.510067, + 43.541333 + ], + [ + 1.5103646, + 43.5410404 + ], + [ + 1.5106526, + 43.540761 + ], + [ + 1.5109842, + 43.540469200000004 + ], + [ + 1.5113401, + 43.5402202 + ], + [ + 1.5117, + 43.539982900000005 + ], + [ + 1.5120787, + 43.539751800000005 + ], + [ + 1.512376, + 43.5395982 + ], + [ + 1.5127054, + 43.539466600000004 + ], + [ + 1.5131615999999999, + 43.539334000000004 + ], + [ + 1.513616, + 43.539203300000004 + ], + [ + 1.5145326, + 43.5389549 + ], + [ + 1.514991, + 43.5388098 + ], + [ + 1.5154242, + 43.53862590000001 + ], + [ + 1.5158141, + 43.538408000000004 + ], + [ + 1.516217, + 43.5381854 + ], + [ + 1.5166415, + 43.537998200000004 + ], + [ + 1.5170677, + 43.537891300000005 + ], + [ + 1.5174786, + 43.5378351 + ], + [ + 1.5180272, + 43.537811700000006 + ], + [ + 1.5183181, + 43.537840900000006 + ], + [ + 1.5185602, + 43.5378872 + ], + [ + 1.5187777, + 43.537947100000004 + ], + [ + 1.5189792, + 43.5380101 + ], + [ + 1.5191653999999999, + 43.5380903 + ], + [ + 1.5196863, + 43.538367900000004 + ], + [ + 1.520731, + 43.539009300000004 + ], + [ + 1.5226445, + 43.5401486 + ] + ] + }, + "properties": { + "line": "ToulouseC", + "name": "C", + "color": "#52B149", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3334151, + 43.6038969 + ], + [ + 1.3352859, + 43.6044107 + ], + [ + 1.3382549, + 43.60518750000001 + ], + [ + 1.341791, + 43.6061326 + ], + [ + 1.3449959, + 43.607140300000005 + ], + [ + 1.353828, + 43.60880890000001 + ], + [ + 1.3558311, + 43.6092031 + ], + [ + 1.3566529, + 43.6093344 + ], + [ + 1.3568168, + 43.6093453 + ] + ] + }, + "properties": { + "line": "ToulouseC", + "name": "C", + "color": "#52B149", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4826887, + 43.5695618 + ], + [ + 1.4855419, + 43.567211400000005 + ] + ] + }, + "properties": { + "line": "ToulouseC", + "name": "C", + "color": "#52B149", + "order": 4 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.418282, + 43.5928211 + ], + [ + 1.4179327, + 43.592848200000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4179327, + 43.592848200000006 + ], + [ + 1.4177292, + 43.5928638 + ], + [ + 1.4176672, + 43.5928684 + ], + [ + 1.4175962, + 43.592877900000005 + ], + [ + 1.4175432, + 43.5928881 + ], + [ + 1.4174955999999999, + 43.592901700000006 + ], + [ + 1.417446, + 43.5929177 + ], + [ + 1.4173253, + 43.5929615 + ], + [ + 1.4171634, + 43.593030000000006 + ], + [ + 1.4169063, + 43.5931316 + ], + [ + 1.4165467, + 43.5932759 + ], + [ + 1.4164501999999999, + 43.593315600000004 + ], + [ + 1.4164005, + 43.593335 + ], + [ + 1.4163497, + 43.593355800000005 + ], + [ + 1.4162641, + 43.5933895 + ], + [ + 1.4161586, + 43.5934255 + ], + [ + 1.416093, + 43.593445900000006 + ], + [ + 1.4160766, + 43.5934503 + ], + [ + 1.4159739, + 43.5934777 + ], + [ + 1.4158663, + 43.593501700000004 + ], + [ + 1.4157823999999999, + 43.5935155 + ], + [ + 1.4156678999999999, + 43.5935308 + ], + [ + 1.4155646, + 43.5935405 + ], + [ + 1.4154195, + 43.5935464 + ], + [ + 1.4151495, + 43.593540700000005 + ], + [ + 1.4148947, + 43.593528400000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3969356, + 43.6182328 + ], + [ + 1.396924, + 43.6185344 + ], + [ + 1.3969207, + 43.6186507 + ], + [ + 1.3969112, + 43.618872800000005 + ], + [ + 1.3969080999999999, + 43.618950600000005 + ], + [ + 1.3968529, + 43.6203635 + ], + [ + 1.396843, + 43.620618300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3756536, + 43.648555 + ], + [ + 1.3755707, + 43.648745700000006 + ], + [ + 1.3754831, + 43.648950500000005 + ], + [ + 1.3754188, + 43.6491008 + ], + [ + 1.3753594, + 43.6492294 + ], + [ + 1.3750995, + 43.6498088 + ], + [ + 1.374848, + 43.650357500000005 + ], + [ + 1.3745489, + 43.651009 + ], + [ + 1.3744882, + 43.6511451 + ], + [ + 1.3744321, + 43.651275000000005 + ], + [ + 1.3743665, + 43.651490800000005 + ], + [ + 1.3743473, + 43.6515762 + ], + [ + 1.3743244, + 43.651736500000005 + ], + [ + 1.3743097, + 43.651937800000006 + ], + [ + 1.3743207, + 43.652151100000005 + ], + [ + 1.3743509, + 43.652320700000004 + ], + [ + 1.3744196, + 43.6525843 + ], + [ + 1.3744792, + 43.652813200000004 + ], + [ + 1.3744973999999999, + 43.652934 + ], + [ + 1.3744991, + 43.6529644 + ], + [ + 1.3745047, + 43.653064500000006 + ], + [ + 1.374502, + 43.653198200000006 + ], + [ + 1.3744745, + 43.653368500000006 + ], + [ + 1.3744306, + 43.6535499 + ], + [ + 1.3743683, + 43.653693000000004 + ], + [ + 1.3742731, + 43.653871200000005 + ], + [ + 1.3740263, + 43.654257400000006 + ], + [ + 1.3739985, + 43.654301000000004 + ], + [ + 1.3739453, + 43.654372300000006 + ], + [ + 1.3738401, + 43.6545162 + ], + [ + 1.3737533, + 43.654634900000005 + ], + [ + 1.3736002999999999, + 43.654844100000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3967848, + 43.621537800000006 + ], + [ + 1.3967707, + 43.621593000000004 + ], + [ + 1.3967513999999999, + 43.6216384 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3934967999999999, + 43.625494800000006 + ], + [ + 1.3933648, + 43.625715400000004 + ], + [ + 1.3930647, + 43.6262126 + ], + [ + 1.39278, + 43.6266558 + ], + [ + 1.3925021, + 43.6270943 + ], + [ + 1.3924349, + 43.6272043 + ], + [ + 1.3923687, + 43.6273203 + ], + [ + 1.3922545, + 43.627573600000005 + ], + [ + 1.3921854999999999, + 43.6277794 + ], + [ + 1.392133, + 43.628030100000004 + ], + [ + 1.3921057, + 43.6282161 + ], + [ + 1.3920538, + 43.6285985 + ], + [ + 1.391988, + 43.629106400000005 + ], + [ + 1.3919374, + 43.629478000000006 + ], + [ + 1.3918715, + 43.6299738 + ], + [ + 1.3918437, + 43.6301791 + ], + [ + 1.3917924, + 43.6305677 + ], + [ + 1.3917804, + 43.630649500000004 + ], + [ + 1.391762, + 43.6307753 + ], + [ + 1.3917483, + 43.630878800000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4094468, + 43.5948773 + ], + [ + 1.4095398, + 43.595097800000005 + ], + [ + 1.4095445, + 43.5951089 + ], + [ + 1.409671, + 43.5954088 + ], + [ + 1.4097251, + 43.595532600000006 + ], + [ + 1.4099201, + 43.5960027 + ], + [ + 1.4099667, + 43.596108400000006 + ], + [ + 1.4100002, + 43.596187400000005 + ], + [ + 1.4103086, + 43.596915 + ], + [ + 1.4111445999999999, + 43.5989014 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4114105, + 43.600870300000004 + ], + [ + 1.4114277, + 43.6010794 + ], + [ + 1.4114298, + 43.6011048 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4076857, + 43.6031513 + ], + [ + 1.4074365, + 43.6032631 + ], + [ + 1.407101, + 43.603410700000005 + ], + [ + 1.4069726999999999, + 43.6034656 + ], + [ + 1.406864, + 43.6035121 + ], + [ + 1.4067699, + 43.603554700000004 + ], + [ + 1.4063482, + 43.6037456 + ], + [ + 1.4061067999999999, + 43.603873 + ], + [ + 1.4059723, + 43.6039466 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3853392, + 43.6362609 + ], + [ + 1.3849981, + 43.636266000000006 + ], + [ + 1.3846498999999999, + 43.636271 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3983059, + 43.614106 + ], + [ + 1.3979682, + 43.6141054 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3695304, + 43.660268800000004 + ], + [ + 1.3693321, + 43.660532700000005 + ], + [ + 1.3687601, + 43.661293900000004 + ], + [ + 1.368069, + 43.6622135 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3736002999999999, + 43.654844100000005 + ], + [ + 1.3734582, + 43.655033100000004 + ], + [ + 1.3728581, + 43.6558307 + ], + [ + 1.3722538, + 43.656635200000004 + ], + [ + 1.372172, + 43.6567481 + ], + [ + 1.3711012, + 43.658174700000004 + ], + [ + 1.3710746999999999, + 43.658210100000005 + ], + [ + 1.3705629, + 43.6588974 + ], + [ + 1.3697099, + 43.660030400000004 + ], + [ + 1.3695304, + 43.660268800000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3900763, + 43.636775500000006 + ], + [ + 1.3898286, + 43.6367058 + ], + [ + 1.3897747, + 43.636691600000006 + ], + [ + 1.3889728, + 43.6364797 + ], + [ + 1.3886639, + 43.636398 + ], + [ + 1.3883273999999999, + 43.6363089 + ], + [ + 1.3882642, + 43.6362955 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4020301, + 43.609116900000004 + ], + [ + 1.4020203, + 43.6093069 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3917483, + 43.630878800000005 + ], + [ + 1.3917239, + 43.631088500000004 + ], + [ + 1.3917209, + 43.631114000000004 + ], + [ + 1.3917124, + 43.6311874 + ], + [ + 1.3917023, + 43.631274100000006 + ], + [ + 1.3915794, + 43.6323244 + ], + [ + 1.3915104, + 43.632909000000005 + ], + [ + 1.3914849999999999, + 43.6330864 + ], + [ + 1.3914254, + 43.633503700000006 + ], + [ + 1.3913796, + 43.633823400000004 + ], + [ + 1.3913483, + 43.6340426 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3774815999999999, + 43.644773300000004 + ], + [ + 1.3772026, + 43.6448741 + ], + [ + 1.3767949, + 43.6450188 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4228417, + 43.588914100000004 + ], + [ + 1.4221171, + 43.589375800000006 + ], + [ + 1.4219802, + 43.5894605 + ], + [ + 1.4218340999999999, + 43.589560600000006 + ], + [ + 1.4216857999999999, + 43.5896528 + ], + [ + 1.4213419999999999, + 43.589876600000004 + ], + [ + 1.420461, + 43.5904498 + ], + [ + 1.4202763999999999, + 43.5905733 + ], + [ + 1.4202215, + 43.5906041 + ], + [ + 1.4201656, + 43.5906407 + ], + [ + 1.4201428999999999, + 43.5906551 + ], + [ + 1.4201215, + 43.5906711 + ], + [ + 1.4195111999999999, + 43.5910651 + ], + [ + 1.4194024, + 43.5911416 + ], + [ + 1.4193263999999999, + 43.591203 + ], + [ + 1.419309, + 43.5912209 + ], + [ + 1.4192318, + 43.591294500000004 + ], + [ + 1.4191951999999999, + 43.5913428 + ], + [ + 1.4191478, + 43.5914086 + ], + [ + 1.4191377, + 43.591422300000005 + ], + [ + 1.4191215, + 43.5914494 + ], + [ + 1.4191075, + 43.591472800000005 + ], + [ + 1.4190934, + 43.5915039 + ], + [ + 1.4190625, + 43.5915814 + ], + [ + 1.4190542, + 43.5916055 + ], + [ + 1.4190368, + 43.5916562 + ], + [ + 1.4190245, + 43.5917169 + ], + [ + 1.4190132, + 43.591772500000005 + ], + [ + 1.4190151, + 43.591838700000004 + ], + [ + 1.4190156999999999, + 43.5918615 + ], + [ + 1.4190185, + 43.591883700000004 + ], + [ + 1.4190624, + 43.5922526 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4228417, + 43.588914100000004 + ], + [ + 1.4232032, + 43.5886833 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.435154, + 43.592678400000004 + ], + [ + 1.4350544, + 43.592688100000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.44207, + 43.592093600000005 + ], + [ + 1.4420788, + 43.592094100000004 + ], + [ + 1.4421404, + 43.5921018 + ], + [ + 1.4421912, + 43.592114300000006 + ], + [ + 1.4422495, + 43.5921322 + ], + [ + 1.4423059, + 43.592149400000004 + ], + [ + 1.4424016, + 43.5921839 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.435154, + 43.592678400000004 + ], + [ + 1.4354646, + 43.5926483 + ], + [ + 1.4357988, + 43.5926199 + ], + [ + 1.4396261, + 43.592294100000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3913483, + 43.6340426 + ], + [ + 1.3913183, + 43.6342573 + ], + [ + 1.3913089, + 43.6343316 + ], + [ + 1.391301, + 43.634394400000005 + ], + [ + 1.3912569, + 43.6347424 + ], + [ + 1.3912451, + 43.634835700000004 + ], + [ + 1.3912352, + 43.634913600000004 + ], + [ + 1.39121, + 43.6351171 + ], + [ + 1.3911183999999999, + 43.635777000000004 + ], + [ + 1.3910115, + 43.636608 + ], + [ + 1.3909943999999999, + 43.6367075 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3819921, + 43.6407558 + ], + [ + 1.3806137, + 43.641233500000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3967848, + 43.621537800000006 + ], + [ + 1.3967991, + 43.621453300000006 + ], + [ + 1.3968091, + 43.6212651 + ], + [ + 1.3968144, + 43.621174700000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4402243, + 43.5922417 + ], + [ + 1.4404232, + 43.5922229 + ], + [ + 1.4407203, + 43.5921972 + ], + [ + 1.4416295, + 43.5921187 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4396261, + 43.592294100000004 + ], + [ + 1.4397643, + 43.592282000000004 + ], + [ + 1.4399793, + 43.592263100000004 + ], + [ + 1.4401338, + 43.5922496 + ], + [ + 1.4402243, + 43.5922417 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3967513999999999, + 43.6216384 + ], + [ + 1.3967003, + 43.621726100000004 + ], + [ + 1.3966389, + 43.621797400000005 + ], + [ + 1.3965976, + 43.6218366 + ], + [ + 1.3965459, + 43.621877700000006 + ], + [ + 1.3964348, + 43.6219638 + ], + [ + 1.3962119, + 43.622134700000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4232032, + 43.5886833 + ], + [ + 1.4236290999999999, + 43.5884031 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4236290999999999, + 43.5884031 + ], + [ + 1.424019, + 43.588147500000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3624721, + 43.663718900000006 + ], + [ + 1.3623942, + 43.6638396 + ], + [ + 1.3622562, + 43.6640559 + ], + [ + 1.3620048, + 43.6644553 + ], + [ + 1.3619885, + 43.6644811 + ], + [ + 1.3619137, + 43.6645964 + ], + [ + 1.3618758, + 43.664653300000005 + ], + [ + 1.3617932, + 43.6647827 + ], + [ + 1.3616552, + 43.664999 + ], + [ + 1.3615051, + 43.665243200000006 + ], + [ + 1.3614035, + 43.665408500000005 + ], + [ + 1.3612931, + 43.665569600000005 + ], + [ + 1.3612748, + 43.665596400000005 + ], + [ + 1.3611921999999999, + 43.6657257 + ], + [ + 1.3610541999999999, + 43.665942 + ], + [ + 1.3608168, + 43.666321200000006 + ], + [ + 1.3606738, + 43.666539400000005 + ], + [ + 1.3601809999999999, + 43.667318900000005 + ], + [ + 1.3599853, + 43.667628500000006 + ], + [ + 1.3598594, + 43.667827700000004 + ], + [ + 1.3598127, + 43.6678993 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3671222, + 43.6623918 + ], + [ + 1.3668045, + 43.662353200000005 + ], + [ + 1.3658215, + 43.662233900000004 + ], + [ + 1.3648483, + 43.6621157 + ], + [ + 1.3641225, + 43.6620265 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.368069, + 43.6622135 + ], + [ + 1.3680364999999999, + 43.6622568 + ], + [ + 1.3679871, + 43.6623104 + ], + [ + 1.3679699, + 43.6623229 + ], + [ + 1.3679388, + 43.662348400000006 + ], + [ + 1.3678945, + 43.6623765 + ], + [ + 1.3678489, + 43.6623978 + ], + [ + 1.3677792, + 43.662423100000005 + ], + [ + 1.3677162, + 43.6624357 + ], + [ + 1.3676584999999999, + 43.6624434 + ], + [ + 1.3676008, + 43.6624454 + ], + [ + 1.3675431, + 43.6624429 + ], + [ + 1.3674967, + 43.6624373 + ], + [ + 1.3671222, + 43.6623918 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3767949, + 43.6450188 + ], + [ + 1.3767192, + 43.645049900000004 + ], + [ + 1.3766763, + 43.6450741 + ], + [ + 1.3766447, + 43.645093200000005 + ], + [ + 1.3766226, + 43.645111 + ], + [ + 1.3765863999999999, + 43.645143000000004 + ], + [ + 1.3765734, + 43.645160700000005 + ], + [ + 1.3765515, + 43.6451896 + ], + [ + 1.376534, + 43.6452225 + ], + [ + 1.3765207, + 43.645253600000004 + ], + [ + 1.3765148, + 43.6452844 + ], + [ + 1.3765106999999999, + 43.6453373 + ], + [ + 1.376514, + 43.645365700000006 + ], + [ + 1.3765207, + 43.6454016 + ], + [ + 1.3765328, + 43.6454308 + ], + [ + 1.3765468, + 43.6454536 + ], + [ + 1.3767353, + 43.6457284 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3767353, + 43.6457284 + ], + [ + 1.3767514, + 43.645762700000006 + ], + [ + 1.3767683, + 43.6458005 + ], + [ + 1.3767822, + 43.645842200000004 + ], + [ + 1.3767942, + 43.6458923 + ], + [ + 1.376797, + 43.6459325 + ], + [ + 1.3767968, + 43.645970500000004 + ], + [ + 1.3767903, + 43.6460121 + ], + [ + 1.3767806, + 43.6460516 + ], + [ + 1.3767508, + 43.6461218 + ], + [ + 1.3766848, + 43.6462651 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3766848, + 43.6462651 + ], + [ + 1.3763845, + 43.646916700000006 + ], + [ + 1.3760874, + 43.6475705 + ], + [ + 1.3759403, + 43.647901100000006 + ], + [ + 1.3758959, + 43.648002700000006 + ], + [ + 1.3758599, + 43.6480848 + ], + [ + 1.3757534, + 43.6483276 + ], + [ + 1.3756536, + 43.648555 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.378554, + 43.644386100000006 + ], + [ + 1.3782273, + 43.6445002 + ], + [ + 1.3777542, + 43.644674300000005 + ], + [ + 1.3774815999999999, + 43.644773300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3789542, + 43.6435194 + ], + [ + 1.3789444, + 43.643552 + ], + [ + 1.3789341, + 43.6435972 + ], + [ + 1.3789306, + 43.6436398 + ], + [ + 1.3789326, + 43.6436657 + ], + [ + 1.3789339999999999, + 43.6436798 + ], + [ + 1.3789373999999999, + 43.6436951 + ], + [ + 1.3789424, + 43.6437084 + ], + [ + 1.3789498, + 43.643723300000005 + ], + [ + 1.3789567999999999, + 43.6437353 + ], + [ + 1.3790474, + 43.6438805 + ], + [ + 1.3790856, + 43.643959900000006 + ], + [ + 1.3790936999999999, + 43.6439813 + ], + [ + 1.3790963, + 43.643995800000006 + ], + [ + 1.3790977, + 43.644022500000005 + ], + [ + 1.3790959999999999, + 43.6440454 + ], + [ + 1.3790951999999999, + 43.6440503 + ], + [ + 1.3790921, + 43.644069800000004 + ], + [ + 1.3790824, + 43.6440969 + ], + [ + 1.3790565, + 43.64414 + ], + [ + 1.3790305999999999, + 43.644173900000006 + ], + [ + 1.3789970999999999, + 43.644203000000005 + ], + [ + 1.378985, + 43.6442119 + ], + [ + 1.3789475, + 43.644234100000006 + ], + [ + 1.3789083, + 43.644253400000004 + ], + [ + 1.378709, + 43.644331900000005 + ], + [ + 1.378554, + 43.644386100000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3795875, + 43.642215300000004 + ], + [ + 1.3795761, + 43.642238400000004 + ], + [ + 1.3795206, + 43.6423507 + ], + [ + 1.379464, + 43.642467200000006 + ], + [ + 1.3792514999999999, + 43.642904200000004 + ], + [ + 1.3792241, + 43.6429606 + ], + [ + 1.3791952, + 43.643020500000006 + ], + [ + 1.3789542, + 43.6435194 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3806137, + 43.641233500000006 + ], + [ + 1.3805424, + 43.6412582 + ], + [ + 1.3805171, + 43.641268000000004 + ], + [ + 1.3804789, + 43.641282700000005 + ], + [ + 1.3804553, + 43.6412941 + ], + [ + 1.3804414, + 43.6413026 + ], + [ + 1.3804213, + 43.6413176 + ], + [ + 1.3804058, + 43.641333200000005 + ], + [ + 1.3803904, + 43.6413487 + ], + [ + 1.3803747, + 43.6413699 + ], + [ + 1.3803607, + 43.641390200000004 + ], + [ + 1.3802641, + 43.641575 + ], + [ + 1.3802509, + 43.641595200000005 + ], + [ + 1.3802355, + 43.641616000000006 + ], + [ + 1.3802221, + 43.6416296 + ], + [ + 1.3801973, + 43.641652 + ], + [ + 1.3801678, + 43.6416704 + ], + [ + 1.3801383, + 43.641685800000005 + ], + [ + 1.38008, + 43.6417092 + ], + [ + 1.3800145, + 43.6417324 + ], + [ + 1.3799666, + 43.6417469 + ], + [ + 1.3798740999999999, + 43.6417839 + ], + [ + 1.3798386, + 43.641801400000006 + ], + [ + 1.3798057, + 43.6418242 + ], + [ + 1.3797816, + 43.6418453 + ], + [ + 1.3797635, + 43.641865700000004 + ], + [ + 1.3797517, + 43.641882800000005 + ], + [ + 1.3795875, + 43.642215300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3827163, + 43.640314700000005 + ], + [ + 1.3827079, + 43.6403364 + ], + [ + 1.3826853, + 43.6403873 + ], + [ + 1.3826705, + 43.6404128 + ], + [ + 1.3826555, + 43.640439300000004 + ], + [ + 1.3826374, + 43.640466 + ], + [ + 1.3826178, + 43.640488600000005 + ], + [ + 1.3826038999999999, + 43.640503300000006 + ], + [ + 1.3825798, + 43.6405266 + ], + [ + 1.3825536, + 43.640546500000006 + ], + [ + 1.3825422, + 43.6405535 + ], + [ + 1.3825288, + 43.640561600000005 + ], + [ + 1.3824825, + 43.6405839 + ], + [ + 1.3824405, + 43.6406008 + ], + [ + 1.3823934, + 43.6406171 + ], + [ + 1.3819921, + 43.6407558 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3846498999999999, + 43.636271 + ], + [ + 1.3846156, + 43.6362715 + ], + [ + 1.384507, + 43.636274300000004 + ], + [ + 1.3844695, + 43.636276800000005 + ], + [ + 1.3844212999999999, + 43.636281600000004 + ], + [ + 1.384383, + 43.636288400000005 + ], + [ + 1.3843482, + 43.6362986 + ], + [ + 1.3843187, + 43.6363093 + ], + [ + 1.3842932, + 43.6363214 + ], + [ + 1.3842567, + 43.6363446 + ], + [ + 1.3842248, + 43.6363709 + ], + [ + 1.3842013, + 43.6363971 + ], + [ + 1.3841879, + 43.6364151 + ], + [ + 1.3841817, + 43.636425100000004 + ], + [ + 1.384148, + 43.6364931 + ], + [ + 1.3840365, + 43.6367904 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3840365, + 43.6367904 + ], + [ + 1.3837951, + 43.637434000000006 + ], + [ + 1.3837427, + 43.6375736 + ], + [ + 1.3836968, + 43.637696500000004 + ], + [ + 1.3832798, + 43.6388121 + ], + [ + 1.383225, + 43.638957000000005 + ], + [ + 1.3831693, + 43.639104700000004 + ], + [ + 1.3829988, + 43.6395569 + ], + [ + 1.3829409, + 43.6397131 + ], + [ + 1.3828964, + 43.639833100000004 + ], + [ + 1.3827311, + 43.6402768 + ], + [ + 1.3827163, + 43.640314700000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3868228999999999, + 43.6362401 + ], + [ + 1.3860563, + 43.636250100000005 + ], + [ + 1.3858887, + 43.6362523 + ], + [ + 1.3857179, + 43.636258000000005 + ], + [ + 1.3853392, + 43.6362609 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3882642, + 43.6362955 + ], + [ + 1.3881617, + 43.636273800000005 + ], + [ + 1.3879964999999999, + 43.6362529 + ], + [ + 1.3879397, + 43.6362457 + ], + [ + 1.3877875, + 43.6362329 + ], + [ + 1.3876053, + 43.636231800000004 + ], + [ + 1.3875038, + 43.636231200000005 + ], + [ + 1.3870958, + 43.6362365 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3909943999999999, + 43.6367075 + ], + [ + 1.3909907, + 43.6367192 + ], + [ + 1.3909847, + 43.6367332 + ], + [ + 1.3909719, + 43.636759500000004 + ], + [ + 1.3909597999999999, + 43.636778400000004 + ], + [ + 1.3909478, + 43.6367944 + ], + [ + 1.3909263, + 43.6368182 + ], + [ + 1.3908981999999999, + 43.636842900000005 + ], + [ + 1.390878, + 43.636855000000004 + ], + [ + 1.3908653, + 43.636862300000004 + ], + [ + 1.3908452, + 43.636872000000004 + ], + [ + 1.3908217, + 43.636882500000006 + ], + [ + 1.3908038999999999, + 43.636889000000004 + ], + [ + 1.3907835, + 43.6368956 + ], + [ + 1.3907624, + 43.6369021 + ], + [ + 1.3907426, + 43.6369072 + ], + [ + 1.3907222, + 43.6369106 + ], + [ + 1.3906967, + 43.636913500000006 + ], + [ + 1.3906635, + 43.636914700000005 + ], + [ + 1.3906333, + 43.636914000000004 + ], + [ + 1.3906018, + 43.636912300000006 + ], + [ + 1.3905834, + 43.6369106 + ], + [ + 1.3905682, + 43.6369084 + ], + [ + 1.3905414, + 43.636903100000005 + ], + [ + 1.3904904, + 43.636890900000004 + ], + [ + 1.3903446, + 43.636850800000005 + ], + [ + 1.3900763, + 43.636775500000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3962119, + 43.622134700000004 + ], + [ + 1.3955768, + 43.622629100000005 + ], + [ + 1.3954979, + 43.6226988 + ], + [ + 1.3954028, + 43.622784700000004 + ], + [ + 1.3952943, + 43.6228957 + ], + [ + 1.3952313, + 43.6229602 + ], + [ + 1.3951076, + 43.6230969 + ], + [ + 1.3949977, + 43.623235900000005 + ], + [ + 1.3949361, + 43.623322300000005 + ], + [ + 1.394805, + 43.623506000000006 + ], + [ + 1.3944343, + 43.624050600000004 + ], + [ + 1.3942189999999999, + 43.6243641 + ], + [ + 1.3939126, + 43.624815000000005 + ], + [ + 1.3937279999999999, + 43.6251151 + ], + [ + 1.3936581, + 43.625229000000004 + ], + [ + 1.3936198, + 43.625291600000004 + ], + [ + 1.3934967999999999, + 43.625494800000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3970681, + 43.6149494 + ], + [ + 1.3970538, + 43.6158355 + ], + [ + 1.3970164999999999, + 43.616781800000005 + ], + [ + 1.3969586999999999, + 43.617682800000004 + ], + [ + 1.3969502, + 43.6178566 + ], + [ + 1.3969459, + 43.618030000000005 + ], + [ + 1.3969356, + 43.6182328 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3979682, + 43.6141054 + ], + [ + 1.3978537, + 43.614105200000004 + ], + [ + 1.3978268, + 43.6141051 + ], + [ + 1.3977707, + 43.6141074 + ], + [ + 1.3977243, + 43.6141124 + ], + [ + 1.3976747, + 43.6141197 + ], + [ + 1.3976351, + 43.614128 + ], + [ + 1.3976005, + 43.614133800000005 + ], + [ + 1.3975547, + 43.614147900000006 + ], + [ + 1.3975051, + 43.6141634 + ], + [ + 1.3974554, + 43.6141814 + ], + [ + 1.3974111999999999, + 43.6142023 + ], + [ + 1.3973837, + 43.6142173 + ], + [ + 1.3973368, + 43.614246 + ], + [ + 1.3973058999999999, + 43.614266300000004 + ], + [ + 1.397282, + 43.6142832 + ], + [ + 1.3972262, + 43.614334500000005 + ], + [ + 1.3972043, + 43.614357000000005 + ], + [ + 1.3971765999999999, + 43.614387300000004 + ], + [ + 1.3971531, + 43.6144199 + ], + [ + 1.3971255999999999, + 43.614461600000006 + ], + [ + 1.3971168999999999, + 43.6144776 + ], + [ + 1.3971095, + 43.614496800000005 + ], + [ + 1.3970890999999999, + 43.6145526 + ], + [ + 1.3970813, + 43.6145848 + ], + [ + 1.3970779, + 43.614612300000005 + ], + [ + 1.3970719, + 43.6147111 + ], + [ + 1.3970681, + 43.6149494 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4007087999999999, + 43.6138272 + ], + [ + 1.4006144, + 43.613867000000006 + ], + [ + 1.4004492, + 43.613928300000005 + ], + [ + 1.4002392, + 43.613992100000004 + ], + [ + 1.4000588, + 43.614032900000005 + ], + [ + 1.3998378999999999, + 43.6140733 + ], + [ + 1.3996416999999999, + 43.614099200000005 + ], + [ + 1.3994414, + 43.614113700000004 + ], + [ + 1.3991584, + 43.6141152 + ], + [ + 1.3986182999999999, + 43.614109400000004 + ], + [ + 1.3983059, + 43.614106 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4014777, + 43.612078100000005 + ], + [ + 1.4014473, + 43.6126584 + ], + [ + 1.4014415, + 43.6127459 + ], + [ + 1.4014398, + 43.6127716 + ], + [ + 1.4014334, + 43.6128658 + ], + [ + 1.4014232, + 43.6130177 + ], + [ + 1.4014198, + 43.6131453 + ], + [ + 1.4014039999999999, + 43.6132265 + ], + [ + 1.4013702, + 43.613314300000006 + ], + [ + 1.4012993, + 43.613428400000004 + ], + [ + 1.4012257, + 43.6135086 + ], + [ + 1.4011444, + 43.613580400000004 + ], + [ + 1.4010481, + 43.613648700000006 + ], + [ + 1.4009228, + 43.613723400000005 + ], + [ + 1.4007692999999999, + 43.6138017 + ], + [ + 1.4007087999999999, + 43.6138272 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4018184, + 43.6113866 + ], + [ + 1.4017618, + 43.611445 + ], + [ + 1.4016079, + 43.611592200000004 + ], + [ + 1.4015738, + 43.611625100000005 + ], + [ + 1.4015483, + 43.6116552 + ], + [ + 1.4015241999999999, + 43.611693200000005 + ], + [ + 1.4015085999999999, + 43.6117318 + ], + [ + 1.4014973, + 43.6117688 + ], + [ + 1.4014921, + 43.6118036 + ], + [ + 1.4014777, + 43.612078100000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4019249, + 43.611150800000004 + ], + [ + 1.4019237, + 43.6111741 + ], + [ + 1.4019177999999999, + 43.6112272 + ], + [ + 1.4019084, + 43.6112563 + ], + [ + 1.401895, + 43.6112874 + ], + [ + 1.4018762, + 43.611317500000006 + ], + [ + 1.4018458999999999, + 43.611358300000006 + ], + [ + 1.4018184, + 43.6113866 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4020203, + 43.6093069 + ], + [ + 1.402019, + 43.6093326 + ], + [ + 1.401992, + 43.6098554 + ], + [ + 1.4019868, + 43.6099563 + ], + [ + 1.4019249, + 43.611150800000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4020595, + 43.608526700000006 + ], + [ + 1.402045, + 43.6088189 + ], + [ + 1.4020415, + 43.608888300000004 + ], + [ + 1.4020301, + 43.609116900000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4020953999999999, + 43.6063929 + ], + [ + 1.4021149, + 43.6064579 + ], + [ + 1.4021204, + 43.6064798 + ], + [ + 1.4021297, + 43.6065326 + ], + [ + 1.4021404, + 43.606606400000004 + ], + [ + 1.4021447, + 43.606671000000006 + ], + [ + 1.4021447, + 43.606796800000005 + ], + [ + 1.402125, + 43.607207100000004 + ], + [ + 1.4021209, + 43.607291000000004 + ], + [ + 1.4020979, + 43.607758700000005 + ], + [ + 1.4020929, + 43.6078594 + ], + [ + 1.4020607, + 43.6085033 + ], + [ + 1.4020595, + 43.608526700000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4022306, + 43.6057342 + ], + [ + 1.4022086, + 43.6057439 + ], + [ + 1.4021618, + 43.6057684 + ], + [ + 1.4021122, + 43.605798500000006 + ], + [ + 1.4020787, + 43.6058267 + ], + [ + 1.4020559, + 43.605850000000004 + ], + [ + 1.4020358, + 43.6058791 + ], + [ + 1.4020021999999999, + 43.6059247 + ], + [ + 1.4019864, + 43.6059732 + ], + [ + 1.4019808, + 43.606008200000005 + ], + [ + 1.4019793999999999, + 43.606040300000004 + ], + [ + 1.4019837, + 43.6060741 + ], + [ + 1.4019998999999999, + 43.6061295 + ], + [ + 1.4020015, + 43.6061336 + ], + [ + 1.4020084, + 43.6061539 + ], + [ + 1.4020867, + 43.606363800000004 + ], + [ + 1.4020953999999999, + 43.6063929 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4040944, + 43.6048958 + ], + [ + 1.4038195, + 43.6050223 + ], + [ + 1.4023575, + 43.6056782 + ], + [ + 1.4022306, + 43.6057342 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4047794, + 43.6045698 + ], + [ + 1.4044372, + 43.604738000000005 + ], + [ + 1.4044249, + 43.6047438 + ], + [ + 1.4040944, + 43.6048958 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4051595, + 43.6043821 + ], + [ + 1.4051072, + 43.604408600000006 + ], + [ + 1.4050457, + 43.6044378 + ], + [ + 1.4049387, + 43.6044898 + ], + [ + 1.4048156, + 43.6045515 + ], + [ + 1.4047794, + 43.6045698 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4059723, + 43.6039466 + ], + [ + 1.4059392, + 43.603964700000006 + ], + [ + 1.4058216, + 43.604027 + ], + [ + 1.4057738, + 43.6040538 + ], + [ + 1.4057068, + 43.604092400000006 + ], + [ + 1.4056142, + 43.604144000000005 + ], + [ + 1.4054067, + 43.604257700000005 + ], + [ + 1.4052031999999999, + 43.604360500000006 + ], + [ + 1.4051858, + 43.6043692 + ], + [ + 1.4051595, + 43.6043821 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4107963, + 43.6017534 + ], + [ + 1.409443, + 43.6023593 + ], + [ + 1.4094149999999999, + 43.602371600000005 + ], + [ + 1.4091551, + 43.6024875 + ], + [ + 1.4091385, + 43.6024941 + ], + [ + 1.4081639, + 43.6029324 + ], + [ + 1.4079500999999999, + 43.603032500000005 + ], + [ + 1.4076857, + 43.6031513 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4114298, + 43.6011048 + ], + [ + 1.4114371, + 43.6011941 + ], + [ + 1.4114355, + 43.6012264 + ], + [ + 1.4114328999999999, + 43.6012507 + ], + [ + 1.4114284, + 43.6012744 + ], + [ + 1.4114144, + 43.6013226 + ], + [ + 1.4113976, + 43.6013633 + ], + [ + 1.4113780999999999, + 43.6013983 + ], + [ + 1.4113634, + 43.6014211 + ], + [ + 1.4113400999999999, + 43.601452200000004 + ], + [ + 1.4113282, + 43.6014658 + ], + [ + 1.4113027, + 43.601492900000004 + ], + [ + 1.4112732, + 43.6015182 + ], + [ + 1.4112316, + 43.601548300000005 + ], + [ + 1.4111966999999999, + 43.6015706 + ], + [ + 1.4111577, + 43.601589700000005 + ], + [ + 1.4111061999999999, + 43.601613 + ], + [ + 1.4107963, + 43.6017534 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4350544, + 43.592688100000004 + ], + [ + 1.4350055, + 43.5926927 + ], + [ + 1.4349569, + 43.592697 + ], + [ + 1.4349003, + 43.5927019 + ], + [ + 1.4348626, + 43.5927043 + ], + [ + 1.4347997, + 43.592700900000004 + ], + [ + 1.4347514, + 43.592698000000006 + ], + [ + 1.4346978, + 43.5926873 + ], + [ + 1.4346509, + 43.5926727 + ], + [ + 1.4346066, + 43.592657200000005 + ], + [ + 1.4345717, + 43.5926417 + ], + [ + 1.4345449, + 43.592628100000006 + ], + [ + 1.4344953, + 43.592595 + ], + [ + 1.4344606, + 43.592565900000004 + ], + [ + 1.4344097, + 43.592512400000004 + ], + [ + 1.4343861, + 43.592487600000005 + ], + [ + 1.4343546999999999, + 43.5924447 + ], + [ + 1.4343278, + 43.592412700000004 + ], + [ + 1.4342785, + 43.592347600000004 + ], + [ + 1.4342464, + 43.5923115 + ], + [ + 1.4342162999999999, + 43.5922776 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4342162999999999, + 43.5922776 + ], + [ + 1.4340011, + 43.5920275 + ], + [ + 1.4338193, + 43.591803000000006 + ], + [ + 1.4335767, + 43.5915035 + ], + [ + 1.4330428, + 43.5908409 + ], + [ + 1.4323523999999999, + 43.5900176 + ], + [ + 1.4321975, + 43.589825000000005 + ], + [ + 1.4320599999999999, + 43.589694900000005 + ], + [ + 1.4319981, + 43.5896227 + ], + [ + 1.4319355999999999, + 43.5895498 + ], + [ + 1.4319125, + 43.589522900000006 + ], + [ + 1.4317905, + 43.5893772 + ], + [ + 1.4316108, + 43.5891597 + ], + [ + 1.4315646, + 43.589097800000005 + ], + [ + 1.4314673, + 43.5889673 + ], + [ + 1.4313097, + 43.5887662 + ], + [ + 1.4311273, + 43.5885455 + ], + [ + 1.4310414999999999, + 43.588441700000004 + ], + [ + 1.4299948, + 43.5871755 + ], + [ + 1.4290973, + 43.586089900000005 + ], + [ + 1.4286481, + 43.585546300000004 + ], + [ + 1.4286139, + 43.585507 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4286139, + 43.585507 + ], + [ + 1.4285847, + 43.5854827 + ], + [ + 1.428549, + 43.5854572 + ], + [ + 1.4285237, + 43.5854438 + ], + [ + 1.4284985, + 43.5854341 + ], + [ + 1.428458, + 43.585420500000005 + ], + [ + 1.4284265, + 43.585413 + ], + [ + 1.4283648, + 43.5854062 + ], + [ + 1.4283204999999999, + 43.5854081 + ], + [ + 1.4282884, + 43.585413300000006 + ], + [ + 1.4282721999999999, + 43.5854159 + ], + [ + 1.4282219999999999, + 43.5854313 + ], + [ + 1.4282059, + 43.585436300000005 + ], + [ + 1.4281827999999999, + 43.585447 + ], + [ + 1.4281416, + 43.585466100000005 + ], + [ + 1.4280386999999999, + 43.5855327 + ], + [ + 1.4278946, + 43.585625300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4278946, + 43.585625300000004 + ], + [ + 1.4276451, + 43.5857856 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4276451, + 43.5857856 + ], + [ + 1.4276122, + 43.585806700000006 + ], + [ + 1.4275151, + 43.585868500000004 + ], + [ + 1.427216, + 43.5860628 + ], + [ + 1.4262759, + 43.586679200000006 + ], + [ + 1.4261702, + 43.586748500000006 + ], + [ + 1.4259998999999999, + 43.586848200000006 + ], + [ + 1.4259533, + 43.5868788 + ], + [ + 1.424019, + 43.588147500000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4190624, + 43.5922526 + ], + [ + 1.4190661, + 43.5922727 + ], + [ + 1.419069, + 43.592291800000005 + ], + [ + 1.4190768999999999, + 43.592345400000006 + ], + [ + 1.4190838, + 43.5924266 + ], + [ + 1.4190833999999999, + 43.5924655 + ], + [ + 1.4190814, + 43.592491300000006 + ], + [ + 1.4190762, + 43.592519700000004 + ], + [ + 1.4190704, + 43.592544000000004 + ], + [ + 1.419062, + 43.5925694 + ], + [ + 1.4190509, + 43.592594500000004 + ], + [ + 1.4190458, + 43.5926028 + ], + [ + 1.4190327999999999, + 43.592622000000006 + ], + [ + 1.4190164, + 43.5926412 + ], + [ + 1.4190013, + 43.5926581 + ], + [ + 1.418968, + 43.5926861 + ], + [ + 1.4189357, + 43.5927086 + ], + [ + 1.4189155, + 43.5927197 + ], + [ + 1.4188939999999999, + 43.5927316 + ], + [ + 1.4188702, + 43.5927428 + ], + [ + 1.4188367, + 43.592756 + ], + [ + 1.4187937, + 43.5927671 + ], + [ + 1.4187508, + 43.5927754 + ], + [ + 1.4187011999999999, + 43.5927822 + ], + [ + 1.4186554, + 43.592788000000006 + ], + [ + 1.4185615999999999, + 43.5927968 + ], + [ + 1.4184588999999999, + 43.5928039 + ], + [ + 1.4182994, + 43.5928197 + ], + [ + 1.418282, + 43.5928211 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4148947, + 43.593528400000004 + ], + [ + 1.4140954, + 43.5934972 + ], + [ + 1.4139362, + 43.593489600000005 + ], + [ + 1.4137834, + 43.593479200000004 + ], + [ + 1.4136049, + 43.5934697 + ], + [ + 1.4134699, + 43.593462 + ], + [ + 1.4113103, + 43.593313300000005 + ], + [ + 1.4101459, + 43.593235500000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4101459, + 43.593235500000006 + ], + [ + 1.4101012, + 43.593232500000006 + ], + [ + 1.4100788, + 43.593231 + ], + [ + 1.4100643, + 43.593230000000005 + ], + [ + 1.4097534, + 43.593209300000005 + ], + [ + 1.409725, + 43.593207400000004 + ], + [ + 1.4097001, + 43.593206200000004 + ], + [ + 1.4096199, + 43.5932024 + ], + [ + 1.4095799, + 43.5932046 + ], + [ + 1.4095383, + 43.593206800000004 + ], + [ + 1.4094834, + 43.5932125 + ], + [ + 1.4094484999999999, + 43.5932162 + ], + [ + 1.4093636999999999, + 43.5932301 + ], + [ + 1.4093373, + 43.5932364 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4091055, + 43.5938596 + ], + [ + 1.4091373, + 43.5940135 + ], + [ + 1.4091475, + 43.594088400000004 + ], + [ + 1.4091523, + 43.5941076 + ], + [ + 1.4091852999999999, + 43.594239200000004 + ], + [ + 1.4092257, + 43.5943557 + ], + [ + 1.409316, + 43.594565200000005 + ], + [ + 1.4093588, + 43.594667400000006 + ], + [ + 1.4094468, + 43.5948773 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4093373, + 43.5932364 + ], + [ + 1.4092713, + 43.593252 + ], + [ + 1.4092006, + 43.593277900000004 + ], + [ + 1.4091472999999999, + 43.5933045 + ], + [ + 1.4091013, + 43.593339 + ], + [ + 1.4090651, + 43.5933828 + ], + [ + 1.4090433, + 43.5934308 + ], + [ + 1.4090386, + 43.5934879 + ], + [ + 1.4090489, + 43.5935633 + ], + [ + 1.4090582, + 43.593611300000006 + ], + [ + 1.4090618, + 43.5936302 + ], + [ + 1.409065, + 43.5936475 + ], + [ + 1.4090801, + 43.5937099 + ], + [ + 1.4091055, + 43.5938596 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4111445999999999, + 43.5989014 + ], + [ + 1.4111959, + 43.5990234 + ], + [ + 1.4112214, + 43.5991032 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4112214, + 43.5991032 + ], + [ + 1.4112331, + 43.5991397 + ], + [ + 1.4112429, + 43.599182600000006 + ], + [ + 1.4112533999999999, + 43.599228600000004 + ], + [ + 1.4112681999999999, + 43.599308900000004 + ], + [ + 1.4112809, + 43.5994431 + ], + [ + 1.4113012, + 43.5996662 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4113012, + 43.5996662 + ], + [ + 1.4113636999999999, + 43.600354800000005 + ], + [ + 1.4113893, + 43.6006367 + ], + [ + 1.4114105, + 43.600870300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3968144, + 43.621174700000005 + ], + [ + 1.396843, + 43.620618300000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3641225, + 43.6620265 + ], + [ + 1.3640579, + 43.6620167 + ], + [ + 1.363961, + 43.662005300000004 + ], + [ + 1.3638724, + 43.6619982 + ], + [ + 1.3637987999999999, + 43.661996800000004 + ], + [ + 1.3637272, + 43.6620026 + ], + [ + 1.3636758, + 43.662014500000005 + ], + [ + 1.3636279, + 43.662030300000005 + ], + [ + 1.3635583, + 43.6620647 + ], + [ + 1.3634911, + 43.6621224 + ], + [ + 1.3634296, + 43.6622112 + ], + [ + 1.3630910999999999, + 43.6627473 + ], + [ + 1.3630082, + 43.662874200000005 + ], + [ + 1.3628567, + 43.6631123 + ], + [ + 1.3628274999999999, + 43.6631617 + ], + [ + 1.3626331, + 43.6634722 + ], + [ + 1.3624894, + 43.6636924 + ], + [ + 1.3624721, + 43.663718900000006 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4424016, + 43.5921839 + ], + [ + 1.4426143, + 43.592260200000005 + ], + [ + 1.4426491, + 43.5922726 + ], + [ + 1.443744, + 43.592664000000006 + ], + [ + 1.4440561, + 43.5927747 + ], + [ + 1.4441945999999999, + 43.592825500000004 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3870958, + 43.6362365 + ], + [ + 1.3868228999999999, + 43.6362401 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4416295, + 43.5921187 + ], + [ + 1.441952, + 43.5920909 + ], + [ + 1.4420278, + 43.5920916 + ], + [ + 1.44207, + 43.592093600000005 + ] + ] + }, + "properties": { + "line": "ToulouseT1", + "name": "T1", + "color": "#004687", + "order": 5 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.464653, + 43.5602327 + ], + [ + 1.4628727, + 43.5599542 + ], + [ + 1.4559855, + 43.5588391 + ], + [ + 1.4536856, + 43.558448600000006 + ], + [ + 1.4530298, + 43.5583381 + ] + ] + }, + "properties": { + "line": "ToulouseTeleo", + "name": "Teleo", + "color": "#DC006B", + "order": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4530298, + 43.5583381 + ], + [ + 1.4508667, + 43.5579997 + ], + [ + 1.4458069999999998, + 43.557140100000005 + ], + [ + 1.4335771, + 43.5551753 + ], + [ + 1.4283278, + 43.5543349 + ] + ] + }, + "properties": { + "line": "ToulouseTeleo", + "name": "Teleo", + "color": "#DC006B", + "order": 6 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3726293, + 43.599580499999995 + ], + [ + 1.372681, + 43.599568899999994 + ], + [ + 1.37389, + 43.599290399999994 + ], + [ + 1.3751294, + 43.599003599999996 + ], + [ + 1.3754376, + 43.5989313 + ], + [ + 1.3759697, + 43.598798599999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3965772, + 43.5962982 + ], + [ + 1.3975334000000001, + 43.596272299999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3981261, + 43.5962422 + ], + [ + 1.3982971, + 43.5962274 + ], + [ + 1.3984604, + 43.5962118 + ], + [ + 1.3988034, + 43.596176899999996 + ], + [ + 1.399084, + 43.596139199999996 + ], + [ + 1.3992456, + 43.596114899999996 + ], + [ + 1.3993495, + 43.596095999999996 + ], + [ + 1.399559, + 43.596059999999994 + ], + [ + 1.3998133, + 43.5960105 + ], + [ + 1.3999601, + 43.595979199999995 + ], + [ + 1.4001411000000001, + 43.595939599999994 + ], + [ + 1.4003313, + 43.5958945 + ], + [ + 1.4005395, + 43.595841 + ], + [ + 1.4007537, + 43.595783499999996 + ], + [ + 1.4009516, + 43.595725699999996 + ], + [ + 1.4010702, + 43.5956908 + ], + [ + 1.4013847, + 43.5955917 + ], + [ + 1.4016981, + 43.5954931 + ], + [ + 1.4018857, + 43.595432699999996 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3931565000000001, + 43.596380999999994 + ], + [ + 1.3940264, + 43.5963602 + ], + [ + 1.3948806, + 43.5963393 + ], + [ + 1.3965772, + 43.5962982 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3929522, + 43.596384699999994 + ], + [ + 1.3930567, + 43.596381799999996 + ], + [ + 1.3931565000000001, + 43.596380999999994 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3525579, + 43.602521499999995 + ], + [ + 1.3526085, + 43.602520899999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3508356000000001, + 43.6025327 + ], + [ + 1.3516454, + 43.6025279 + ], + [ + 1.3520974000000001, + 43.602524599999995 + ], + [ + 1.3525579, + 43.602521499999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4078585000000001, + 43.593732599999996 + ], + [ + 1.409024, + 43.593555699999996 + ], + [ + 1.4092212, + 43.593524099999996 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4020538, + 43.5953786 + ], + [ + 1.4029538000000001, + 43.5950954 + ], + [ + 1.4038026000000001, + 43.594827099999996 + ], + [ + 1.4040488, + 43.5947484 + ], + [ + 1.4043395, + 43.594657299999994 + ], + [ + 1.404859, + 43.594493199999995 + ], + [ + 1.4055037000000001, + 43.5942892 + ], + [ + 1.4057647, + 43.594206899999996 + ], + [ + 1.4059858, + 43.5941379 + ], + [ + 1.4061895, + 43.594076199999996 + ], + [ + 1.4063898000000001, + 43.5940194 + ], + [ + 1.4065791, + 43.5939692 + ], + [ + 1.4067571, + 43.5939268 + ], + [ + 1.4069275, + 43.593890699999996 + ], + [ + 1.4070958, + 43.593857199999995 + ], + [ + 1.4072698000000001, + 43.5938258 + ], + [ + 1.4075021, + 43.593787999999996 + ], + [ + 1.4078585000000001, + 43.593732599999996 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4018857, + 43.595432699999996 + ], + [ + 1.4020538, + 43.5953786 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3557063, + 43.6025007 + ], + [ + 1.3560979, + 43.602496499999994 + ], + [ + 1.3563493, + 43.6024925 + ], + [ + 1.3566032000000001, + 43.6024853 + ], + [ + 1.3568674, + 43.6024773 + ], + [ + 1.3570595, + 43.6024695 + ], + [ + 1.3572419, + 43.602461999999996 + ], + [ + 1.3575238, + 43.6024484 + ], + [ + 1.3578031, + 43.6024326 + ], + [ + 1.3580549, + 43.6024166 + ], + [ + 1.3583332000000001, + 43.602397599999996 + ], + [ + 1.3586878, + 43.60237 + ], + [ + 1.3589682, + 43.6023467 + ], + [ + 1.3592388, + 43.602322099999995 + ], + [ + 1.3596341, + 43.6022828 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3598386, + 43.6022604 + ], + [ + 1.3596341, + 43.6022828 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4140209000000001, + 43.593604899999995 + ], + [ + 1.4142807, + 43.593619 + ], + [ + 1.4144306, + 43.5936234 + ], + [ + 1.4145515, + 43.593626 + ], + [ + 1.4148323, + 43.593629899999996 + ], + [ + 1.4149996, + 43.5936326 + ], + [ + 1.4152369, + 43.5936379 + ], + [ + 1.4153322, + 43.593641299999994 + ], + [ + 1.4154347, + 43.593646 + ], + [ + 1.4155317, + 43.5936531 + ], + [ + 1.4156518, + 43.5936629 + ], + [ + 1.4163782, + 43.5937261 + ], + [ + 1.4178638000000001, + 43.5938684 + ], + [ + 1.4180838, + 43.5938898 + ], + [ + 1.4182139, + 43.5939018 + ], + [ + 1.4183236000000001, + 43.5939145 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3357197, + 43.603201899999995 + ], + [ + 1.335606, + 43.6032211 + ], + [ + 1.3355143, + 43.603235999999995 + ], + [ + 1.3354283, + 43.603248199999996 + ], + [ + 1.3353345, + 43.6032599 + ], + [ + 1.3352623000000001, + 43.603268199999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3759697, + 43.598798599999995 + ], + [ + 1.3763731000000001, + 43.5986859 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4092212, + 43.593524099999996 + ], + [ + 1.4096323, + 43.5934655 + ], + [ + 1.4097978, + 43.593444899999994 + ], + [ + 1.4099262000000001, + 43.5934313 + ], + [ + 1.4100605, + 43.5934186 + ], + [ + 1.4101996, + 43.5934064 + ], + [ + 1.410329, + 43.5933986 + ], + [ + 1.4104753, + 43.5933917 + ], + [ + 1.4106279, + 43.593387799999995 + ], + [ + 1.4107428, + 43.5933864 + ], + [ + 1.4109642, + 43.5933881 + ], + [ + 1.4110576000000001, + 43.5933901 + ], + [ + 1.4112093, + 43.5933961 + ], + [ + 1.4113632, + 43.5934038 + ], + [ + 1.4115796, + 43.593418 + ], + [ + 1.4118009, + 43.5934344 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3981261, + 43.5962422 + ], + [ + 1.3979105, + 43.5962563 + ], + [ + 1.3977566000000001, + 43.596263799999996 + ], + [ + 1.3975334000000001, + 43.596272299999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3797499, + 43.597462799999995 + ], + [ + 1.380012, + 43.597362499999996 + ], + [ + 1.380164, + 43.5973057 + ], + [ + 1.3803454, + 43.597237899999996 + ], + [ + 1.3804896, + 43.597184 + ], + [ + 1.3806806, + 43.597116799999995 + ], + [ + 1.3808158, + 43.5970723 + ], + [ + 1.3810073, + 43.5970115 + ], + [ + 1.381132, + 43.5969738 + ], + [ + 1.3812959, + 43.596927599999994 + ], + [ + 1.3814462, + 43.596888799999995 + ], + [ + 1.3815849, + 43.596855999999995 + ], + [ + 1.3817526, + 43.5968181 + ], + [ + 1.3818917, + 43.5967895 + ], + [ + 1.3820785, + 43.5967547 + ], + [ + 1.3822266, + 43.5967312 + ], + [ + 1.3823423000000001, + 43.596713699999995 + ], + [ + 1.3824496, + 43.5966987 + ], + [ + 1.3826075, + 43.596679699999996 + ], + [ + 1.3827239, + 43.5966678 + ], + [ + 1.382854, + 43.596655 + ], + [ + 1.3829814, + 43.5966452 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3763731000000001, + 43.5986859 + ], + [ + 1.3766225, + 43.5986112 + ], + [ + 1.376903, + 43.5985228 + ], + [ + 1.3770953000000001, + 43.598459999999996 + ], + [ + 1.3773155000000001, + 43.598383299999995 + ], + [ + 1.3776344, + 43.598269099999996 + ], + [ + 1.3778245, + 43.598198 + ], + [ + 1.3781259000000001, + 43.598080599999996 + ], + [ + 1.378434, + 43.5979673 + ], + [ + 1.3787612, + 43.597841599999995 + ], + [ + 1.3793503, + 43.5976181 + ], + [ + 1.3797499, + 43.597462799999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3506456, + 43.6025345 + ], + [ + 1.3508356000000001, + 43.6025327 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3357197, + 43.603201899999995 + ], + [ + 1.3364122, + 43.6030762 + ], + [ + 1.3370048, + 43.602973399999996 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3829814, + 43.5966452 + ], + [ + 1.3831587, + 43.5966338 + ], + [ + 1.3832936, + 43.596626099999995 + ], + [ + 1.3836731, + 43.5966117 + ], + [ + 1.3840468000000001, + 43.596601799999995 + ], + [ + 1.3850214, + 43.5965789 + ], + [ + 1.3875709, + 43.5965177 + ], + [ + 1.3899389, + 43.5964598 + ], + [ + 1.3916938, + 43.5964173 + ], + [ + 1.3929522, + 43.596384699999994 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3598386, + 43.6022604 + ], + [ + 1.3602406, + 43.6022136 + ], + [ + 1.3606777, + 43.602157899999995 + ], + [ + 1.3611311, + 43.6020949 + ], + [ + 1.3616116, + 43.602022899999994 + ], + [ + 1.3620115, + 43.601956699999995 + ], + [ + 1.3624290000000001, + 43.6018847 + ], + [ + 1.3627954, + 43.6018176 + ], + [ + 1.3631833, + 43.6017419 + ], + [ + 1.363954, + 43.6015793 + ], + [ + 1.3646923, + 43.6014105 + ], + [ + 1.3652708, + 43.6012778 + ], + [ + 1.3661409, + 43.6010772 + ], + [ + 1.3676971, + 43.6007191 + ], + [ + 1.3689775, + 43.600423 + ], + [ + 1.3696944, + 43.6002569 + ], + [ + 1.370261, + 43.6001274 + ], + [ + 1.3710559, + 43.599943499999995 + ], + [ + 1.3718561, + 43.5997588 + ], + [ + 1.3722914, + 43.5996593 + ], + [ + 1.3726293, + 43.599580499999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4132246, + 43.5935433 + ], + [ + 1.4139461, + 43.593598899999996 + ], + [ + 1.4140209000000001, + 43.593604899999995 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3370048, + 43.602973399999996 + ], + [ + 1.337609, + 43.6028701 + ], + [ + 1.3379528, + 43.602809699999995 + ], + [ + 1.3381523, + 43.6027754 + ], + [ + 1.3385264000000001, + 43.6027111 + ], + [ + 1.3392884, + 43.602577999999994 + ], + [ + 1.3397179000000001, + 43.6024986 + ], + [ + 1.3400633, + 43.6024294 + ], + [ + 1.3404188000000001, + 43.602356799999995 + ], + [ + 1.3405974, + 43.60232 + ], + [ + 1.3409337000000001, + 43.6022525 + ], + [ + 1.3410971, + 43.6022215 + ], + [ + 1.3412606, + 43.6021918 + ], + [ + 1.3414490000000001, + 43.6021619 + ], + [ + 1.3416027000000001, + 43.602139799999996 + ], + [ + 1.3417766, + 43.602116499999994 + ], + [ + 1.3419576, + 43.6020968 + ], + [ + 1.3421235, + 43.6020834 + ], + [ + 1.342309, + 43.6020713 + ], + [ + 1.3424602, + 43.6020641 + ], + [ + 1.3426163, + 43.6020587 + ], + [ + 1.3427660000000001, + 43.6020556 + ], + [ + 1.342966, + 43.602056 + ], + [ + 1.3431871, + 43.6020614 + ], + [ + 1.3433896, + 43.602071099999996 + ], + [ + 1.3435682, + 43.602083699999994 + ], + [ + 1.3437202000000001, + 43.6020963 + ], + [ + 1.3438989000000001, + 43.602114799999995 + ], + [ + 1.3441067, + 43.602138 + ], + [ + 1.3443837, + 43.6021745 + ], + [ + 1.344695, + 43.602216 + ], + [ + 1.3447799, + 43.602227899999995 + ], + [ + 1.3450506, + 43.602267 + ], + [ + 1.345417, + 43.6023187 + ], + [ + 1.3459972, + 43.6023977 + ], + [ + 1.3462847, + 43.602433299999994 + ], + [ + 1.3465316, + 43.6024604 + ], + [ + 1.3467611, + 43.602482099999996 + ], + [ + 1.3470047, + 43.602500899999995 + ], + [ + 1.3472413, + 43.602517299999995 + ], + [ + 1.3474843, + 43.6025302 + ], + [ + 1.3476986, + 43.602538499999994 + ], + [ + 1.3478987, + 43.6025436 + ], + [ + 1.3480848, + 43.602546 + ], + [ + 1.3482519, + 43.6025479 + ], + [ + 1.3486799, + 43.6025467 + ], + [ + 1.3494226, + 43.6025419 + ], + [ + 1.3506456, + 43.6025345 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3352623000000001, + 43.603268199999995 + ], + [ + 1.3351867, + 43.603277999999996 + ], + [ + 1.3351191, + 43.6032855 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3351191, + 43.6032855 + ], + [ + 1.3348782000000001, + 43.603313099999994 + ], + [ + 1.334499, + 43.6033579 + ], + [ + 1.3343204, + 43.6033797 + ], + [ + 1.3339526, + 43.603434299999996 + ], + [ + 1.3337879000000001, + 43.603463 + ], + [ + 1.3323138, + 43.60373 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.4118009, + 43.5934344 + ], + [ + 1.4132246, + 43.5935433 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3526085, + 43.602520899999995 + ], + [ + 1.3529688, + 43.60252 + ], + [ + 1.3549508000000001, + 43.602506299999995 + ], + [ + 1.3554293, + 43.6025037 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.3554293, + 43.6025037 + ], + [ + 1.3555739, + 43.6025035 + ], + [ + 1.3557063, + 43.6025007 + ] + ] + }, + "properties": { + "line": "ToulouseAC", + "name": "Arènes - Colomiers", + "color": "#6265ac", + "order": 2 + } + }, + { + "type": "Feature", + "properties": { + "line": "ToulouseT2", + "name": "T2", + "color": "#409AD9", + "order": 6 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 1.374212277247561, + 43.63125506151794 + ], + [ + 1.374996961472989, + 43.631682820529775 + ], + [ + 1.375253970388596, + 43.631823908443721 + ], + [ + 1.375348331149882, + 43.63186075300365 + ], + [ + 1.375462557334596, + 43.631880523246004 + ], + [ + 1.375563126040703, + 43.631871536773012 + ], + [ + 1.375671144280596, + 43.631830198979941 + ], + [ + 1.375780404109453, + 43.631743928711522 + ], + [ + 1.376177712578024, + 43.63136110290133 + ], + [ + 1.376642066850667, + 43.630915368369124 + ], + [ + 1.376912733244881, + 43.630683513212716 + ], + [ + 1.377399436118881, + 43.630302477989645 + ], + [ + 1.377716041304773, + 43.630042761559324 + ], + [ + 1.377881172637023, + 43.629873810476205 + ], + [ + 1.378062444625809, + 43.629664418315208 + ], + [ + 1.378387740934452, + 43.629271693711352 + ], + [ + 1.378566529745308, + 43.629079374548319 + ], + [ + 1.378705587709309, + 43.6289931003313 + ], + [ + 1.378905483532558, + 43.628933786735274 + ], + [ + 1.379383495283808, + 43.628849309694424 + ], + [ + 1.379880130869522, + 43.628754946902042 + ], + [ + 1.380061402858307, + 43.62869473437614 + ], + [ + 1.380211635122986, + 43.628595877859517 + ], + [ + 1.380269989804307, + 43.628523982108945 + ], + [ + 1.380433879547593, + 43.628247182666342 + ], + [ + 1.38085601979545, + 43.627503053169953 + ], + [ + 1.381137860490342, + 43.626990784757112 + ], + [ + 1.381722648892521, + 43.625946462646546 + ], + [ + 1.381908887237163, + 43.625616625645371 + ], + [ + 1.382060361090806, + 43.625445864634003 + ], + [ + 1.382263981680949, + 43.625302065511356 + ], + [ + 1.38250484994002, + 43.625192418449188 + ], + [ + 1.382733302309449, + 43.625128607361937 + ], + [ + 1.382999002347805, + 43.62510434115606 + ], + [ + 1.383292017343377, + 43.625105239904592 + ], + [ + 1.383778720217377, + 43.62510434115606 + ], + [ + 1.38431881141684, + 43.625027048731255 + ], + [ + 1.384855177849412, + 43.624915603664761 + ], + [ + 1.385649794786554, + 43.624760119476768 + ], + [ + 1.385968883150375, + 43.624689117893013 + ], + [ + 1.386232100010804, + 43.624612723690255 + ], + [ + 1.386542497251875, + 43.624482403943837 + ], + [ + 1.386792056633696, + 43.624371856627135 + ], + [ + 1.387553150668803, + 43.624020440635952 + ], + [ + 1.38890275787298, + 43.623402087305962 + ], + [ + 1.389193289690624, + 43.623227724897639 + ], + [ + 1.389475130385516, + 43.623056058321161 + ], + [ + 1.389647711251552, + 43.622950002285492 + ], + [ + 1.38979794351623, + 43.622905962012297 + ], + [ + 1.390018946351873, + 43.622895176634366 + ], + [ + 1.390967520320587, + 43.622902366886549 + ], + [ + 1.391118994174229, + 43.62289607541593 + ], + [ + 1.391233220358943, + 43.622866415617061 + ], + [ + 1.391493954041443, + 43.622742383572323 + ], + [ + 1.3919508587803, + 43.622502407802735 + ], + [ + 1.392587793918978, + 43.622179742243119 + ], + [ + 1.392893224804193, + 43.622025149773648 + ], + [ + 1.393121677173621, + 43.62195774014215 + ], + [ + 1.393439523948478, + 43.621880443671685 + ], + [ + 1.393813242226728, + 43.621848086980123 + ], + [ + 1.394421620819227, + 43.621804944697608 + ], + [ + 1.395141742418512, + 43.621762701182661 + ], + [ + 1.395582506500834, + 43.621751016800943 + ], + [ + 1.395886695797084, + 43.621798653112158 + ], + [ + 1.396249239774655, + 43.62186786051592 + ], + [ + 1.396369673904191, + 43.62186336653108 + ], + [ + 1.396536046825405, + 43.621820224259544 + ], + [ + 1.396650273010119, + 43.621749219203551 + ], + [ + 1.396755808072083, + 43.621573953200048 + ] + ] + } + } + ] } \ No newline at end of file diff --git a/src/app/(game)/toulouse/data/source.json b/src/app/(game)/toulouse/data/source.json new file mode 100644 index 0000000..0a23495 --- /dev/null +++ b/src/app/(game)/toulouse/data/source.json @@ -0,0 +1,13597 @@ +{ + "lines": [ + { + "lineId": "ToulouseA", + "relations": [ + { + "relationId": 179515, + "stationsNodeIds": [ + 333182010, + 333113201, + 314282624, + 248512541, + 8171564117, + 5191230595, + 248533209, + 248533272, + 11400069837, + 11400069841, + 248533275, + 248533388, + 248533539, + 248533545, + 9516031292, + 9516079519, + 9516080584, + 53954482 + ], + "routesWayIds": [ + 23034972, + 881150949, + 823102540, + 4540439, + 823102542, + 823102538, + 1228720481, + 821207613, + 821207614, + 821207616, + 821207618, + 1229274646, + 875491829, + 875511460, + 875491832, + 821207619, + 1229274649, + 9808101, + 819182247, + 819182246, + 9808100, + 23037085, + 819147515, + 23037110, + 819147517, + 6920882, + 818565572, + 947016416 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "ToulouseB", + "relations": [ + { + "relationId": 17083110, + "stationsNodeIds": [ + 10890417169, + 11166818784 + ], + "routesWayIds": [ + 1172129795, + 1413247009, + 1117160826 + ] + }, + { + "relationId": 179514, + "stationsNodeIds": [ + 11834678209, + 11834678208, + 11518743852, + 11518743862, + 11834678207, + 11518774811, + 11834678206, + 11834678190, + 12841569716, + 12833639933, + 12833639949, + 12833639962, + 12833639968, + 12833639982, + 12833671102, + 12833671115, + 12833671123, + 12833671134, + 12833671145, + 12833671160 + ], + "routesWayIds": [ + 1239857234 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "ToulouseC", + "relations": [ + { + "relationId": 20318652, + "stationsNodeIds": [ + 8832628137, + 8832628132, + 8832628130, + 10890417177, + 8832628138, + 8832609110, + 8832609106, + 8832609101, + 8832609095, + 8832609092, + 8832609088, + 8832609082, + 8832609078, + 8832628139, + 8832609070, + 8832609067, + 8832609065, + 8832609053, + 8832609049, + 8832609048, + 11071166323 + ], + "routesWayIds": [ + 1172129796, + 1431662796, + 954320817, + 1232045376 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "ToulouseT1", + "relations": [ + { + "relationId": 11562192, + "stationsNodeIds": [ + 2580613908, + 3461484991, + 3721923420, + 2342958397, + 2342958396, + 2342958398, + 656729732, + 656729741, + 582467795, + 983641279, + 983649414, + 983684832, + 983684760, + 1470735120, + 757338943, + 1599923781, + 757315615, + 983684806, + 2379081185, + 983684802, + 983684824, + 364941991, + 983684793, + 364942101, + 6938996395, + 2379081174, + 2379081163 + ], + "routesWayIds": [ + 1153838094, + 189489436, + 1230926309, + 249875147, + 249875149, + 219646819, + 171555978, + 857299586, + 857299588, + 857299589, + 857299590, + 857299591, + 453821439, + 453821435, + 171555975, + 171555973, + 857299592, + 31008571, + 32079498, + 857299593, + 857299594, + 857299596, + 857299595, + 84679043, + 857299597, + 857299598, + 857299599, + 84679322, + 857299582, + 857299581, + 84679323, + 857299579, + 857299577, + 857299575, + 857299574, + 857299571, + 857299570, + 857299568, + 84683273, + 857299565, + 857299563, + 857299562, + 857299561, + 857299559, + 84683254, + 857299557, + 857299556, + 32079502, + 857299600, + 234918794, + 51423346, + 384535347, + 857299554, + 60584292, + 84683278, + 229288494, + 857299552, + 84683271, + 857299547, + 1183915899, + 857299546, + 84683252, + 857299543, + 857299544, + 857299540, + 229288516, + 857299538, + 857299533, + 857299530, + 857299527, + 84683285, + 857299523, + 857299524, + 857299525, + 32461720, + 84683266, + 84683263, + 857299518, + 857299517, + 857497464, + 640152611 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "ToulouseTeleo", + "relations": [ + { + "relationId": 18180718, + "stationsNodeIds": [ + 7007685008, + 7007685004, + 7007685001 + ], + "routesWayIds": [ + 1360109873, + 749366976 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + }, + { + "lineId": "ToulouseAC", + "relations": [ + { + "relationId": 15900054, + "stationsNodeIds": [], + "routesWayIds": [] + }, + { + "relationId": 1557095, + "stationsNodeIds": [ + 1617713378, + 231888136, + 231873359, + 54548597, + 54544342, + 1252656769 + ], + "routesWayIds": [ + 830853200, + 830853199, + 148693606, + 413350609, + 830853198, + 413350598, + 30979693, + 30979691, + 991537162, + 991537163, + 104071621, + 104071626, + 533766338, + 9809463, + 351489010, + 413348674, + 413348673, + 486218379, + 30218674, + 30218672, + 23115961, + 413347931, + 23115962, + 31318888, + 31318886, + 31009105, + 413347086, + 885928666, + 830853196, + 109431119 + ] + } + ], + "extraStationNodeIds": [], + "extraRouteWayIds": [] + } + ], + "ways": [ + { + "wayId": 1431662796, + "nodeIds": [ + 10884065629, + 13159491214 + ] + }, + { + "wayId": 453821435, + "nodeIds": [ + 4505040979, + 4505040982 + ] + }, + { + "wayId": 32079498, + "nodeIds": [ + 656729732, + 3556698979, + 360021168, + 6130979383, + 6130979384, + 6130979485, + 3463258685, + 360021169, + 360021170, + 360021172, + 360021173, + 6130923108, + 1922446775, + 360020800, + 7197474612, + 1464397870, + 360020801, + 8237931647, + 8237931612, + 1922447015, + 8237931614, + 360020802, + 8237931617, + 360020803, + 360020804, + 346167781 + ] + }, + { + "wayId": 823102540, + "nodeIds": [ + 7684777863, + 7684777865, + 7684777861 + ] + }, + { + "wayId": 821207616, + "nodeIds": [ + 7667567237, + 7667567240 + ] + }, + { + "wayId": 171555973, + "nodeIds": [ + 1825678690, + 1825678691, + 2283269514, + 3936131663, + 2342958398, + 7197474559, + 3936131667, + 2225823686, + 8237931468, + 8237931464, + 3936131671, + 8237931454, + 2225823688, + 8237931478, + 8237931443, + 2077152771, + 2225823689, + 8237931434, + 8237931431, + 2128905912, + 8237931424, + 8237931410, + 2128905929, + 2903193196, + 8237931412, + 2128905955, + 8237931396, + 2128905965, + 8237931404, + 3936131697, + 8237931316, + 7992911289 + ] + }, + { + "wayId": 84683254, + "nodeIds": [ + 983684832, + 7992911257 + ] + }, + { + "wayId": 875491832, + "nodeIds": [ + 8149086941, + 8390388824, + 8171564117, + 8148948756, + 11400065328, + 11400065329, + 11400065330, + 11400065337, + 248533308, + 8148948753 + ] + }, + { + "wayId": 249875147, + "nodeIds": [ + 2564187622, + 3461484991, + 7197474362, + 7992911284 + ] + }, + { + "wayId": 857299588, + "nodeIds": [ + 7992911286, + 244011428, + 13037573575, + 2119973981, + 2119973979, + 2361286494, + 2361286491, + 5829101304, + 5829101306, + 7992911310, + 2510625527, + 2342958397, + 2510625523, + 7197474442, + 2510625522, + 5829101307, + 7992911309, + 7197474435, + 10136220544, + 2128903777, + 1964109831, + 2308759197 + ] + }, + { + "wayId": 857299574, + "nodeIds": [ + 7992911273, + 2379081517, + 2379081528, + 7992911270 + ] + }, + { + "wayId": 384535347, + "nodeIds": [ + 2430401817, + 10761217020, + 3724416615, + 3724416619, + 757338954, + 4004212599, + 656420401 + ] + }, + { + "wayId": 857299596, + "nodeIds": [ + 7992911291, + 2091875623, + 344790673, + 2379081350, + 2379081364, + 344790672, + 2091875624, + 344790671, + 344790660, + 8238063595, + 4674828492, + 756977221, + 344790661, + 7992911282 + ] + }, + { + "wayId": 857299546, + "nodeIds": [ + 10994605740, + 5833972490, + 757338959, + 7078008072, + 983684806 + ] + }, + { + "wayId": 23037110, + "nodeIds": [ + 7650170120, + 8206027387, + 8206027386, + 8206027385, + 8206027384, + 8206027383, + 8206027382, + 8206027381, + 8206027380, + 8206027379, + 8206027378, + 8206027377, + 12786256745, + 12786256744, + 9516031292, + 8206027375, + 8206027374, + 8206027373, + 8206027372, + 8206027371, + 8206027370, + 8206027369, + 8206027368, + 8206027367, + 8206027366, + 8206027365, + 10931439431, + 9516079519, + 8206027364, + 8206027363, + 8206027362, + 8206027361, + 8206027360, + 8206027359, + 8206027357, + 8206027356, + 8206027358, + 8206027355, + 8206027354, + 8206027353, + 8206027352, + 8206027351, + 8206027350, + 8206027349, + 8206027348, + 8206027347, + 9516080584, + 8206027346, + 8206027345, + 8206027344, + 8206027343, + 8205952614 + ] + }, + { + "wayId": 1153838094, + "nodeIds": [ + 7992911283, + 2627359795, + 13356403024, + 3950313642, + 2580613908, + 10731002620 + ] + }, + { + "wayId": 819147515, + "nodeIds": [ + 7649884177, + 7649884178, + 7649902485, + 60293325, + 7649884184, + 1807375625, + 7649884182, + 7650170118, + 60293324, + 7649884181, + 7650170105, + 7650170120 + ] + }, + { + "wayId": 857299565, + "nodeIds": [ + 7992911264, + 7197474790, + 3961855645, + 7992911263, + 7992911261 + ] + }, + { + "wayId": 857299559, + "nodeIds": [ + 7992911258, + 2379081629, + 2087249295, + 2379081635, + 756757882, + 2087249297, + 2379081651, + 756757842, + 2379081658, + 4070165568, + 983684832 + ] + }, + { + "wayId": 818565572, + "nodeIds": [ + 7644357243, + 7644357240, + 7644357245, + 53964003, + 7644357236, + 7644357238, + 7644357237, + 53964000, + 7644357233, + 7644357235, + 7644357232, + 53963997, + 7644357227, + 7644357226, + 6030134029, + 7644357215, + 7644357225, + 53963995, + 7644357224, + 7644357216, + 8766060626 + ] + }, + { + "wayId": 857299575, + "nodeIds": [ + 7992911274, + 8068564055, + 2379081513, + 7992911273 + ] + }, + { + "wayId": 189489436, + "nodeIds": [ + 11415491465, + 3721945024, + 2344137621, + 3721945023, + 1837419146, + 2569326581, + 7992911283 + ] + }, + { + "wayId": 857299593, + "nodeIds": [ + 346167781, + 7992911302, + 8237931620, + 8237931619, + 8237931622, + 1480624520, + 346167783, + 7992911290 + ] + }, + { + "wayId": 23037085, + "nodeIds": [ + 60293326, + 7649884177 + ] + }, + { + "wayId": 954320817, + "nodeIds": [ + 11427626225, + 10890475142, + 10883978591, + 8832609050, + 10883978590, + 12568533614, + 10883978589, + 10883978588, + 8832609051, + 10883978586, + 10883978587, + 10883978585, + 10883978584, + 8832609052, + 10883978583, + 8832609053, + 10883978582, + 10883978580, + 10883978581, + 10883978579, + 8832609054, + 10890475141, + 8832609055, + 8832609056, + 10883978576, + 8832609058, + 10883978577, + 8832609059, + 8832609060, + 8832609061, + 10883978575, + 8832609062, + 10883978574, + 10890475140, + 8832609063, + 10890475138, + 10883978573, + 10890475139, + 8832609064, + 10883978572, + 10883978571, + 8832609065, + 10883978570, + 10883978568, + 10883978569, + 8832609066, + 10883978567, + 10883978566, + 10890475137, + 10883978565, + 10890475136, + 10883978564, + 10883978557, + 8832609067, + 8832609068, + 10883978555, + 10890475135, + 8832609069, + 8832609070, + 10890475134, + 10883978554, + 10890475133, + 10883978553, + 8832609071, + 10883978552, + 10883978551, + 10883978550, + 10883978548, + 10883978549, + 10890475132, + 10883978547, + 10883978546, + 8832609072, + 8832628139, + 10883978545, + 10883978543, + 10890475131, + 10883978544, + 10890475130, + 8832609073, + 8832609074, + 10883978542, + 8832609075, + 10883978540, + 10890475128, + 8832609076, + 10883978539, + 10883978538, + 8832609077, + 8832609078, + 10883978537, + 10883970840, + 10199514847, + 8832609079, + 10890475127, + 10884058397, + 10890475126, + 10883978536, + 10884058396, + 8832609080, + 10890475125, + 10883978534, + 8832609081, + 10883978535, + 8832609082, + 8832609083, + 10890475124, + 8832609084, + 8832609085, + 8832609086, + 10883978520, + 10890475123, + 8832609087, + 10890475122, + 10883978521, + 10890475121, + 10883978519, + 10890475119, + 10890475120, + 10883978517, + 10883978518, + 8832609088, + 10883978514, + 10883978515, + 10890475118, + 10883978516, + 10890475117, + 8832609089, + 10890475116, + 8832609090, + 10890475115, + 10883978513, + 10883978511, + 10883978512, + 7439072062, + 10883978509, + 10883978510, + 8832609091, + 10883978507, + 10890475114, + 10883978506, + 10890475113, + 11751581498, + 8832609092, + 10883970904, + 10890475112, + 10883970903, + 10890475111, + 8832609093, + 10890475110, + 10883970902, + 10890475108, + 10890475107, + 10890475109, + 8832609094, + 899680495, + 10884058398, + 10883970900, + 10883970901, + 10890475106, + 10890475105, + 10883970898, + 8832609095, + 10890417202, + 10890417203, + 10883970897, + 10890417204, + 10883970895, + 10883970896, + 10890417198, + 10890417199, + 8832609096, + 8832609098, + 10890417197, + 10884058399, + 10884058401, + 10883970894, + 10884058400, + 10883970893, + 8832609100, + 10883970892, + 10890417196, + 8832609101, + 8832609102, + 10890417195, + 8832609103, + 10890417194, + 10890417192, + 10884058402, + 10890417193, + 8832609104, + 10884058403, + 10890417191, + 10884065605, + 10890417190, + 10890417189, + 10884058404, + 8832609106, + 10884065606, + 10884065607, + 10884065608, + 8832609107, + 10884065609, + 10884065610, + 10884065611, + 10884065614, + 10884065612, + 10884065613, + 8832609108, + 10884065616, + 10884065617, + 10884065615, + 8832609109, + 8832609110, + 8832609111, + 10890417188, + 10884065619, + 10884065618, + 10890417187, + 8832609112, + 10884065620, + 10890417186, + 8832609113, + 10890417185, + 10884065621, + 10890417184, + 8832609114, + 10884065622, + 11071166323, + 8832609115, + 10884065624, + 10884065623, + 8832609116, + 10890417183, + 10884065625, + 8832628138, + 10884065627, + 13154193588, + 10884065628, + 13154193589, + 8832628117, + 10890417182, + 10884065630, + 10884065629 + ] + }, + { + "wayId": 84679322, + "nodeIds": [ + 582467795, + 4070161840, + 7992911280 + ] + }, + { + "wayId": 819182247, + "nodeIds": [ + 7650170169, + 7650170158, + 7650170157, + 7649902487, + 7649902486, + 7650170156, + 60293330, + 7649902488, + 7650170160 + ] + }, + { + "wayId": 1232045376, + "nodeIds": [ + 10883978598, + 8832609048, + 10883978596, + 10883978595, + 10883978594, + 8832609049, + 10883978592, + 10883978593, + 11427626225 + ] + }, + { + "wayId": 1229274646, + "nodeIds": [ + 7667567243, + 7667567239 + ] + }, + { + "wayId": 857299552, + "nodeIds": [ + 2379081769, + 3720148199, + 3720148188, + 983684763, + 3720148189, + 2379081772, + 3720148190, + 1541651961, + 3720148191, + 757315626, + 3720148200, + 3720148192, + 2379081780, + 3720148201, + 3720148193, + 3720148202, + 3720148194, + 1464323861, + 3720148195, + 3720148198, + 3720148196, + 3720148203, + 1464323859, + 3720148197, + 2379081779, + 4449466989, + 757315615 + ] + }, + { + "wayId": 821207613, + "nodeIds": [ + 7667567188, + 7669152620, + 7667567203, + 7669152614, + 7669152613, + 7669152612, + 7667567191, + 7669152605, + 7667567200, + 7667567190, + 7667567231, + 7669152617, + 7667567192, + 7669152616, + 764715477, + 7667567196 + ] + }, + { + "wayId": 857299577, + "nodeIds": [ + 7992911276, + 8068564063, + 2348938946, + 2346369050, + 8068564056, + 7992911274 + ] + }, + { + "wayId": 4540439, + "nodeIds": [ + 7684777861, + 7684777871, + 7684777872, + 7684777862, + 7684777873, + 338407683, + 7684777874, + 7684777875, + 339877381, + 338407676, + 7684777876, + 7684777849, + 7684777848, + 338407670, + 7684777877 + ] + }, + { + "wayId": 23034972, + "nodeIds": [ + 333182010, + 8195393907, + 8195393906, + 333182032, + 339877449 + ] + }, + { + "wayId": 875491829, + "nodeIds": [ + 7667567239, + 11400065293, + 286474719, + 11400065316, + 11400065304, + 11400065305, + 11400065306, + 11400065307, + 11400065308, + 11400065309, + 11400065310, + 11400065311, + 11400065312, + 11400065313, + 11400065295, + 8148948745 + ] + }, + { + "wayId": 857299598, + "nodeIds": [ + 7992911293, + 2281854508, + 8985348140, + 1078689737, + 582467791, + 2281854516, + 7992911294 + ] + }, + { + "wayId": 819182246, + "nodeIds": [ + 7650170160, + 7650170155, + 7650170154, + 60293329 + ] + }, + { + "wayId": 857299554, + "nodeIds": [ + 656420401, + 2379081705, + 656420419, + 2379081708, + 7197474909, + 757338952, + 2379081711, + 757315603, + 7197474920, + 757338947, + 2379081714, + 1464381971, + 2379081717, + 5833918526, + 253217647, + 7072910016, + 1470735120 + ] + }, + { + "wayId": 6920882, + "nodeIds": [ + 53964005, + 53964004, + 7644357248, + 7644357243 + ] + }, + { + "wayId": 9808100, + "nodeIds": [ + 60293329, + 7650170148, + 7650170145, + 7650170146, + 1477508091, + 7650170149, + 7650170147, + 7650170128, + 7649884180, + 7650170127, + 1477508090, + 60293328, + 7650170126, + 7650170125, + 1477508089, + 7650170130, + 7649884179, + 7650170132, + 60293327, + 60293326 + ] + }, + { + "wayId": 857299561, + "nodeIds": [ + 7992911259, + 756757864, + 2379081590, + 5416122771, + 2379081594, + 756757827, + 2379081602, + 2379081606, + 756757985, + 756757869, + 2379081615, + 2379081619, + 1461684512, + 2087249290, + 756757930, + 7992911258 + ] + }, + { + "wayId": 1183915899, + "nodeIds": [ + 7992911249, + 10994605740 + ] + }, + { + "wayId": 84679043, + "nodeIds": [ + 656729741, + 7197474640, + 3463402040, + 2081168052, + 2081168099, + 2379081421, + 353769191, + 7197474673, + 353769193, + 7992911292 + ] + }, + { + "wayId": 1413247009, + "nodeIds": [ + 10217247154, + 12987593899, + 12987593897, + 12987593898, + 10890417166, + 12987593896, + 10217247153, + 10890417160 + ] + }, + { + "wayId": 1230926309, + "nodeIds": [ + 7992911284, + 2278465610, + 5634723424, + 11415491465 + ] + }, + { + "wayId": 84683271, + "nodeIds": [ + 757315615, + 757315588, + 7072849777, + 2561998100, + 2379081762, + 1464323838, + 7992911250 + ] + }, + { + "wayId": 857299547, + "nodeIds": [ + 7992911250, + 2379081753, + 7078008119, + 757315611, + 2379081748, + 757315563, + 2987358635, + 7992911249 + ] + }, + { + "wayId": 84683278, + "nodeIds": [ + 757338943, + 7072849779, + 2721873870, + 253218852, + 7072849781, + 1599934795, + 2379081738, + 13415224448, + 7072910037, + 7072910028, + 1599923781 + ] + }, + { + "wayId": 171555978, + "nodeIds": [ + 2278465609, + 7992911285 + ] + }, + { + "wayId": 857299571, + "nodeIds": [ + 7992911270, + 3721453116, + 582467895, + 3721453117, + 756757813, + 3721453118, + 2281806202, + 757390969, + 2379081539, + 1461684523, + 3721453119, + 2379081545, + 3721453652, + 2379081547, + 3721453651, + 756757967, + 7992911269 + ] + }, + { + "wayId": 249875149, + "nodeIds": [ + 2564187624, + 7197474341, + 2485510999, + 7197474349, + 2564187622 + ] + }, + { + "wayId": 1172129795, + "nodeIds": [ + 10890417160, + 10890417159, + 10890417161, + 10217247152, + 10890417162, + 10890417165, + 10217247151, + 10890417164, + 10217247150, + 12987593900, + 10890417163, + 10890417158, + 356781456 + ] + }, + { + "wayId": 1229274649, + "nodeIds": [ + 11400069842, + 11487204333, + 11487204334, + 11487204335, + 11487204332, + 11487204336, + 11487204337, + 1922412415, + 4958023823, + 1922412413, + 248533388, + 248533539, + 9150994683, + 248533545, + 12794875825, + 11487204352, + 11487204351, + 1477508094, + 11487204350, + 1477508093, + 1477508092 + ] + }, + { + "wayId": 857299556, + "nodeIds": [ + 7992911256, + 2088234167, + 1464397873, + 2088234168, + 757369920, + 5839557778, + 983684760 + ] + }, + { + "wayId": 857299586, + "nodeIds": [ + 7992911285, + 2447668515, + 13356009862, + 2438046037, + 2919067078, + 3721923412, + 2447668513, + 3721923413, + 2278465611, + 3721923414, + 2919067076, + 2882244420, + 3721923415, + 648447, + 7992911287, + 2494096159, + 2903146038, + 2616211812, + 2361286503, + 13356009847, + 7992911286 + ] + }, + { + "wayId": 84679323, + "nodeIds": [ + 983641279, + 4070164982, + 4070165089, + 4070165091, + 2379081473, + 4070165097, + 2281809214, + 582467894, + 7992911277 + ] + }, + { + "wayId": 857299594, + "nodeIds": [ + 7992911290, + 8237931628, + 344790675, + 8238063529, + 8238063523, + 1464788357, + 8238063551, + 8237931623, + 8238063546, + 344790674, + 8238063567, + 2379081331, + 2091875622, + 7992911291 + ] + }, + { + "wayId": 857299590, + "nodeIds": [ + 2342958396, + 7992911288 + ] + }, + { + "wayId": 32079502, + "nodeIds": [ + 983684760, + 3720373928, + 1461684517, + 1739599883, + 4070166418, + 656420389, + 656420399 + ] + }, + { + "wayId": 881150949, + "nodeIds": [ + 339877449, + 333085694, + 2763710929, + 7684777840, + 7684777863 + ] + }, + { + "wayId": 413350598, + "nodeIds": [ + 54548624, + 4146836665 + ] + }, + { + "wayId": 60584292, + "nodeIds": [ + 1470735120, + 7072910005, + 288552168, + 983684791, + 265650424, + 253218842, + 288552069, + 983684771, + 1540944859, + 265650449, + 267255605, + 265650462, + 983684753, + 267255661, + 265650613, + 253218850, + 983684828, + 7078008180, + 757338941, + 757338943 + ] + }, + { + "wayId": 857299581, + "nodeIds": [ + 7992911279, + 8068564034, + 2379081462, + 2379081466, + 8068564090, + 8068564091, + 4070164973, + 983641279 + ] + }, + { + "wayId": 229288494, + "nodeIds": [ + 1599923781, + 5894970034, + 253218858, + 7078008160, + 7078008204, + 7078008224, + 1464323830, + 983684836, + 983684776, + 983684811, + 2379081769 + ] + }, + { + "wayId": 857497464, + "nodeIds": [ + 7994764696, + 2379084676, + 364942222, + 1626510458, + 7869544173, + 7869544176, + 7869544174, + 364942084, + 364942090, + 364942094, + 1736729062, + 1736729150, + 2379084699, + 2379084703, + 7077990874, + 364942101, + 13178671358, + 2663752126 + ] + }, + { + "wayId": 31008571, + "nodeIds": [ + 360021215, + 656729732 + ] + }, + { + "wayId": 821207618, + "nodeIds": [ + 7667567240, + 248512541, + 7667567243 + ] + }, + { + "wayId": 1239857234, + "nodeIds": [ + 11834678209, + 11518743823, + 11518743824, + 11518743825, + 11518743826, + 11518743827, + 11518743828, + 11518743829, + 11518743830, + 11518743831, + 11518743832, + 11518743833, + 11518743834, + 11518743835, + 11518743836, + 11834678208, + 11518743838, + 11518743839, + 12840249381, + 11518743846, + 11518743847, + 13097083520, + 11518743848, + 11518743849, + 11518743850, + 11518743851, + 11518743852, + 11518743853, + 11518743854, + 11518743855, + 11518743856, + 11518743857, + 11518743858, + 11518743859, + 11518743860, + 11518743861, + 11518743862, + 11518774785, + 11518774786, + 11518774787, + 11518774788, + 11518774789, + 11518774790, + 11518774791, + 11518774792, + 11518774793, + 11518774794, + 11834678207, + 12839919770, + 12839919767, + 11518774797, + 11518774798, + 11518774799, + 11518774800, + 11518774801, + 11518774802, + 11518774803, + 11518774804, + 11518774805, + 11518774806, + 11518774807, + 11518774808, + 11518774809, + 11518774811, + 12833899126, + 11834673033, + 11834673034, + 11834673035, + 11834673036, + 11834673037, + 11834673038, + 11834673039, + 11834673040, + 11834673041, + 11834673042, + 11834673043, + 11834673044, + 11834673045, + 11834673046, + 11834673047, + 11834673048, + 11834673049, + 11834673050, + 11834673051, + 11834673052, + 11834673053, + 11834673054, + 11834673055, + 11834673056, + 11834673057, + 11834673058, + 11834678178, + 11834678206, + 11834673060, + 11834678170, + 11834678171, + 11834678172, + 11834678173, + 11834678174, + 11834678175, + 11834678176, + 11834678177, + 11834678186, + 11834678187, + 11834678188, + 11834678189, + 11834678190, + 12833545526, + 12833639921, + 12833639922, + 12833639923, + 12833639924, + 12841569716, + 12841569718, + 12833639925, + 12833639926, + 12833639927, + 12833639928, + 12833639929, + 12833639932, + 12833639933, + 12833639930, + 12833639934, + 12833639935, + 12833639936, + 12833639937, + 12833639938, + 12833639939, + 12833639940, + 12833639941, + 12833639942, + 12833639943, + 12833639944, + 12833639945, + 12833639946, + 12833639949, + 12833639947, + 12833639950, + 12833639951, + 12833639952, + 12833639953, + 12833639954, + 12833639955, + 12833639956, + 12833639957, + 12833639958, + 12833639959, + 12833639960, + 12833639962, + 12833639961, + 12833639963, + 12833639964, + 12833639965, + 13507617281, + 12833639966, + 12833639968, + 12833639967, + 12833639969, + 12833639970, + 12833639971, + 12833639972, + 12833639973, + 12833639974, + 12833639975, + 12833639976, + 12833639977, + 12833639978, + 12833639979, + 12833639980, + 12833639982, + 12833639981, + 12833639983, + 12833639984, + 12833639985, + 12833639986, + 12833639987, + 12833639988, + 12833639989, + 12833639990, + 12833639991, + 12833639992, + 12833639993, + 12833639994, + 12833639995, + 12833639996, + 12833639997, + 12833639998, + 12833639999, + 12833640000, + 12833671102, + 12833671101, + 12833671103, + 12833671104, + 12833671105, + 12833671106, + 12833671107, + 12833671108, + 12833671109, + 12833671110, + 12833671111, + 12833671112, + 12833671114, + 12833671115, + 12833671113, + 12833671116, + 12833671117, + 12833671118, + 12833671119, + 12833671120, + 12833671121, + 12833671124, + 12833671123, + 12833671122, + 12833671125, + 12833671126, + 12833671127, + 12833671128, + 12833671129, + 12833671130, + 12833671131, + 12833671134, + 12833671132, + 12833671135, + 12833671136, + 12833671137, + 12833671138, + 12833671139, + 12833671140, + 12833671141, + 12833671144, + 12833671142, + 12833671145, + 12833671146, + 12833671143, + 12833671147, + 12833671148, + 12833671149, + 12833671150, + 12833671151, + 12833671161, + 12833671152, + 12833671153, + 12833671154, + 12833671155, + 12833671156, + 12833671157, + 12833671158, + 12833671159, + 12833671160, + 12833671162, + 356781456 + ] + }, + { + "wayId": 413348674, + "nodeIds": [ + 54548603, + 12188472889, + 54548602, + 12188472890, + 12188472892, + 4146820476, + 12188472894, + 4146820478, + 12188472899, + 12188472901, + 12188472909, + 54548601 + ] + }, + { + "wayId": 857299600, + "nodeIds": [ + 7992911295, + 656420399 + ] + }, + { + "wayId": 104071621, + "nodeIds": [ + 9161059445, + 12188472855, + 54548620, + 12188472857, + 12188472860, + 12188637872, + 4146818795, + 12188472862, + 54548618, + 12188472864, + 12188472865, + 54548617, + 12188472868, + 12188472869, + 1201078035 + ] + }, + { + "wayId": 991537163, + "nodeIds": [ + 9161059444, + 6128181713, + 9161059445 + ] + }, + { + "wayId": 31318888, + "nodeIds": [ + 348580355, + 348580215 + ] + }, + { + "wayId": 229288516, + "nodeIds": [ + 2379081185, + 7992911241 + ] + }, + { + "wayId": 857299570, + "nodeIds": [ + 7992911269, + 3721453110, + 2281806189, + 2281806195, + 3721453109, + 2281806200, + 1461684494, + 2379081554, + 7197474808, + 756757832, + 7197474804, + 7197474800, + 7992911267 + ] + }, + { + "wayId": 1360109873, + "nodeIds": [ + 7007685004, + 7007685005, + 7007685006, + 7007685007, + 7007685008 + ] + }, + { + "wayId": 104071626, + "nodeIds": [ + 2133021687, + 1201078035 + ] + }, + { + "wayId": 857299518, + "nodeIds": [ + 7992911231, + 364942255, + 2379084684, + 2663752123, + 3457542400, + 3457542394, + 3457542395, + 364942236, + 364942227, + 3457542192, + 3457542393, + 364942224, + 8025871072, + 7992911230 + ] + }, + { + "wayId": 30979691, + "nodeIds": [ + 344478662, + 344478663 + ] + }, + { + "wayId": 30218672, + "nodeIds": [ + 333045453, + 12188473013, + 12188473014, + 54544335 + ] + }, + { + "wayId": 830853198, + "nodeIds": [ + 54548637, + 7757618618, + 12188637822, + 12188637824, + 12188637826, + 12188637828, + 54548636, + 12188637830, + 7757533290, + 12188637832, + 12188637834, + 54548634, + 12188637836, + 12188637838, + 4146845297, + 12188637839, + 12188637841, + 54548633, + 12188637844, + 12188637845, + 54548632, + 12188637847, + 4146845289, + 12188637849, + 12188637852, + 54548631, + 12188637854, + 12188637856, + 4146844980, + 12188637857, + 8904838366, + 8904838365, + 12188637861, + 12188637862, + 54548628, + 12188637865, + 4146845291, + 12188472812, + 54548626, + 12188472815, + 12188472816, + 4146845292, + 12188472818, + 12188637866, + 54548625, + 12188637868, + 12188472821, + 54548624 + ] + }, + { + "wayId": 830853200, + "nodeIds": [ + 1617713367, + 3868748379, + 12188637795, + 12188637792, + 6123285636, + 1617713378, + 1617713380 + ] + }, + { + "wayId": 857299523, + "nodeIds": [ + 983684752, + 2379081833, + 3484233110, + 1469771698, + 3484233109, + 3484233108, + 267319392, + 3484233107, + 983684780, + 3484233106, + 983684814, + 2379081839, + 3484233104, + 2379081841, + 3484233105, + 267319561, + 2379081844 + ] + }, + { + "wayId": 84683273, + "nodeIds": [ + 983649414, + 7992911264 + ] + }, + { + "wayId": 23115961, + "nodeIds": [ + 54544335, + 54544338 + ] + }, + { + "wayId": 823102538, + "nodeIds": [ + 7684777827, + 7684777834, + 7684777833, + 7684777832, + 7684777831, + 7684777843, + 7684777830 + ] + }, + { + "wayId": 234918794, + "nodeIds": [ + 2379081698, + 2379081696, + 656420406, + 7992911295 + ] + }, + { + "wayId": 875511460, + "nodeIds": [ + 8148948745, + 8149086941 + ] + }, + { + "wayId": 1228720481, + "nodeIds": [ + 7684777830, + 11394895672, + 333113201, + 11400065300, + 11400065302, + 11394895678, + 314282624, + 11394895674, + 11400065298, + 11400065297, + 7667567188 + ] + }, + { + "wayId": 821207619, + "nodeIds": [ + 8148948753, + 11487218496, + 11400065340, + 11400065345, + 5191230595, + 9924473484, + 11400065348, + 11400065349, + 11400065355, + 339923259, + 8755980283, + 11400065353, + 11400065354, + 8534702755, + 11400065367, + 248533209, + 11400065366, + 339923258, + 3928788952, + 339923256, + 11400069770, + 1988823876, + 11400069771, + 12800011555, + 12800023839, + 12800011591, + 248533272, + 11400069776, + 12800011551, + 12800011553, + 339923255, + 339923254, + 11400069775, + 11400069774, + 339923253, + 11400069773, + 339923252, + 411019933, + 11400069795, + 11400069794, + 11400069837, + 248533273, + 11278237888, + 7878078927, + 12798036101, + 11400069841, + 11400069831, + 10780247008, + 339917212, + 11400069806, + 7388813760, + 11400069812, + 339917209, + 11400069811, + 339917206, + 11400069810, + 7814027687, + 11400069808, + 339917203, + 248533275, + 11400069807, + 11487218498, + 11400069842 + ] + }, + { + "wayId": 830853196, + "nodeIds": [ + 1252656797, + 6130909078, + 1252656780 + ] + }, + { + "wayId": 857299524, + "nodeIds": [ + 2379081844, + 3484233097, + 983684798, + 3484233096, + 2379081847, + 3484233095, + 1464381972, + 3484233094, + 2379081851, + 1469771722, + 983684830 + ] + }, + { + "wayId": 109431119, + "nodeIds": [ + 1252656780, + 12188473067, + 6130909593, + 6001135314, + 12188473069, + 1252656778, + 6130909592, + 12188473071, + 6130909591, + 7757533307, + 1252656766, + 1252656792, + 1252656769, + 12188473097, + 7757533313, + 7757533296 + ] + }, + { + "wayId": 857299557, + "nodeIds": [ + 7992911257, + 2379081656, + 3720464031, + 756757807, + 3720464029, + 2087273551, + 3720463922, + 757369925, + 3720464028, + 3720463923, + 2379081663, + 2379081667, + 3720463924, + 756757959, + 3720464025, + 757369933, + 2379081676, + 2379081678, + 2088234160, + 3720464027, + 2379081681, + 3720545919, + 2088234163, + 2379081684, + 3720464026, + 2088234164, + 1464397867, + 7992911256 + ] + }, + { + "wayId": 857299540, + "nodeIds": [ + 7992911243, + 2987358440, + 7078007993, + 2379081787, + 3484303025, + 3484303024, + 1156789084, + 3484303023, + 3484303022, + 983684831, + 7078007978, + 3484303020, + 3484303021, + 2379081791, + 7078007972, + 2379081185 + ] + }, + { + "wayId": 31318886, + "nodeIds": [ + 348580215, + 12188473035, + 54544344, + 12188473037, + 12188473039, + 12188473041, + 4146802788, + 12188473044, + 54544345, + 12188473046, + 4146802787, + 12188473048, + 4146806989, + 12188473050, + 12188473051, + 344794262, + 12188473054, + 54544347 + ] + }, + { + "wayId": 947016416, + "nodeIds": [ + 8766060626, + 7644357222, + 53954482 + ] + }, + { + "wayId": 413350609, + "nodeIds": [ + 1617713365, + 12188637812, + 54548637 + ] + }, + { + "wayId": 30218674, + "nodeIds": [ + 333045499, + 12188473012, + 333045453 + ] + }, + { + "wayId": 1117160826, + "nodeIds": [ + 12987593872, + 12987593873, + 12987593874, + 12987593875, + 11166818784, + 10884065649, + 10884065648, + 12987593876, + 10884065650, + 12987593877, + 10217219513, + 12987593878, + 10884065651, + 10884065652, + 12987593880, + 12987593879, + 10217247162, + 10884065653, + 10217247161, + 12987593882, + 12987593885, + 10890417174, + 12987593883, + 12987593884, + 10884065654, + 12987593886, + 12987593887, + 12987593888, + 10217247160, + 10890417172, + 10890417176, + 10890417173, + 12987593889, + 13134211506, + 10217247159, + 12987593890, + 10890417175, + 12987593891, + 10890417171, + 10217247158, + 10890417168, + 10890417169, + 10890417170, + 12987593892, + 10217247157, + 13628242186, + 13628242185, + 13628242182, + 13628242183, + 10217247156, + 12987593893, + 12987593894, + 10890417167, + 10217247155, + 12987593895, + 10217247154 + ] + }, + { + "wayId": 857299599, + "nodeIds": [ + 7992911294, + 8068633885, + 4070161833, + 582467795 + ] + }, + { + "wayId": 9808101, + "nodeIds": [ + 1477508092, + 7650170169 + ] + }, + { + "wayId": 819147517, + "nodeIds": [ + 8205952614, + 339927325, + 7644357261, + 7644357262, + 248534074, + 7644357260, + 7644357263, + 7644357259, + 339927326, + 7644357266, + 7644357267, + 7644357249, + 7649884160, + 53964005 + ] + }, + { + "wayId": 84683252, + "nodeIds": [ + 983684806, + 5794129823, + 7992911245 + ] + }, + { + "wayId": 857299591, + "nodeIds": [ + 7992911288, + 7197474473, + 2030163935, + 2571154301, + 7197474484, + 2483718462, + 2483718473, + 7197474487, + 1825678689 + ] + }, + { + "wayId": 148693606, + "nodeIds": [ + 1617713365, + 12188637802, + 12188637803, + 12188637800, + 7757533297, + 1617713366 + ] + }, + { + "wayId": 84683285, + "nodeIds": [ + 983684802, + 2560775583, + 983684752 + ] + }, + { + "wayId": 857299592, + "nodeIds": [ + 7992911289, + 3556698970, + 8237931326, + 2128905981, + 2119969543, + 3463643487, + 2882494302, + 8237931348, + 2882494305, + 3463643486, + 8237931338, + 3463643485, + 2882494308, + 3463643484, + 2119969544, + 3463643480, + 1943151795, + 3463643479, + 3463643483, + 2119969545, + 3463643478, + 2570328761, + 3463643481, + 3463643482, + 333033967, + 1943151811, + 3556698976, + 7197474572, + 360021215 + ] + }, + { + "wayId": 9809463, + "nodeIds": [ + 344298257, + 11918514655, + 12188472884, + 54548606, + 12188472886, + 3572756367 + ] + }, + { + "wayId": 857299525, + "nodeIds": [ + 983684830, + 267319872, + 344552703, + 983684819, + 1469720878, + 7078007773, + 7078007764, + 983684824 + ] + }, + { + "wayId": 857299538, + "nodeIds": [ + 7992911241, + 2379081793, + 7078007950, + 3484263448, + 2379081795, + 3484263447, + 3484263446, + 983684786, + 3484263438, + 3484263437, + 2379081798, + 983684825, + 3484263436, + 2379081802, + 3484263435, + 2379081804, + 3484263434, + 1419303451, + 3484263431, + 1541379955, + 1419299470, + 3484263421, + 1469817307, + 3484263419, + 3484263420, + 3484263418, + 1419303456, + 7992911237 + ] + }, + { + "wayId": 31009105, + "nodeIds": [ + 54544347, + 1374224468, + 344794263 + ] + }, + { + "wayId": 857299544, + "nodeIds": [ + 7992911247, + 2987358637, + 1464381977, + 2987355538, + 656184855, + 656184854, + 7078008016, + 656184869, + 2987358544, + 656184864, + 656184862, + 7992911243 + ] + }, + { + "wayId": 30979693, + "nodeIds": [ + 4146836665, + 7757533289, + 12188472852, + 344478662 + ] + }, + { + "wayId": 857299530, + "nodeIds": [ + 1469817310, + 3484263410, + 1543288706, + 3484263408, + 267260805, + 3484263406, + 2562225989, + 3484263405, + 3484263407, + 1469817315, + 267260804, + 3484263400, + 2903425310, + 2093074717, + 2903425309, + 2379081822, + 7078007881, + 556980712, + 2093074719, + 2379081824, + 3484263398, + 1469771688, + 983684782, + 3484263399, + 2379081828, + 983684816, + 7992911235 + ] + }, + { + "wayId": 413347086, + "nodeIds": [ + 344794263, + 54544350, + 12188473056, + 12188473057, + 8237931657, + 54544351, + 8237931659, + 12188473060, + 1254174256, + 7757596696, + 8237931660, + 4146806999, + 12188473063, + 8237931663, + 1254174257, + 8237931664 + ] + }, + { + "wayId": 885928666, + "nodeIds": [ + 8237931664, + 1252656797 + ] + }, + { + "wayId": 857299589, + "nodeIds": [ + 2308759197, + 3721897807, + 2128896129, + 3721897806, + 2308759196, + 2128896116, + 2882492398, + 3721897805, + 2442266691, + 5717731674, + 2030163909, + 3948895312, + 3721897804, + 12202628595, + 2442266706, + 2030163917, + 2342958396 + ] + }, + { + "wayId": 640152611, + "nodeIds": [ + 2663752126, + 6030836157, + 6030836156, + 13178671393, + 7014762375, + 7001580950, + 6030836154, + 6030836153, + 6030836152, + 7869544158, + 7001580953, + 9228695774, + 6030836150, + 6030836149, + 6030836148, + 6030836147, + 6030836146, + 7869506572, + 6938996395, + 7869506575, + 7613591562 + ] + }, + { + "wayId": 830853199, + "nodeIds": [ + 1617713366, + 12188637804, + 1617713367 + ] + }, + { + "wayId": 51423346, + "nodeIds": [ + 2379081698, + 656420409, + 2430401817 + ] + }, + { + "wayId": 857299568, + "nodeIds": [ + 7992911267, + 10731002621, + 7197474788, + 983649414 + ] + }, + { + "wayId": 857299579, + "nodeIds": [ + 7992911277, + 1163670142, + 1163670121, + 8068564082, + 3282027899, + 2379081497, + 2379081501, + 1163670131, + 8068564064, + 7992911276 + ] + }, + { + "wayId": 351489010, + "nodeIds": [ + 3572756367, + 54548603 + ] + }, + { + "wayId": 171555975, + "nodeIds": [ + 1825678690, + 4505040979 + ] + }, + { + "wayId": 453821439, + "nodeIds": [ + 4505040982, + 1825678689 + ] + }, + { + "wayId": 413348673, + "nodeIds": [ + 54548601, + 54548600, + 12188472911, + 12188472912, + 12188472913, + 54548599, + 12188472914, + 4146820472, + 12188472915, + 12188472916, + 344292204, + 12188472917, + 12188472918, + 4146820471, + 12188472919, + 54548598, + 12188472920, + 12188472922, + 6128768632, + 12188472921, + 12188472928, + 344292202 + ] + }, + { + "wayId": 857299563, + "nodeIds": [ + 7992911261, + 2379081563, + 756757900, + 3721306230, + 2379081569, + 3721306231, + 2379081573, + 7992911260 + ] + }, + { + "wayId": 486218379, + "nodeIds": [ + 344292202, + 12188472929, + 7757533302, + 6128768627, + 54548597, + 7757533303, + 54548595, + 54548594, + 12188473010, + 333045499 + ] + }, + { + "wayId": 857299597, + "nodeIds": [ + 7992911292, + 2379081427, + 7992911293 + ] + }, + { + "wayId": 857299533, + "nodeIds": [ + 7992911237, + 7078007921, + 267261046, + 7078007920, + 7078007892, + 267261033, + 7078007894, + 1469817310 + ] + }, + { + "wayId": 991537162, + "nodeIds": [ + 344478663, + 231888136, + 54548621, + 9161059444 + ] + }, + { + "wayId": 823102542, + "nodeIds": [ + 7684777877, + 7684777827 + ] + }, + { + "wayId": 821207614, + "nodeIds": [ + 7667567196, + 7669152618, + 7667567193, + 7669152619, + 7667567194, + 7667567195, + 7667567227, + 7667567226, + 764715243, + 7667567223, + 5817633582, + 764716162, + 7667567221, + 764715684, + 7667567220, + 5817633583, + 7667567219, + 7667567218, + 5817633584, + 7667567236, + 248512542, + 11107355560, + 11487218495, + 7667567237 + ] + }, + { + "wayId": 857299562, + "nodeIds": [ + 7992911260, + 757369934, + 757369956, + 2088242454, + 756757883, + 3721304908, + 2088242458, + 3721304909, + 1461684520, + 7992911259 + ] + }, + { + "wayId": 219646819, + "nodeIds": [ + 2278465609, + 3721923420, + 7197474377, + 2564187624 + ] + }, + { + "wayId": 1172129796, + "nodeIds": [ + 13159491214, + 13159307124, + 8832628118, + 10884065632, + 13159307125, + 10884065631, + 10890417181, + 13159307126, + 13159307127, + 13159307128, + 8832628119, + 10884065633, + 10884065634, + 12987601606, + 13159307129, + 10910865699, + 12987601605, + 10890417177, + 12987601604, + 12987601602, + 12987601603, + 13159307130, + 10884065635, + 12987601601, + 10890417180, + 10884065636, + 13159307131, + 10890417179, + 8832628121, + 13159307132, + 13159307133, + 13159307134, + 8832628122, + 13159307135, + 10884065637, + 10884065638, + 8832628123, + 13159307136, + 13159307137, + 13159307138, + 13159307139, + 8832628124, + 10890417178, + 13159307140, + 13159307141, + 13159307142, + 8832628125, + 13159307143, + 13159307144, + 10884065640, + 13159307146, + 10884065641, + 8832628126, + 13159307145, + 13159307147, + 10884065642, + 10890417157, + 13159307148, + 8832628127, + 13159307149, + 10890417155, + 13159307150, + 10884065643, + 13159307151, + 12987593881, + 13159307152, + 10890417156, + 13159307153, + 8832628128, + 13159307154, + 13159307155, + 10884065644, + 13159307156, + 13159307157, + 10884065647, + 13159307158, + 10884065645, + 13159307159, + 13159307160, + 10884065646, + 13159307161, + 8832628129, + 8832628130, + 8832628131, + 10884065656, + 12987593871, + 12987593870, + 12987593869, + 10884065657, + 10884065655, + 12987593868, + 10884065658, + 10884065660, + 10884065661, + 10884065659, + 12987593867, + 10884065662, + 8832628132, + 12987593866, + 12987593864, + 8832628133, + 13184870801, + 10884065665, + 10884065664, + 12987593865, + 10884065666, + 13184870802, + 10884065663, + 8832628134, + 12987593862, + 12987593863, + 10884065667, + 12987593861, + 8832628135, + 10884065668, + 12987593860, + 12987593859, + 12987593858, + 10884065669, + 10884065671, + 10884065672, + 12987593857, + 10884065670, + 12987593855, + 10884065677, + 12987593851, + 10884065673, + 10884065676, + 12987593852, + 12987593853, + 10884065675, + 12987593854, + 10884065674, + 8832628136, + 8832628137, + 10884065678 + ] + }, + { + "wayId": 32461720, + "nodeIds": [ + 983684824, + 7078007762, + 1469720916, + 983684773, + 2379081859, + 983684807, + 983684754, + 983684762, + 1480624529, + 364941956, + 2379081866, + 364941958, + 2379081869, + 364941983, + 2379081871, + 364941988, + 1739615472, + 2379081875, + 1739615479, + 2987355334, + 2379081878, + 1739615477, + 2379081882, + 1739615471, + 2379084663, + 1739615476, + 7078007607, + 1739615474, + 2379084667, + 3004322934, + 7078007538, + 364941991 + ] + }, + { + "wayId": 749366976, + "nodeIds": [ + 7007685001, + 7007685002, + 7007685003, + 1218403149, + 7007685004 + ] + }, + { + "wayId": 857299527, + "nodeIds": [ + 7992911235, + 983684821, + 2560775579, + 983684802 + ] + }, + { + "wayId": 84683266, + "nodeIds": [ + 364941991, + 7078007540, + 2784833517, + 2784833522, + 364942070, + 2379084670, + 2784833530, + 2784833536, + 2663752116, + 983684793 + ] + }, + { + "wayId": 857299517, + "nodeIds": [ + 7992911230, + 7992911311, + 7992911313, + 7992911312, + 7994764696 + ] + }, + { + "wayId": 857299582, + "nodeIds": [ + 7992911280, + 2379081442, + 3721473620, + 2281854512, + 3721473619, + 2281854523, + 3721473618, + 2281854521, + 3721473617, + 2379081452, + 3721473615, + 2281854511, + 3721473616, + 3721473614, + 3721473621, + 582467796, + 8068564030, + 7992911279 + ] + }, + { + "wayId": 533766338, + "nodeIds": [ + 2133021687, + 12188472872, + 4146818801, + 12188472874, + 2133021686, + 12188472876, + 4146818811, + 12188472878, + 4146818803, + 1201071464, + 54548614, + 12188472879, + 7757533299, + 54548611, + 12188472882, + 12188637942, + 54548610, + 12188637945, + 231873359, + 7757533300, + 344298257 + ] + }, + { + "wayId": 23115962, + "nodeIds": [ + 4146814477, + 12188473016, + 12188473018, + 12188473021, + 12188473023, + 4146814479, + 12188473025, + 6128803994, + 4146814478, + 12188473027, + 6128778349, + 54544340, + 6128778350, + 4146807001, + 7757533304, + 4146806991, + 12188473030, + 54544342, + 348580355 + ] + }, + { + "wayId": 857299543, + "nodeIds": [ + 7992911245, + 757315600, + 2379081755, + 3484981499, + 3484981500, + 983684817, + 3484981497, + 2379081757, + 3484981498, + 2379081759, + 2379081761, + 3484981502, + 3484981503, + 983684770, + 2379081766, + 7992911247 + ] + }, + { + "wayId": 413347931, + "nodeIds": [ + 4146814477, + 12188473015, + 12188473020, + 54544338 + ] + }, + { + "wayId": 84683263, + "nodeIds": [ + 983684793, + 7078007504, + 2663752118, + 7992911231 + ] + }, + { + "wayId": 857299595, + "nodeIds": [ + 7992911282, + 344790662, + 2379081392, + 3132022299, + 344790663, + 2379081411, + 2081167557, + 3463402039, + 656729741 + ] + } + ], + "nodes": [ + { + "nodeId": 5191230595, + "name": "Jean Jaurès", + "lat": 43.606198, + "lon": 1.4494956 + }, + { + "nodeId": 248512541, + "name": "Jolimont", + "lat": 43.6153075, + "lon": 1.4633672 + }, + { + "nodeId": 248533209, + "name": "Capitole", + "lat": 43.6043987, + "lon": 1.445252 + }, + { + "nodeId": 8171564117, + "name": "Marengo-SNCF", + "lat": 43.6108684, + "lon": 1.4552018 + }, + { + "nodeId": 12833671123, + "name": "Rangueil", + "lat": 43.5747162, + "lon": 1.4618857 + }, + { + "nodeId": 11166818784, + "name": "Labège Madron", + "lat": 43.5510956, + "lon": 1.5052217 + }, + { + "nodeId": 364941991, + "name": "Andromède-Lycée", + "lat": 43.6548396, + "lon": 1.3735958 + }, + { + "nodeId": 656729741, + "name": "Hippodrome", + "lat": 43.5948728, + "lon": 1.4094423 + }, + { + "nodeId": 8832609078, + "name": "La Vache Gare – Le Grand Marché", + "lat": 43.6355205, + "lon": 1.4372019 + }, + { + "nodeId": 12833671134, + "name": "Faculté de Pharmacie", + "lat": 43.568086, + "lon": 1.4645037 + }, + { + "nodeId": 7007685004, + "name": "Hôpital Rangueil - Louis Lareng", + "lat": 43.5583306, + "lon": 1.4530223 + }, + { + "nodeId": 2342958396, + "name": "Croix de Pierre", + "lat": 43.5856208, + "lon": 1.4278901 + }, + { + "nodeId": 333113201, + "name": "Argoulets", + "lat": 43.6243168, + "lon": 1.4766921 + }, + { + "nodeId": 53954482, + "name": "Basso Cambo", + "lat": 43.5699548, + "lon": 1.3922918 + }, + { + "nodeId": 8832609067, + "name": "Sept Deniers – Stade Toulousain", + "lat": 43.6205085, + "lon": 1.4111737 + }, + { + "nodeId": 12841569716, + "name": "Jean Jaurès", + "lat": 43.6059902, + "lon": 1.4483803 + }, + { + "nodeId": 8832628132, + "name": "Diagora", + "lat": 43.5443343, + "lon": 1.5097353 + }, + { + "nodeId": 582467795, + "name": "Zénith", + "lat": 43.6008658, + "lon": 1.411406 + }, + { + "nodeId": 8832609106, + "name": "Côte Pavée", + "lat": 43.5938429, + "lon": 1.4657873 + }, + { + "nodeId": 11400069841, + "name": "Patte d'Oie", + "lat": 43.5964074, + "lon": 1.4230168 + }, + { + "nodeId": 8832609049, + "name": "Fontaine Lumineuse", + "lat": 43.6088074, + "lon": 1.3538265 + }, + { + "nodeId": 12833639982, + "name": "Empalot", + "lat": 43.5797326, + "lon": 1.4420411 + }, + { + "nodeId": 8832609110, + "name": "Limayrac – Cité de l'espace", + "lat": 43.5912268, + "lon": 1.4802289 + }, + { + "nodeId": 248533275, + "name": "Arènes", + "lat": 43.5934608, + "lon": 1.4185362 + }, + { + "nodeId": 8832628138, + "name": "Montaudran Gare – Piste des Géants", + "lat": 43.5723039, + "lon": 1.4813898 + }, + { + "nodeId": 3461484991, + "name": "Île du Ramier", + "lat": 43.5922184, + "lon": 1.4404187 + }, + { + "nodeId": 1252656769, + "name": "Toulouse-Saint-Cyprien-Arènes", + "lat": 43.5938729, + "lon": 1.4178683 + }, + { + "nodeId": 12833639962, + "name": "Palais de Justice", + "lat": 43.5924567, + "lon": 1.4446112 + }, + { + "nodeId": 12833671115, + "name": "Saouzelong", + "lat": 43.5797077, + "lon": 1.4590595 + }, + { + "nodeId": 656729732, + "name": "Arènes", + "lat": 43.5928437, + "lon": 1.4179282 + }, + { + "nodeId": 8832628130, + "name": "Labège Madron", + "lat": 43.5511265, + "lon": 1.505476 + }, + { + "nodeId": 11518774811, + "name": "Canal du Midi", + "lat": 43.6154818, + "lon": 1.4345301 + }, + { + "nodeId": 9516080584, + "name": "Bellefontaine", + "lat": 43.5660849, + "lon": 1.3981476 + }, + { + "nodeId": 12833639968, + "name": "Saint-Michel - Marcel Langer", + "lat": 43.5863338, + "lon": 1.4470737 + }, + { + "nodeId": 983684802, + "name": "Grand Noble", + "lat": 43.6447688, + "lon": 1.3774771 + }, + { + "nodeId": 12833639949, + "name": "Carmes", + "lat": 43.5975016, + "lon": 1.445393 + }, + { + "nodeId": 2580613908, + "name": "Palais de Justice", + "lat": 43.5927702, + "lon": 1.4440516 + }, + { + "nodeId": 12833671102, + "name": "Saint-Agne SNCF", + "lat": 43.5804421, + "lon": 1.4501089 + }, + { + "nodeId": 248533539, + "name": "Mermoz", + "lat": 43.5835138, + "lon": 1.4151246 + }, + { + "nodeId": 983684832, + "name": "Arènes Romaines", + "lat": 43.6141015, + "lon": 1.3983014 + }, + { + "nodeId": 2342958398, + "name": "Déodat de Séverac", + "lat": 43.5896483, + "lon": 1.4216813 + }, + { + "nodeId": 2342958397, + "name": "Avenue de Muret-Marcel Cavaillé", + "lat": 43.5893727, + "lon": 1.431786 + }, + { + "nodeId": 2379081174, + "name": "Patinoire-Barradels", + "lat": 43.6400747, + "lon": 1.38276 + }, + { + "nodeId": 6938996395, + "name": "MEETT", + "lat": 43.667624, + "lon": 1.3599808 + }, + { + "nodeId": 8832628137, + "name": "Labège Gare", + "lat": 43.5390078, + "lon": 1.5207295 + }, + { + "nodeId": 11518743862, + "name": "Barrière de Paris", + "lat": 43.6263847, + "lon": 1.4340486 + }, + { + "nodeId": 983684824, + "name": "Place Georges Brassens", + "lat": 43.6485505, + "lon": 1.3756491 + }, + { + "nodeId": 983684760, + "name": "Ancely", + "lat": 43.6182283, + "lon": 1.3969311 + }, + { + "nodeId": 10890417177, + "name": "Aérospace Campus", + "lat": 43.5634847, + "lon": 1.4923986 + }, + { + "nodeId": 8832609053, + "name": "Saint-Martin-du-Touch", + "lat": 43.6103854, + "lon": 1.371477 + }, + { + "nodeId": 1599923781, + "name": "Pasteur-Mairie de Blagnac", + "lat": 43.6340381, + "lon": 1.3913438 + }, + { + "nodeId": 11834678208, + "name": "Trois Cocus", + "lat": 43.6380034, + "lon": 1.444896 + }, + { + "nodeId": 757338943, + "name": "Guyenne - Berry", + "lat": 43.6308743, + "lon": 1.3917438 + }, + { + "nodeId": 314282624, + "name": "Roseraie", + "lat": 43.6200101, + "lon": 1.4696348 + }, + { + "nodeId": 364942101, + "name": "Aéroconstellation", + "lat": 43.6634677, + "lon": 1.3626286 + }, + { + "nodeId": 11834678207, + "name": "Minimes - Claude Nougaro", + "lat": 43.6204971, + "lon": 1.435805 + }, + { + "nodeId": 1470735120, + "name": "Servanty Airbus", + "lat": 43.6254903, + "lon": 1.3934923 + }, + { + "nodeId": 983684806, + "name": "Odyssud - Ritouret", + "lat": 43.6362564, + "lon": 1.3853347 + }, + { + "nodeId": 11834678190, + "name": "Jeanne d'Arc", + "lat": 43.6091034, + "lon": 1.4451331 + }, + { + "nodeId": 54544342, + "name": "Le TOEC", + "lat": 43.5954976, + "lon": 1.4017026 + }, + { + "nodeId": 231888136, + "name": "Les Ramassiers", + "lat": 43.6025245, + "lon": 1.3529733 + }, + { + "nodeId": 8832609048, + "name": "Colomiers Gare", + "lat": 43.6044092, + "lon": 1.3352844 + }, + { + "nodeId": 8832609095, + "name": "Matabiau Gare", + "lat": 43.6112822, + "lon": 1.4553912 + }, + { + "nodeId": 2379081163, + "name": "Pasteur-Mairie de Blagnac", + "lat": 43.6346119, + "lon": 1.3912349 + }, + { + "nodeId": 757315615, + "name": "Place du Relais", + "lat": 43.636771, + "lon": 1.3900718 + }, + { + "nodeId": 12833671145, + "name": "Université Paul Sabatier", + "lat": 43.5608451, + "lon": 1.4632875 + }, + { + "nodeId": 10890417169, + "name": "Parc du Canal", + "lat": 43.5513126, + "lon": 1.4886521 + }, + { + "nodeId": 248533545, + "name": "Bagatelle", + "lat": 43.5800184, + "lon": 1.4122549 + }, + { + "nodeId": 12833639933, + "name": "François Verdier", + "lat": 43.6004617, + "lon": 1.4521612 + }, + { + "nodeId": 8832628139, + "name": "Fondeyre", + "lat": 43.6322682, + "lon": 1.4279967 + }, + { + "nodeId": 11400069837, + "name": "Saint-Cyprien - République", + "lat": 43.5979593, + "lon": 1.4314683 + }, + { + "nodeId": 8832609101, + "name": "François Verdier", + "lat": 43.6002559, + "lon": 1.4519241 + }, + { + "nodeId": 54548597, + "name": "Lardenne", + "lat": 43.5966063, + "lon": 1.3840513 + }, + { + "nodeId": 8832609092, + "name": "Bonnefoy", + "lat": 43.6186042, + "lon": 1.4563846 + }, + { + "nodeId": 983641279, + "name": "Cartoucherie", + "lat": 43.6031468, + "lon": 1.4076812 + }, + { + "nodeId": 7007685001, + "name": "Université Paul Sabatier", + "lat": 43.5602252, + "lon": 1.4646455 + }, + { + "nodeId": 11518743852, + "name": "La Vache", + "lat": 43.634103, + "lon": 1.4360015 + }, + { + "nodeId": 8832609088, + "name": "Raisin", + "lat": 43.6182501, + "lon": 1.4463249 + }, + { + "nodeId": 8832609065, + "name": "Blagnac", + "lat": 43.6215712, + "lon": 1.3955879 + }, + { + "nodeId": 248533272, + "name": "Esquirol", + "lat": 43.6000704, + "lon": 1.4437554 + }, + { + "nodeId": 248533388, + "name": "Fontaine Lestang", + "lat": 43.5875104, + "lon": 1.4183762 + }, + { + "nodeId": 3721923420, + "name": "Fer à Cheval", + "lat": 43.5926438, + "lon": 1.4354601 + }, + { + "nodeId": 9516031292, + "name": "Mirail-Université", + "lat": 43.5747163, + "lon": 1.4019964 + }, + { + "nodeId": 12833671160, + "name": "Ramonville", + "lat": 43.5557687, + "lon": 1.4764144 + }, + { + "nodeId": 7007685008, + "name": "Oncopole - Lise Enjalbert", + "lat": 43.5543274, + "lon": 1.4283203 + }, + { + "nodeId": 333182010, + "name": "Balma-Gramont", + "lat": 43.6290537, + "lon": 1.4827682 + }, + { + "nodeId": 1617713378, + "name": "Colomiers", + "lat": 43.6034675, + "lon": 1.3337924 + }, + { + "nodeId": 11834678209, + "name": "Borderouge", + "lat": 43.6403887, + "lon": 1.4524982 + }, + { + "nodeId": 983684793, + "name": "Beauzelle - Aéroscopia", + "lat": 43.6602643, + "lon": 1.3695259 + }, + { + "nodeId": 8832609082, + "name": "Lycée Toulouse-Lautrec", + "lat": 43.6268422, + "lon": 1.4437899 + }, + { + "nodeId": 8832609070, + "name": "Ponts Jumeaux", + "lat": 43.6199177, + "lon": 1.4232104 + }, + { + "nodeId": 2379081185, + "name": "Patinoire-Barradels", + "lat": 43.6407513, + "lon": 1.3819876 + }, + { + "nodeId": 9516079519, + "name": "Reynerie", + "lat": 43.5708547, + "lon": 1.4017738 + }, + { + "nodeId": 11071166323, + "name": "Ormeau", + "lat": 43.5791828, + "lon": 1.4833564 + }, + { + "nodeId": 11834678206, + "name": "Compans-Caffarelli", + "lat": 43.6105033, + "lon": 1.4351647 + }, + { + "nodeId": 231873359, + "name": "Saint-Martin-du-Touch", + "lat": 43.5997633, + "lon": 1.3718606 + }, + { + "nodeId": 983649414, + "name": "Purpan", + "lat": 43.6091124, + "lon": 1.4020256 + }, + { + "nodeId": 13159491214, + "lat": 43.5672099, + "lon": 1.4855404 + }, + { + "nodeId": 10884065629, + "lat": 43.5695603, + "lon": 1.4826872 + }, + { + "nodeId": 4505040979, + "lat": 43.5886788, + "lon": 1.4231987 + }, + { + "nodeId": 4505040982, + "lat": 43.5883986, + "lon": 1.4236246 + }, + { + "nodeId": 3556698979, + "lat": 43.5928593, + "lon": 1.4177247 + }, + { + "nodeId": 360021168, + "lat": 43.5928639, + "lon": 1.4176627 + }, + { + "nodeId": 6130979383, + "lat": 43.5928734, + "lon": 1.4175917 + }, + { + "nodeId": 6130979384, + "lat": 43.5928836, + "lon": 1.4175387 + }, + { + "nodeId": 6130979485, + "lat": 43.5928972, + "lon": 1.4174911 + }, + { + "nodeId": 3463258685, + "lat": 43.5929132, + "lon": 1.4174415 + }, + { + "nodeId": 360021169, + "lat": 43.592957, + "lon": 1.4173208 + }, + { + "nodeId": 360021170, + "lat": 43.5930255, + "lon": 1.4171589 + }, + { + "nodeId": 360021172, + "lat": 43.5931271, + "lon": 1.4169018 + }, + { + "nodeId": 360021173, + "lat": 43.5932714, + "lon": 1.4165422 + }, + { + "nodeId": 6130923108, + "lat": 43.5933111, + "lon": 1.4164457 + }, + { + "nodeId": 1922446775, + "lat": 43.5933305, + "lon": 1.416396 + }, + { + "nodeId": 360020800, + "lat": 43.5933513, + "lon": 1.4163452 + }, + { + "nodeId": 7197474612, + "lat": 43.593385, + "lon": 1.4162596 + }, + { + "nodeId": 1464397870, + "lat": 43.593421, + "lon": 1.4161541 + }, + { + "nodeId": 360020801, + "lat": 43.5934414, + "lon": 1.4160885 + }, + { + "nodeId": 8237931647, + "lat": 43.5934458, + "lon": 1.4160721 + }, + { + "nodeId": 8237931612, + "lat": 43.5934732, + "lon": 1.4159694 + }, + { + "nodeId": 1922447015, + "lat": 43.5934972, + "lon": 1.4158618 + }, + { + "nodeId": 8237931614, + "lat": 43.593511, + "lon": 1.4157779 + }, + { + "nodeId": 360020802, + "lat": 43.5935263, + "lon": 1.4156634 + }, + { + "nodeId": 8237931617, + "lat": 43.593536, + "lon": 1.4155601 + }, + { + "nodeId": 360020803, + "lat": 43.5935419, + "lon": 1.415415 + }, + { + "nodeId": 360020804, + "lat": 43.5935362, + "lon": 1.415145 + }, + { + "nodeId": 346167781, + "lat": 43.5935239, + "lon": 1.4148902 + }, + { + "nodeId": 7684777863, + "lat": 43.6273137, + "lon": 1.4828539 + }, + { + "nodeId": 7684777865, + "lat": 43.6272525, + "lon": 1.4828132 + }, + { + "nodeId": 7684777861, + "lat": 43.6272192, + "lon": 1.4827905 + }, + { + "nodeId": 7667567237, + "lat": 43.6155917, + "lon": 1.4637868 + }, + { + "nodeId": 7667567240, + "lat": 43.615532, + "lon": 1.4637022 + }, + { + "nodeId": 1825678690, + "lat": 43.5889096, + "lon": 1.4228372 + }, + { + "nodeId": 1825678691, + "lat": 43.5893713, + "lon": 1.4221126 + }, + { + "nodeId": 3936131663, + "lat": 43.5895561, + "lon": 1.4218296 + }, + { + "nodeId": 2283269514, + "lat": 43.589456, + "lon": 1.4219757 + }, + { + "nodeId": 3936131667, + "lat": 43.5904453, + "lon": 1.4204565 + }, + { + "nodeId": 2225823686, + "lat": 43.5905688, + "lon": 1.4202719 + }, + { + "nodeId": 7197474559, + "lat": 43.5898721, + "lon": 1.4213375 + }, + { + "nodeId": 8237931468, + "lat": 43.5905996, + "lon": 1.420217 + }, + { + "nodeId": 8237931464, + "lat": 43.5906362, + "lon": 1.4201611 + }, + { + "nodeId": 3936131671, + "lat": 43.5906506, + "lon": 1.4201384 + }, + { + "nodeId": 8237931454, + "lat": 43.5906666, + "lon": 1.420117 + }, + { + "nodeId": 2225823688, + "lat": 43.5910606, + "lon": 1.4195067 + }, + { + "nodeId": 8237931478, + "lat": 43.5911371, + "lon": 1.4193979 + }, + { + "nodeId": 8237931443, + "lat": 43.5911985, + "lon": 1.4193219 + }, + { + "nodeId": 2077152771, + "lat": 43.5912164, + "lon": 1.4193045 + }, + { + "nodeId": 2225823689, + "lat": 43.59129, + "lon": 1.4192273 + }, + { + "nodeId": 8237931434, + "lat": 43.5913383, + "lon": 1.4191907 + }, + { + "nodeId": 2128905912, + "lat": 43.5914178, + "lon": 1.4191332 + }, + { + "nodeId": 8237931424, + "lat": 43.5914449, + "lon": 1.419117 + }, + { + "nodeId": 8237931431, + "lat": 43.5914041, + "lon": 1.4191433 + }, + { + "nodeId": 8237931410, + "lat": 43.5914683, + "lon": 1.419103 + }, + { + "nodeId": 2128905929, + "lat": 43.5914994, + "lon": 1.4190889 + }, + { + "nodeId": 2903193196, + "lat": 43.5915769, + "lon": 1.419058 + }, + { + "nodeId": 8237931412, + "lat": 43.591601, + "lon": 1.4190497 + }, + { + "nodeId": 2128905955, + "lat": 43.5916517, + "lon": 1.4190323 + }, + { + "nodeId": 8237931396, + "lat": 43.5917124, + "lon": 1.41902 + }, + { + "nodeId": 2128905965, + "lat": 43.591768, + "lon": 1.4190087 + }, + { + "nodeId": 8237931404, + "lat": 43.5918342, + "lon": 1.4190106 + }, + { + "nodeId": 3936131697, + "lat": 43.591857, + "lon": 1.4190112 + }, + { + "nodeId": 8237931316, + "lat": 43.5918792, + "lon": 1.419014 + }, + { + "nodeId": 7992911289, + "lat": 43.5922481, + "lon": 1.4190579 + }, + { + "nodeId": 7992911257, + "lat": 43.6141009, + "lon": 1.3979637 + }, + { + "nodeId": 8149086941, + "lat": 43.6110456, + "lon": 1.4554592 + }, + { + "nodeId": 8390388824, + "lat": 43.6110266, + "lon": 1.455431 + }, + { + "nodeId": 8148948756, + "lat": 43.6106813, + "lon": 1.4549153 + }, + { + "nodeId": 11400065328, + "lat": 43.6106045, + "lon": 1.4548325 + }, + { + "nodeId": 11400065329, + "lat": 43.6104826, + "lon": 1.4547225 + }, + { + "nodeId": 11400065330, + "lat": 43.6101705, + "lon": 1.4545033 + }, + { + "nodeId": 11400065337, + "lat": 43.6097541, + "lon": 1.4541666 + }, + { + "nodeId": 248533308, + "lat": 43.6093299, + "lon": 1.4537735 + }, + { + "nodeId": 8148948753, + "lat": 43.608846, + "lon": 1.4531434 + }, + { + "nodeId": 2564187622, + "lat": 43.5922372, + "lon": 1.4402198 + }, + { + "nodeId": 7197474362, + "lat": 43.5921927, + "lon": 1.4407158 + }, + { + "nodeId": 7992911284, + "lat": 43.5921142, + "lon": 1.441625 + }, + { + "nodeId": 7992911286, + "lat": 43.5922731, + "lon": 1.4342118 + }, + { + "nodeId": 244011428, + "lat": 43.592023, + "lon": 1.4339966 + }, + { + "nodeId": 13037573575, + "lat": 43.5917985, + "lon": 1.4338148 + }, + { + "nodeId": 2119973981, + "lat": 43.591499, + "lon": 1.4335722 + }, + { + "nodeId": 2119973979, + "lat": 43.5908364, + "lon": 1.4330383 + }, + { + "nodeId": 2361286494, + "lat": 43.5900131, + "lon": 1.4323479 + }, + { + "nodeId": 2361286491, + "lat": 43.5898205, + "lon": 1.432193 + }, + { + "nodeId": 5829101304, + "lat": 43.5896904, + "lon": 1.4320555 + }, + { + "nodeId": 5829101306, + "lat": 43.5896182, + "lon": 1.4319936 + }, + { + "nodeId": 7992911310, + "lat": 43.5895453, + "lon": 1.4319311 + }, + { + "nodeId": 2510625527, + "lat": 43.5895184, + "lon": 1.431908 + }, + { + "nodeId": 2510625523, + "lat": 43.5891552, + "lon": 1.4316063 + }, + { + "nodeId": 7197474442, + "lat": 43.5890933, + "lon": 1.4315601 + }, + { + "nodeId": 2510625522, + "lat": 43.5889628, + "lon": 1.4314628 + }, + { + "nodeId": 5829101307, + "lat": 43.5887617, + "lon": 1.4313052 + }, + { + "nodeId": 7992911309, + "lat": 43.588541, + "lon": 1.4311228 + }, + { + "nodeId": 7197474435, + "lat": 43.5884372, + "lon": 1.431037 + }, + { + "nodeId": 10136220544, + "lat": 43.587171, + "lon": 1.4299903 + }, + { + "nodeId": 2128903777, + "lat": 43.5860854, + "lon": 1.4290928 + }, + { + "nodeId": 1964109831, + "lat": 43.5855418, + "lon": 1.4286436 + }, + { + "nodeId": 2308759197, + "lat": 43.5855025, + "lon": 1.4286094 + }, + { + "nodeId": 7992911273, + "lat": 43.6048913, + "lon": 1.4040899 + }, + { + "nodeId": 2379081517, + "lat": 43.6050178, + "lon": 1.403815 + }, + { + "nodeId": 2379081528, + "lat": 43.6056737, + "lon": 1.402353 + }, + { + "nodeId": 7992911270, + "lat": 43.6057297, + "lon": 1.4022261 + }, + { + "nodeId": 2430401817, + "lat": 43.6216339, + "lon": 1.3967469 + }, + { + "nodeId": 10761217020, + "lat": 43.6217216, + "lon": 1.3966958 + }, + { + "nodeId": 3724416615, + "lat": 43.6217929, + "lon": 1.3966344 + }, + { + "nodeId": 3724416619, + "lat": 43.6218321, + "lon": 1.3965931 + }, + { + "nodeId": 4004212599, + "lat": 43.6219593, + "lon": 1.3964303 + }, + { + "nodeId": 757338954, + "lat": 43.6218732, + "lon": 1.3965414 + }, + { + "nodeId": 656420401, + "lat": 43.6221302, + "lon": 1.3962074 + }, + { + "nodeId": 7992911291, + "lat": 43.5932319, + "lon": 1.4093328 + }, + { + "nodeId": 2091875623, + "lat": 43.5932475, + "lon": 1.4092668 + }, + { + "nodeId": 344790673, + "lat": 43.5932734, + "lon": 1.4091961 + }, + { + "nodeId": 2379081350, + "lat": 43.5933, + "lon": 1.4091428 + }, + { + "nodeId": 2379081364, + "lat": 43.5933345, + "lon": 1.4090968 + }, + { + "nodeId": 344790672, + "lat": 43.5933783, + "lon": 1.4090606 + }, + { + "nodeId": 2091875624, + "lat": 43.5934263, + "lon": 1.4090388 + }, + { + "nodeId": 344790671, + "lat": 43.5934834, + "lon": 1.4090341 + }, + { + "nodeId": 344790660, + "lat": 43.5935588, + "lon": 1.4090444 + }, + { + "nodeId": 8238063595, + "lat": 43.5936068, + "lon": 1.4090537 + }, + { + "nodeId": 4674828492, + "lat": 43.5936257, + "lon": 1.4090573 + }, + { + "nodeId": 756977221, + "lat": 43.593643, + "lon": 1.4090605 + }, + { + "nodeId": 344790661, + "lat": 43.5937054, + "lon": 1.4090756 + }, + { + "nodeId": 7992911282, + "lat": 43.5938551, + "lon": 1.409101 + }, + { + "nodeId": 10994605740, + "lat": 43.6362356, + "lon": 1.3868184 + }, + { + "nodeId": 5833972490, + "lat": 43.6362456, + "lon": 1.3860518 + }, + { + "nodeId": 757338959, + "lat": 43.6362478, + "lon": 1.3858842 + }, + { + "nodeId": 7078008072, + "lat": 43.6362535, + "lon": 1.3857134 + }, + { + "nodeId": 7650170120, + "lat": 43.5779039, + "lon": 1.4042244 + }, + { + "nodeId": 8206027387, + "lat": 43.5777523, + "lon": 1.40385 + }, + { + "nodeId": 8206027386, + "lat": 43.5776047, + "lon": 1.4035212 + }, + { + "nodeId": 8206027385, + "lat": 43.5773928, + "lon": 1.4031318 + }, + { + "nodeId": 8206027384, + "lat": 43.5772303, + "lon": 1.4029136 + }, + { + "nodeId": 8206027383, + "lat": 43.5770259, + "lon": 1.4026435 + }, + { + "nodeId": 8206027382, + "lat": 43.5768434, + "lon": 1.4024547 + }, + { + "nodeId": 8206027381, + "lat": 43.5766582, + "lon": 1.4023104 + }, + { + "nodeId": 8206027380, + "lat": 43.5763355, + "lon": 1.4021344 + }, + { + "nodeId": 8206027379, + "lat": 43.5760999, + "lon": 1.402056 + }, + { + "nodeId": 8206027378, + "lat": 43.5758358, + "lon": 1.4020145 + }, + { + "nodeId": 8206027377, + "lat": 43.5751938, + "lon": 1.4020027 + }, + { + "nodeId": 12786256745, + "lat": 43.5750839, + "lon": 1.4020012 + }, + { + "nodeId": 12786256744, + "lat": 43.5750099, + "lon": 1.4020043 + }, + { + "nodeId": 8206027375, + "lat": 43.5739963, + "lon": 1.4019959 + }, + { + "nodeId": 8206027374, + "lat": 43.5738885, + "lon": 1.4019909 + }, + { + "nodeId": 8206027373, + "lat": 43.5736874, + "lon": 1.4019233 + }, + { + "nodeId": 8206027372, + "lat": 43.5734699, + "lon": 1.4018323 + }, + { + "nodeId": 8206027371, + "lat": 43.5730834, + "lon": 1.401637 + }, + { + "nodeId": 8206027370, + "lat": 43.5727971, + "lon": 1.4015587 + }, + { + "nodeId": 8206027369, + "lat": 43.5724296, + "lon": 1.4015215 + }, + { + "nodeId": 8206027368, + "lat": 43.5722406, + "lon": 1.4015222 + }, + { + "nodeId": 8206027367, + "lat": 43.5718948, + "lon": 1.401592 + }, + { + "nodeId": 8206027366, + "lat": 43.5715995, + "lon": 1.4017089 + }, + { + "nodeId": 8206027365, + "lat": 43.5714511, + "lon": 1.4017334 + }, + { + "nodeId": 10931439431, + "lat": 43.5710609, + "lon": 1.4017598 + }, + { + "nodeId": 8206027364, + "lat": 43.570412, + "lon": 1.4018038 + }, + { + "nodeId": 8206027363, + "lat": 43.5685161, + "lon": 1.4018081 + }, + { + "nodeId": 8206027362, + "lat": 43.5683966, + "lon": 1.4017803 + }, + { + "nodeId": 8206027361, + "lat": 43.5682799, + "lon": 1.4017193 + }, + { + "nodeId": 8206027360, + "lat": 43.5681573, + "lon": 1.4016429 + }, + { + "nodeId": 8206027359, + "lat": 43.5678121, + "lon": 1.4013078 + }, + { + "nodeId": 8206027357, + "lat": 43.5676784, + "lon": 1.4011739 + }, + { + "nodeId": 8206027356, + "lat": 43.5674324, + "lon": 1.4009142 + }, + { + "nodeId": 8206027355, + "lat": 43.5668811, + "lon": 1.4002646 + }, + { + "nodeId": 8206027354, + "lat": 43.5666356, + "lon": 1.3999486 + }, + { + "nodeId": 8206027358, + "lat": 43.5671597, + "lon": 1.4006082 + }, + { + "nodeId": 8206027353, + "lat": 43.566265, + "lon": 1.3993595 + }, + { + "nodeId": 8206027352, + "lat": 43.5662089, + "lon": 1.3992407 + }, + { + "nodeId": 8206027351, + "lat": 43.5661647, + "lon": 1.3991184 + }, + { + "nodeId": 8206027350, + "lat": 43.5661307, + "lon": 1.3989919 + }, + { + "nodeId": 8206027349, + "lat": 43.5661095, + "lon": 1.3988595 + }, + { + "nodeId": 8206027348, + "lat": 43.5660961, + "lon": 1.3987101 + }, + { + "nodeId": 8206027347, + "lat": 43.5660908, + "lon": 1.398457 + }, + { + "nodeId": 8206027346, + "lat": 43.5660801, + "lon": 1.3978072 + }, + { + "nodeId": 8206027345, + "lat": 43.5660871, + "lon": 1.3958701 + }, + { + "nodeId": 8206027344, + "lat": 43.5661, + "lon": 1.3955289 + }, + { + "nodeId": 8206027343, + "lat": 43.5661237, + "lon": 1.3952916 + }, + { + "nodeId": 8205952614, + "lat": 43.5661946, + "lon": 1.3950264 + }, + { + "nodeId": 7992911283, + "lat": 43.5921794, + "lon": 1.4423971 + }, + { + "nodeId": 2627359795, + "lat": 43.5922557, + "lon": 1.4426098 + }, + { + "nodeId": 13356403024, + "lat": 43.5922681, + "lon": 1.4426446 + }, + { + "nodeId": 3950313642, + "lat": 43.5926595, + "lon": 1.4437395 + }, + { + "nodeId": 10731002620, + "lat": 43.592821, + "lon": 1.4441901 + }, + { + "nodeId": 7649884177, + "lat": 43.5781481, + "lon": 1.4056566 + }, + { + "nodeId": 7649884178, + "lat": 43.5781447, + "lon": 1.4054877 + }, + { + "nodeId": 7649902485, + "lat": 43.5781363, + "lon": 1.405302 + }, + { + "nodeId": 60293325, + "lat": 43.5781263, + "lon": 1.4051625 + }, + { + "nodeId": 7649884184, + "lat": 43.5781147, + "lon": 1.4050463 + }, + { + "nodeId": 1807375625, + "lat": 43.5780961, + "lon": 1.4049151 + }, + { + "nodeId": 7649884182, + "lat": 43.5780752, + "lon": 1.4048006 + }, + { + "nodeId": 7650170118, + "lat": 43.5780495, + "lon": 1.4046798 + }, + { + "nodeId": 7649884181, + "lat": 43.5779879, + "lon": 1.4044505 + }, + { + "nodeId": 7650170105, + "lat": 43.5779467, + "lon": 1.4043277 + }, + { + "nodeId": 60293324, + "lat": 43.5780287, + "lon": 1.4045938 + }, + { + "nodeId": 7992911264, + "lat": 43.6093024, + "lon": 1.4020158 + }, + { + "nodeId": 7197474790, + "lat": 43.6093281, + "lon": 1.4020145 + }, + { + "nodeId": 3961855645, + "lat": 43.6098509, + "lon": 1.4019875 + }, + { + "nodeId": 7992911263, + "lat": 43.6099518, + "lon": 1.4019823 + }, + { + "nodeId": 7992911261, + "lat": 43.6111463, + "lon": 1.4019204 + }, + { + "nodeId": 7992911258, + "lat": 43.6138227, + "lon": 1.4007043 + }, + { + "nodeId": 2379081629, + "lat": 43.6138625, + "lon": 1.4006099 + }, + { + "nodeId": 2087249295, + "lat": 43.6139238, + "lon": 1.4004447 + }, + { + "nodeId": 2379081635, + "lat": 43.6139876, + "lon": 1.4002347 + }, + { + "nodeId": 756757882, + "lat": 43.6140284, + "lon": 1.4000543 + }, + { + "nodeId": 2087249297, + "lat": 43.6140688, + "lon": 1.3998334 + }, + { + "nodeId": 2379081651, + "lat": 43.6140947, + "lon": 1.3996372 + }, + { + "nodeId": 756757842, + "lat": 43.6141092, + "lon": 1.3994369 + }, + { + "nodeId": 2379081658, + "lat": 43.6141107, + "lon": 1.3991539 + }, + { + "nodeId": 4070165568, + "lat": 43.6141049, + "lon": 1.3986138 + }, + { + "nodeId": 7644357243, + "lat": 43.5668609, + "lon": 1.3938517 + }, + { + "nodeId": 7644357240, + "lat": 43.5669004, + "lon": 1.393816 + }, + { + "nodeId": 7644357245, + "lat": 43.5669546, + "lon": 1.39377 + }, + { + "nodeId": 53964003, + "lat": 43.567017, + "lon": 1.3937198 + }, + { + "nodeId": 7644357236, + "lat": 43.5670828, + "lon": 1.3936721 + }, + { + "nodeId": 7644357238, + "lat": 43.567158, + "lon": 1.3936207 + }, + { + "nodeId": 7644357237, + "lat": 43.5672644, + "lon": 1.3935519 + }, + { + "nodeId": 53964000, + "lat": 43.5678695, + "lon": 1.3931756 + }, + { + "nodeId": 7644357233, + "lat": 43.5689011, + "lon": 1.3925375 + }, + { + "nodeId": 7644357235, + "lat": 43.5690079, + "lon": 1.3924742 + }, + { + "nodeId": 7644357232, + "lat": 43.5690666, + "lon": 1.3924422 + }, + { + "nodeId": 53963997, + "lat": 43.5691171, + "lon": 1.3924179 + }, + { + "nodeId": 7644357227, + "lat": 43.5691763, + "lon": 1.3923913 + }, + { + "nodeId": 7644357226, + "lat": 43.5692435, + "lon": 1.3923621 + }, + { + "nodeId": 6030134029, + "lat": 43.5693118, + "lon": 1.392339 + }, + { + "nodeId": 7644357215, + "lat": 43.5693732, + "lon": 1.3923246 + }, + { + "nodeId": 7644357225, + "lat": 43.5694289, + "lon": 1.3923139 + }, + { + "nodeId": 53963995, + "lat": 43.5694822, + "lon": 1.3923071 + }, + { + "nodeId": 7644357224, + "lat": 43.5695389, + "lon": 1.3923027 + }, + { + "nodeId": 7644357216, + "lat": 43.5695947, + "lon": 1.3923 + }, + { + "nodeId": 8766060626, + "lat": 43.5697704, + "lon": 1.3922951 + }, + { + "nodeId": 7992911274, + "lat": 43.6045653, + "lon": 1.4047749 + }, + { + "nodeId": 8068564055, + "lat": 43.6047335, + "lon": 1.4044327 + }, + { + "nodeId": 2379081513, + "lat": 43.6047393, + "lon": 1.4044204 + }, + { + "nodeId": 11415491465, + "lat": 43.5920891, + "lon": 1.4420655 + }, + { + "nodeId": 3721945024, + "lat": 43.5920896, + "lon": 1.4420743 + }, + { + "nodeId": 2344137621, + "lat": 43.5920973, + "lon": 1.4421359 + }, + { + "nodeId": 3721945023, + "lat": 43.5921098, + "lon": 1.4421867 + }, + { + "nodeId": 1837419146, + "lat": 43.5921277, + "lon": 1.442245 + }, + { + "nodeId": 2569326581, + "lat": 43.5921449, + "lon": 1.4423014 + }, + { + "nodeId": 7992911302, + "lat": 43.5934927, + "lon": 1.4140909 + }, + { + "nodeId": 8237931620, + "lat": 43.5934851, + "lon": 1.4139317 + }, + { + "nodeId": 8237931619, + "lat": 43.5934747, + "lon": 1.4137789 + }, + { + "nodeId": 8237931622, + "lat": 43.5934652, + "lon": 1.4136004 + }, + { + "nodeId": 1480624520, + "lat": 43.5934575, + "lon": 1.4134654 + }, + { + "nodeId": 346167783, + "lat": 43.5933088, + "lon": 1.4113058 + }, + { + "nodeId": 7992911290, + "lat": 43.593231, + "lon": 1.4101414 + }, + { + "nodeId": 60293326, + "lat": 43.5781475, + "lon": 1.4060105 + }, + { + "nodeId": 10890475142, + "lat": 43.6093627, + "lon": 1.3571012 + }, + { + "nodeId": 8832609050, + "lat": 43.6093526, + "lon": 1.3611643 + }, + { + "nodeId": 10883978591, + "lat": 43.6093715, + "lon": 1.3575531 + }, + { + "nodeId": 11427626225, + "lat": 43.6093438, + "lon": 1.3568153 + }, + { + "nodeId": 10883978590, + "lat": 43.6093086, + "lon": 1.363392 + }, + { + "nodeId": 12568533614, + "lat": 43.6092643, + "lon": 1.3647442 + }, + { + "nodeId": 10883978589, + "lat": 43.6092349, + "lon": 1.36515 + }, + { + "nodeId": 10883978588, + "lat": 43.609197, + "lon": 1.3659217 + }, + { + "nodeId": 8832609051, + "lat": 43.6091171, + "lon": 1.3675953 + }, + { + "nodeId": 10883978586, + "lat": 43.6090922, + "lon": 1.3684378 + }, + { + "nodeId": 10883978587, + "lat": 43.6091076, + "lon": 1.3688455 + }, + { + "nodeId": 10883978585, + "lat": 43.6091722, + "lon": 1.3692169 + }, + { + "nodeId": 10883978584, + "lat": 43.6092897, + "lon": 1.3696516 + }, + { + "nodeId": 8832609052, + "lat": 43.6095525, + "lon": 1.3702833 + }, + { + "nodeId": 10883978583, + "lat": 43.6099698, + "lon": 1.3709653 + }, + { + "nodeId": 10883978582, + "lat": 43.6107627, + "lon": 1.3719905 + }, + { + "nodeId": 10883978580, + "lat": 43.6110605, + "lon": 1.3723413 + }, + { + "nodeId": 10883978581, + "lat": 43.6121674, + "lon": 1.3733873 + }, + { + "nodeId": 10883978579, + "lat": 43.6124566, + "lon": 1.3737674 + }, + { + "nodeId": 8832609054, + "lat": 43.6126805, + "lon": 1.3743854 + }, + { + "nodeId": 10890475141, + "lat": 43.6128296, + "lon": 1.3751726 + }, + { + "nodeId": 8832609055, + "lat": 43.6128616, + "lon": 1.3758532 + }, + { + "nodeId": 8832609056, + "lat": 43.6130701, + "lon": 1.3816987 + }, + { + "nodeId": 10883978576, + "lat": 43.6131182, + "lon": 1.3828775 + }, + { + "nodeId": 8832609058, + "lat": 43.6132599, + "lon": 1.3839108 + }, + { + "nodeId": 10883978577, + "lat": 43.6135144, + "lon": 1.3848321 + }, + { + "nodeId": 8832609059, + "lat": 43.6138988, + "lon": 1.385746 + }, + { + "nodeId": 8832609060, + "lat": 43.6146192, + "lon": 1.3869747 + }, + { + "nodeId": 10883978575, + "lat": 43.6190864, + "lon": 1.3887354 + }, + { + "nodeId": 8832609061, + "lat": 43.6153718, + "lon": 1.3877134 + }, + { + "nodeId": 8832609062, + "lat": 43.6195957, + "lon": 1.3890317 + }, + { + "nodeId": 10883978574, + "lat": 43.6202949, + "lon": 1.389543 + }, + { + "nodeId": 10890475140, + "lat": 43.6205463, + "lon": 1.3897919 + }, + { + "nodeId": 8832609063, + "lat": 43.6207696, + "lon": 1.3901049 + }, + { + "nodeId": 10883978573, + "lat": 43.6213701, + "lon": 1.3912839 + }, + { + "nodeId": 10890475138, + "lat": 43.6210425, + "lon": 1.3905673 + }, + { + "nodeId": 10890475139, + "lat": 43.6215499, + "lon": 1.3918459 + }, + { + "nodeId": 10883978572, + "lat": 43.6216734, + "lon": 1.3932401 + }, + { + "nodeId": 10883978571, + "lat": 43.6216, + "lon": 1.394215 + }, + { + "nodeId": 10883978570, + "lat": 43.6215268, + "lon": 1.3972214 + }, + { + "nodeId": 8832609064, + "lat": 43.6216202, + "lon": 1.3923988 + }, + { + "nodeId": 10883978568, + "lat": 43.6210502, + "lon": 1.4001931 + }, + { + "nodeId": 10883978569, + "lat": 43.6206852, + "lon": 1.4024322 + }, + { + "nodeId": 8832609066, + "lat": 43.6205798, + "lon": 1.4035525 + }, + { + "nodeId": 10883978567, + "lat": 43.6205835, + "lon": 1.4044824 + }, + { + "nodeId": 10883978566, + "lat": 43.6206898, + "lon": 1.4056251 + }, + { + "nodeId": 10890475137, + "lat": 43.6207701, + "lon": 1.4063014 + }, + { + "nodeId": 10883978565, + "lat": 43.6208349, + "lon": 1.4069776 + }, + { + "nodeId": 10890475136, + "lat": 43.6208211, + "lon": 1.4075286 + }, + { + "nodeId": 10883978557, + "lat": 43.6205734, + "lon": 1.4102833 + }, + { + "nodeId": 10883978564, + "lat": 43.6207297, + "lon": 1.4085464 + }, + { + "nodeId": 8832609068, + "lat": 43.6195208, + "lon": 1.4210613 + }, + { + "nodeId": 10883978555, + "lat": 43.6195577, + "lon": 1.4218819 + }, + { + "nodeId": 10890475135, + "lat": 43.6195973, + "lon": 1.4222552 + }, + { + "nodeId": 8832609069, + "lat": 43.6196951, + "lon": 1.4226284 + }, + { + "nodeId": 10890475134, + "lat": 43.6202536, + "lon": 1.4241707 + }, + { + "nodeId": 10883978554, + "lat": 43.6205505, + "lon": 1.4248862 + }, + { + "nodeId": 10890475133, + "lat": 43.6208746, + "lon": 1.4254651 + }, + { + "nodeId": 10883978553, + "lat": 43.6213126, + "lon": 1.4259446 + }, + { + "nodeId": 8832609071, + "lat": 43.6223833, + "lon": 1.4268448 + }, + { + "nodeId": 10883978552, + "lat": 43.6235751, + "lon": 1.4271606 + }, + { + "nodeId": 10883978551, + "lat": 43.6248445, + "lon": 1.4274444 + }, + { + "nodeId": 10883978550, + "lat": 43.6261891, + "lon": 1.4272403 + }, + { + "nodeId": 10883978548, + "lat": 43.6276318, + "lon": 1.4276147 + }, + { + "nodeId": 10883978549, + "lat": 43.6284609, + "lon": 1.427838 + }, + { + "nodeId": 10890475132, + "lat": 43.6289469, + "lon": 1.4279574 + }, + { + "nodeId": 10883978547, + "lat": 43.6294661, + "lon": 1.4279989 + }, + { + "nodeId": 10883978546, + "lat": 43.6314036, + "lon": 1.4280111 + }, + { + "nodeId": 8832609072, + "lat": 43.6317704, + "lon": 1.4280029 + }, + { + "nodeId": 10883978545, + "lat": 43.6330038, + "lon": 1.4280078 + }, + { + "nodeId": 10883978543, + "lat": 43.6334409, + "lon": 1.4281486 + }, + { + "nodeId": 10890475131, + "lat": 43.6338141, + "lon": 1.4284044 + }, + { + "nodeId": 10883978544, + "lat": 43.6341111, + "lon": 1.4286874 + }, + { + "nodeId": 10890475130, + "lat": 43.6343628, + "lon": 1.429035 + }, + { + "nodeId": 8832609073, + "lat": 43.6347305, + "lon": 1.4296124 + }, + { + "nodeId": 8832609074, + "lat": 43.6358241, + "lon": 1.4316717 + }, + { + "nodeId": 10883978542, + "lat": 43.636487, + "lon": 1.4327212 + }, + { + "nodeId": 8832609075, + "lat": 43.6367971, + "lon": 1.4334933 + }, + { + "nodeId": 10883978540, + "lat": 43.636897, + "lon": 1.4339912 + }, + { + "nodeId": 10890475128, + "lat": 43.6369194, + "lon": 1.4344506 + }, + { + "nodeId": 8832609076, + "lat": 43.6368673, + "lon": 1.4349247 + }, + { + "nodeId": 10883978539, + "lat": 43.6367137, + "lon": 1.4355586 + }, + { + "nodeId": 10883978538, + "lat": 43.6364894, + "lon": 1.436033 + }, + { + "nodeId": 8832609077, + "lat": 43.6360759, + "lon": 1.4366102 + }, + { + "nodeId": 10883978537, + "lat": 43.635205, + "lon": 1.4375654 + }, + { + "nodeId": 10883970840, + "lat": 43.6349356, + "lon": 1.4378292 + }, + { + "nodeId": 10199514847, + "lat": 43.6346628, + "lon": 1.4380347 + }, + { + "nodeId": 8832609079, + "lat": 43.6334152, + "lon": 1.43878 + }, + { + "nodeId": 10890475127, + "lat": 43.632566, + "lon": 1.439315 + }, + { + "nodeId": 10884058397, + "lat": 43.632083, + "lon": 1.4396781 + }, + { + "nodeId": 10890475126, + "lat": 43.6317376, + "lon": 1.4400113 + }, + { + "nodeId": 10883978536, + "lat": 43.6315878, + "lon": 1.440198 + }, + { + "nodeId": 10884058396, + "lat": 43.6308797, + "lon": 1.4411218 + }, + { + "nodeId": 8832609080, + "lat": 43.6304518, + "lon": 1.4416137 + }, + { + "nodeId": 10883978534, + "lat": 43.6295348, + "lon": 1.4424444 + }, + { + "nodeId": 8832609081, + "lat": 43.6288351, + "lon": 1.4429263 + }, + { + "nodeId": 10883978535, + "lat": 43.6278937, + "lon": 1.4434017 + }, + { + "nodeId": 10890475125, + "lat": 43.6300215, + "lon": 1.442052 + }, + { + "nodeId": 8832609083, + "lat": 43.6254239, + "lon": 1.4443676 + }, + { + "nodeId": 10890475124, + "lat": 43.6245421, + "lon": 1.4446607 + }, + { + "nodeId": 8832609084, + "lat": 43.6238444, + "lon": 1.4447271 + }, + { + "nodeId": 8832609085, + "lat": 43.6232562, + "lon": 1.4446707 + }, + { + "nodeId": 8832609086, + "lat": 43.6224247, + "lon": 1.444426 + }, + { + "nodeId": 10883978520, + "lat": 43.6214918, + "lon": 1.4439445 + }, + { + "nodeId": 10890475123, + "lat": 43.6212544, + "lon": 1.4438708 + }, + { + "nodeId": 10890475122, + "lat": 43.6205662, + "lon": 1.4437711 + }, + { + "nodeId": 10883978521, + "lat": 43.6202778, + "lon": 1.4438161 + }, + { + "nodeId": 10890475121, + "lat": 43.6200369, + "lon": 1.4438764 + }, + { + "nodeId": 8832609087, + "lat": 43.6208512, + "lon": 1.4437856 + }, + { + "nodeId": 10883978519, + "lat": 43.6198192, + "lon": 1.4440054 + }, + { + "nodeId": 10890475119, + "lat": 43.6193803, + "lon": 1.4443646 + }, + { + "nodeId": 10890475120, + "lat": 43.6191062, + "lon": 1.4446851 + }, + { + "nodeId": 10883978517, + "lat": 43.6188486, + "lon": 1.4450399 + }, + { + "nodeId": 10883978518, + "lat": 43.6185643, + "lon": 1.4456284 + }, + { + "nodeId": 10883978514, + "lat": 43.6179432, + "lon": 1.4470666 + }, + { + "nodeId": 10883978515, + "lat": 43.6177797, + "lon": 1.4475301 + }, + { + "nodeId": 10890475118, + "lat": 43.6176784, + "lon": 1.4479052 + }, + { + "nodeId": 10883978516, + "lat": 43.6176435, + "lon": 1.4483021 + }, + { + "nodeId": 10890475117, + "lat": 43.6176492, + "lon": 1.4487806 + }, + { + "nodeId": 8832609089, + "lat": 43.6177001, + "lon": 1.4492512 + }, + { + "nodeId": 10890475116, + "lat": 43.6177537, + "lon": 1.4496185 + }, + { + "nodeId": 8832609090, + "lat": 43.617847, + "lon": 1.4499819 + }, + { + "nodeId": 10890475115, + "lat": 43.617958, + "lon": 1.4503065 + }, + { + "nodeId": 10883978513, + "lat": 43.6181058, + "lon": 1.4505998 + }, + { + "nodeId": 10883978511, + "lat": 43.6185843, + "lon": 1.4512451 + }, + { + "nodeId": 10883978512, + "lat": 43.6188472, + "lon": 1.4516047 + }, + { + "nodeId": 7439072062, + "lat": 43.6191071, + "lon": 1.452084 + }, + { + "nodeId": 10883978509, + "lat": 43.6193954, + "lon": 1.4529029 + }, + { + "nodeId": 10883978510, + "lat": 43.6194777, + "lon": 1.453363 + }, + { + "nodeId": 8832609091, + "lat": 43.6194797, + "lon": 1.4538809 + }, + { + "nodeId": 10883978507, + "lat": 43.6194523, + "lon": 1.454315 + }, + { + "nodeId": 10890475114, + "lat": 43.619398, + "lon": 1.4545466 + }, + { + "nodeId": 10883978506, + "lat": 43.6193183, + "lon": 1.4548396 + }, + { + "nodeId": 10890475113, + "lat": 43.6192191, + "lon": 1.4551059 + }, + { + "nodeId": 11751581498, + "lat": 43.6187129, + "lon": 1.456146 + }, + { + "nodeId": 10883970904, + "lat": 43.6180036, + "lon": 1.4574903 + }, + { + "nodeId": 10890475112, + "lat": 43.6178311, + "lon": 1.4577279 + }, + { + "nodeId": 10883970903, + "lat": 43.6176642, + "lon": 1.4579029 + }, + { + "nodeId": 10890475111, + "lat": 43.6174833, + "lon": 1.4580708 + }, + { + "nodeId": 8832609093, + "lat": 43.6171976, + "lon": 1.4582739 + }, + { + "nodeId": 10883970902, + "lat": 43.6166931, + "lon": 1.4584662 + }, + { + "nodeId": 10890475110, + "lat": 43.6169708, + "lon": 1.4583857 + }, + { + "nodeId": 10890475108, + "lat": 43.6164705, + "lon": 1.4585075 + }, + { + "nodeId": 10890475107, + "lat": 43.6161928, + "lon": 1.458496 + }, + { + "nodeId": 10890475109, + "lat": 43.6159532, + "lon": 1.4584572 + }, + { + "nodeId": 8832609094, + "lat": 43.6157165, + "lon": 1.4583949 + }, + { + "nodeId": 899680495, + "lat": 43.6144997, + "lon": 1.457952 + }, + { + "nodeId": 10884058398, + "lat": 43.613506, + "lon": 1.4576935 + }, + { + "nodeId": 10883970900, + "lat": 43.6130784, + "lon": 1.4575018 + }, + { + "nodeId": 10883970901, + "lat": 43.6126348, + "lon": 1.4571494 + }, + { + "nodeId": 10890475106, + "lat": 43.6123918, + "lon": 1.4569125 + }, + { + "nodeId": 10890475105, + "lat": 43.6121342, + "lon": 1.4566121 + }, + { + "nodeId": 10883970898, + "lat": 43.6117702, + "lon": 1.4561182 + }, + { + "nodeId": 10890417202, + "lat": 43.611083, + "lon": 1.4550971 + }, + { + "nodeId": 10890417203, + "lat": 43.6109339, + "lon": 1.4548983 + }, + { + "nodeId": 10883970897, + "lat": 43.6107751, + "lon": 1.4547129 + }, + { + "nodeId": 10883970895, + "lat": 43.6102604, + "lon": 1.4542861 + }, + { + "nodeId": 10883970896, + "lat": 43.6097104, + "lon": 1.4539703 + }, + { + "nodeId": 10890417198, + "lat": 43.6095281, + "lon": 1.453908 + }, + { + "nodeId": 10890417199, + "lat": 43.6092449, + "lon": 1.4538421 + }, + { + "nodeId": 10890417204, + "lat": 43.6105371, + "lon": 1.4544861 + }, + { + "nodeId": 8832609096, + "lat": 43.6087926, + "lon": 1.4538279 + }, + { + "nodeId": 8832609098, + "lat": 43.6046458, + "lon": 1.4542424 + }, + { + "nodeId": 10890417197, + "lat": 43.604033, + "lon": 1.4542807 + }, + { + "nodeId": 10884058399, + "lat": 43.6036496, + "lon": 1.4541019 + }, + { + "nodeId": 10884058401, + "lat": 43.6033399, + "lon": 1.4538029 + }, + { + "nodeId": 10883970894, + "lat": 43.6029878, + "lon": 1.4532848 + }, + { + "nodeId": 10883970893, + "lat": 43.6023558, + "lon": 1.452365 + }, + { + "nodeId": 10884058400, + "lat": 43.6026951, + "lon": 1.4527667 + }, + { + "nodeId": 8832609100, + "lat": 43.6018069, + "lon": 1.4520218 + }, + { + "nodeId": 10883970892, + "lat": 43.6012372, + "lon": 1.4519322 + }, + { + "nodeId": 10890417196, + "lat": 43.6008121, + "lon": 1.4518861 + }, + { + "nodeId": 8832609102, + "lat": 43.596781, + "lon": 1.4522946 + }, + { + "nodeId": 10890417195, + "lat": 43.5965454, + "lon": 1.4523465 + }, + { + "nodeId": 10890417194, + "lat": 43.5960602, + "lon": 1.4525774 + }, + { + "nodeId": 10890417192, + "lat": 43.595836, + "lon": 1.4527615 + }, + { + "nodeId": 10884058402, + "lat": 43.5955996, + "lon": 1.4529945 + }, + { + "nodeId": 10890417193, + "lat": 43.5953683, + "lon": 1.4532954 + }, + { + "nodeId": 8832609103, + "lat": 43.5963146, + "lon": 1.4524351 + }, + { + "nodeId": 8832609104, + "lat": 43.5951636, + "lon": 1.4536447 + }, + { + "nodeId": 10884058403, + "lat": 43.5944605, + "lon": 1.4554528 + }, + { + "nodeId": 10890417191, + "lat": 43.5943746, + "lon": 1.4557529 + }, + { + "nodeId": 10890417190, + "lat": 43.5942605, + "lon": 1.4564409 + }, + { + "nodeId": 10884065605, + "lat": 43.5943099, + "lon": 1.4560701 + }, + { + "nodeId": 10890417189, + "lat": 43.5942231, + "lon": 1.4569286 + }, + { + "nodeId": 10884058404, + "lat": 43.594204, + "lon": 1.4574433 + }, + { + "nodeId": 10884065606, + "lat": 43.5937498, + "lon": 1.4678724 + }, + { + "nodeId": 10884065607, + "lat": 43.5937468, + "lon": 1.4681382 + }, + { + "nodeId": 10884065608, + "lat": 43.5938059, + "lon": 1.4695005 + }, + { + "nodeId": 8832609107, + "lat": 43.5938196, + "lon": 1.4700479 + }, + { + "nodeId": 10884065609, + "lat": 43.5938114, + "lon": 1.4706924 + }, + { + "nodeId": 10884065610, + "lat": 43.5937692, + "lon": 1.4712883 + }, + { + "nodeId": 10884065611, + "lat": 43.5935812, + "lon": 1.4726676 + }, + { + "nodeId": 10884065614, + "lat": 43.5935118, + "lon": 1.4730607 + }, + { + "nodeId": 10884065612, + "lat": 43.593312, + "lon": 1.4735079 + }, + { + "nodeId": 10884065613, + "lat": 43.5929585, + "lon": 1.4744473 + }, + { + "nodeId": 8832609108, + "lat": 43.592802, + "lon": 1.4749244 + }, + { + "nodeId": 10884065616, + "lat": 43.5926203, + "lon": 1.4754861 + }, + { + "nodeId": 10884065617, + "lat": 43.5924523, + "lon": 1.4762556 + }, + { + "nodeId": 10884065615, + "lat": 43.5923383, + "lon": 1.47664 + }, + { + "nodeId": 8832609109, + "lat": 43.5916413, + "lon": 1.478883 + }, + { + "nodeId": 8832609111, + "lat": 43.5906789, + "lon": 1.4821092 + }, + { + "nodeId": 10890417188, + "lat": 43.5905072, + "lon": 1.4825805 + }, + { + "nodeId": 10884065619, + "lat": 43.5902887, + "lon": 1.4830733 + }, + { + "nodeId": 10884065618, + "lat": 43.5900793, + "lon": 1.4834025 + }, + { + "nodeId": 10890417187, + "lat": 43.5897805, + "lon": 1.4837809 + }, + { + "nodeId": 8832609112, + "lat": 43.5894845, + "lon": 1.484083 + }, + { + "nodeId": 10890417186, + "lat": 43.5888194, + "lon": 1.4845387 + }, + { + "nodeId": 10884065620, + "lat": 43.5891031, + "lon": 1.4843729 + }, + { + "nodeId": 8832609113, + "lat": 43.5885655, + "lon": 1.4846479 + }, + { + "nodeId": 10890417185, + "lat": 43.5882342, + "lon": 1.4847502 + }, + { + "nodeId": 10884065621, + "lat": 43.5878909, + "lon": 1.4847924 + }, + { + "nodeId": 10890417184, + "lat": 43.5874514, + "lon": 1.4848036 + }, + { + "nodeId": 8832609114, + "lat": 43.5870239, + "lon": 1.4847546 + }, + { + "nodeId": 10884065622, + "lat": 43.5856878, + "lon": 1.4842983 + }, + { + "nodeId": 8832609115, + "lat": 43.5790904, + "lon": 1.48334 + }, + { + "nodeId": 10884065624, + "lat": 43.5782542, + "lon": 1.483201 + }, + { + "nodeId": 10890417183, + "lat": 43.5735153, + "lon": 1.4812421 + }, + { + "nodeId": 10884065623, + "lat": 43.5773527, + "lon": 1.4829144 + }, + { + "nodeId": 10884065625, + "lat": 43.5732218, + "lon": 1.4812425 + }, + { + "nodeId": 8832609116, + "lat": 43.5737949, + "lon": 1.4812876 + }, + { + "nodeId": 10884065627, + "lat": 43.5713968, + "lon": 1.4815714 + }, + { + "nodeId": 13154193588, + "lat": 43.5710034, + "lon": 1.4816469 + }, + { + "nodeId": 10884065628, + "lat": 43.5707926, + "lon": 1.4817072 + }, + { + "nodeId": 13154193589, + "lat": 43.5706313, + "lon": 1.4817689 + }, + { + "nodeId": 8832628117, + "lat": 43.5703953, + "lon": 1.4818881 + }, + { + "nodeId": 10890417182, + "lat": 43.5701911, + "lon": 1.4820318 + }, + { + "nodeId": 10884065630, + "lat": 43.5699803, + "lon": 1.4822155 + }, + { + "nodeId": 4070161840, + "lat": 43.6010749, + "lon": 1.4114232 + }, + { + "nodeId": 7992911280, + "lat": 43.6011003, + "lon": 1.4114253 + }, + { + "nodeId": 7650170169, + "lat": 43.5786809, + "lon": 1.4099412 + }, + { + "nodeId": 7650170158, + "lat": 43.5786555, + "lon": 1.4098585 + }, + { + "nodeId": 7650170157, + "lat": 43.5786273, + "lon": 1.4097669 + }, + { + "nodeId": 7649902487, + "lat": 43.5785877, + "lon": 1.4096305 + }, + { + "nodeId": 7649902486, + "lat": 43.5785397, + "lon": 1.409451 + }, + { + "nodeId": 7650170156, + "lat": 43.5784976, + "lon": 1.4092891 + }, + { + "nodeId": 60293330, + "lat": 43.5784436, + "lon": 1.409062 + }, + { + "nodeId": 7649902488, + "lat": 43.5784165, + "lon": 1.4089349 + }, + { + "nodeId": 7650170160, + "lat": 43.5783961, + "lon": 1.4088398 + }, + { + "nodeId": 10883978598, + "lat": 43.6038954, + "lon": 1.3334136 + }, + { + "nodeId": 10883978596, + "lat": 43.605186, + "lon": 1.3382534 + }, + { + "nodeId": 10883978595, + "lat": 43.6061311, + "lon": 1.3417895 + }, + { + "nodeId": 10883978594, + "lat": 43.6071388, + "lon": 1.3449944 + }, + { + "nodeId": 10883978592, + "lat": 43.6092016, + "lon": 1.3558296 + }, + { + "nodeId": 10883978593, + "lat": 43.6093329, + "lon": 1.3566514 + }, + { + "nodeId": 7667567243, + "lat": 43.6151732, + "lon": 1.4631726 + }, + { + "nodeId": 7667567239, + "lat": 43.6150226, + "lon": 1.4629582 + }, + { + "nodeId": 2379081769, + "lat": 43.636703, + "lon": 1.3909899 + }, + { + "nodeId": 3720148199, + "lat": 43.6367147, + "lon": 1.3909862 + }, + { + "nodeId": 983684763, + "lat": 43.636755, + "lon": 1.3909674 + }, + { + "nodeId": 3720148188, + "lat": 43.6367287, + "lon": 1.3909802 + }, + { + "nodeId": 3720148189, + "lat": 43.6367739, + "lon": 1.3909553 + }, + { + "nodeId": 2379081772, + "lat": 43.6367899, + "lon": 1.3909433 + }, + { + "nodeId": 3720148190, + "lat": 43.6368137, + "lon": 1.3909218 + }, + { + "nodeId": 1541651961, + "lat": 43.6368384, + "lon": 1.3908937 + }, + { + "nodeId": 3720148191, + "lat": 43.6368505, + "lon": 1.3908735 + }, + { + "nodeId": 757315626, + "lat": 43.6368578, + "lon": 1.3908608 + }, + { + "nodeId": 3720148200, + "lat": 43.6368675, + "lon": 1.3908407 + }, + { + "nodeId": 3720148192, + "lat": 43.636878, + "lon": 1.3908172 + }, + { + "nodeId": 3720148201, + "lat": 43.6368911, + "lon": 1.390779 + }, + { + "nodeId": 2379081780, + "lat": 43.6368845, + "lon": 1.3907994 + }, + { + "nodeId": 3720148193, + "lat": 43.6368976, + "lon": 1.3907579 + }, + { + "nodeId": 3720148202, + "lat": 43.6369027, + "lon": 1.3907381 + }, + { + "nodeId": 3720148194, + "lat": 43.6369061, + "lon": 1.3907177 + }, + { + "nodeId": 1464323861, + "lat": 43.636909, + "lon": 1.3906922 + }, + { + "nodeId": 3720148195, + "lat": 43.6369102, + "lon": 1.390659 + }, + { + "nodeId": 3720148198, + "lat": 43.6369095, + "lon": 1.3906288 + }, + { + "nodeId": 3720148203, + "lat": 43.6369061, + "lon": 1.3905789 + }, + { + "nodeId": 1464323859, + "lat": 43.6369039, + "lon": 1.3905637 + }, + { + "nodeId": 3720148196, + "lat": 43.6369078, + "lon": 1.3905973 + }, + { + "nodeId": 3720148197, + "lat": 43.6368986, + "lon": 1.3905369 + }, + { + "nodeId": 2379081779, + "lat": 43.6368864, + "lon": 1.3904859 + }, + { + "nodeId": 4449466989, + "lat": 43.6368463, + "lon": 1.3903401 + }, + { + "nodeId": 7667567188, + "lat": 43.6188011, + "lon": 1.4680349 + }, + { + "nodeId": 7669152620, + "lat": 43.6187601, + "lon": 1.4679771 + }, + { + "nodeId": 7667567203, + "lat": 43.6187182, + "lon": 1.4679132 + }, + { + "nodeId": 7669152614, + "lat": 43.6186629, + "lon": 1.4678266 + }, + { + "nodeId": 7669152613, + "lat": 43.6186156, + "lon": 1.4677522 + }, + { + "nodeId": 7669152612, + "lat": 43.6185472, + "lon": 1.4676419 + }, + { + "nodeId": 7667567191, + "lat": 43.6182984, + "lon": 1.4672397 + }, + { + "nodeId": 7669152605, + "lat": 43.6182419, + "lon": 1.467147 + }, + { + "nodeId": 7667567200, + "lat": 43.6181785, + "lon": 1.4670476 + }, + { + "nodeId": 7667567190, + "lat": 43.6181195, + "lon": 1.4669566 + }, + { + "nodeId": 7669152617, + "lat": 43.6180529, + "lon": 1.4668566 + }, + { + "nodeId": 7667567231, + "lat": 43.6180833, + "lon": 1.4668988 + }, + { + "nodeId": 7667567192, + "lat": 43.6180235, + "lon": 1.4668123 + }, + { + "nodeId": 7669152616, + "lat": 43.6179901, + "lon": 1.4667658 + }, + { + "nodeId": 764715477, + "lat": 43.6179571, + "lon": 1.4667218 + }, + { + "nodeId": 7667567196, + "lat": 43.617909, + "lon": 1.4666629 + }, + { + "nodeId": 7992911276, + "lat": 43.6043776, + "lon": 1.405155 + }, + { + "nodeId": 8068564063, + "lat": 43.6044041, + "lon": 1.4051027 + }, + { + "nodeId": 2348938946, + "lat": 43.6044333, + "lon": 1.4050412 + }, + { + "nodeId": 2346369050, + "lat": 43.6044853, + "lon": 1.4049342 + }, + { + "nodeId": 8068564056, + "lat": 43.604547, + "lon": 1.4048111 + }, + { + "nodeId": 7684777871, + "lat": 43.6271861, + "lon": 1.4827671 + }, + { + "nodeId": 7684777872, + "lat": 43.6271293, + "lon": 1.4827193 + }, + { + "nodeId": 7684777862, + "lat": 43.627084, + "lon": 1.4826797 + }, + { + "nodeId": 7684777873, + "lat": 43.6270241, + "lon": 1.4826222 + }, + { + "nodeId": 338407683, + "lat": 43.626972, + "lon": 1.4825669 + }, + { + "nodeId": 7684777874, + "lat": 43.6269062, + "lon": 1.4824848 + }, + { + "nodeId": 339877381, + "lat": 43.6268218, + "lon": 1.4823672 + }, + { + "nodeId": 338407676, + "lat": 43.6267451, + "lon": 1.4822362 + }, + { + "nodeId": 7684777875, + "lat": 43.6268643, + "lon": 1.4824264 + }, + { + "nodeId": 7684777876, + "lat": 43.626715, + "lon": 1.4821802 + }, + { + "nodeId": 7684777849, + "lat": 43.6266848, + "lon": 1.4821173 + }, + { + "nodeId": 338407670, + "lat": 43.6264887, + "lon": 1.4816631 + }, + { + "nodeId": 7684777877, + "lat": 43.6263956, + "lon": 1.481434 + }, + { + "nodeId": 7684777848, + "lat": 43.6266291, + "lon": 1.4819931 + }, + { + "nodeId": 8195393907, + "lat": 43.6288715, + "lon": 1.4828207 + }, + { + "nodeId": 8195393906, + "lat": 43.6285214, + "lon": 1.4829283 + }, + { + "nodeId": 333182032, + "lat": 43.6282737, + "lon": 1.4830009 + }, + { + "nodeId": 339877449, + "lat": 43.6279941, + "lon": 1.4830532 + }, + { + "nodeId": 11400065293, + "lat": 43.614896, + "lon": 1.4627642 + }, + { + "nodeId": 286474719, + "lat": 43.6148217, + "lon": 1.462629 + }, + { + "nodeId": 11400065316, + "lat": 43.6147951, + "lon": 1.4625404 + }, + { + "nodeId": 11400065304, + "lat": 43.6147741, + "lon": 1.4624396 + }, + { + "nodeId": 11400065305, + "lat": 43.6147348, + "lon": 1.4621908 + }, + { + "nodeId": 11400065307, + "lat": 43.6146573, + "lon": 1.4618369 + }, + { + "nodeId": 11400065306, + "lat": 43.614701, + "lon": 1.4619844 + }, + { + "nodeId": 11400065308, + "lat": 43.6145821, + "lon": 1.461697 + }, + { + "nodeId": 11400065309, + "lat": 43.6120294, + "lon": 1.4579855 + }, + { + "nodeId": 11400065310, + "lat": 43.6118642, + "lon": 1.4577275 + }, + { + "nodeId": 11400065312, + "lat": 43.6112724, + "lon": 1.4559413 + }, + { + "nodeId": 11400065311, + "lat": 43.6117991, + "lon": 1.4575739 + }, + { + "nodeId": 11400065313, + "lat": 43.6112197, + "lon": 1.4557771 + }, + { + "nodeId": 8148948745, + "lat": 43.6110575, + "lon": 1.4554768 + }, + { + "nodeId": 7992911293, + "lat": 43.5990987, + "lon": 1.4112169 + }, + { + "nodeId": 2281854508, + "lat": 43.5991352, + "lon": 1.4112286 + }, + { + "nodeId": 11400065295, + "lat": 43.6111594, + "lon": 1.4556447 + }, + { + "nodeId": 8985348140, + "lat": 43.5991781, + "lon": 1.4112384 + }, + { + "nodeId": 1078689737, + "lat": 43.5992241, + "lon": 1.4112489 + }, + { + "nodeId": 2281854516, + "lat": 43.5994386, + "lon": 1.4112764 + }, + { + "nodeId": 582467791, + "lat": 43.5993044, + "lon": 1.4112637 + }, + { + "nodeId": 7992911294, + "lat": 43.5996617, + "lon": 1.4112967 + }, + { + "nodeId": 7650170155, + "lat": 43.578381, + "lon": 1.408762 + }, + { + "nodeId": 7650170154, + "lat": 43.5783564, + "lon": 1.408633 + }, + { + "nodeId": 60293329, + "lat": 43.5783385, + "lon": 1.4085319 + }, + { + "nodeId": 2379081705, + "lat": 43.6226246, + "lon": 1.3955723 + }, + { + "nodeId": 656420419, + "lat": 43.6226943, + "lon": 1.3954934 + }, + { + "nodeId": 2379081708, + "lat": 43.6227802, + "lon": 1.3953983 + }, + { + "nodeId": 7197474909, + "lat": 43.6228912, + "lon": 1.3952898 + }, + { + "nodeId": 757338952, + "lat": 43.6229557, + "lon": 1.3952268 + }, + { + "nodeId": 2379081711, + "lat": 43.6230924, + "lon": 1.3951031 + }, + { + "nodeId": 757315603, + "lat": 43.6232314, + "lon": 1.3949932 + }, + { + "nodeId": 7197474920, + "lat": 43.6233178, + "lon": 1.3949316 + }, + { + "nodeId": 757338947, + "lat": 43.6235015, + "lon": 1.3948005 + }, + { + "nodeId": 2379081714, + "lat": 43.6240461, + "lon": 1.3944298 + }, + { + "nodeId": 1464381971, + "lat": 43.6243596, + "lon": 1.3942145 + }, + { + "nodeId": 253217647, + "lat": 43.6252245, + "lon": 1.3936536 + }, + { + "nodeId": 2379081717, + "lat": 43.6248105, + "lon": 1.3939081 + }, + { + "nodeId": 5833918526, + "lat": 43.6251106, + "lon": 1.3937235 + }, + { + "nodeId": 7072910016, + "lat": 43.6252871, + "lon": 1.3936153 + }, + { + "nodeId": 53964005, + "lat": 43.5667007, + "lon": 1.3940266 + }, + { + "nodeId": 53964004, + "lat": 43.5667689, + "lon": 1.3939467 + }, + { + "nodeId": 7644357248, + "lat": 43.5668269, + "lon": 1.3938847 + }, + { + "nodeId": 7650170148, + "lat": 43.5783276, + "lon": 1.4084654 + }, + { + "nodeId": 7650170145, + "lat": 43.5783123, + "lon": 1.4083783 + }, + { + "nodeId": 7650170146, + "lat": 43.5782976, + "lon": 1.4082866 + }, + { + "nodeId": 1477508091, + "lat": 43.578284, + "lon": 1.4081986 + }, + { + "nodeId": 7650170149, + "lat": 43.5782732, + "lon": 1.4081204 + }, + { + "nodeId": 7650170147, + "lat": 43.5782635, + "lon": 1.4080534 + }, + { + "nodeId": 7650170128, + "lat": 43.5782475, + "lon": 1.4079417 + }, + { + "nodeId": 7649884180, + "lat": 43.5782324, + "lon": 1.4078156 + }, + { + "nodeId": 7650170127, + "lat": 43.578219, + "lon": 1.4076995 + }, + { + "nodeId": 1477508090, + "lat": 43.578205, + "lon": 1.4075636 + }, + { + "nodeId": 60293328, + "lat": 43.5781924, + "lon": 1.4074197 + }, + { + "nodeId": 7650170126, + "lat": 43.5781801, + "lon": 1.4072581 + }, + { + "nodeId": 7650170125, + "lat": 43.5781724, + "lon": 1.4071223 + }, + { + "nodeId": 1477508089, + "lat": 43.5781661, + "lon": 1.4070107 + }, + { + "nodeId": 7650170130, + "lat": 43.5781608, + "lon": 1.4068999 + }, + { + "nodeId": 7649884179, + "lat": 43.5781564, + "lon": 1.4067829 + }, + { + "nodeId": 7650170132, + "lat": 43.5781544, + "lon": 1.4066771 + }, + { + "nodeId": 60293327, + "lat": 43.5781527, + "lon": 1.4065566 + }, + { + "nodeId": 7992911259, + "lat": 43.6120736, + "lon": 1.4014732 + }, + { + "nodeId": 756757864, + "lat": 43.6126539, + "lon": 1.4014428 + }, + { + "nodeId": 2379081590, + "lat": 43.6127414, + "lon": 1.401437 + }, + { + "nodeId": 5416122771, + "lat": 43.6127671, + "lon": 1.4014353 + }, + { + "nodeId": 2379081594, + "lat": 43.6128613, + "lon": 1.4014289 + }, + { + "nodeId": 2379081602, + "lat": 43.6131408, + "lon": 1.4014153 + }, + { + "nodeId": 2379081606, + "lat": 43.613222, + "lon": 1.4013995 + }, + { + "nodeId": 756757827, + "lat": 43.6130132, + "lon": 1.4014187 + }, + { + "nodeId": 756757985, + "lat": 43.6133098, + "lon": 1.4013657 + }, + { + "nodeId": 756757869, + "lat": 43.6134239, + "lon": 1.4012948 + }, + { + "nodeId": 2379081619, + "lat": 43.6135759, + "lon": 1.4011399 + }, + { + "nodeId": 1461684512, + "lat": 43.6136442, + "lon": 1.4010436 + }, + { + "nodeId": 2379081615, + "lat": 43.6135041, + "lon": 1.4012212 + }, + { + "nodeId": 756757930, + "lat": 43.6137972, + "lon": 1.4007648 + }, + { + "nodeId": 2087249290, + "lat": 43.6137189, + "lon": 1.4009183 + }, + { + "nodeId": 7992911249, + "lat": 43.636232, + "lon": 1.3870913 + }, + { + "nodeId": 7197474640, + "lat": 43.5950933, + "lon": 1.4095353 + }, + { + "nodeId": 3463402040, + "lat": 43.5951044, + "lon": 1.40954 + }, + { + "nodeId": 2081168052, + "lat": 43.5954043, + "lon": 1.4096665 + }, + { + "nodeId": 2081168099, + "lat": 43.5955281, + "lon": 1.4097206 + }, + { + "nodeId": 2379081421, + "lat": 43.5959982, + "lon": 1.4099156 + }, + { + "nodeId": 353769191, + "lat": 43.5961039, + "lon": 1.4099622 + }, + { + "nodeId": 7197474673, + "lat": 43.5961829, + "lon": 1.4099957 + }, + { + "nodeId": 353769193, + "lat": 43.5969105, + "lon": 1.4103041 + }, + { + "nodeId": 7992911292, + "lat": 43.5988969, + "lon": 1.4111401 + }, + { + "nodeId": 10217247154, + "lat": 43.5542648, + "lon": 1.4828854 + }, + { + "nodeId": 12987593899, + "lat": 43.5543275, + "lon": 1.482711 + }, + { + "nodeId": 12987593897, + "lat": 43.5544014, + "lon": 1.4825257 + }, + { + "nodeId": 12987593898, + "lat": 43.5544562, + "lon": 1.4823988 + }, + { + "nodeId": 10890417166, + "lat": 43.5545166, + "lon": 1.4822861 + }, + { + "nodeId": 12987593896, + "lat": 43.5545894, + "lon": 1.4821545 + }, + { + "nodeId": 10217247153, + "lat": 43.5546718, + "lon": 1.4820274 + }, + { + "nodeId": 2278465610, + "lat": 43.5920864, + "lon": 1.4419475 + }, + { + "nodeId": 10890417160, + "lat": 43.5547766, + "lon": 1.4818885 + }, + { + "nodeId": 5634723424, + "lat": 43.5920871, + "lon": 1.4420233 + }, + { + "nodeId": 757315588, + "lat": 43.6367013, + "lon": 1.3898241 + }, + { + "nodeId": 7072849777, + "lat": 43.6366871, + "lon": 1.3897702 + }, + { + "nodeId": 2561998100, + "lat": 43.6364752, + "lon": 1.3889683 + }, + { + "nodeId": 2379081762, + "lat": 43.6363935, + "lon": 1.3886594 + }, + { + "nodeId": 1464323838, + "lat": 43.6363044, + "lon": 1.3883229 + }, + { + "nodeId": 7992911250, + "lat": 43.636291, + "lon": 1.3882597 + }, + { + "nodeId": 2379081753, + "lat": 43.6362693, + "lon": 1.3881572 + }, + { + "nodeId": 7078008119, + "lat": 43.6362484, + "lon": 1.387992 + }, + { + "nodeId": 757315611, + "lat": 43.6362412, + "lon": 1.3879352 + }, + { + "nodeId": 2379081748, + "lat": 43.6362284, + "lon": 1.387783 + }, + { + "nodeId": 757315563, + "lat": 43.6362273, + "lon": 1.3876008 + }, + { + "nodeId": 2987358635, + "lat": 43.6362267, + "lon": 1.3874993 + }, + { + "nodeId": 7072849779, + "lat": 43.631084, + "lon": 1.3917194 + }, + { + "nodeId": 2721873870, + "lat": 43.6311095, + "lon": 1.3917164 + }, + { + "nodeId": 253218852, + "lat": 43.6311829, + "lon": 1.3917079 + }, + { + "nodeId": 7072849781, + "lat": 43.6312696, + "lon": 1.3916978 + }, + { + "nodeId": 1599934795, + "lat": 43.6323199, + "lon": 1.3915749 + }, + { + "nodeId": 2379081738, + "lat": 43.6329045, + "lon": 1.3915059 + }, + { + "nodeId": 13415224448, + "lat": 43.6330819, + "lon": 1.3914805 + }, + { + "nodeId": 7072910037, + "lat": 43.6334992, + "lon": 1.3914209 + }, + { + "nodeId": 7072910028, + "lat": 43.6338189, + "lon": 1.3913751 + }, + { + "nodeId": 7992911285, + "lat": 43.5926836, + "lon": 1.4350499 + }, + { + "nodeId": 3721453116, + "lat": 43.6057394, + "lon": 1.4022041 + }, + { + "nodeId": 2278465609, + "lat": 43.5926739, + "lon": 1.4351495 + }, + { + "nodeId": 582467895, + "lat": 43.6057639, + "lon": 1.4021573 + }, + { + "nodeId": 3721453117, + "lat": 43.605794, + "lon": 1.4021077 + }, + { + "nodeId": 756757813, + "lat": 43.6058222, + "lon": 1.4020742 + }, + { + "nodeId": 3721453118, + "lat": 43.6058455, + "lon": 1.4020514 + }, + { + "nodeId": 2281806202, + "lat": 43.6058746, + "lon": 1.4020313 + }, + { + "nodeId": 757390969, + "lat": 43.6059202, + "lon": 1.4019977 + }, + { + "nodeId": 2379081539, + "lat": 43.6059687, + "lon": 1.4019819 + }, + { + "nodeId": 1461684523, + "lat": 43.6060037, + "lon": 1.4019763 + }, + { + "nodeId": 3721453119, + "lat": 43.6060358, + "lon": 1.4019749 + }, + { + "nodeId": 3721453652, + "lat": 43.606125, + "lon": 1.4019954 + }, + { + "nodeId": 2379081545, + "lat": 43.6060696, + "lon": 1.4019792 + }, + { + "nodeId": 3721453651, + "lat": 43.6061494, + "lon": 1.4020039 + }, + { + "nodeId": 756757967, + "lat": 43.6063593, + "lon": 1.4020822 + }, + { + "nodeId": 2379081547, + "lat": 43.6061291, + "lon": 1.401997 + }, + { + "nodeId": 7992911269, + "lat": 43.6063884, + "lon": 1.4020909 + }, + { + "nodeId": 7197474341, + "lat": 43.5922775, + "lon": 1.4397598 + }, + { + "nodeId": 2564187624, + "lat": 43.5922896, + "lon": 1.4396216 + }, + { + "nodeId": 7197474349, + "lat": 43.5922451, + "lon": 1.4401293 + }, + { + "nodeId": 2485510999, + "lat": 43.5922586, + "lon": 1.4399748 + }, + { + "nodeId": 10890417159, + "lat": 43.5550167, + "lon": 1.4816322 + }, + { + "nodeId": 10890417161, + "lat": 43.5552916, + "lon": 1.4814023 + }, + { + "nodeId": 10217247152, + "lat": 43.5555388, + "lon": 1.4811615 + }, + { + "nodeId": 10890417162, + "lat": 43.5557328, + "lon": 1.480903 + }, + { + "nodeId": 10890417165, + "lat": 43.5558529, + "lon": 1.4807162 + }, + { + "nodeId": 10217247151, + "lat": 43.555944, + "lon": 1.4805215 + }, + { + "nodeId": 10890417164, + "lat": 43.5560349, + "lon": 1.4803056 + }, + { + "nodeId": 10217247150, + "lat": 43.5560998, + "lon": 1.4801043 + }, + { + "nodeId": 12987593900, + "lat": 43.5561411, + "lon": 1.4798507 + }, + { + "nodeId": 10890417163, + "lat": 43.556165, + "lon": 1.4795949 + }, + { + "nodeId": 10890417158, + "lat": 43.5561523, + "lon": 1.4792079 + }, + { + "nodeId": 356781456, + "lat": 43.5560143, + "lon": 1.4782012 + }, + { + "nodeId": 11487204334, + "lat": 43.5914854, + "lon": 1.4182334 + }, + { + "nodeId": 11400069842, + "lat": 43.5928609, + "lon": 1.4184347 + }, + { + "nodeId": 11487204333, + "lat": 43.5915998, + "lon": 1.4182384 + }, + { + "nodeId": 11487204335, + "lat": 43.5913255, + "lon": 1.4182481 + }, + { + "nodeId": 11487204332, + "lat": 43.5911554, + "lon": 1.4182745 + }, + { + "nodeId": 11487204337, + "lat": 43.5885885, + "lon": 1.4187857 + }, + { + "nodeId": 11487204336, + "lat": 43.5888477, + "lon": 1.4187729 + }, + { + "nodeId": 1922412415, + "lat": 43.5883192, + "lon": 1.4187492 + }, + { + "nodeId": 4958023823, + "lat": 43.5880834, + "lon": 1.4186944 + }, + { + "nodeId": 1922412413, + "lat": 43.5878001, + "lon": 1.4185905 + }, + { + "nodeId": 9150994683, + "lat": 43.5812979, + "lon": 1.4133481 + }, + { + "nodeId": 12794875825, + "lat": 43.5798604, + "lon": 1.4121052 + }, + { + "nodeId": 11487204351, + "lat": 43.5795562, + "lon": 1.4117199 + }, + { + "nodeId": 11487204352, + "lat": 43.5797179, + "lon": 1.4119418 + }, + { + "nodeId": 1477508094, + "lat": 43.5792744, + "lon": 1.411315 + }, + { + "nodeId": 11487204350, + "lat": 43.5790492, + "lon": 1.4108307 + }, + { + "nodeId": 1477508093, + "lat": 43.578835, + "lon": 1.4103607 + }, + { + "nodeId": 1477508092, + "lat": 43.5787404, + "lon": 1.4101049 + }, + { + "nodeId": 7992911256, + "lat": 43.6149449, + "lon": 1.3970636 + }, + { + "nodeId": 2088234167, + "lat": 43.615831, + "lon": 1.3970493 + }, + { + "nodeId": 1464397873, + "lat": 43.6167773, + "lon": 1.397012 + }, + { + "nodeId": 2088234168, + "lat": 43.6176783, + "lon": 1.3969542 + }, + { + "nodeId": 757369920, + "lat": 43.6178521, + "lon": 1.3969457 + }, + { + "nodeId": 5839557778, + "lat": 43.6180255, + "lon": 1.3969414 + }, + { + "nodeId": 2447668515, + "lat": 43.5926882, + "lon": 1.435001 + }, + { + "nodeId": 13356009862, + "lat": 43.5926925, + "lon": 1.4349524 + }, + { + "nodeId": 2438046037, + "lat": 43.5926974, + "lon": 1.4348958 + }, + { + "nodeId": 3721923412, + "lat": 43.5926964, + "lon": 1.4347952 + }, + { + "nodeId": 2447668513, + "lat": 43.5926935, + "lon": 1.4347469 + }, + { + "nodeId": 2919067078, + "lat": 43.5926998, + "lon": 1.4348581 + }, + { + "nodeId": 3721923413, + "lat": 43.5926828, + "lon": 1.4346933 + }, + { + "nodeId": 2278465611, + "lat": 43.5926682, + "lon": 1.4346464 + }, + { + "nodeId": 3721923414, + "lat": 43.5926527, + "lon": 1.4346021 + }, + { + "nodeId": 2919067076, + "lat": 43.5926372, + "lon": 1.4345672 + }, + { + "nodeId": 2882244420, + "lat": 43.5926236, + "lon": 1.4345404 + }, + { + "nodeId": 3721923415, + "lat": 43.5925905, + "lon": 1.4344908 + }, + { + "nodeId": 648447, + "lat": 43.5925614, + "lon": 1.4344561 + }, + { + "nodeId": 7992911287, + "lat": 43.5925079, + "lon": 1.4344052 + }, + { + "nodeId": 2494096159, + "lat": 43.5924831, + "lon": 1.4343816 + }, + { + "nodeId": 2903146038, + "lat": 43.5924402, + "lon": 1.4343502 + }, + { + "nodeId": 13356009847, + "lat": 43.592307, + "lon": 1.4342419 + }, + { + "nodeId": 2361286503, + "lat": 43.5923431, + "lon": 1.434274 + }, + { + "nodeId": 2616211812, + "lat": 43.5924082, + "lon": 1.4343233 + }, + { + "nodeId": 4070164982, + "lat": 43.6032586, + "lon": 1.407432 + }, + { + "nodeId": 4070165089, + "lat": 43.6034062, + "lon": 1.4070965 + }, + { + "nodeId": 4070165091, + "lat": 43.6034611, + "lon": 1.4069682 + }, + { + "nodeId": 2379081473, + "lat": 43.6035076, + "lon": 1.4068595 + }, + { + "nodeId": 2281809214, + "lat": 43.6037411, + "lon": 1.4063437 + }, + { + "nodeId": 582467894, + "lat": 43.6038685, + "lon": 1.4061023 + }, + { + "nodeId": 4070165097, + "lat": 43.6035502, + "lon": 1.4067654 + }, + { + "nodeId": 7992911277, + "lat": 43.6039421, + "lon": 1.4059678 + }, + { + "nodeId": 8237931628, + "lat": 43.593228, + "lon": 1.4100967 + }, + { + "nodeId": 344790675, + "lat": 43.5932265, + "lon": 1.4100743 + }, + { + "nodeId": 8238063523, + "lat": 43.5932048, + "lon": 1.4097489 + }, + { + "nodeId": 8238063529, + "lat": 43.5932255, + "lon": 1.4100598 + }, + { + "nodeId": 1464788357, + "lat": 43.5932029, + "lon": 1.4097205 + }, + { + "nodeId": 8238063551, + "lat": 43.5932017, + "lon": 1.4096956 + }, + { + "nodeId": 8237931623, + "lat": 43.5931979, + "lon": 1.4096154 + }, + { + "nodeId": 8238063546, + "lat": 43.5932001, + "lon": 1.4095754 + }, + { + "nodeId": 344790674, + "lat": 43.5932023, + "lon": 1.4095338 + }, + { + "nodeId": 8238063567, + "lat": 43.593208, + "lon": 1.4094789 + }, + { + "nodeId": 2379081331, + "lat": 43.5932117, + "lon": 1.409444 + }, + { + "nodeId": 2091875622, + "lat": 43.5932256, + "lon": 1.4093592 + }, + { + "nodeId": 7992911288, + "lat": 43.5857811, + "lon": 1.4276406 + }, + { + "nodeId": 3720373928, + "lat": 43.6185299, + "lon": 1.3969195 + }, + { + "nodeId": 1461684517, + "lat": 43.6186462, + "lon": 1.3969162 + }, + { + "nodeId": 1739599883, + "lat": 43.6188683, + "lon": 1.3969067 + }, + { + "nodeId": 4070166418, + "lat": 43.6189461, + "lon": 1.3969036 + }, + { + "nodeId": 656420389, + "lat": 43.620359, + "lon": 1.3968484 + }, + { + "nodeId": 656420399, + "lat": 43.6206138, + "lon": 1.3968385 + }, + { + "nodeId": 333085694, + "lat": 43.6277126, + "lon": 1.4830234 + }, + { + "nodeId": 7684777840, + "lat": 43.6274124, + "lon": 1.4829159 + }, + { + "nodeId": 2763710929, + "lat": 43.6275278, + "lon": 1.482968 + }, + { + "nodeId": 54548624, + "lat": 43.602539, + "lon": 1.3506501 + }, + { + "nodeId": 4146836665, + "lat": 43.6025372, + "lon": 1.3508401 + }, + { + "nodeId": 7072910005, + "lat": 43.6257109, + "lon": 1.3933603 + }, + { + "nodeId": 288552168, + "lat": 43.6262081, + "lon": 1.3930602 + }, + { + "nodeId": 983684791, + "lat": 43.6266513, + "lon": 1.3927755 + }, + { + "nodeId": 265650424, + "lat": 43.6270898, + "lon": 1.3924976 + }, + { + "nodeId": 253218842, + "lat": 43.6271998, + "lon": 1.3924304 + }, + { + "nodeId": 983684771, + "lat": 43.6275691, + "lon": 1.39225 + }, + { + "nodeId": 288552069, + "lat": 43.6273158, + "lon": 1.3923642 + }, + { + "nodeId": 1540944859, + "lat": 43.6277749, + "lon": 1.392181 + }, + { + "nodeId": 265650449, + "lat": 43.6280256, + "lon": 1.3921285 + }, + { + "nodeId": 267255605, + "lat": 43.6282116, + "lon": 1.3921012 + }, + { + "nodeId": 265650462, + "lat": 43.628594, + "lon": 1.3920493 + }, + { + "nodeId": 983684753, + "lat": 43.6291019, + "lon": 1.3919835 + }, + { + "nodeId": 267255661, + "lat": 43.6294735, + "lon": 1.3919329 + }, + { + "nodeId": 265650613, + "lat": 43.6299693, + "lon": 1.391867 + }, + { + "nodeId": 253218850, + "lat": 43.6301746, + "lon": 1.3918392 + }, + { + "nodeId": 983684828, + "lat": 43.6305632, + "lon": 1.3917879 + }, + { + "nodeId": 7078008180, + "lat": 43.630645, + "lon": 1.3917759 + }, + { + "nodeId": 757338941, + "lat": 43.6307708, + "lon": 1.3917575 + }, + { + "nodeId": 7992911279, + "lat": 43.6017489, + "lon": 1.4107918 + }, + { + "nodeId": 8068564034, + "lat": 43.6023548, + "lon": 1.4094385 + }, + { + "nodeId": 2379081462, + "lat": 43.6023671, + "lon": 1.4094105 + }, + { + "nodeId": 2379081466, + "lat": 43.602483, + "lon": 1.4091506 + }, + { + "nodeId": 8068564090, + "lat": 43.6024896, + "lon": 1.409134 + }, + { + "nodeId": 8068564091, + "lat": 43.6029279, + "lon": 1.4081594 + }, + { + "nodeId": 4070164973, + "lat": 43.603028, + "lon": 1.4079456 + }, + { + "nodeId": 5894970034, + "lat": 43.6342528, + "lon": 1.3913138 + }, + { + "nodeId": 253218858, + "lat": 43.6343271, + "lon": 1.3913044 + }, + { + "nodeId": 7078008160, + "lat": 43.6343899, + "lon": 1.3912965 + }, + { + "nodeId": 7078008204, + "lat": 43.6347379, + "lon": 1.3912524 + }, + { + "nodeId": 7078008224, + "lat": 43.6348312, + "lon": 1.3912406 + }, + { + "nodeId": 1464323830, + "lat": 43.6349091, + "lon": 1.3912307 + }, + { + "nodeId": 983684836, + "lat": 43.6351126, + "lon": 1.3912055 + }, + { + "nodeId": 983684776, + "lat": 43.6357725, + "lon": 1.3911139 + }, + { + "nodeId": 983684811, + "lat": 43.6366035, + "lon": 1.391007 + }, + { + "nodeId": 7994764696, + "lat": 43.662022, + "lon": 1.364118 + }, + { + "nodeId": 2379084676, + "lat": 43.6620122, + "lon": 1.3640534 + }, + { + "nodeId": 364942222, + "lat": 43.6620008, + "lon": 1.3639565 + }, + { + "nodeId": 1626510458, + "lat": 43.6619937, + "lon": 1.3638679 + }, + { + "nodeId": 7869544173, + "lat": 43.6619923, + "lon": 1.3637943 + }, + { + "nodeId": 7869544176, + "lat": 43.6619981, + "lon": 1.3637227 + }, + { + "nodeId": 7869544174, + "lat": 43.66201, + "lon": 1.3636713 + }, + { + "nodeId": 364942084, + "lat": 43.6620258, + "lon": 1.3636234 + }, + { + "nodeId": 364942090, + "lat": 43.6620602, + "lon": 1.3635538 + }, + { + "nodeId": 364942094, + "lat": 43.6621179, + "lon": 1.3634866 + }, + { + "nodeId": 1736729062, + "lat": 43.6622067, + "lon": 1.3634251 + }, + { + "nodeId": 2379084699, + "lat": 43.6628697, + "lon": 1.3630037 + }, + { + "nodeId": 1736729150, + "lat": 43.6627428, + "lon": 1.3630866 + }, + { + "nodeId": 2379084703, + "lat": 43.6631078, + "lon": 1.3628522 + }, + { + "nodeId": 7077990874, + "lat": 43.6631572, + "lon": 1.362823 + }, + { + "nodeId": 13178671358, + "lat": 43.6636879, + "lon": 1.3624849 + }, + { + "nodeId": 2663752126, + "lat": 43.6637144, + "lon": 1.3624676 + }, + { + "nodeId": 360021215, + "lat": 43.5928166, + "lon": 1.4182775 + }, + { + "nodeId": 11518743823, + "lat": 43.6400595, + "lon": 1.4523614 + }, + { + "nodeId": 11518743824, + "lat": 43.6399322, + "lon": 1.4522851 + }, + { + "nodeId": 11518743825, + "lat": 43.6397145, + "lon": 1.4521693 + }, + { + "nodeId": 11518743826, + "lat": 43.6394452, + "lon": 1.4519538 + }, + { + "nodeId": 11518743827, + "lat": 43.6391393, + "lon": 1.4516753 + }, + { + "nodeId": 11518743828, + "lat": 43.6388083, + "lon": 1.4512179 + }, + { + "nodeId": 11518743829, + "lat": 43.6386871, + "lon": 1.4509338 + }, + { + "nodeId": 11518743830, + "lat": 43.6385432, + "lon": 1.4504655 + }, + { + "nodeId": 11518743831, + "lat": 43.6384184, + "lon": 1.4499402 + }, + { + "nodeId": 11518743832, + "lat": 43.6380263, + "lon": 1.4483201 + }, + { + "nodeId": 11518743833, + "lat": 43.6379572, + "lon": 1.4478302 + }, + { + "nodeId": 11518743834, + "lat": 43.6379305, + "lon": 1.4475375 + }, + { + "nodeId": 11518743835, + "lat": 43.6379305, + "lon": 1.4472171 + }, + { + "nodeId": 11518743836, + "lat": 43.638004, + "lon": 1.4459477 + }, + { + "nodeId": 11518743838, + "lat": 43.6380109, + "lon": 1.4438635 + }, + { + "nodeId": 11518743839, + "lat": 43.6380199, + "lon": 1.4424969 + }, + { + "nodeId": 11518743846, + "lat": 43.6379277, + "lon": 1.4414458 + }, + { + "nodeId": 11518743847, + "lat": 43.6377646, + "lon": 1.4409898 + }, + { + "nodeId": 13097083520, + "lat": 43.6376331, + "lon": 1.4407513 + }, + { + "nodeId": 12840249381, + "lat": 43.6379942, + "lon": 1.4419638 + }, + { + "nodeId": 11518743848, + "lat": 43.6376093, + "lon": 1.4407082 + }, + { + "nodeId": 11518743849, + "lat": 43.6371105, + "lon": 1.4400322 + }, + { + "nodeId": 11518743850, + "lat": 43.6362214, + "lon": 1.4388601 + }, + { + "nodeId": 11518743851, + "lat": 43.6356761, + "lon": 1.4380991 + }, + { + "nodeId": 11518743853, + "lat": 43.633013, + "lon": 1.4345446 + }, + { + "nodeId": 11518743854, + "lat": 43.6326378, + "lon": 1.4340973 + }, + { + "nodeId": 11518743855, + "lat": 43.6323155, + "lon": 1.4339166 + }, + { + "nodeId": 11518743857, + "lat": 43.6316858, + "lon": 1.4336603 + }, + { + "nodeId": 11518743856, + "lat": 43.6320185, + "lon": 1.4337449 + }, + { + "nodeId": 11518743858, + "lat": 43.6313836, + "lon": 1.4336426 + }, + { + "nodeId": 11518743860, + "lat": 43.628622, + "lon": 1.4338337 + }, + { + "nodeId": 11518743859, + "lat": 43.6298504, + "lon": 1.4337487 + }, + { + "nodeId": 11518743861, + "lat": 43.6271856, + "lon": 1.4339694 + }, + { + "nodeId": 11518774785, + "lat": 43.6257998, + "lon": 1.4340978 + }, + { + "nodeId": 11518774786, + "lat": 43.6248827, + "lon": 1.4341592 + }, + { + "nodeId": 11518774787, + "lat": 43.6240014, + "lon": 1.4342901 + }, + { + "nodeId": 11518774788, + "lat": 43.6235274, + "lon": 1.4343662 + }, + { + "nodeId": 11518774789, + "lat": 43.6232187, + "lon": 1.4344547 + }, + { + "nodeId": 11518774790, + "lat": 43.622787, + "lon": 1.4346405 + }, + { + "nodeId": 11518774791, + "lat": 43.6222566, + "lon": 1.4349024 + }, + { + "nodeId": 11518774792, + "lat": 43.6215469, + "lon": 1.435274 + }, + { + "nodeId": 11518774793, + "lat": 43.6207822, + "lon": 1.4356828 + }, + { + "nodeId": 11518774794, + "lat": 43.6205951, + "lon": 1.4357713 + }, + { + "nodeId": 12839919770, + "lat": 43.6201778, + "lon": 1.4359115 + }, + { + "nodeId": 12839919767, + "lat": 43.6198628, + "lon": 1.4360031 + }, + { + "nodeId": 11518774797, + "lat": 43.6191898, + "lon": 1.4362579 + }, + { + "nodeId": 11518774799, + "lat": 43.6180214, + "lon": 1.4366118 + }, + { + "nodeId": 11518774798, + "lat": 43.6185364, + "lon": 1.4364544 + }, + { + "nodeId": 11518774800, + "lat": 43.6175987, + "lon": 1.4367534 + }, + { + "nodeId": 11518774801, + "lat": 43.6174372, + "lon": 1.43678 + }, + { + "nodeId": 11518774802, + "lat": 43.6173027, + "lon": 1.4367729 + }, + { + "nodeId": 11518774803, + "lat": 43.6171272, + "lon": 1.4367357 + }, + { + "nodeId": 11518774804, + "lat": 43.6168851, + "lon": 1.4366278 + }, + { + "nodeId": 11518774805, + "lat": 43.6167429, + "lon": 1.4365269 + }, + { + "nodeId": 11518774806, + "lat": 43.6165392, + "lon": 1.4363712 + }, + { + "nodeId": 11518774807, + "lat": 43.6163893, + "lon": 1.4362349 + }, + { + "nodeId": 11518774808, + "lat": 43.6161856, + "lon": 1.4359394 + }, + { + "nodeId": 11518774809, + "lat": 43.6159144, + "lon": 1.4355813 + }, + { + "nodeId": 12833899126, + "lat": 43.6152796, + "lon": 1.4340446 + }, + { + "nodeId": 11834673033, + "lat": 43.6151042, + "lon": 1.433703 + }, + { + "nodeId": 11834673034, + "lat": 43.6147437, + "lon": 1.4329839 + }, + { + "nodeId": 11834673035, + "lat": 43.6146075, + "lon": 1.43261 + }, + { + "nodeId": 11834673036, + "lat": 43.614275, + "lon": 1.4316815 + }, + { + "nodeId": 11834673037, + "lat": 43.6137117, + "lon": 1.4304413 + }, + { + "nodeId": 11834673038, + "lat": 43.6134429, + "lon": 1.4300716 + }, + { + "nodeId": 11834673039, + "lat": 43.6132868, + "lon": 1.4298436 + }, + { + "nodeId": 11834673040, + "lat": 43.6131674, + "lon": 1.4297373 + }, + { + "nodeId": 11834673041, + "lat": 43.6129734, + "lon": 1.4296372 + }, + { + "nodeId": 11834673042, + "lat": 43.6128206, + "lon": 1.4296002 + }, + { + "nodeId": 11834673043, + "lat": 43.612506, + "lon": 1.429594 + }, + { + "nodeId": 11834673044, + "lat": 43.6122829, + "lon": 1.429611 + }, + { + "nodeId": 11834673045, + "lat": 43.6120677, + "lon": 1.4296618 + }, + { + "nodeId": 11834673046, + "lat": 43.6117286, + "lon": 1.4298128 + }, + { + "nodeId": 11834673047, + "lat": 43.6114944, + "lon": 1.4299591 + }, + { + "nodeId": 11834673048, + "lat": 43.6111018, + "lon": 1.4302303 + }, + { + "nodeId": 11834673049, + "lat": 43.6108207, + "lon": 1.4304798 + }, + { + "nodeId": 11834673050, + "lat": 43.6105284, + "lon": 1.430848 + }, + { + "nodeId": 11834673052, + "lat": 43.6102842, + "lon": 1.4313888 + }, + { + "nodeId": 11834673051, + "lat": 43.6104002, + "lon": 1.4310729 + }, + { + "nodeId": 11834673053, + "lat": 43.6102239, + "lon": 1.4317169 + }, + { + "nodeId": 11834673054, + "lat": 43.6101788, + "lon": 1.4321039 + }, + { + "nodeId": 11834673055, + "lat": 43.6101376, + "lon": 1.4325382 + }, + { + "nodeId": 11834673056, + "lat": 43.6101069, + "lon": 1.4330468 + }, + { + "nodeId": 11834673057, + "lat": 43.6101152, + "lon": 1.4335499 + }, + { + "nodeId": 11834673058, + "lat": 43.6101788, + "lon": 1.4341123 + }, + { + "nodeId": 11834678178, + "lat": 43.6103151, + "lon": 1.4345484 + }, + { + "nodeId": 11834673060, + "lat": 43.6107902, + "lon": 1.436119 + }, + { + "nodeId": 11834678170, + "lat": 43.6111277, + "lon": 1.4371648 + }, + { + "nodeId": 11834678171, + "lat": 43.6113353, + "lon": 1.4376803 + }, + { + "nodeId": 11834678172, + "lat": 43.6114885, + "lon": 1.4382124 + }, + { + "nodeId": 11834678173, + "lat": 43.6115545, + "lon": 1.4386108 + }, + { + "nodeId": 11834678174, + "lat": 43.6115565, + "lon": 1.4390731 + }, + { + "nodeId": 11834678175, + "lat": 43.6114854, + "lon": 1.4395331 + }, + { + "nodeId": 11834678176, + "lat": 43.6113513, + "lon": 1.4402742 + }, + { + "nodeId": 11834678177, + "lat": 43.6108414, + "lon": 1.4426193 + }, + { + "nodeId": 11834678186, + "lat": 43.6105961, + "lon": 1.4433825 + }, + { + "nodeId": 11834678187, + "lat": 43.610325, + "lon": 1.443792 + }, + { + "nodeId": 11834678188, + "lat": 43.6100579, + "lon": 1.4441236 + }, + { + "nodeId": 11834678189, + "lat": 43.609544, + "lon": 1.4446842 + }, + { + "nodeId": 12833545526, + "lat": 43.60864, + "lon": 1.4456083 + }, + { + "nodeId": 12833639921, + "lat": 43.6083379, + "lon": 1.4458618 + }, + { + "nodeId": 12833639922, + "lat": 43.6079046, + "lon": 1.4463128 + }, + { + "nodeId": 12833639923, + "lat": 43.6077148, + "lon": 1.4466314 + }, + { + "nodeId": 12841569718, + "lat": 43.6053595, + "lon": 1.4490713 + }, + { + "nodeId": 12833639924, + "lat": 43.6070572, + "lon": 1.447295 + }, + { + "nodeId": 12833639925, + "lat": 43.6046641, + "lon": 1.4498625 + }, + { + "nodeId": 12833639926, + "lat": 43.6031517, + "lon": 1.4515065 + }, + { + "nodeId": 12833639927, + "lat": 43.6026883, + "lon": 1.4518476 + }, + { + "nodeId": 12833639928, + "lat": 43.6024589, + "lon": 1.4519127 + }, + { + "nodeId": 12833639932, + "lat": 43.6011214, + "lon": 1.4520968 + }, + { + "nodeId": 12833639929, + "lat": 43.6014635, + "lon": 1.4520188 + }, + { + "nodeId": 12833639930, + "lat": 43.6003448, + "lon": 1.4521726 + }, + { + "nodeId": 12833639934, + "lat": 43.5999592, + "lon": 1.4522 + }, + { + "nodeId": 12833639935, + "lat": 43.5997417, + "lon": 1.4520858 + }, + { + "nodeId": 12833639936, + "lat": 43.5994085, + "lon": 1.4519223 + }, + { + "nodeId": 12833639937, + "lat": 43.5992297, + "lon": 1.4516567 + }, + { + "nodeId": 12833639938, + "lat": 43.5991397, + "lon": 1.4514519 + }, + { + "nodeId": 12833639939, + "lat": 43.5990838, + "lon": 1.4511235 + }, + { + "nodeId": 12833639940, + "lat": 43.5990573, + "lon": 1.4508027 + }, + { + "nodeId": 12833639941, + "lat": 43.5990708, + "lon": 1.4495803 + }, + { + "nodeId": 12833639942, + "lat": 43.5990972, + "lon": 1.447764 + }, + { + "nodeId": 12833639943, + "lat": 43.5990171, + "lon": 1.4472329 + }, + { + "nodeId": 12833639944, + "lat": 43.5988497, + "lon": 1.4468157 + }, + { + "nodeId": 12833639945, + "lat": 43.5982058, + "lon": 1.4463733 + }, + { + "nodeId": 12833639946, + "lat": 43.597743, + "lon": 1.4457978 + }, + { + "nodeId": 12833639947, + "lat": 43.5974422, + "lon": 1.4452933 + }, + { + "nodeId": 12833639950, + "lat": 43.5972441, + "lon": 1.4449705 + }, + { + "nodeId": 12833639951, + "lat": 43.5971137, + "lon": 1.444727 + }, + { + "nodeId": 12833639952, + "lat": 43.5968639, + "lon": 1.4444593 + }, + { + "nodeId": 12833639953, + "lat": 43.5958902, + "lon": 1.4442421 + }, + { + "nodeId": 12833639955, + "lat": 43.5944714, + "lon": 1.4439399 + }, + { + "nodeId": 12833639954, + "lat": 43.5949725, + "lon": 1.443993 + }, + { + "nodeId": 12833639956, + "lat": 43.594279, + "lon": 1.4438771 + }, + { + "nodeId": 12833639957, + "lat": 43.5938858, + "lon": 1.4439013 + }, + { + "nodeId": 12833639958, + "lat": 43.5932413, + "lon": 1.4441993 + }, + { + "nodeId": 12833639959, + "lat": 43.5926848, + "lon": 1.4444814 + }, + { + "nodeId": 12833639960, + "lat": 43.5925244, + "lon": 1.4445808 + }, + { + "nodeId": 12833639961, + "lat": 43.5919713, + "lon": 1.4447836 + }, + { + "nodeId": 12833639964, + "lat": 43.5882724, + "lon": 1.4462279 + }, + { + "nodeId": 12833639963, + "lat": 43.5906624, + "lon": 1.4452342 + }, + { + "nodeId": 12833639965, + "lat": 43.587211, + "lon": 1.4466955 + }, + { + "nodeId": 13507617281, + "lat": 43.5870227, + "lon": 1.4467768 + }, + { + "nodeId": 12833639966, + "lat": 43.5863736, + "lon": 1.447057 + }, + { + "nodeId": 12833639967, + "lat": 43.5860436, + "lon": 1.4471952 + }, + { + "nodeId": 12833639969, + "lat": 43.5856515, + "lon": 1.447328 + }, + { + "nodeId": 12833639971, + "lat": 43.5845123, + "lon": 1.4474895 + }, + { + "nodeId": 12833639970, + "lat": 43.5851529, + "lon": 1.4474831 + }, + { + "nodeId": 12833639972, + "lat": 43.5839661, + "lon": 1.4473254 + }, + { + "nodeId": 12833639973, + "lat": 43.583491, + "lon": 1.4470952 + }, + { + "nodeId": 12833639974, + "lat": 43.5831255, + "lon": 1.4466993 + }, + { + "nodeId": 12833639975, + "lat": 43.5828935, + "lon": 1.4463259 + }, + { + "nodeId": 12833639976, + "lat": 43.5819655, + "lon": 1.444525 + }, + { + "nodeId": 12833639977, + "lat": 43.5815761, + "lon": 1.4437935 + }, + { + "nodeId": 12833639979, + "lat": 43.580876, + "lon": 1.4428174 + }, + { + "nodeId": 12833639978, + "lat": 43.5812089, + "lon": 1.4431852 + }, + { + "nodeId": 12833639980, + "lat": 43.5802914, + "lon": 1.4423668 + }, + { + "nodeId": 12833639983, + "lat": 43.5786916, + "lon": 1.4413439 + }, + { + "nodeId": 12833639981, + "lat": 43.579639, + "lon": 1.4419813 + }, + { + "nodeId": 12833639984, + "lat": 43.5775946, + "lon": 1.4407787 + }, + { + "nodeId": 12833639985, + "lat": 43.577224, + "lon": 1.4407148 + }, + { + "nodeId": 12833639986, + "lat": 43.5768751, + "lon": 1.4407627 + }, + { + "nodeId": 12833639987, + "lat": 43.5766126, + "lon": 1.4410124 + }, + { + "nodeId": 12833639988, + "lat": 43.5764793, + "lon": 1.4414086 + }, + { + "nodeId": 12833639989, + "lat": 43.5764528, + "lon": 1.4418779 + }, + { + "nodeId": 12833639990, + "lat": 43.5765052, + "lon": 1.4424224 + }, + { + "nodeId": 12833639991, + "lat": 43.5766527, + "lon": 1.4430795 + }, + { + "nodeId": 12833639992, + "lat": 43.5769064, + "lon": 1.4439374 + }, + { + "nodeId": 12833639993, + "lat": 43.5771315, + "lon": 1.4445495 + }, + { + "nodeId": 12833639994, + "lat": 43.5773777, + "lon": 1.4452423 + }, + { + "nodeId": 12833639995, + "lat": 43.578087, + "lon": 1.4465198 + }, + { + "nodeId": 12833639996, + "lat": 43.5782502, + "lon": 1.446824 + }, + { + "nodeId": 12833639997, + "lat": 43.5786936, + "lon": 1.4473534 + }, + { + "nodeId": 12833639998, + "lat": 43.5793858, + "lon": 1.4480105 + }, + { + "nodeId": 12833639999, + "lat": 43.5796816, + "lon": 1.4484067 + }, + { + "nodeId": 12833671101, + "lat": 43.5805657, + "lon": 1.4503977 + }, + { + "nodeId": 12833640000, + "lat": 43.5802501, + "lon": 1.4496814 + }, + { + "nodeId": 12833671103, + "lat": 43.5807877, + "lon": 1.4508807 + }, + { + "nodeId": 12833671104, + "lat": 43.581013, + "lon": 1.4514578 + }, + { + "nodeId": 12833671105, + "lat": 43.5810281, + "lon": 1.4524685 + }, + { + "nodeId": 12833671106, + "lat": 43.5809606, + "lon": 1.4530499 + }, + { + "nodeId": 12833671107, + "lat": 43.5809448, + "lon": 1.4536632 + }, + { + "nodeId": 12833671108, + "lat": 43.5808583, + "lon": 1.4545863 + }, + { + "nodeId": 12833671109, + "lat": 43.5806259, + "lon": 1.4561358 + }, + { + "nodeId": 12833671110, + "lat": 43.5804442, + "lon": 1.457441 + }, + { + "nodeId": 12833671111, + "lat": 43.5802991, + "lon": 1.4580203 + }, + { + "nodeId": 12833671112, + "lat": 43.5800595, + "lon": 1.4584748 + }, + { + "nodeId": 12833671114, + "lat": 43.5798954, + "lon": 1.4587641 + }, + { + "nodeId": 12833671113, + "lat": 43.5794869, + "lon": 1.4594321 + }, + { + "nodeId": 12833671117, + "lat": 43.5787157, + "lon": 1.4600447 + }, + { + "nodeId": 12833671116, + "lat": 43.5792071, + "lon": 1.4597356 + }, + { + "nodeId": 12833671118, + "lat": 43.57664, + "lon": 1.4605237 + }, + { + "nodeId": 12833671119, + "lat": 43.5755323, + "lon": 1.460723 + }, + { + "nodeId": 12833671120, + "lat": 43.5752861, + "lon": 1.4608686 + }, + { + "nodeId": 12833671124, + "lat": 43.5748679, + "lon": 1.46161 + }, + { + "nodeId": 12833671121, + "lat": 43.5751557, + "lon": 1.4610398 + }, + { + "nodeId": 12833671122, + "lat": 43.5746823, + "lon": 1.461948 + }, + { + "nodeId": 12833671126, + "lat": 43.5740398, + "lon": 1.4627173 + }, + { + "nodeId": 12833671127, + "lat": 43.573222, + "lon": 1.4630709 + }, + { + "nodeId": 12833671125, + "lat": 43.5744306, + "lon": 1.46234 + }, + { + "nodeId": 12833671128, + "lat": 43.5715288, + "lon": 1.4636297 + }, + { + "nodeId": 12833671129, + "lat": 43.5705433, + "lon": 1.4639512 + }, + { + "nodeId": 12833671130, + "lat": 43.5695754, + "lon": 1.4642578 + }, + { + "nodeId": 12833671131, + "lat": 43.568225, + "lon": 1.4644829 + }, + { + "nodeId": 12833671132, + "lat": 43.5677299, + "lon": 1.4645393 + }, + { + "nodeId": 12833671135, + "lat": 43.5672451, + "lon": 1.4645377 + }, + { + "nodeId": 12833671136, + "lat": 43.5669687, + "lon": 1.4644644 + }, + { + "nodeId": 12833671137, + "lat": 43.5665413, + "lon": 1.4643494 + }, + { + "nodeId": 12833671139, + "lat": 43.5639744, + "lon": 1.4629406 + }, + { + "nodeId": 12833671138, + "lat": 43.5646428, + "lon": 1.4633146 + }, + { + "nodeId": 12833671140, + "lat": 43.5629227, + "lon": 1.462647 + }, + { + "nodeId": 12833671141, + "lat": 43.5625027, + "lon": 1.4626336 + }, + { + "nodeId": 12833671144, + "lat": 43.5617338, + "lon": 1.4628184 + }, + { + "nodeId": 12833671142, + "lat": 43.5613486, + "lon": 1.4630277 + }, + { + "nodeId": 12833671143, + "lat": 43.5606647, + "lon": 1.463351 + }, + { + "nodeId": 12833671146, + "lat": 43.5607398, + "lon": 1.4633381 + }, + { + "nodeId": 12833671147, + "lat": 43.5601017, + "lon": 1.463665 + }, + { + "nodeId": 12833671148, + "lat": 43.5595797, + "lon": 1.4640431 + }, + { + "nodeId": 12833671149, + "lat": 43.5590557, + "lon": 1.4646307 + }, + { + "nodeId": 12833671150, + "lat": 43.5576005, + "lon": 1.4665646 + }, + { + "nodeId": 12833671151, + "lat": 43.5574061, + "lon": 1.4669338 + }, + { + "nodeId": 12833671161, + "lat": 43.5572682, + "lon": 1.467209 + }, + { + "nodeId": 12833671152, + "lat": 43.557009, + "lon": 1.4678689 + }, + { + "nodeId": 12833671153, + "lat": 43.5568637, + "lon": 1.4685446 + }, + { + "nodeId": 12833671154, + "lat": 43.5565489, + "lon": 1.4700149 + }, + { + "nodeId": 12833671155, + "lat": 43.5562462, + "lon": 1.4715835 + }, + { + "nodeId": 12833671156, + "lat": 43.5558195, + "lon": 1.4736639 + }, + { + "nodeId": 12833671157, + "lat": 43.55565, + "lon": 1.4744778 + }, + { + "nodeId": 12833671158, + "lat": 43.5556327, + "lon": 1.4750426 + }, + { + "nodeId": 12833671159, + "lat": 43.5556424, + "lon": 1.4754583 + }, + { + "nodeId": 12833671162, + "lat": 43.5559878, + "lon": 1.4781003 + }, + { + "nodeId": 54548603, + "lat": 43.5986904, + "lon": 1.3763776 + }, + { + "nodeId": 12188472889, + "lat": 43.5986157, + "lon": 1.376627 + }, + { + "nodeId": 54548602, + "lat": 43.5985273, + "lon": 1.3769075 + }, + { + "nodeId": 12188472892, + "lat": 43.5983878, + "lon": 1.37732 + }, + { + "nodeId": 12188472890, + "lat": 43.5984645, + "lon": 1.3770998 + }, + { + "nodeId": 4146820476, + "lat": 43.5982736, + "lon": 1.3776389 + }, + { + "nodeId": 12188472894, + "lat": 43.5982025, + "lon": 1.377829 + }, + { + "nodeId": 4146820478, + "lat": 43.5980851, + "lon": 1.3781304 + }, + { + "nodeId": 12188472899, + "lat": 43.5979718, + "lon": 1.3784385 + }, + { + "nodeId": 12188472901, + "lat": 43.5978461, + "lon": 1.3787657 + }, + { + "nodeId": 12188472909, + "lat": 43.5976226, + "lon": 1.3793548 + }, + { + "nodeId": 54548601, + "lat": 43.5974673, + "lon": 1.3797544 + }, + { + "nodeId": 7992911295, + "lat": 43.6211702, + "lon": 1.3968099 + }, + { + "nodeId": 9161059445, + "lat": 43.6025052, + "lon": 1.3557108 + }, + { + "nodeId": 12188472855, + "lat": 43.602501, + "lon": 1.3561024 + }, + { + "nodeId": 54548620, + "lat": 43.602497, + "lon": 1.3563538 + }, + { + "nodeId": 12188472857, + "lat": 43.6024898, + "lon": 1.3566077 + }, + { + "nodeId": 12188472860, + "lat": 43.6024818, + "lon": 1.3568719 + }, + { + "nodeId": 12188637872, + "lat": 43.602474, + "lon": 1.357064 + }, + { + "nodeId": 4146818795, + "lat": 43.6024665, + "lon": 1.3572464 + }, + { + "nodeId": 12188472862, + "lat": 43.6024529, + "lon": 1.3575283 + }, + { + "nodeId": 12188472864, + "lat": 43.6024211, + "lon": 1.3580594 + }, + { + "nodeId": 12188472865, + "lat": 43.6024021, + "lon": 1.3583377 + }, + { + "nodeId": 54548618, + "lat": 43.6024371, + "lon": 1.3578076 + }, + { + "nodeId": 54548617, + "lat": 43.6023745, + "lon": 1.3586923 + }, + { + "nodeId": 12188472868, + "lat": 43.6023512, + "lon": 1.3589727 + }, + { + "nodeId": 12188472869, + "lat": 43.6023266, + "lon": 1.3592433 + }, + { + "nodeId": 1201078035, + "lat": 43.6022873, + "lon": 1.3596386 + }, + { + "nodeId": 9161059444, + "lat": 43.6025082, + "lon": 1.3554338 + }, + { + "nodeId": 6128181713, + "lat": 43.602508, + "lon": 1.3555784 + }, + { + "nodeId": 348580355, + "lat": 43.5954372, + "lon": 1.4018902 + }, + { + "nodeId": 348580215, + "lat": 43.5953831, + "lon": 1.4020583 + }, + { + "nodeId": 7992911241, + "lat": 43.641229, + "lon": 1.3806092 + }, + { + "nodeId": 3721453110, + "lat": 43.6064534, + "lon": 1.4021104 + }, + { + "nodeId": 2281806189, + "lat": 43.6064753, + "lon": 1.4021159 + }, + { + "nodeId": 2281806195, + "lat": 43.6065281, + "lon": 1.4021252 + }, + { + "nodeId": 3721453109, + "lat": 43.6066019, + "lon": 1.4021359 + }, + { + "nodeId": 2281806200, + "lat": 43.6066665, + "lon": 1.4021402 + }, + { + "nodeId": 1461684494, + "lat": 43.6067923, + "lon": 1.4021402 + }, + { + "nodeId": 2379081554, + "lat": 43.6072026, + "lon": 1.4021205 + }, + { + "nodeId": 7197474808, + "lat": 43.6072865, + "lon": 1.4021164 + }, + { + "nodeId": 756757832, + "lat": 43.6077542, + "lon": 1.4020934 + }, + { + "nodeId": 7197474804, + "lat": 43.6078549, + "lon": 1.4020884 + }, + { + "nodeId": 7197474800, + "lat": 43.6084988, + "lon": 1.4020562 + }, + { + "nodeId": 7992911267, + "lat": 43.6085222, + "lon": 1.402055 + }, + { + "nodeId": 7007685005, + "lat": 43.5579922, + "lon": 1.4508592 + }, + { + "nodeId": 7007685006, + "lat": 43.5571326, + "lon": 1.4457995 + }, + { + "nodeId": 7007685007, + "lat": 43.5551678, + "lon": 1.4335696 + }, + { + "nodeId": 2133021687, + "lat": 43.6022649, + "lon": 1.3598431 + }, + { + "nodeId": 7992911231, + "lat": 43.662209, + "lon": 1.3680645 + }, + { + "nodeId": 364942255, + "lat": 43.6622523, + "lon": 1.368032 + }, + { + "nodeId": 2663752123, + "lat": 43.6623184, + "lon": 1.3679654 + }, + { + "nodeId": 3457542400, + "lat": 43.6623439, + "lon": 1.3679343 + }, + { + "nodeId": 2379084684, + "lat": 43.6623059, + "lon": 1.3679826 + }, + { + "nodeId": 3457542394, + "lat": 43.662372, + "lon": 1.36789 + }, + { + "nodeId": 3457542395, + "lat": 43.6623933, + "lon": 1.3678444 + }, + { + "nodeId": 364942236, + "lat": 43.6624186, + "lon": 1.3677747 + }, + { + "nodeId": 364942227, + "lat": 43.6624312, + "lon": 1.3677117 + }, + { + "nodeId": 3457542192, + "lat": 43.6624389, + "lon": 1.367654 + }, + { + "nodeId": 3457542393, + "lat": 43.6624409, + "lon": 1.3675963 + }, + { + "nodeId": 364942224, + "lat": 43.6624384, + "lon": 1.3675386 + }, + { + "nodeId": 8025871072, + "lat": 43.6624328, + "lon": 1.3674922 + }, + { + "nodeId": 7992911230, + "lat": 43.6623873, + "lon": 1.3671177 + }, + { + "nodeId": 344478662, + "lat": 43.602526, + "lon": 1.3525624 + }, + { + "nodeId": 344478663, + "lat": 43.6025254, + "lon": 1.352613 + }, + { + "nodeId": 12188473013, + "lat": 43.5963647, + "lon": 1.3940309 + }, + { + "nodeId": 12188473014, + "lat": 43.5963438, + "lon": 1.3948851 + }, + { + "nodeId": 333045453, + "lat": 43.5963855, + "lon": 1.393161 + }, + { + "nodeId": 54544335, + "lat": 43.5963027, + "lon": 1.3965817 + }, + { + "nodeId": 54548637, + "lat": 43.6029779, + "lon": 1.3370093 + }, + { + "nodeId": 7757618618, + "lat": 43.6028746, + "lon": 1.3376135 + }, + { + "nodeId": 12188637822, + "lat": 43.6028142, + "lon": 1.3379573 + }, + { + "nodeId": 12188637824, + "lat": 43.6027799, + "lon": 1.3381568 + }, + { + "nodeId": 12188637826, + "lat": 43.6027156, + "lon": 1.3385309 + }, + { + "nodeId": 12188637828, + "lat": 43.6025825, + "lon": 1.3392929 + }, + { + "nodeId": 54548636, + "lat": 43.6025031, + "lon": 1.3397224 + }, + { + "nodeId": 12188637830, + "lat": 43.6024339, + "lon": 1.3400678 + }, + { + "nodeId": 7757533290, + "lat": 43.6023613, + "lon": 1.3404233 + }, + { + "nodeId": 12188637834, + "lat": 43.602257, + "lon": 1.3409382 + }, + { + "nodeId": 12188637832, + "lat": 43.6023245, + "lon": 1.3406019 + }, + { + "nodeId": 54548634, + "lat": 43.602226, + "lon": 1.3411016 + }, + { + "nodeId": 12188637836, + "lat": 43.6021963, + "lon": 1.3412651 + }, + { + "nodeId": 12188637838, + "lat": 43.6021664, + "lon": 1.3414535 + }, + { + "nodeId": 4146845297, + "lat": 43.6021443, + "lon": 1.3416072 + }, + { + "nodeId": 12188637839, + "lat": 43.602121, + "lon": 1.3417811 + }, + { + "nodeId": 12188637841, + "lat": 43.6021013, + "lon": 1.3419621 + }, + { + "nodeId": 12188637844, + "lat": 43.6020758, + "lon": 1.3423135 + }, + { + "nodeId": 54548633, + "lat": 43.6020879, + "lon": 1.342128 + }, + { + "nodeId": 54548632, + "lat": 43.6020632, + "lon": 1.3426208 + }, + { + "nodeId": 12188637845, + "lat": 43.6020686, + "lon": 1.3424647 + }, + { + "nodeId": 12188637847, + "lat": 43.6020601, + "lon": 1.3427705 + }, + { + "nodeId": 4146845289, + "lat": 43.6020605, + "lon": 1.3429705 + }, + { + "nodeId": 12188637852, + "lat": 43.6020756, + "lon": 1.3433941 + }, + { + "nodeId": 12188637849, + "lat": 43.6020659, + "lon": 1.3431916 + }, + { + "nodeId": 54548631, + "lat": 43.6020882, + "lon": 1.3435727 + }, + { + "nodeId": 12188637854, + "lat": 43.6021008, + "lon": 1.3437247 + }, + { + "nodeId": 12188637856, + "lat": 43.6021193, + "lon": 1.3439034 + }, + { + "nodeId": 4146844980, + "lat": 43.6021425, + "lon": 1.3441112 + }, + { + "nodeId": 8904838366, + "lat": 43.6022205, + "lon": 1.3446995 + }, + { + "nodeId": 12188637857, + "lat": 43.602179, + "lon": 1.3443882 + }, + { + "nodeId": 8904838365, + "lat": 43.6022324, + "lon": 1.3447844 + }, + { + "nodeId": 12188637861, + "lat": 43.6022715, + "lon": 1.3450551 + }, + { + "nodeId": 12188637865, + "lat": 43.6024378, + "lon": 1.3462892 + }, + { + "nodeId": 54548628, + "lat": 43.6024022, + "lon": 1.3460017 + }, + { + "nodeId": 12188637862, + "lat": 43.6023232, + "lon": 1.3454215 + }, + { + "nodeId": 4146845291, + "lat": 43.6024649, + "lon": 1.3465361 + }, + { + "nodeId": 12188472812, + "lat": 43.6024866, + "lon": 1.3467656 + }, + { + "nodeId": 54548626, + "lat": 43.6025054, + "lon": 1.3470092 + }, + { + "nodeId": 12188472815, + "lat": 43.6025218, + "lon": 1.3472458 + }, + { + "nodeId": 12188472816, + "lat": 43.6025347, + "lon": 1.3474888 + }, + { + "nodeId": 12188472818, + "lat": 43.6025481, + "lon": 1.3479032 + }, + { + "nodeId": 4146845292, + "lat": 43.602543, + "lon": 1.3477031 + }, + { + "nodeId": 12188637866, + "lat": 43.6025505, + "lon": 1.3480893 + }, + { + "nodeId": 54548625, + "lat": 43.6025524, + "lon": 1.3482564 + }, + { + "nodeId": 12188637868, + "lat": 43.6025512, + "lon": 1.3486844 + }, + { + "nodeId": 12188472821, + "lat": 43.6025464, + "lon": 1.3494271 + }, + { + "nodeId": 3868748379, + "lat": 43.6033176, + "lon": 1.3348827 + }, + { + "nodeId": 1617713367, + "lat": 43.60329, + "lon": 1.3351236 + }, + { + "nodeId": 12188637795, + "lat": 43.6033624, + "lon": 1.3345035 + }, + { + "nodeId": 12188637792, + "lat": 43.6033842, + "lon": 1.3343249 + }, + { + "nodeId": 6123285636, + "lat": 43.6034388, + "lon": 1.3339571 + }, + { + "nodeId": 1617713380, + "lat": 43.6037345, + "lon": 1.3323183 + }, + { + "nodeId": 983684752, + "lat": 43.6450143, + "lon": 1.3767904 + }, + { + "nodeId": 2379081833, + "lat": 43.6450454, + "lon": 1.3767147 + }, + { + "nodeId": 3484233110, + "lat": 43.6450696, + "lon": 1.3766718 + }, + { + "nodeId": 1469771698, + "lat": 43.6450887, + "lon": 1.3766402 + }, + { + "nodeId": 3484233109, + "lat": 43.6451065, + "lon": 1.3766181 + }, + { + "nodeId": 3484233108, + "lat": 43.6451385, + "lon": 1.3765819 + }, + { + "nodeId": 267319392, + "lat": 43.6451562, + "lon": 1.3765689 + }, + { + "nodeId": 3484233107, + "lat": 43.6451851, + "lon": 1.376547 + }, + { + "nodeId": 983684780, + "lat": 43.645218, + "lon": 1.3765295 + }, + { + "nodeId": 3484233106, + "lat": 43.6452491, + "lon": 1.3765162 + }, + { + "nodeId": 983684814, + "lat": 43.6452799, + "lon": 1.3765103 + }, + { + "nodeId": 2379081839, + "lat": 43.6453328, + "lon": 1.3765062 + }, + { + "nodeId": 3484233104, + "lat": 43.6453612, + "lon": 1.3765095 + }, + { + "nodeId": 2379081841, + "lat": 43.6453971, + "lon": 1.3765162 + }, + { + "nodeId": 3484233105, + "lat": 43.6454263, + "lon": 1.3765283 + }, + { + "nodeId": 267319561, + "lat": 43.6454491, + "lon": 1.3765423 + }, + { + "nodeId": 2379081844, + "lat": 43.6457239, + "lon": 1.3767308 + }, + { + "nodeId": 54544338, + "lat": 43.5962768, + "lon": 1.3975379 + }, + { + "nodeId": 7684777834, + "lat": 43.6252345, + "lon": 1.4785676 + }, + { + "nodeId": 7684777827, + "lat": 43.6252946, + "lon": 1.4787235 + }, + { + "nodeId": 7684777833, + "lat": 43.6251542, + "lon": 1.4783703 + }, + { + "nodeId": 7684777832, + "lat": 43.6250593, + "lon": 1.4781462 + }, + { + "nodeId": 7684777831, + "lat": 43.6249942, + "lon": 1.4779898 + }, + { + "nodeId": 7684777843, + "lat": 43.6249391, + "lon": 1.4778645 + }, + { + "nodeId": 7684777830, + "lat": 43.6248548, + "lon": 1.4776811 + }, + { + "nodeId": 2379081698, + "lat": 43.6215333, + "lon": 1.3967803 + }, + { + "nodeId": 2379081696, + "lat": 43.6214488, + "lon": 1.3967946 + }, + { + "nodeId": 656420406, + "lat": 43.6212606, + "lon": 1.3968046 + }, + { + "nodeId": 11394895672, + "lat": 43.6247181, + "lon": 1.4774237 + }, + { + "nodeId": 11400065300, + "lat": 43.6242504, + "lon": 1.4765672 + }, + { + "nodeId": 11400065302, + "lat": 43.6240036, + "lon": 1.4761215 + }, + { + "nodeId": 11394895678, + "lat": 43.6237067, + "lon": 1.4756189 + }, + { + "nodeId": 11394895674, + "lat": 43.6196423, + "lon": 1.4690274 + }, + { + "nodeId": 11400065298, + "lat": 43.619133, + "lon": 1.4684952 + }, + { + "nodeId": 11400065297, + "lat": 43.6189517, + "lon": 1.4682392 + }, + { + "nodeId": 11487218496, + "lat": 43.6070139, + "lon": 1.4507856 + }, + { + "nodeId": 11400065340, + "lat": 43.6067063, + "lon": 1.4503661 + }, + { + "nodeId": 11400065345, + "lat": 43.6062953, + "lon": 1.4496354 + }, + { + "nodeId": 9924473484, + "lat": 43.6054899, + "lon": 1.4484008 + }, + { + "nodeId": 11400065348, + "lat": 43.6051735, + "lon": 1.4478828 + }, + { + "nodeId": 11400065349, + "lat": 43.604986, + "lon": 1.4474344 + }, + { + "nodeId": 11400065355, + "lat": 43.6049352, + "lon": 1.4472906 + }, + { + "nodeId": 339923259, + "lat": 43.604901, + "lon": 1.4471318 + }, + { + "nodeId": 8755980283, + "lat": 43.6048189, + "lon": 1.4466272 + }, + { + "nodeId": 11400065353, + "lat": 43.6047316, + "lon": 1.4461743 + }, + { + "nodeId": 11400065354, + "lat": 43.6046813, + "lon": 1.4459479 + }, + { + "nodeId": 8534702755, + "lat": 43.6046241, + "lon": 1.4457716 + }, + { + "nodeId": 11400065367, + "lat": 43.6045488, + "lon": 1.4455889 + }, + { + "nodeId": 11400065366, + "lat": 43.6042098, + "lon": 1.4448239 + }, + { + "nodeId": 3928788952, + "lat": 43.6037598, + "lon": 1.4444025 + }, + { + "nodeId": 339923258, + "lat": 43.6040181, + "lon": 1.4445712 + }, + { + "nodeId": 339923256, + "lat": 43.6034805, + "lon": 1.4443054 + }, + { + "nodeId": 11400069770, + "lat": 43.6032182, + "lon": 1.4442659 + }, + { + "nodeId": 1988823876, + "lat": 43.6014189, + "lon": 1.4440907 + }, + { + "nodeId": 11400069771, + "lat": 43.6012081, + "lon": 1.443984 + }, + { + "nodeId": 12800011555, + "lat": 43.6007652, + "lon": 1.443793 + }, + { + "nodeId": 12800023839, + "lat": 43.6006576, + "lon": 1.4437503 + }, + { + "nodeId": 12800011591, + "lat": 43.6005381, + "lon": 1.4437384 + }, + { + "nodeId": 11400069776, + "lat": 43.599748, + "lon": 1.4437846 + }, + { + "nodeId": 12800011551, + "lat": 43.5995094, + "lon": 1.4437684 + }, + { + "nodeId": 12800011553, + "lat": 43.5993803, + "lon": 1.4437371 + }, + { + "nodeId": 339923255, + "lat": 43.5991036, + "lon": 1.4436184 + }, + { + "nodeId": 339923254, + "lat": 43.5987883, + "lon": 1.4433257 + }, + { + "nodeId": 11400069775, + "lat": 43.598598, + "lon": 1.4428678 + }, + { + "nodeId": 11400069774, + "lat": 43.598353, + "lon": 1.4423246 + }, + { + "nodeId": 339923253, + "lat": 43.5982221, + "lon": 1.4418723 + }, + { + "nodeId": 11400069773, + "lat": 43.598103, + "lon": 1.4413192 + }, + { + "nodeId": 339923252, + "lat": 43.598037, + "lon": 1.4404328 + }, + { + "nodeId": 411019933, + "lat": 43.5981203, + "lon": 1.432854 + }, + { + "nodeId": 11400069795, + "lat": 43.5981064, + "lon": 1.4324624 + }, + { + "nodeId": 11400069794, + "lat": 43.5980692, + "lon": 1.4321191 + }, + { + "nodeId": 248533273, + "lat": 43.5979032, + "lon": 1.4311199 + }, + { + "nodeId": 11278237888, + "lat": 43.5976253, + "lon": 1.4296187 + }, + { + "nodeId": 12798036101, + "lat": 43.5964576, + "lon": 1.4232606 + }, + { + "nodeId": 7878078927, + "lat": 43.596975, + "lon": 1.4261057 + }, + { + "nodeId": 11400069831, + "lat": 43.5963297, + "lon": 1.4226691 + }, + { + "nodeId": 10780247008, + "lat": 43.596225, + "lon": 1.4221651 + }, + { + "nodeId": 339917212, + "lat": 43.5961113, + "lon": 1.421474 + }, + { + "nodeId": 11400069806, + "lat": 43.5960293, + "lon": 1.4210102 + }, + { + "nodeId": 7388813760, + "lat": 43.5958708, + "lon": 1.4203611 + }, + { + "nodeId": 11400069812, + "lat": 43.5957473, + "lon": 1.419978 + }, + { + "nodeId": 339917209, + "lat": 43.5955678, + "lon": 1.4195967 + }, + { + "nodeId": 11400069811, + "lat": 43.5954198, + "lon": 1.4193951 + }, + { + "nodeId": 339917206, + "lat": 43.5951603, + "lon": 1.4191446 + }, + { + "nodeId": 11400069810, + "lat": 43.5949393, + "lon": 1.4189762 + }, + { + "nodeId": 7814027687, + "lat": 43.5946558, + "lon": 1.4188686 + }, + { + "nodeId": 11400069808, + "lat": 43.5943389, + "lon": 1.4187741 + }, + { + "nodeId": 339917203, + "lat": 43.5938007, + "lon": 1.4186204 + }, + { + "nodeId": 11400069807, + "lat": 43.5932681, + "lon": 1.418497 + }, + { + "nodeId": 11487218498, + "lat": 43.5930294, + "lon": 1.4184605 + }, + { + "nodeId": 1252656797, + "lat": 43.5935478, + "lon": 1.4132291 + }, + { + "nodeId": 6130909078, + "lat": 43.5936034, + "lon": 1.4139506 + }, + { + "nodeId": 3484233097, + "lat": 43.6457582, + "lon": 1.3767469 + }, + { + "nodeId": 1252656780, + "lat": 43.5936094, + "lon": 1.4140254 + }, + { + "nodeId": 983684798, + "lat": 43.645796, + "lon": 1.3767638 + }, + { + "nodeId": 3484233096, + "lat": 43.6458377, + "lon": 1.3767777 + }, + { + "nodeId": 2379081847, + "lat": 43.6458878, + "lon": 1.3767897 + }, + { + "nodeId": 3484233095, + "lat": 43.645928, + "lon": 1.3767925 + }, + { + "nodeId": 1464381972, + "lat": 43.645966, + "lon": 1.3767923 + }, + { + "nodeId": 2379081851, + "lat": 43.6460471, + "lon": 1.3767761 + }, + { + "nodeId": 1469771722, + "lat": 43.6461173, + "lon": 1.3767463 + }, + { + "nodeId": 3484233094, + "lat": 43.6460076, + "lon": 1.3767858 + }, + { + "nodeId": 983684830, + "lat": 43.6462606, + "lon": 1.3766803 + }, + { + "nodeId": 12188473067, + "lat": 43.5936235, + "lon": 1.4142852 + }, + { + "nodeId": 6130909593, + "lat": 43.5936279, + "lon": 1.4144351 + }, + { + "nodeId": 6001135314, + "lat": 43.5936305, + "lon": 1.414556 + }, + { + "nodeId": 12188473069, + "lat": 43.5936344, + "lon": 1.4148368 + }, + { + "nodeId": 1252656778, + "lat": 43.5936371, + "lon": 1.4150041 + }, + { + "nodeId": 6130909592, + "lat": 43.5936424, + "lon": 1.4152414 + }, + { + "nodeId": 12188473071, + "lat": 43.5936458, + "lon": 1.4153367 + }, + { + "nodeId": 6130909591, + "lat": 43.5936505, + "lon": 1.4154392 + }, + { + "nodeId": 7757533307, + "lat": 43.5936576, + "lon": 1.4155362 + }, + { + "nodeId": 1252656766, + "lat": 43.5936674, + "lon": 1.4156563 + }, + { + "nodeId": 1252656792, + "lat": 43.5937306, + "lon": 1.4163827 + }, + { + "nodeId": 12188473097, + "lat": 43.5938943, + "lon": 1.4180883 + }, + { + "nodeId": 7757533313, + "lat": 43.5939063, + "lon": 1.4182184 + }, + { + "nodeId": 7757533296, + "lat": 43.593919, + "lon": 1.4183281 + }, + { + "nodeId": 2379081656, + "lat": 43.6141007, + "lon": 1.3978492 + }, + { + "nodeId": 3720464031, + "lat": 43.6141006, + "lon": 1.3978223 + }, + { + "nodeId": 756757807, + "lat": 43.6141029, + "lon": 1.3977662 + }, + { + "nodeId": 3720464029, + "lat": 43.6141079, + "lon": 1.3977198 + }, + { + "nodeId": 2087273551, + "lat": 43.6141152, + "lon": 1.3976702 + }, + { + "nodeId": 757369925, + "lat": 43.6141293, + "lon": 1.397596 + }, + { + "nodeId": 3720463922, + "lat": 43.6141235, + "lon": 1.3976306 + }, + { + "nodeId": 3720464028, + "lat": 43.6141434, + "lon": 1.3975502 + }, + { + "nodeId": 3720463923, + "lat": 43.6141589, + "lon": 1.3975006 + }, + { + "nodeId": 2379081663, + "lat": 43.6141769, + "lon": 1.3974509 + }, + { + "nodeId": 2379081667, + "lat": 43.6141978, + "lon": 1.3974067 + }, + { + "nodeId": 756757959, + "lat": 43.6142415, + "lon": 1.3973323 + }, + { + "nodeId": 3720464025, + "lat": 43.6142618, + "lon": 1.3973014 + }, + { + "nodeId": 3720463924, + "lat": 43.6142128, + "lon": 1.3973792 + }, + { + "nodeId": 757369933, + "lat": 43.6142787, + "lon": 1.3972775 + }, + { + "nodeId": 2379081676, + "lat": 43.61433, + "lon": 1.3972217 + }, + { + "nodeId": 2379081678, + "lat": 43.6143525, + "lon": 1.3971998 + }, + { + "nodeId": 2088234160, + "lat": 43.6143828, + "lon": 1.3971721 + }, + { + "nodeId": 3720464027, + "lat": 43.6144154, + "lon": 1.3971486 + }, + { + "nodeId": 3720545919, + "lat": 43.6144731, + "lon": 1.3971124 + }, + { + "nodeId": 2379081681, + "lat": 43.6144571, + "lon": 1.3971211 + }, + { + "nodeId": 2088234163, + "lat": 43.6144923, + "lon": 1.397105 + }, + { + "nodeId": 2379081684, + "lat": 43.6145481, + "lon": 1.3970846 + }, + { + "nodeId": 3720464026, + "lat": 43.6145803, + "lon": 1.3970768 + }, + { + "nodeId": 2088234164, + "lat": 43.6146078, + "lon": 1.3970734 + }, + { + "nodeId": 1464397867, + "lat": 43.6147066, + "lon": 1.3970674 + }, + { + "nodeId": 7992911243, + "lat": 43.6403102, + "lon": 1.3827118 + }, + { + "nodeId": 7078007993, + "lat": 43.6403828, + "lon": 1.3826808 + }, + { + "nodeId": 2987358440, + "lat": 43.6403319, + "lon": 1.3827034 + }, + { + "nodeId": 2379081787, + "lat": 43.6404083, + "lon": 1.382666 + }, + { + "nodeId": 3484303025, + "lat": 43.6404348, + "lon": 1.382651 + }, + { + "nodeId": 1156789084, + "lat": 43.6404841, + "lon": 1.3826133 + }, + { + "nodeId": 3484303024, + "lat": 43.6404615, + "lon": 1.3826329 + }, + { + "nodeId": 3484303023, + "lat": 43.6404988, + "lon": 1.3825994 + }, + { + "nodeId": 3484303022, + "lat": 43.6405221, + "lon": 1.3825753 + }, + { + "nodeId": 983684831, + "lat": 43.640542, + "lon": 1.3825491 + }, + { + "nodeId": 7078007978, + "lat": 43.640549, + "lon": 1.3825377 + }, + { + "nodeId": 3484303020, + "lat": 43.6405571, + "lon": 1.3825243 + }, + { + "nodeId": 3484303021, + "lat": 43.6405794, + "lon": 1.382478 + }, + { + "nodeId": 2379081791, + "lat": 43.6405963, + "lon": 1.382436 + }, + { + "nodeId": 7078007972, + "lat": 43.6406126, + "lon": 1.3823889 + }, + { + "nodeId": 12188473035, + "lat": 43.5950999, + "lon": 1.4029583 + }, + { + "nodeId": 54544344, + "lat": 43.5948316, + "lon": 1.4038071 + }, + { + "nodeId": 12188473037, + "lat": 43.5947529, + "lon": 1.4040533 + }, + { + "nodeId": 12188473039, + "lat": 43.5946618, + "lon": 1.404344 + }, + { + "nodeId": 12188473041, + "lat": 43.5944977, + "lon": 1.4048635 + }, + { + "nodeId": 12188473044, + "lat": 43.5942114, + "lon": 1.4057692 + }, + { + "nodeId": 54544345, + "lat": 43.5941424, + "lon": 1.4059903 + }, + { + "nodeId": 4146802788, + "lat": 43.5942937, + "lon": 1.4055082 + }, + { + "nodeId": 12188473046, + "lat": 43.5940807, + "lon": 1.406194 + }, + { + "nodeId": 4146802787, + "lat": 43.5940239, + "lon": 1.4063943 + }, + { + "nodeId": 12188473048, + "lat": 43.5939737, + "lon": 1.4065836 + }, + { + "nodeId": 12188473050, + "lat": 43.5938952, + "lon": 1.406932 + }, + { + "nodeId": 4146806989, + "lat": 43.5939313, + "lon": 1.4067616 + }, + { + "nodeId": 12188473051, + "lat": 43.5938617, + "lon": 1.4071003 + }, + { + "nodeId": 344794262, + "lat": 43.5938303, + "lon": 1.4072743 + }, + { + "nodeId": 12188473054, + "lat": 43.5937925, + "lon": 1.4075066 + }, + { + "nodeId": 54544347, + "lat": 43.5937371, + "lon": 1.407863 + }, + { + "nodeId": 7644357222, + "lat": 43.5698218, + "lon": 1.3922936 + }, + { + "nodeId": 1617713365, + "lat": 43.6032064, + "lon": 1.3357242 + }, + { + "nodeId": 12188637812, + "lat": 43.6030807, + "lon": 1.3364167 + }, + { + "nodeId": 333045499, + "lat": 43.5963892, + "lon": 1.3929567 + }, + { + "nodeId": 12987593873, + "lat": 43.550743, + "lon": 1.5055528 + }, + { + "nodeId": 12987593874, + "lat": 43.5508503, + "lon": 1.50547 + }, + { + "nodeId": 12188473012, + "lat": 43.5963863, + "lon": 1.3930612 + }, + { + "nodeId": 12987593872, + "lat": 43.5503072, + "lon": 1.505823 + }, + { + "nodeId": 12987593875, + "lat": 43.5509545, + "lon": 1.5053698 + }, + { + "nodeId": 10884065649, + "lat": 43.5514314, + "lon": 1.5048935 + }, + { + "nodeId": 10884065648, + "lat": 43.5516534, + "lon": 1.5046495 + }, + { + "nodeId": 12987593876, + "lat": 43.5517787, + "lon": 1.5044941 + }, + { + "nodeId": 10884065650, + "lat": 43.551864, + "lon": 1.5043576 + }, + { + "nodeId": 12987593877, + "lat": 43.5519443, + "lon": 1.5041967 + }, + { + "nodeId": 10217219513, + "lat": 43.552034, + "lon": 1.503988 + }, + { + "nodeId": 12987593878, + "lat": 43.5520783, + "lon": 1.5038501 + }, + { + "nodeId": 10884065651, + "lat": 43.5521152, + "lon": 1.5036804 + }, + { + "nodeId": 10884065652, + "lat": 43.5521449, + "lon": 1.5034894 + }, + { + "nodeId": 12987593880, + "lat": 43.5521572, + "lon": 1.5033395 + }, + { + "nodeId": 12987593879, + "lat": 43.5521592, + "lon": 1.5031529 + }, + { + "nodeId": 10217247162, + "lat": 43.5521521, + "lon": 1.5028587 + }, + { + "nodeId": 10884065653, + "lat": 43.5521018, + "lon": 1.5015335 + }, + { + "nodeId": 10217247161, + "lat": 43.5520301, + "lon": 1.4996865 + }, + { + "nodeId": 12987593882, + "lat": 43.5520127, + "lon": 1.4992849 + }, + { + "nodeId": 12987593885, + "lat": 43.5520004, + "lon": 1.4990812 + }, + { + "nodeId": 10890417174, + "lat": 43.5519789, + "lon": 1.4989115 + }, + { + "nodeId": 12987593883, + "lat": 43.5519522, + "lon": 1.4987276 + }, + { + "nodeId": 12987593884, + "lat": 43.5519133, + "lon": 1.4985608 + }, + { + "nodeId": 10884065654, + "lat": 43.5518764, + "lon": 1.498391 + }, + { + "nodeId": 12987593887, + "lat": 43.55174, + "lon": 1.4979922 + }, + { + "nodeId": 12987593886, + "lat": 43.5518138, + "lon": 1.4981987 + }, + { + "nodeId": 12987593888, + "lat": 43.5516232, + "lon": 1.497691 + }, + { + "nodeId": 10890417172, + "lat": 43.5501779, + "lon": 1.4941497 + }, + { + "nodeId": 10890417176, + "lat": 43.5500488, + "lon": 1.4937282 + }, + { + "nodeId": 10217247160, + "lat": 43.5509682, + "lon": 1.4960773 + }, + { + "nodeId": 10890417173, + "lat": 43.5499842, + "lon": 1.4934369 + }, + { + "nodeId": 12987593889, + "lat": 43.5499627, + "lon": 1.4932615 + }, + { + "nodeId": 10217247159, + "lat": 43.5499371, + "lon": 1.4926873 + }, + { + "nodeId": 12987593890, + "lat": 43.5499647, + "lon": 1.4923875 + }, + { + "nodeId": 13134211506, + "lat": 43.5499412, + "lon": 1.4930041 + }, + { + "nodeId": 10890417175, + "lat": 43.5500262, + "lon": 1.4920297 + }, + { + "nodeId": 10890417171, + "lat": 43.5502343, + "lon": 1.4913848 + }, + { + "nodeId": 12987593891, + "lat": 43.5501093, + "lon": 1.4917271 + }, + { + "nodeId": 10890417168, + "lat": 43.5510605, + "lon": 1.4892549 + }, + { + "nodeId": 10217247158, + "lat": 43.5505929, + "lon": 1.4905294 + }, + { + "nodeId": 10890417170, + "lat": 43.5515828, + "lon": 1.4878482 + }, + { + "nodeId": 12987593892, + "lat": 43.551793, + "lon": 1.4873575 + }, + { + "nodeId": 10217247157, + "lat": 43.5518851, + "lon": 1.4872151 + }, + { + "nodeId": 13628242185, + "lat": 43.5522638, + "lon": 1.4866299 + }, + { + "nodeId": 13628242186, + "lat": 43.5519978, + "lon": 1.4870516 + }, + { + "nodeId": 13628242182, + "lat": 43.5527482, + "lon": 1.4859006 + }, + { + "nodeId": 13628242183, + "lat": 43.5531921, + "lon": 1.4852668 + }, + { + "nodeId": 12987593893, + "lat": 43.5535395, + "lon": 1.4847673 + }, + { + "nodeId": 10217247156, + "lat": 43.5533378, + "lon": 1.485069 + }, + { + "nodeId": 12987593894, + "lat": 43.5537383, + "lon": 1.4844524 + }, + { + "nodeId": 10890417167, + "lat": 43.5539089, + "lon": 1.4840647 + }, + { + "nodeId": 10217247155, + "lat": 43.5540536, + "lon": 1.4836149 + }, + { + "nodeId": 12987593895, + "lat": 43.5541829, + "lon": 1.4831558 + }, + { + "nodeId": 4070161833, + "lat": 43.6006322, + "lon": 1.4113848 + }, + { + "nodeId": 339927325, + "lat": 43.5662358, + "lon": 1.3948935 + }, + { + "nodeId": 8068633885, + "lat": 43.6003503, + "lon": 1.4113592 + }, + { + "nodeId": 7644357261, + "lat": 43.5662715, + "lon": 1.3947952 + }, + { + "nodeId": 7644357262, + "lat": 43.5663088, + "lon": 1.3946981 + }, + { + "nodeId": 248534074, + "lat": 43.5663393, + "lon": 1.3946252 + }, + { + "nodeId": 7644357260, + "lat": 43.5663838, + "lon": 1.3945301 + }, + { + "nodeId": 7644357263, + "lat": 43.5664142, + "lon": 1.3944682 + }, + { + "nodeId": 7644357259, + "lat": 43.5664507, + "lon": 1.3943971 + }, + { + "nodeId": 339927326, + "lat": 43.5664947, + "lon": 1.3943225 + }, + { + "nodeId": 7644357266, + "lat": 43.5665398, + "lon": 1.3942496 + }, + { + "nodeId": 7644357267, + "lat": 43.5665916, + "lon": 1.3941737 + }, + { + "nodeId": 7644357249, + "lat": 43.5666218, + "lon": 1.3941299 + }, + { + "nodeId": 7649884160, + "lat": 43.5666485, + "lon": 1.3940953 + }, + { + "nodeId": 5794129823, + "lat": 43.6362615, + "lon": 1.3849936 + }, + { + "nodeId": 7197474473, + "lat": 43.5858022, + "lon": 1.4276077 + }, + { + "nodeId": 2030163935, + "lat": 43.585864, + "lon": 1.4275106 + }, + { + "nodeId": 2571154301, + "lat": 43.5860583, + "lon": 1.4272115 + }, + { + "nodeId": 7992911245, + "lat": 43.6362665, + "lon": 1.3846454 + }, + { + "nodeId": 7197474484, + "lat": 43.5866747, + "lon": 1.4262714 + }, + { + "nodeId": 2483718462, + "lat": 43.586744, + "lon": 1.4261657 + }, + { + "nodeId": 2483718473, + "lat": 43.5868437, + "lon": 1.4259954 + }, + { + "nodeId": 7197474487, + "lat": 43.5868743, + "lon": 1.4259488 + }, + { + "nodeId": 1825678689, + "lat": 43.588143, + "lon": 1.4240145 + }, + { + "nodeId": 12188637802, + "lat": 43.6032256, + "lon": 1.3356105 + }, + { + "nodeId": 12188637803, + "lat": 43.6032405, + "lon": 1.3355188 + }, + { + "nodeId": 12188637800, + "lat": 43.6032527, + "lon": 1.3354328 + }, + { + "nodeId": 7757533297, + "lat": 43.6032644, + "lon": 1.335339 + }, + { + "nodeId": 2560775583, + "lat": 43.6448696, + "lon": 1.3771981 + }, + { + "nodeId": 1617713366, + "lat": 43.6032727, + "lon": 1.3352668 + }, + { + "nodeId": 3556698970, + "lat": 43.5922682, + "lon": 1.4190616 + }, + { + "nodeId": 8237931326, + "lat": 43.5922873, + "lon": 1.4190645 + }, + { + "nodeId": 2128905981, + "lat": 43.5923409, + "lon": 1.4190724 + }, + { + "nodeId": 2119969543, + "lat": 43.5924221, + "lon": 1.4190793 + }, + { + "nodeId": 3463643487, + "lat": 43.592461, + "lon": 1.4190789 + }, + { + "nodeId": 2882494302, + "lat": 43.5924868, + "lon": 1.4190769 + }, + { + "nodeId": 8237931348, + "lat": 43.5925152, + "lon": 1.4190717 + }, + { + "nodeId": 2882494305, + "lat": 43.5925395, + "lon": 1.4190659 + }, + { + "nodeId": 3463643486, + "lat": 43.5925649, + "lon": 1.4190575 + }, + { + "nodeId": 8237931338, + "lat": 43.59259, + "lon": 1.4190464 + }, + { + "nodeId": 3463643485, + "lat": 43.5925983, + "lon": 1.4190413 + }, + { + "nodeId": 2882494308, + "lat": 43.5926175, + "lon": 1.4190283 + }, + { + "nodeId": 2119969544, + "lat": 43.5926536, + "lon": 1.4189968 + }, + { + "nodeId": 3463643480, + "lat": 43.5926816, + "lon": 1.4189635 + }, + { + "nodeId": 3463643484, + "lat": 43.5926367, + "lon": 1.4190119 + }, + { + "nodeId": 1943151795, + "lat": 43.5927041, + "lon": 1.4189312 + }, + { + "nodeId": 3463643479, + "lat": 43.5927152, + "lon": 1.418911 + }, + { + "nodeId": 3463643483, + "lat": 43.5927271, + "lon": 1.4188895 + }, + { + "nodeId": 2119969545, + "lat": 43.5927383, + "lon": 1.4188657 + }, + { + "nodeId": 2570328761, + "lat": 43.5927626, + "lon": 1.4187892 + }, + { + "nodeId": 3463643478, + "lat": 43.5927515, + "lon": 1.4188322 + }, + { + "nodeId": 3463643481, + "lat": 43.5927709, + "lon": 1.4187463 + }, + { + "nodeId": 3463643482, + "lat": 43.5927777, + "lon": 1.4186967 + }, + { + "nodeId": 333033967, + "lat": 43.5927835, + "lon": 1.4186509 + }, + { + "nodeId": 1943151811, + "lat": 43.5927923, + "lon": 1.4185571 + }, + { + "nodeId": 7197474572, + "lat": 43.5928152, + "lon": 1.4182949 + }, + { + "nodeId": 3556698976, + "lat": 43.5927994, + "lon": 1.4184544 + }, + { + "nodeId": 344298257, + "lat": 43.599585, + "lon": 1.3726338 + }, + { + "nodeId": 11918514655, + "lat": 43.5995734, + "lon": 1.3726855 + }, + { + "nodeId": 54548606, + "lat": 43.5990081, + "lon": 1.3751339 + }, + { + "nodeId": 12188472886, + "lat": 43.5989358, + "lon": 1.3754421 + }, + { + "nodeId": 12188472884, + "lat": 43.5992949, + "lon": 1.3738945 + }, + { + "nodeId": 3572756367, + "lat": 43.5988031, + "lon": 1.3759742 + }, + { + "nodeId": 267319872, + "lat": 43.6469122, + "lon": 1.37638 + }, + { + "nodeId": 344552703, + "lat": 43.647566, + "lon": 1.3760829 + }, + { + "nodeId": 983684819, + "lat": 43.6478966, + "lon": 1.3759358 + }, + { + "nodeId": 1469720878, + "lat": 43.6479982, + "lon": 1.3758914 + }, + { + "nodeId": 7078007773, + "lat": 43.6480803, + "lon": 1.3758554 + }, + { + "nodeId": 7078007764, + "lat": 43.6483231, + "lon": 1.3757489 + }, + { + "nodeId": 2379081793, + "lat": 43.6412537, + "lon": 1.3805379 + }, + { + "nodeId": 7078007950, + "lat": 43.6412635, + "lon": 1.3805126 + }, + { + "nodeId": 3484263448, + "lat": 43.6412782, + "lon": 1.3804744 + }, + { + "nodeId": 2379081795, + "lat": 43.6412896, + "lon": 1.3804508 + }, + { + "nodeId": 3484263447, + "lat": 43.6412981, + "lon": 1.3804369 + }, + { + "nodeId": 3484263446, + "lat": 43.6413131, + "lon": 1.3804168 + }, + { + "nodeId": 983684786, + "lat": 43.6413287, + "lon": 1.3804013 + }, + { + "nodeId": 3484263438, + "lat": 43.6413442, + "lon": 1.3803859 + }, + { + "nodeId": 3484263437, + "lat": 43.6413654, + "lon": 1.3803702 + }, + { + "nodeId": 2379081798, + "lat": 43.6413857, + "lon": 1.3803562 + }, + { + "nodeId": 983684825, + "lat": 43.6415705, + "lon": 1.3802596 + }, + { + "nodeId": 3484263436, + "lat": 43.6415907, + "lon": 1.3802464 + }, + { + "nodeId": 2379081802, + "lat": 43.6416115, + "lon": 1.380231 + }, + { + "nodeId": 3484263435, + "lat": 43.6416251, + "lon": 1.3802176 + }, + { + "nodeId": 2379081804, + "lat": 43.6416475, + "lon": 1.3801928 + }, + { + "nodeId": 3484263434, + "lat": 43.6416659, + "lon": 1.3801633 + }, + { + "nodeId": 1419303451, + "lat": 43.6416813, + "lon": 1.3801338 + }, + { + "nodeId": 3484263431, + "lat": 43.6417047, + "lon": 1.3800755 + }, + { + "nodeId": 1541379955, + "lat": 43.6417279, + "lon": 1.38001 + }, + { + "nodeId": 1419299470, + "lat": 43.6417424, + "lon": 1.3799621 + }, + { + "nodeId": 3484263421, + "lat": 43.6417794, + "lon": 1.3798696 + }, + { + "nodeId": 1469817307, + "lat": 43.6417969, + "lon": 1.3798341 + }, + { + "nodeId": 3484263420, + "lat": 43.6418408, + "lon": 1.3797771 + }, + { + "nodeId": 3484263418, + "lat": 43.6418612, + "lon": 1.379759 + }, + { + "nodeId": 3484263419, + "lat": 43.6418197, + "lon": 1.3798012 + }, + { + "nodeId": 1419303456, + "lat": 43.6418783, + "lon": 1.3797472 + }, + { + "nodeId": 7992911237, + "lat": 43.6422108, + "lon": 1.379583 + }, + { + "nodeId": 1374224468, + "lat": 43.5935602, + "lon": 1.4090285 + }, + { + "nodeId": 344794263, + "lat": 43.5935286, + "lon": 1.4092257 + }, + { + "nodeId": 7992911247, + "lat": 43.6367859, + "lon": 1.384032 + }, + { + "nodeId": 2987358637, + "lat": 43.6374295, + "lon": 1.3837906 + }, + { + "nodeId": 1464381977, + "lat": 43.6375691, + "lon": 1.3837382 + }, + { + "nodeId": 2987355538, + "lat": 43.637692, + "lon": 1.3836923 + }, + { + "nodeId": 656184855, + "lat": 43.6388076, + "lon": 1.3832753 + }, + { + "nodeId": 656184854, + "lat": 43.6389525, + "lon": 1.3832205 + }, + { + "nodeId": 656184869, + "lat": 43.6395524, + "lon": 1.3829943 + }, + { + "nodeId": 7078008016, + "lat": 43.6391002, + "lon": 1.3831648 + }, + { + "nodeId": 2987358544, + "lat": 43.6397086, + "lon": 1.3829364 + }, + { + "nodeId": 656184864, + "lat": 43.6398286, + "lon": 1.3828919 + }, + { + "nodeId": 656184862, + "lat": 43.6402723, + "lon": 1.3827266 + }, + { + "nodeId": 7757533289, + "lat": 43.6025324, + "lon": 1.3516499 + }, + { + "nodeId": 12188472852, + "lat": 43.6025291, + "lon": 1.3521019 + }, + { + "nodeId": 1469817310, + "lat": 43.6435149, + "lon": 1.3789497 + }, + { + "nodeId": 3484263410, + "lat": 43.6435475, + "lon": 1.3789399 + }, + { + "nodeId": 1543288706, + "lat": 43.6435927, + "lon": 1.3789296 + }, + { + "nodeId": 3484263408, + "lat": 43.6436353, + "lon": 1.3789261 + }, + { + "nodeId": 267260805, + "lat": 43.6436612, + "lon": 1.3789281 + }, + { + "nodeId": 3484263406, + "lat": 43.6436753, + "lon": 1.3789295 + }, + { + "nodeId": 2562225989, + "lat": 43.6436906, + "lon": 1.3789329 + }, + { + "nodeId": 3484263405, + "lat": 43.6437039, + "lon": 1.3789379 + }, + { + "nodeId": 3484263407, + "lat": 43.6437188, + "lon": 1.3789453 + }, + { + "nodeId": 1469817315, + "lat": 43.6437308, + "lon": 1.3789523 + }, + { + "nodeId": 3484263400, + "lat": 43.6439554, + "lon": 1.3790811 + }, + { + "nodeId": 2903425310, + "lat": 43.6439768, + "lon": 1.3790892 + }, + { + "nodeId": 267260804, + "lat": 43.643876, + "lon": 1.3790429 + }, + { + "nodeId": 2093074717, + "lat": 43.6439913, + "lon": 1.3790918 + }, + { + "nodeId": 2903425309, + "lat": 43.644018, + "lon": 1.3790932 + }, + { + "nodeId": 2379081822, + "lat": 43.6440409, + "lon": 1.3790915 + }, + { + "nodeId": 7078007881, + "lat": 43.6440458, + "lon": 1.3790907 + }, + { + "nodeId": 556980712, + "lat": 43.6440653, + "lon": 1.3790876 + }, + { + "nodeId": 2093074719, + "lat": 43.6440924, + "lon": 1.3790779 + }, + { + "nodeId": 2379081824, + "lat": 43.6441355, + "lon": 1.379052 + }, + { + "nodeId": 3484263398, + "lat": 43.6441694, + "lon": 1.3790261 + }, + { + "nodeId": 1469771688, + "lat": 43.6441985, + "lon": 1.3789926 + }, + { + "nodeId": 983684782, + "lat": 43.6442074, + "lon": 1.3789805 + }, + { + "nodeId": 3484263399, + "lat": 43.6442296, + "lon": 1.378943 + }, + { + "nodeId": 2379081828, + "lat": 43.6442489, + "lon": 1.3789038 + }, + { + "nodeId": 983684816, + "lat": 43.6443274, + "lon": 1.3787045 + }, + { + "nodeId": 7992911235, + "lat": 43.6443816, + "lon": 1.3785495 + }, + { + "nodeId": 54544350, + "lat": 43.59347, + "lon": 1.4096368 + }, + { + "nodeId": 12188473056, + "lat": 43.5934494, + "lon": 1.4098023 + }, + { + "nodeId": 12188473057, + "lat": 43.5934358, + "lon": 1.4099307 + }, + { + "nodeId": 8237931657, + "lat": 43.5934231, + "lon": 1.410065 + }, + { + "nodeId": 54544351, + "lat": 43.5934109, + "lon": 1.4102041 + }, + { + "nodeId": 8237931659, + "lat": 43.5934031, + "lon": 1.4103335 + }, + { + "nodeId": 12188473060, + "lat": 43.5933962, + "lon": 1.4104798 + }, + { + "nodeId": 1254174256, + "lat": 43.5933923, + "lon": 1.4106324 + }, + { + "nodeId": 7757596696, + "lat": 43.5933909, + "lon": 1.4107473 + }, + { + "nodeId": 8237931660, + "lat": 43.5933926, + "lon": 1.4109687 + }, + { + "nodeId": 4146806999, + "lat": 43.5933946, + "lon": 1.4110621 + }, + { + "nodeId": 12188473063, + "lat": 43.5934006, + "lon": 1.4112138 + }, + { + "nodeId": 8237931663, + "lat": 43.5934083, + "lon": 1.4113677 + }, + { + "nodeId": 1254174257, + "lat": 43.5934225, + "lon": 1.4115841 + }, + { + "nodeId": 8237931664, + "lat": 43.5934389, + "lon": 1.4118054 + }, + { + "nodeId": 2128896129, + "lat": 43.5854527, + "lon": 1.4285445 + }, + { + "nodeId": 3721897807, + "lat": 43.5854782, + "lon": 1.4285802 + }, + { + "nodeId": 3721897806, + "lat": 43.5854393, + "lon": 1.4285192 + }, + { + "nodeId": 2308759196, + "lat": 43.5854296, + "lon": 1.428494 + }, + { + "nodeId": 2128896116, + "lat": 43.585416, + "lon": 1.4284535 + }, + { + "nodeId": 2882492398, + "lat": 43.5854085, + "lon": 1.428422 + }, + { + "nodeId": 2442266691, + "lat": 43.5854036, + "lon": 1.428316 + }, + { + "nodeId": 5717731674, + "lat": 43.5854088, + "lon": 1.4282839 + }, + { + "nodeId": 3721897805, + "lat": 43.5854017, + "lon": 1.4283603 + }, + { + "nodeId": 2030163909, + "lat": 43.5854114, + "lon": 1.4282677 + }, + { + "nodeId": 3948895312, + "lat": 43.5854268, + "lon": 1.4282175 + }, + { + "nodeId": 3721897804, + "lat": 43.5854318, + "lon": 1.4282014 + }, + { + "nodeId": 12202628595, + "lat": 43.5854425, + "lon": 1.4281783 + }, + { + "nodeId": 2442266706, + "lat": 43.5854616, + "lon": 1.4281371 + }, + { + "nodeId": 2030163917, + "lat": 43.5855282, + "lon": 1.4280342 + }, + { + "nodeId": 6030836157, + "lat": 43.6638351, + "lon": 1.3623897 + }, + { + "nodeId": 6030836156, + "lat": 43.6640514, + "lon": 1.3622517 + }, + { + "nodeId": 13178671393, + "lat": 43.6644508, + "lon": 1.3620003 + }, + { + "nodeId": 7014762375, + "lat": 43.6644766, + "lon": 1.361984 + }, + { + "nodeId": 7001580950, + "lat": 43.6645919, + "lon": 1.3619092 + }, + { + "nodeId": 6030836154, + "lat": 43.6646488, + "lon": 1.3618713 + }, + { + "nodeId": 6030836153, + "lat": 43.6647782, + "lon": 1.3617887 + }, + { + "nodeId": 6030836152, + "lat": 43.6649945, + "lon": 1.3616507 + }, + { + "nodeId": 7869544158, + "lat": 43.6652387, + "lon": 1.3615006 + }, + { + "nodeId": 7001580953, + "lat": 43.665404, + "lon": 1.361399 + }, + { + "nodeId": 9228695774, + "lat": 43.6655651, + "lon": 1.3612886 + }, + { + "nodeId": 6030836150, + "lat": 43.6655919, + "lon": 1.3612703 + }, + { + "nodeId": 6030836149, + "lat": 43.6657212, + "lon": 1.3611877 + }, + { + "nodeId": 6030836148, + "lat": 43.6659375, + "lon": 1.3610497 + }, + { + "nodeId": 6030836147, + "lat": 43.6663167, + "lon": 1.3608123 + }, + { + "nodeId": 6030836146, + "lat": 43.6665349, + "lon": 1.3606693 + }, + { + "nodeId": 7869506572, + "lat": 43.6673144, + "lon": 1.3601765 + }, + { + "nodeId": 7869506575, + "lat": 43.6678232, + "lon": 1.3598549 + }, + { + "nodeId": 7613591562, + "lat": 43.6678948, + "lon": 1.3598082 + }, + { + "nodeId": 12188637804, + "lat": 43.6032825, + "lon": 1.3351912 + }, + { + "nodeId": 656420409, + "lat": 43.6215885, + "lon": 1.3967662 + }, + { + "nodeId": 10731002621, + "lat": 43.6088144, + "lon": 1.4020405 + }, + { + "nodeId": 7197474788, + "lat": 43.6088838, + "lon": 1.402037 + }, + { + "nodeId": 1163670142, + "lat": 43.6039602, + "lon": 1.4059347 + }, + { + "nodeId": 1163670121, + "lat": 43.6040225, + "lon": 1.4058171 + }, + { + "nodeId": 8068564082, + "lat": 43.6040493, + "lon": 1.4057693 + }, + { + "nodeId": 3282027899, + "lat": 43.6040879, + "lon": 1.4057023 + }, + { + "nodeId": 2379081497, + "lat": 43.6041395, + "lon": 1.4056097 + }, + { + "nodeId": 2379081501, + "lat": 43.6042532, + "lon": 1.4054022 + }, + { + "nodeId": 1163670131, + "lat": 43.604356, + "lon": 1.4051987 + }, + { + "nodeId": 8068564064, + "lat": 43.6043647, + "lon": 1.4051813 + }, + { + "nodeId": 54548600, + "lat": 43.597367, + "lon": 1.3800165 + }, + { + "nodeId": 12188472911, + "lat": 43.5973102, + "lon": 1.3801685 + }, + { + "nodeId": 12188472912, + "lat": 43.5972424, + "lon": 1.3803499 + }, + { + "nodeId": 12188472913, + "lat": 43.5971885, + "lon": 1.3804941 + }, + { + "nodeId": 54548599, + "lat": 43.5971213, + "lon": 1.3806851 + }, + { + "nodeId": 12188472914, + "lat": 43.5970768, + "lon": 1.3808203 + }, + { + "nodeId": 4146820472, + "lat": 43.597016, + "lon": 1.3810118 + }, + { + "nodeId": 12188472916, + "lat": 43.5969321, + "lon": 1.3813004 + }, + { + "nodeId": 12188472915, + "lat": 43.5969783, + "lon": 1.3811365 + }, + { + "nodeId": 344292204, + "lat": 43.5968933, + "lon": 1.3814507 + }, + { + "nodeId": 12188472917, + "lat": 43.5968605, + "lon": 1.3815894 + }, + { + "nodeId": 4146820471, + "lat": 43.596794, + "lon": 1.3818962 + }, + { + "nodeId": 12188472919, + "lat": 43.5967592, + "lon": 1.382083 + }, + { + "nodeId": 12188472918, + "lat": 43.5968226, + "lon": 1.3817571 + }, + { + "nodeId": 54548598, + "lat": 43.5967357, + "lon": 1.3822311 + }, + { + "nodeId": 6128768632, + "lat": 43.5966842, + "lon": 1.382612 + }, + { + "nodeId": 12188472920, + "lat": 43.5967182, + "lon": 1.3823468 + }, + { + "nodeId": 12188472922, + "lat": 43.5967032, + "lon": 1.3824541 + }, + { + "nodeId": 12188472921, + "lat": 43.5966723, + "lon": 1.3827284 + }, + { + "nodeId": 12188472928, + "lat": 43.5966595, + "lon": 1.3828585 + }, + { + "nodeId": 344292202, + "lat": 43.5966497, + "lon": 1.3829859 + }, + { + "nodeId": 2379081563, + "lat": 43.6111696, + "lon": 1.4019192 + }, + { + "nodeId": 756757900, + "lat": 43.6112227, + "lon": 1.4019133 + }, + { + "nodeId": 3721306230, + "lat": 43.6112518, + "lon": 1.4019039 + }, + { + "nodeId": 3721306231, + "lat": 43.611313, + "lon": 1.4018717 + }, + { + "nodeId": 2379081569, + "lat": 43.6112829, + "lon": 1.4018905 + }, + { + "nodeId": 2379081573, + "lat": 43.6113538, + "lon": 1.4018414 + }, + { + "nodeId": 7992911260, + "lat": 43.6113821, + "lon": 1.4018139 + }, + { + "nodeId": 12188472929, + "lat": 43.5966383, + "lon": 1.3831632 + }, + { + "nodeId": 6128768627, + "lat": 43.5966162, + "lon": 1.3836776 + }, + { + "nodeId": 7757533302, + "lat": 43.5966306, + "lon": 1.3832981 + }, + { + "nodeId": 7757533303, + "lat": 43.5965834, + "lon": 1.3850259 + }, + { + "nodeId": 54548594, + "lat": 43.5964643, + "lon": 1.3899434 + }, + { + "nodeId": 54548595, + "lat": 43.5965222, + "lon": 1.3875754 + }, + { + "nodeId": 12188473010, + "lat": 43.5964218, + "lon": 1.3916983 + }, + { + "nodeId": 2379081427, + "lat": 43.5990189, + "lon": 1.4111914 + }, + { + "nodeId": 7078007921, + "lat": 43.6422339, + "lon": 1.3795716 + }, + { + "nodeId": 267261046, + "lat": 43.6423462, + "lon": 1.3795161 + }, + { + "nodeId": 7078007920, + "lat": 43.6424627, + "lon": 1.3794595 + }, + { + "nodeId": 7078007892, + "lat": 43.6428997, + "lon": 1.379247 + }, + { + "nodeId": 267261033, + "lat": 43.6429561, + "lon": 1.3792196 + }, + { + "nodeId": 7078007894, + "lat": 43.643016, + "lon": 1.3791907 + }, + { + "nodeId": 7669152618, + "lat": 43.6178821, + "lon": 1.4666296 + }, + { + "nodeId": 7667567193, + "lat": 43.6178524, + "lon": 1.4665935 + }, + { + "nodeId": 7669152619, + "lat": 43.6178186, + "lon": 1.4665526 + }, + { + "nodeId": 54548621, + "lat": 43.6025108, + "lon": 1.3549553 + }, + { + "nodeId": 7667567194, + "lat": 43.6177801, + "lon": 1.4665085 + }, + { + "nodeId": 7667567195, + "lat": 43.6177305, + "lon": 1.4664563 + }, + { + "nodeId": 7667567227, + "lat": 43.6176697, + "lon": 1.4663949 + }, + { + "nodeId": 7667567226, + "lat": 43.617609, + "lon": 1.466335 + }, + { + "nodeId": 764715243, + "lat": 43.6173538, + "lon": 1.4660831 + }, + { + "nodeId": 7667567223, + "lat": 43.6172551, + "lon": 1.4659842 + }, + { + "nodeId": 5817633582, + "lat": 43.6171388, + "lon": 1.4658709 + }, + { + "nodeId": 764716162, + "lat": 43.617016, + "lon": 1.4657447 + }, + { + "nodeId": 7667567221, + "lat": 43.6169305, + "lon": 1.4656544 + }, + { + "nodeId": 764715684, + "lat": 43.6168644, + "lon": 1.4655809 + }, + { + "nodeId": 7667567220, + "lat": 43.6167766, + "lon": 1.4654814 + }, + { + "nodeId": 5817633583, + "lat": 43.6166991, + "lon": 1.4653896 + }, + { + "nodeId": 7667567219, + "lat": 43.6166211, + "lon": 1.4652907 + }, + { + "nodeId": 7667567218, + "lat": 43.6165398, + "lon": 1.4651771 + }, + { + "nodeId": 5817633584, + "lat": 43.6164645, + "lon": 1.4650725 + }, + { + "nodeId": 7667567236, + "lat": 43.6163204, + "lon": 1.4648721 + }, + { + "nodeId": 248512542, + "lat": 43.6162323, + "lon": 1.4647428 + }, + { + "nodeId": 11107355560, + "lat": 43.6161768, + "lon": 1.4646599 + }, + { + "nodeId": 11487218495, + "lat": 43.6156545, + "lon": 1.4638805 + }, + { + "nodeId": 757369934, + "lat": 43.6114405, + "lon": 1.4017573 + }, + { + "nodeId": 757369956, + "lat": 43.6115877, + "lon": 1.4016034 + }, + { + "nodeId": 756757883, + "lat": 43.6116507, + "lon": 1.4015438 + }, + { + "nodeId": 2088242454, + "lat": 43.6116206, + "lon": 1.4015693 + }, + { + "nodeId": 3721304908, + "lat": 43.6116887, + "lon": 1.4015197 + }, + { + "nodeId": 2088242458, + "lat": 43.6117273, + "lon": 1.4015041 + }, + { + "nodeId": 3721304909, + "lat": 43.6117643, + "lon": 1.4014928 + }, + { + "nodeId": 1461684520, + "lat": 43.6117991, + "lon": 1.4014876 + }, + { + "nodeId": 7197474377, + "lat": 43.5926154, + "lon": 1.4357943 + }, + { + "nodeId": 13159307124, + "lat": 43.5663733, + "lon": 1.486556 + }, + { + "nodeId": 8832628118, + "lat": 43.5662455, + "lon": 1.4867216 + }, + { + "nodeId": 10884065632, + "lat": 43.5661309, + "lon": 1.4868953 + }, + { + "nodeId": 13159307125, + "lat": 43.566021, + "lon": 1.4870837 + }, + { + "nodeId": 10884065631, + "lat": 43.5659428, + "lon": 1.4872621 + }, + { + "nodeId": 10890417181, + "lat": 43.5658641, + "lon": 1.487482 + }, + { + "nodeId": 13159307126, + "lat": 43.5657786, + "lon": 1.4877824 + }, + { + "nodeId": 13159307127, + "lat": 43.5656596, + "lon": 1.4882538 + }, + { + "nodeId": 13159307128, + "lat": 43.5655478, + "lon": 1.4887232 + }, + { + "nodeId": 8832628119, + "lat": 43.5654171, + "lon": 1.4891832 + }, + { + "nodeId": 10884065634, + "lat": 43.5650765, + "lon": 1.4898692 + }, + { + "nodeId": 10884065633, + "lat": 43.5652344, + "lon": 1.489607 + }, + { + "nodeId": 12987601606, + "lat": 43.5643589, + "lon": 1.4907637 + }, + { + "nodeId": 13159307129, + "lat": 43.5642889, + "lon": 1.4908643 + }, + { + "nodeId": 10910865699, + "lat": 43.5641295, + "lon": 1.4911486 + }, + { + "nodeId": 12987601605, + "lat": 43.5639216, + "lon": 1.4915174 + }, + { + "nodeId": 12987601604, + "lat": 43.5631782, + "lon": 1.492994 + }, + { + "nodeId": 12987601602, + "lat": 43.5626126, + "lon": 1.494087 + }, + { + "nodeId": 12987601603, + "lat": 43.5625339, + "lon": 1.4942412 + }, + { + "nodeId": 13159307130, + "lat": 43.5624513, + "lon": 1.4943659 + }, + { + "nodeId": 10884065635, + "lat": 43.5623541, + "lon": 1.4944813 + }, + { + "nodeId": 12987601601, + "lat": 43.5622307, + "lon": 1.4946114 + }, + { + "nodeId": 10884065636, + "lat": 43.5620052, + "lon": 1.4947803 + }, + { + "nodeId": 10890417180, + "lat": 43.5621208, + "lon": 1.4947039 + }, + { + "nodeId": 13159307131, + "lat": 43.5618876, + "lon": 1.4948393 + }, + { + "nodeId": 10890417179, + "lat": 43.561736, + "lon": 1.4948943 + }, + { + "nodeId": 13159307132, + "lat": 43.5610227, + "lon": 1.4949319 + }, + { + "nodeId": 13159307133, + "lat": 43.5606631, + "lon": 1.4949332 + }, + { + "nodeId": 13159307134, + "lat": 43.5603036, + "lon": 1.4949426 + }, + { + "nodeId": 8832628121, + "lat": 43.5613803, + "lon": 1.4949279 + }, + { + "nodeId": 8832628122, + "lat": 43.5599411, + "lon": 1.4949453 + }, + { + "nodeId": 13159307135, + "lat": 43.5597107, + "lon": 1.4949466 + }, + { + "nodeId": 10884065637, + "lat": 43.5594804, + "lon": 1.49496 + }, + { + "nodeId": 10884065638, + "lat": 43.5591189, + "lon": 1.4950204 + }, + { + "nodeId": 8832628123, + "lat": 43.5587797, + "lon": 1.4951625 + }, + { + "nodeId": 13159307136, + "lat": 43.5584532, + "lon": 1.4953771 + }, + { + "nodeId": 13159307137, + "lat": 43.5581402, + "lon": 1.4956225 + }, + { + "nodeId": 13159307138, + "lat": 43.5578292, + "lon": 1.495868 + }, + { + "nodeId": 8832628124, + "lat": 43.5572675, + "lon": 1.4963052 + }, + { + "nodeId": 13159307139, + "lat": 43.5575163, + "lon": 1.4961134 + }, + { + "nodeId": 10890417178, + "lat": 43.5570002, + "lon": 1.4964688 + }, + { + "nodeId": 13159307140, + "lat": 43.556661, + "lon": 1.4966311 + }, + { + "nodeId": 13159307141, + "lat": 43.5563218, + "lon": 1.4967786 + }, + { + "nodeId": 13159307142, + "lat": 43.5559749, + "lon": 1.4969154 + }, + { + "nodeId": 8832628125, + "lat": 43.5556211, + "lon": 1.497024 + }, + { + "nodeId": 13159307143, + "lat": 43.5552702, + "lon": 1.4971031 + }, + { + "nodeId": 13159307144, + "lat": 43.5549165, + "lon": 1.4971822 + }, + { + "nodeId": 10884065640, + "lat": 43.5545656, + "lon": 1.4972855 + }, + { + "nodeId": 13159307146, + "lat": 43.5542128, + "lon": 1.4974438 + }, + { + "nodeId": 10884065641, + "lat": 43.5539183, + "lon": 1.4976476 + }, + { + "nodeId": 8832628126, + "lat": 43.5535859, + "lon": 1.4979199 + }, + { + "nodeId": 13159307145, + "lat": 43.5534527, + "lon": 1.4980513 + }, + { + "nodeId": 13159307147, + "lat": 43.5533113, + "lon": 1.4981934 + }, + { + "nodeId": 10884065642, + "lat": 43.5532044, + "lon": 1.4983316 + }, + { + "nodeId": 10890417157, + "lat": 43.5530848, + "lon": 1.4984972 + }, + { + "nodeId": 13159307148, + "lat": 43.5529808, + "lon": 1.4986581 + }, + { + "nodeId": 8832628127, + "lat": 43.5528613, + "lon": 1.498862 + }, + { + "nodeId": 10890417155, + "lat": 43.5526786, + "lon": 1.4992442 + }, + { + "nodeId": 13159307149, + "lat": 43.5527738, + "lon": 1.4990357 + }, + { + "nodeId": 13159307150, + "lat": 43.5525697, + "lon": 1.4995178 + }, + { + "nodeId": 13159307151, + "lat": 43.5524225, + "lon": 1.4999704 + }, + { + "nodeId": 12987593881, + "lat": 43.5523588, + "lon": 1.5002339 + }, + { + "nodeId": 10884065643, + "lat": 43.5524822, + "lon": 1.4997652 + }, + { + "nodeId": 10890417156, + "lat": 43.5522694, + "lon": 1.5007523 + }, + { + "nodeId": 13159307152, + "lat": 43.5523097, + "lon": 1.5004854 + }, + { + "nodeId": 13159307153, + "lat": 43.5522436, + "lon": 1.501001 + }, + { + "nodeId": 8832628128, + "lat": 43.55223, + "lon": 1.5012485 + }, + { + "nodeId": 13159307154, + "lat": 43.5522232, + "lon": 1.5015227 + }, + { + "nodeId": 13159307155, + "lat": 43.5522295, + "lon": 1.5018238 + }, + { + "nodeId": 10884065644, + "lat": 43.5522859, + "lon": 1.5033057 + }, + { + "nodeId": 13159307156, + "lat": 43.552284, + "lon": 1.5034747 + }, + { + "nodeId": 10884065647, + "lat": 43.5522426, + "lon": 1.5038227 + }, + { + "nodeId": 13159307157, + "lat": 43.5522713, + "lon": 1.5036256 + }, + { + "nodeId": 13159307158, + "lat": 43.5522067, + "lon": 1.5039904 + }, + { + "nodeId": 10884065645, + "lat": 43.5521513, + "lon": 1.5041761 + }, + { + "nodeId": 13159307159, + "lat": 43.5520988, + "lon": 1.5043216 + }, + { + "nodeId": 13159307160, + "lat": 43.5520346, + "lon": 1.5044564 + }, + { + "nodeId": 10884065646, + "lat": 43.5519511, + "lon": 1.5046012 + }, + { + "nodeId": 13159307161, + "lat": 43.5518738, + "lon": 1.5047139 + }, + { + "nodeId": 8832628129, + "lat": 43.5517765, + "lon": 1.5048327 + }, + { + "nodeId": 8832628131, + "lat": 43.5507103, + "lon": 1.5058935 + }, + { + "nodeId": 10884065656, + "lat": 43.5503841, + "lon": 1.5061344 + }, + { + "nodeId": 12987593871, + "lat": 43.5500413, + "lon": 1.506306 + }, + { + "nodeId": 12987593870, + "lat": 43.5496972, + "lon": 1.5064576 + }, + { + "nodeId": 12987593869, + "lat": 43.5490195, + "lon": 1.5067552 + }, + { + "nodeId": 10884065657, + "lat": 43.5486777, + "lon": 1.506949 + }, + { + "nodeId": 10884065655, + "lat": 43.5483707, + "lon": 1.5071989 + }, + { + "nodeId": 12987593868, + "lat": 43.5467494, + "lon": 1.5088203 + }, + { + "nodeId": 10884065660, + "lat": 43.545556, + "lon": 1.5098992 + }, + { + "nodeId": 10884065658, + "lat": 43.5458728, + "lon": 1.509685 + }, + { + "nodeId": 10884065661, + "lat": 43.5453494, + "lon": 1.5099673 + }, + { + "nodeId": 10884065659, + "lat": 43.5450763, + "lon": 1.5099925 + }, + { + "nodeId": 12987593867, + "lat": 43.5448475, + "lon": 1.5099571 + }, + { + "nodeId": 10884065662, + "lat": 43.5445075, + "lon": 1.5098184 + }, + { + "nodeId": 12987593866, + "lat": 43.5438418, + "lon": 1.5094749 + }, + { + "nodeId": 12987593864, + "lat": 43.5435062, + "lon": 1.5093089 + }, + { + "nodeId": 8832628133, + "lat": 43.5431452, + "lon": 1.5091352 + }, + { + "nodeId": 13184870801, + "lat": 43.5429818, + "lon": 1.5090865 + }, + { + "nodeId": 10884065665, + "lat": 43.5427786, + "lon": 1.5090621 + }, + { + "nodeId": 10884065664, + "lat": 43.5425998, + "lon": 1.5090789 + }, + { + "nodeId": 12987593865, + "lat": 43.5423955, + "lon": 1.5091307 + }, + { + "nodeId": 13184870802, + "lat": 43.5421107, + "lon": 1.5092936 + }, + { + "nodeId": 10884065663, + "lat": 43.5419716, + "lon": 1.509417 + }, + { + "nodeId": 10884065666, + "lat": 43.5422487, + "lon": 1.5091992 + }, + { + "nodeId": 8832628134, + "lat": 43.5413315, + "lon": 1.5100655 + }, + { + "nodeId": 10884065667, + "lat": 43.5404677, + "lon": 1.5109827 + }, + { + "nodeId": 12987593863, + "lat": 43.5407595, + "lon": 1.5106511 + }, + { + "nodeId": 12987593862, + "lat": 43.5410389, + "lon": 1.5103631 + }, + { + "nodeId": 12987593861, + "lat": 43.5402187, + "lon": 1.5113386 + }, + { + "nodeId": 8832628135, + "lat": 43.5399814, + "lon": 1.5116985 + }, + { + "nodeId": 10884065668, + "lat": 43.5397503, + "lon": 1.5120772 + }, + { + "nodeId": 12987593860, + "lat": 43.5395967, + "lon": 1.5123745 + }, + { + "nodeId": 12987593859, + "lat": 43.5394651, + "lon": 1.5127039 + }, + { + "nodeId": 12987593858, + "lat": 43.5393325, + "lon": 1.5131601 + }, + { + "nodeId": 10884065669, + "lat": 43.5392018, + "lon": 1.5136145 + }, + { + "nodeId": 10884065671, + "lat": 43.5389534, + "lon": 1.5145311 + }, + { + "nodeId": 12987593857, + "lat": 43.5386244, + "lon": 1.5154227 + }, + { + "nodeId": 10884065672, + "lat": 43.5388083, + "lon": 1.5149895 + }, + { + "nodeId": 10884065670, + "lat": 43.5384065, + "lon": 1.5158126 + }, + { + "nodeId": 12987593855, + "lat": 43.5381839, + "lon": 1.5162155 + }, + { + "nodeId": 10884065677, + "lat": 43.5379967, + "lon": 1.51664 + }, + { + "nodeId": 12987593851, + "lat": 43.5378898, + "lon": 1.5170662 + }, + { + "nodeId": 10884065673, + "lat": 43.5378336, + "lon": 1.5174771 + }, + { + "nodeId": 10884065676, + "lat": 43.5378102, + "lon": 1.5180257 + }, + { + "nodeId": 12987593852, + "lat": 43.5378394, + "lon": 1.5183166 + }, + { + "nodeId": 12987593853, + "lat": 43.5378857, + "lon": 1.5185587 + }, + { + "nodeId": 12987593854, + "lat": 43.5380086, + "lon": 1.5189777 + }, + { + "nodeId": 10884065674, + "lat": 43.5380888, + "lon": 1.5191639 + }, + { + "nodeId": 10884065675, + "lat": 43.5379456, + "lon": 1.5187762 + }, + { + "nodeId": 8832628136, + "lat": 43.5383664, + "lon": 1.5196848 + }, + { + "nodeId": 10884065678, + "lat": 43.5401471, + "lon": 1.522643 + }, + { + "nodeId": 7078007762, + "lat": 43.6487412, + "lon": 1.3755662 + }, + { + "nodeId": 1469720916, + "lat": 43.648946, + "lon": 1.3754786 + }, + { + "nodeId": 983684773, + "lat": 43.6490963, + "lon": 1.3754143 + }, + { + "nodeId": 983684807, + "lat": 43.6498043, + "lon": 1.375095 + }, + { + "nodeId": 2379081859, + "lat": 43.6492249, + "lon": 1.3753549 + }, + { + "nodeId": 983684754, + "lat": 43.650353, + "lon": 1.3748435 + }, + { + "nodeId": 983684762, + "lat": 43.6510045, + "lon": 1.3745444 + }, + { + "nodeId": 364941956, + "lat": 43.6512705, + "lon": 1.3744276 + }, + { + "nodeId": 1480624529, + "lat": 43.6511406, + "lon": 1.3744837 + }, + { + "nodeId": 2379081866, + "lat": 43.6514863, + "lon": 1.374362 + }, + { + "nodeId": 364941958, + "lat": 43.6515717, + "lon": 1.3743428 + }, + { + "nodeId": 2379081869, + "lat": 43.651732, + "lon": 1.3743199 + }, + { + "nodeId": 364941983, + "lat": 43.6519333, + "lon": 1.3743052 + }, + { + "nodeId": 2379081871, + "lat": 43.6521466, + "lon": 1.3743162 + }, + { + "nodeId": 364941988, + "lat": 43.6523162, + "lon": 1.3743464 + }, + { + "nodeId": 1739615472, + "lat": 43.6525798, + "lon": 1.3744151 + }, + { + "nodeId": 2379081875, + "lat": 43.6528087, + "lon": 1.3744747 + }, + { + "nodeId": 1739615479, + "lat": 43.6529295, + "lon": 1.3744929 + }, + { + "nodeId": 2987355334, + "lat": 43.6529599, + "lon": 1.3744946 + }, + { + "nodeId": 2379081878, + "lat": 43.65306, + "lon": 1.3745002 + }, + { + "nodeId": 1739615477, + "lat": 43.6531937, + "lon": 1.3744975 + }, + { + "nodeId": 2379081882, + "lat": 43.653364, + "lon": 1.37447 + }, + { + "nodeId": 1739615471, + "lat": 43.6535454, + "lon": 1.3744261 + }, + { + "nodeId": 1739615476, + "lat": 43.6538667, + "lon": 1.3742686 + }, + { + "nodeId": 7078007607, + "lat": 43.6542529, + "lon": 1.3740218 + }, + { + "nodeId": 2379084663, + "lat": 43.6536885, + "lon": 1.3743638 + }, + { + "nodeId": 1739615474, + "lat": 43.6542965, + "lon": 1.373994 + }, + { + "nodeId": 2379084667, + "lat": 43.6543678, + "lon": 1.3739408 + }, + { + "nodeId": 3004322934, + "lat": 43.6545117, + "lon": 1.3738356 + }, + { + "nodeId": 7078007538, + "lat": 43.6546304, + "lon": 1.3737488 + }, + { + "nodeId": 7007685002, + "lat": 43.5599467, + "lon": 1.4628652 + }, + { + "nodeId": 7007685003, + "lat": 43.5588316, + "lon": 1.455978 + }, + { + "nodeId": 1218403149, + "lat": 43.5584411, + "lon": 1.4536781 + }, + { + "nodeId": 983684821, + "lat": 43.6444957, + "lon": 1.3782228 + }, + { + "nodeId": 7078007540, + "lat": 43.6550286, + "lon": 1.3734537 + }, + { + "nodeId": 2560775579, + "lat": 43.6446698, + "lon": 1.3777497 + }, + { + "nodeId": 2784833517, + "lat": 43.6558262, + "lon": 1.3728536 + }, + { + "nodeId": 2784833522, + "lat": 43.6566307, + "lon": 1.3722493 + }, + { + "nodeId": 364942070, + "lat": 43.6567436, + "lon": 1.3721675 + }, + { + "nodeId": 2379084670, + "lat": 43.6581702, + "lon": 1.3710967 + }, + { + "nodeId": 2784833530, + "lat": 43.6582056, + "lon": 1.3710702 + }, + { + "nodeId": 2784833536, + "lat": 43.6588929, + "lon": 1.3705584 + }, + { + "nodeId": 2663752116, + "lat": 43.6600259, + "lon": 1.3697054 + }, + { + "nodeId": 7992911311, + "lat": 43.6623487, + "lon": 1.3668 + }, + { + "nodeId": 7992911313, + "lat": 43.6622294, + "lon": 1.365817 + }, + { + "nodeId": 7992911312, + "lat": 43.6621112, + "lon": 1.3648438 + }, + { + "nodeId": 2379081442, + "lat": 43.6011896, + "lon": 1.4114326 + }, + { + "nodeId": 3721473620, + "lat": 43.6012219, + "lon": 1.411431 + }, + { + "nodeId": 2281854512, + "lat": 43.6012462, + "lon": 1.4114284 + }, + { + "nodeId": 3721473619, + "lat": 43.6012699, + "lon": 1.4114239 + }, + { + "nodeId": 2281854523, + "lat": 43.6013181, + "lon": 1.4114099 + }, + { + "nodeId": 2281854521, + "lat": 43.6013938, + "lon": 1.4113736 + }, + { + "nodeId": 3721473617, + "lat": 43.6014166, + "lon": 1.4113589 + }, + { + "nodeId": 3721473618, + "lat": 43.6013588, + "lon": 1.4113931 + }, + { + "nodeId": 2379081452, + "lat": 43.6014477, + "lon": 1.4113356 + }, + { + "nodeId": 3721473615, + "lat": 43.6014613, + "lon": 1.4113237 + }, + { + "nodeId": 2281854511, + "lat": 43.6014884, + "lon": 1.4112982 + }, + { + "nodeId": 3721473616, + "lat": 43.6015137, + "lon": 1.4112687 + }, + { + "nodeId": 3721473614, + "lat": 43.6015438, + "lon": 1.4112271 + }, + { + "nodeId": 3721473621, + "lat": 43.6015661, + "lon": 1.4111922 + }, + { + "nodeId": 582467796, + "lat": 43.6015852, + "lon": 1.4111532 + }, + { + "nodeId": 8068564030, + "lat": 43.6016085, + "lon": 1.4111017 + }, + { + "nodeId": 12188472872, + "lat": 43.6022181, + "lon": 1.3602451 + }, + { + "nodeId": 4146818801, + "lat": 43.6021624, + "lon": 1.3606822 + }, + { + "nodeId": 12188472874, + "lat": 43.6020994, + "lon": 1.3611356 + }, + { + "nodeId": 2133021686, + "lat": 43.6020274, + "lon": 1.3616161 + }, + { + "nodeId": 12188472876, + "lat": 43.6019612, + "lon": 1.362016 + }, + { + "nodeId": 4146818811, + "lat": 43.6018892, + "lon": 1.3624335 + }, + { + "nodeId": 12188472878, + "lat": 43.6018221, + "lon": 1.3627999 + }, + { + "nodeId": 4146818803, + "lat": 43.6017464, + "lon": 1.3631878 + }, + { + "nodeId": 1201071464, + "lat": 43.6015838, + "lon": 1.3639585 + }, + { + "nodeId": 54548614, + "lat": 43.601415, + "lon": 1.3646968 + }, + { + "nodeId": 12188472879, + "lat": 43.6012823, + "lon": 1.3652753 + }, + { + "nodeId": 7757533299, + "lat": 43.6010817, + "lon": 1.3661454 + }, + { + "nodeId": 54548611, + "lat": 43.6007236, + "lon": 1.3677016 + }, + { + "nodeId": 12188472882, + "lat": 43.6004275, + "lon": 1.368982 + }, + { + "nodeId": 12188637942, + "lat": 43.6002614, + "lon": 1.3696989 + }, + { + "nodeId": 54548610, + "lat": 43.6001319, + "lon": 1.3702655 + }, + { + "nodeId": 12188637945, + "lat": 43.599948, + "lon": 1.3710604 + }, + { + "nodeId": 7757533300, + "lat": 43.5996638, + "lon": 1.3722959 + }, + { + "nodeId": 12188473016, + "lat": 43.5962319, + "lon": 1.3983016 + }, + { + "nodeId": 12188473018, + "lat": 43.5962163, + "lon": 1.3984649 + }, + { + "nodeId": 4146814477, + "lat": 43.5962467, + "lon": 1.3981306 + }, + { + "nodeId": 12188473021, + "lat": 43.5961814, + "lon": 1.3988079 + }, + { + "nodeId": 12188473023, + "lat": 43.5961437, + "lon": 1.3990885 + }, + { + "nodeId": 4146814479, + "lat": 43.5961194, + "lon": 1.3992501 + }, + { + "nodeId": 12188473025, + "lat": 43.5961005, + "lon": 1.399354 + }, + { + "nodeId": 6128803994, + "lat": 43.5960645, + "lon": 1.3995635 + }, + { + "nodeId": 4146814478, + "lat": 43.596015, + "lon": 1.3998178 + }, + { + "nodeId": 12188473027, + "lat": 43.5959837, + "lon": 1.3999646 + }, + { + "nodeId": 6128778349, + "lat": 43.5959441, + "lon": 1.4001456 + }, + { + "nodeId": 54544340, + "lat": 43.595899, + "lon": 1.4003358 + }, + { + "nodeId": 6128778350, + "lat": 43.5958455, + "lon": 1.400544 + }, + { + "nodeId": 4146807001, + "lat": 43.595788, + "lon": 1.4007582 + }, + { + "nodeId": 7757533304, + "lat": 43.5957302, + "lon": 1.4009561 + }, + { + "nodeId": 4146806991, + "lat": 43.5956953, + "lon": 1.4010747 + }, + { + "nodeId": 12188473030, + "lat": 43.5955962, + "lon": 1.4013892 + }, + { + "nodeId": 757315600, + "lat": 43.636267, + "lon": 1.3846111 + }, + { + "nodeId": 2379081755, + "lat": 43.6362698, + "lon": 1.3845025 + }, + { + "nodeId": 3484981499, + "lat": 43.6362723, + "lon": 1.384465 + }, + { + "nodeId": 3484981500, + "lat": 43.6362771, + "lon": 1.3844168 + }, + { + "nodeId": 983684817, + "lat": 43.6362839, + "lon": 1.3843785 + }, + { + "nodeId": 2379081757, + "lat": 43.6363048, + "lon": 1.3843142 + }, + { + "nodeId": 3484981498, + "lat": 43.6363169, + "lon": 1.3842887 + }, + { + "nodeId": 2379081761, + "lat": 43.6363664, + "lon": 1.3842203 + }, + { + "nodeId": 3484981497, + "lat": 43.6362941, + "lon": 1.3843437 + }, + { + "nodeId": 2379081759, + "lat": 43.6363401, + "lon": 1.3842522 + }, + { + "nodeId": 3484981502, + "lat": 43.6363926, + "lon": 1.3841968 + }, + { + "nodeId": 983684770, + "lat": 43.6364206, + "lon": 1.3841772 + }, + { + "nodeId": 2379081766, + "lat": 43.6364886, + "lon": 1.3841435 + }, + { + "nodeId": 3484981503, + "lat": 43.6364106, + "lon": 1.3841834 + }, + { + "nodeId": 12188473015, + "lat": 43.5962608, + "lon": 1.397915 + }, + { + "nodeId": 12188473020, + "lat": 43.5962683, + "lon": 1.3977611 + }, + { + "nodeId": 7078007504, + "lat": 43.6605282, + "lon": 1.3693276 + }, + { + "nodeId": 2663752118, + "lat": 43.6612894, + "lon": 1.3687556 + }, + { + "nodeId": 344790662, + "lat": 43.594009, + "lon": 1.4091328 + }, + { + "nodeId": 3132022299, + "lat": 43.5941031, + "lon": 1.4091478 + }, + { + "nodeId": 2379081392, + "lat": 43.5940839, + "lon": 1.409143 + }, + { + "nodeId": 344790663, + "lat": 43.5942347, + "lon": 1.4091808 + }, + { + "nodeId": 2379081411, + "lat": 43.5943512, + "lon": 1.4092212 + }, + { + "nodeId": 2081167557, + "lat": 43.5945607, + "lon": 1.4093115 + }, + { + "nodeId": 3463402039, + "lat": 43.5946629, + "lon": 1.4093543 + } + ] +} \ No newline at end of file diff --git a/src/lib/citiesConfig.ts b/src/lib/citiesConfig.ts index 716780c..fb13875 100644 --- a/src/lib/citiesConfig.ts +++ b/src/lib/citiesConfig.ts @@ -15,6 +15,7 @@ import lyon from '@/app/(game)/lyon/opengraph-image.jpg' import madrid from '@/app/(game)/madrid/opengraph-image.jpg' import marseille from '@/app/(game)/marseille/opengraph-image.jpg' import mexicoCity from '@/app/(game)/mexico-city/opengraph-image.jpg' +import montpellier from '@/app/(game)/montpellier/opengraph-image.jpg' import montreal from '@/app/(game)/montreal/opengraph-image.jpg' import muenchen from '@/app/(game)/muenchen/opengraph-image.jpg' import ny from '@/app/(game)/ny/opengraph-image.jpg' @@ -184,6 +185,11 @@ export const cities: ICity[] = [ image: rennes, link: '/rennes', }, + { + name: 'Montpellier', + image: montpellier, + link: '/montpellier', + }, // { // name: 'Vancouver', // image: vancouver, diff --git a/src/lib/i18n.tsx b/src/lib/i18n.tsx index e1a81c1..6b9c861 100644 --- a/src/lib/i18n.tsx +++ b/src/lib/i18n.tsx @@ -343,7 +343,8 @@ export const i18n = rosetta({ freeGame: 'Tämä peli on ilmainen.', supportWithDonation: ({ title }: { title: string }) => ( - Tue tätä peliä ja muiden kaupunkien kehitystä lahjoittamalla. + Tue tätä peliä ja muiden kaupunkien kehitystä + lahjoittamalla. ), opensANewTab: